Phase 0.3-0.5: SVG export + YAML sidecars + asset catalog

- Add hair class KeyMap entries (基髪→BaseHair, 前髪→FrontHair, 胸毛→ChestHair)
- Implement cardinal spline → cubic Bezier SVG export for all 175 body parts
- Generate YAML sidecar files (part.yaml) per part with metadata
- Write Catalog.yaml index for runtime asset loading
- Output to SlaveMatrix/Assets/Parts/{EnglishName}/ structure
- Each part directory contains part.yaml + x{x}y{y}.svg morph variants
- 838 SVGs across 324 morph variants, 175 sidecars, 1 catalog
- Extraction tool now serves as the asset build pipeline step
This commit is contained in:
2026-06-13 17:56:01 +02:00
parent fb0ff502f0
commit 58f3bf6884
1070 changed files with 83799 additions and 32 deletions

View File

@@ -28,20 +28,10 @@ namespace _2DGAMELIB
["四足上腕"] = "四足UpperArm",
["鳥翼下腕"] = "鳥翼LowerArm",
["獣翼下腕"] = "獣翼LowerArm",
["四足下腕"] = "四足LowerArm"
//["乳房"] = "Breast",
//["腹"] = "Abdomen",
//["顔"] = "Face",
//["目"] = "Eye",
//["眉"] = "Eyebrow",
//["瞼"] = "Eyelid",
//["鼻"] = "Nose",
//["口"] = "Mouth",
//["耳"] = "Ear",
//["触覚"] = "Antenna",
//["髪"] = "Hair",
//["基髪"] = "BaseHair",
//["吹出し"] = "SpeechBubble",
["四足下腕"] = "四足LowerArm",
["基髪"] = "BaseHair",
["胸毛"] = "ChestHair",
["前髪"] = "FrontHair",
};
public static void MigrateKeys(this Obj obj)

View File

@@ -2,8 +2,10 @@
using SlaveMatrix.Properties;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
@@ -11,14 +13,24 @@ namespace SlaveMatrix.Extract;
class Program
{
static readonly string OutputDir = Path.Combine(Directory.GetCurrentDirectory(), "extracted");
static readonly string ProjectRoot = Environment.CurrentDirectory;
static string AssetsDir = Path.Combine(ProjectRoot, "SlaveMatrix", "Assets");
static string OutputDir;
static void Main(string[] args)
{
Console.WriteLine("SlaveMatrix Resource Extractor");
Console.WriteLine("SlaveMatrix Asset Extractor");
Console.WriteLine("=================================\n");
Directory.CreateDirectory(OutputDir);
OutputDir = args.Length > 0 && args[0] == "--output" && args.Length > 1
? Path.GetFullPath(args[1])
: Path.GetFullPath(AssetsDir);
var partsDir = Path.Combine(OutputDir, "Parts");
var jsonDir = Path.Combine(OutputDir, "..", "..", "extracted");
Directory.CreateDirectory(partsDir);
Directory.CreateDirectory(jsonDir);
var resources = new (string Name, byte[] Data)[]
{
@@ -37,6 +49,10 @@ class Program
("その他", Resources.),
};
var catalog = new JObject();
catalog["parts"] = new JArray();
var catalogParts = (JArray)catalog["parts"];
foreach (var (name, data) in resources)
{
Console.Write($"Loading {name}... ");
@@ -53,26 +69,305 @@ class Program
obj.MigrateKeys();
Console.WriteLine("OK");
var objDir = Path.Combine(OutputDir, name);
Directory.CreateDirectory(objDir);
var jsonObj = ExportObj(obj);
var jsonPath = Path.Combine(jsonDir, $"{name}.json");
File.WriteAllText(jsonPath, JsonConvert.SerializeObject(jsonObj, Formatting.Indented));
Console.Write(" Exporting to JSON... ");
try
var keys = obj.Difss.Keys.Cast<string>().ToList();
foreach (var key in keys)
{
var jobj = ExportObj(obj);
var json = JsonConvert.SerializeObject(jobj, Formatting.Indented);
File.WriteAllText(Path.Combine(objDir, $"{name}.json"), json);
Console.WriteLine($"OK ({json.Length / 1024}KB)");
}
catch (Exception ex) { Console.WriteLine($"FAILED: {ex.Message}"); }
var difs = obj.Difss[key];
var partDir = Path.Combine(partsDir, SanitizeName(key));
Directory.CreateDirectory(partDir);
Console.Write(" Validating... ");
var keyCount = obj.Difss.Keys.Cast<string>().Count();
File.WriteAllLines(Path.Combine(objDir, $"{name}_keys.txt"), obj.Difss.Keys.Cast<string>());
Console.WriteLine($"OK ({keyCount} keys)");
var foundJoints = new List<string>();
var originalTag = jsonObj["Difss"]?[key]?["Tag"]?.ToString() ?? key;
var partEntry = new JObject
{
["id"] = key,
["original_key"] = originalTag,
["resource"] = name,
["morph_x"] = difs.CountX,
["morph_y"] = difs.CountY,
["variants"] = new JArray(),
["fields"] = new JArray()
};
var variants = (JArray)partEntry["variants"];
for (int x = 0; x < difs.CountX; x++)
{
var dif = difs[x];
for (int y = 0; y < dif.Count; y++)
{
var pars = dif[y];
var svgName = $"x{x}y{y}.svg";
var svgContent = ExportParsToSvg(pars, foundJoints);
variants.Add(new JObject
{
["x"] = x,
["y"] = y,
["file"] = svgName
});
File.WriteAllText(Path.Combine(partDir, svgName), svgContent);
}
}
foreach (string childKey in difs[0][0].Keys)
{
((JArray)partEntry["fields"]).Add(new JObject { ["name"] = childKey });
}
if (foundJoints.Count > 0)
{
var joints = new JArray();
foreach (var j in foundJoints.Distinct())
{
var parts = j.Split(',');
joints.Add(new JObject
{
["position"] = new JArray
{
double.Parse(parts[0], CultureInfo.InvariantCulture),
double.Parse(parts[1], CultureInfo.InvariantCulture)
}
});
}
partEntry["joints"] = joints;
}
var yaml = ToYaml((JObject)partEntry);
File.WriteAllText(Path.Combine(partDir, "part.yaml"), yaml);
catalogParts.Add(new JObject
{
["id"] = key,
["path"] = $"Parts/{SanitizeName(key)}/"
});
}
Console.WriteLine($" -> {keys.Count} parts exported");
}
Console.WriteLine("\nExtraction complete.");
var catalogYaml = ToYaml(catalog);
var catalogPath = Path.Combine(OutputDir, "Catalog.yaml");
File.WriteAllText(catalogPath, catalogYaml);
Console.WriteLine($"\nCatalog: {catalogPath}");
Console.WriteLine($"Total: {((JArray)catalog["parts"]).Count} parts\n");
}
static string ToYaml(JObject obj, int indent = 0)
{
var prefix = new string(' ', indent);
var sb = new StringBuilder();
foreach (var prop in obj.Properties())
{
if (prop.Value is JObject nested)
{
sb.AppendLine($"{prefix}{prop.Name}:");
sb.Append(ToYaml(nested, indent + 2));
}
else if (prop.Value is JArray arr)
{
if (arr.Count == 0)
{
sb.AppendLine($"{prefix}{prop.Name}: []");
continue;
}
if (arr[0] is JObject)
{
sb.AppendLine($"{prefix}{prop.Name}:");
foreach (var item in arr)
{
var objItem = (JObject)item;
sb.Append($"{prefix}- ");
var first = true;
foreach (var p in objItem.Properties())
{
if (first)
{
sb.AppendLine($"{p.Name}: {FormatYamlValue(p.Value)}");
first = false;
}
else
{
sb.AppendLine($"{prefix} {p.Name}: {FormatYamlValue(p.Value)}");
}
}
}
}
else
{
sb.AppendLine($"{prefix}{prop.Name}:");
foreach (var item in arr)
sb.AppendLine($"{prefix}- {FormatYamlValue(item)}");
}
}
else
{
sb.AppendLine($"{prefix}{prop.Name}: {FormatYamlValue(prop.Value)}");
}
}
return sb.ToString();
}
static string FormatYamlValue(JToken token)
{
if (token.Type == JTokenType.String)
{
var s = token.Value<string>();
if (s.Contains(':') || s.Contains('#') || s.Contains('\n'))
return $"\"{s}\"";
return s;
}
if (token.Type == JTokenType.Float)
return ((double)token).ToString("G", CultureInfo.InvariantCulture);
if (token.Type == JTokenType.Integer)
return ((long)token).ToString(CultureInfo.InvariantCulture);
return token.ToString();
}
static string ExportParsToSvg(Pars pars, List<string> foundJoints)
{
var sb = new StringBuilder();
sb.AppendLine("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
sb.AppendLine("<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1 1\">");
ExportParsToSvgInner(pars, sb, foundJoints);
sb.AppendLine("</svg>");
return sb.ToString();
}
static void ExportParsToSvgInner(Pars pars, StringBuilder sb, List<string> foundJoints)
{
foreach (string key in pars.Keys)
{
var val = pars[key];
if (val is Pars childPars)
{
sb.AppendLine($"<g id=\"{EscapeXml(key)}\">");
ExportParsToSvgInner(childPars, sb, foundJoints);
sb.AppendLine("</g>");
}
else if (val is Par par)
{
ExportParToSvg(par, key, sb, foundJoints);
}
}
}
static void ExportParToSvg(Par par, string name, StringBuilder sb, List<string> foundJoints)
{
if (!par.Dra) return;
var bx = par.BasePoint.X;
var by = par.BasePoint.Y;
var px = par.Position.X;
var py = par.Position.Y;
var angle = par.Angle;
var sx = par.Size * par.SizeX;
var sy = par.Size * par.SizeY;
var hasTransform = System.Math.Abs(bx) > 0.001 || System.Math.Abs(by) > 0.001
|| System.Math.Abs(px) > 0.001 || System.Math.Abs(py) > 0.001
|| System.Math.Abs(angle) > 0.001 || System.Math.Abs(sx - 1) > 0.001 || System.Math.Abs(sy - 1) > 0.001;
if (hasTransform)
sb.Append($"<g transform=\"translate({F(px)},{F(py)}) rotate({F(angle)}) scale({F(sx)},{F(sy)}) translate({F(-bx)},{F(-by)})\">");
foreach (var outObj in par.OP)
{
var points = outObj.ps;
if (points.Count < 2) continue;
var d = BuildSvgPath(points, outObj.Tension, par.Closed);
var fill = par.Closed ? "#cccccc" : "none";
var stroke = outObj.Outline ? "#000000" : "none";
var sw_val = outObj.Outline ? System.Math.Max(par.PenWidth, 0.001) : 0.0;
sb.AppendLine($"<path d=\"{d}\" fill=\"{fill}\" stroke=\"{stroke}\" stroke-width=\"{F(sw_val)}\"/>");
}
if (hasTransform)
sb.Append("</g>");
foreach (var joi in par.JP)
{
foundJoints.Add($"{F(joi.Joint.X)},{F(joi.Joint.Y)}");
}
}
static string BuildSvgPath(List<Vector2D> points, float tension, bool closed)
{
int n = points.Count;
if (n < 2) return "";
var sb = new StringBuilder();
sb.Append($"M {F(points[0].X)} {F(points[0].Y)}");
if (n == 2)
{
sb.Append($" L {F(points[1].X)} {F(points[1].Y)}");
if (closed) sb.Append(" Z");
return sb.ToString();
}
double tensionFactor = 1.0 - tension;
if (tensionFactor < 0.0) tensionFactor = 0.0;
int segmentCount = closed ? n : n - 1;
for (int i = 0; i < segmentCount; i++)
{
int p0, p1, p2, p3;
if (closed)
{
p0 = (i - 1 + n) % n;
p1 = i;
p2 = (i + 1) % n;
p3 = (i + 2) % n;
}
else
{
p0 = System.Math.Max(i - 1, 0);
p1 = i;
p2 = i + 1;
p3 = System.Math.Min(i + 2, n - 1);
}
var ci1x = tensionFactor * 0.5 * (points[p2].X - points[p0].X);
var ci1y = tensionFactor * 0.5 * (points[p2].Y - points[p0].Y);
var ci2x = tensionFactor * 0.5 * (points[p3].X - points[p1].X);
var ci2y = tensionFactor * 0.5 * (points[p3].Y - points[p1].Y);
var c1x = F(points[p1].X + ci1x / 3);
var c1y = F(points[p1].Y + ci1y / 3);
var c2x = F(points[p2].X + ci2x / 3);
var c2y = F(points[p2].Y + ci2y / 3);
var ex = F(points[p2].X);
var ey = F(points[p2].Y);
sb.Append($" C {c1x} {c1y} {c2x} {c2y} {ex} {ey}");
}
if (closed) sb.Append(" Z");
return sb.ToString();
}
static string F(double v) => v.ToString("G", CultureInfo.InvariantCulture);
static string EscapeXml(string s) => s.Replace("&", "&amp;").Replace("<", "&lt;").Replace(">", "&gt;").Replace("\"", "&quot;");
static string SanitizeName(string name)
{
var invalid = Path.GetInvalidFileNameChars();
var result = name;
foreach (var c in invalid)
result = result.Replace(c, '_');
return result;
}
static JObject ExportObj(Obj obj)

View File

@@ -0,0 +1,351 @@
parts:
- id: 上着ボトム後
path: Parts/上着ボトム後/
- id: BackHair1
path: Parts/BackHair1/
- id: BackHair0
path: Parts/BackHair0/
- id: Waist
path: Parts/Waist/
- id: Torso
path: Parts/Torso/
- id: 胸郭
path: Parts/胸郭/
- id: 膣基
path: Parts/膣基/
- id: 膣内精液
path: Parts/膣内精液/
- id: 断面
path: Parts/断面/
- id: ボテ腹
path: Parts/ボテ腹/
- id: 腰肌
path: Parts/腰肌/
- id: ボテ腹板
path: Parts/ボテ腹板/
- id: 胴腹板
path: Parts/胴腹板/
- id: 胴肌
path: Parts/胴肌/
- id: 肛門
path: Parts/肛門/
- id: 固定帯
path: Parts/固定帯/
- id: Neck
path: Parts/Neck/
- id: Head
path: Parts/Head/
- id: BaseHair
path: Parts/BaseHair/
- id: 単眼目
path: Parts/単眼目/
- id: 単眼瞼
path: Parts/単眼瞼/
- id: 目左
path: Parts/目左/
- id: 魔性弱瞼左
path: Parts/魔性弱瞼左/
- id: 魔性中瞼左
path: Parts/魔性中瞼左/
- id: 魔性強瞼左
path: Parts/魔性強瞼左/
- id: 獣性瞼左
path: Parts/獣性瞼左/
- id: エイリアン目左
path: Parts/エイリアン目左/
- id: 鼻肌
path: Parts/鼻肌/
- id: 目傷左
path: Parts/目傷左/
- id: 頬肌左
path: Parts/頬肌左/
- id: 額目
path: Parts/額目/
- id: 額瞼
path: Parts/額瞼/
- id: 頬目左
path: Parts/頬目左/
- id: 頬瞼左
path: Parts/頬瞼左/
- id: 紅潮
path: Parts/紅潮/
- id: 目尻影左
path: Parts/目尻影左/
- id: 顔ハイライト左
path: Parts/顔ハイライト左/
- id: 涙左
path: Parts/涙左/
- id: 目隠帯
path: Parts/目隠帯/
- id: 鼻水左
path: Parts/鼻水左/
- id:
path: Parts/鼻/
- id:
path: Parts/口/
- id:
path: Parts/舌/
- id: 涎左
path: Parts/涎左/
- id: 涎口裂け左
path: Parts/涎口裂け左/
- id: 玉口枷
path: Parts/玉口枷/
- id: 胸郭腹板
path: Parts/胸郭腹板/
- id: 胸郭肌
path: Parts/胸郭肌/
- id: 胸左
path: Parts/胸左/
- id: ChestHair
path: Parts/ChestHair/
- id: 横髪左
path: Parts/横髪左/
- id: FrontHair
path: Parts/FrontHair/
- id: 単眼眉
path: Parts/単眼眉/
- id: 眉左
path: Parts/眉左/
- id: 青筋左
path: Parts/青筋左/
- id: 噴乳左
path: Parts/噴乳左/
- id: キャップ左
path: Parts/キャップ左/
- id: 下着乳首左
path: Parts/下着乳首左/
- id: 下着ボトム
path: Parts/下着ボトム/
- id: 下着陰核
path: Parts/下着陰核/
- id: パンスト
path: Parts/パンスト/
- id: 下着トップ
path: Parts/下着トップ/
- id: 上着ボトム前
path: Parts/上着ボトム前/
- id: 上着ミドル
path: Parts/上着ミドル/
- id: 上着トップ
path: Parts/上着トップ/
- id: 帽子
path: Parts/帽子/
- id: 肛門精液垂れ
path: Parts/肛門精液垂れ/
- id: Cough
path: Parts/Cough/
- id: 呼気
path: Parts/呼気/
- id: 留具後
path: Parts/留具後/
- id: 留具前
path: Parts/留具前/
- id: 意思表示
path: Parts/意思表示/
- id: 反応
path: Parts/反応/
- id: 吹出し
path: Parts/吹出し/
- id: Shoulder
path: Parts/Shoulder/
- id: 四足脇
path: Parts/四足脇/
- id: UpperArm
path: Parts/UpperArm/
- id: LowerArm
path: Parts/LowerArm/
- id:
path: Parts/手/
- id: 鳥翼UpperArm
path: Parts/鳥翼UpperArm/
- id: 鳥翼LowerArm
path: Parts/鳥翼LowerArm/
- id: 鳥翼手
path: Parts/鳥翼手/
- id: 飛膜根
path: Parts/飛膜根/
- id: 飛膜先
path: Parts/飛膜先/
- id: 獣翼UpperArm
path: Parts/獣翼UpperArm/
- id: 獣翼LowerArm
path: Parts/獣翼LowerArm/
- id: 獣翼手
path: Parts/獣翼手/
- id: 四足UpperArm
path: Parts/四足UpperArm/
- id: 四足LowerArm
path: Parts/四足LowerArm/
- id: 四足手
path: Parts/四足手/
- id:
path: Parts/腿/
- id: Leg
path: Parts/Leg/
- id:
path: Parts/足/
- id: 四足腿
path: Parts/四足腿/
- id: 四足脚
path: Parts/四足脚/
- id: 四足足
path: Parts/四足足/
- id:
path: Parts/尾/
- id: 長物
path: Parts/長物/
- id: 四足腰
path: Parts/四足腰/
- id: 四足胴
path: Parts/四足胴/
- id: 四足胸郭
path: Parts/四足胸郭/
- id: 四足膣基
path: Parts/四足膣基/
- id: 四足膣内精液
path: Parts/四足膣内精液/
- id: 四足断面
path: Parts/四足断面/
- id: 四足ボテ腹
path: Parts/四足ボテ腹/
- id: 四足肛門
path: Parts/四足肛門/
- id: 四足固定帯
path: Parts/四足固定帯/
- id: 多足
path: Parts/多足/
- id: 単足
path: Parts/単足/
- id: 四足留具後
path: Parts/四足留具後/
- id: 四足留具前
path: Parts/四足留具前/
- id: 四足肛門精液垂れ
path: Parts/四足肛門精液垂れ/
- id:
path: Parts/鰭/
- id:
path: Parts/葉/
- id:
path: Parts/角/
- id:
path: Parts/耳/
- id:
path: Parts/植/
- id: 獣耳
path: Parts/獣耳/
- id: 虫顎
path: Parts/虫顎/
- id: 触覚
path: Parts/触覚/
- id: 虫鎌
path: Parts/虫鎌/
- id: 前翅
path: Parts/前翅/
- id: 後翅
path: Parts/後翅/
- id: 節足
path: Parts/節足/
- id: 触手
path: Parts/触手/
- id:
path: Parts/尾/
- id: 頭部後
path: Parts/頭部後/
- id: 頭部前
path: Parts/頭部前/
- id: 大顎基
path: Parts/大顎基/
- id: 大顎上
path: Parts/大顎上/
- id: 顔面
path: Parts/顔面/
- id:
path: Parts/角/
- id: 背中
path: Parts/背中/
- id: 性器
path: Parts/性器/
- id: 四足性器
path: Parts/四足性器/
- id: 飛沫
path: Parts/飛沫/
- id: 潮吹
path: Parts/潮吹/
- id: 放尿
path: Parts/放尿/
- id: 性器精液垂れ
path: Parts/性器精液垂れ/
- id: 四足飛沫
path: Parts/四足飛沫/
- id: 四足潮吹
path: Parts/四足潮吹/
- id: 四足放尿
path: Parts/四足放尿/
- id: 四足性器精液垂れ
path: Parts/四足性器精液垂れ/
- id: ピアス
path: Parts/ピアス/
- id: キャップ中
path: Parts/キャップ中/
- id: キスマーク
path: Parts/キスマーク/
- id: 鞭痕
path: Parts/鞭痕/
- id:
path: Parts/汗/
- id: ぶっかけ
path: Parts/ぶっかけ/
- id: 汚れ
path: Parts/汚れ/
- id: 押し付け
path: Parts/押し付け/
- id: 射精
path: Parts/射精/
- id: ペニス
path: Parts/ペニス/
- id: ハンド
path: Parts/ハンド/
- id: マウス
path: Parts/マウス/
- id: ロータ
path: Parts/ロータ/
- id: コモン
path: Parts/コモン/
- id: ディル
path: Parts/ディル/
- id: アナル
path: Parts/アナル/
- id: デンマ
path: Parts/デンマ/
- id: ドリル
path: Parts/ドリル/
- id: パール
path: Parts/パール/
- id: 羽根箒
path: Parts/羽根箒/
- id: 調教鞭
path: Parts/調教鞭/
- id: T字剃刀
path: Parts/T字剃刀/
- id: 染み
path: Parts/染み/
- id: 四足染み
path: Parts/四足染み/
- id: 拘束具上
path: Parts/拘束具上/
- id: 拘束具下
path: Parts/拘束具下/
- id: 衝撃
path: Parts/衝撃/
- id: 流血大
path: Parts/流血大/
- id: 流血中
path: Parts/流血中/
- id: 流血小
path: Parts/流血小/
- id:
path: Parts/鎖/
- id: 拘束鎖
path: Parts/拘束鎖/

View File

@@ -0,0 +1,590 @@
id: BackHair0
original_key: 後髪0
resource: 胴体
morph_x: 1
morph_y: 22
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
- x: 0
y: 3
file: x0y3.svg
- x: 0
y: 4
file: x0y4.svg
- x: 0
y: 5
file: x0y5.svg
- x: 0
y: 6
file: x0y6.svg
- x: 0
y: 7
file: x0y7.svg
- x: 0
y: 8
file: x0y8.svg
- x: 0
y: 9
file: x0y9.svg
- x: 0
y: 10
file: x0y10.svg
- x: 0
y: 11
file: x0y11.svg
- x: 0
y: 12
file: x0y12.svg
- x: 0
y: 13
file: x0y13.svg
- x: 0
y: 14
file: x0y14.svg
- x: 0
y: 15
file: x0y15.svg
- x: 0
y: 16
file: x0y16.svg
- x: 0
y: 17
file: x0y17.svg
- x: 0
y: 18
file: x0y18.svg
- x: 0
y: 19
file: x0y19.svg
- x: 0
y: 20
file: x0y20.svg
- x: 0
y: 21
file: x0y21.svg
fields:
- name: 髪基
- name: 髪中
- name: 髪左1
- name: 髪左2
- name: 髪左3
- name: 髪左4
- name: 髪左5
- name: 髪右1
- name: 髪右2
- name: 髪右3
- name: 髪右4
- name: 髪右5
joints:
- position: [
0.2178778082444386,
0.2564261171219583
]
- position: [
0.1969765324956132,
0.2418517012073054
]
- position: [
0.23877908399326392,
0.2418517012073054
]
- position: [
0.208475178732748,
0.25264026464676625
]
- position: [
0.2272804377561291,
0.25264026464676625
]
- position: [
0.1935624706360835,
0.23378664862188522
]
- position: [
0.2421931458527936,
0.23378664862188522
]
- position: [
0.20272585561418063,
0.24700948110253684
]
- position: [
0.23302976087469654,
0.24700948110253684
]
- position: [
0.21212848512587115,
0.25517236379805497
]
- position: [
0.22362713136300597,
0.25517236379805497
]
- position: [
0.2178778082444386,
0.2559396002614368
]
- position: [
0.08512163657345904,
0.09752048584487923
]
- position: [
0.020184612282548316,
0.020184612282548316
]
- position: [
0.17135528044934764,
0.16840896144042491
]
- position: [
0.17467966828326895,
0.16840896144042491
]
- position: [
0.19324010248212642,
0.15723772401224015
]
- position: [
0.1977855506682589,
0.15723772401224015
]
- position: [
0.17212207720570655,
0.15551976265953
]
- position: [
0.17391287152691007,
0.15558259873908495
]
- position: [
0.1939281285635483,
0.15692381981311482
]
- position: [
0.19709752458683705,
0.15692381981311482
]
- position: [
0.17867857642604565,
0.1760156191948301
]
- position: [
0.1720485124034892,
0.1760156191948301
]
- position: [
0.19243750713113184,
0.15887381915795443
]
- position: [
0.1985881460192535,
0.15887381915795445
]
- position: [
0.20163777230049718,
0.26759312584763717
]
- position: [
0.23411784418837994,
0.2675931258476371
]
- position: [
0.1698911549641544,
0.16370062891978251
]
- position: [
0.16423597669562123,
0.16295628623321495
]
- position: [
0.164270517413585,
0.16370062891978251
]
- position: [
0.16992569568211818,
0.16295628623321495
]
- position: [
0.16329436248073068,
0.16272078756355457
]
- position: [
0.16971407774046293,
0.1638147726946744
]
- position: [
0.17086730989700877,
0.16272078756355457
]
- position: [
0.16444759463727648,
0.16381477269467437
]
- position: [
0.16980055837755084,
0.16354318253042563
]
- position: [
0.1641742448408192,
0.16269214387427047
]
- position: [
0.1643611140001886,
0.16354318253042563
]
- position: [
0.1699874275369202,
0.1626921438742705
]
- position: [
0.16296099505277442,
0.1625737426969202
]
- position: [
0.16966827706965412,
0.16388870505348654
]
- position: [
0.17120067732496502,
0.16257374269692026
]
- position: [
0.16449339530808535,
0.16388870505348654
]
- position: [
0.2178778082444386,
0.2703446812816859
]
- position: [
0.13796833536796266,
0.11963988320424497
]
- position: [
0.13796833536796266,
0.12467799413480772
]
- position: [
0.13796833536796266,
0.1191360721111887
]
- position: [
0.13796833536796266,
0.12367037194869515
]
- position: [
0.13796833536796266,
0.11868264212743805
]
- position: [
0.13796833536796266,
0.12276351198119388
]
- position: [
0.13796833536796266,
0.11827455514206248
]
- position: [
0.13796833536796266,
0.12194733801044272
]
- position: [
0.13796833536796266,
0.11790727685522445
]
- position: [
0.13796833536796266,
0.12121278143676666
]
- position: [
0.13796833536796266,
0.11757672639707023
]
- position: [
0.13796833536796266,
0.12055168052045823
]
- position: [
0.13796833536796266,
0.11727923098473143
]
- position: [
0.13796833536796266,
0.11995668969578065
]
- position: [
0.13796833536796266,
0.11701148511362652
]
- position: [
0.13796833536796266,
0.11942119795357078
]
- position: [
0.19447579759386655,
0.15755241441891785
]
- position: [
0.19654985555651883,
0.15755241441891785
]
- position: [
0.19461061136143892,
0.15755241441891785
]
- position: [
0.19641504178894645,
0.15755241441891785
]
- position: [
0.2018449291759475,
0.2660394492817595
]
- position: [
0.2339106873129296,
0.26603944928175943
]
- position: [
0.1379683353679626,
0.11926191815171247
]
- position: [
0.1379683353679626,
0.12392206402974258
]
- position: [
0.1379683353679626,
0.11879590356390944
]
- position: [
0.1379683353679626,
0.12299003485413657
]
- position: [
0.1379683353679626,
0.11837649043488672
]
- position: [
0.1379683353679626,
0.12215120859609112
]
- position: [
0.1379683353679626,
0.11799901861876629
]
- position: [
0.1379683353679626,
0.12139626496385024
]
- position: [
0.1379683353679626,
0.11765929398425788
]
- position: [
0.1379683353679626,
0.1207168156948335
]
- position: [
0.1379683353679626,
0.11735354181320028
]
- position: [
0.1379683353679626,
0.12010531135271839
]
- position: [
0.1379683353679626,
0.11707836485924847
]
- position: [
0.1379683353679626,
0.11955495744481476
]
- position: [
0.1379683353679626,
0.11683070560069185
]
- position: [
0.1379683353679626,
0.11905963892770145
]
- position: [
0.19454349958080752,
0.15749136861225138
]
- position: [
0.1964821535695777,
0.15749136861225138
]
- position: [
0.19648215356957766,
0.15749136861225138
]
- position: [
0.1945434995808076,
0.15749136861225138
]
- position: [
0.19647205641338622,
0.15747723164928143
]
- position: [
0.19455359673699912,
0.15747723164928143
]
- position: [
0.13796833536796266,
0.11926191815171247
]
- position: [
0.13796833536796266,
0.12392206402974258
]
- position: [
0.13796833536796266,
0.11879590356390944
]
- position: [
0.13796833536796266,
0.12299003485413657
]
- position: [
0.13796833536796266,
0.11837649043488672
]
- position: [
0.13796833536796266,
0.12215120859609112
]
- position: [
0.13796833536796266,
0.11799901861876629
]
- position: [
0.13796833536796266,
0.12139626496385024
]
- position: [
0.13796833536796266,
0.11765929398425788
]
- position: [
0.13796833536796266,
0.1207168156948335
]
- position: [
0.13796833536796266,
0.11735354181320028
]
- position: [
0.13796833536796266,
0.12010531135271839
]
- position: [
0.13796833536796266,
0.11707836485924847
]
- position: [
0.13796833536796266,
0.11955495744481476
]
- position: [
0.13796833536796266,
0.11683070560069185
]
- position: [
0.13796833536796266,
0.11905963892770145
]
- position: [
0.19634735653442098,
0.15746708922656819
]
- position: [
0.1946782966159643,
0.15746708922656819
]
- position: [
0.19467829661596428,
0.15746708922656819
]
- position: [
0.19634735653442104,
0.15746708922656819
]
- position: [
0.19647205641338622,
0.1574661372066027
]
- position: [
0.19455359673699912,
0.1574661372066027
]
- position: [
0.0275187318942521,
0.050004379462195055
]
- position: [
0.13865206406918631,
0.11082449952161813
]
- position: [
0.1396033010206994,
0.10670423961541153
]
- position: [
0.14062950453675518,
0.11131550203408158
]
- position: [
0.14329067370554777,
0.10802923179448086
]
- position: [
0.14180078442666083,
0.11281467192812238
]
- position: [
0.14563323348535911,
0.11102757158256243
]
- position: [
0.1421963309925757,
0.11467557221182609
]
- position: [
0.1464243266171888,
0.1147493721499699
]
- position: [
0.1417360808996267,
0.116521534509284
]
- position: [
0.1455038264312908,
0.11844129674488574
]
- position: [
0.14051319424700948,
0.11797891407087607
]
- position: [
0.14305805312605638,
0.12135605586806991
]
- position: [
0.1387751978546163,
0.11875271991973224
]
- position: [
0.13958206034127008,
0.12290366756578229
]

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24073248845225406 0.2494909368722861 0.24188766313423996 0.2475101238438775 C 0.24073248845225406 0.2494909368722861 0.2297390831874525 0.2587673083827231 0.23173990442826928 0.25755640496278853 C 0.2297390831874525 0.2587673083827231 0.2155674588804668 0.2620409648830925 0.2178778082444386 0.2620409648830925 C 0.2155674588804668 0.2620409648830925 0.2020148908197911 0.25634550154285407 0.2040157120606079 0.25755640496278864 C 0.2020148908197911 0.25634550154285407 0.19271277867265127 0.24552931081546894 0.19386795335463716 0.24751012384387755 C 0.19271277867265127 0.24552931081546894 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.12428215862934613) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19551282657519264 0.2561137856183718 C 0.19538877912759423 0.2540186359862298 0.1937761623088146 0.22660029693720196 0.19402425720401145 0.23097199003266786 C 0.1937761623088146 0.22660029693720196 0.19241164038523187 0.20137692500945728 0.1925356878328303 0.20365346847278118" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1925356878328303 0.20365346847278118 C 0.19248668759503604 0.20221330348259917 0.19194589840615459 0.18241712332475166 0.19194768497929923 0.18637148859059705 C 0.19194589840615459 0.18241712332475166 0.192561462619744 0.1536868850069731 0.1925142489550944 0.1562010852826365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19851140419529087 0.1562010852826365 C 0.19855861785994047 0.15871528555829986 0.19907618159794144 0.19032585385644243 0.19907796817108608 0.18637148859059705 C 0.19907618159794144 0.19032585385644243 0.19844096507976075 0.2050936334629632 0.198489965317555 0.20365346847278118" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.198489965317555 0.20365346847278118 C 0.19836591786995655 0.20593001193610508 0.19675330105117692 0.23534368312813375 0.19700139594637378 0.23097199003266786 C 0.19675330105117692 0.23534368312813375 0.19538877912759423 0.25820893525051375 0.19551282657519264 0.2561137856183718" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3315941297101035,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.1747139434286262 0.1626271006073876 C 0.17475250227575354 0.16500333224750122 0.17515576294029492 0.19533417422013685 0.1751766495941541 0.19114188028875098 C 0.17515576294029492 0.19533417422013685 0.17440385808132947 0.21475069007529024 0.174463303582316 0.21293462778401798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174463303582316 0.21293462778401798 C 0.17437035650371924 0.21494551017418714 0.17318791527029737 0.24097376966509212 0.17334793863915482 0.23706521646604806 C 0.17318791527029737 0.24097376966509212 0.17247594686576584 0.26173493698142153 0.17254302315602654 0.25983726617254665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17254302315602654 0.25983726617254665 C 0.17236608521994667 0.2579395953636718 0.17013913656845958 0.233156663267004 0.17041976792306798 0.23706521646604806 C 0.17013913656845958 0.233156663267004 0.16907175348219708 0.2109237453938488 0.1691754469007256 0.21293462778401798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1691754469007256 0.21293462778401798 C 0.16903938478286767 0.2111185654927457 0.16752301049473356 0.1869495863573651 0.16754270148643033 0.19114188028875098 C 0.16752301049473356 0.1869495863573651 0.16905552612652566 0.160250868967274 0.1689391550003645 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3279408233169804,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.17451013276793553 0.1647823570853411 C 0.17450149544649787 0.1668919158461631 0.17422711329679277 0.1943635569552087 0.17440648491068353 0.19009706221520511 C 0.17422711329679277 0.1943635569552087 0.17218693910879324 0.21813722994456589 0.17235767340124633 0.2159802939653843" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17235767340124633 0.2159802939653843 C 0.17221777668958485 0.21800801934822175 0.17043351713862237 0.244022745542376 0.1706789128613086 0.240312998559434 C 0.17043351713862237 0.244022745542376 0.16930742571798701 0.26217927936079255 0.16941292472901176 0.26049725776068805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16941292472901176 0.26049725776068805 C 0.16925028698365666 0.25880204760072323 0.16728950080647423 0.23642447011958995 0.16746127178475045 0.24015473584111016 C 0.16728950080647423 0.23642447011958995 0.16734253975677602 0.2136990135408899 0.16735167298969714 0.2157340691024453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16735167298969714 0.2157340691024453 C 0.1673140269522225 0.21356688373973243 0.16703246417331924 0.18545904673139144 0.16689992054000138 0.1897278447498909 C 0.16703246417331924 0.18545904673139144 0.16911238626030403 0.16240688022466498 0.1689421965895115 0.1645084928804516" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32219150019841303,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546718492650892 0.16447744805737904 C 0.1754637473085877 0.16657849803356212 0.17530244199614772 0.19398559807582294 0.17542593351145405 0.18969004777157583 C 0.17530244199614772 0.19398559807582294 0.17386523284544797 0.21821855203640822 0.17398528674283306 0.21602405170834418" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17398528674283306 0.21602405170834418 C 0.17384885808143388 0.21764865325825233 0.17206300823518605 0.239423489745092 0.17234814280604294 0.23551927030724196 C 0.17206300823518605 0.239423489745092 0.17041496598309283 0.2651543028504865 0.17056367189255053 0.2628746849625446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17056367189255053 0.2628746849625446 C 0.1703686337339701 0.2605742243656133 0.16800348959707218 0.23136928657810357 0.16822321398958548 0.23526915779936877 C 0.16800348959707218 0.23136928657810357 0.16790229294845813 0.21447681968302817 0.167926979182391 0.21607623030736206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.167926979182391 0.21607623030736206 C 0.16788518462639415 0.21388312393717593 0.16750945136530612 0.1854637436318078 0.16742544451042884 0.1897589538651286 C 0.16750945136530612 0.1854637436318078 0.1690608628517923 0.16243160364437786 0.1689350614409182 0.16453370750751253" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31644217707984557,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.17451395433503533 0.16430184783156565 C 0.1745575744546823 0.16644123829950747 0.17494607123422967 0.19443440037022966 0.17503739577079896 0.18997453344686746 C 0.17494607123422967 0.19443440037022966 0.17328311523998755 0.22014072736733248 0.17341805989620382 0.2178202509119121" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17341805989620382 0.2178202509119121 C 0.17325568809099395 0.2200119260908584 0.17124488680666275 0.2478216755288034 0.1714695982336854 0.24412035305926763 C 0.17124488680666275 0.2478216755288034 0.17065918315011913 0.26374576783693093 0.17072152277193192 0.26223612054634143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17072152277193192 0.26223612054634143 C 0.17051998659024947 0.26038545668398855 0.16799269238669692 0.2363410505674169 0.1683030885917427 0.24002815419810686 C 0.16799269238669692 0.2363410505674169 0.16688790828801917 0.2161544372097248 0.16699676831138252 0.21799087697806188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16699676831138252 0.21799087697806188 C 0.16701045238675505 0.2156428744366341 0.16728497236881168 0.18533057428156652 0.1671609772158528 0.1898148464809286 C 0.16728497236881168 0.18533057428156652 0.16859502122447553 0.16204334092778247 0.16848471014688918 0.16417961058571678" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3130281152203159,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.17675686258173068 0.16880402018979246 C 0.17666095311572452 0.17034213070041443 0.17531619886568736 0.19088138193142126 0.1756059489896568 0.18726134631725605 C 0.17531619886568736 0.19088138193142126 0.17308602043613405 0.2143263726633182 0.17327986109409735 0.21224444755977495" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17327986109409735 0.21224444755977495 C 0.17312650518034137 0.21475469040221387 0.17116739558872093 0.24709792542345332 0.17143959012902563 0.2423673616690419 C 0.17116739558872093 0.24709792542345332 0.16989468798389235 0.27123153352468427 0.17001352661044106 0.26901121261271177" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17001352661044106 0.26901121261271177 C 0.1698533863386268 0.26653986634304033 0.16796738847032183 0.23460840533390415 0.16809184334866992 0.23935505737665458 C 0.16796738847032183 0.23460840533390415 0.16855575346373006 0.2097760823266275 0.1685200680702639 0.2120513880997065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1685200680702639 0.2120513880997065 C 0.16860221038047418 0.20996493245825967 0.1696381250541969 0.18338750053462288 0.1695057757927871 0.18701392040234446 C 0.1696381250541969 0.18338750053462288 0.17015846615838093 0.16699438546077267 0.1701082592071814 0.16853434968704742" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3430927759472383,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.17471394342862617 0.1626271006073876 C 0.17483031455478737 0.16500333224750122 0.17609070595086368 0.19533417422013685 0.17611039694256042 0.19114188028875098 C 0.17609070595086368 0.19533417422013685 0.17434158941040717 0.21475069007529024 0.1744776515282651 0.21293462778401798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1744776515282651 0.21293462778401798 C 0.17437395810973658 0.21494551017418714 0.1729526991513143 0.24097376966509212 0.1732333305059227 0.23706521646604806 C 0.1729526991513143 0.24097376966509212 0.17093313733688428 0.26173493698142153 0.17111007527296415 0.25983726617254665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17111007527296415 0.25983726617254665 C 0.17104299898270348 0.2579395953636718 0.17014513642097842 0.233156663267004 0.17030515978983587 0.23706521646604806 C 0.17014513642097842 0.233156663267004 0.169096847768078 0.2109237453938488 0.16918979484667476 0.21293462778401798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16918979484667476 0.21293462778401798 C 0.16913034934568824 0.2111185654927457 0.16845556218097743 0.1869495863573651 0.16847644883483662 0.19114188028875098 C 0.16845556218097743 0.1869495863573651 0.16897771384749188 0.160250868967274 0.16893915500036455 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3467460823403615,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.17451013276793564 0.1645084928804516 C 0.17468032243872816 0.16661010553623823 0.17668495245076365 0.19399664276839038 0.17655240881744577 0.1897278447498909 C 0.17668495245076365 0.19399664276839038 0.17606301033027544 0.21790125446515818 0.17610065636775007 0.2157340691024453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17610065636775007 0.2157340691024453 C 0.17609152313482895 0.2177691246640007 0.17581928659442053 0.24388500156263038 0.17599105757269676 0.24015473584111016 C 0.17581928659442053 0.24388500156263038 0.17387676688308037 0.26219246792065287 0.17403940462843548 0.26049725776068805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17403940462843548 0.26049725776068805 C 0.17393390561741073 0.25881523616058355 0.1725280207734524 0.236603251576492 0.17277341649613862 0.240312998559434 C 0.1725280207734524 0.236603251576492 0.17095475924453934 0.21395256858254683 0.17109465595620083 0.2159802939653843" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17109465595620083 0.2159802939653843 C 0.17092392166374773 0.2138233579862027 0.16886647283287284 0.1858305674752015 0.1690458444467636 0.1900970622152051 C 0.16886647283287284 0.1858305674752015 0.168933559268074 0.1626727983245191 0.16894219658951165 0.1647823570853411" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3524954054589289,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546718492650892 0.16453370750751253 C 0.17559298633738304 0.1666358113706472 0.17706080871187563 0.1940541640984494 0.17697680185699835 0.1897589538651286 C 0.17706080871187563 0.1940541640984494 0.1764334726290393 0.2182693366775482 0.17647526718503614 0.21607623030736206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17647526718503614 0.21607623030736206 C 0.17645058095110328 0.21767564093169595 0.1759593079853284 0.23916902902063397 0.1761790323778417 0.23526915779936877 C 0.1759593079853284 0.23916902902063397 0.1736435363162963 0.26517514555947597 0.17383857447487672 0.2628746849625446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17383857447487672 0.2628746849625446 C 0.17368986856541901 0.2605950670746027 0.17176896899052738 0.2316150508693919 0.17205410356138426 0.23551927030724196 C 0.17176896899052738 0.2316150508693919 0.1702805309631949 0.21439945015843603 0.17041695962459408 0.21602405170834418" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17041695962459408 0.21602405170834418 C 0.170296905727209 0.21382955138028015 0.16885282134066681 0.18539449746732872 0.16897631285597314 0.18969004777157583 C 0.16885282134066681 0.18539449746732872 0.168931623822997 0.16237639808119597 0.16893506144091824 0.16447744805737904" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3582447285774963,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.1745139543350353 0.16417961058571678 C 0.17462426541262166 0.1663158802436511 0.17596168241903062 0.1942991186802907 0.17583768726607174 0.1898148464809286 C 0.17596168241903062 0.1942991186802907 0.17601558024591454 0.22033887951948966 0.17600189617054202 0.21799087697806188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17600189617054202 0.21799087697806188 C 0.17589303614717866 0.21982731674639897 0.174385179685136 0.24371525782879683 0.17469557589018178 0.24002815419810686 C 0.174385179685136 0.24371525782879683 0.17207560552831017 0.2640867844086943 0.1722771417099926 0.26223612054634143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1722771417099926 0.26223612054634143 C 0.1722148020881798 0.26072647325575193 0.17130435482121642 0.24041903058973185 0.17152906624823908 0.24412035305926763 C 0.17130435482121642 0.24041903058973185 0.16941823278051088 0.2156285757329658 0.16958060458572075 0.2178202509119121" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16958060458572075 0.2178202509119121 C 0.16944565992950447 0.2154997744564917 0.16786994417455622 0.18551466652350526 0.16796126871112552 0.18997453344686746 C 0.16786994417455622 0.18551466652350526 0.16852833026653616 0.16216245736362384 0.16848471014688918 0.16430184783156565" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.361658790437026,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.17675686258173065 0.16853434968704742 C 0.17680706953293018 0.17007431391332217 0.17749169525753478 0.19064034027006604 0.17735934599612496 0.18701392040234446 C 0.17749169525753478 0.19064034027006604 0.17842719602885854 0.21413784374115333 0.17834505371864826 0.2120513880997065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17834505371864826 0.2120513880997065 C 0.1783807391121144 0.2143266938727855 0.17864882356189413 0.244101709419405 0.1787732784402422 0.23935505737665458 C 0.17864882356189413 0.244101709419405 0.17669145490665683 0.2714825588823832 0.1768515951784711 0.26901121261271177" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1768515951784711 0.26901121261271177 C 0.1767327565519224 0.2667908917007393 0.17515333711958173 0.2376367979146305 0.17542553165988642 0.2423673616690419 C 0.17515333711958173 0.2376367979146305 0.17343190478105874 0.20973420471733603 0.17358526069481472 0.21224444755977495" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17358526069481472 0.21224444755977495 C 0.17339142003685143 0.2101625224562317 0.17096942267528578 0.18364131070309084 0.17125917279925523 0.18726134631725605 C 0.17096942267528578 0.18364131070309084 0.17001234974117527 0.1672659096791705 0.17010825920718142 0.16880402018979246" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24073248845225406 0.2494909368722861 0.24188766313423996 0.2475101238438775 C 0.24073248845225406 0.2494909368722861 0.2297390831874525 0.2587673083827231 0.23173990442826928 0.25755640496278853 C 0.2297390831874525 0.2587673083827231 0.2155674588804668 0.2620409648830925 0.2178778082444386 0.2620409648830925 C 0.2155674588804668 0.2620409648830925 0.2020148908197911 0.25634550154285407 0.2040157120606079 0.25755640496278864 C 0.2020148908197911 0.25634550154285407 0.19271277867265127 0.24552931081546894 0.19386795335463716 0.24751012384387755 C 0.19271277867265127 0.24552931081546894 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.12428215862934613) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19551282657519264 0.2491770976372723 C 0.19538877912759423 0.24712295845960375 0.1937761623088146 0.22046248687408027 0.19402425720401145 0.22452742750524957 C 0.1937761623088146 0.22046248687408027 0.19241164038523187 0.19838700860973982 0.1925356878328303 0.20039781006324056" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1925356878328303 0.20039781006324056 C 0.19248668759503604 0.19905869840642043 0.19194589840615459 0.18065157436812918 0.19194768497929923 0.1843284701813991 C 0.19194589840615459 0.18065157436812918 0.192561462619744 0.15393727614755162 0.1925142489550944 0.15627506030400143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19851140419529087 0.15627506030400143 C 0.19855861785994047 0.15861284446045124 0.19907618159794144 0.18800536599466905 0.19907796817108608 0.1843284701813991 C 0.19907618159794144 0.18800536599466905 0.19844096507976075 0.2017369217200607 0.198489965317555 0.20039781006324056" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.198489965317555 0.20039781006324056 C 0.19836591786995655 0.2024086115167413 0.19675330105117692 0.22859236813641887 0.19700139594637378 0.22452742750524957 C 0.19675330105117692 0.22859236813641887 0.19538877912759423 0.25123123681494086 0.19551282657519264 0.2491770976372723" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3315941297101035,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.1747139434286262 0.1626271006073876 C 0.17475250227575354 0.1648365970958273 0.17515576294029492 0.19303918799591038 0.1751766495941541 0.18914105846866394 C 0.17515576294029492 0.19303918799591038 0.17440385808132947 0.21109328797315155 0.174463303582316 0.20940465493434482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174463303582316 0.20940465493434482 C 0.17437035650371924 0.2111684361906806 0.17310385421191493 0.23432401096326588 0.17334793863915482 0.23057003001037432 C 0.17310385421191493 0.23432401096326588 0.17138315310679433 0.25644262606559926 0.17153429045543744 0.25445242636904347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17153429045543744 0.25445242636904347 C 0.17144141357773998 0.2524622266724877 0.170223197626842 0.22681604905748276 0.17041976792306798 0.23057003001037432 C 0.170223197626842 0.22681604905748276 0.16907175348219708 0.20764087367800904 0.1691754469007256 0.20940465493434482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1691754469007256 0.20940465493434482 C 0.16903938478286767 0.2077160218955381 0.16752301049473356 0.1852429289414175 0.16754270148643033 0.18914105846866394 C 0.16752301049473356 0.1852429289414175 0.16905552612652566 0.16041760411894793 0.1689391550003645 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3279408233169804,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.1745117662633915 0.16472025555908756 C 0.17453482795603673 0.1666816550905765 0.1746732695557127 0.19222695045035282 0.1747885065751343 0.18825704993695475 C 0.1746732695557127 0.19222695045035282 0.17299062331826526 0.21436756270177373 0.17312892203033212 0.21235906171986457" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17312892203033212 0.21235906171986457 C 0.17298371800839152 0.21420528790094542 0.1710345335049229 0.2382096960005804 0.17138647376704483 0.23451377589283476 C 0.1710345335049229 0.2382096960005804 0.16869890264468776 0.25855979693947706 0.16890563888486906 0.2567101030128123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16890563888486906 0.2567101030128123 C 0.1688440810392188 0.2547758809201305 0.16810147352533697 0.22979230472448775 0.16816694473706587 0.2334994379006309 C 0.16810147352533697 0.22979230472448775 0.16811607097804354 0.2104515938156331 0.16811998434412218 0.21222450489909447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16811998434412218 0.21222450489909447 C 0.16804978045893953 0.21021040283999776 0.1673459192844251 0.1840841209822347 0.16727753772193066 0.1880552801899338 C 0.1673459192844251 0.1840841209822347 0.16907914854173264 0.16261353725810274 0.16894056309405556 0.16457059440670513" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32219150019841303,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546626481932254 0.16441786515646095 C 0.17549439757268942 0.16637125614461476 0.17574492900966782 0.19185441694806185 0.17580385785972497 0.18785855701430668 C 0.17574492900966782 0.19185441694806185 0.17467205701521285 0.21441065330712433 0.17475911861863686 0.21236818436152297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17475911861863686 0.21236818436152297 C 0.17453341215322937 0.21449567890024843 0.17153184804011778 0.24176201840517858 0.17205064103374718 0.23789811882622844 C 0.17153184804011778 0.24176201840517858 0.16824051616686211 0.2604713843491492 0.16853360269508405 0.25873497930892453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16853360269508405 0.25873497930892453 C 0.16856941435288028 0.2568503216712361 0.16897741884657064 0.23226874645747347 0.1689633425886388 0.2361190876566634 C 0.16897741884657064 0.23226874645747347 0.16868078239040185 0.21056520135714415 0.16870251779026624 0.21253088491864564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16870251779026624 0.21253088491864564 C 0.16862777653587166 0.21049276253902363 0.16782507805068447 0.18407861682066373 0.16780562273753127 0.18807341636318164 C 0.16782507805068447 0.18407861682066373 0.16903017811565235 0.16263661324553463 0.16893598154810457 0.16459329040843057" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31644217707984557,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.17451441354652203 0.16424072920864125 C 0.1745901729649076 0.16622887801516106 0.175399228776772 0.1922465321172311 0.1754235265671486 0.1880985148868789 C 0.175399228776772 0.1922465321172311 0.17412278285324065 0.21617680439670012 0.1742228400620028 0.21401693597286772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1742228400620028 0.21401693597286772 C 0.17395221142167394 0.2160634023245805 0.1703103716136264 0.24228454794229734 0.1709752963780563 0.2385745321934208 C 0.1703103716136264 0.24228454794229734 0.1658494467647426 0.26020067435654987 0.16624374288884364 0.2585371249593861" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16624374288884364 0.2585371249593861 C 0.16637327074126507 0.2565309883270205 0.16797404443597194 0.23073890390431712 0.16779807711790065 0.23446348537099876 C 0.16797404443597194 0.23073890390431712 0.16840179017134904 0.2121237025248905 0.16835535070569915 0.2138421473592065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16835535070569915 0.2138421473592065 C 0.1682878971646218 0.2116968446531792 0.16755664989857957 0.1839650633743318 0.16754590821277096 0.1880985148868789 C 0.16755664989857957 0.1839650633743318 0.16856244616228844 0.16225258040212143 0.16848425093540248 0.16424072920864125" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3130281152203159,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.1767588888908717 0.16866918493841992 C 0.17670925333262266 0.17010211322320912 0.1760229198208578 0.18938487751300417 0.17616326219188302 0.18586432435589026 C 0.1760229198208578 0.18938487751300417 0.1749840736257927 0.2130034476961117 0.1750747804385689 0.21091582282378699" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1750747804385689 0.21091582282378699 C 0.17479239357692336 0.2136669809039513 0.17088177169929158 0.2485509142313085 0.17168613809882263 0.24392971978575875 C 0.17088177169929158 0.2485509142313085 0.16490040410631082 0.26824019253576953 0.16542238364419634 0.26637015617038406" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16542238364419634 0.26637015617038406 C 0.16565955937955146 0.2642671206656654 0.1686355073467078 0.2363668784901588 0.16826849246845768 0.24113373011375958 C 0.1686355073467078 0.2363668784901588 0.1699564013260925 0.2065041205682926 0.1698265621831975 0.20916793668717468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1698265621831975 0.20916793668717468 C 0.169845962890366 0.20722596899290097 0.1700826765621229 0.18248942837682736 0.17005937066921933 0.18586432435589026 C 0.1700826765621229 0.18248942837682736 0.17011013808377545 0.16723625665363073 0.17010623289804036 0.16866918493841992" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3430927759472383,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.17471394342862617 0.1626271006073876 C 0.17483031455478737 0.1648365970958273 0.17609070595086368 0.19303918799591038 0.17611039694256042 0.18914105846866394 C 0.17609070595086368 0.19303918799591038 0.17434158941040717 0.21109328797315155 0.1744776515282651 0.20940465493434482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1744776515282651 0.20940465493434482 C 0.17437395810973658 0.2111684361906806 0.17303676020969672 0.23432401096326588 0.1732333305059227 0.23057003001037432 C 0.17303676020969672 0.23432401096326588 0.1720259310958558 0.25644262606559926 0.17211880797355325 0.25445242636904347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17211880797355325 0.25445242636904347 C 0.17196767062491014 0.2524622266724877 0.17006107536259601 0.22681604905748276 0.17030515978983587 0.23057003001037432 C 0.17006107536259601 0.22681604905748276 0.169096847768078 0.20764087367800904 0.16918979484667476 0.20940465493434482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16918979484667476 0.20940465493434482 C 0.16913034934568824 0.2077160218955381 0.16845556218097743 0.1852429289414175 0.16847644883483662 0.18914105846866394 C 0.16845556218097743 0.1852429289414175 0.16897771384749188 0.16041760411894793 0.16893915500036455 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3467460823403615,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.1745117662633916 0.16457059440670513 C 0.17465035171106869 0.16652765155530752 0.17624317319801094 0.19202643939763292 0.1761747916355165 0.1880552801899338 C 0.17624317319801094 0.19202643939763292 0.17526214112814242 0.2142386069581912 0.17533234501332504 0.21222450489909447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17533234501332504 0.21222450489909447 C 0.1753284316472464 0.21399741598255584 0.17521991340865245 0.23720657107677406 0.17528538462038135 0.2334994379006309 C 0.17521991340865245 0.23720657107677406 0.1744851326269279 0.25864432510549407 0.17454669047257818 0.2567101030128123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17454669047257818 0.2567101030128123 C 0.17433995423239687 0.2548604090861475 0.17171391532828045 0.23081785578508912 0.17206585559040238 0.23451377589283476 C 0.17171391532828045 0.23081785578508912 0.1701782033051744 0.21051283553878372 0.17032340732711504 0.21235906171986457" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17032340732711504 0.21235906171986457 C 0.17018510861504818 0.2103505607379554 0.1685485857628912 0.18428714942355667 0.16866382278231282 0.18825704993695475 C 0.1685485857628912 0.18428714942355667 0.16896362478670093 0.16275885602759863 0.1689405630940557 0.16472025555908756" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3524954054589289,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546626481932254 0.16459329040843057 C 0.17556046138687031 0.1665499675713265 0.17661607894304912 0.19206821590569956 0.17659662362989592 0.18807341636318164 C 0.17661607894304912 0.19206821590569956 0.17562498732276632 0.21456900729826764 0.1756997285771609 0.21253088491864564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1756997285771609 0.21253088491864564 C 0.17567799317729652 0.21449656848014712 0.17545298003672022 0.23996942885585332 0.17543890377878837 0.2361190876566634 C 0.17545298003672022 0.23996942885585332 0.17590445533013943 0.26061963694661294 0.1758686436723432 0.25873497930892453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1758686436723432 0.25873497930892453 C 0.17557555714412126 0.2569985742686999 0.1718328123400506 0.2340342192472783 0.17235160533368002 0.23789811882622844 C 0.1718328123400506 0.2340342192472783 0.1694174212833828 0.2102406898227975 0.16964312774879028 0.21236818436152297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16964312774879028 0.21236818436152297 C 0.16955606614536628 0.2103257154159216 0.16853945965764508 0.1838626970805515 0.16859838850770223 0.18785855701430668 C 0.16853945965764508 0.1838626970805515 0.16896411430147149 0.16246447416830714 0.16893598154810463 0.16441786515646095" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3582447285774963,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.174514413546522 0.16424072920864125 C 0.17459260877340796 0.16622887801516106 0.1754634979549622 0.192231966399426 0.17545275626915358 0.1880985148868789 C 0.1754634979549622 0.192231966399426 0.17457586023514804 0.21598745006523382 0.17464331377622538 0.2138421473592065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17464331377622538 0.2138421473592065 C 0.17468975324187525 0.21556059219352253 0.17537655468209512 0.2381880668376804 0.17520058736402383 0.23446348537099876 C 0.17537655468209512 0.2381880668376804 0.1768844494455023 0.2605432615917517 0.17675492159308087 0.2585371249593861" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17675492159308087 0.2585371249593861 C 0.17636062546897982 0.2568735755622223 0.17135844333943825 0.23486451644454429 0.17202336810386817 0.2385745321934208 C 0.17135844333943825 0.23486451644454429 0.1685051957795929 0.21197046962115496 0.16877582441992175 0.21401693597286772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16877582441992175 0.21401693597286772 C 0.1686757672111596 0.21185706754903533 0.16755084012439928 0.18395049765652668 0.16757513791477588 0.1880985148868789 C 0.16755084012439928 0.18395049765652668 0.16856001035378804 0.16225258040212143 0.16848425093540248 0.16424072920864125" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.361658790437026,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.17675888889087168 0.16866918493841992 C 0.17676279407660678 0.17010211322320912 0.17682905701259632 0.18923922033495316 0.17680575111969274 0.18586432435589026 C 0.17682905701259632 0.18923922033495316 0.17705796031288315 0.2111099043814484 0.17703855960571466 0.20916793668717468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17703855960571466 0.20916793668717468 C 0.17716839874860965 0.21183175280605676 0.17896364419870453 0.24590058173736035 0.17859662932045445 0.24113373011375958 C 0.17896364419870453 0.24590058173736035 0.18167991388007093 0.26847319167510275 0.18144273814471581 0.26637015617038406" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18144273814471581 0.26637015617038406 C 0.18092075860683027 0.2645001198049986 0.17437461729055836 0.239308525340209 0.1751789836900894 0.24392971978575875 C 0.17437461729055836 0.239308525340209 0.17150795448869766 0.20816466474362266 0.17179034135034318 0.21091582282378699" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17179034135034318 0.21091582282378699 C 0.171699634537567 0.20882819795146226 0.1705615172260038 0.18234377119877634 0.17070185959702902 0.18586432435589026 C 0.1705615172260038 0.18234377119877634 0.17005659733979134 0.16723625665363073 0.1701062328980404 0.16866918493841992" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31819682553667905,0.1369948382874785) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16871641407915786 0.16391962988020373 C 0.16844273225693815 0.1658571233386404 0.1643170346600329 0.19200237855290692 0.16543223221252149 0.1871695513814435 C 0.1643170346600329 0.19200237855290692 0.1544925277190259 0.2248088896507913 0.1553340434492948 0.22191355593776455" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1553340434492948 0.22191355593776455 C 0.1551289563389916 0.2218760776172079 0.15246282390505014 0.22138885944997158 0.15287299812565652 0.22146381609108487 C 0.15246282390505014 0.22138885944997158 0.15020686569171504 0.22097659792384838 0.15041195280201825 0.22101407624440503" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15041195280201825 0.22101407624440503 C 0.15092157017943342 0.21849738137074887 0.15762383252224169 0.1863424586815822 0.15652736133100026 0.19081373776053093 C 0.15762383252224169 0.1863424586815822 0.1641564609107417 0.16540414309172763 0.16356960709691545 0.1673587272970202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16356960709691545 0.1673587272970202 C 0.1638273719138144 0.16702105468160905 0.16709168548155662 0.16302006446068512 0.1666627848997031 0.16330665591208648 C 0.16709168548155662 0.16302006446068512 0.16888754984411242 0.16397071104421349 0.16871641407915786 0.16391962988020373" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3238231390734107,0.13784587694363365) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.16836080806223808 0.17149040448169406 C 0.16844225546617653 0.17106634904669185 0.16966167417225403 0.1662748164617323 0.16933817690949943 0.16640173926166757 C 0.16966167417225403 0.1662748164617323 0.17248482507410928 0.17026446351753785 0.17224277521529313 0.1699673308824709" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17224277521529313 0.1699673308824709 C 0.17227943660345554 0.17130086788191304 0.1723844843758243 0.1908963658848116 0.1726827118732422 0.18596977487577643 C 0.1723844843758243 0.1908963658848116 0.16832915636069817 0.23267947700048597 0.16866404524627848 0.22908642299089294" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16866404524627848 0.22908642299089294 C 0.16843081901116302 0.22899529132958438 0.16539887795466204 0.227810579732573 0.16586533042489296 0.22799284305519013 C 0.16539887795466204 0.227810579732573 0.16283338936839195 0.22680813145817869 0.1630666156035074 0.22689926311948727" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1630666156035074 0.22689926311948727 C 0.16324523307134048 0.22403012455290972 0.16565120792239846 0.18785219543407383 0.16521002521750425 0.1924696003205566 C 0.16565120792239846 0.18785219543407383 0.16862337329929922 0.16974213816178885 0.16836080806223808 0.17149040448169406" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.16975659882967203 0.16253078295732162 C 0.16958636607059432 0.16422690819468022 0.166944081943029 0.1878101137339654 0.16771380572073966 0.18288428580562477 C 0.166944081943029 0.1878101137339654 0.15992042247851151 0.22487042078839128 0.16051991349714445 0.22164071809740923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16051991349714445 0.22164071809740923 C 0.16029641343280063 0.22160129674005302 0.15739091259633076 0.22108881909442227 0.15783791272501843 0.2211676618091347 C 0.15739091259633076 0.22108881909442227 0.15493241188854862 0.22065518416350396 0.15515591195289244 0.22069460552086018" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15515591195289244 0.22069460552086018 C 0.1554852774063292 0.21744363139266876 0.15985161930589808 0.1767700551126643 0.15910829739413362 0.18168291598256325 C 0.15985161930589808 0.1767700551126643 0.16448973135239364 0.1600783883403652 0.16407577489406594 0.16174027508207273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16407577489406594 0.16174027508207273 C 0.16434323898542552 0.1615968148027071 0.16775874598501458 0.16008462738595602 0.16728534399038075 0.16001875172968527 C 0.16775874598501458 0.16008462738595602 0.1699625367329463 0.16274011889295797 0.16975659882967203 0.16253078295732162" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35649008012066286,0.13699483828747847) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16419332802595762 0.1639196298802037 C 0.16436446379091219 0.16386854871619394 0.16667585778726587 0.16359324736348785 0.16624695720541235 0.16330665591208648 C 0.16667585778726587 0.16359324736348785 0.16959789982509896 0.16769639991243135 0.1693401350082 0.1673587272970202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1693401350082 0.1673587272970202 C 0.16992698882202628 0.16931331150231277 0.17747885196535668 0.19528501683947966 0.17638238077411525 0.19081373776053093 C 0.17747885196535668 0.19528501683947966 0.18300740668051235 0.2235307711180612 0.18249778930309718 0.22101407624440503" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18249778930309718 0.22101407624440503 C 0.182292702192794 0.22105155456496167 0.17962656975885258 0.22153877273219816 0.18003674397945896 0.22146381609108487 C 0.17962656975885258 0.22153877273219816 0.17737061154551748 0.22195103425832122 0.17757569865582068 0.22191355593776457" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17757569865582068 0.22191355593776457 C 0.1767341829255518 0.21901822222473782 0.16636231234010543 0.18233672420998012 0.16747750989259402 0.18716955138144353 C 0.16636231234010543 0.18233672420998012 0.16391964620373792 0.16198213642176704 0.16419332802595762 0.1639196298802037" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35086376658393126,0.1378458769436336) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.17255006138637563 0.17149040448169403 C 0.17281262662343677 0.17323867080159924 0.17614202693600356 0.19708700520703934 0.17570084423110935 0.19246960032055657 C 0.17614202693600356 0.19708700520703934 0.17802287131293928 0.22976840168606488 0.17784425384510621 0.22689926311948733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17784425384510621 0.22689926311948733 C 0.17761102760999076 0.22699039478079588 0.17457908655348972 0.22817510637780725 0.17504553902372064 0.2279928430551901 C 0.17457908655348972 0.22817510637780725 0.17201359796721968 0.22917755465220158 0.17224682420233514 0.229086422990893" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17224682420233514 0.229086422990893 C 0.17191193531675483 0.22549336898129996 0.16792993007795357 0.18104318386674126 0.16822815757537143 0.18596977487577643 C 0.16792993007795357 0.18104318386674126 0.16870475562148302 0.16863379388302874 0.16866809423332058 0.16996733088247087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16866809423332058 0.16996733088247087 C 0.1689101440921367 0.16967019824740392 0.17189618980186872 0.1665286620616028 0.17157269253911414 0.16640173926166754 C 0.17189618980186872 0.1665286620616028 0.17263150879031408 0.17191445991669624 0.17255006138637563 0.17149040448169403" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.16440507354806735 0.16253078295732162 C 0.16461101145134163 0.16232144702168527 0.16734973038199247 0.15995287607341452 0.16687632838735864 0.16001875172968527 C 0.16734973038199247 0.15995287607341452 0.17035336157503309 0.16188373536143838 0.1700858974836735 0.16174027508207275" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1700858974836735 0.16174027508207275 C 0.17049985394200118 0.16340216182378028 0.1757966968953702 0.1865957768524622 0.17505337498360574 0.18168291598256325 C 0.1757966968953702 0.1865957768524622 0.17933512587828376 0.2239455796490516 0.179005760424847 0.22069460552086018" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.179005760424847 0.22069460552086018 C 0.17878226036050318 0.2207340268782164 0.17587675952403334 0.22124650452384712 0.176323759652721 0.2211676618091347 C 0.17587675952403334 0.22124650452384712 0.1734182588162511 0.22168013945476545 0.17364175888059494 0.22164071809740923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17364175888059494 0.22164071809740923 C 0.173042267861962 0.2184110154064272 0.16567814287928917 0.1779584578772842 0.16644786665699982 0.18288428580562482 C 0.16567814287928917 0.1779584578772842 0.16423484078898964 0.16083465771996303 0.16440507354806735 0.16253078295732162" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3169835757486343,0.13687643711012823) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.16821438599528737 0.1708441634776029 C 0.16852413896038887 0.17047996533896334 0.17228635697477346 0.1664057470628732 0.17193142157650526 0.16647378581392824 C 0.17228635697477346 0.1664057470628732 0.17251879320767252 0.1703238578525268 0.17247361077450582 0.17002769846494228" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17247361077450582 0.17002769846494228 C 0.1724954855962282 0.17082634050666895 0.17269279594270268 0.18132007536324518 0.1727361086351744 0.17961140296566241 C 0.17269279594270268 0.18132007536324518 0.17188867095065075 0.19144179759179172 0.17195385846484487 0.19053176723593562" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17195385846484487 0.19053176723593562 C 0.17143166480824235 0.19059722823344433 0.16554818956514808 0.19195577109733022 0.16568753458561444 0.1913172992060399 C 0.16554818956514808 0.19195577109733022 0.1706645668553847 0.1987664408252012 0.17028171821924853 0.19819342993141956" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17028171821924853 0.19819342993141956 C 0.169759524562646 0.19825889092892823 0.16387604931955171 0.19961743379281413 0.16401539434001808 0.1989789619015238 C 0.16387604931955171 0.19961743379281413 0.16899242660978825 0.20642810352068497 0.16860957797365209 0.20585509262690335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16860957797365209 0.20585509262690335 C 0.16808738431704956 0.20592055362441203 0.1622039090739553 0.2072790964882979 0.16234325409442166 0.20664062459700758 C 0.1622039090739553 0.2072790964882979 0.167320286364192 0.2140897662161689 0.1669374377280558 0.21351675532238726" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1669374377280558 0.21351675532238726 C 0.16641524407145328 0.21358221631989596 0.160531768828359 0.2149407591837819 0.16067111384882538 0.21430228729249157 C 0.160531768828359 0.2149407591837819 0.1656481461185956 0.2217514289116528 0.16526529748245944 0.22117841801787116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16526529748245944 0.22117841801787116 C 0.1647431038258569 0.22124387901537984 0.15885962858276265 0.2226024218792657 0.158998973603229 0.2219639499879754 C 0.15885962858276265 0.2226024218792657 0.16397600587299935 0.22941309160713666 0.16359315723686316 0.22884008071335502" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16359315723686316 0.22884008071335502 C 0.16314555316614587 0.22824822718204554 0.15823174253955974 0.22106168117129535 0.15822190838825562 0.22173783833764135 C 0.15823174253955974 0.22106168117129535 0.16416860527453422 0.22064189108216647 0.1637111670525128 0.220726194717203" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1637111670525128 0.220726194717203 C 0.1632635629817955 0.22013434118589353 0.15834975235520948 0.21294779517514334 0.15833991820390536 0.21362395234148934 C 0.15834975235520948 0.21294779517514334 0.16428661509018377 0.21252800508601447 0.16382917686816237 0.212612308721051" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16382917686816237 0.212612308721051 C 0.16338157279744508 0.21202045518974152 0.15846776217085892 0.2048339091789913 0.1584579280195548 0.2055100663453373 C 0.15846776217085892 0.2048339091789913 0.16440462490583324 0.2044141190898624 0.16394718668381184 0.20449842272489893" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16394718668381184 0.20449842272489893 C 0.16349958261309455 0.20390656919358946 0.15858577198650844 0.19672002318283927 0.15857593783520432 0.19739618034918527 C 0.15858577198650844 0.19672002318283927 0.16452263472148274 0.19630023309371042 0.16406519649946133 0.19638453672874695" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16406519649946133 0.19638453672874695 C 0.1637605501621236 0.19579268319743748 0.1602572464930765 0.18850124486239653 0.1604094404514086 0.18928229435303323 C 0.1602572464930765 0.18850124486239653 0.16239132137848178 0.18682274688177924 0.16223886899947615 0.18701194284110648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16223886899947615 0.18701194284110648 C 0.16242420163056256 0.1863218785568188 0.16496082032216422 0.17738385648269572 0.16446286057251328 0.17873117142965436 C 0.16496082032216422 0.17738385648269572 0.16852701311385188 0.17018691281493195 0.16821438599528737 0.1708441634776029" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.323690857765514,0.13819139946669456) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16392866270691783 0.1634351020117524 C 0.16405936947977043 0.16330958419104474 0.16590762444317297 0.1621758169535819 0.16549714398114904 0.16192888816326056 C 0.16590762444317297 0.1621758169535819 0.16913420194037637 0.1667706941066377 0.16885442825120503 0.1663982474956087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16885442825120503 0.1663982474956087 C 0.16907643938968267 0.16730141066257473 0.17185399498566994 0.17911198623202262 0.17151856191293666 0.17723620549920105 C 0.17185399498566994 0.17911198623202262 0.17299304705826 0.18988023385532327 0.17287962512400434 0.1889076162894677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17287962512400434 0.1889076162894677 C 0.17228996824295545 0.1893192557760939 0.16576243856568884 0.19444289077962648 0.16580374255141758 0.19384729012898214 C 0.16576243856568884 0.19444289077962648 0.1729323301905797 0.19623878526121805 0.17238397729525953 0.1960548240971999" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17238397729525953 0.1960548240971999 C 0.1717943204142106 0.1964664635838261 0.16526679073694384 0.20159009858735857 0.16530809472267258 0.20099449793671423 C 0.16526679073694384 0.20159009858735857 0.17243668236183474 0.20338599306895028 0.17188832946651458 0.2032020319049321" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17188832946651458 0.2032020319049321 C 0.1712986725854657 0.2036136713915583 0.16465259445071354 0.20877164272509138 0.16481244689392777 0.2081417057444465 C 0.16465259445071354 0.20877164272509138 0.17039990458577864 0.21097957316668944 0.16997010014794395 0.21076127567267075" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16997010014794395 0.21076127567267075 C 0.16933317699360956 0.21110006565913303 0.16221127724496023 0.21541302864574352 0.1623270222959314 0.21482675551021826 C 0.16221127724496023 0.21541302864574352 0.16910233763965296 0.21804403644803694 0.16858115953628977 0.21779655329897396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16858115953628977 0.21779655329897396 C 0.1679442363819554 0.21813534328543624 0.16082233663330622 0.2224483062720466 0.1609380816842774 0.22186203313652134 C 0.16082233663330622 0.2224483062720466 0.16771339702799884 0.22507931407434004 0.16719221892463565 0.22483183092527706" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16719221892463565 0.22483183092527706 C 0.16660188044663782 0.22457560255001466 0.16008558149036345 0.22115332683420402 0.16010815718866156 0.22175709042212813 C 0.16008558149036345 0.22115332683420402 0.1674890733247582 0.21723913265752592 0.16692131054505846 0.21758666787018763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16692131054505846 0.21758666787018763 C 0.16633097206706063 0.21733043949492523 0.15981467311078637 0.21390816377911476 0.15983724880908445 0.21451192736703886 C 0.15981467311078637 0.21390816377911476 0.16721816494518107 0.20999396960243666 0.16665040216548133 0.21034150481509836" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16665040216548133 0.21034150481509836 C 0.1661485272006797 0.21015571092407698 0.16064594209900812 0.20751404928483394 0.16062790258786194 0.2081119781228416 C 0.16064594209900812 0.20751404928483394 0.16738679077518345 0.20275422381202005 0.16686687629923563 0.20316635875900632" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16686687629923563 0.20316635875900632 C 0.16624878099881438 0.20298190213462808 0.15935155186970706 0.20035628769510297 0.15944973269418053 0.2009528792664675 C 0.15935155186970706 0.20035628769510297 0.16620862088150185 0.19559512495564577 0.16568870640555405 0.19600725990263204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16568870640555405 0.19600725990263204 C 0.1650706111051328 0.1958228032782538 0.15817338197602546 0.1931971888387287 0.15827156280049892 0.1937937804100932 C 0.15817338197602546 0.1931971888387287 0.16503045098782038 0.1884360260992716 0.16451053651187258 0.18884816104625787" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16451053651187258 0.18884816104625787 C 0.16439749860452735 0.18795750775728243 0.16310559213998335 0.17604256665901036 0.16315408162372957 0.17816032157855247 C 0.16310559213998335 0.17604256665901036 0.16399321113051685 0.16220800038118574 0.16392866270691783 0.1634351020117524" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.1643730869742617 0.1608157756525437 C 0.16461150622529278 0.1607244927879842 0.16762567128559586 0.15978926337735747 0.16723411798663454 0.15972038127782956 C 0.16762567128559586 0.15978926337735747 0.16922486060972786 0.1618025258109661 0.16907172656179761 0.16164236084687866" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16907172656179761 0.16164236084687866 C 0.1690484866318135 0.1630688447690602 0.1684793177153279 0.18103587174227798 0.16879284740198822 0.1787601679130572 C 0.1684793177153279 0.18103587174227798 0.1650190805651976 0.1898000267045672 0.1653093703218738 0.18895080679752796" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1653093703218738 0.18895080679752796 C 0.16575545669402483 0.18965166659086066 0.17047127144243343 0.19804024490380087 0.1706624067876863 0.19736112431752043 C 0.17047127144243343 0.19804024490380087 0.1623785244614357 0.19707851462584114 0.16301574617883957 0.1971002538328934" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16301574617883957 0.1971002538328934 C 0.1634162001832421 0.19779567284368635 0.16760251500428625 0.20612039430545212 0.16782119423166983 0.20544528196240874 C 0.16760251500428625 0.20612039430545212 0.15977246221845035 0.20518129528166437 0.16039159545023646 0.20520160194941395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16039159545023646 0.20520160194941395 C 0.16082898086533193 0.20587571636655258 0.1655661823359968 0.21400628154674772 0.16564022043138213 0.21329097495507754 C 0.1655661823359968 0.21400628154674772 0.15899171479513155 0.2138264732239876 0.15950313830561236 0.21378528104945604" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15950313830561236 0.21378528104945604 C 0.15994052372070783 0.21445939546659468 0.16455162862099024 0.22255944341927208 0.16475176328675817 0.2218746540551196 C 0.16455162862099024 0.22255944341927208 0.15646400223553364 0.2220134283662995 0.15710152231639707 0.22200275341928566" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15710152231639707 0.22200275341928566 C 0.15740880417694034 0.22268088732397764 0.16058876997714822 0.23082514963974188 0.16078890464291615 0.2301403602755894 C 0.16058876997714822 0.23082514963974188 0.15419248980087052 0.23022688124857585 0.15469990632718172 0.23022022578911536" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15469990632718172 0.23022022578911536 C 0.15526275500196648 0.23019514986895145 0.16150488227820964 0.2292057234366961 0.161454090424599 0.22991931474714866 C 0.16150488227820964 0.2292057234366961 0.15479735174933523 0.2209686146733957 0.15530940857050937 0.2216571300636844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15530940857050937 0.2216571300636844 C 0.15587225724529416 0.22163205414352052 0.1621143845215374 0.22064262771126528 0.16206359266792675 0.22135621902171784 C 0.1621143845215374 0.22064262771126528 0.15540685399266305 0.2124055189479648 0.15591891081383719 0.2130940343382535" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15591891081383719 0.2130940343382535 C 0.15635566291823935 0.21303844119057191 0.16108463134989126 0.2116828080281042 0.16115993606666323 0.2124269165660745 C 0.16108463134989126 0.2116828080281042 0.1545031973913995 0.20347621649232148 0.15501525421257364 0.20416473188261017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15501525421257364 0.20416473188261017 C 0.15556586545201237 0.20414421150531403 0.16169895340247184 0.20318437184068938 0.16162258908583838 0.20391848735505647 C 0.16169895340247184 0.20318437184068938 0.1554573790893698 0.19464175057313426 0.15593162601217508 0.1953553457102052" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15593162601217508 0.1953553457102052 C 0.15649505481117623 0.19535890879097945 0.16283377049800898 0.19469424880680952 0.16269277160018883 0.1953981026794961 C 0.16283377049800898 0.19469424880680952 0.1572011828848358 0.1862016822845057 0.1576236127860168 0.1869090992379665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1576236127860168 0.1869090992379665 C 0.15772590635352723 0.18603481253110016 0.1594135917784957 0.17424321512345178 0.15885113559614197 0.17641765875557036 C 0.1594135917784957 0.17424321512345178 0.164833249589105 0.15951561872729147 0.1643730869742617 0.1608157756525437" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3577033299087077,0.13687643711012823) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.17269648345332617 0.17084416347760287 C 0.17300911057189067 0.1715014141402738 0.1769459686257512 0.18007848637661295 0.17644800887610027 0.1787311714296543 C 0.1769459686257512 0.18007848637661295 0.17885733308022383 0.1877020071253941 0.17867200044913742 0.18701194284110642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17867200044913742 0.18701194284110642 C 0.17882445282814305 0.18720113880043365 0.18034923503887287 0.1900633438436699 0.18050142899720498 0.1892822943530332 C 0.18034923503887287 0.1900633438436699 0.17654102661181453 0.19697639026005642 0.17684567294915227 0.19638453672874695" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17684567294915227 0.19638453672874695 C 0.17730311117117367 0.19646884036378348 0.18234476576471337 0.19807233751553127 0.18233493161340925 0.19739618034918527 C 0.18234476576471337 0.19807233751553127 0.17651607869408445 0.2050902762562084 0.17696368276480173 0.20449842272489893" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17696368276480173 0.20449842272489893 C 0.17742112098682314 0.20458272635993546 0.18246277558036286 0.20618622351168325 0.18245294142905874 0.20551006634533725 C 0.18246277558036286 0.20618622351168325 0.17663408850973397 0.21320416225236044 0.17708169258045126 0.21261230872105097" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17708169258045126 0.21261230872105097 C 0.17753913080247266 0.2126966123560875 0.18258078539601227 0.21430010950783535 0.18257095124470815 0.21362395234148934 C 0.18258078539601227 0.21430010950783535 0.17675209832538352 0.22131804824851245 0.1771997023961008 0.22072619471720298" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1771997023961008 0.22072619471720298 C 0.17765714061812224 0.2208104983522395 0.18269879521166202 0.2224139955039873 0.1826889610603579 0.2217378383376413 C 0.18269879521166202 0.2224139955039873 0.17687010814103307 0.22943193424466446 0.17731771221175036 0.228840080713355" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17731771221175036 0.228840080713355 C 0.17770056084788655 0.22826706981957334 0.1817725508249182 0.221325478096685 0.18191189584538456 0.22196394998797533 C 0.1817725508249182 0.221325478096685 0.1751233783095515 0.22111295702036243 0.17564557196615405 0.2211784180178711" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17564557196615405 0.2211784180178711 C 0.17602842060229024 0.2206054071240895 0.18010041057932186 0.21366381540120122 0.18023975559978822 0.21430228729249154 C 0.18010041057932186 0.21366381540120122 0.17345123806395518 0.21345129432487858 0.17397343172055774 0.21351675532238726" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17397343172055774 0.21351675532238726 C 0.17435628035669393 0.2129437444286056 0.17842827033372555 0.2060021527057173 0.1785676153541919 0.20664062459700763 C 0.17842827033372555 0.2060021527057173 0.17177909781835898 0.2057896316293946 0.1723012914749615 0.2058550926269033" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1723012914749615 0.2058550926269033 C 0.17268414011109767 0.20528208173312168 0.1767561300881291 0.19834049001023343 0.17689547510859546 0.19897896190152375 C 0.1767561300881291 0.19834049001023343 0.1701069575727625 0.19812796893391085 0.17062915122936503 0.19819342993141953" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17062915122936503 0.19819342993141953 C 0.1710119998655012 0.19762041903763788 0.1750839898425328 0.19067882731474953 0.17522333486299915 0.19131729920603985 C 0.1750839898425328 0.19067882731474953 0.1684348173271662 0.19046630623842692 0.16895701098376872 0.1905317672359356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16895701098376872 0.1905317672359356 C 0.1688918234695746 0.1896217368800795 0.16813144812096742 0.1779027305680796 0.16817476081343916 0.17961140296566236 C 0.16813144812096742 0.1779027305680796 0.16845913349583014 0.16922905642321565 0.16843725867410775 0.1700276984649423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16843725867410775 0.1700276984649423 C 0.16848244110727445 0.1697315390773578 0.16933438327037653 0.16654182456498326 0.16897944787210833 0.16647378581392822 C 0.16933438327037653 0.16654182456498326 0.17300623641842766 0.17120836161624242 0.17269648345332617 0.17084416347760287" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.350996047891828,0.1381913994666945) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16898107939819765 0.16343510201175243 C 0.16904562782179666 0.1646622036423191 0.16970717099763968 0.1802780764980946 0.1697556604813859 0.17816032157855247 C 0.16970717099763968 0.1802780764980946 0.16828616768589766 0.1897388143352334 0.1683992055932429 0.18884816104625796" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1683992055932429 0.18884816104625796 C 0.1689191200691907 0.18926029599324423 0.17453999848014307 0.19439037198145778 0.17463817930461653 0.19379378041009326 C 0.17453999848014307 0.19439037198145778 0.16660294039914023 0.19619171652701034 0.16722103569956148 0.1960072599026321" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16722103569956148 0.1960072599026321 C 0.16774095017550927 0.19641939484961837 0.1733618285864615 0.20154947083783198 0.17346000941093498 0.20095287926646746 C 0.1733618285864615 0.20154947083783198 0.16542477050545862 0.20335081538338456 0.16604286580587987 0.20316635875900632" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16604286580587987 0.20316635875900632 C 0.1665627802818277 0.2035784937059926 0.17229987902839974 0.2087099069608493 0.17228183951725357 0.20811197812284163 C 0.17229987902839974 0.2087099069608493 0.16575746497483254 0.2105272987061198 0.16625933993963415 0.21034150481509842" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16625933993963415 0.21034150481509842 C 0.16682710271933388 0.21068904002776012 0.17304991759773286 0.21511569095496302 0.17307249329603094 0.21451192736703892 C 0.17304991759773286 0.21511569095496302 0.1653980930820592 0.21784289624545003 0.16598843156005702 0.21758666787018763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16598843156005702 0.21758666787018763 C 0.16655619433975677 0.21793420308284933 0.17277900921815584 0.2223608540100523 0.17280158491645395 0.22175709042212818 C 0.17277900921815584 0.2223608540100523 0.165127184702482 0.22508805930053946 0.16571752318047983 0.22483183092527706" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16571752318047983 0.22483183092527706 C 0.16623870128384302 0.22458434777621408 0.1718559153698669 0.22127576000099608 0.17197166042083809 0.22186203313652134 C 0.1718559153698669 0.22127576000099608 0.16369165941449135 0.21745776331251168 0.1643285825688257 0.21779655329897396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1643285825688257 0.21779655329897396 C 0.1648497606721889 0.21754907014991098 0.1704669747582129 0.214240482374693 0.17058271980918407 0.21482675551021826 C 0.1704669747582129 0.214240482374693 0.16230271880283723 0.21042248568620855 0.1629396419571716 0.21076127567267083" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1629396419571716 0.21076127567267083 C 0.16336944639500628 0.21054297817865214 0.16793744276797348 0.20751176876380162 0.16809729521118771 0.20814170574444651 C 0.16793744276797348 0.20751176876380162 0.16043175575755203 0.2027903924183059 0.16102141263860092 0.2032020319049321" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16102141263860092 0.2032020319049321 C 0.16156976553392108 0.20301807074091396 0.16756034339671416 0.2003988972860699 0.1676016473824429 0.20099449793671426 C 0.16756034339671416 0.2003988972860699 0.15993610792880708 0.1956431846105737 0.160525764809856 0.1960548240971999" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.160525764809856 0.1960548240971999 C 0.16107411770517616 0.19587086293318176 0.16706469556796918 0.19325168947833785 0.16710599955369793 0.1938472901289822 C 0.16706469556796918 0.19325168947833785 0.15944046010006227 0.1884959768028415 0.16003011698111116 0.1889076162894677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16003011698111116 0.1889076162894677 C 0.1601435389153668 0.18793499872361216 0.16172661326491208 0.17536042476637953 0.1613911801921788 0.1772362054992011 C 0.16172661326491208 0.17536042476637953 0.16427732499238817 0.16549508432864266 0.16405531385391053 0.1663982474956087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16405531385391053 0.1663982474956087 C 0.16433508754308188 0.1660258008845797 0.16782307858599047 0.16168195937293928 0.16741259812396653 0.16192888816326062 C 0.16782307858599047 0.16168195937293928 0.16911178617105024 0.1635606198324601 0.16898107939819765 0.16343510201175243" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.16978858540347766 0.1608157756525437 C 0.170248748018321 0.16211593257779594 0.17587299296395126 0.1785921023876889 0.1753105367815975 0.17641765875557036 C 0.17587299296395126 0.1785921023876889 0.17664035315923304 0.18778338594483282 0.1765380595917226 0.18690909923796648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1765380595917226 0.18690909923796648 C 0.17611562969054162 0.18761651619142727 0.17160989967537077 0.19610195655218265 0.17146890077755061 0.1953981026794961 C 0.17160989967537077 0.19610195655218265 0.17879347516456554 0.19535178262943093 0.1782300463655644 0.19535534571020516" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1782300463655644 0.19535534571020516 C 0.1777557994427591 0.1960689408472761 0.17261544760853453 0.20465260286942358 0.17253908329190107 0.2039184873550565 C 0.17261544760853453 0.20465260286942358 0.17969702940460452 0.2041852522599063 0.1791464181651658 0.20416473188261017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1791464181651658 0.20416473188261017 C 0.17863436134399166 0.20485324727289886 0.17292643159430418 0.21317102510404465 0.17300173631107615 0.21242691656607438 C 0.17292643159430418 0.21317102510404465 0.17867951366830442 0.21314962748593508 0.17824276156390226 0.2130940343382535" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17824276156390226 0.2130940343382535 C 0.17773070474272812 0.2137825497285422 0.1721488715634233 0.2220698103321704 0.17209807970981264 0.22135621902171784 C 0.1721488715634233 0.2220698103321704 0.17941511248201483 0.22168220598384827 0.17885226380723004 0.2216571300636844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17885226380723004 0.2216571300636844 C 0.1783402069860559 0.2223456454539731 0.17275837380675105 0.23063290605760123 0.1727075819531404 0.22991931474714866 C 0.17275837380675105 0.23063290605760123 0.1800246147253425 0.23024530170927918 0.17946176605055772 0.2302202257891153" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17946176605055772 0.2302202257891153 C 0.17882424596969432 0.23020955084210146 0.17161139041442885 0.2294073370607967 0.1718115250801968 0.23009212642494917 C 0.17161139041442885 0.2294073370607967 0.17749753547643785 0.221328639002147 0.17706015006134238 0.22200275341928563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17706015006134238 0.22200275341928563 C 0.17642262998047895 0.2219920784722718 0.16920977442521334 0.22118986469096713 0.16940990909098128 0.2218746540551196 C 0.16920977442521334 0.22118986469096713 0.1750959194872226 0.2131111666323174 0.17465853407212711 0.21378528104945604" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17465853407212711 0.21378528104945604 C 0.1741471105616463 0.2137440888749245 0.168447413850972 0.21257566836340738 0.16852145194635734 0.21329097495507757 C 0.168447413850972 0.21257566836340738 0.17420746234259846 0.2045274875322753 0.173770076927503 0.20520160194941392" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.173770076927503 0.20520160194941392 C 0.17315094369571687 0.2052219086171635 0.166121798918686 0.20477016961936537 0.1663404781460696 0.20544528196240874 C 0.166121798918686 0.20477016961936537 0.17154638020330237 0.19640483482210044 0.17114592619889984 0.1971002538328934" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17114592619889984 0.1971002538328934 C 0.17050870448149597 0.19712199303994565 0.16330813024480034 0.19668200373123995 0.16349926559005318 0.1973611243175204 C 0.16330813024480034 0.19668200373123995 0.1692983884280167 0.18824994700419528 0.16885230205586566 0.188950806797528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16885230205586566 0.188950806797528 C 0.16856201229918946 0.18810158689048875 0.16505529528909094 0.17648446408383645 0.16536882497575126 0.1787601679130572 C 0.16505529528909094 0.17648446408383645 0.1650667058859577 0.16021587692469708 0.16508994581594183 0.16164236084687864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16508994581594183 0.16164236084687864 C 0.1652430798638721 0.16148219588279122 0.16731910769006625 0.15965149917830165 0.16692755439110493 0.15972038127782956 C 0.16731910769006625 0.15965149917830165 0.1700270046545087 0.1609070585171032 0.16978858540347766 0.1608157756525437" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.2500879204430701 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.2500879204430701 0.2308044715076716 0.2669420916363424 0.23280529274848838 0.2647202078121963 C 0.2308044715076716 0.2669420916363424 0.21538989416043028 0.27417272973363077 0.2178778082444386 0.27417272973363077 C 0.21538989416043028 0.27417272973363077 0.200949502499572 0.2624983239880503 0.2029503237403888 0.2647202078121964 C 0.200949502499572 0.2624983239880503 0.19280156103266954 0.24493232724468494 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.24493232724468494 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g id="編節1">
<g transform="translate(0.33734345282867095,0.13820072278907372) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14087709006993027 0.11460177227368223 C 0.14104140133107057 0.11479511158224094 0.14309122142877786 0.11734168655393362 0.1428488252036139 0.11692184397638673 C 0.14309122142877786 0.11734168655393362 0.14386392973592155 0.11986638647323312 0.14378584477189787 0.11963988320424494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14378584477189787 0.11963988320424494 C 0.14369117782765947 0.11987301926531903 0.14238320559335665 0.12285735851468087 0.142649841441037 0.12243751593713396 C 0.14238320559335665 0.12285735851468087 0.14041424569629155 0.12486470065128054 0.1405862145997335 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405862145997335 0.12467799413480772 C 0.14055698715698203 0.1247870724361315 0.14012640698539208 0.12617586291058924 0.14023548528671587 0.12598693375069314 C 0.14012640698539208 0.12617586291058924 0.13908834582395194 0.12705422235488473 0.13927727498384804 0.12694514405356094 C 0.13908834582395194 0.12705422235488473 0.1377501787653151 0.12729587336657855 0.13796833536796266 0.12729587336657855 C 0.1377501787653151 0.12729587336657855 0.13647046659218112 0.12683606575223716 0.13665939575207722 0.12694514405356094 C 0.13647046659218112 0.12683606575223716 0.1355921071478856 0.12579800459079704 0.1357011854492094 0.12598693375069314 C 0.1355921071478856 0.12579800459079704 0.13532122869344038 0.12456891583348394 0.13535045613619184 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13535045613619184 0.12467799413480772 C 0.1351784872327499 0.1244912876183349 0.13302019344720797 0.12201767335958708 0.13328682929488833 0.12243751593713396 C 0.13302019344720797 0.12201767335958708 0.1320561590197891 0.11940674714317089 0.1321508259640275 0.11963988320424497" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1321508259640275 0.11963988320424497 C 0.13222891092805117 0.11941337993525679 0.13333024175747538 0.11650200139883984 0.1330878455323114 0.11692184397638673 C 0.13333024175747538 0.11650200139883984 0.13522389192713535 0.11440843296512353 0.13505958066599505 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14323883371963647) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1069461228785802 0.1092196716584617 C 0.10681405683110795 0.10885254586082962 0.10570582857755001 0.1062376413103488 0.1061537265937467 0.10701691687266922 C 0.10570582857755001 0.1062376413103488 0.10431353459171952 0.10375326162204923 0.10425873478140005 0.10454401828453919 C 0.10431353459171952 0.10375326162204923 0.10698173158483083 0.10137375409864323 0.10648252545566354 0.10227237689772953 C 0.10698173158483083 0.10137375409864323 0.10725397155640377 0.09915228149002142 0.10725397155640377 0.09915228149002142 C 0.10725397155640377 0.09915228149002142 0.10598331932649625 0.10317099969681583 0.10648252545566354 0.10227237689772953 C 0.10598331932649625 0.10317099969681583 0.10350359929045722 0.10442715361737563 0.10425873478140005 0.10454401828453919 C 0.10350359929045722 0.10442715361737563 0.10148151069275715 0.10067107770871982 0.10195171251000659 0.10157118889474819 C 0.10148151069275715 0.10067107770871982 0.10135182577255288 0.09873871154730576 0.1014375238779034 0.09914335116836896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.33734345282867095,0.1482769446501992) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1405862145997335 0.11460177227368223 C 0.14073409473475978 0.11477577765138507 0.14257893282269637 0.11706769512590848 0.1423607762200488 0.11668983680611628 C 0.14257893282269637 0.11706769512590848 0.1432743702991256 0.11933992505327808 0.14320409383150431 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14320409383150431 0.1191360721111887 C 0.14311889358168975 0.11934589456615538 0.14194171857081725 0.12203179989058098 0.14218169083372958 0.12165394157078878 C 0.14194171857081725 0.12203179989058098 0.14016965466345865 0.12383840781352068 0.14032442667655642 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14032442667655642 0.12367037194869515 C 0.14029812197808011 0.12376854241988655 0.1399105998236492 0.12501845384689853 0.1400087702948406 0.12484841760299202 C 0.1399105998236492 0.12501845384689853 0.13897634477835305 0.12580897734676447 0.13914638102225954 0.12571080687557307 C 0.13897634477835305 0.12580897734676447 0.13777199442557986 0.1260264632572889 0.13796833536796266 0.1260264632572889 C 0.13777199442557986 0.1260264632572889 0.1366202534697593 0.12561263640438167 0.1367902897136658 0.12571080687557307 C 0.1366202534697593 0.12561263640438167 0.13582972996989334 0.12467838135908553 0.13592790044108474 0.12484841760299202 C 0.13582972996989334 0.12467838135908553 0.1355859393608926 0.12357220147750375 0.13561224405936892 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13561224405936892 0.12367037194869515 C 0.13545747204627115 0.12350233608386962 0.13351500763928342 0.12127608325099658 0.13375497990219576 0.12165394157078878 C 0.13351500763928342 0.12127608325099658 0.13264737665460644 0.11892624965622203 0.132732576904421 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.132732576904421 0.1191360721111887 C 0.13280285337204228 0.11893221916909934 0.1337940511185241 0.11631197848632409 0.13357589451587654 0.11668983680611629 C 0.1337940511185241 0.11631197848632409 0.13549833627121813 0.1144277668959794 0.13535045613619184 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.15281124448770567) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10668523592828776 0.10871644452379725 C 0.10656637648556273 0.10838603130592839 0.10556897105736057 0.10603261721049564 0.1059720792719376 0.10673396521658403 C 0.10556897105736057 0.10603261721049564 0.10431590647011313 0.10379667549102603 0.10426658664082561 0.10450835648726699 C 0.10431590647011313 0.10379667549102603 0.10671728376391332 0.10165511871996066 0.10626799824766275 0.10246387923913833 C 0.10671728376391332 0.10165511871996066 0.10696229973832898 0.09965579337220103 0.10696229973832898 0.09965579337220103 C 0.10696229973832898 0.09965579337220103 0.10581871273141219 0.10327263975831599 0.10626799824766275 0.10246387923913833 C 0.10581871273141219 0.10327263975831599 0.10358696469897707 0.10440317828681978 0.10426658664082561 0.10450835648726699 C 0.10358696469897707 0.10440317828681978 0.10176708496104706 0.10102270996902957 0.10219026659657154 0.1018328100364551 C 0.10176708496104706 0.10102270996902957 0.10165036853286316 0.09928358042375693 0.10172749682767865 0.09964775608271381" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.33734345282867095,0.1573455443252121) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14032442667655642 0.11460177227368223 C 0.14045751879808008 0.11475837711361479 0.14211787307722298 0.11682110284068586 0.14192153213484018 0.11648103035287288 C 0.14211787307722298 0.11682110284068586 0.14274376680600934 0.11886610977531849 0.14268051798515016 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14268051798515016 0.11868264212743805 C 0.14260383776031704 0.11887148233690806 0.14154438025053176 0.12128879712889112 0.14176035528715286 0.12094872464107814 C 0.14154438025053176 0.12128879712889112 0.1399495227339091 0.12291474425953686 0.14008881754569708 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008881754569708 0.12276351198119388 C 0.14006514331706837 0.12285186540526614 0.13971637337808054 0.1239767856895769 0.1398047268021528 0.12382375307006106 C 0.13971637337808054 0.1239767856895769 0.138875543837314 0.12468825683945627 0.13902857645682987 0.124599903415384 C 0.138875543837314 0.12468825683945627 0.13779162851981813 0.12488399415892827 0.13796833536796266 0.12488399415892827 C 0.13779162851981813 0.12488399415892827 0.13675506165957962 0.12451154999131174 0.13690809427909548 0.124599903415384 C 0.13675506165957962 0.12451154999131174 0.13604359050970033 0.12367072045054522 0.1361319439337726 0.12382375307006106 C 0.13604359050970033 0.12367072045054522 0.13582417896159957 0.12267515855712162 0.13584785319022827 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13584785319022827 0.12276351198119388 C 0.13570855837844029 0.12261227970285091 0.13396034041215135 0.12060865215326516 0.13417631544877245 0.12094872464107814 C 0.13396034041215135 0.12060865215326516 0.1331794725259421 0.11849380191796804 0.13325615275077518 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13325615275077518 0.11868264212743805 C 0.13331940157163436 0.11849917447955761 0.13421147954346796 0.1161409578650599 0.13401513860108516 0.11648103035287288 C 0.13421147954346796 0.1161409578650599 0.13574533618089257 0.11444516743374968 0.13561224405936892 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.16142641417896791) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645043767302456 0.1082635401025993 C 0.10634346417457204 0.1079661682065173 0.10544579928919008 0.10584809552062784 0.10580859668230941 0.10647930872610738 C 0.10544579928919008 0.10584809552062784 0.1043180411606674 0.10383574797310519 0.10427365331430863 0.10447626086972205 C 0.1043180411606674 0.10383574797310519 0.10647928072508756 0.10190834687914632 0.10607492376046206 0.10263623134640622 C 0.10647928072508756 0.10190834687914632 0.10669979510206165 0.10010895406616264 0.10669979510206165 0.10010895406616264 C 0.10669979510206165 0.10010895406616264 0.10567056679583656 0.10336411581366611 0.10607492376046206 0.10263623134640622 C 0.10567056679583656 0.10336411581366611 0.10366199356664495 0.10438160048931956 0.10427365331430863 0.10447626086972205 C 0.10366199356664495 0.10438160048931956 0.10202410180250791 0.10133917900330836 0.10240496527447995 0.10206826906399133 C 0.10202410180250791 0.10133917900330836 0.10191905701714243 0.09977396241256296 0.10198847248247636 0.10010172050562416" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.33734345282867095,0.16550728403272374) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14008881754569708 0.11460177227368223 C 0.14020860045506836 0.11474271662962153 0.14170291930629692 0.11659916978398552 0.1415262124581524 0.11629310454495383 C 0.14170291930629692 0.11659916978398552 0.14226622366220465 0.11843967602515486 0.1422092997234314 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1422092997234314 0.11827455514206248 C 0.1421402875210816 0.11844451133058548 0.14118677576227487 0.12062009464337023 0.14138115329523385 0.12031402940433854 C 0.14118677576227487 0.12062009464337023 0.13975140399731442 0.1220834470609514 0.13987676932792362 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13987676932792362 0.12194733801044272 C 0.1398554625221578 0.12202685609210775 0.13954156957706876 0.12303928434798746 0.1396210876587338 0.1229015549904232 C 0.13954156957706876 0.12303928434798746 0.13878482299037886 0.12367960838287889 0.13892255234794312 0.12360009030121386 C 0.13878482299037886 0.12367960838287889 0.13780929920463258 0.12385577197040366 0.13796833536796266 0.12385577197040366 C 0.13780929920463258 0.12385577197040366 0.13687638903041796 0.12352057221954882 0.13701411838798222 0.12360009030121386 C 0.13687638903041796 0.12352057221954882 0.13623606499552654 0.12276382563285894 0.13631558307719158 0.1229015549904232 C 0.13623606499552654 0.12276382563285894 0.13603859460223597 0.12186781992877768 0.13605990140800178 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13605990140800178 0.12194733801044272 C 0.1359345360773926 0.12181122895993404 0.1343611399077325 0.12000796416530685 0.13455551744069147 0.12031402940433854 C 0.1343611399077325 0.12000796416530685 0.13365835881014415 0.11810459895353947 0.13372737101249393 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13372737101249393 0.11827455514206248 C 0.13378429495126717 0.1181094342589701 0.13458716512591745 0.11598703930592213 0.13441045827777293 0.11629310454495383 C 0.13458716512591745 0.11598703930592213 0.13596763609959955 0.11446082791774294 0.13584785319022827 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.169180066901104) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10623911924328767 0.10785592612352109 C 0.1061428430946804 0.1075882914170473 0.10533494469783665 0.1056820259997468 0.10566146235164404 0.10625011788467838 C 0.10533494469783665 0.1056820259997468 0.10431996238216623 0.1038709132069764 0.10428001332044333 0.10444737481393157 C 0.10431996238216623 0.1038709132069764 0.1062650779901444 0.10213625222241343 0.10590115672198144 0.10279134824294735 C 0.1062650779901444 0.10213625222241343 0.10646354092942105 0.10051679869072812 0.10646354092942105 0.10051679869072812 C 0.10646354092942105 0.10051679869072812 0.10553723545381849 0.10344644426348126 0.10590115672198144 0.10279134824294735 C 0.10553723545381849 0.10344644426348126 0.10372951954754601 0.10436218047156934 0.10428001332044333 0.10444737481393157 C 0.10372951954754601 0.10436218047156934 0.10225541695982271 0.10162400113415924 0.10259819408459754 0.10228018218877392 C 0.10225541695982271 0.10162400113415924 0.10216087665299375 0.1002153062024884 0.1022233505717943 0.10051028848624348" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.33734345282867095,0.17285284976948423) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13987676932792362 0.11460177227368223 C 0.13998457394635777 0.1147286221940276 0.1413294609124635 0.11639943003295518 0.14117042474913344 0.11612397131782666 C 0.1413294609124635 0.11639943003295518 0.14183643483278044 0.1180558856500076 0.14178520328788452 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14178520328788452 0.11790727685522445 C 0.1417230923057697 0.11806023742489516 0.14086493172284364 0.12001826240640144 0.14103987150250674 0.11974280369127292 C 0.14086493172284364 0.12001826240640144 0.13957309713437924 0.12133527958222447 0.1396859259319275 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1396859259319275 0.12121278143676666 C 0.13966674980673827 0.1212843477102652 0.13938424615615813 0.12219553314055692 0.13945581242965666 0.12207157671874909 C 0.13938424615615813 0.12219553314055692 0.13870317422813722 0.12277182477195922 0.13882713064994506 0.12270025849846068 C 0.13870317422813722 0.12277182477195922 0.13782520282096558 0.1229303720007315 0.13796833536796266 0.1229303720007315 C 0.13782520282096558 0.1229303720007315 0.13698558366417246 0.12262869222496214 0.13710954008598028 0.12270025849846068 C 0.13698558366417246 0.12262869222496214 0.13640929203277014 0.12194762029694126 0.13648085830626866 0.12207157671874909 C 0.13640929203277014 0.12194762029694126 0.13623156867880862 0.12114121516326812 0.13625074480399785 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13625074480399785 0.12121278143676666 C 0.1361379160064496 0.12109028329130885 0.13472185945375548 0.1194673449761444 0.13489679923341857 0.11974280369127292 C 0.13472185945375548 0.1194673449761444 0.13408935646592596 0.11775431628555375 0.13415146744804077 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13415146744804077 0.11790727685522445 C 0.1342026989929367 0.1177586680604413 0.13492528215012195 0.11584851260269814 0.13476624598679188 0.11612397131782666 C 0.13492528215012195 0.11584851260269814 0.13616770602643594 0.11447492235333687 0.13605990140800178 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.17615835435102645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10604893265652446 0.10748907354235071 C 0.10596228412277792 0.1072482023065243 0.10523517556561858 0.10553256343095387 0.10552904145404522 0.10604384612739229 C 0.10523517556561858 0.10553256343095387 0.10432169148151518 0.10390256191746049 0.10428573732596458 0.10442137736372015 C 0.10432169148151518 0.10390256191746049 0.10607229552869551 0.10234136703135382 0.10574476638734885 0.10293095344983434 C 0.10607229552869551 0.10234136703135382 0.10625091217404452 0.10088385885283704 0.10625091217404452 0.10088385885283704 C 0.10625091217404452 0.10088385885283704 0.10541723724600219 0.10352053986831486 0.10574476638734885 0.10293095344983434 C 0.10541723724600219 0.10352053986831486 0.10379029293035699 0.10434470245559413 0.10428573732596458 0.10442137736372015 C 0.10379029293035699 0.10434470245559413 0.10246360060140602 0.10188034105192505 0.10277210001370338 0.10247090400107826 C 0.10246360060140602 0.10188034105192505 0.10237851432525995 0.10061251561342129 0.10243474085218043 0.10087799966880086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.33734345282867095,0.17946385893256867) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1396859259319275 0.11460177227368223 C 0.13978295008851824 0.11471593720199307 0.14099334835801344 0.11621966425702789 0.14085021581101637 0.11597175141341222 C 0.14099334835801344 0.11621966425702789 0.14144962488629872 0.11771047431237507 0.1414035164958924 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414035164958924 0.11757672639707023 C 0.14134761661198905 0.11771439090977387 0.14057527208735562 0.11947661339312951 0.1407327178890524 0.11922870054951384 C 0.14057527208735562 0.11947661339312951 0.13941262095773754 0.12066192885137025 0.139514166875531 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.139514166875531 0.12055168052045823 C 0.1394969083628607 0.1206160901666069 0.1392426550773386 0.12143615705386945 0.13930706472348728 0.1213245962742424 C 0.1392426550773386 0.12143615705386945 0.13862969034211983 0.12195481952213148 0.13874125112174687 0.1218904098759828 C 0.13862969034211983 0.12195481952213148 0.1378395160756653 0.12209751202802659 0.13796833536796266 0.12209751202802659 C 0.1378395160756653 0.12209751202802659 0.13708385883455143 0.12182600022983413 0.13719541961417847 0.1218904098759828 C 0.13708385883455143 0.12182600022983413 0.13656519636628942 0.12121303549461535 0.1366296060124381 0.1213245962742424 C 0.13656519636628942 0.12121303549461535 0.13640524534772402 0.12048727087430955 0.13642250386039434 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13642250386039434 0.12055168052045823 C 0.1363209579426009 0.1204414321895462 0.13504650704517626 0.11898078770589818 0.13520395284687303 0.11922870054951384 C 0.13504650704517626 0.11898078770589818 0.13447725435612962 0.11743906188436659 0.13453315424003295 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13453315424003295 0.11757672639707023 C 0.1345792626304393 0.1174429784817654 0.13522958747190603 0.11572383856979657 0.13508645492490895 0.11597175141341223 C 0.13522958747190603 0.11572383856979657 0.1363477689605886 0.1144876073453714 0.13625074480399785 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18243881305595666) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10587776472843759 0.10715890621929738 C 0.1057997810480657 0.10694212210705362 0.10514538334662228 0.10539804711904018 0.10540986264620626 0.10585820154583477 C 0.10514538334662228 0.10539804711904018 0.10432324767092925 0.10393104575689618 0.1042908889309337 0.10439797965852987 C 0.10432324767092925 0.10393104575689618 0.10589879131339153 0.10252597035940017 0.10560401508617955 0.10305659813603263 C 0.10589879131339153 0.10252597035940017 0.10605954629420564 0.10121421299873508 0.10605954629420564 0.10121421299873508 C 0.10605954629420564 0.10121421299873508 0.10530923885896756 0.10358722591266509 0.10560401508617955 0.10305659813603263 C 0.10530923885896756 0.10358722591266509 0.10384498897488688 0.10432897224121647 0.1042908889309337 0.10439797965852987 C 0.10384498897488688 0.10432897224121647 0.10265096587883098 0.10211104697791429 0.1029286153498986 0.10264255363215219 C 0.10265096587883098 0.10211104697791429 0.10257438823029953 0.1009700040832609 0.10262499210452797 0.10120893973310251" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.33734345282867095,0.18541376717934466) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139514166875531 0.11460177227368223 C 0.13960148861646268 0.11470452070916198 0.14069084705900842 0.11605787505869332 0.14056202776671106 0.11583475349943922 C 0.14069084705900842 0.11605787505869332 0.1411014959344651 0.11739960410850578 0.1410599983830994 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1410599983830994 0.11727923098473143 C 0.1410096884875864 0.1174031290461647 0.14031457841541628 0.11898912928118477 0.14045627963694338 0.11876600772193067 C 0.14031457841541628 0.11898912928118477 0.1392681923987601 0.12005591319360148 0.1393595837247742 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1393595837247742 0.11995668969578065 C 0.13934405106337092 0.12001465837731445 0.13911522310640095 0.12075271857585074 0.13917319178793477 0.12065231387418639 C 0.13911522310640095 0.12075271857585074 0.1385635548447041 0.12121951479728658 0.13866395954636843 0.12116154611575278 C 0.1385635548447041 0.12121951479728658 0.13785239800489502 0.12134793805259214 0.13796833536796266 0.12134793805259214 C 0.13785239800489502 0.12134793805259214 0.13717230648789255 0.12110357743421897 0.1372727111895569 0.12116154611575278 C 0.13717230648789255 0.12110357743421897 0.13670551026645672 0.12055190917252204 0.13676347894799054 0.12065231387418639 C 0.13670551026645672 0.12055190917252204 0.13656155434974784 0.11989872101424684 0.13657708701115112 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13657708701115112 0.11995668969578065 C 0.13648569568513702 0.11985746619795981 0.13533868987745487 0.11854288616267658 0.13548039109898197 0.11876600772193067 C 0.13533868987745487 0.11854288616267658 0.13482636245731297 0.11715533292329816 0.13487667235282597 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13487667235282597 0.11727923098473143 C 0.13491816990419167 0.11715885786095709 0.1355034622615117 0.11561163194018514 0.13537464296921434 0.11583475349943924 C 0.1355034622615117 0.11561163194018514 0.13650982560132602 0.11449902383820248 0.13642250386039434 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18809122589039384) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10572371359315942 0.10686175562854937 C 0.10565352828082472 0.10666664992752999 0.10506457034952563 0.10527698243831791 0.10530260171915122 0.10569112142243305 C 0.10506457034952563 0.10527698243831791 0.10432464824140189 0.10395668121238828 0.1042955253754059 0.10437692172385861 C 0.10432464824140189 0.10395668121238828 0.10574263751961796 0.1026921133546419 0.10547733891512716 0.10316967835361111 C 0.10574263751961796 0.1026921133546419 0.10588731700235067 0.1015115317300433 0.10588731700235067 0.1015115317300433 C 0.10588731700235067 0.1015115317300433 0.10521204031063636 0.10364724335258033 0.10547733891512716 0.10316967835361111 C 0.10521204031063636 0.10364724335258033 0.10389421541496376 0.10431481504827654 0.1042955253754059 0.10437692172385861 C 0.10389421541496376 0.10431481504827654 0.10281959462851345 0.1023186823113046 0.10306947915247432 0.1027970383001187 C 0.10281959462851345 0.1023186823113046 0.10275067474483512 0.10129174370611656 0.10279621823164073 0.10150678579097401" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.33734345282867095,0.19076868460144308) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393595837247742 0.11460177227368223 C 0.1394381732916127 0.11469424586561401 0.14041859588990382 0.1159122647801922 0.1403026585268362 0.11571145537686352 C 0.14041859588990382 0.1159122647801922 0.14078817987781483 0.11711982092502345 0.1407508320815857 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1407508320815857 0.11701148511362652 C 0.140705553175624 0.11712299336891646 0.14007995411067095 0.11855039358043452 0.14020748521004534 0.11834958417710584 C 0.14007995411067095 0.11855039358043452 0.13913820669568036 0.11951049910160953 0.13922045888909304 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13922045888909304 0.11942119795357078 C 0.13920647949383008 0.11947336976695122 0.13900053433255716 0.1201376239456339 0.1390527061459376 0.12004725971413599 C 0.13900053433255716 0.1201376239456339 0.13850403289702995 0.12055774054492616 0.13859439712852786 0.12050556873154572 C 0.13850403289702995 0.12055774054492616 0.13786399174120179 0.12067332147470118 0.13796833536796266 0.12067332147470118 C 0.13786399174120179 0.12067332147470118 0.13725190937589957 0.12045339691816528 0.13734227360739748 0.12050556873154572 C 0.13725190937589957 0.12045339691816528 0.1368317927766073 0.11995689548263808 0.13688396458998775 0.12004725971413599 C 0.1368317927766073 0.11995689548263808 0.13670223245156934 0.11936902614019035 0.1367162118468323 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1367162118468323 0.11942119795357078 C 0.13663395965341962 0.11933189680553204 0.13560165442650568 0.11814877477377715 0.13572918552588006 0.11834958417710584 C 0.13560165442650568 0.11814877477377715 0.13514055974837788 0.11689997685833659 0.13518583865433959 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13518583865433959 0.11701148511362652 C 0.13522318645056872 0.11690314930222961 0.1357499495721568 0.11551064597353485 0.1356340122090892 0.11571145537686353 C 0.1357499495721568 0.11551064597353485 0.1366556765779896 0.11450929868175046 0.13657708701115112 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19317839744138737) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10558506757140906 0.10659432009687617 C 0.10552190079030783 0.10641872496595872 0.10499183865213865 0.10516802422566786 0.10520606688480168 0.10554074931137147 C 0.10499183865213865 0.10516802422566786 0.10432590875482727 0.10397975312233121 0.10429969817543087 0.1043579695826545 C 0.10432590875482727 0.10397975312233121 0.10560209910522175 0.10284164205035944 0.10536333036118004 0.10327145054943174 C 0.10560209910522175 0.10284164205035944 0.10573231063968118 0.10177911858822072 0.10573231063968118 0.10177911858822072 C 0.10573231063968118 0.10177911858822072 0.10512456161713832 0.10370125904850404 0.10536333036118004 0.10327145054943174 C 0.10512456161713832 0.10370125904850404 0.10393851921103295 0.10430207357463064 0.10429969817543087 0.1043579695826545 C 0.10393851921103295 0.10430207357463064 0.1029713605032277 0.1025055541113559 0.10319625657479246 0.10293607450128858 C 0.1029713605032277 0.1025055541113559 0.10290933260791721 0.10158130936668665 0.10295032174604224 0.10177484724305835" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.021814492892120386 0.019655031969990255 C 0.02189843635998038 0.019913383399076362 0.020972167044877248 0.021730741504815434 0.02119193389686825 0.021571071540598112 C 0.020972167044877248 0.021730741504815434 0.018957523816237377 0.02141140157638079 0.01917729066822838 0.021571071540598112 C 0.018957523816237377 0.02141140157638079 0.018638675140836235 0.019396680540904147 0.018554731672976242 0.019655031969990255 C 0.018638675140836235 0.019396680540904147 0.02045625905081033 0.01847085439156484 0.020184612282548316 0.01847085439156484 C 0.02045625905081033 0.01847085439156484 0.02189843635998038 0.019913383399076362 0.021814492892120386 0.019655031969990255 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027502747819324644 0.02603232541511103 C 0.027559906693821416 0.026208242342153215 0.02692919041676106 0.027445719736521604 0.0270788342929523 0.027336997096413098 C 0.02692919041676106 0.027445719736521604 0.025557377428838512 0.02722827445630459 0.02570702130502975 0.027336997096413098 C 0.025557377428838512 0.02722827445630459 0.025340266653154187 0.025856408488068847 0.025283107778657415 0.02603232541511103 C 0.025340266653154187 0.025856408488068847 0.026577897802379964 0.02522599397190689 0.02639292779899103 0.02522599397190689 C 0.026577897802379964 0.02522599397190689 0.027559906693821416 0.026208242342153215 0.027502747819324644 0.02603232541511103 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3363064238473449,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.1714233787142897 0.1872492916632277 C 0.17151190403058564 0.1870490496278668 0.17265486369932076 0.18458256678834506 0.172485682509841 0.18484638723889682 C 0.17265486369932076 0.18458256678834506 0.17353420886123075 0.1840198678414159 0.17345355298804693 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17345355298804693 0.18408344625660675 C 0.1734610547976768 0.18479366891109977 0.17348496123067905 0.19376611788468612 0.17354357470360512 0.1926061181105231 C 0.17348496123067905 0.19376611788468612 0.17268407603037808 0.19845322066623275 0.172750191312934 0.19800344354656277" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.172750191312934 0.19800344354656277 C 0.1727296137257489 0.1982409446951874 0.17248938024955973 0.20155454952008367 0.1725032602667127 0.20085345733005852 C 0.17248938024955973 0.20155454952008367 0.17259032867713045 0.2068801408682649 0.17258363110709832 0.20641654982686441" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17258363110709832 0.20641654982686441 C 0.1724747977014049 0.20599070299003758 0.17111706389133005 0.200555434246859 0.17127763023877715 0.2013063877849422 C 0.17111706389133005 0.200555434246859 0.1706051019959793 0.19708000066860995 0.17065683493773298 0.19740510736986627" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17065683493773298 0.19740510736986627 C 0.17064983094567387 0.1969460107815223 0.17063666568106992 0.19104963033418534 0.17057278703302353 0.19189594830973855 C 0.17063666568106992 0.19104963033418534 0.17149426135439522 0.18686207027601848 0.1714233787142897 0.1872492916632277" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33838048180999714,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17461157001832697 0.18718118450634574 C 0.1746824526584325 0.1875740814899618 0.17550339551351626 0.19274880405136466 0.1754621616995931 0.19189594830973855 C 0.17550339551351626 0.19274880405136466 0.1750767269592225 0.19787541216386892 0.17510637578540486 0.1974154534058589" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17510637578540486 0.1974154534058589 C 0.17503596463480273 0.19776174790424547 0.17406244146316824 0.20235949777710133 0.17426144197817917 0.20157098738649784 C 0.17406244146316824 0.20235949777710133 0.17258978024086494 0.20731979398531747 0.17271836960527373 0.20687757809310056" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17271836960527373 0.20687757809310056 C 0.1727483181577135 0.20637144277663597 0.1731118460004036 0.20006275222983957 0.17307775223455094 0.20080395429552533 C 0.1731118460004036 0.20006275222983957 0.17313164000891867 0.1977480865556503 0.17312749479550577 0.19798315330487146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17312749479550577 0.19798315330487146 C 0.17307448473163126 0.19753506703867577 0.17244586577476692 0.1914478091898344 0.17249137402901157 0.1926061181105231 C 0.17244586577476692 0.1914478091898344 0.17258889755419968 0.18337322360211372 0.17258139574456982 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17258139574456982 0.18408344625660675 C 0.17266205161775364 0.18414702467179758 0.17371844741225548 0.18510453209304173 0.17354926622277572 0.18484638723889682 C 0.17371844741225548 0.18510453209304173 0.1747000953346229 0.18737575094529982 0.17461157001832697 0.18718118450634574" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19503671156560223 0.1845325971445882 C 0.1950030998632457 0.18372257463379346 0.19455783366100246 0.17357958232124437 0.19463337113732387 0.17481232701505128 C 0.19455783366100246 0.17357958232124437 0.19408833607578044 0.16931693863589295 0.19413026184974533 0.16973966081890512" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19413026184974533 0.16973966081890512 C 0.19411710501355445 0.1694096127028987 0.19400348261783298 0.16472424244870817 0.1939723798154548 0.16577908342682807 C 0.19400348261783298 0.16472424244870817 0.1945477551168529 0.1563567762193528 0.19450349547828383 0.15708156908146628" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19450349547828383 0.15708156908146628 C 0.19458760640302622 0.15704015348920966 0.19568104842467746 0.15658458197438677 0.19551282657519264 0.15658458197438677 C 0.19568104842467746 0.15658458197438677 0.19660626859684394 0.1571229846737229 0.19652215767210152 0.15708156908146628" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19652215767210152 0.15708156908146628 C 0.19657208695093498 0.1577059488411683 0.1971506100392425 0.1656123140390325 0.1971213090181029 0.1645741261978904 C 0.1971506100392425 0.1656123140390325 0.19685314166808274 0.16995363125661167 0.1968737699257766 0.16953982317517158" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1968737699257766 0.16953982317517158 C 0.1968182671392038 0.17000022676702203 0.19605464829022207 0.1763140641081617 0.19620773648690326 0.175064666277377 C 0.19605464829022207 0.1763140641081617 0.1949391261554938 0.18532159138352247 0.19503671156560223 0.1845325971445882" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.2500879204430701 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.2500879204430701 0.2308044715076716 0.2669420916363424 0.23280529274848838 0.2647202078121963 C 0.2308044715076716 0.2669420916363424 0.21538989416043028 0.27417272973363077 0.2178778082444386 0.27417272973363077 C 0.21538989416043028 0.27417272973363077 0.200949502499572 0.2624983239880503 0.2029503237403888 0.2647202078121964 C 0.200949502499572 0.2624983239880503 0.19280156103266954 0.24493232724468494 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.24493232724468494 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g id="編節1">
<g transform="translate(0.33734345282867095,0.13820072278907372) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14087709006993027 0.11460177227368223 C 0.14104140133107057 0.11479511158224094 0.14309122142877786 0.11734168655393362 0.1428488252036139 0.11692184397638673 C 0.14309122142877786 0.11734168655393362 0.14386392973592155 0.11986638647323312 0.14378584477189787 0.11963988320424494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14378584477189787 0.11963988320424494 C 0.14369117782765947 0.11987301926531903 0.14238320559335665 0.12285735851468087 0.142649841441037 0.12243751593713396 C 0.14238320559335665 0.12285735851468087 0.14041424569629155 0.12486470065128054 0.1405862145997335 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405862145997335 0.12467799413480772 C 0.14055698715698203 0.1247870724361315 0.14012640698539208 0.12617586291058924 0.14023548528671587 0.12598693375069314 C 0.14012640698539208 0.12617586291058924 0.13908834582395194 0.12705422235488473 0.13927727498384804 0.12694514405356094 C 0.13908834582395194 0.12705422235488473 0.1377501787653151 0.12729587336657855 0.13796833536796266 0.12729587336657855 C 0.1377501787653151 0.12729587336657855 0.13647046659218112 0.12683606575223716 0.13665939575207722 0.12694514405356094 C 0.13647046659218112 0.12683606575223716 0.1355921071478856 0.12579800459079704 0.1357011854492094 0.12598693375069314 C 0.1355921071478856 0.12579800459079704 0.13532122869344038 0.12456891583348394 0.13535045613619184 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13535045613619184 0.12467799413480772 C 0.1351784872327499 0.1244912876183349 0.13302019344720797 0.12201767335958708 0.13328682929488833 0.12243751593713396 C 0.13302019344720797 0.12201767335958708 0.1320561590197891 0.11940674714317089 0.1321508259640275 0.11963988320424497" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1321508259640275 0.11963988320424497 C 0.13222891092805117 0.11941337993525679 0.13333024175747538 0.11650200139883984 0.1330878455323114 0.11692184397638673 C 0.13333024175747538 0.11650200139883984 0.13522389192713535 0.11440843296512353 0.13505958066599505 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14323883371963647) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1069461228785802 0.1092196716584617 C 0.10681405683110795 0.10885254586082962 0.10570582857755001 0.1062376413103488 0.1061537265937467 0.10701691687266922 C 0.10570582857755001 0.1062376413103488 0.10431353459171952 0.10375326162204923 0.10425873478140005 0.10454401828453919 C 0.10431353459171952 0.10375326162204923 0.10698173158483083 0.10137375409864323 0.10648252545566354 0.10227237689772953 C 0.10698173158483083 0.10137375409864323 0.10725397155640377 0.09915228149002142 0.10725397155640377 0.09915228149002142 C 0.10725397155640377 0.09915228149002142 0.10598331932649625 0.10317099969681583 0.10648252545566354 0.10227237689772953 C 0.10598331932649625 0.10317099969681583 0.10350359929045722 0.10442715361737563 0.10425873478140005 0.10454401828453919 C 0.10350359929045722 0.10442715361737563 0.10148151069275715 0.10067107770871982 0.10195171251000659 0.10157118889474819 C 0.10148151069275715 0.10067107770871982 0.10135182577255288 0.09873871154730576 0.1014375238779034 0.09914335116836896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.33734345282867095,0.1482769446501992) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1405862145997335 0.11460177227368223 C 0.14073409473475978 0.11477577765138507 0.14257893282269637 0.11706769512590848 0.1423607762200488 0.11668983680611628 C 0.14257893282269637 0.11706769512590848 0.1432743702991256 0.11933992505327808 0.14320409383150431 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14320409383150431 0.1191360721111887 C 0.14311889358168975 0.11934589456615538 0.14194171857081725 0.12203179989058098 0.14218169083372958 0.12165394157078878 C 0.14194171857081725 0.12203179989058098 0.14016965466345865 0.12383840781352068 0.14032442667655642 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14032442667655642 0.12367037194869515 C 0.14029812197808011 0.12376854241988655 0.1399105998236492 0.12501845384689853 0.1400087702948406 0.12484841760299202 C 0.1399105998236492 0.12501845384689853 0.13897634477835305 0.12580897734676447 0.13914638102225954 0.12571080687557307 C 0.13897634477835305 0.12580897734676447 0.13777199442557986 0.1260264632572889 0.13796833536796266 0.1260264632572889 C 0.13777199442557986 0.1260264632572889 0.1366202534697593 0.12561263640438167 0.1367902897136658 0.12571080687557307 C 0.1366202534697593 0.12561263640438167 0.13582972996989334 0.12467838135908553 0.13592790044108474 0.12484841760299202 C 0.13582972996989334 0.12467838135908553 0.1355859393608926 0.12357220147750375 0.13561224405936892 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13561224405936892 0.12367037194869515 C 0.13545747204627115 0.12350233608386962 0.13351500763928342 0.12127608325099658 0.13375497990219576 0.12165394157078878 C 0.13351500763928342 0.12127608325099658 0.13264737665460644 0.11892624965622203 0.132732576904421 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.132732576904421 0.1191360721111887 C 0.13280285337204228 0.11893221916909934 0.1337940511185241 0.11631197848632409 0.13357589451587654 0.11668983680611629 C 0.1337940511185241 0.11631197848632409 0.13549833627121813 0.1144277668959794 0.13535045613619184 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.15281124448770567) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10668523592828776 0.10871644452379725 C 0.10656637648556273 0.10838603130592839 0.10556897105736057 0.10603261721049564 0.1059720792719376 0.10673396521658403 C 0.10556897105736057 0.10603261721049564 0.10431590647011313 0.10379667549102603 0.10426658664082561 0.10450835648726699 C 0.10431590647011313 0.10379667549102603 0.10671728376391332 0.10165511871996066 0.10626799824766275 0.10246387923913833 C 0.10671728376391332 0.10165511871996066 0.10696229973832898 0.09965579337220103 0.10696229973832898 0.09965579337220103 C 0.10696229973832898 0.09965579337220103 0.10581871273141219 0.10327263975831599 0.10626799824766275 0.10246387923913833 C 0.10581871273141219 0.10327263975831599 0.10358696469897707 0.10440317828681978 0.10426658664082561 0.10450835648726699 C 0.10358696469897707 0.10440317828681978 0.10176708496104706 0.10102270996902957 0.10219026659657154 0.1018328100364551 C 0.10176708496104706 0.10102270996902957 0.10165036853286316 0.09928358042375693 0.10172749682767865 0.09964775608271381" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.33734345282867095,0.1573455443252121) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14032442667655642 0.11460177227368223 C 0.14045751879808008 0.11475837711361479 0.14211787307722298 0.11682110284068586 0.14192153213484018 0.11648103035287288 C 0.14211787307722298 0.11682110284068586 0.14274376680600934 0.11886610977531849 0.14268051798515016 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14268051798515016 0.11868264212743805 C 0.14260383776031704 0.11887148233690806 0.14154438025053176 0.12128879712889112 0.14176035528715286 0.12094872464107814 C 0.14154438025053176 0.12128879712889112 0.1399495227339091 0.12291474425953686 0.14008881754569708 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008881754569708 0.12276351198119388 C 0.14006514331706837 0.12285186540526614 0.13971637337808054 0.1239767856895769 0.1398047268021528 0.12382375307006106 C 0.13971637337808054 0.1239767856895769 0.138875543837314 0.12468825683945627 0.13902857645682987 0.124599903415384 C 0.138875543837314 0.12468825683945627 0.13779162851981813 0.12488399415892827 0.13796833536796266 0.12488399415892827 C 0.13779162851981813 0.12488399415892827 0.13675506165957962 0.12451154999131174 0.13690809427909548 0.124599903415384 C 0.13675506165957962 0.12451154999131174 0.13604359050970033 0.12367072045054522 0.1361319439337726 0.12382375307006106 C 0.13604359050970033 0.12367072045054522 0.13582417896159957 0.12267515855712162 0.13584785319022827 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13584785319022827 0.12276351198119388 C 0.13570855837844029 0.12261227970285091 0.13396034041215135 0.12060865215326516 0.13417631544877245 0.12094872464107814 C 0.13396034041215135 0.12060865215326516 0.1331794725259421 0.11849380191796804 0.13325615275077518 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13325615275077518 0.11868264212743805 C 0.13331940157163436 0.11849917447955761 0.13421147954346796 0.1161409578650599 0.13401513860108516 0.11648103035287288 C 0.13421147954346796 0.1161409578650599 0.13574533618089257 0.11444516743374968 0.13561224405936892 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.16142641417896791) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645043767302456 0.1082635401025993 C 0.10634346417457204 0.1079661682065173 0.10544579928919008 0.10584809552062784 0.10580859668230941 0.10647930872610738 C 0.10544579928919008 0.10584809552062784 0.1043180411606674 0.10383574797310519 0.10427365331430863 0.10447626086972205 C 0.1043180411606674 0.10383574797310519 0.10647928072508756 0.10190834687914632 0.10607492376046206 0.10263623134640622 C 0.10647928072508756 0.10190834687914632 0.10669979510206165 0.10010895406616264 0.10669979510206165 0.10010895406616264 C 0.10669979510206165 0.10010895406616264 0.10567056679583656 0.10336411581366611 0.10607492376046206 0.10263623134640622 C 0.10567056679583656 0.10336411581366611 0.10366199356664495 0.10438160048931956 0.10427365331430863 0.10447626086972205 C 0.10366199356664495 0.10438160048931956 0.10202410180250791 0.10133917900330836 0.10240496527447995 0.10206826906399133 C 0.10202410180250791 0.10133917900330836 0.10191905701714243 0.09977396241256296 0.10198847248247636 0.10010172050562416" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.33734345282867095,0.16550728403272374) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14008881754569708 0.11460177227368223 C 0.14020860045506836 0.11474271662962153 0.14170291930629692 0.11659916978398552 0.1415262124581524 0.11629310454495383 C 0.14170291930629692 0.11659916978398552 0.14226622366220465 0.11843967602515486 0.1422092997234314 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1422092997234314 0.11827455514206248 C 0.1421402875210816 0.11844451133058548 0.14118677576227487 0.12062009464337023 0.14138115329523385 0.12031402940433854 C 0.14118677576227487 0.12062009464337023 0.13975140399731442 0.1220834470609514 0.13987676932792362 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13987676932792362 0.12194733801044272 C 0.1398554625221578 0.12202685609210775 0.13954156957706876 0.12303928434798746 0.1396210876587338 0.1229015549904232 C 0.13954156957706876 0.12303928434798746 0.13878482299037886 0.12367960838287889 0.13892255234794312 0.12360009030121386 C 0.13878482299037886 0.12367960838287889 0.13780929920463258 0.12385577197040366 0.13796833536796266 0.12385577197040366 C 0.13780929920463258 0.12385577197040366 0.13687638903041796 0.12352057221954882 0.13701411838798222 0.12360009030121386 C 0.13687638903041796 0.12352057221954882 0.13623606499552654 0.12276382563285894 0.13631558307719158 0.1229015549904232 C 0.13623606499552654 0.12276382563285894 0.13603859460223597 0.12186781992877768 0.13605990140800178 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13605990140800178 0.12194733801044272 C 0.1359345360773926 0.12181122895993404 0.1343611399077325 0.12000796416530685 0.13455551744069147 0.12031402940433854 C 0.1343611399077325 0.12000796416530685 0.13365835881014415 0.11810459895353947 0.13372737101249393 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13372737101249393 0.11827455514206248 C 0.13378429495126717 0.1181094342589701 0.13458716512591745 0.11598703930592213 0.13441045827777293 0.11629310454495383 C 0.13458716512591745 0.11598703930592213 0.13596763609959955 0.11446082791774294 0.13584785319022827 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.169180066901104) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10623911924328767 0.10785592612352109 C 0.1061428430946804 0.1075882914170473 0.10533494469783665 0.1056820259997468 0.10566146235164404 0.10625011788467838 C 0.10533494469783665 0.1056820259997468 0.10431996238216623 0.1038709132069764 0.10428001332044333 0.10444737481393157 C 0.10431996238216623 0.1038709132069764 0.1062650779901444 0.10213625222241343 0.10590115672198144 0.10279134824294735 C 0.1062650779901444 0.10213625222241343 0.10646354092942105 0.10051679869072812 0.10646354092942105 0.10051679869072812 C 0.10646354092942105 0.10051679869072812 0.10553723545381849 0.10344644426348126 0.10590115672198144 0.10279134824294735 C 0.10553723545381849 0.10344644426348126 0.10372951954754601 0.10436218047156934 0.10428001332044333 0.10444737481393157 C 0.10372951954754601 0.10436218047156934 0.10225541695982271 0.10162400113415924 0.10259819408459754 0.10228018218877392 C 0.10225541695982271 0.10162400113415924 0.10216087665299375 0.1002153062024884 0.1022233505717943 0.10051028848624348" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.33734345282867095,0.17285284976948423) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13987676932792362 0.11460177227368223 C 0.13998457394635777 0.1147286221940276 0.1413294609124635 0.11639943003295518 0.14117042474913344 0.11612397131782666 C 0.1413294609124635 0.11639943003295518 0.14183643483278044 0.1180558856500076 0.14178520328788452 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14178520328788452 0.11790727685522445 C 0.1417230923057697 0.11806023742489516 0.14086493172284364 0.12001826240640144 0.14103987150250674 0.11974280369127292 C 0.14086493172284364 0.12001826240640144 0.13957309713437924 0.12133527958222447 0.1396859259319275 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1396859259319275 0.12121278143676666 C 0.13966674980673827 0.1212843477102652 0.13938424615615813 0.12219553314055692 0.13945581242965666 0.12207157671874909 C 0.13938424615615813 0.12219553314055692 0.13870317422813722 0.12277182477195922 0.13882713064994506 0.12270025849846068 C 0.13870317422813722 0.12277182477195922 0.13782520282096558 0.1229303720007315 0.13796833536796266 0.1229303720007315 C 0.13782520282096558 0.1229303720007315 0.13698558366417246 0.12262869222496214 0.13710954008598028 0.12270025849846068 C 0.13698558366417246 0.12262869222496214 0.13640929203277014 0.12194762029694126 0.13648085830626866 0.12207157671874909 C 0.13640929203277014 0.12194762029694126 0.13623156867880862 0.12114121516326812 0.13625074480399785 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13625074480399785 0.12121278143676666 C 0.1361379160064496 0.12109028329130885 0.13472185945375548 0.1194673449761444 0.13489679923341857 0.11974280369127292 C 0.13472185945375548 0.1194673449761444 0.13408935646592596 0.11775431628555375 0.13415146744804077 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13415146744804077 0.11790727685522445 C 0.1342026989929367 0.1177586680604413 0.13492528215012195 0.11584851260269814 0.13476624598679188 0.11612397131782666 C 0.13492528215012195 0.11584851260269814 0.13616770602643594 0.11447492235333687 0.13605990140800178 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.17615835435102645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10604893265652446 0.10748907354235071 C 0.10596228412277792 0.1072482023065243 0.10523517556561858 0.10553256343095387 0.10552904145404522 0.10604384612739229 C 0.10523517556561858 0.10553256343095387 0.10432169148151518 0.10390256191746049 0.10428573732596458 0.10442137736372015 C 0.10432169148151518 0.10390256191746049 0.10607229552869551 0.10234136703135382 0.10574476638734885 0.10293095344983434 C 0.10607229552869551 0.10234136703135382 0.10625091217404452 0.10088385885283704 0.10625091217404452 0.10088385885283704 C 0.10625091217404452 0.10088385885283704 0.10541723724600219 0.10352053986831486 0.10574476638734885 0.10293095344983434 C 0.10541723724600219 0.10352053986831486 0.10379029293035699 0.10434470245559413 0.10428573732596458 0.10442137736372015 C 0.10379029293035699 0.10434470245559413 0.10246360060140602 0.10188034105192505 0.10277210001370338 0.10247090400107826 C 0.10246360060140602 0.10188034105192505 0.10237851432525995 0.10061251561342129 0.10243474085218043 0.10087799966880086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.33734345282867095,0.17946385893256867) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1396859259319275 0.11460177227368223 C 0.13978295008851824 0.11471593720199307 0.14099334835801344 0.11621966425702789 0.14085021581101637 0.11597175141341222 C 0.14099334835801344 0.11621966425702789 0.14144962488629872 0.11771047431237507 0.1414035164958924 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414035164958924 0.11757672639707023 C 0.14134761661198905 0.11771439090977387 0.14057527208735562 0.11947661339312951 0.1407327178890524 0.11922870054951384 C 0.14057527208735562 0.11947661339312951 0.13941262095773754 0.12066192885137025 0.139514166875531 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.139514166875531 0.12055168052045823 C 0.1394969083628607 0.1206160901666069 0.1392426550773386 0.12143615705386945 0.13930706472348728 0.1213245962742424 C 0.1392426550773386 0.12143615705386945 0.13862969034211983 0.12195481952213148 0.13874125112174687 0.1218904098759828 C 0.13862969034211983 0.12195481952213148 0.1378395160756653 0.12209751202802659 0.13796833536796266 0.12209751202802659 C 0.1378395160756653 0.12209751202802659 0.13708385883455143 0.12182600022983413 0.13719541961417847 0.1218904098759828 C 0.13708385883455143 0.12182600022983413 0.13656519636628942 0.12121303549461535 0.1366296060124381 0.1213245962742424 C 0.13656519636628942 0.12121303549461535 0.13640524534772402 0.12048727087430955 0.13642250386039434 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13642250386039434 0.12055168052045823 C 0.1363209579426009 0.1204414321895462 0.13504650704517626 0.11898078770589818 0.13520395284687303 0.11922870054951384 C 0.13504650704517626 0.11898078770589818 0.13447725435612962 0.11743906188436659 0.13453315424003295 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13453315424003295 0.11757672639707023 C 0.1345792626304393 0.1174429784817654 0.13522958747190603 0.11572383856979657 0.13508645492490895 0.11597175141341223 C 0.13522958747190603 0.11572383856979657 0.1363477689605886 0.1144876073453714 0.13625074480399785 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18243881305595666) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10587776472843759 0.10715890621929738 C 0.1057997810480657 0.10694212210705362 0.10514538334662228 0.10539804711904018 0.10540986264620626 0.10585820154583477 C 0.10514538334662228 0.10539804711904018 0.10432324767092925 0.10393104575689618 0.1042908889309337 0.10439797965852987 C 0.10432324767092925 0.10393104575689618 0.10589879131339153 0.10252597035940017 0.10560401508617955 0.10305659813603263 C 0.10589879131339153 0.10252597035940017 0.10605954629420564 0.10121421299873508 0.10605954629420564 0.10121421299873508 C 0.10605954629420564 0.10121421299873508 0.10530923885896756 0.10358722591266509 0.10560401508617955 0.10305659813603263 C 0.10530923885896756 0.10358722591266509 0.10384498897488688 0.10432897224121647 0.1042908889309337 0.10439797965852987 C 0.10384498897488688 0.10432897224121647 0.10265096587883098 0.10211104697791429 0.1029286153498986 0.10264255363215219 C 0.10265096587883098 0.10211104697791429 0.10257438823029953 0.1009700040832609 0.10262499210452797 0.10120893973310251" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.33734345282867095,0.18541376717934466) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139514166875531 0.11460177227368223 C 0.13960148861646268 0.11470452070916198 0.14069084705900842 0.11605787505869332 0.14056202776671106 0.11583475349943922 C 0.14069084705900842 0.11605787505869332 0.1411014959344651 0.11739960410850578 0.1410599983830994 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1410599983830994 0.11727923098473143 C 0.1410096884875864 0.1174031290461647 0.14031457841541628 0.11898912928118477 0.14045627963694338 0.11876600772193067 C 0.14031457841541628 0.11898912928118477 0.1392681923987601 0.12005591319360148 0.1393595837247742 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1393595837247742 0.11995668969578065 C 0.13934405106337092 0.12001465837731445 0.13911522310640095 0.12075271857585074 0.13917319178793477 0.12065231387418639 C 0.13911522310640095 0.12075271857585074 0.1385635548447041 0.12121951479728658 0.13866395954636843 0.12116154611575278 C 0.1385635548447041 0.12121951479728658 0.13785239800489502 0.12134793805259214 0.13796833536796266 0.12134793805259214 C 0.13785239800489502 0.12134793805259214 0.13717230648789255 0.12110357743421897 0.1372727111895569 0.12116154611575278 C 0.13717230648789255 0.12110357743421897 0.13670551026645672 0.12055190917252204 0.13676347894799054 0.12065231387418639 C 0.13670551026645672 0.12055190917252204 0.13656155434974784 0.11989872101424684 0.13657708701115112 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13657708701115112 0.11995668969578065 C 0.13648569568513702 0.11985746619795981 0.13533868987745487 0.11854288616267658 0.13548039109898197 0.11876600772193067 C 0.13533868987745487 0.11854288616267658 0.13482636245731297 0.11715533292329816 0.13487667235282597 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13487667235282597 0.11727923098473143 C 0.13491816990419167 0.11715885786095709 0.1355034622615117 0.11561163194018514 0.13537464296921434 0.11583475349943924 C 0.1355034622615117 0.11561163194018514 0.13650982560132602 0.11449902383820248 0.13642250386039434 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18809122589039384) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10572371359315942 0.10686175562854937 C 0.10565352828082472 0.10666664992752999 0.10506457034952563 0.10527698243831791 0.10530260171915122 0.10569112142243305 C 0.10506457034952563 0.10527698243831791 0.10432464824140189 0.10395668121238828 0.1042955253754059 0.10437692172385861 C 0.10432464824140189 0.10395668121238828 0.10574263751961796 0.1026921133546419 0.10547733891512716 0.10316967835361111 C 0.10574263751961796 0.1026921133546419 0.10588731700235067 0.1015115317300433 0.10588731700235067 0.1015115317300433 C 0.10588731700235067 0.1015115317300433 0.10521204031063636 0.10364724335258033 0.10547733891512716 0.10316967835361111 C 0.10521204031063636 0.10364724335258033 0.10389421541496376 0.10431481504827654 0.1042955253754059 0.10437692172385861 C 0.10389421541496376 0.10431481504827654 0.10281959462851345 0.1023186823113046 0.10306947915247432 0.1027970383001187 C 0.10281959462851345 0.1023186823113046 0.10275067474483512 0.10129174370611656 0.10279621823164073 0.10150678579097401" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.33734345282867095,0.19076868460144308) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393595837247742 0.11460177227368223 C 0.1394381732916127 0.11469424586561401 0.14041859588990382 0.1159122647801922 0.1403026585268362 0.11571145537686352 C 0.14041859588990382 0.1159122647801922 0.14078817987781483 0.11711982092502345 0.1407508320815857 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1407508320815857 0.11701148511362652 C 0.140705553175624 0.11712299336891646 0.14007995411067095 0.11855039358043452 0.14020748521004534 0.11834958417710584 C 0.14007995411067095 0.11855039358043452 0.13913820669568036 0.11951049910160953 0.13922045888909304 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13922045888909304 0.11942119795357078 C 0.13920647949383008 0.11947336976695122 0.13900053433255716 0.1201376239456339 0.1390527061459376 0.12004725971413599 C 0.13900053433255716 0.1201376239456339 0.13850403289702995 0.12055774054492616 0.13859439712852786 0.12050556873154572 C 0.13850403289702995 0.12055774054492616 0.13786399174120179 0.12067332147470118 0.13796833536796266 0.12067332147470118 C 0.13786399174120179 0.12067332147470118 0.13725190937589957 0.12045339691816528 0.13734227360739748 0.12050556873154572 C 0.13725190937589957 0.12045339691816528 0.1368317927766073 0.11995689548263808 0.13688396458998775 0.12004725971413599 C 0.1368317927766073 0.11995689548263808 0.13670223245156934 0.11936902614019035 0.1367162118468323 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1367162118468323 0.11942119795357078 C 0.13663395965341962 0.11933189680553204 0.13560165442650568 0.11814877477377715 0.13572918552588006 0.11834958417710584 C 0.13560165442650568 0.11814877477377715 0.13514055974837788 0.11689997685833659 0.13518583865433959 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13518583865433959 0.11701148511362652 C 0.13522318645056872 0.11690314930222961 0.1357499495721568 0.11551064597353485 0.1356340122090892 0.11571145537686353 C 0.1357499495721568 0.11551064597353485 0.1366556765779896 0.11450929868175046 0.13657708701115112 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19317839744138737) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10558506757140906 0.10659432009687617 C 0.10552190079030783 0.10641872496595872 0.10499183865213865 0.10516802422566786 0.10520606688480168 0.10554074931137147 C 0.10499183865213865 0.10516802422566786 0.10432590875482727 0.10397975312233121 0.10429969817543087 0.1043579695826545 C 0.10432590875482727 0.10397975312233121 0.10560209910522175 0.10284164205035944 0.10536333036118004 0.10327145054943174 C 0.10560209910522175 0.10284164205035944 0.10573231063968118 0.10177911858822072 0.10573231063968118 0.10177911858822072 C 0.10573231063968118 0.10177911858822072 0.10512456161713832 0.10370125904850404 0.10536333036118004 0.10327145054943174 C 0.10512456161713832 0.10370125904850404 0.10393851921103295 0.10430207357463064 0.10429969817543087 0.1043579695826545 C 0.10393851921103295 0.10430207357463064 0.1029713605032277 0.1025055541113559 0.10319625657479246 0.10293607450128858 C 0.1029713605032277 0.1025055541113559 0.10290933260791721 0.10158130936668665 0.10295032174604224 0.10177484724305835" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.021814492892120386 0.019655031969990255 C 0.02189843635998038 0.019913383399076362 0.020972167044877248 0.021730741504815434 0.02119193389686825 0.021571071540598112 C 0.020972167044877248 0.021730741504815434 0.018957523816237377 0.02141140157638079 0.01917729066822838 0.021571071540598112 C 0.018957523816237377 0.02141140157638079 0.018638675140836235 0.019396680540904147 0.018554731672976242 0.019655031969990255 C 0.018638675140836235 0.019396680540904147 0.02045625905081033 0.01847085439156484 0.020184612282548316 0.01847085439156484 C 0.02045625905081033 0.01847085439156484 0.02189843635998038 0.019913383399076362 0.021814492892120386 0.019655031969990255 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027502747819324644 0.02603232541511103 C 0.027559906693821416 0.026208242342153215 0.02692919041676106 0.027445719736521604 0.0270788342929523 0.027336997096413098 C 0.02692919041676106 0.027445719736521604 0.025557377428838512 0.02722827445630459 0.02570702130502975 0.027336997096413098 C 0.025557377428838512 0.02722827445630459 0.025340266653154187 0.025856408488068847 0.025283107778657415 0.02603232541511103 C 0.025340266653154187 0.025856408488068847 0.026577897802379964 0.02522599397190689 0.02639292779899103 0.02522599397190689 C 0.026577897802379964 0.02522599397190689 0.027559906693821416 0.026208242342153215 0.027502747819324644 0.02603232541511103 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3363064238473449,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.1711963548580165 0.18697686303569988 C 0.17130379882900187 0.1867993233859663 0.1726737823540102 0.18460526917397238 0.172485682509841 0.18484638723889682 C 0.1726737823540102 0.18460526917397238 0.17353420886123075 0.1840198678414159 0.17345355298804693 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17345355298804693 0.18408344625660675 C 0.1734610547976768 0.18479366891109977 0.173454253859911 0.1937469257779561 0.17354357470360512 0.1926061181105231 C 0.173454253859911 0.1937469257779561 0.1722848802103936 0.19820372327874247 0.17238170286371757 0.19777313826580253" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17238170286371757 0.19777313826580253 C 0.17231890264172642 0.1980144778357732 0.17145684490748453 0.2014010126662435 0.1716281001998237 0.20066921310545033 C 0.17145684490748453 0.2014010126662435 0.17021818428529975 0.2070451929861431 0.17032663935564774 0.20655473299532057" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17032663935564774 0.20655473299532057 C 0.17034447385437246 0.20601373351811358 0.17055281595346736 0.19928491678133153 0.17054065334034427 0.20006273926883675 C 0.17055281595346736 0.19928491678133153 0.17046691882752313 0.19698404013495982 0.17047259071312476 0.19722086314525805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17047259071312476 0.19722086314525805 C 0.17048094040644965 0.1967771202422981 0.17063310071176452 0.19104228163394205 0.17057278703302353 0.19189594830973855 C 0.17063310071176452 0.19104228163394205 0.17124831884343256 0.18656693926286333 0.1711963548580165 0.18697686303569988" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33838048180999714,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17483859387460018 0.18697686303569988 C 0.17489055786001625 0.18738678680853643 0.17551134580824887 0.1927274466271251 0.1754621616995931 0.19189594830973855 C 0.17551134580824887 0.1927274466271251 0.17542602330170898 0.19737641738888834 0.1754288031784693 0.19695484284433834" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1754288031784693 0.19695484284433834 C 0.1754121299267112 0.1972090152304208 0.1752101294456235 0.20077039133985541 0.17522872415737223 0.20000491147732796 C 0.1752101294456235 0.20077039133985541 0.17520374517749385 0.2066519086711127 0.1752056666374845 0.2061406011946677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1752056666374845 0.2061406011946677 C 0.17510510886416011 0.20565365798493312 0.17386033816287447 0.199575272718897 0.17399897335759199 0.20029728267785274 C 0.17386033816287447 0.199575272718897 0.17350396687948116 0.19724141493797767 0.1735420443008743 0.19747648168719883" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1735420443008743 0.19747648168719883 C 0.17345448844488576 0.1970706180558092 0.17241131998265286 0.19149003182464044 0.17249137402901157 0.1926061181105231 C 0.17241131998265286 0.19149003182464044 0.17258889755419968 0.18337322360211372 0.17258139574456982 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17258139574456982 0.18408344625660675 C 0.17266205161775364 0.18414702467179758 0.17373736606694493 0.18508750530382126 0.17354926622277572 0.18484638723889682 C 0.17373736606694493 0.18508750530382126 0.17494603784558554 0.18715440268543346 0.17483859387460018 0.18697686303569988" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19554338318327485 0.1848550245376526 C 0.19546754884611228 0.1840181330774358 0.19452113835293466 0.1735140220846546 0.19463337113732387 0.17481232701505128 C 0.19452113835293466 0.1735140220846546 0.19416019132337764 0.16881395190271253 0.19419658977060428 0.16927536537289245" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19419658977060428 0.16927536537289245 C 0.19417790560767514 0.1689066259697183 0.19399884798522143 0.16383630665631949 0.1939723798154548 0.1648504925348027 C 0.19399884798522143 0.16383630665631949 0.19455936014049982 0.15645968835578497 0.19451420780780404 0.15710513483109403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19451420780780404 0.15710513483109403 C 0.19459742603841976 0.15706175542636844 0.19567926303642408 0.15658458197438677 0.19551282657519264 0.15658458197438677 C 0.19567926303642408 0.15658458197438677 0.19659466357319702 0.15714851423581963 0.1965114453425813 0.15710513483109403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1965114453425813 0.15710513483109403 C 0.19655782469824282 0.15773199339562569 0.1970981913257858 0.16566366163414692 0.19706799761051952 0.1646274376054738 C 0.1970981913257858 0.16566366163414692 0.19685758428538136 0.16994918863931305 0.1968737699257766 0.16953982317517158" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1968737699257766 0.16953982317517158 C 0.1968182671392038 0.17000022676702203 0.19609687092502812 0.17634093305758375 0.19620773648690326 0.175064666277377 C 0.19609687092502812 0.17634093305758375 0.19548802040797247 0.1856708877260089 0.19554338318327485 0.1848550245376526" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.2500879204430701 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.2500879204430701 0.2308044715076716 0.2669420916363424 0.23280529274848838 0.2647202078121963 C 0.2308044715076716 0.2669420916363424 0.21538989416043028 0.27417272973363077 0.2178778082444386 0.27417272973363077 C 0.21538989416043028 0.27417272973363077 0.200949502499572 0.2624983239880503 0.2029503237403888 0.2647202078121964 C 0.200949502499572 0.2624983239880503 0.19280156103266954 0.24493232724468494 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.24493232724468494 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g id="編節1">
<g transform="translate(0.33734345282867095,0.13820072278907372) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14087709006993027 0.11460177227368223 C 0.14104140133107057 0.11479511158224094 0.14309122142877786 0.11734168655393362 0.1428488252036139 0.11692184397638673 C 0.14309122142877786 0.11734168655393362 0.14386392973592155 0.11986638647323312 0.14378584477189787 0.11963988320424494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14378584477189787 0.11963988320424494 C 0.14369117782765947 0.11987301926531903 0.14238320559335665 0.12285735851468087 0.142649841441037 0.12243751593713396 C 0.14238320559335665 0.12285735851468087 0.14041424569629155 0.12486470065128054 0.1405862145997335 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405862145997335 0.12467799413480772 C 0.14055698715698203 0.1247870724361315 0.14012640698539208 0.12617586291058924 0.14023548528671587 0.12598693375069314 C 0.14012640698539208 0.12617586291058924 0.13908834582395194 0.12705422235488473 0.13927727498384804 0.12694514405356094 C 0.13908834582395194 0.12705422235488473 0.1377501787653151 0.12729587336657855 0.13796833536796266 0.12729587336657855 C 0.1377501787653151 0.12729587336657855 0.13647046659218112 0.12683606575223716 0.13665939575207722 0.12694514405356094 C 0.13647046659218112 0.12683606575223716 0.1355921071478856 0.12579800459079704 0.1357011854492094 0.12598693375069314 C 0.1355921071478856 0.12579800459079704 0.13532122869344038 0.12456891583348394 0.13535045613619184 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13535045613619184 0.12467799413480772 C 0.1351784872327499 0.1244912876183349 0.13302019344720797 0.12201767335958708 0.13328682929488833 0.12243751593713396 C 0.13302019344720797 0.12201767335958708 0.1320561590197891 0.11940674714317089 0.1321508259640275 0.11963988320424497" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1321508259640275 0.11963988320424497 C 0.13222891092805117 0.11941337993525679 0.13333024175747538 0.11650200139883984 0.1330878455323114 0.11692184397638673 C 0.13333024175747538 0.11650200139883984 0.13522389192713535 0.11440843296512353 0.13505958066599505 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14323883371963647) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1069461228785802 0.1092196716584617 C 0.10681405683110795 0.10885254586082962 0.10570582857755001 0.1062376413103488 0.1061537265937467 0.10701691687266922 C 0.10570582857755001 0.1062376413103488 0.10431353459171952 0.10375326162204923 0.10425873478140005 0.10454401828453919 C 0.10431353459171952 0.10375326162204923 0.10698173158483083 0.10137375409864323 0.10648252545566354 0.10227237689772953 C 0.10698173158483083 0.10137375409864323 0.10725397155640377 0.09915228149002142 0.10725397155640377 0.09915228149002142 C 0.10725397155640377 0.09915228149002142 0.10598331932649625 0.10317099969681583 0.10648252545566354 0.10227237689772953 C 0.10598331932649625 0.10317099969681583 0.10350359929045722 0.10442715361737563 0.10425873478140005 0.10454401828453919 C 0.10350359929045722 0.10442715361737563 0.10148151069275715 0.10067107770871982 0.10195171251000659 0.10157118889474819 C 0.10148151069275715 0.10067107770871982 0.10135182577255288 0.09873871154730576 0.1014375238779034 0.09914335116836896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.33734345282867095,0.1482769446501992) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1405862145997335 0.11460177227368223 C 0.14073409473475978 0.11477577765138507 0.14257893282269637 0.11706769512590848 0.1423607762200488 0.11668983680611628 C 0.14257893282269637 0.11706769512590848 0.1432743702991256 0.11933992505327808 0.14320409383150431 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14320409383150431 0.1191360721111887 C 0.14311889358168975 0.11934589456615538 0.14194171857081725 0.12203179989058098 0.14218169083372958 0.12165394157078878 C 0.14194171857081725 0.12203179989058098 0.14016965466345865 0.12383840781352068 0.14032442667655642 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14032442667655642 0.12367037194869515 C 0.14029812197808011 0.12376854241988655 0.1399105998236492 0.12501845384689853 0.1400087702948406 0.12484841760299202 C 0.1399105998236492 0.12501845384689853 0.13897634477835305 0.12580897734676447 0.13914638102225954 0.12571080687557307 C 0.13897634477835305 0.12580897734676447 0.13777199442557986 0.1260264632572889 0.13796833536796266 0.1260264632572889 C 0.13777199442557986 0.1260264632572889 0.1366202534697593 0.12561263640438167 0.1367902897136658 0.12571080687557307 C 0.1366202534697593 0.12561263640438167 0.13582972996989334 0.12467838135908553 0.13592790044108474 0.12484841760299202 C 0.13582972996989334 0.12467838135908553 0.1355859393608926 0.12357220147750375 0.13561224405936892 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13561224405936892 0.12367037194869515 C 0.13545747204627115 0.12350233608386962 0.13351500763928342 0.12127608325099658 0.13375497990219576 0.12165394157078878 C 0.13351500763928342 0.12127608325099658 0.13264737665460644 0.11892624965622203 0.132732576904421 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.132732576904421 0.1191360721111887 C 0.13280285337204228 0.11893221916909934 0.1337940511185241 0.11631197848632409 0.13357589451587654 0.11668983680611629 C 0.1337940511185241 0.11631197848632409 0.13549833627121813 0.1144277668959794 0.13535045613619184 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.15281124448770567) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10668523592828776 0.10871644452379725 C 0.10656637648556273 0.10838603130592839 0.10556897105736057 0.10603261721049564 0.1059720792719376 0.10673396521658403 C 0.10556897105736057 0.10603261721049564 0.10431590647011313 0.10379667549102603 0.10426658664082561 0.10450835648726699 C 0.10431590647011313 0.10379667549102603 0.10671728376391332 0.10165511871996066 0.10626799824766275 0.10246387923913833 C 0.10671728376391332 0.10165511871996066 0.10696229973832898 0.09965579337220103 0.10696229973832898 0.09965579337220103 C 0.10696229973832898 0.09965579337220103 0.10581871273141219 0.10327263975831599 0.10626799824766275 0.10246387923913833 C 0.10581871273141219 0.10327263975831599 0.10358696469897707 0.10440317828681978 0.10426658664082561 0.10450835648726699 C 0.10358696469897707 0.10440317828681978 0.10176708496104706 0.10102270996902957 0.10219026659657154 0.1018328100364551 C 0.10176708496104706 0.10102270996902957 0.10165036853286316 0.09928358042375693 0.10172749682767865 0.09964775608271381" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.33734345282867095,0.1573455443252121) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14032442667655642 0.11460177227368223 C 0.14045751879808008 0.11475837711361479 0.14211787307722298 0.11682110284068586 0.14192153213484018 0.11648103035287288 C 0.14211787307722298 0.11682110284068586 0.14274376680600934 0.11886610977531849 0.14268051798515016 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14268051798515016 0.11868264212743805 C 0.14260383776031704 0.11887148233690806 0.14154438025053176 0.12128879712889112 0.14176035528715286 0.12094872464107814 C 0.14154438025053176 0.12128879712889112 0.1399495227339091 0.12291474425953686 0.14008881754569708 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008881754569708 0.12276351198119388 C 0.14006514331706837 0.12285186540526614 0.13971637337808054 0.1239767856895769 0.1398047268021528 0.12382375307006106 C 0.13971637337808054 0.1239767856895769 0.138875543837314 0.12468825683945627 0.13902857645682987 0.124599903415384 C 0.138875543837314 0.12468825683945627 0.13779162851981813 0.12488399415892827 0.13796833536796266 0.12488399415892827 C 0.13779162851981813 0.12488399415892827 0.13675506165957962 0.12451154999131174 0.13690809427909548 0.124599903415384 C 0.13675506165957962 0.12451154999131174 0.13604359050970033 0.12367072045054522 0.1361319439337726 0.12382375307006106 C 0.13604359050970033 0.12367072045054522 0.13582417896159957 0.12267515855712162 0.13584785319022827 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13584785319022827 0.12276351198119388 C 0.13570855837844029 0.12261227970285091 0.13396034041215135 0.12060865215326516 0.13417631544877245 0.12094872464107814 C 0.13396034041215135 0.12060865215326516 0.1331794725259421 0.11849380191796804 0.13325615275077518 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13325615275077518 0.11868264212743805 C 0.13331940157163436 0.11849917447955761 0.13421147954346796 0.1161409578650599 0.13401513860108516 0.11648103035287288 C 0.13421147954346796 0.1161409578650599 0.13574533618089257 0.11444516743374968 0.13561224405936892 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.16142641417896791) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645043767302456 0.1082635401025993 C 0.10634346417457204 0.1079661682065173 0.10544579928919008 0.10584809552062784 0.10580859668230941 0.10647930872610738 C 0.10544579928919008 0.10584809552062784 0.1043180411606674 0.10383574797310519 0.10427365331430863 0.10447626086972205 C 0.1043180411606674 0.10383574797310519 0.10647928072508756 0.10190834687914632 0.10607492376046206 0.10263623134640622 C 0.10647928072508756 0.10190834687914632 0.10669979510206165 0.10010895406616264 0.10669979510206165 0.10010895406616264 C 0.10669979510206165 0.10010895406616264 0.10567056679583656 0.10336411581366611 0.10607492376046206 0.10263623134640622 C 0.10567056679583656 0.10336411581366611 0.10366199356664495 0.10438160048931956 0.10427365331430863 0.10447626086972205 C 0.10366199356664495 0.10438160048931956 0.10202410180250791 0.10133917900330836 0.10240496527447995 0.10206826906399133 C 0.10202410180250791 0.10133917900330836 0.10191905701714243 0.09977396241256296 0.10198847248247636 0.10010172050562416" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.33734345282867095,0.16550728403272374) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14008881754569708 0.11460177227368223 C 0.14020860045506836 0.11474271662962153 0.14170291930629692 0.11659916978398552 0.1415262124581524 0.11629310454495383 C 0.14170291930629692 0.11659916978398552 0.14226622366220465 0.11843967602515486 0.1422092997234314 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1422092997234314 0.11827455514206248 C 0.1421402875210816 0.11844451133058548 0.14118677576227487 0.12062009464337023 0.14138115329523385 0.12031402940433854 C 0.14118677576227487 0.12062009464337023 0.13975140399731442 0.1220834470609514 0.13987676932792362 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13987676932792362 0.12194733801044272 C 0.1398554625221578 0.12202685609210775 0.13954156957706876 0.12303928434798746 0.1396210876587338 0.1229015549904232 C 0.13954156957706876 0.12303928434798746 0.13878482299037886 0.12367960838287889 0.13892255234794312 0.12360009030121386 C 0.13878482299037886 0.12367960838287889 0.13780929920463258 0.12385577197040366 0.13796833536796266 0.12385577197040366 C 0.13780929920463258 0.12385577197040366 0.13687638903041796 0.12352057221954882 0.13701411838798222 0.12360009030121386 C 0.13687638903041796 0.12352057221954882 0.13623606499552654 0.12276382563285894 0.13631558307719158 0.1229015549904232 C 0.13623606499552654 0.12276382563285894 0.13603859460223597 0.12186781992877768 0.13605990140800178 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13605990140800178 0.12194733801044272 C 0.1359345360773926 0.12181122895993404 0.1343611399077325 0.12000796416530685 0.13455551744069147 0.12031402940433854 C 0.1343611399077325 0.12000796416530685 0.13365835881014415 0.11810459895353947 0.13372737101249393 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13372737101249393 0.11827455514206248 C 0.13378429495126717 0.1181094342589701 0.13458716512591745 0.11598703930592213 0.13441045827777293 0.11629310454495383 C 0.13458716512591745 0.11598703930592213 0.13596763609959955 0.11446082791774294 0.13584785319022827 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.169180066901104) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10623911924328767 0.10785592612352109 C 0.1061428430946804 0.1075882914170473 0.10533494469783665 0.1056820259997468 0.10566146235164404 0.10625011788467838 C 0.10533494469783665 0.1056820259997468 0.10431996238216623 0.1038709132069764 0.10428001332044333 0.10444737481393157 C 0.10431996238216623 0.1038709132069764 0.1062650779901444 0.10213625222241343 0.10590115672198144 0.10279134824294735 C 0.1062650779901444 0.10213625222241343 0.10646354092942105 0.10051679869072812 0.10646354092942105 0.10051679869072812 C 0.10646354092942105 0.10051679869072812 0.10553723545381849 0.10344644426348126 0.10590115672198144 0.10279134824294735 C 0.10553723545381849 0.10344644426348126 0.10372951954754601 0.10436218047156934 0.10428001332044333 0.10444737481393157 C 0.10372951954754601 0.10436218047156934 0.10225541695982271 0.10162400113415924 0.10259819408459754 0.10228018218877392 C 0.10225541695982271 0.10162400113415924 0.10216087665299375 0.1002153062024884 0.1022233505717943 0.10051028848624348" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.33734345282867095,0.17285284976948423) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13987676932792362 0.11460177227368223 C 0.13998457394635777 0.1147286221940276 0.1413294609124635 0.11639943003295518 0.14117042474913344 0.11612397131782666 C 0.1413294609124635 0.11639943003295518 0.14183643483278044 0.1180558856500076 0.14178520328788452 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14178520328788452 0.11790727685522445 C 0.1417230923057697 0.11806023742489516 0.14086493172284364 0.12001826240640144 0.14103987150250674 0.11974280369127292 C 0.14086493172284364 0.12001826240640144 0.13957309713437924 0.12133527958222447 0.1396859259319275 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1396859259319275 0.12121278143676666 C 0.13966674980673827 0.1212843477102652 0.13938424615615813 0.12219553314055692 0.13945581242965666 0.12207157671874909 C 0.13938424615615813 0.12219553314055692 0.13870317422813722 0.12277182477195922 0.13882713064994506 0.12270025849846068 C 0.13870317422813722 0.12277182477195922 0.13782520282096558 0.1229303720007315 0.13796833536796266 0.1229303720007315 C 0.13782520282096558 0.1229303720007315 0.13698558366417246 0.12262869222496214 0.13710954008598028 0.12270025849846068 C 0.13698558366417246 0.12262869222496214 0.13640929203277014 0.12194762029694126 0.13648085830626866 0.12207157671874909 C 0.13640929203277014 0.12194762029694126 0.13623156867880862 0.12114121516326812 0.13625074480399785 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13625074480399785 0.12121278143676666 C 0.1361379160064496 0.12109028329130885 0.13472185945375548 0.1194673449761444 0.13489679923341857 0.11974280369127292 C 0.13472185945375548 0.1194673449761444 0.13408935646592596 0.11775431628555375 0.13415146744804077 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13415146744804077 0.11790727685522445 C 0.1342026989929367 0.1177586680604413 0.13492528215012195 0.11584851260269814 0.13476624598679188 0.11612397131782666 C 0.13492528215012195 0.11584851260269814 0.13616770602643594 0.11447492235333687 0.13605990140800178 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.17615835435102645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10604893265652446 0.10748907354235071 C 0.10596228412277792 0.1072482023065243 0.10523517556561858 0.10553256343095387 0.10552904145404522 0.10604384612739229 C 0.10523517556561858 0.10553256343095387 0.10432169148151518 0.10390256191746049 0.10428573732596458 0.10442137736372015 C 0.10432169148151518 0.10390256191746049 0.10607229552869551 0.10234136703135382 0.10574476638734885 0.10293095344983434 C 0.10607229552869551 0.10234136703135382 0.10625091217404452 0.10088385885283704 0.10625091217404452 0.10088385885283704 C 0.10625091217404452 0.10088385885283704 0.10541723724600219 0.10352053986831486 0.10574476638734885 0.10293095344983434 C 0.10541723724600219 0.10352053986831486 0.10379029293035699 0.10434470245559413 0.10428573732596458 0.10442137736372015 C 0.10379029293035699 0.10434470245559413 0.10246360060140602 0.10188034105192505 0.10277210001370338 0.10247090400107826 C 0.10246360060140602 0.10188034105192505 0.10237851432525995 0.10061251561342129 0.10243474085218043 0.10087799966880086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.33734345282867095,0.17946385893256867) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1396859259319275 0.11460177227368223 C 0.13978295008851824 0.11471593720199307 0.14099334835801344 0.11621966425702789 0.14085021581101637 0.11597175141341222 C 0.14099334835801344 0.11621966425702789 0.14144962488629872 0.11771047431237507 0.1414035164958924 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414035164958924 0.11757672639707023 C 0.14134761661198905 0.11771439090977387 0.14057527208735562 0.11947661339312951 0.1407327178890524 0.11922870054951384 C 0.14057527208735562 0.11947661339312951 0.13941262095773754 0.12066192885137025 0.139514166875531 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.139514166875531 0.12055168052045823 C 0.1394969083628607 0.1206160901666069 0.1392426550773386 0.12143615705386945 0.13930706472348728 0.1213245962742424 C 0.1392426550773386 0.12143615705386945 0.13862969034211983 0.12195481952213148 0.13874125112174687 0.1218904098759828 C 0.13862969034211983 0.12195481952213148 0.1378395160756653 0.12209751202802659 0.13796833536796266 0.12209751202802659 C 0.1378395160756653 0.12209751202802659 0.13708385883455143 0.12182600022983413 0.13719541961417847 0.1218904098759828 C 0.13708385883455143 0.12182600022983413 0.13656519636628942 0.12121303549461535 0.1366296060124381 0.1213245962742424 C 0.13656519636628942 0.12121303549461535 0.13640524534772402 0.12048727087430955 0.13642250386039434 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13642250386039434 0.12055168052045823 C 0.1363209579426009 0.1204414321895462 0.13504650704517626 0.11898078770589818 0.13520395284687303 0.11922870054951384 C 0.13504650704517626 0.11898078770589818 0.13447725435612962 0.11743906188436659 0.13453315424003295 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13453315424003295 0.11757672639707023 C 0.1345792626304393 0.1174429784817654 0.13522958747190603 0.11572383856979657 0.13508645492490895 0.11597175141341223 C 0.13522958747190603 0.11572383856979657 0.1363477689605886 0.1144876073453714 0.13625074480399785 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18243881305595666) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10587776472843759 0.10715890621929738 C 0.1057997810480657 0.10694212210705362 0.10514538334662228 0.10539804711904018 0.10540986264620626 0.10585820154583477 C 0.10514538334662228 0.10539804711904018 0.10432324767092925 0.10393104575689618 0.1042908889309337 0.10439797965852987 C 0.10432324767092925 0.10393104575689618 0.10589879131339153 0.10252597035940017 0.10560401508617955 0.10305659813603263 C 0.10589879131339153 0.10252597035940017 0.10605954629420564 0.10121421299873508 0.10605954629420564 0.10121421299873508 C 0.10605954629420564 0.10121421299873508 0.10530923885896756 0.10358722591266509 0.10560401508617955 0.10305659813603263 C 0.10530923885896756 0.10358722591266509 0.10384498897488688 0.10432897224121647 0.1042908889309337 0.10439797965852987 C 0.10384498897488688 0.10432897224121647 0.10265096587883098 0.10211104697791429 0.1029286153498986 0.10264255363215219 C 0.10265096587883098 0.10211104697791429 0.10257438823029953 0.1009700040832609 0.10262499210452797 0.10120893973310251" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.33734345282867095,0.18541376717934466) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139514166875531 0.11460177227368223 C 0.13960148861646268 0.11470452070916198 0.14069084705900842 0.11605787505869332 0.14056202776671106 0.11583475349943922 C 0.14069084705900842 0.11605787505869332 0.1411014959344651 0.11739960410850578 0.1410599983830994 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1410599983830994 0.11727923098473143 C 0.1410096884875864 0.1174031290461647 0.14031457841541628 0.11898912928118477 0.14045627963694338 0.11876600772193067 C 0.14031457841541628 0.11898912928118477 0.1392681923987601 0.12005591319360148 0.1393595837247742 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1393595837247742 0.11995668969578065 C 0.13934405106337092 0.12001465837731445 0.13911522310640095 0.12075271857585074 0.13917319178793477 0.12065231387418639 C 0.13911522310640095 0.12075271857585074 0.1385635548447041 0.12121951479728658 0.13866395954636843 0.12116154611575278 C 0.1385635548447041 0.12121951479728658 0.13785239800489502 0.12134793805259214 0.13796833536796266 0.12134793805259214 C 0.13785239800489502 0.12134793805259214 0.13717230648789255 0.12110357743421897 0.1372727111895569 0.12116154611575278 C 0.13717230648789255 0.12110357743421897 0.13670551026645672 0.12055190917252204 0.13676347894799054 0.12065231387418639 C 0.13670551026645672 0.12055190917252204 0.13656155434974784 0.11989872101424684 0.13657708701115112 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13657708701115112 0.11995668969578065 C 0.13648569568513702 0.11985746619795981 0.13533868987745487 0.11854288616267658 0.13548039109898197 0.11876600772193067 C 0.13533868987745487 0.11854288616267658 0.13482636245731297 0.11715533292329816 0.13487667235282597 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13487667235282597 0.11727923098473143 C 0.13491816990419167 0.11715885786095709 0.1355034622615117 0.11561163194018514 0.13537464296921434 0.11583475349943924 C 0.1355034622615117 0.11561163194018514 0.13650982560132602 0.11449902383820248 0.13642250386039434 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18809122589039384) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10572371359315942 0.10686175562854937 C 0.10565352828082472 0.10666664992752999 0.10506457034952563 0.10527698243831791 0.10530260171915122 0.10569112142243305 C 0.10506457034952563 0.10527698243831791 0.10432464824140189 0.10395668121238828 0.1042955253754059 0.10437692172385861 C 0.10432464824140189 0.10395668121238828 0.10574263751961796 0.1026921133546419 0.10547733891512716 0.10316967835361111 C 0.10574263751961796 0.1026921133546419 0.10588731700235067 0.1015115317300433 0.10588731700235067 0.1015115317300433 C 0.10588731700235067 0.1015115317300433 0.10521204031063636 0.10364724335258033 0.10547733891512716 0.10316967835361111 C 0.10521204031063636 0.10364724335258033 0.10389421541496376 0.10431481504827654 0.1042955253754059 0.10437692172385861 C 0.10389421541496376 0.10431481504827654 0.10281959462851345 0.1023186823113046 0.10306947915247432 0.1027970383001187 C 0.10281959462851345 0.1023186823113046 0.10275067474483512 0.10129174370611656 0.10279621823164073 0.10150678579097401" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.33734345282867095,0.19076868460144308) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393595837247742 0.11460177227368223 C 0.1394381732916127 0.11469424586561401 0.14041859588990382 0.1159122647801922 0.1403026585268362 0.11571145537686352 C 0.14041859588990382 0.1159122647801922 0.14078817987781483 0.11711982092502345 0.1407508320815857 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1407508320815857 0.11701148511362652 C 0.140705553175624 0.11712299336891646 0.14007995411067095 0.11855039358043452 0.14020748521004534 0.11834958417710584 C 0.14007995411067095 0.11855039358043452 0.13913820669568036 0.11951049910160953 0.13922045888909304 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13922045888909304 0.11942119795357078 C 0.13920647949383008 0.11947336976695122 0.13900053433255716 0.1201376239456339 0.1390527061459376 0.12004725971413599 C 0.13900053433255716 0.1201376239456339 0.13850403289702995 0.12055774054492616 0.13859439712852786 0.12050556873154572 C 0.13850403289702995 0.12055774054492616 0.13786399174120179 0.12067332147470118 0.13796833536796266 0.12067332147470118 C 0.13786399174120179 0.12067332147470118 0.13725190937589957 0.12045339691816528 0.13734227360739748 0.12050556873154572 C 0.13725190937589957 0.12045339691816528 0.1368317927766073 0.11995689548263808 0.13688396458998775 0.12004725971413599 C 0.1368317927766073 0.11995689548263808 0.13670223245156934 0.11936902614019035 0.1367162118468323 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1367162118468323 0.11942119795357078 C 0.13663395965341962 0.11933189680553204 0.13560165442650568 0.11814877477377715 0.13572918552588006 0.11834958417710584 C 0.13560165442650568 0.11814877477377715 0.13514055974837788 0.11689997685833659 0.13518583865433959 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13518583865433959 0.11701148511362652 C 0.13522318645056872 0.11690314930222961 0.1357499495721568 0.11551064597353485 0.1356340122090892 0.11571145537686353 C 0.1357499495721568 0.11551064597353485 0.1366556765779896 0.11450929868175046 0.13657708701115112 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19317839744138737) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10558506757140906 0.10659432009687617 C 0.10552190079030783 0.10641872496595872 0.10499183865213865 0.10516802422566786 0.10520606688480168 0.10554074931137147 C 0.10499183865213865 0.10516802422566786 0.10432590875482727 0.10397975312233121 0.10429969817543087 0.1043579695826545 C 0.10432590875482727 0.10397975312233121 0.10560209910522175 0.10284164205035944 0.10536333036118004 0.10327145054943174 C 0.10560209910522175 0.10284164205035944 0.10573231063968118 0.10177911858822072 0.10573231063968118 0.10177911858822072 C 0.10573231063968118 0.10177911858822072 0.10512456161713832 0.10370125904850404 0.10536333036118004 0.10327145054943174 C 0.10512456161713832 0.10370125904850404 0.10393851921103295 0.10430207357463064 0.10429969817543087 0.1043579695826545 C 0.10393851921103295 0.10430207357463064 0.1029713605032277 0.1025055541113559 0.10319625657479246 0.10293607450128858 C 0.1029713605032277 0.1025055541113559 0.10290933260791721 0.10158130936668665 0.10295032174604224 0.10177484724305835" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.021814492892120386 0.019655031969990255 C 0.02189843635998038 0.019913383399076362 0.020972167044877248 0.021730741504815434 0.02119193389686825 0.021571071540598112 C 0.020972167044877248 0.021730741504815434 0.018957523816237377 0.02141140157638079 0.01917729066822838 0.021571071540598112 C 0.018957523816237377 0.02141140157638079 0.018638675140836235 0.019396680540904147 0.018554731672976242 0.019655031969990255 C 0.018638675140836235 0.019396680540904147 0.02045625905081033 0.01847085439156484 0.020184612282548316 0.01847085439156484 C 0.02045625905081033 0.01847085439156484 0.02189843635998038 0.019913383399076362 0.021814492892120386 0.019655031969990255 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027502747819324644 0.02603232541511103 C 0.027559906693821416 0.026208242342153215 0.02692919041676106 0.027445719736521604 0.0270788342929523 0.027336997096413098 C 0.02692919041676106 0.027445719736521604 0.025557377428838512 0.02722827445630459 0.02570702130502975 0.027336997096413098 C 0.025557377428838512 0.02722827445630459 0.025340266653154187 0.025856408488068847 0.025283107778657415 0.02603232541511103 C 0.025340266653154187 0.025856408488068847 0.026577897802379964 0.02522599397190689 0.02639292779899103 0.02522599397190689 C 0.026577897802379964 0.02522599397190689 0.027559906693821416 0.026208242342153215 0.027502747819324644 0.02603232541511103 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33644123761491723,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17148951458201336 0.18683582756590253 C 0.17157828965444405 0.18667004087198538 0.17271376113328235 0.18461702212978884 0.17255481545118173 0.18484638723889682 C 0.17271376113328235 0.18461702212978884 0.17346703337689084 0.1840198678414159 0.1733968627672209 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1733968627672209 0.18408344625660675 C 0.17340338934159888 0.18479366891109977 0.17334714445444638 0.19438600494226355 0.17347518165975653 0.1926061181105231 C 0.17334714445444638 0.19438600494226355 0.17172585252381106 0.2065117524147393 0.17186041630349919 0.20544208823749188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17186041630349919 0.20544208823749188 C 0.17175503872128872 0.20545109144255305 0.17039614509587317 0.2055671769226865 0.17059588531697345 0.20555012669822584 C 0.17039614509587317 0.2055671769226865 0.16936917101140608 0.2056547379504195 0.16946353365029587 0.20564669093101998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16946353365029587 0.20564669093101998 C 0.1695007977925261 0.20480270426315716 0.17007953510136858 0.1939512789695733 0.1699107033570588 0.1955188509166664 C 0.17007953510136858 0.1939512789695733 0.17162108218409292 0.1861122422866722 0.17148951458201336 0.18683582756590253" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33824566804242473,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17460184833852224 0.18699893819217947 C 0.17471364853983493 0.18770517936460462 0.1760961468742498 0.19703653758792297 0.1759434507542745 0.19547383226128143 C 0.1760961468742498 0.19703653758792297 0.17647509769688824 0.20660786626609423 0.17643420177822564 0.20575140211187787" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17643420177822564 0.20575140211187787 C 0.17633115308191838 0.2057381740079872 0.17499971559008112 0.20556796263653465 0.17519761742253848 0.2055926648651898 C 0.17499971559008112 0.20556796263653465 0.17396452665258724 0.2054435012432517 0.17405937978873734 0.20545497536801616" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17405937978873734 0.20545497536801616 C 0.1739804731185663 0.20444659390555034 0.17299405859473957 0.19157286547486627 0.1731124997466847 0.19335439781842634 C 0.17299405859473957 0.19157286547486627 0.1725985514836217 0.18330343636420116 0.17263808596539576 0.1840765872452954" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17263808596539576 0.1840765872452954 C 0.1727082565750657 0.18414080144463815 0.17364378014586207 0.18509068688298203 0.17348013328143486 0.18484715763740836 C 0.17364378014586207 0.18509068688298203 0.17469532459327952 0.1871782532384104 0.17460184833852224 0.18699893819217947" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19679189391400653 0.1789287945712962 C 0.1966804307832692 0.1789255958868412 0.19524420482150365 0.17888721167338117 0.19545433634515832 0.17889041035783618 C 0.19524420482150365 0.17888721167338117 0.194171647237233 0.17889041035783618 0.19427031563015035 0.17889041035783618" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19427031563015035 0.17889041035783618 C 0.19423517598261208 0.1779434615109362 0.19388123766923537 0.1657095169702654 0.19384863985969103 0.16752702419503648 C 0.19388123766923537 0.1657095169702654 0.19472922680176513 0.15620976528271197 0.1946614893446825 0.15708032366058308" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1946614893446825 0.15708032366058308 C 0.19473243411389168 0.15703901185340005 0.19565471611361102 0.1565842023407908 0.19551282657519264 0.15658458197438677 C 0.19565471611361102 0.1565842023407908 0.19643510857491212 0.15711670023101856 0.19636416380570293 0.1570757680574315" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19636416380570293 0.1570757680574315 C 0.1964339478193548 0.15792985341476978 0.1972372161452175 0.16914587788831298 0.19720157196952554 0.1673247923454909 C 0.1972372161452175 0.16914587788831298 0.19675775407604662 0.17989579475677997 0.19679189391400653 0.1789287945712962" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.2500879204430701 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.2500879204430701 0.2308044715076716 0.2669420916363424 0.23280529274848838 0.2647202078121963 C 0.2308044715076716 0.2669420916363424 0.21538989416043028 0.27417272973363077 0.2178778082444386 0.27417272973363077 C 0.21538989416043028 0.27417272973363077 0.200949502499572 0.2624983239880503 0.2029503237403888 0.2647202078121964 C 0.200949502499572 0.2624983239880503 0.19280156103266954 0.24493232724468494 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.24493232724468494 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g id="編節1">
<g transform="translate(0.33734345282867095,0.13820072278907372) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14087709006993027 0.11460177227368223 C 0.14104140133107057 0.11479511158224094 0.14309122142877786 0.11734168655393362 0.1428488252036139 0.11692184397638673 C 0.14309122142877786 0.11734168655393362 0.14386392973592155 0.11986638647323312 0.14378584477189787 0.11963988320424494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14378584477189787 0.11963988320424494 C 0.14369117782765947 0.11987301926531903 0.14238320559335665 0.12285735851468087 0.142649841441037 0.12243751593713396 C 0.14238320559335665 0.12285735851468087 0.14041424569629155 0.12486470065128054 0.1405862145997335 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405862145997335 0.12467799413480772 C 0.14055698715698203 0.1247870724361315 0.14012640698539208 0.12617586291058924 0.14023548528671587 0.12598693375069314 C 0.14012640698539208 0.12617586291058924 0.13908834582395194 0.12705422235488473 0.13927727498384804 0.12694514405356094 C 0.13908834582395194 0.12705422235488473 0.1377501787653151 0.12729587336657855 0.13796833536796266 0.12729587336657855 C 0.1377501787653151 0.12729587336657855 0.13647046659218112 0.12683606575223716 0.13665939575207722 0.12694514405356094 C 0.13647046659218112 0.12683606575223716 0.1355921071478856 0.12579800459079704 0.1357011854492094 0.12598693375069314 C 0.1355921071478856 0.12579800459079704 0.13532122869344038 0.12456891583348394 0.13535045613619184 0.12467799413480772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13535045613619184 0.12467799413480772 C 0.1351784872327499 0.1244912876183349 0.13302019344720797 0.12201767335958708 0.13328682929488833 0.12243751593713396 C 0.13302019344720797 0.12201767335958708 0.1320561590197891 0.11940674714317089 0.1321508259640275 0.11963988320424497" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1321508259640275 0.11963988320424497 C 0.13222891092805117 0.11941337993525679 0.13333024175747538 0.11650200139883984 0.1330878455323114 0.11692184397638673 C 0.13333024175747538 0.11650200139883984 0.13522389192713535 0.11440843296512353 0.13505958066599505 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14323883371963647) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1069461228785802 0.1092196716584617 C 0.10681405683110795 0.10885254586082962 0.10570582857755001 0.1062376413103488 0.1061537265937467 0.10701691687266922 C 0.10570582857755001 0.1062376413103488 0.10431353459171952 0.10375326162204923 0.10425873478140005 0.10454401828453919 C 0.10431353459171952 0.10375326162204923 0.10698173158483083 0.10137375409864323 0.10648252545566354 0.10227237689772953 C 0.10698173158483083 0.10137375409864323 0.10725397155640377 0.09915228149002142 0.10725397155640377 0.09915228149002142 C 0.10725397155640377 0.09915228149002142 0.10598331932649625 0.10317099969681583 0.10648252545566354 0.10227237689772953 C 0.10598331932649625 0.10317099969681583 0.10350359929045722 0.10442715361737563 0.10425873478140005 0.10454401828453919 C 0.10350359929045722 0.10442715361737563 0.10148151069275715 0.10067107770871982 0.10195171251000659 0.10157118889474819 C 0.10148151069275715 0.10067107770871982 0.10135182577255288 0.09873871154730576 0.1014375238779034 0.09914335116836896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.33734345282867095,0.1482769446501992) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1405862145997335 0.11460177227368223 C 0.14073409473475978 0.11477577765138507 0.14257893282269637 0.11706769512590848 0.1423607762200488 0.11668983680611628 C 0.14257893282269637 0.11706769512590848 0.1432743702991256 0.11933992505327808 0.14320409383150431 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14320409383150431 0.1191360721111887 C 0.14311889358168975 0.11934589456615538 0.14194171857081725 0.12203179989058098 0.14218169083372958 0.12165394157078878 C 0.14194171857081725 0.12203179989058098 0.14016965466345865 0.12383840781352068 0.14032442667655642 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14032442667655642 0.12367037194869515 C 0.14029812197808011 0.12376854241988655 0.1399105998236492 0.12501845384689853 0.1400087702948406 0.12484841760299202 C 0.1399105998236492 0.12501845384689853 0.13897634477835305 0.12580897734676447 0.13914638102225954 0.12571080687557307 C 0.13897634477835305 0.12580897734676447 0.13777199442557986 0.1260264632572889 0.13796833536796266 0.1260264632572889 C 0.13777199442557986 0.1260264632572889 0.1366202534697593 0.12561263640438167 0.1367902897136658 0.12571080687557307 C 0.1366202534697593 0.12561263640438167 0.13582972996989334 0.12467838135908553 0.13592790044108474 0.12484841760299202 C 0.13582972996989334 0.12467838135908553 0.1355859393608926 0.12357220147750375 0.13561224405936892 0.12367037194869515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13561224405936892 0.12367037194869515 C 0.13545747204627115 0.12350233608386962 0.13351500763928342 0.12127608325099658 0.13375497990219576 0.12165394157078878 C 0.13351500763928342 0.12127608325099658 0.13264737665460644 0.11892624965622203 0.132732576904421 0.1191360721111887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.132732576904421 0.1191360721111887 C 0.13280285337204228 0.11893221916909934 0.1337940511185241 0.11631197848632409 0.13357589451587654 0.11668983680611629 C 0.1337940511185241 0.11631197848632409 0.13549833627121813 0.1144277668959794 0.13535045613619184 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.15281124448770567) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10668523592828776 0.10871644452379725 C 0.10656637648556273 0.10838603130592839 0.10556897105736057 0.10603261721049564 0.1059720792719376 0.10673396521658403 C 0.10556897105736057 0.10603261721049564 0.10431590647011313 0.10379667549102603 0.10426658664082561 0.10450835648726699 C 0.10431590647011313 0.10379667549102603 0.10671728376391332 0.10165511871996066 0.10626799824766275 0.10246387923913833 C 0.10671728376391332 0.10165511871996066 0.10696229973832898 0.09965579337220103 0.10696229973832898 0.09965579337220103 C 0.10696229973832898 0.09965579337220103 0.10581871273141219 0.10327263975831599 0.10626799824766275 0.10246387923913833 C 0.10581871273141219 0.10327263975831599 0.10358696469897707 0.10440317828681978 0.10426658664082561 0.10450835648726699 C 0.10358696469897707 0.10440317828681978 0.10176708496104706 0.10102270996902957 0.10219026659657154 0.1018328100364551 C 0.10176708496104706 0.10102270996902957 0.10165036853286316 0.09928358042375693 0.10172749682767865 0.09964775608271381" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.33734345282867095,0.1573455443252121) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14032442667655642 0.11460177227368223 C 0.14045751879808008 0.11475837711361479 0.14211787307722298 0.11682110284068586 0.14192153213484018 0.11648103035287288 C 0.14211787307722298 0.11682110284068586 0.14274376680600934 0.11886610977531849 0.14268051798515016 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14268051798515016 0.11868264212743805 C 0.14260383776031704 0.11887148233690806 0.14154438025053176 0.12128879712889112 0.14176035528715286 0.12094872464107814 C 0.14154438025053176 0.12128879712889112 0.1399495227339091 0.12291474425953686 0.14008881754569708 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008881754569708 0.12276351198119388 C 0.14006514331706837 0.12285186540526614 0.13971637337808054 0.1239767856895769 0.1398047268021528 0.12382375307006106 C 0.13971637337808054 0.1239767856895769 0.138875543837314 0.12468825683945627 0.13902857645682987 0.124599903415384 C 0.138875543837314 0.12468825683945627 0.13779162851981813 0.12488399415892827 0.13796833536796266 0.12488399415892827 C 0.13779162851981813 0.12488399415892827 0.13675506165957962 0.12451154999131174 0.13690809427909548 0.124599903415384 C 0.13675506165957962 0.12451154999131174 0.13604359050970033 0.12367072045054522 0.1361319439337726 0.12382375307006106 C 0.13604359050970033 0.12367072045054522 0.13582417896159957 0.12267515855712162 0.13584785319022827 0.12276351198119388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13584785319022827 0.12276351198119388 C 0.13570855837844029 0.12261227970285091 0.13396034041215135 0.12060865215326516 0.13417631544877245 0.12094872464107814 C 0.13396034041215135 0.12060865215326516 0.1331794725259421 0.11849380191796804 0.13325615275077518 0.11868264212743805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13325615275077518 0.11868264212743805 C 0.13331940157163436 0.11849917447955761 0.13421147954346796 0.1161409578650599 0.13401513860108516 0.11648103035287288 C 0.13421147954346796 0.1161409578650599 0.13574533618089257 0.11444516743374968 0.13561224405936892 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.16142641417896791) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645043767302456 0.1082635401025993 C 0.10634346417457204 0.1079661682065173 0.10544579928919008 0.10584809552062784 0.10580859668230941 0.10647930872610738 C 0.10544579928919008 0.10584809552062784 0.1043180411606674 0.10383574797310519 0.10427365331430863 0.10447626086972205 C 0.1043180411606674 0.10383574797310519 0.10647928072508756 0.10190834687914632 0.10607492376046206 0.10263623134640622 C 0.10647928072508756 0.10190834687914632 0.10669979510206165 0.10010895406616264 0.10669979510206165 0.10010895406616264 C 0.10669979510206165 0.10010895406616264 0.10567056679583656 0.10336411581366611 0.10607492376046206 0.10263623134640622 C 0.10567056679583656 0.10336411581366611 0.10366199356664495 0.10438160048931956 0.10427365331430863 0.10447626086972205 C 0.10366199356664495 0.10438160048931956 0.10202410180250791 0.10133917900330836 0.10240496527447995 0.10206826906399133 C 0.10202410180250791 0.10133917900330836 0.10191905701714243 0.09977396241256296 0.10198847248247636 0.10010172050562416" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.33734345282867095,0.16550728403272374) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14008881754569708 0.11460177227368223 C 0.14020860045506836 0.11474271662962153 0.14170291930629692 0.11659916978398552 0.1415262124581524 0.11629310454495383 C 0.14170291930629692 0.11659916978398552 0.14226622366220465 0.11843967602515486 0.1422092997234314 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1422092997234314 0.11827455514206248 C 0.1421402875210816 0.11844451133058548 0.14118677576227487 0.12062009464337023 0.14138115329523385 0.12031402940433854 C 0.14118677576227487 0.12062009464337023 0.13975140399731442 0.1220834470609514 0.13987676932792362 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13987676932792362 0.12194733801044272 C 0.1398554625221578 0.12202685609210775 0.13954156957706876 0.12303928434798746 0.1396210876587338 0.1229015549904232 C 0.13954156957706876 0.12303928434798746 0.13878482299037886 0.12367960838287889 0.13892255234794312 0.12360009030121386 C 0.13878482299037886 0.12367960838287889 0.13780929920463258 0.12385577197040366 0.13796833536796266 0.12385577197040366 C 0.13780929920463258 0.12385577197040366 0.13687638903041796 0.12352057221954882 0.13701411838798222 0.12360009030121386 C 0.13687638903041796 0.12352057221954882 0.13623606499552654 0.12276382563285894 0.13631558307719158 0.1229015549904232 C 0.13623606499552654 0.12276382563285894 0.13603859460223597 0.12186781992877768 0.13605990140800178 0.12194733801044272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13605990140800178 0.12194733801044272 C 0.1359345360773926 0.12181122895993404 0.1343611399077325 0.12000796416530685 0.13455551744069147 0.12031402940433854 C 0.1343611399077325 0.12000796416530685 0.13365835881014415 0.11810459895353947 0.13372737101249393 0.11827455514206248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13372737101249393 0.11827455514206248 C 0.13378429495126717 0.1181094342589701 0.13458716512591745 0.11598703930592213 0.13441045827777293 0.11629310454495383 C 0.13458716512591745 0.11598703930592213 0.13596763609959955 0.11446082791774294 0.13584785319022827 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.169180066901104) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10623911924328767 0.10785592612352109 C 0.1061428430946804 0.1075882914170473 0.10533494469783665 0.1056820259997468 0.10566146235164404 0.10625011788467838 C 0.10533494469783665 0.1056820259997468 0.10431996238216623 0.1038709132069764 0.10428001332044333 0.10444737481393157 C 0.10431996238216623 0.1038709132069764 0.1062650779901444 0.10213625222241343 0.10590115672198144 0.10279134824294735 C 0.1062650779901444 0.10213625222241343 0.10646354092942105 0.10051679869072812 0.10646354092942105 0.10051679869072812 C 0.10646354092942105 0.10051679869072812 0.10553723545381849 0.10344644426348126 0.10590115672198144 0.10279134824294735 C 0.10553723545381849 0.10344644426348126 0.10372951954754601 0.10436218047156934 0.10428001332044333 0.10444737481393157 C 0.10372951954754601 0.10436218047156934 0.10225541695982271 0.10162400113415924 0.10259819408459754 0.10228018218877392 C 0.10225541695982271 0.10162400113415924 0.10216087665299375 0.1002153062024884 0.1022233505717943 0.10051028848624348" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.33734345282867095,0.17285284976948423) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13987676932792362 0.11460177227368223 C 0.13998457394635777 0.1147286221940276 0.1413294609124635 0.11639943003295518 0.14117042474913344 0.11612397131782666 C 0.1413294609124635 0.11639943003295518 0.14183643483278044 0.1180558856500076 0.14178520328788452 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14178520328788452 0.11790727685522445 C 0.1417230923057697 0.11806023742489516 0.14086493172284364 0.12001826240640144 0.14103987150250674 0.11974280369127292 C 0.14086493172284364 0.12001826240640144 0.13957309713437924 0.12133527958222447 0.1396859259319275 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1396859259319275 0.12121278143676666 C 0.13966674980673827 0.1212843477102652 0.13938424615615813 0.12219553314055692 0.13945581242965666 0.12207157671874909 C 0.13938424615615813 0.12219553314055692 0.13870317422813722 0.12277182477195922 0.13882713064994506 0.12270025849846068 C 0.13870317422813722 0.12277182477195922 0.13782520282096558 0.1229303720007315 0.13796833536796266 0.1229303720007315 C 0.13782520282096558 0.1229303720007315 0.13698558366417246 0.12262869222496214 0.13710954008598028 0.12270025849846068 C 0.13698558366417246 0.12262869222496214 0.13640929203277014 0.12194762029694126 0.13648085830626866 0.12207157671874909 C 0.13640929203277014 0.12194762029694126 0.13623156867880862 0.12114121516326812 0.13625074480399785 0.12121278143676666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13625074480399785 0.12121278143676666 C 0.1361379160064496 0.12109028329130885 0.13472185945375548 0.1194673449761444 0.13489679923341857 0.11974280369127292 C 0.13472185945375548 0.1194673449761444 0.13408935646592596 0.11775431628555375 0.13415146744804077 0.11790727685522445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13415146744804077 0.11790727685522445 C 0.1342026989929367 0.1177586680604413 0.13492528215012195 0.11584851260269814 0.13476624598679188 0.11612397131782666 C 0.13492528215012195 0.11584851260269814 0.13616770602643594 0.11447492235333687 0.13605990140800178 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.17615835435102645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10604893265652446 0.10748907354235071 C 0.10596228412277792 0.1072482023065243 0.10523517556561858 0.10553256343095387 0.10552904145404522 0.10604384612739229 C 0.10523517556561858 0.10553256343095387 0.10432169148151518 0.10390256191746049 0.10428573732596458 0.10442137736372015 C 0.10432169148151518 0.10390256191746049 0.10607229552869551 0.10234136703135382 0.10574476638734885 0.10293095344983434 C 0.10607229552869551 0.10234136703135382 0.10625091217404452 0.10088385885283704 0.10625091217404452 0.10088385885283704 C 0.10625091217404452 0.10088385885283704 0.10541723724600219 0.10352053986831486 0.10574476638734885 0.10293095344983434 C 0.10541723724600219 0.10352053986831486 0.10379029293035699 0.10434470245559413 0.10428573732596458 0.10442137736372015 C 0.10379029293035699 0.10434470245559413 0.10246360060140602 0.10188034105192505 0.10277210001370338 0.10247090400107826 C 0.10246360060140602 0.10188034105192505 0.10237851432525995 0.10061251561342129 0.10243474085218043 0.10087799966880086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.33734345282867095,0.17946385893256867) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1396859259319275 0.11460177227368223 C 0.13978295008851824 0.11471593720199307 0.14099334835801344 0.11621966425702789 0.14085021581101637 0.11597175141341222 C 0.14099334835801344 0.11621966425702789 0.14144962488629872 0.11771047431237507 0.1414035164958924 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414035164958924 0.11757672639707023 C 0.14134761661198905 0.11771439090977387 0.14057527208735562 0.11947661339312951 0.1407327178890524 0.11922870054951384 C 0.14057527208735562 0.11947661339312951 0.13941262095773754 0.12066192885137025 0.139514166875531 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.139514166875531 0.12055168052045823 C 0.1394969083628607 0.1206160901666069 0.1392426550773386 0.12143615705386945 0.13930706472348728 0.1213245962742424 C 0.1392426550773386 0.12143615705386945 0.13862969034211983 0.12195481952213148 0.13874125112174687 0.1218904098759828 C 0.13862969034211983 0.12195481952213148 0.1378395160756653 0.12209751202802659 0.13796833536796266 0.12209751202802659 C 0.1378395160756653 0.12209751202802659 0.13708385883455143 0.12182600022983413 0.13719541961417847 0.1218904098759828 C 0.13708385883455143 0.12182600022983413 0.13656519636628942 0.12121303549461535 0.1366296060124381 0.1213245962742424 C 0.13656519636628942 0.12121303549461535 0.13640524534772402 0.12048727087430955 0.13642250386039434 0.12055168052045823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13642250386039434 0.12055168052045823 C 0.1363209579426009 0.1204414321895462 0.13504650704517626 0.11898078770589818 0.13520395284687303 0.11922870054951384 C 0.13504650704517626 0.11898078770589818 0.13447725435612962 0.11743906188436659 0.13453315424003295 0.11757672639707023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13453315424003295 0.11757672639707023 C 0.1345792626304393 0.1174429784817654 0.13522958747190603 0.11572383856979657 0.13508645492490895 0.11597175141341223 C 0.13522958747190603 0.11572383856979657 0.1363477689605886 0.1144876073453714 0.13625074480399785 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18243881305595666) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10587776472843759 0.10715890621929738 C 0.1057997810480657 0.10694212210705362 0.10514538334662228 0.10539804711904018 0.10540986264620626 0.10585820154583477 C 0.10514538334662228 0.10539804711904018 0.10432324767092925 0.10393104575689618 0.1042908889309337 0.10439797965852987 C 0.10432324767092925 0.10393104575689618 0.10589879131339153 0.10252597035940017 0.10560401508617955 0.10305659813603263 C 0.10589879131339153 0.10252597035940017 0.10605954629420564 0.10121421299873508 0.10605954629420564 0.10121421299873508 C 0.10605954629420564 0.10121421299873508 0.10530923885896756 0.10358722591266509 0.10560401508617955 0.10305659813603263 C 0.10530923885896756 0.10358722591266509 0.10384498897488688 0.10432897224121647 0.1042908889309337 0.10439797965852987 C 0.10384498897488688 0.10432897224121647 0.10265096587883098 0.10211104697791429 0.1029286153498986 0.10264255363215219 C 0.10265096587883098 0.10211104697791429 0.10257438823029953 0.1009700040832609 0.10262499210452797 0.10120893973310251" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.33734345282867095,0.18541376717934466) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139514166875531 0.11460177227368223 C 0.13960148861646268 0.11470452070916198 0.14069084705900842 0.11605787505869332 0.14056202776671106 0.11583475349943922 C 0.14069084705900842 0.11605787505869332 0.1411014959344651 0.11739960410850578 0.1410599983830994 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1410599983830994 0.11727923098473143 C 0.1410096884875864 0.1174031290461647 0.14031457841541628 0.11898912928118477 0.14045627963694338 0.11876600772193067 C 0.14031457841541628 0.11898912928118477 0.1392681923987601 0.12005591319360148 0.1393595837247742 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1393595837247742 0.11995668969578065 C 0.13934405106337092 0.12001465837731445 0.13911522310640095 0.12075271857585074 0.13917319178793477 0.12065231387418639 C 0.13911522310640095 0.12075271857585074 0.1385635548447041 0.12121951479728658 0.13866395954636843 0.12116154611575278 C 0.1385635548447041 0.12121951479728658 0.13785239800489502 0.12134793805259214 0.13796833536796266 0.12134793805259214 C 0.13785239800489502 0.12134793805259214 0.13717230648789255 0.12110357743421897 0.1372727111895569 0.12116154611575278 C 0.13717230648789255 0.12110357743421897 0.13670551026645672 0.12055190917252204 0.13676347894799054 0.12065231387418639 C 0.13670551026645672 0.12055190917252204 0.13656155434974784 0.11989872101424684 0.13657708701115112 0.11995668969578065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13657708701115112 0.11995668969578065 C 0.13648569568513702 0.11985746619795981 0.13533868987745487 0.11854288616267658 0.13548039109898197 0.11876600772193067 C 0.13533868987745487 0.11854288616267658 0.13482636245731297 0.11715533292329816 0.13487667235282597 0.11727923098473143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13487667235282597 0.11727923098473143 C 0.13491816990419167 0.11715885786095709 0.1355034622615117 0.11561163194018514 0.13537464296921434 0.11583475349943924 C 0.1355034622615117 0.11561163194018514 0.13650982560132602 0.11449902383820248 0.13642250386039434 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.18809122589039384) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10572371359315942 0.10686175562854937 C 0.10565352828082472 0.10666664992752999 0.10506457034952563 0.10527698243831791 0.10530260171915122 0.10569112142243305 C 0.10506457034952563 0.10527698243831791 0.10432464824140189 0.10395668121238828 0.1042955253754059 0.10437692172385861 C 0.10432464824140189 0.10395668121238828 0.10574263751961796 0.1026921133546419 0.10547733891512716 0.10316967835361111 C 0.10574263751961796 0.1026921133546419 0.10588731700235067 0.1015115317300433 0.10588731700235067 0.1015115317300433 C 0.10588731700235067 0.1015115317300433 0.10521204031063636 0.10364724335258033 0.10547733891512716 0.10316967835361111 C 0.10521204031063636 0.10364724335258033 0.10389421541496376 0.10431481504827654 0.1042955253754059 0.10437692172385861 C 0.10389421541496376 0.10431481504827654 0.10281959462851345 0.1023186823113046 0.10306947915247432 0.1027970383001187 C 0.10281959462851345 0.1023186823113046 0.10275067474483512 0.10129174370611656 0.10279621823164073 0.10150678579097401" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.33734345282867095,0.19076868460144308) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393595837247742 0.11460177227368223 C 0.1394381732916127 0.11469424586561401 0.14041859588990382 0.1159122647801922 0.1403026585268362 0.11571145537686352 C 0.14041859588990382 0.1159122647801922 0.14078817987781483 0.11711982092502345 0.1407508320815857 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1407508320815857 0.11701148511362652 C 0.140705553175624 0.11712299336891646 0.14007995411067095 0.11855039358043452 0.14020748521004534 0.11834958417710584 C 0.14007995411067095 0.11855039358043452 0.13913820669568036 0.11951049910160953 0.13922045888909304 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13922045888909304 0.11942119795357078 C 0.13920647949383008 0.11947336976695122 0.13900053433255716 0.1201376239456339 0.1390527061459376 0.12004725971413599 C 0.13900053433255716 0.1201376239456339 0.13850403289702995 0.12055774054492616 0.13859439712852786 0.12050556873154572 C 0.13850403289702995 0.12055774054492616 0.13786399174120179 0.12067332147470118 0.13796833536796266 0.12067332147470118 C 0.13786399174120179 0.12067332147470118 0.13725190937589957 0.12045339691816528 0.13734227360739748 0.12050556873154572 C 0.13725190937589957 0.12045339691816528 0.1368317927766073 0.11995689548263808 0.13688396458998775 0.12004725971413599 C 0.1368317927766073 0.11995689548263808 0.13670223245156934 0.11936902614019035 0.1367162118468323 0.11942119795357078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1367162118468323 0.11942119795357078 C 0.13663395965341962 0.11933189680553204 0.13560165442650568 0.11814877477377715 0.13572918552588006 0.11834958417710584 C 0.13560165442650568 0.11814877477377715 0.13514055974837788 0.11689997685833659 0.13518583865433959 0.11701148511362652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13518583865433959 0.11701148511362652 C 0.13522318645056872 0.11690314930222961 0.1357499495721568 0.11551064597353485 0.1356340122090892 0.11571145537686353 C 0.1357499495721568 0.11551064597353485 0.1366556765779896 0.11450929868175046 0.13657708701115112 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19317839744138737) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10558506757140906 0.10659432009687617 C 0.10552190079030783 0.10641872496595872 0.10499183865213865 0.10516802422566786 0.10520606688480168 0.10554074931137147 C 0.10499183865213865 0.10516802422566786 0.10432590875482727 0.10397975312233121 0.10429969817543087 0.1043579695826545 C 0.10432590875482727 0.10397975312233121 0.10560209910522175 0.10284164205035944 0.10536333036118004 0.10327145054943174 C 0.10560209910522175 0.10284164205035944 0.10573231063968118 0.10177911858822072 0.10573231063968118 0.10177911858822072 C 0.10573231063968118 0.10177911858822072 0.10512456161713832 0.10370125904850404 0.10536333036118004 0.10327145054943174 C 0.10512456161713832 0.10370125904850404 0.10393851921103295 0.10430207357463064 0.10429969817543087 0.1043579695826545 C 0.10393851921103295 0.10430207357463064 0.1029713605032277 0.1025055541113559 0.10319625657479246 0.10293607450128858 C 0.1029713605032277 0.1025055541113559 0.10290933260791721 0.10158130936668665 0.10295032174604224 0.10177484724305835" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.021814492892120386 0.019655031969990255 C 0.02189843635998038 0.019913383399076362 0.020972167044877248 0.021730741504815434 0.02119193389686825 0.021571071540598112 C 0.020972167044877248 0.021730741504815434 0.018957523816237377 0.02141140157638079 0.01917729066822838 0.021571071540598112 C 0.018957523816237377 0.02141140157638079 0.018638675140836235 0.019396680540904147 0.018554731672976242 0.019655031969990255 C 0.018638675140836235 0.019396680540904147 0.02045625905081033 0.01847085439156484 0.020184612282548316 0.01847085439156484 C 0.02045625905081033 0.01847085439156484 0.02189843635998038 0.019913383399076362 0.021814492892120386 0.019655031969990255 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027502747819324644 0.02603232541511103 C 0.027559906693821416 0.026208242342153215 0.02692919041676106 0.027445719736521604 0.0270788342929523 0.027336997096413098 C 0.02692919041676106 0.027445719736521604 0.025557377428838512 0.02722827445630459 0.02570702130502975 0.027336997096413098 C 0.025557377428838512 0.02722827445630459 0.025340266653154187 0.025856408488068847 0.025283107778657415 0.02603232541511103 C 0.025340266653154187 0.025856408488068847 0.026577897802379964 0.02522599397190689 0.02639292779899103 0.02522599397190689 C 0.026577897802379964 0.02522599397190689 0.027559906693821416 0.026208242342153215 0.027502747819324644 0.02603232541511103 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3363064238473449,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17108120221763634 0.18910718688273231 C 0.17119824224198674 0.18875212024574603 0.17268337840737522 0.1844277421867197 0.172485682509841 0.18484638723889682 C 0.17268337840737522 0.1844277421867197 0.17353420886123075 0.1840198678414159 0.17345355298804693 0.18408344625660675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17345355298804693 0.18408344625660675 C 0.17338908439743922 0.18494240773825746 0.17265686524412388 0.19555666961253815 0.1726799299007542 0.19439098403641517 C 0.17265686524412388 0.19555666961253815 0.17321818104246034 0.19837839726455495 0.17317677710848295 0.19807167317008265" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17317677710848295 0.19807167317008265 C 0.1731283046199949 0.1983947310310233 0.17258992565354495 0.2029594683807321 0.17259510724662647 0.20194836750137066 C 0.17258992565354495 0.2029594683807321 0.17315788888691114 0.21089292674084054 0.17311459799150464 0.21020488372241977" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17311459799150464 0.21020488372241977 C 0.17294659640455443 0.20951990542906476 0.17092436033625308 0.2009335172270688 0.171098578948102 0.2019851442021596 C 0.17092436033625308 0.2009335172270688 0.17101775762441904 0.19721871133959418 0.17102397464931773 0.19758536002132998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17102397464931773 0.19758536002132998 C 0.17085682896086557 0.197221596992395 0.16902299535191834 0.19251368924589365 0.1690182263878918 0.19322020367411014 C 0.16902299535191834 0.19251368924589365 0.17125311687011505 0.18876443548345084 0.17108120221763634 0.18910718688273231" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33838048180999714,0.19588518190454113) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17475608570755122 0.18848903508892736 C 0.17486159948548316 0.188825572465376 0.17596858708122212 0.19329449737967977 0.17602225104273456 0.19252748360631103 C 0.17596858708122212 0.19329449737967977 0.17395294042995757 0.19812367676627235 0.17411211816940195 0.19769320036935226" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17411211816940195 0.19769320036935226 C 0.17402982003169173 0.19799507822750212 0.17303667646173712 0.2023445465829749 0.17312454051687948 0.20131573466715066 C 0.17303667646173712 0.2023445465829749 0.17305218359026142 0.21076587741691757 0.1730577495076936 0.2100389433592432" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1730577495076936 0.2100389433592432 C 0.17293912230697228 0.20930025266393903 0.17154029700159973 0.20017375615028096 0.1716342230990379 0.2011746550155931 C 0.17154029700159973 0.20017375615028096 0.1719553374417186 0.1977659488054896 0.17193063633843547 0.19802815697549755" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17193063633843547 0.19802815697549755 C 0.17192455286996114 0.1973588388053451 0.17191594035974234 0.18883188399990689 0.17185763471674362 0.18999633893366824 C 0.17191594035974234 0.18883188399990689 0.17269469316589317 0.18355956100675236 0.17263030405442012 0.18405469777036126" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17263030405442012 0.18405469777036126 C 0.17270632844790068 0.1841237475810282 0.173719745247281 0.18525282360824488 0.17354259677618675 0.18488329549836438 C 0.173719745247281 0.18525282360824488 0.17485720978516492 0.18878951338814096 0.17475608570755122 0.18848903508892736" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.19558811028133163) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19603101345690324 0.18641808138092075 C 0.19617582460462746 0.18546022416342228 0.19761791067558848 0.17342937340497003 0.197768747229594 0.17492379477093928 C 0.19761791067558848 0.17342937340497003 0.19392532710710708 0.1679484608408188 0.19422097480883685 0.1684850249892896" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19422097480883685 0.1684850249892896 C 0.19414867578816192 0.16808988180084294 0.19338050072636487 0.16278314970755636 0.19335338656073756 0.16374330672792978 C 0.19338050072636487 0.16278314970755636 0.19464575798266695 0.15639812691288169 0.19454634479636468 0.15696314074480847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19454634479636468 0.15696314074480847 C 0.19462688494460034 0.15693159418060665 0.19567390687166397 0.15658607598905824 0.19551282657519264 0.15658458197438677 C 0.19567390687166397 0.15658607598905824 0.19655984850225636 0.15701410949973948 0.1964793083540207 0.1569810689208662" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1964793083540207 0.1569810689208662 C 0.19647060600574384 0.15750620452466144 0.19645765144984273 0.16412044889971203 0.19637488017469834 0.16328269616640922 C 0.19645765144984273 0.16412044889971203 0.19756403727917446 0.1673467188500075 0.19747256365575322 0.16703410172049993" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19747256365575322 0.16703410172049993 C 0.19761065756612195 0.16769157614136987 0.19900956139694043 0.1765391264093077 0.19912969058017793 0.17492379477093928 C 0.19900956139694043 0.1765391264093077 0.195772790363297 0.18737593859841922 0.19603101345690324 0.18641808138092075" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 37 KiB

View File

@@ -0,0 +1,171 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g id="編節1">
<g transform="translate(0.3213105737601799,0.13389549078914734) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14065887184510625 0.11460177227368223 C 0.1408108562807152 0.11478060703819197 0.14270689644550907 0.11713613493763485 0.14248268507241377 0.116747789447799 C 0.14270689644550907 0.11713613493763485 0.1434216352597362 0.1194714288770386 0.14334940832224985 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224985 0.11926191815171247 C 0.14326184340435533 0.11947756406920186 0.1420519967971106 0.12223801465142105 0.14229862930751544 0.12184966916158521 C 0.1420519967971106 0.12223801465142105 0.14023075060488152 0.12409476360208903 0.14038981819739182 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739182 0.12392206402974258 C 0.14036278343203218 0.12402295914763548 0.1399645058951833 0.12530756091488346 0.14006540101307619 0.12513280544445732 C 0.1399645058951833 0.12530756091488346 0.13900432131225107 0.12612002479274906 0.1391790767826772 0.12601912967485618 C 0.13900432131225107 0.12612002479274906 0.13776654513217684 0.12634354685917182 0.1379683353679626 0.12634354685917182 C 0.13776654513217684 0.12634354685917182 0.1365828384828218 0.1259182345569633 0.13675759395324794 0.12601912967485618 C 0.1365828384828218 0.1259182345569633 0.13577037460495617 0.12495804997403119 0.13587126972284905 0.12513280544445732 C 0.13577037460495617 0.12495804997403119 0.13551981777317365 0.12382116891184969 0.1355468525385333 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1355468525385333 0.12392206402974258 C 0.135387784946023 0.12374936445739614 0.13339140891800488 0.12146132367174936 0.1336380414284097 0.12184966916158521 C 0.13339140891800488 0.12146132367174936 0.13249969749578078 0.11904627223422304 0.1325872624136753 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136753 0.11926191815171244 C 0.13265948935116165 0.11905240742638633 0.13367819703660672 0.11635944395796315 0.1334539856635114 0.116747789447799 C 0.13367819703660672 0.11635944395796315 0.1354297833264279 0.1144229375091725 0.13527779889081895 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017985,0.13855563666717757) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10701944173009977 0.0995217617126694 C 0.10694017279817102 0.09989604478983355 0.1061089014188307 0.10260004395381073 0.1065438281385273 0.10176746017565433 C 0.1061089014188307 0.10260004395381073 0.10371139708039742 0.1046253617229477 0.10440988141192016 0.10451726438160774 C 0.10371139708039742 0.1046253617229477 0.10189116705562863 0.10158483717192755 0.10235292214939083 0.1024160442236941 C 0.10189116705562863 0.10158483717192755 0.10163935084934693 0.09953002207100842 0.10163935084934693 0.09953002207100842 C 0.10163935084934693 0.09953002207100842 0.10281467724315303 0.10324725127546065 0.10235292214939083 0.1024160442236941 C 0.10281467724315303 0.10324725127546065 0.10446057007552778 0.1052486975421745 0.10440988141192016 0.10451726438160774 C 0.10446057007552778 0.1052486975421745 0.10224275795480607 0.10752545657323248 0.10265705413103651 0.10680464318709461 C 0.10224275795480607 0.10752545657323248 0.10180194605845436 0.10918172828365838 0.10192410435453753 0.10884214469843498" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.32131057376017985,0.14321578254520767) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739182 0.11460177227368223 C 0.1405266041894399 0.114762723561741 0.1422330403377545 0.11688269867123963 0.1420312501019687 0.11653318773038736 C 0.1422330403377545 0.11688269867123963 0.14287630527055883 0.11898446321670295 0.14281130102682113 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14281130102682113 0.11879590356390944 C 0.14273249260071605 0.1189899848896499 0.1416436306541958 0.1214743904136472 0.14186559991356015 0.12112487947279495 C 0.1416436306541958 0.1214743904136472 0.14000450908118964 0.12314546446924837 0.1401476699144489 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401476699144489 0.12299003485413657 C 0.14012333862562523 0.12308084046024016 0.13976488884246124 0.12423698205076321 0.13985569444856483 0.12407970212737969 C 0.13976488884246124 0.12423698205076321 0.13890072271782228 0.12496819954084241 0.1390580026412058 0.1248773939347388 C 0.13890072271782228 0.12496819954084241 0.1377867241557554 0.12516936940062295 0.1379683353679626 0.12516936940062295 C 0.1377867241557554 0.12516936940062295 0.1367213881713359 0.12478658832863519 0.1368786680947194 0.1248773939347388 C 0.1367213881713359 0.12478658832863519 0.1359901706812567 0.12392242220399617 0.13608097628736032 0.12407970212737969 C 0.1359901706812567 0.12392242220399617 0.13576466953265254 0.12289922924803297 0.1357890008214762 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214762 0.12299003485413657 C 0.13564583998821694 0.12283460523902476 0.13384910156300078 0.12077536853194269 0.1340710708223651 0.12112487947279495 C 0.13384910156300078 0.12077536853194269 0.13304656128299908 0.11860182223816898 0.13312536970910416 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910416 0.11879590356390944 C 0.13319037395284186 0.11860734391111594 0.13410721086974223 0.11618367678953505 0.13390542063395647 0.11653318773038732 C 0.13410721086974223 0.11618367678953505 0.13568363853058135 0.11444082098562347 0.1355468525385333 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601798,0.1474099138354349) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675122289465533 0.09998832557258422 C 0.10667988085591945 0.10032518034203194 0.10593173661451313 0.10275877958961131 0.10632317066224006 0.10200945418927057 C 0.10593173661451313 0.10275877958961131 0.10377398270992325 0.10458156558183468 0.10440261860829371 0.1044842779746287 C 0.10377398270992325 0.10458156558183468 0.10213577568763135 0.10184509348591653 0.10255135527201732 0.10259317983250642 C 0.10213577568763135 0.10184509348591653 0.1019091411019779 0.09999575989508931 0.1019091411019779 0.09999575989508931 C 0.1019091411019779 0.09999575989508931 0.10296693485640329 0.10334126617909631 0.10255135527201732 0.10259317983250642 C 0.10296693485640329 0.10334126617909631 0.10444823840554056 0.10514256781913878 0.10440261860829371 0.1044842779746287 C 0.10444823840554056 0.10514256781913878 0.10245220749689103 0.10719165094709095 0.10282507405549843 0.10654291889956687 C 0.10245220749689103 0.10719165094709095 0.10205547679017447 0.10868229548647426 0.10216541925664932 0.10837667025977321" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3213105737601798,0.151604045125662) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1401476699144489 0.11460177227368223 C 0.14027077730729218 0.11474662843293512 0.1418065698407752 0.11665460603148387 0.141624958628568 0.11634004618471683 C 0.1418065698407752 0.11665460603148387 0.14238550828029914 0.11854619412240089 0.1423270044609352 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1423270044609352 0.11837649043488672 C 0.14225607687744066 0.11855116362805314 0.14127610112557248 0.12078712859965067 0.1414758734590004 0.12047256875288363 C 0.14127610112557248 0.12078712859965067 0.139800891709867 0.12229109524969174 0.13992973645980034 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980034 0.12215120859609112 C 0.13990783829985903 0.12223293364158436 0.1395852334950113 0.12327346107305513 0.13966695854050457 0.12313190914200996 C 0.1395852334950113 0.12327346107305513 0.13880748398283627 0.12393155681412645 0.13894903591388144 0.1238498317686332 C 0.13880748398283627 0.12393155681412645 0.13780488527697612 0.12411260968792882 0.1379683353679626 0.12411260968792882 C 0.13780488527697612 0.12411260968792882 0.13684608289099856 0.12376810672313997 0.13698763482204374 0.1238498317686332 C 0.13684608289099856 0.12376810672313997 0.13618798714992733 0.12299035721096478 0.13626971219542056 0.12313190914200996 C 0.13618798714992733 0.12299035721096478 0.13598503611618362 0.12206948355059788 0.13600693427612492 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612492 0.12215120859609112 C 0.13587808952619157 0.1220113219424905 0.13426102494349687 0.1201580089061166 0.1344607972769248 0.12047256875288363 C 0.13426102494349687 0.1201580089061166 0.1335387386914952 0.11820181724172031 0.1336096662749898 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1336096662749898 0.11837649043488672 C 0.13366817009435375 0.11820678674737256 0.13449332331956432 0.11602548633794979 0.13431171210735712 0.11634004618471683 C 0.13449332331956432 0.11602548633794979 0.13591210821431948 0.11445691611442935 0.1357890008214762 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017974,0.1553787632868665) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650982594275545 0.10040823304650746 C 0.10644561810789314 0.10071140233901044 0.1057722882906274 0.102901641661832 0.10612457893358165 0.10222724880152531 C 0.1057722882906274 0.102901641661832 0.1038303097764965 0.10454214905483297 0.10439608208502991 0.1044545902083476 C 0.1038303097764965 0.10454214905483297 0.10235592345643378 0.10207932416850657 0.10272994508238116 0.10275260188043749 C 0.10235592345643378 0.10207932416850657 0.10215195232934561 0.10041492393676214 0.10215195232934561 0.10041492393676214 C 0.10215195232934561 0.10041492393676214 0.10310396670832854 0.1034258795923684 0.10272994508238116 0.10275260188043749 C 0.10310396670832854 0.1034258795923684 0.10443713990255209 0.10504705106840669 0.10439608208502991 0.1044545902083476 C 0.10443713990255209 0.10504705106840669 0.10264071208476754 0.10689122588356362 0.10297629198751419 0.10630736704079195 C 0.10264071208476754 0.10689122588356362 0.1022836544487226 0.10823280596900858 0.10238260266854997 0.10795774326497763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.32131057376017974,0.1591534814480709) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980034 0.11460177227368223 C 0.14004053311335926 0.11473214281700983 0.1414227463934939 0.11644932265570374 0.14125929630250741 0.1161662187936134 C 0.1414227463934939 0.11644932265570374 0.14194379098906557 0.11815175193752903 0.141891137551638 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.141891137551638 0.11799901861876629 C 0.14182730272649288 0.11815622449261605 0.14094532454981146 0.12016859296705384 0.14112511964989657 0.11988548910496352 C 0.14094532454981146 0.12016859296705384 0.1396176360756765 0.1215221629520908 0.13973359635061652 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061652 0.12139626496385024 C 0.13971388800666934 0.12146981750479416 0.13942354368230642 0.1224062921931179 0.13949709622325032 0.12227889545517724 C 0.13942354368230642 0.1224062921931179 0.138723569121349 0.12299857836008199 0.13885096585928966 0.12292502581913807 C 0.138723569121349 0.12299857836008199 0.13782123028607476 0.1231615259465042 0.1379683353679626 0.1231615259465042 C 0.13782123028607476 0.1231615259465042 0.136958308138695 0.12285147327819415 0.13708570487663566 0.12292502581913807 C 0.136958308138695 0.12285147327819415 0.1363660219717308 0.12215149871723659 0.13643957451267472 0.12227889545517724 C 0.1363660219717308 0.12215149871723659 0.13618336604136147 0.12132271242290632 0.13620307438530865 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530865 0.12139626496385024 C 0.13608711411036864 0.12127036697560968 0.1346317559859435 0.1196023852428732 0.13481155108602863 0.11988548910496352 C 0.1346317559859435 0.1196023852428732 0.13398169835914203 0.11784181274491652 0.13404553318428716 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428716 0.11799901861876629 C 0.13409818662171472 0.11784628530000354 0.13484082452440416 0.11588311493152306 0.13467737443341768 0.1161662187936134 C 0.13484082452440416 0.11588311493152306 0.13611773092968385 0.11447140173035464 0.13600693427612492 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601797,0.16255072779315494) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629256868604538 0.10078614977303844 C 0.10623478163466932 0.10105900213629111 0.10562878479913024 0.1030302175268305 0.10594584637778905 0.10242326395255448 C 0.10562878479913024 0.1030302175268305 0.10388100413641245 0.10450667418053142 0.10439019921409252 0.10442787121869458 C 0.10388100413641245 0.10450667418053142 0.10255405644835593 0.10229013178283765 0.10289067591170857 0.10289608172357546 C 0.10255405644835593 0.10229013178283765 0.10237048243397663 0.10079217157426766 0.10237048243397663 0.10079217157426766 C 0.10237048243397663 0.10079217157426766 0.10322729537506121 0.10350203166431328 0.10289067591170857 0.10289608172357546 C 0.10322729537506121 0.10350203166431328 0.10442715124986249 0.10496108599274775 0.10439019921409252 0.10442787121869458 C 0.10442715124986249 0.10496108599274775 0.10281036621385636 0.10662084332638898 0.10311238812632836 0.10609537036789447 C 0.10281036621385636 0.10662084332638898 0.10248901434141588 0.10782826540328949 0.10257806773926052 0.10758070896966163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3213105737601797,0.16594797413823892) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061652 0.11460177227368223 C 0.13983331333881957 0.11471910576267708 0.1410773052909409 0.11626456761750158 0.14093020020905306 0.11600977414162027 C 0.1410773052909409 0.11626456761750158 0.1415462454269553 0.11779675397114435 0.1414988573332705 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414988573332705 0.11765929398425788 C 0.1414414059906399 0.11780077927072267 0.1406476256316266 0.11961191089771672 0.14080944122170322 0.11935711742183543 C 0.1406476256316266 0.11961191089771672 0.13945270600490514 0.12083012388425 0.13955707025235115 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235115 0.1207168156948335 C 0.13953933274279867 0.12078301298168302 0.13927802285087204 0.1216258402011743 0.13934422013772158 0.12151118313702772 C 0.13927802285087204 0.1216258402011743 0.13864804574601025 0.12215889775144197 0.13876270281015685 0.12209270046459245 C 0.13864804574601025 0.12215889775144197 0.13783594079426356 0.12230555057922199 0.1379683353679626 0.12230555057922199 C 0.13783594079426356 0.12230555057922199 0.1370593108616217 0.12202650317774293 0.13717396792576828 0.12209270046459245 C 0.1370593108616217 0.12202650317774293 0.1365262533113541 0.12139652607288114 0.13659245059820363 0.12151118313702772 C 0.1365262533113541 0.12139652607288114 0.1363618629740215 0.12065061840798398 0.13637960048357398 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357398 0.1207168156948335 C 0.13627523623612797 0.120603507505417 0.13496541392414543 0.11910232394595413 0.13512722951422204 0.11935711742183543 C 0.13496541392414543 0.11910232394595413 0.13438036206002418 0.11751780869779309 0.1344378134026548 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1344378134026548 0.11765929398425788 C 0.13448520149633958 0.11752183399737141 0.13515357560875996 0.11575498066573896 0.13500647052687215 0.11600977414162027 C 0.13515357560875996 0.11575498066573896 0.1363027913735117 0.11448443878468739 0.13620307438530865 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017963,0.16900549584881458) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609703715500646 0.10112627482691638 C 0.106045028808768 0.10137184195384379 0.10549963165678276 0.10314593580532919 0.1057849870775757 0.10259967758848078 C 0.10549963165678276 0.10314593580532919 0.10392662906033673 0.10447474679365994 0.10438490463024878 0.10440382412800679 C 0.10392662906033673 0.10447474679365994 0.10273237614108599 0.10247985863573565 0.10303533365810337 0.10302521358239967 C 0.10273237614108599 0.10247985863573565 0.10256715952814453 0.10113169444802263 0.10256715952814453 0.10113169444802263 C 0.10256715952814453 0.10113169444802263 0.10333829117512075 0.1035705685290637 0.10303533365810337 0.10302521358239967 C 0.10333829117512075 0.1035705685290637 0.10441816146244173 0.10488371742465463 0.10438490463024878 0.10440382412800679 C 0.10441816146244173 0.10488371742465463 0.10296305493003625 0.10637749902493181 0.10323487465126104 0.10590457336228674 C 0.10296305493003625 0.10637749902493181 0.10267383824483994 0.10746417889414223 0.1027539863029001 0.10724137810387716" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.32131057376017963,0.17206301755939019) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235115 0.11460177227368223 C 0.1396468155417339 0.11470737241377758 0.14076640829864304 0.11609828808311966 0.140634013724944 0.11586897395482648 C 0.14076640829864304 0.11609828808311966 0.14118845442105593 0.11747725580139809 0.14114580513673963 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14114580513673963 0.11735354181320028 C 0.1410940989283721 0.11748087857101859 0.1403796966052602 0.11911089703531323 0.14052533063632916 0.11888158290702006 C 0.1403796966052602 0.11911089703531323 0.13930426894121084 0.12020728872319325 0.13939819676391224 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391224 0.12010531135271839 C 0.13938223300531502 0.12016488891088295 0.1391470541025811 0.12092343340842512 0.13920663166074568 0.12082024205069321 C 0.1391470541025811 0.12092343340842512 0.13858007470820544 0.12140318520366601 0.13868326606593737 0.12134360764550145 C 0.13858007470820544 0.12140318520366601 0.13784918025163345 0.12153517274866801 0.1379683353679626 0.12153517274866801 C 0.13784918025163345 0.12153517274866801 0.13715021331225577 0.12128403008733689 0.1372534046699877 0.12134360764550145 C 0.13715021331225577 0.12128403008733689 0.13667046151701484 0.12071705069296129 0.13673003907517942 0.12082024205069321 C 0.13667046151701484 0.12071705069296129 0.1365225102134157 0.12004573379455383 0.1365384739720129 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1365384739720129 0.12010531135271839 C 0.1364445461493115 0.12000333398224353 0.13526570606852703 0.11865226877872688 0.135411340099596 0.11888158290702006 C 0.13526570606852703 0.11865226877872688 0.134739159390818 0.11722620505538196 0.13479086559918552 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918552 0.11735354181320028 C 0.13483351488350181 0.11722982782500246 0.1354350515846803 0.1156396598265333 0.13530265701098126 0.11586897395482648 C 0.1354350515846803 0.1156396598265333 0.1364693457729567 0.11449617213358688 0.13637960048357398 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601796,0.17481478709890824) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592105877707135 0.10143238737540648 C 0.10587425126545674 0.10165339778964114 0.10538339382867001 0.10325008225597801 0.10564021370738366 0.10275844986081444 C 0.10538339382867001 0.10325008225597801 0.1039676914918686 0.10444601214547572 0.10438013950478946 0.10438218174638789 C 0.1039676914918686 0.10444601214547572 0.10289286386454288 0.10265061280334381 0.10316552562985852 0.10314143225534145 C 0.10289286386454288 0.10265061280334381 0.10274416891289567 0.10143726503440209 0.10274416891289567 0.10143726503440209 C 0.10274416891289567 0.10143726503440209 0.10343818739517416 0.10363225170733908 0.10316552562985852 0.10314143225534145 C 0.10343818739517416 0.10363225170733908 0.10441007065376312 0.10481408571337095 0.10438013950478946 0.10438218174638789 C 0.10441007065376312 0.10481408571337095 0.10310047477459822 0.10615848915362033 0.10334511252370052 0.10573285605723978 C 0.10310047477459822 0.10615848915362033 0.1028401797579215 0.10713650103590973 0.10291231301017564 0.10693598032467116" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.3213105737601796,0.17756655663842635) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391224 0.11460177227368223 C 0.1394789675243567 0.11469681239976806 0.14048660100557492 0.11594863650217593 0.14036744588924577 0.11574225378671207 C 0.14048660100557492 0.11594863650217593 0.14086644251574676 0.1171897074486265 0.14082805815986207 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14082805815986207 0.11707836485924847 C 0.14078152257233129 0.11719296794128496 0.14013856048153042 0.1186599845591502 0.1402696311094925 0.11845360184368633 C 0.14013856048153042 0.1186599845591502 0.13917067558388596 0.11964673707824212 0.13925521062431723 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431723 0.11955495744481476 C 0.13924084324157973 0.11960857724716287 0.13902918222911914 0.12029126729495083 0.13908280203146725 0.1201983950729921 C 0.13902918222911914 0.12029126729495083 0.13851890077418122 0.12072304391066765 0.13861177299613994 0.12066942410831955 C 0.13851890077418122 0.12072304391066765 0.13786109576326638 0.12084183270116945 0.1379683353679626 0.12084183270116945 C 0.13786109576326638 0.12084183270116945 0.1372320255178265 0.12061580430597144 0.13732489773978526 0.12066942410831955 C 0.1372320255178265 0.12061580430597144 0.13680024890210957 0.12010552285103336 0.13685386870445768 0.1201983950729921 C 0.13680024890210957 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160795 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160795 0.11955495744481476 C 0.13659692507117668 0.11946317781138739 0.13553596899847065 0.11824721912822247 0.1356670396264327 0.11845360184368633 C 0.13553596899847065 0.11824721912822247 0.13506207698853243 0.11696376177721197 0.13510861257606321 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13510861257606321 0.11707836485924847 C 0.1351469969319479 0.11696702226987044 0.13568837996300848 0.11553587107124819 0.13556922484667933 0.11574225378671205 C 0.13568837996300848 0.11553587107124819 0.13661924473245737 0.11450673214759642 0.1365384739720129 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601795,0.1800431492239926) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576267823692977 0.10170788866904754 C 0.1057205514764766 0.10190679804185873 0.10527877978336853 0.10334381406156194 0.10550991767421082 0.10290134490591472 C 0.10527877978336853 0.10334381406156194 0.10400464768024728 0.10442015096210991 0.10437585089187604 0.10436270360293086 C 0.10400464768024728 0.10442015096210991 0.10303730281565425 0.10280429155419113 0.10328269840443832 0.10324602906098901 C 0.10303730281565425 0.10280429155419113 0.1029034773591716 0.10171227856214361 0.1029034773591716 0.10171227856214361 C 0.1029034773591716 0.10171227856214361 0.1035280939932224 0.10368776656778689 0.10328269840443832 0.10324602906098901 C 0.1035280939932224 0.10368776656778689 0.10440278892595231 0.10475141717321562 0.10437585089187604 0.10436270360293086 C 0.10440278892595231 0.10475141717321562 0.10322415263470393 0.10596138026944006 0.103444326608896 0.10557831048269757 C 0.10322415263470393 0.10596138026944006 0.10298988711969487 0.10684159096350049 0.1030548070467236 0.10666112232338579" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3213105737601795,0.18251974180955888) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431723 0.11460177227368223 C 0.13932790430871725 0.11468730838715947 0.1402347744418137 0.11581395007932656 0.14012753483711746 0.11562820563540908 C 0.1402347744418137 0.11581395007932656 0.14057663180096833 0.11693091393113209 0.1405420858806721 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405420858806721 0.11683070560069185 C 0.14050020385189438 0.11693384837452468 0.13992153797017365 0.11825416333060337 0.1400395015353395 0.1180684188866859 C 0.13992153797017365 0.11825416333060337 0.13905044156229357 0.11914224059778608 0.13912652309868173 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868173 0.11905963892770145 C 0.139113592454218 0.11910789674981476 0.13892309754300355 0.119722317792824 0.13897135536511684 0.11963873279306113 C 0.13892309754300355 0.119722317792824 0.13846384423355937 0.12011091674696914 0.13854742923332222 0.12006265892485583 C 0.13846384423355937 0.12011091674696914 0.137871819723736 0.12021782665842078 0.1379683353679626 0.12021782665842078 C 0.137871819723736 0.12021782665842078 0.13730565650284013 0.12001440110274253 0.13738924150260298 0.12006265892485583 C 0.13730565650284013 0.12001440110274253 0.13691705754869496 0.11955514779329826 0.13696531537080828 0.11963873279306113 C 0.13691705754869496 0.11955514779329826 0.1367972169927795 0.11901138110558815 0.13681014763724325 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13681014763724325 0.11905963892770145 C 0.13673406610085512 0.11897703725761682 0.13577920563541984 0.11788267444276843 0.13589716920058567 0.1180684188866859 C 0.13577920563541984 0.11788267444276843 0.1353527028264754 0.11672756282685902 0.13539458485525313 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539458485525313 0.11683070560069185 C 0.13542913077554933 0.11673049727025162 0.1359163755035038 0.11544246119149161 0.13580913589880755 0.11562820563540908 C 0.1359163755035038 0.11544246119149161 0.13675415379600797 0.114516236160205 0.13668146011160795 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.1847486751365685) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10562013575080237 0.10195583983332451 C 0.10558222166639453 0.10213485826885459 0.10518462714259726 0.10342817268658748 0.10539265124435532 0.10302995044650498 C 0.10518462714259726 0.10342817268658748 0.10403790824978813 0.10439687589708063 0.10437199114025403 0.10434517327381948 C 0.10403790824978813 0.10439687589708063 0.10316729787165431 0.10294260242995376 0.10338815390155998 0.10334016618607185 C 0.10316729787165431 0.10294260242995376 0.10304685496082001 0.10195979073711098 0.10304685496082001 0.10195979073711098 C 0.10304685496082001 0.10195979073711098 0.10360900993146564 0.10373772994218994 0.10338815390155998 0.10334016618607185 C 0.10360900993146564 0.10373772994218994 0.10439623537092269 0.10469501548707577 0.10437199114025403 0.10434517327381948 C 0.10439623537092269 0.10469501548707577 0.10333546270879906 0.10578398227367783 0.10353361928557193 0.10543921946560958 C 0.10333546270879906 0.10578398227367783 0.10312462374529098 0.1065761718983322 0.10318305167961683 0.10641375012222896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02018461228254831 0.018599422539472096 C 0.020435879788334454 0.018599422539472096 0.021769863246687306 0.019933731311340065 0.02169221731726518 0.01969476171262892 C 0.021769863246687306 0.019933731311340065 0.02091308375329863 0.021614749058287253 0.02111636343561383 0.021467057724005843 C 0.02091308375329863 0.021614749058287253 0.0190495814471676 0.021319366389724433 0.0192528611294828 0.021467057724005843 C 0.0190495814471676 0.021319366389724433 0.018754653177253573 0.019455792113917774 0.018677007247831445 0.01969476171262892 C 0.018754653177253573 0.019455792113917774 0.020435879788334454 0.018599422539472096 0.02018461228254831 0.018599422539472096 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.026392927798991044 0.02531353873051479 C 0.02656402113352306 0.02531353873051479 0.02747235855417783 0.02622209766399067 0.027419487806183158 0.02605937823328933 C 0.02747235855417783 0.02622209766399067 0.026888959359666446 0.02736673803773433 0.027027376774927128 0.02726617189893087 C 0.026888959359666446 0.02736673803773433 0.02562006140779431 0.027165605760127408 0.02575847882305499 0.02726617189893087 C 0.02562006140779431 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.02656402113352306 0.02531353873051479 0.026392927798991044 0.02531353873051479 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32034124676579434,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17152744855704163 0.18664116645603634 C 0.1716101945364861 0.18649002722933367 0.17267853657933008 0.18462836862019674 0.17252040031037527 0.18482749573560422 C 0.17267853657933008 0.18462836862019674 0.17350047407400956 0.18420365318244167 0.17342508378449922 0.18425164107114647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17342508378449922 0.18425164107114647 C 0.17343209584174343 0.18478770485312573 0.17345444155364334 0.1915599542314985 0.1735092284714296 0.19068440645489765 C 0.17345444155364334 0.1915599542314985 0.17270584179603343 0.19509769838497812 0.1727676407710639 0.19475821439035654" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1727676407710639 0.19475821439035654 C 0.17274840658272683 0.19493747615165172 0.17252385664476141 0.19743852779113596 0.17253683051101895 0.19690935552589856 C 0.17252385664476141 0.19743852779113596 0.17261821469805308 0.2014581920771478 0.17261195437597354 0.20110828157320554" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17261195437597354 0.20110828157320554 C 0.1725102261119335 0.20078685974239072 0.17124113136434815 0.1966844128546301 0.17139121520749326 0.19725121960342767 C 0.17124113136434815 0.1966844128546301 0.17076259267912708 0.19406121566965176 0.17081094825823218 0.19430660058763452" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17081094825823218 0.19430660058763452 C 0.17080440151875467 0.19396008241916363 0.17079209574273618 0.1895095963883507 0.17073238738450205 0.19014838256598388 C 0.17079209574273618 0.1895095963883507 0.17159370365475327 0.18634889844687405 0.17152744855704163 0.18664116645603634" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32227990075456453,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.1745407159605065 0.18656477878445557 C 0.174612408907706 0.18686018697403917 0.17545139310381885 0.1907526607719494 0.17540103132690044 0.1901096770594588 C 0.17545139310381885 0.1907526607719494 0.1751237261132463 0.1946281588572497 0.1751450572835274 0.19428058333434273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1751450572835274 0.19428058333434273 C 0.1750840546649184 0.19454301181482325 0.17423797888456755 0.19802787245409872 0.17441302586021923 0.19742972510010917 C 0.17423797888456755 0.19802787245409872 0.17293044921866463 0.20179407045572645 0.17304449357570728 0.20145835158221742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17304449357570728 0.20145835158221742 C 0.17306546457428817 0.2010759234545932 0.1733177311080706 0.19630932438702084 0.173296145558678 0.19686921405072652 C 0.1733177311080706 0.19630932438702084 0.17330413471923015 0.1945622140816679 0.17330352016841843 0.19473967561774932" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17330352016841843 0.19473967561774932 C 0.17324776519076723 0.19440234087798985 0.17257586844506928 0.18981822560559822 0.17263446043660385 0.19069165874063582 C 0.17257586844506928 0.18981822560559822 0.1725975792561203 0.18372237960202006 0.17260041627000364 0.1842584779972982" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17260041627000364 0.1842584779972982 C 0.17267667666051062 0.18430520862233987 0.1736772325969625 0.18501143723006142 0.17351554095608726 0.1848192454977983 C 0.1736772325969625 0.18501143723006142 0.17462614721087477 0.186710239891677 0.1745407159605065 0.18656477878445557" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19540860525412718 0.17892734283795877 C 0.19534878698327263 0.17828377337661785 0.19459694554262028 0.17019434309228626 0.1946907860038724 0.17120450930186787 C 0.19459694554262028 0.17019434309228626 0.19424849752870404 0.16643875157473884 0.1942825197191016 0.16680534832297952" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1942825197191016 0.16680534832297952 C 0.19426505534363975 0.166512381873389 0.19411292896767232 0.162476143374727 0.1940729472135595 0.1632897509278931 C 0.19411292896767232 0.162476143374727 0.19481974689803006 0.15652141658141033 0.1947623007684554 0.15704205768498594" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1947623007684554 0.15704205768498594 C 0.1948248445856835 0.15701542103434624 0.19564434459456861 0.1567260756682543 0.19551282657519264 0.15672241787730956 C 0.19564434459456861 0.1567260756682543 0.1964094912031149 0.1571162456179074 0.19634051700096705 0.15708595117632296" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19634051700096705 0.15708595117632296 C 0.19639683224588245 0.1575846365474142 0.19705333363402366 0.16389763488089126 0.19701629993995193 0.16307017562941784 C 0.19705333363402366 0.16389763488089126 0.1967656397789844 0.16734423607438642 0.19678492132982806 0.16701546219400423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19678492132982806 0.16701546219400423 C 0.19673304201858663 0.16738125658571304 0.1960476765886226 0.17239765161483953 0.196162369594931 0.17140499489450997 C 0.1960476765886226 0.17239765161483953 0.19534579155906018 0.1795542051665795 0.19540860525412718 0.17892734283795877" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g id="編節1">
<g transform="translate(0.353376331897162,0.13389549078914728) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14065887184510636 0.11460177227368223 C 0.14081085628071532 0.11478060703819197 0.14270689644550916 0.11713613493763485 0.14248268507241385 0.116747789447799 C 0.14270689644550916 0.11713613493763485 0.14342163525973625 0.11947142887703856 0.1433494083222499 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1433494083222499 0.11926191815171244 C 0.14326184340435538 0.11947756406920185 0.14205199679711064 0.12223801465142106 0.14229862930751547 0.12184966916158521 C 0.14205199679711064 0.12223801465142106 0.14023075060488163 0.12409476360208903 0.14038981819739194 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739194 0.12392206402974258 C 0.1403627834320323 0.12402295914763548 0.13996450589518328 0.12530756091488346 0.14006540101307616 0.12513280544445732 C 0.13996450589518328 0.12530756091488346 0.1390043213122511 0.12612002479274906 0.13917907678267724 0.12601912967485618 C 0.1390043213122511 0.12612002479274906 0.13776654513217682 0.12634354685917182 0.1379683353679626 0.12634354685917182 C 0.13776654513217682 0.12634354685917182 0.13658283848282177 0.1259182345569633 0.13675759395324788 0.12601912967485618 C 0.13658283848282177 0.1259182345569633 0.13577037460495622 0.12495804997403119 0.1358712697228491 0.12513280544445732 C 0.13577037460495622 0.12495804997403119 0.13551981777317373 0.12382116891184969 0.13554685253853338 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13554685253853338 0.12392206402974258 C 0.13538778494602308 0.12374936445739614 0.1333914089180049 0.12146132367174937 0.13363804142840974 0.12184966916158521 C 0.1333914089180049 0.12146132367174937 0.13249969749578092 0.11904627223422308 0.13258726241367544 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13258726241367544 0.11926191815171247 C 0.13265948935116179 0.11905240742638634 0.1336781970366068 0.11635944395796315 0.1334539856635115 0.116747789447799 C 0.1336781970366068 0.11635944395796315 0.13542978332642802 0.1144229375091725 0.13527779889081906 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716194,0.13855563666717752) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1067504023967738 0.10884214469843498 C 0.10662824410069063 0.10850256111321158 0.10560315644404435 0.10608382980095674 0.1060174526202748 0.10680464318709461 C 0.10560315644404435 0.10608382980095674 0.1043153140029987 0.10378583122104099 0.10426462533939108 0.10451726438160774 C 0.1043153140029987 0.10378583122104099 0.10678333969568275 0.10158483717192755 0.10632158460192052 0.1024160442236941 C 0.10678333969568275 0.10158483717192755 0.10703515590196445 0.09953002207100842 0.10703515590196445 0.09953002207100842 C 0.10703515590196445 0.09953002207100842 0.1058598295081583 0.10324725127546065 0.10632158460192052 0.1024160442236941 C 0.1058598295081583 0.10324725127546065 0.10356614100786835 0.10440916704026779 0.10426462533939108 0.10451726438160774 C 0.10356614100786835 0.10440916704026779 0.10169575189308747 0.10093487639749793 0.10213067861278405 0.10176746017565433 C 0.10169575189308747 0.10093487639749793 0.10157579608928285 0.09914747863550524 0.10165506502121159 0.0995217617126694" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.35337633189716194,0.14321578254520761) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739194 0.11460177227368223 C 0.14052660418944 0.114762723561741 0.1422330403377545 0.11688269867123958 0.14203125010196874 0.11653318773038732 C 0.1422330403377545 0.11688269867123958 0.14287630527055886 0.11898446321670295 0.14281130102682116 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14281130102682116 0.11879590356390944 C 0.14273249260071608 0.1189899848896499 0.1416436306541958 0.1214743904136472 0.14186559991356015 0.12112487947279495 C 0.1416436306541958 0.1214743904136472 0.14000450908118967 0.12314546446924837 0.14014766991444894 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14014766991444894 0.12299003485413657 C 0.14012333862562526 0.12308084046024016 0.13976488884246127 0.12423698205076321 0.13985569444856485 0.12407970212737969 C 0.13976488884246127 0.12423698205076321 0.13890072271782233 0.12496819954084241 0.13905800264120585 0.1248773939347388 C 0.13890072271782233 0.12496819954084241 0.13778672415575538 0.12516936940062295 0.1379683353679626 0.12516936940062295 C 0.13778672415575538 0.12516936940062295 0.13672138817133583 0.12478658832863519 0.13687866809471935 0.1248773939347388 C 0.13672138817133583 0.12478658832863519 0.1359901706812568 0.12392242220399617 0.13608097628736038 0.12407970212737969 C 0.1359901706812568 0.12392242220399617 0.13576466953265268 0.12289922924803297 0.13578900082147635 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13578900082147635 0.12299003485413657 C 0.13564583998821708 0.12283460523902476 0.13384910156300076 0.12077536853194269 0.1340710708223651 0.12112487947279495 C 0.13384910156300076 0.12077536853194269 0.13304656128299913 0.11860182223816898 0.1331253697091042 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1331253697091042 0.11879590356390944 C 0.1331903739528419 0.11860734391111594 0.13410721086974225 0.11618367678953509 0.1339054206339565 0.11653318773038736 C 0.13410721086974225 0.11618367678953509 0.13568363853058146 0.11444082098562347 0.13554685253853338 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971619,0.14740991383543484) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650908749466197 0.10837667025977321 C 0.10639914502818712 0.10807104503307216 0.10547656613720548 0.10589418685204278 0.10584943269581286 0.10654291889956687 C 0.10547656613720548 0.10589418685204278 0.10431750794026448 0.10382598813011862 0.10427188814301765 0.1044842779746287 C 0.10431750794026448 0.10382598813011862 0.10653873106367984 0.10184509348591653 0.10612315147929388 0.10259317983250642 C 0.10653873106367984 0.10184509348591653 0.10676536564933342 0.09999575989508931 0.10676536564933342 0.09999575989508931 C 0.10676536564933342 0.09999575989508931 0.10570757189490793 0.10334126617909631 0.10612315147929388 0.10259317983250642 C 0.10570757189490793 0.10334126617909631 0.1036432522446472 0.10438699036742272 0.10427188814301765 0.1044842779746287 C 0.1036432522446472 0.10438699036742272 0.10195990204134427 0.10126012878892983 0.1023513360890712 0.10200945418927057 C 0.10195990204134427 0.10126012878892983 0.10185194181792022 0.0996514708031365 0.10192328385665607 0.09998832557258422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3533763318971619,0.15160404512566195) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14014766991444894 0.11460177227368223 C 0.1402707773072922 0.11474662843293512 0.14180656984077525 0.11665460603148387 0.14162495862856805 0.11634004618471683 C 0.14180656984077525 0.11665460603148387 0.1423855082802993 0.11854619412240089 0.14232700446093535 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14232700446093535 0.11837649043488672 C 0.14225607687744077 0.11855116362805314 0.14127610112557248 0.12078712859965067 0.1414758734590004 0.12047256875288363 C 0.14127610112557248 0.12078712859965067 0.13980089170986706 0.12229109524969174 0.1399297364598004 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1399297364598004 0.12215120859609112 C 0.13990783829985906 0.12223293364158436 0.1395852334950113 0.12327346107305513 0.13966695854050457 0.12313190914200996 C 0.1395852334950113 0.12327346107305513 0.1388074839828362 0.12393155681412645 0.13894903591388139 0.1238498317686332 C 0.1388074839828362 0.12393155681412645 0.13780488527697612 0.12411260968792882 0.1379683353679626 0.12411260968792882 C 0.13780488527697612 0.12411260968792882 0.1368460828909986 0.12376810672313997 0.13698763482204376 0.1238498317686332 C 0.1368460828909986 0.12376810672313997 0.1361879871499273 0.12299035721096478 0.13626971219542056 0.12313190914200996 C 0.1361879871499273 0.12299035721096478 0.1359850361161836 0.12206948355059788 0.1360069342761249 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1360069342761249 0.12215120859609112 C 0.13587808952619157 0.1220113219424905 0.13426102494349695 0.1201580089061166 0.13446079727692486 0.12047256875288363 C 0.13426102494349695 0.1201580089061166 0.13353873869149555 0.11820181724172031 0.1336096662749901 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1336096662749901 0.11837649043488672 C 0.13366817009435403 0.11820678674737256 0.13449332331956446 0.11602548633794979 0.13431171210735726 0.11634004618471683 C 0.13449332331956446 0.11602548633794979 0.13591210821431962 0.11445691611442935 0.13578900082147635 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716183,0.15537876328686645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629190408276128 0.10795774326497763 C 0.10619295586293391 0.10768268056094668 0.10536263486105045 0.10572350819802029 0.1056982147637971 0.10630736704079195 C 0.10536263486105045 0.10572350819802029 0.10431948248380359 0.10386212934828852 0.1042784246662814 0.1044545902083476 C 0.10431948248380359 0.10386212934828852 0.10631858329487757 0.10207932416850657 0.10594456166893018 0.10275260188043749 C 0.10631858329487757 0.10207932416850657 0.10652255442196576 0.10041492393676214 0.10652255442196576 0.10041492393676214 C 0.10652255442196576 0.10041492393676214 0.10557054004298279 0.1034258795923684 0.10594456166893018 0.10275260188043749 C 0.10557054004298279 0.1034258795923684 0.10371265235774797 0.10436703136186223 0.1042784246662814 0.1044545902083476 C 0.10371265235774797 0.10436703136186223 0.10219763717477533 0.10155285594121863 0.10254992781772959 0.10222724880152531 C 0.10219763717477533 0.10155285594121863 0.10210047297369354 0.10010506375400449 0.10216468080855583 0.10040823304650746" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.35337633189716183,0.15915348144807084) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1399297364598004 0.11460177227368223 C 0.14004053311335932 0.11473214281700983 0.14142274639349395 0.11644932265570374 0.14125929630250747 0.1161662187936134 C 0.14142274639349395 0.11644932265570374 0.1419437909890656 0.11815175193752903 0.14189113755163804 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14189113755163804 0.11799901861876629 C 0.1418273027264929 0.11815622449261605 0.14094532454981148 0.12016859296705384 0.1411251196498966 0.11988548910496352 C 0.14094532454981148 0.12016859296705384 0.13961763607567654 0.1215221629520908 0.13973359635061655 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061655 0.12139626496385024 C 0.13971388800666937 0.12146981750479416 0.13942354368230658 0.1224062921931179 0.1394970962232505 0.12227889545517724 C 0.13942354368230658 0.1224062921931179 0.138723569121349 0.12299857836008199 0.13885096585928966 0.12292502581913807 C 0.138723569121349 0.12299857836008199 0.13782123028607476 0.1231615259465042 0.1379683353679626 0.1231615259465042 C 0.13782123028607476 0.1231615259465042 0.13695830813869503 0.12285147327819415 0.13708570487663566 0.12292502581913807 C 0.13695830813869503 0.12285147327819415 0.1363660219717311 0.12215149871723659 0.136439574512675 0.12227889545517724 C 0.1363660219717311 0.12215149871723659 0.13618336604136147 0.12132271242290632 0.13620307438530865 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530865 0.12139626496385024 C 0.13608711411036867 0.12127036697560968 0.13463175598594362 0.1196023852428732 0.13481155108602877 0.11988548910496352 C 0.13463175598594362 0.1196023852428732 0.13398169835914195 0.11784181274491652 0.13404553318428708 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428708 0.11799901861876629 C 0.13409818662171463 0.11784628530000354 0.13484082452440418 0.11588311493152306 0.1346773744334177 0.1161662187936134 C 0.13484082452440418 0.11588311493152306 0.13611773092968382 0.11447140173035464 0.1360069342761249 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971618,0.16255072779315488) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609643901205085 0.10758070896966163 C 0.1060073856142062 0.10733315253603376 0.10526009671251092 0.10556989740939997 0.10556211862498294 0.10609537036789447 C 0.10526009671251092 0.10556989740939997 0.10432125957298877 0.10389465644464141 0.10428430753721879 0.10442787121869458 C 0.10432125957298877 0.10389465644464141 0.10612045030295549 0.10229013178283765 0.10578383083960284 0.10289608172357546 C 0.10612045030295549 0.10229013178283765 0.10630402431733463 0.10079217157426766 0.10630402431733463 0.10079217157426766 C 0.10630402431733463 0.10079217157426766 0.1054472113762502 0.10350203166431328 0.10578383083960284 0.10289608172357546 C 0.1054472113762502 0.10350203166431328 0.1037751124595387 0.10434906825685775 0.10428430753721879 0.10442787121869458 C 0.1037751124595387 0.10434906825685775 0.10241159879486349 0.10181631037827846 0.1027286603735223 0.10242326395255448 C 0.10241159879486349 0.10181631037827846 0.10232415101388986 0.10051329740978578 0.10238193806526592 0.10078614977303844" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3533763318971618,0.16594797413823886) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061655 0.11460177227368223 C 0.1398333133388196 0.11471910576267708 0.14107730529094092 0.11626456761750158 0.14093020020905309 0.11600977414162027 C 0.14107730529094092 0.11626456761750158 0.14154624542695532 0.11779675397114435 0.14149885733327053 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14149885733327053 0.11765929398425788 C 0.14144140599063992 0.11780077927072267 0.1406476256316267 0.11961191089771672 0.1408094412217033 0.11935711742183543 C 0.1406476256316267 0.11961191089771672 0.13945270600490522 0.12083012388425 0.13955707025235123 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235123 0.1207168156948335 C 0.13953933274279876 0.12078301298168302 0.13927802285087212 0.1216258402011743 0.13934422013772166 0.12151118313702772 C 0.13927802285087212 0.1216258402011743 0.13864804574601033 0.12215889775144197 0.13876270281015693 0.12209270046459245 C 0.13864804574601033 0.12215889775144197 0.13783594079426356 0.12230555057922199 0.1379683353679626 0.12230555057922199 C 0.13783594079426356 0.12230555057922199 0.13705931086162182 0.12202650317774293 0.1371739679257684 0.12209270046459245 C 0.13705931086162182 0.12202650317774293 0.13652625331135415 0.12139652607288114 0.13659245059820369 0.12151118313702772 C 0.13652625331135415 0.12139652607288114 0.13636186297402153 0.12065061840798398 0.136379600483574 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.136379600483574 0.1207168156948335 C 0.13627523623612803 0.120603507505417 0.13496541392414552 0.11910232394595413 0.13512722951422212 0.11935711742183543 C 0.13496541392414552 0.11910232394595413 0.13438036206002416 0.11751780869779309 0.13443781340265476 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13443781340265476 0.11765929398425788 C 0.13448520149633955 0.11752183399737141 0.13515357560876012 0.11575498066573896 0.1350064705268723 0.11600977414162027 C 0.13515357560876012 0.11575498066573896 0.13630279137351167 0.11448443878468739 0.13620307438530865 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971617,0.16900549584881452) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1059205204484112 0.10724137810387716 C 0.10584037239035103 0.10701857731361208 0.10516781237882541 0.10543164769964168 0.10543963210005021 0.10590457336228674 C 0.10516781237882541 0.10543164769964168 0.10432285895325542 0.10392393083135895 0.10428960212106246 0.10440382412800679 C 0.10432285895325542 0.10392393083135895 0.10594213061022535 0.10247985863573565 0.10563917309320797 0.10302521358239967 C 0.10594213061022535 0.10247985863573565 0.10610734722316675 0.10113169444802263 0.10610734722316675 0.10113169444802263 C 0.10610734722316675 0.10113169444802263 0.10533621557619059 0.1035705685290637 0.10563917309320797 0.10302521358239967 C 0.10533621557619059 0.1035705685290637 0.1038313265511504 0.10433290146235365 0.10428960212106246 0.10440382412800679 C 0.1038313265511504 0.10433290146235365 0.10260416425294269 0.10205341937163237 0.10288951967373564 0.10259967758848078 C 0.10260416425294269 0.10205341937163237 0.10252546125006633 0.10088070769998898 0.1025774695963048 0.10112627482691638" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.3533763318971617,0.17206301755939013) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235123 0.11460177227368223 C 0.13964681554173397 0.11470737241377758 0.14076640829864306 0.11609828808311966 0.14063401372494402 0.11586897395482648 C 0.14076640829864306 0.11609828808311966 0.141188454421056 0.11747725580139809 0.1411458051367397 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1411458051367397 0.11735354181320028 C 0.14109409892837216 0.11748087857101859 0.1403796966052603 0.11911089703531323 0.14052533063632927 0.11888158290702006 C 0.1403796966052603 0.11911089703531323 0.1393042689412108 0.12020728872319325 0.13939819676391224 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391224 0.12010531135271839 C 0.13938223300531502 0.12016488891088295 0.13914705410258116 0.12092343340842512 0.1392066316607457 0.12082024205069321 C 0.13914705410258116 0.12092343340842512 0.13858007470820566 0.12140318520366601 0.1386832660659376 0.12134360764550145 C 0.13858007470820566 0.12140318520366601 0.13784918025163345 0.12153517274866801 0.1379683353679626 0.12153517274866801 C 0.13784918025163345 0.12153517274866801 0.13715021331225596 0.12128403008733689 0.1372534046699879 0.12134360764550145 C 0.13715021331225596 0.12128403008733689 0.13667046151701487 0.12071705069296129 0.13673003907517944 0.12082024205069321 C 0.13667046151701487 0.12071705069296129 0.13652251021341577 0.12004573379455383 0.13653847397201296 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13653847397201296 0.12010531135271839 C 0.13644454614931156 0.12000333398224353 0.13526570606852714 0.11865226877872688 0.1354113400995961 0.11888158290702006 C 0.13526570606852714 0.11865226877872688 0.13473915939081796 0.11722620505538196 0.13479086559918552 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918552 0.11735354181320028 C 0.13483351488350184 0.11722982782500246 0.13543505158468033 0.1156396598265333 0.1353026570109813 0.11586897395482648 C 0.13543505158468033 0.1156396598265333 0.13646934577295672 0.11449617213358688 0.136379600483574 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716167,0.1748147870989082) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576219374113575 0.10693598032467116 C 0.10569006048888159 0.1067354596134326 0.10508475647850847 0.10530722296085923 0.10532939422761078 0.10573285605723978 C 0.10508475647850847 0.10530722296085923 0.10432429839549553 0.10395027777940483 0.10429436724652186 0.10438218174638789 C 0.10432429839549553 0.10395027777940483 0.10578164288676843 0.10265061280334381 0.10550898112145281 0.10314143225534145 C 0.10578164288676843 0.10265061280334381 0.10593033783841563 0.10143726503440209 0.10593033783841563 0.10143726503440209 C 0.10593033783841563 0.10143726503440209 0.10523631935613718 0.10363225170733908 0.10550898112145281 0.10314143225534145 C 0.10523631935613718 0.10363225170733908 0.103881919233601 0.10431835134730005 0.10429436724652186 0.10438218174638789 C 0.103881919233601 0.10431835134730005 0.10277747316521399 0.10226681746565086 0.10303429304392765 0.10275844986081444 C 0.10277747316521399 0.10226681746565086 0.1027066404626253 0.10121137696117183 0.10275344797423992 0.10143238737540648" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.35337633189716167,0.1775665566384263) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391224 0.11460177227368223 C 0.1394789675243567 0.11469681239976805 0.14048660100557492 0.1159486365021759 0.14036744588924577 0.11574225378671205 C 0.14048660100557492 0.1159486365021759 0.14086644251574676 0.1171897074486265 0.14082805815986207 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14082805815986207 0.11707836485924847 C 0.14078152257233129 0.11719296794128496 0.14013856048153056 0.1186599845591502 0.14026963110949262 0.11845360184368633 C 0.14013856048153056 0.1186599845591502 0.13917067558388607 0.11964673707824212 0.13925521062431734 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431734 0.11955495744481476 C 0.13924084324157984 0.11960857724716287 0.13902918222911925 0.12029126729495083 0.13908280203146736 0.1201983950729921 C 0.13902918222911925 0.12029126729495083 0.13851890077418125 0.12072304391066765 0.13861177299613997 0.12066942410831955 C 0.13851890077418125 0.12072304391066765 0.13786109576326638 0.12084183270116945 0.1379683353679626 0.12084183270116945 C 0.13786109576326638 0.12084183270116945 0.13723202551782654 0.12061580430597144 0.13732489773978526 0.12066942410831955 C 0.13723202551782654 0.12061580430597144 0.13680024890210973 0.12010552285103336 0.13685386870445784 0.1201983950729921 C 0.13680024890210973 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160798 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160798 0.11955495744481476 C 0.1365969250711767 0.11946317781138739 0.13553596899847073 0.11824721912822247 0.13566703962643278 0.11845360184368633 C 0.13553596899847073 0.11824721912822247 0.13506207698853245 0.11696376177721197 0.13510861257606324 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13510861257606324 0.11707836485924847 C 0.13514699693194793 0.11696702226987044 0.1356883799630085 0.11553587107124821 0.13556922484667935 0.11574225378671207 C 0.1356883799630085 0.11553587107124821 0.13661924473245743 0.11450673214759641 0.13653847397201296 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971616,0.18004314922399253) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10561969970458765 0.10666112232338579 C 0.10555477977755892 0.10648065368327109 0.10501000616822317 0.10519524069595508 0.10523018014241525 0.10557831048269757 C 0.10501000616822317 0.10519524069595508 0.10432559389351148 0.1039739900326461 0.1042986558594352 0.10436270360293086 C 0.10432559389351148 0.1039739900326461 0.10563720393565705 0.10280429155419113 0.10539180834687296 0.10324602906098901 C 0.10563720393565705 0.10280429155419113 0.10577102939213973 0.10171227856214361 0.10577102939213973 0.10171227856214361 C 0.10577102939213973 0.10171227856214361 0.10514641275808888 0.10368776656778689 0.10539180834687296 0.10324602906098901 C 0.10514641275808888 0.10368776656778689 0.10392745264780644 0.10430525624375181 0.1042986558594352 0.10436270360293086 C 0.10392745264780644 0.10430525624375181 0.10293345118625814 0.1024588757502675 0.10316458907710041 0.10290134490591472 C 0.10293345118625814 0.1024588757502675 0.10286970175392843 0.10150897929623634 0.10291182851438156 0.10170788866904754" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3533763318971616,0.18251974180955882) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431734 0.11460177227368223 C 0.13932790430871736 0.11468730838715947 0.14023477444181384 0.11581395007932656 0.1401275348371176 0.11562820563540908 C 0.14023477444181384 0.11581395007932656 0.1405766318009684 0.11693091393113209 0.14054208588067219 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14054208588067219 0.11683070560069185 C 0.14050020385189446 0.11693384837452468 0.1399215379701737 0.11825416333060337 0.14003950153533956 0.1180684188866859 C 0.1399215379701737 0.11825416333060337 0.13905044156229374 0.11914224059778608 0.13912652309868187 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868187 0.11905963892770145 C 0.13911359245421812 0.11910789674981476 0.13892309754300358 0.119722317792824 0.13897135536511687 0.11963873279306113 C 0.13892309754300358 0.119722317792824 0.13846384423355948 0.12011091674696914 0.13854742923332233 0.12006265892485583 C 0.13846384423355948 0.12011091674696914 0.137871819723736 0.12021782665842078 0.1379683353679626 0.12021782665842078 C 0.137871819723736 0.12021782665842078 0.13730565650284018 0.12001440110274253 0.13738924150260304 0.12006265892485583 C 0.13730565650284018 0.12001440110274253 0.136917057548695 0.11955514779329826 0.1369653153708083 0.11963873279306113 C 0.136917057548695 0.11955514779329826 0.13679721699277964 0.11901138110558815 0.1368101476372434 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368101476372434 0.11905963892770145 C 0.13673406610085526 0.11897703725761682 0.13577920563541993 0.11788267444276843 0.13589716920058578 0.1180684188866859 C 0.13577920563541993 0.11788267444276843 0.13535270282647544 0.11672756282685902 0.13539458485525316 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539458485525316 0.11683070560069185 C 0.13542913077554936 0.11673049727025162 0.1359163755035039 0.11544246119149161 0.13580913589880766 0.11562820563540908 C 0.1359163755035039 0.11544246119149161 0.136754153796008 0.114516236160205 0.13668146011160798 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18474867513656845) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10549145507169452 0.10641375012222896 C 0.10543302713736866 0.10625132834612573 0.10494273088896647 0.10509445665754133 0.10514088746573934 0.10543921946560958 C 0.10494273088896647 0.10509445665754133 0.10432675984172593 0.10399533106056319 0.10430251561105726 0.10434517327381948 C 0.10432675984172593 0.10399533106056319 0.10550720887965702 0.10294260242995376 0.10528635284975134 0.10334016618607185 C 0.10550720887965702 0.10294260242995376 0.10562765179049131 0.10195979073711098 0.10562765179049131 0.10195979073711098 C 0.10562765179049131 0.10195979073711098 0.10506549681984566 0.10373772994218994 0.10528635284975134 0.10334016618607185 C 0.10506549681984566 0.10373772994218994 0.10396843272059136 0.10429347065055833 0.10430251561105726 0.10434517327381948 C 0.10396843272059136 0.10429347065055833 0.10307383140519788 0.10263172820642248 0.10328185550695593 0.10302995044650498 C 0.10307383140519788 0.10263172820642248 0.10301645691610113 0.10177682139779444 0.10305437100050896 0.10195583983332451" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.021692217317265138 0.01969476171262892 C 0.021769863246687268 0.019933731311340065 0.02091308375329868 0.021614749058287253 0.021116363435613877 0.021467057724005843 C 0.02091308375329868 0.021614749058287253 0.01904958144716756 0.021319366389724433 0.019252861129482757 0.021467057724005843 C 0.01904958144716756 0.021319366389724433 0.01875465317725362 0.019455792113917774 0.01867700724783149 0.01969476171262892 C 0.01875465317725362 0.019455792113917774 0.020435879788334447 0.018599422539472096 0.02018461228254831 0.018599422539472096 C 0.020435879788334447 0.018599422539472096 0.021769863246687268 0.019933731311340065 0.021692217317265138 0.01969476171262892 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027419487806183165 0.02605937823328933 C 0.027472358554177845 0.02622209766399067 0.026888959359666523 0.02736673803773433 0.027027376774927198 0.02726617189893087 C 0.026888959359666523 0.02736673803773433 0.02562006140779436 0.027165605760127408 0.025758478823055046 0.02726617189893087 C 0.02562006140779436 0.027165605760127408 0.025419238539793627 0.02589665880258799 0.02536636779179896 0.02605937823328933 C 0.025419238539793627 0.02589665880258799 0.026564021133523068 0.02531353873051479 0.02639292779899105 0.02531353873051479 C 0.026564021133523068 0.02531353873051479 0.027472358554177845 0.02622209766399067 0.027419487806183165 0.02605937823328933 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35434565889154657,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17450750017557515 0.18664116645603634 C 0.17457375527328678 0.18693343446519864 0.17536226970634872 0.19078716874361706 0.1753025613481146 0.19014838256598388 C 0.17536226970634872 0.19078716874361706 0.17521745373490702 0.19465311875610541 0.17522400047438452 0.19430660058763452" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17522400047438452 0.19430660058763452 C 0.17517564489527943 0.19455198550561728 0.1744936496819783 0.19781802635222526 0.17464373352512344 0.19725121960342767 C 0.1744936496819783 0.19781802635222526 0.173321266092603 0.20142970340402036 0.17342299435664305 0.20110828157320554" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17342299435664305 0.20110828157320554 C 0.1734292546787226 0.20075837106926328 0.17348514435534013 0.19638018326066115 0.17349811822159766 0.19690935552589856 C 0.17348514435534013 0.19638018326066115 0.17324807377321563 0.19457895262906136 0.1732673079615527 0.19475821439035654" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1732673079615527 0.19475821439035654 C 0.17320550898652223 0.19441873039573496 0.17247093334340066 0.1898088586782968 0.17252572026118693 0.19068440645489765 C 0.17247093334340066 0.1898088586782968 0.17261687700536166 0.1837155772891672 0.17260986494811745 0.18425164107114647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17260986494811745 0.18425164107114647 C 0.1726852552376278 0.18429962895985127 0.17367268469119623 0.1850266228510117 0.17351454842224143 0.18482749573560422 C 0.17367268469119623 0.1850266228510117 0.1745902461550196 0.18679230568273902 0.17450750017557515 0.18664116645603634" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35240700490277654,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.1714942327721101 0.18656477878445557 C 0.17157966402247837 0.18641931767723413 0.17268109941740462 0.18462705376553518 0.17251940777652938 0.1848192454977983 C 0.17268109941740462 0.18462705376553518 0.17351079285312 0.1842117473722565 0.173434532462613 0.1842584779972982" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.173434532462613 0.1842584779972982 C 0.17343169544872966 0.18479457639257632 0.17334189630447813 0.19156509187567342 0.1734004882960127 0.19069165874063582 C 0.17334189630447813 0.19156509187567342 0.1726756735865469 0.1950770103575088 0.17273142856419813 0.19473967561774932" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17273142856419813 0.19473967561774932 C 0.17273204311500984 0.19491713715383074 0.17276038872333122 0.1974291037144322 0.1727388031739386 0.19686921405072652 C 0.17276038872333122 0.1974291037144322 0.17301142615549034 0.20184077970984166 0.17299045515690945 0.20145835158221742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17299045515690945 0.20145835158221742 C 0.17287641079986676 0.2011226327087084 0.17144687589674568 0.19683157774611962 0.17162192287239736 0.19742972510010917 C 0.17144687589674568 0.19683157774611962 0.17082888883048034 0.1940181548538622 0.17088989144908934 0.19428058333434273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17088989144908934 0.19428058333434273 C 0.17086856027880823 0.19393300781143574 0.17068427918263457 0.1894666933469682 0.17063391740571618 0.1901096770594588 C 0.17068427918263457 0.1894666933469682 0.1715659257193096 0.18626937059487197 0.1714942327721101 0.18656477878445557" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19561704789625814 0.17892734283795877 C 0.19555423420119117 0.17830048050933806 0.19474859054914595 0.17041233817418042 0.19486328355545435 0.17140499489450997 C 0.19474859054914595 0.17041233817418042 0.19418885250931583 0.16664966780229543 0.19424073182055726 0.16701546219400423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19424073182055726 0.16701546219400423 C 0.1942214502697136 0.16668668831362204 0.19404638690450512 0.1622427163779444 0.1940093532104334 0.16307017562941784 C 0.19404638690450512 0.1622427163779444 0.19474145139433363 0.15658726580523172 0.19468513614941824 0.15708595117632296" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19468513614941824 0.15708595117632296 C 0.1947541103515661 0.1570556567347385 0.19564434459456861 0.15671876008636482 0.19551282657519264 0.15672241787730956 C 0.19564434459456861 0.15671876008636482 0.19632589619915802 0.15706869433562565 0.1962633523819299 0.15704205768498594" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1962633523819299 0.15704205768498594 C 0.19632079851150455 0.15756269878856155 0.19699268769093853 0.16410335848105922 0.1969527059368257 0.1632897509278931 C 0.19699268769093853 0.16410335848105922 0.19672566905582178 0.16709831477257006 0.19674313343128363 0.16680534832297952" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19674313343128363 0.16680534832297952 C 0.19670911124088608 0.1671719450712202 0.1962410266852608 0.17221467551144948 0.19633486714651294 0.17120450930186787 C 0.1962410266852608 0.17221467551144948 0.19555722962540356 0.1795709122992997 0.19561704789625814 0.17892734283795877" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,171 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g id="編節1">
<g transform="translate(0.3213105737601799,0.13389549078914734) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14065887184510625 0.11460177227368223 C 0.1408108562807152 0.11478060703819197 0.14270689644550907 0.11713613493763485 0.14248268507241377 0.116747789447799 C 0.14270689644550907 0.11713613493763485 0.1434216352597362 0.1194714288770386 0.14334940832224985 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224985 0.11926191815171247 C 0.14326184340435533 0.11947756406920186 0.1420519967971106 0.12223801465142105 0.14229862930751544 0.12184966916158521 C 0.1420519967971106 0.12223801465142105 0.14023075060488152 0.12409476360208903 0.14038981819739182 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739182 0.12392206402974258 C 0.14036278343203218 0.12402295914763548 0.1399645058951833 0.12530756091488346 0.14006540101307619 0.12513280544445732 C 0.1399645058951833 0.12530756091488346 0.13900432131225107 0.12612002479274906 0.1391790767826772 0.12601912967485618 C 0.13900432131225107 0.12612002479274906 0.13776654513217684 0.12634354685917182 0.1379683353679626 0.12634354685917182 C 0.13776654513217684 0.12634354685917182 0.1365828384828218 0.1259182345569633 0.13675759395324794 0.12601912967485618 C 0.1365828384828218 0.1259182345569633 0.13577037460495617 0.12495804997403119 0.13587126972284905 0.12513280544445732 C 0.13577037460495617 0.12495804997403119 0.13551981777317365 0.12382116891184969 0.1355468525385333 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1355468525385333 0.12392206402974258 C 0.135387784946023 0.12374936445739614 0.13339140891800488 0.12146132367174936 0.1336380414284097 0.12184966916158521 C 0.13339140891800488 0.12146132367174936 0.13249969749578078 0.11904627223422304 0.1325872624136753 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136753 0.11926191815171244 C 0.13265948935116165 0.11905240742638633 0.13367819703660672 0.11635944395796315 0.1334539856635114 0.116747789447799 C 0.13367819703660672 0.11635944395796315 0.1354297833264279 0.1144229375091725 0.13527779889081895 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017985,0.13855563666717757) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10701944173009977 0.0995217617126694 C 0.10694017279817102 0.09989604478983355 0.1061089014188307 0.10260004395381073 0.1065438281385273 0.10176746017565433 C 0.1061089014188307 0.10260004395381073 0.10371139708039742 0.1046253617229477 0.10440988141192016 0.10451726438160774 C 0.10371139708039742 0.1046253617229477 0.10189116705562863 0.10158483717192755 0.10235292214939083 0.1024160442236941 C 0.10189116705562863 0.10158483717192755 0.10163935084934693 0.09953002207100842 0.10163935084934693 0.09953002207100842 C 0.10163935084934693 0.09953002207100842 0.10281467724315303 0.10324725127546065 0.10235292214939083 0.1024160442236941 C 0.10281467724315303 0.10324725127546065 0.10446057007552778 0.1052486975421745 0.10440988141192016 0.10451726438160774 C 0.10446057007552778 0.1052486975421745 0.10224275795480607 0.10752545657323248 0.10265705413103651 0.10680464318709461 C 0.10224275795480607 0.10752545657323248 0.10180194605845436 0.10918172828365838 0.10192410435453753 0.10884214469843498" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.32131057376017985,0.14321578254520767) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739182 0.11460177227368223 C 0.1405266041894399 0.114762723561741 0.1422330403377545 0.11688269867123963 0.1420312501019687 0.11653318773038736 C 0.1422330403377545 0.11688269867123963 0.14287630527055883 0.11898446321670295 0.14281130102682113 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14281130102682113 0.11879590356390944 C 0.14273249260071605 0.1189899848896499 0.1416436306541958 0.1214743904136472 0.14186559991356015 0.12112487947279495 C 0.1416436306541958 0.1214743904136472 0.14000450908118964 0.12314546446924837 0.1401476699144489 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401476699144489 0.12299003485413657 C 0.14012333862562523 0.12308084046024016 0.13976488884246124 0.12423698205076321 0.13985569444856483 0.12407970212737969 C 0.13976488884246124 0.12423698205076321 0.13890072271782228 0.12496819954084241 0.1390580026412058 0.1248773939347388 C 0.13890072271782228 0.12496819954084241 0.1377867241557554 0.12516936940062295 0.1379683353679626 0.12516936940062295 C 0.1377867241557554 0.12516936940062295 0.1367213881713359 0.12478658832863519 0.1368786680947194 0.1248773939347388 C 0.1367213881713359 0.12478658832863519 0.1359901706812567 0.12392242220399617 0.13608097628736032 0.12407970212737969 C 0.1359901706812567 0.12392242220399617 0.13576466953265254 0.12289922924803297 0.1357890008214762 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214762 0.12299003485413657 C 0.13564583998821694 0.12283460523902476 0.13384910156300078 0.12077536853194269 0.1340710708223651 0.12112487947279495 C 0.13384910156300078 0.12077536853194269 0.13304656128299908 0.11860182223816898 0.13312536970910416 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910416 0.11879590356390944 C 0.13319037395284186 0.11860734391111594 0.13410721086974223 0.11618367678953505 0.13390542063395647 0.11653318773038732 C 0.13410721086974223 0.11618367678953505 0.13568363853058135 0.11444082098562347 0.1355468525385333 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601798,0.1474099138354349) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675122289465533 0.09998832557258422 C 0.10667988085591945 0.10032518034203194 0.10593173661451313 0.10275877958961131 0.10632317066224006 0.10200945418927057 C 0.10593173661451313 0.10275877958961131 0.10377398270992325 0.10458156558183468 0.10440261860829371 0.1044842779746287 C 0.10377398270992325 0.10458156558183468 0.10213577568763135 0.10184509348591653 0.10255135527201732 0.10259317983250642 C 0.10213577568763135 0.10184509348591653 0.1019091411019779 0.09999575989508931 0.1019091411019779 0.09999575989508931 C 0.1019091411019779 0.09999575989508931 0.10296693485640329 0.10334126617909631 0.10255135527201732 0.10259317983250642 C 0.10296693485640329 0.10334126617909631 0.10444823840554056 0.10514256781913878 0.10440261860829371 0.1044842779746287 C 0.10444823840554056 0.10514256781913878 0.10245220749689103 0.10719165094709095 0.10282507405549843 0.10654291889956687 C 0.10245220749689103 0.10719165094709095 0.10205547679017447 0.10868229548647426 0.10216541925664932 0.10837667025977321" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3213105737601798,0.151604045125662) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1401476699144489 0.11460177227368223 C 0.14027077730729218 0.11474662843293512 0.1418065698407752 0.11665460603148387 0.141624958628568 0.11634004618471683 C 0.1418065698407752 0.11665460603148387 0.14238550828029914 0.11854619412240089 0.1423270044609352 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1423270044609352 0.11837649043488672 C 0.14225607687744066 0.11855116362805314 0.14127610112557248 0.12078712859965067 0.1414758734590004 0.12047256875288363 C 0.14127610112557248 0.12078712859965067 0.139800891709867 0.12229109524969174 0.13992973645980034 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980034 0.12215120859609112 C 0.13990783829985903 0.12223293364158436 0.1395852334950113 0.12327346107305513 0.13966695854050457 0.12313190914200996 C 0.1395852334950113 0.12327346107305513 0.13880748398283627 0.12393155681412645 0.13894903591388144 0.1238498317686332 C 0.13880748398283627 0.12393155681412645 0.13780488527697612 0.12411260968792882 0.1379683353679626 0.12411260968792882 C 0.13780488527697612 0.12411260968792882 0.13684608289099856 0.12376810672313997 0.13698763482204374 0.1238498317686332 C 0.13684608289099856 0.12376810672313997 0.13618798714992733 0.12299035721096478 0.13626971219542056 0.12313190914200996 C 0.13618798714992733 0.12299035721096478 0.13598503611618362 0.12206948355059788 0.13600693427612492 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612492 0.12215120859609112 C 0.13587808952619157 0.1220113219424905 0.13426102494349687 0.1201580089061166 0.1344607972769248 0.12047256875288363 C 0.13426102494349687 0.1201580089061166 0.1335387386914952 0.11820181724172031 0.1336096662749898 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1336096662749898 0.11837649043488672 C 0.13366817009435375 0.11820678674737256 0.13449332331956432 0.11602548633794979 0.13431171210735712 0.11634004618471683 C 0.13449332331956432 0.11602548633794979 0.13591210821431948 0.11445691611442935 0.1357890008214762 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017974,0.1553787632868665) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650982594275545 0.10040823304650746 C 0.10644561810789314 0.10071140233901044 0.1057722882906274 0.102901641661832 0.10612457893358165 0.10222724880152531 C 0.1057722882906274 0.102901641661832 0.1038303097764965 0.10454214905483297 0.10439608208502991 0.1044545902083476 C 0.1038303097764965 0.10454214905483297 0.10235592345643378 0.10207932416850657 0.10272994508238116 0.10275260188043749 C 0.10235592345643378 0.10207932416850657 0.10215195232934561 0.10041492393676214 0.10215195232934561 0.10041492393676214 C 0.10215195232934561 0.10041492393676214 0.10310396670832854 0.1034258795923684 0.10272994508238116 0.10275260188043749 C 0.10310396670832854 0.1034258795923684 0.10443713990255209 0.10504705106840669 0.10439608208502991 0.1044545902083476 C 0.10443713990255209 0.10504705106840669 0.10264071208476754 0.10689122588356362 0.10297629198751419 0.10630736704079195 C 0.10264071208476754 0.10689122588356362 0.1022836544487226 0.10823280596900858 0.10238260266854997 0.10795774326497763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.32131057376017974,0.1591534814480709) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980034 0.11460177227368223 C 0.14004053311335926 0.11473214281700983 0.1414227463934939 0.11644932265570374 0.14125929630250741 0.1161662187936134 C 0.1414227463934939 0.11644932265570374 0.14194379098906557 0.11815175193752903 0.141891137551638 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.141891137551638 0.11799901861876629 C 0.14182730272649288 0.11815622449261605 0.14094532454981146 0.12016859296705384 0.14112511964989657 0.11988548910496352 C 0.14094532454981146 0.12016859296705384 0.1396176360756765 0.1215221629520908 0.13973359635061652 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061652 0.12139626496385024 C 0.13971388800666934 0.12146981750479416 0.13942354368230642 0.1224062921931179 0.13949709622325032 0.12227889545517724 C 0.13942354368230642 0.1224062921931179 0.138723569121349 0.12299857836008199 0.13885096585928966 0.12292502581913807 C 0.138723569121349 0.12299857836008199 0.13782123028607476 0.1231615259465042 0.1379683353679626 0.1231615259465042 C 0.13782123028607476 0.1231615259465042 0.136958308138695 0.12285147327819415 0.13708570487663566 0.12292502581913807 C 0.136958308138695 0.12285147327819415 0.1363660219717308 0.12215149871723659 0.13643957451267472 0.12227889545517724 C 0.1363660219717308 0.12215149871723659 0.13618336604136147 0.12132271242290632 0.13620307438530865 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530865 0.12139626496385024 C 0.13608711411036864 0.12127036697560968 0.1346317559859435 0.1196023852428732 0.13481155108602863 0.11988548910496352 C 0.1346317559859435 0.1196023852428732 0.13398169835914203 0.11784181274491652 0.13404553318428716 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428716 0.11799901861876629 C 0.13409818662171472 0.11784628530000354 0.13484082452440416 0.11588311493152306 0.13467737443341768 0.1161662187936134 C 0.13484082452440416 0.11588311493152306 0.13611773092968385 0.11447140173035464 0.13600693427612492 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601797,0.16255072779315494) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629256868604538 0.10078614977303844 C 0.10623478163466932 0.10105900213629111 0.10562878479913024 0.1030302175268305 0.10594584637778905 0.10242326395255448 C 0.10562878479913024 0.1030302175268305 0.10388100413641245 0.10450667418053142 0.10439019921409252 0.10442787121869458 C 0.10388100413641245 0.10450667418053142 0.10255405644835593 0.10229013178283765 0.10289067591170857 0.10289608172357546 C 0.10255405644835593 0.10229013178283765 0.10237048243397663 0.10079217157426766 0.10237048243397663 0.10079217157426766 C 0.10237048243397663 0.10079217157426766 0.10322729537506121 0.10350203166431328 0.10289067591170857 0.10289608172357546 C 0.10322729537506121 0.10350203166431328 0.10442715124986249 0.10496108599274775 0.10439019921409252 0.10442787121869458 C 0.10442715124986249 0.10496108599274775 0.10281036621385636 0.10662084332638898 0.10311238812632836 0.10609537036789447 C 0.10281036621385636 0.10662084332638898 0.10248901434141588 0.10782826540328949 0.10257806773926052 0.10758070896966163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3213105737601797,0.16594797413823892) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061652 0.11460177227368223 C 0.13983331333881957 0.11471910576267708 0.1410773052909409 0.11626456761750158 0.14093020020905306 0.11600977414162027 C 0.1410773052909409 0.11626456761750158 0.1415462454269553 0.11779675397114435 0.1414988573332705 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414988573332705 0.11765929398425788 C 0.1414414059906399 0.11780077927072267 0.1406476256316266 0.11961191089771672 0.14080944122170322 0.11935711742183543 C 0.1406476256316266 0.11961191089771672 0.13945270600490514 0.12083012388425 0.13955707025235115 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235115 0.1207168156948335 C 0.13953933274279867 0.12078301298168302 0.13927802285087204 0.1216258402011743 0.13934422013772158 0.12151118313702772 C 0.13927802285087204 0.1216258402011743 0.13864804574601025 0.12215889775144197 0.13876270281015685 0.12209270046459245 C 0.13864804574601025 0.12215889775144197 0.13783594079426356 0.12230555057922199 0.1379683353679626 0.12230555057922199 C 0.13783594079426356 0.12230555057922199 0.1370593108616217 0.12202650317774293 0.13717396792576828 0.12209270046459245 C 0.1370593108616217 0.12202650317774293 0.1365262533113541 0.12139652607288114 0.13659245059820363 0.12151118313702772 C 0.1365262533113541 0.12139652607288114 0.1363618629740215 0.12065061840798398 0.13637960048357398 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357398 0.1207168156948335 C 0.13627523623612797 0.120603507505417 0.13496541392414543 0.11910232394595413 0.13512722951422204 0.11935711742183543 C 0.13496541392414543 0.11910232394595413 0.13438036206002418 0.11751780869779309 0.1344378134026548 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1344378134026548 0.11765929398425788 C 0.13448520149633958 0.11752183399737141 0.13515357560875996 0.11575498066573896 0.13500647052687215 0.11600977414162027 C 0.13515357560875996 0.11575498066573896 0.1363027913735117 0.11448443878468739 0.13620307438530865 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017963,0.16900549584881458) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609703715500646 0.10112627482691638 C 0.106045028808768 0.10137184195384379 0.10549963165678276 0.10314593580532919 0.1057849870775757 0.10259967758848078 C 0.10549963165678276 0.10314593580532919 0.10392662906033673 0.10447474679365994 0.10438490463024878 0.10440382412800679 C 0.10392662906033673 0.10447474679365994 0.10273237614108599 0.10247985863573565 0.10303533365810337 0.10302521358239967 C 0.10273237614108599 0.10247985863573565 0.10256715952814453 0.10113169444802263 0.10256715952814453 0.10113169444802263 C 0.10256715952814453 0.10113169444802263 0.10333829117512075 0.1035705685290637 0.10303533365810337 0.10302521358239967 C 0.10333829117512075 0.1035705685290637 0.10441816146244173 0.10488371742465463 0.10438490463024878 0.10440382412800679 C 0.10441816146244173 0.10488371742465463 0.10296305493003625 0.10637749902493181 0.10323487465126104 0.10590457336228674 C 0.10296305493003625 0.10637749902493181 0.10267383824483994 0.10746417889414223 0.1027539863029001 0.10724137810387716" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.32131057376017963,0.17206301755939019) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235115 0.11460177227368223 C 0.1396468155417339 0.11470737241377758 0.14076640829864304 0.11609828808311966 0.140634013724944 0.11586897395482648 C 0.14076640829864304 0.11609828808311966 0.14118845442105593 0.11747725580139809 0.14114580513673963 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14114580513673963 0.11735354181320028 C 0.1410940989283721 0.11748087857101859 0.1403796966052602 0.11911089703531323 0.14052533063632916 0.11888158290702006 C 0.1403796966052602 0.11911089703531323 0.13930426894121084 0.12020728872319325 0.13939819676391224 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391224 0.12010531135271839 C 0.13938223300531502 0.12016488891088295 0.1391470541025811 0.12092343340842512 0.13920663166074568 0.12082024205069321 C 0.1391470541025811 0.12092343340842512 0.13858007470820544 0.12140318520366601 0.13868326606593737 0.12134360764550145 C 0.13858007470820544 0.12140318520366601 0.13784918025163345 0.12153517274866801 0.1379683353679626 0.12153517274866801 C 0.13784918025163345 0.12153517274866801 0.13715021331225577 0.12128403008733689 0.1372534046699877 0.12134360764550145 C 0.13715021331225577 0.12128403008733689 0.13667046151701484 0.12071705069296129 0.13673003907517942 0.12082024205069321 C 0.13667046151701484 0.12071705069296129 0.1365225102134157 0.12004573379455383 0.1365384739720129 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1365384739720129 0.12010531135271839 C 0.1364445461493115 0.12000333398224353 0.13526570606852703 0.11865226877872688 0.135411340099596 0.11888158290702006 C 0.13526570606852703 0.11865226877872688 0.134739159390818 0.11722620505538196 0.13479086559918552 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918552 0.11735354181320028 C 0.13483351488350181 0.11722982782500246 0.1354350515846803 0.1156396598265333 0.13530265701098126 0.11586897395482648 C 0.1354350515846803 0.1156396598265333 0.1364693457729567 0.11449617213358688 0.13637960048357398 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601796,0.17481478709890824) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592105877707135 0.10143238737540648 C 0.10587425126545674 0.10165339778964114 0.10538339382867001 0.10325008225597801 0.10564021370738366 0.10275844986081444 C 0.10538339382867001 0.10325008225597801 0.1039676914918686 0.10444601214547572 0.10438013950478946 0.10438218174638789 C 0.1039676914918686 0.10444601214547572 0.10289286386454288 0.10265061280334381 0.10316552562985852 0.10314143225534145 C 0.10289286386454288 0.10265061280334381 0.10274416891289567 0.10143726503440209 0.10274416891289567 0.10143726503440209 C 0.10274416891289567 0.10143726503440209 0.10343818739517416 0.10363225170733908 0.10316552562985852 0.10314143225534145 C 0.10343818739517416 0.10363225170733908 0.10441007065376312 0.10481408571337095 0.10438013950478946 0.10438218174638789 C 0.10441007065376312 0.10481408571337095 0.10310047477459822 0.10615848915362033 0.10334511252370052 0.10573285605723978 C 0.10310047477459822 0.10615848915362033 0.1028401797579215 0.10713650103590973 0.10291231301017564 0.10693598032467116" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.3213105737601796,0.17756655663842635) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391224 0.11460177227368223 C 0.1394789675243567 0.11469681239976806 0.14048660100557492 0.11594863650217593 0.14036744588924577 0.11574225378671207 C 0.14048660100557492 0.11594863650217593 0.14086644251574676 0.1171897074486265 0.14082805815986207 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14082805815986207 0.11707836485924847 C 0.14078152257233129 0.11719296794128496 0.14013856048153042 0.1186599845591502 0.1402696311094925 0.11845360184368633 C 0.14013856048153042 0.1186599845591502 0.13917067558388596 0.11964673707824212 0.13925521062431723 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431723 0.11955495744481476 C 0.13924084324157973 0.11960857724716287 0.13902918222911914 0.12029126729495083 0.13908280203146725 0.1201983950729921 C 0.13902918222911914 0.12029126729495083 0.13851890077418122 0.12072304391066765 0.13861177299613994 0.12066942410831955 C 0.13851890077418122 0.12072304391066765 0.13786109576326638 0.12084183270116945 0.1379683353679626 0.12084183270116945 C 0.13786109576326638 0.12084183270116945 0.1372320255178265 0.12061580430597144 0.13732489773978526 0.12066942410831955 C 0.1372320255178265 0.12061580430597144 0.13680024890210957 0.12010552285103336 0.13685386870445768 0.1201983950729921 C 0.13680024890210957 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160795 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160795 0.11955495744481476 C 0.13659692507117668 0.11946317781138739 0.13553596899847065 0.11824721912822247 0.1356670396264327 0.11845360184368633 C 0.13553596899847065 0.11824721912822247 0.13506207698853243 0.11696376177721197 0.13510861257606321 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13510861257606321 0.11707836485924847 C 0.1351469969319479 0.11696702226987044 0.13568837996300848 0.11553587107124819 0.13556922484667933 0.11574225378671205 C 0.13568837996300848 0.11553587107124819 0.13661924473245737 0.11450673214759642 0.1365384739720129 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601795,0.1800431492239926) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576267823692977 0.10170788866904754 C 0.1057205514764766 0.10190679804185873 0.10527877978336853 0.10334381406156194 0.10550991767421082 0.10290134490591472 C 0.10527877978336853 0.10334381406156194 0.10400464768024728 0.10442015096210991 0.10437585089187604 0.10436270360293086 C 0.10400464768024728 0.10442015096210991 0.10303730281565425 0.10280429155419113 0.10328269840443832 0.10324602906098901 C 0.10303730281565425 0.10280429155419113 0.1029034773591716 0.10171227856214361 0.1029034773591716 0.10171227856214361 C 0.1029034773591716 0.10171227856214361 0.1035280939932224 0.10368776656778689 0.10328269840443832 0.10324602906098901 C 0.1035280939932224 0.10368776656778689 0.10440278892595231 0.10475141717321562 0.10437585089187604 0.10436270360293086 C 0.10440278892595231 0.10475141717321562 0.10322415263470393 0.10596138026944006 0.103444326608896 0.10557831048269757 C 0.10322415263470393 0.10596138026944006 0.10298988711969487 0.10684159096350049 0.1030548070467236 0.10666112232338579" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3213105737601795,0.18251974180955888) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431723 0.11460177227368223 C 0.13932790430871725 0.11468730838715947 0.1402347744418137 0.11581395007932656 0.14012753483711746 0.11562820563540908 C 0.1402347744418137 0.11581395007932656 0.14057663180096833 0.11693091393113209 0.1405420858806721 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405420858806721 0.11683070560069185 C 0.14050020385189438 0.11693384837452468 0.13992153797017365 0.11825416333060337 0.1400395015353395 0.1180684188866859 C 0.13992153797017365 0.11825416333060337 0.13905044156229357 0.11914224059778608 0.13912652309868173 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868173 0.11905963892770145 C 0.139113592454218 0.11910789674981476 0.13892309754300355 0.119722317792824 0.13897135536511684 0.11963873279306113 C 0.13892309754300355 0.119722317792824 0.13846384423355937 0.12011091674696914 0.13854742923332222 0.12006265892485583 C 0.13846384423355937 0.12011091674696914 0.137871819723736 0.12021782665842078 0.1379683353679626 0.12021782665842078 C 0.137871819723736 0.12021782665842078 0.13730565650284013 0.12001440110274253 0.13738924150260298 0.12006265892485583 C 0.13730565650284013 0.12001440110274253 0.13691705754869496 0.11955514779329826 0.13696531537080828 0.11963873279306113 C 0.13691705754869496 0.11955514779329826 0.1367972169927795 0.11901138110558815 0.13681014763724325 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13681014763724325 0.11905963892770145 C 0.13673406610085512 0.11897703725761682 0.13577920563541984 0.11788267444276843 0.13589716920058567 0.1180684188866859 C 0.13577920563541984 0.11788267444276843 0.1353527028264754 0.11672756282685902 0.13539458485525313 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539458485525313 0.11683070560069185 C 0.13542913077554933 0.11673049727025162 0.1359163755035038 0.11544246119149161 0.13580913589880755 0.11562820563540908 C 0.1359163755035038 0.11544246119149161 0.13675415379600797 0.114516236160205 0.13668146011160795 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.1847486751365685) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10562013575080237 0.10195583983332451 C 0.10558222166639453 0.10213485826885459 0.10518462714259726 0.10342817268658748 0.10539265124435532 0.10302995044650498 C 0.10518462714259726 0.10342817268658748 0.10403790824978813 0.10439687589708063 0.10437199114025403 0.10434517327381948 C 0.10403790824978813 0.10439687589708063 0.10316729787165431 0.10294260242995376 0.10338815390155998 0.10334016618607185 C 0.10316729787165431 0.10294260242995376 0.10304685496082001 0.10195979073711098 0.10304685496082001 0.10195979073711098 C 0.10304685496082001 0.10195979073711098 0.10360900993146564 0.10373772994218994 0.10338815390155998 0.10334016618607185 C 0.10360900993146564 0.10373772994218994 0.10439623537092269 0.10469501548707577 0.10437199114025403 0.10434517327381948 C 0.10439623537092269 0.10469501548707577 0.10333546270879906 0.10578398227367783 0.10353361928557193 0.10543921946560958 C 0.10333546270879906 0.10578398227367783 0.10312462374529098 0.1065761718983322 0.10318305167961683 0.10641375012222896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02018461228254831 0.018599422539472096 C 0.020435879788334454 0.018599422539472096 0.021769863246687306 0.019933731311340065 0.02169221731726518 0.01969476171262892 C 0.021769863246687306 0.019933731311340065 0.02091308375329863 0.021614749058287253 0.02111636343561383 0.021467057724005843 C 0.02091308375329863 0.021614749058287253 0.0190495814471676 0.021319366389724433 0.0192528611294828 0.021467057724005843 C 0.0190495814471676 0.021319366389724433 0.018754653177253573 0.019455792113917774 0.018677007247831445 0.01969476171262892 C 0.018754653177253573 0.019455792113917774 0.020435879788334454 0.018599422539472096 0.02018461228254831 0.018599422539472096 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.026392927798991044 0.02531353873051479 C 0.02656402113352306 0.02531353873051479 0.02747235855417783 0.02622209766399067 0.027419487806183158 0.02605937823328933 C 0.02747235855417783 0.02622209766399067 0.026888959359666446 0.02736673803773433 0.027027376774927128 0.02726617189893087 C 0.026888959359666446 0.02736673803773433 0.02562006140779431 0.027165605760127408 0.02575847882305499 0.02726617189893087 C 0.02562006140779431 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.02656402113352306 0.02531353873051479 0.026392927798991044 0.02531353873051479 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32034124676579434,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17133297740168535 0.1864181858431891 C 0.1714323607986386 0.18628557785822727 0.17269956653607238 0.18464679402382128 0.1725255781651245 0.18482689002364724 C 0.17269956653607238 0.18464679402382128 0.17349544282705426 0.18420954583041343 0.17342083785305967 0.18425703384527758" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17342083785305967 0.18425703384527758 C 0.17342777686804092 0.18478751362952792 0.17343005773590356 0.19145641886361603 0.17350410603283467 0.1906227912562815 C 0.17343005773590356 0.19145641886361603 0.172451270977974 0.19456371295637584 0.17253225828988636 0.19426056513329165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17253225828988636 0.19426056513329165 C 0.17249703748177062 0.19443614128201403 0.17198137397438013 0.19690676288029277 0.1721096085924973 0.1963674789179601 C 0.17198137397438013 0.19690676288029277 0.17090042906247874 0.2010956804948939 0.17099344287248017 0.20073197268128362" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17099344287248017 0.20073197268128362 C 0.17099166556269507 0.2003500667000055 0.17095491544062189 0.1955773483861517 0.17097211515505917 0.1961491009059462 C 0.17095491544062189 0.1955773483861517 0.1707716238945805 0.19368109590523325 0.17078704629923272 0.19387094244374964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17078704629923272 0.19387094244374964 C 0.17078447497212132 0.1935560598192325 0.17080168463243361 0.18947128789949713 0.1707561903738959 0.19009235094954385 C 0.17080168463243361 0.18947128789949713 0.17138104298733448 0.18611200541765952 0.17133297740168535 0.1864181858431891" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32227990075456453,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17470197133093124 0.1864181858431891 C 0.17475003691658036 0.18672436626871866 0.1753345472338066 0.19072997199856753 0.17527875835872078 0.19009235094954385 C 0.1753345472338066 0.19072997199856753 0.17537916112139756 0.19440107905496726 0.17537143783196088 0.19406963843147315" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17537143783196088 0.19406963843147315 C 0.1753661914579387 0.1942465263674095 0.17531973150316751 0.19677326514080362 0.17530848134369448 0.1961922936627094 C 0.17531973150316751 0.19677326514080362 0.17552293627913246 0.2014453797107615 0.17550643974563723 0.20104129616860367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17550643974563723 0.20104129616860367 C 0.17540612110319376 0.2006749615994809 0.17414420851895743 0.19609868532354538 0.17430261603631553 0.1966452813391303 C 0.17414420851895743 0.19609868532354538 0.17354746066242543 0.19430188253512248 0.17360554953734006 0.19448214398158462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17360554953734006 0.19448214398158462 C 0.17351599063421022 0.19416053125447602 0.17244822281163347 0.18977069874492258 0.17253084269978206 0.1906227912562815 C 0.17244822281163347 0.18977069874492258 0.17262104989453822 0.18372655406102725 0.17261411087955697 0.18425703384527758" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17261411087955697 0.18425703384527758 C 0.17268871585355156 0.18430452186014173 0.17368335893843995 0.1850069860234732 0.17350937056749208 0.18482689002364724 C 0.17368335893843995 0.1850069860234732 0.1748013547278845 0.1865507938281509 0.17470197133093124 0.1864181858431891" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19548456236006057 0.1778701079305874 C 0.19543335296577022 0.17726072307726143 0.19476750133253684 0.16960422000556077 0.1948700496285765 0.17055748969067552 C 0.19476750133253684 0.16960422000556077 0.19420264390583533 0.1660869868774216 0.19425398280758466 0.16643087170921037" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19425398280758466 0.16643087170921037 C 0.19423490210622896 0.16612179001437188 0.194061958275603 0.16194337381544757 0.1940250143913163 0.16272189137114873 C 0.194061958275603 0.16194337381544757 0.19475333400466716 0.1566192251799339 0.19469730941902477 0.15708866104079658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19469730941902477 0.15708866104079658 C 0.19476526918203876 0.1570608007756803 0.19564572639185787 0.15675252352387828 0.19551282657519264 0.15675433785940107 C 0.19564572639185787 0.15675252352387828 0.19635704727265876 0.1570929349441164 0.19629210721900753 0.15706688901452293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19629210721900753 0.15706688901452293 C 0.19634590721687986 0.15755534118199122 0.19697422473646362 0.1636921861715643 0.1969377071934754 0.1629283150241424 C 0.19697422473646362 0.1636921861715643 0.196713035279982 0.16650876176353932 0.1967303177348661 0.1662333427835857" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1967303177348661 0.1662333427835857 C 0.19669664994228517 0.16657798191409323 0.19622249127599445 0.1713387427785928 0.1963263042238949 0.17036901234967597 C 0.19622249127599445 0.1713387427785928 0.19541441720474104 0.1784951992289967 0.19548456236006057 0.1778701079305874" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g id="編節1">
<g transform="translate(0.353376331897162,0.13389549078914728) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1406588718451063 0.11460177227368223 C 0.14081085628071527 0.11478060703819197 0.14270689644550916 0.11713613493763485 0.14248268507241385 0.116747789447799 C 0.14270689644550916 0.11713613493763485 0.1434216352597363 0.11947142887703856 0.14334940832224996 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224996 0.11926191815171244 C 0.1432618434043554 0.11947756406920185 0.14205199679711067 0.12223801465142106 0.1422986293075155 0.12184966916158521 C 0.14205199679711067 0.12223801465142106 0.14023075060488158 0.12409476360208903 0.14038981819739188 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739188 0.12392206402974258 C 0.14036278343203223 0.12402295914763548 0.13996450589518336 0.12530756091488346 0.14006540101307624 0.12513280544445732 C 0.13996450589518336 0.12530756091488346 0.13900432131225113 0.12612002479274906 0.13917907678267727 0.12601912967485618 C 0.13900432131225113 0.12612002479274906 0.1377665451321769 0.12634354685917182 0.13796833536796266 0.12634354685917182 C 0.1377665451321769 0.12634354685917182 0.13658283848282188 0.1259182345569633 0.13675759395324802 0.12601912967485618 C 0.13658283848282188 0.1259182345569633 0.13577037460495622 0.12495804997403119 0.1358712697228491 0.12513280544445732 C 0.13577037460495622 0.12495804997403119 0.1355198177731737 0.12382116891184969 0.13554685253853335 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13554685253853335 0.12392206402974258 C 0.13538778494602305 0.12374936445739614 0.13339140891800497 0.12146132367174937 0.1336380414284098 0.12184966916158521 C 0.13339140891800497 0.12146132367174937 0.1324996974957809 0.11904627223422308 0.1325872624136754 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136754 0.11926191815171247 C 0.13265948935116176 0.11905240742638634 0.1336781970366068 0.11635944395796315 0.1334539856635115 0.116747789447799 C 0.1336781970366068 0.11635944395796315 0.13542978332642802 0.1144229375091725 0.13527779889081906 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716194,0.13855563666717752) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675040239677382 0.10884214469843498 C 0.10662824410069065 0.10850256111321158 0.10560315644404437 0.10608382980095674 0.1060174526202748 0.10680464318709461 C 0.10560315644404437 0.10608382980095674 0.10431531400299884 0.10378583122104099 0.10426462533939122 0.10451726438160774 C 0.10431531400299884 0.10378583122104099 0.10678333969568272 0.10158483717192755 0.10632158460192052 0.1024160442236941 C 0.10678333969568272 0.10158483717192755 0.10703515590196443 0.09953002207100842 0.10703515590196443 0.09953002207100842 C 0.10703515590196443 0.09953002207100842 0.10585982950815832 0.10324725127546065 0.10632158460192052 0.1024160442236941 C 0.10585982950815832 0.10324725127546065 0.10356614100786848 0.10440916704026779 0.10426462533939122 0.10451726438160774 C 0.10356614100786848 0.10440916704026779 0.1016957518930875 0.10093487639749793 0.10213067861278409 0.10176746017565433 C 0.1016957518930875 0.10093487639749793 0.10157579608928285 0.09914747863550524 0.1016550650212116 0.0995217617126694" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.35337633189716194,0.14321578254520761) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739188 0.11460177227368223 C 0.14052660418943996 0.114762723561741 0.14223304033775455 0.11688269867123958 0.14203125010196876 0.11653318773038732 C 0.14223304033775455 0.11688269867123958 0.14287630527055892 0.11898446321670295 0.1428113010268212 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1428113010268212 0.11879590356390944 C 0.14273249260071613 0.1189899848896499 0.14164363065419583 0.1214743904136472 0.14186559991356018 0.12112487947279495 C 0.14164363065419583 0.1214743904136472 0.14000450908118967 0.12314546446924837 0.14014766991444894 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14014766991444894 0.12299003485413657 C 0.14012333862562526 0.12308084046024016 0.13976488884246127 0.12423698205076321 0.13985569444856485 0.12407970212737969 C 0.13976488884246127 0.12423698205076321 0.13890072271782233 0.12496819954084241 0.13905800264120585 0.1248773939347388 C 0.13890072271782233 0.12496819954084241 0.13778672415575546 0.12516936940062295 0.13796833536796266 0.12516936940062295 C 0.13778672415575546 0.12516936940062295 0.13672138817133592 0.12478658832863519 0.13687866809471944 0.1248773939347388 C 0.13672138817133592 0.12478658832863519 0.13599017068125688 0.12392242220399617 0.13608097628736046 0.12407970212737969 C 0.13599017068125688 0.12392242220399617 0.13576466953265262 0.12289922924803297 0.1357890008214763 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214763 0.12299003485413657 C 0.13564583998821703 0.12283460523902476 0.1338491015630008 0.12077536853194269 0.13407107082236516 0.12112487947279495 C 0.1338491015630008 0.12077536853194269 0.1330465612829991 0.11860182223816898 0.13312536970910419 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910419 0.11879590356390944 C 0.1331903739528419 0.11860734391111594 0.13410721086974237 0.11618367678953509 0.1339054206339566 0.11653318773038736 C 0.13410721086974237 0.11618367678953509 0.1356836385305814 0.11444082098562347 0.13554685253853335 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971619,0.14740991383543484) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650908749466204 0.10837667025977321 C 0.10639914502818718 0.10807104503307216 0.10547656613720548 0.10589418685204278 0.10584943269581287 0.10654291889956687 C 0.10547656613720548 0.10589418685204278 0.10431750794026452 0.10382598813011862 0.10427188814301767 0.1044842779746287 C 0.10431750794026452 0.10382598813011862 0.10653873106367996 0.10184509348591653 0.10612315147929399 0.10259317983250642 C 0.10653873106367996 0.10184509348591653 0.10676536564933349 0.09999575989508931 0.10676536564933349 0.09999575989508931 C 0.10676536564933349 0.09999575989508931 0.10570757189490802 0.10334126617909631 0.10612315147929399 0.10259317983250642 C 0.10570757189490802 0.10334126617909631 0.10364325224464722 0.10438699036742272 0.10427188814301767 0.1044842779746287 C 0.10364325224464722 0.10438699036742272 0.10195990204134435 0.10126012878892983 0.1023513360890713 0.10200945418927057 C 0.10195990204134435 0.10126012878892983 0.10185194181792016 0.0996514708031365 0.10192328385665604 0.09998832557258422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3533763318971619,0.15160404512566195) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14014766991444894 0.11460177227368223 C 0.1402707773072922 0.11474662843293512 0.14180656984077528 0.11665460603148387 0.14162495862856808 0.11634004618471683 C 0.14180656984077528 0.11665460603148387 0.14238550828029928 0.11854619412240089 0.14232700446093535 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14232700446093535 0.11837649043488672 C 0.14225607687744077 0.11855116362805314 0.1412761011255725 0.12078712859965067 0.14147587345900042 0.12047256875288363 C 0.1412761011255725 0.12078712859965067 0.1398008917098671 0.12229109524969174 0.13992973645980042 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980042 0.12215120859609112 C 0.13990783829985912 0.12223293364158436 0.13958523349501142 0.12327346107305513 0.13966695854050468 0.12313190914200996 C 0.13958523349501142 0.12327346107305513 0.1388074839828363 0.12393155681412645 0.13894903591388147 0.1238498317686332 C 0.1388074839828363 0.12393155681412645 0.13780488527697618 0.12411260968792882 0.13796833536796266 0.12411260968792882 C 0.13780488527697618 0.12411260968792882 0.1368460828909986 0.12376810672313997 0.13698763482204376 0.1238498317686332 C 0.1368460828909986 0.12376810672313997 0.1361879871499274 0.12299035721096478 0.1362697121954206 0.12313190914200996 C 0.1361879871499274 0.12299035721096478 0.13598503611618368 0.12206948355059788 0.13600693427612498 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612498 0.12215120859609112 C 0.13587808952619165 0.1220113219424905 0.134261024943497 0.1201580089061166 0.13446079727692492 0.12047256875288363 C 0.134261024943497 0.1201580089061166 0.13353873869149535 0.11820181724172031 0.13360966627498994 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13360966627498994 0.11837649043488672 C 0.1336681700943539 0.11820678674737256 0.1344933233195644 0.11602548633794979 0.1343117121073572 0.11634004618471683 C 0.1344933233195644 0.11602548633794979 0.13591210821431957 0.11445691611442935 0.1357890008214763 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716183,0.15537876328686645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629190408276137 0.10795774326497763 C 0.10619295586293401 0.10768268056094668 0.10536263486105055 0.10572350819802029 0.10569821476379719 0.10630736704079195 C 0.10536263486105055 0.10572350819802029 0.10431948248380365 0.10386212934828852 0.10427842466628148 0.1044545902083476 C 0.10431948248380365 0.10386212934828852 0.10631858329487756 0.10207932416850657 0.10594456166893018 0.10275260188043749 C 0.10631858329487756 0.10207932416850657 0.10652255442196577 0.10041492393676214 0.10652255442196577 0.10041492393676214 C 0.10652255442196577 0.10041492393676214 0.1055705400429828 0.1034258795923684 0.10594456166893018 0.10275260188043749 C 0.1055705400429828 0.1034258795923684 0.10371265235774807 0.10436703136186223 0.10427842466628148 0.1044545902083476 C 0.10371265235774807 0.10436703136186223 0.10219763717477544 0.10155285594121863 0.10254992781772969 0.10222724880152531 C 0.10219763717477544 0.10155285594121863 0.10210047297369368 0.10010506375400449 0.10216468080855597 0.10040823304650746" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.35337633189716183,0.15915348144807084) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980042 0.11460177227368223 C 0.14004053311335934 0.11473214281700983 0.14142274639349403 0.11644932265570374 0.14125929630250755 0.1161662187936134 C 0.14142274639349403 0.11644932265570374 0.1419437909890656 0.11815175193752903 0.14189113755163804 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14189113755163804 0.11799901861876629 C 0.14182730272649294 0.11815622449261605 0.14094532454981157 0.12016859296705384 0.14112511964989669 0.11988548910496352 C 0.14094532454981157 0.12016859296705384 0.13961763607567657 0.1215221629520908 0.13973359635061658 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061658 0.12139626496385024 C 0.1397138880066694 0.12146981750479416 0.13942354368230656 0.1224062921931179 0.13949709622325046 0.12227889545517724 C 0.13942354368230656 0.1224062921931179 0.13872356912134906 0.12299857836008199 0.13885096585928972 0.12292502581913807 C 0.13872356912134906 0.12299857836008199 0.13782123028607482 0.1231615259465042 0.13796833536796266 0.1231615259465042 C 0.13782123028607482 0.1231615259465042 0.13695830813869508 0.12285147327819415 0.1370857048766357 0.12292502581913807 C 0.13695830813869508 0.12285147327819415 0.13636602197173103 0.12215149871723659 0.13643957451267497 0.12227889545517724 C 0.13636602197173103 0.12215149871723659 0.1361833660413615 0.12132271242290632 0.13620307438530868 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530868 0.12139626496385024 C 0.1360871141103687 0.12127036697560968 0.1346317559859436 0.1196023852428732 0.1348115510860287 0.11988548910496352 C 0.1346317559859436 0.1196023852428732 0.1339816983591421 0.11784181274491652 0.13404553318428722 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428722 0.11799901861876629 C 0.13409818662171477 0.11784628530000354 0.13484082452440424 0.11588311493152306 0.13467737443341776 0.1161662187936134 C 0.13484082452440424 0.11588311493152306 0.1361177309296839 0.11447140173035464 0.13600693427612498 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971618,0.16255072779315488) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609643901205082 0.10758070896966163 C 0.1060073856142062 0.10733315253603376 0.10526009671251108 0.10556989740939997 0.10556211862498305 0.10609537036789447 C 0.10526009671251108 0.10556989740939997 0.1043212595729889 0.10389465644464141 0.10428430753721894 0.10442787121869458 C 0.1043212595729889 0.10389465644464141 0.10612045030295542 0.10229013178283765 0.10578383083960279 0.10289608172357546 C 0.10612045030295542 0.10229013178283765 0.10630402431733471 0.10079217157426766 0.10630402431733471 0.10079217157426766 C 0.10630402431733471 0.10079217157426766 0.10544721137625016 0.10350203166431328 0.10578383083960279 0.10289608172357546 C 0.10544721137625016 0.10350203166431328 0.10377511245953887 0.10434906825685775 0.10428430753721894 0.10442787121869458 C 0.10377511245953887 0.10434906825685775 0.1024115987948635 0.10181631037827846 0.10272866037352234 0.10242326395255448 C 0.1024115987948635 0.10181631037827846 0.1023241510138899 0.10051329740978578 0.10238193806526596 0.10078614977303844" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3533763318971618,0.16594797413823886) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061658 0.11460177227368223 C 0.13983331333881963 0.11471910576267708 0.14107730529094095 0.11626456761750158 0.1409302002090531 0.11600977414162027 C 0.14107730529094095 0.11626456761750158 0.14154624542695537 0.11779675397114435 0.14149885733327058 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14149885733327058 0.11765929398425788 C 0.14144140599063998 0.11780077927072267 0.14064762563162672 0.11961191089771672 0.14080944122170333 0.11935711742183543 C 0.14064762563162672 0.11961191089771672 0.13945270600490517 0.12083012388425 0.13955707025235117 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235117 0.1207168156948335 C 0.13953933274279873 0.12078301298168302 0.13927802285087212 0.1216258402011743 0.13934422013772166 0.12151118313702772 C 0.13927802285087212 0.1216258402011743 0.1386480457460103 0.12215889775144197 0.1387627028101569 0.12209270046459245 C 0.1386480457460103 0.12215889775144197 0.13783594079426362 0.12230555057922199 0.13796833536796266 0.12230555057922199 C 0.13783594079426362 0.12230555057922199 0.13705931086162176 0.12202650317774293 0.13717396792576836 0.12209270046459245 C 0.13705931086162176 0.12202650317774293 0.13652625331135412 0.12139652607288114 0.13659245059820366 0.12151118313702772 C 0.13652625331135412 0.12139652607288114 0.13636186297402156 0.12065061840798398 0.13637960048357403 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357403 0.1207168156948335 C 0.13627523623612803 0.120603507505417 0.13496541392414546 0.11910232394595413 0.13512722951422207 0.11935711742183543 C 0.13496541392414546 0.11910232394595413 0.1343803620600242 0.11751780869779309 0.13443781340265482 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13443781340265482 0.11765929398425788 C 0.1344852014963396 0.11752183399737141 0.13515357560876007 0.11575498066573896 0.13500647052687226 0.11600977414162027 C 0.13515357560876007 0.11575498066573896 0.13630279137351173 0.11448443878468739 0.13620307438530868 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971617,0.16900549584881452) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592052044841131 0.10724137810387716 C 0.10584037239035114 0.10701857731361208 0.10516781237882551 0.10543164769964168 0.10543963210005029 0.10590457336228674 C 0.10516781237882551 0.10543164769964168 0.10432285895325556 0.10392393083135895 0.1042896021210626 0.10440382412800679 C 0.10432285895325556 0.10392393083135895 0.10594213061022542 0.10247985863573565 0.10563917309320804 0.10302521358239967 C 0.10594213061022542 0.10247985863573565 0.10610734722316686 0.10113169444802263 0.10610734722316686 0.10113169444802263 C 0.10610734722316686 0.10113169444802263 0.10533621557619066 0.1035705685290637 0.10563917309320804 0.10302521358239967 C 0.10533621557619066 0.1035705685290637 0.10383132655115054 0.10433290146235365 0.1042896021210626 0.10440382412800679 C 0.10383132655115054 0.10433290146235365 0.10260416425294272 0.10205341937163237 0.10288951967373566 0.10259967758848078 C 0.10260416425294272 0.10205341937163237 0.10252546125006651 0.10088070769998898 0.10257746959630495 0.10112627482691638" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.3533763318971617,0.17206301755939013) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235117 0.11460177227368223 C 0.13964681554173392 0.11470737241377758 0.14076640829864315 0.11609828808311966 0.1406340137249441 0.11586897395482648 C 0.14076640829864315 0.11609828808311966 0.1411884544210561 0.11747725580139809 0.1411458051367398 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1411458051367398 0.11735354181320028 C 0.14109409892837224 0.11748087857101859 0.14037969660526026 0.11911089703531323 0.14052533063632922 0.11888158290702006 C 0.14037969660526026 0.11911089703531323 0.13930426894121092 0.12020728872319325 0.13939819676391232 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391232 0.12010531135271839 C 0.1393822330053151 0.12016488891088295 0.13914705410258119 0.12092343340842512 0.13920663166074576 0.12082024205069321 C 0.13914705410258119 0.12092343340842512 0.13858007470820563 0.12140318520366601 0.13868326606593756 0.12134360764550145 C 0.13858007470820563 0.12140318520366601 0.1378491802516335 0.12153517274866801 0.13796833536796266 0.12153517274866801 C 0.1378491802516335 0.12153517274866801 0.1371502133122559 0.12128403008733689 0.13725340466998784 0.12134360764550145 C 0.1371502133122559 0.12128403008733689 0.13667046151701498 0.12071705069296129 0.13673003907517955 0.12082024205069321 C 0.13667046151701498 0.12071705069296129 0.13652251021341574 0.12004573379455383 0.13653847397201296 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13653847397201296 0.12010531135271839 C 0.13644454614931156 0.12000333398224353 0.13526570606852725 0.11865226877872688 0.1354113400995962 0.11888158290702006 C 0.13526570606852725 0.11865226877872688 0.13473915939081801 0.11722620505538196 0.13479086559918557 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918557 0.11735354181320028 C 0.1348335148835019 0.11722982782500246 0.1354350515846804 0.1156396598265333 0.13530265701098135 0.11586897395482648 C 0.1354350515846804 0.1156396598265333 0.13646934577295675 0.11449617213358688 0.13637960048357403 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716167,0.1748147870989082) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576219374113578 0.10693598032467116 C 0.10569006048888163 0.1067354596134326 0.10508475647850853 0.10530722296085923 0.10532939422761084 0.10573285605723978 C 0.10508475647850853 0.10530722296085923 0.10432429839549553 0.10395027777940483 0.10429436724652187 0.10438218174638789 C 0.10432429839549553 0.10395027777940483 0.10578164288676842 0.10265061280334381 0.10550898112145278 0.10314143225534145 C 0.10578164288676842 0.10265061280334381 0.10593033783841574 0.10143726503440209 0.10593033783841574 0.10143726503440209 C 0.10593033783841574 0.10143726503440209 0.10523631935613714 0.10363225170733908 0.10550898112145278 0.10314143225534145 C 0.10523631935613714 0.10363225170733908 0.10388191923360102 0.10431835134730005 0.10429436724652187 0.10438218174638789 C 0.10388191923360102 0.10431835134730005 0.10277747316521403 0.10226681746565086 0.10303429304392768 0.10275844986081444 C 0.10277747316521403 0.10226681746565086 0.1027066404626254 0.10121137696117183 0.10275344797424 0.10143238737540648" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.35337633189716167,0.1775665566384263) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391232 0.11460177227368223 C 0.1394789675243568 0.11469681239976805 0.14048660100557503 0.1159486365021759 0.14036744588924588 0.11574225378671205 C 0.14048660100557503 0.1159486365021759 0.1408664425157468 0.1171897074486265 0.1408280581598621 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1408280581598621 0.11707836485924847 C 0.1407815225723313 0.11719296794128496 0.14013856048153053 0.1186599845591502 0.1402696311094926 0.11845360184368633 C 0.14013856048153053 0.1186599845591502 0.13917067558388607 0.11964673707824212 0.13925521062431734 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431734 0.11955495744481476 C 0.13924084324157984 0.11960857724716287 0.13902918222911925 0.12029126729495083 0.13908280203146736 0.1201983950729921 C 0.13902918222911925 0.12029126729495083 0.13851890077418125 0.12072304391066765 0.13861177299613997 0.12066942410831955 C 0.13851890077418125 0.12072304391066765 0.13786109576326644 0.12084183270116945 0.13796833536796266 0.12084183270116945 C 0.13786109576326644 0.12084183270116945 0.13723202551782657 0.12061580430597144 0.1373248977397853 0.12066942410831955 C 0.13723202551782657 0.12061580430597144 0.13680024890210976 0.12010552285103336 0.13685386870445787 0.1201983950729921 C 0.13680024890210976 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160798 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160798 0.11955495744481476 C 0.1365969250711767 0.11946317781138739 0.13553596899847073 0.11824721912822247 0.13566703962643278 0.11845360184368633 C 0.13553596899847073 0.11824721912822247 0.1350620769885325 0.11696376177721197 0.1351086125760633 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1351086125760633 0.11707836485924847 C 0.13514699693194798 0.11696702226987044 0.1356883799630085 0.11553587107124821 0.13556922484667935 0.11574225378671207 C 0.1356883799630085 0.11553587107124821 0.13661924473245743 0.11450673214759641 0.13653847397201296 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971616,0.18004314922399253) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10561969970458775 0.10666112232338579 C 0.105554779777559 0.10648065368327109 0.10501000616822322 0.10519524069595508 0.1052301801424153 0.10557831048269757 C 0.10501000616822322 0.10519524069595508 0.10432559389351158 0.1039739900326461 0.10429865585943528 0.10436270360293086 C 0.10432559389351158 0.1039739900326461 0.10563720393565718 0.10280429155419113 0.1053918083468731 0.10324602906098901 C 0.10563720393565718 0.10280429155419113 0.10577102939213974 0.10171227856214361 0.10577102939213974 0.10171227856214361 C 0.10577102939213974 0.10171227856214361 0.10514641275808903 0.10368776656778689 0.1053918083468731 0.10324602906098901 C 0.10514641275808903 0.10368776656778689 0.1039274526478065 0.10430525624375181 0.10429865585943528 0.10436270360293086 C 0.1039274526478065 0.10430525624375181 0.10293345118625818 0.1024588757502675 0.10316458907710047 0.10290134490591472 C 0.10293345118625818 0.1024588757502675 0.10286970175392844 0.10150897929623634 0.10291182851438159 0.10170788866904754" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3533763318971616,0.18251974180955882) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431734 0.11460177227368223 C 0.13932790430871736 0.11468730838715947 0.14023477444181376 0.11581395007932656 0.1401275348371175 0.11562820563540908 C 0.14023477444181376 0.11581395007932656 0.14057663180096838 0.11693091393113209 0.14054208588067216 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14054208588067216 0.11683070560069185 C 0.14050020385189443 0.11693384837452468 0.13992153797017373 0.11825416333060337 0.1400395015353396 0.1180684188866859 C 0.13992153797017373 0.11825416333060337 0.13905044156229374 0.11914224059778608 0.13912652309868187 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868187 0.11905963892770145 C 0.13911359245421814 0.11910789674981476 0.13892309754300375 0.119722317792824 0.13897135536511704 0.11963873279306113 C 0.13892309754300375 0.119722317792824 0.13846384423355948 0.12011091674696914 0.13854742923332233 0.12006265892485583 C 0.13846384423355948 0.12011091674696914 0.13787181972373605 0.12021782665842078 0.13796833536796266 0.12021782665842078 C 0.13787181972373605 0.12021782665842078 0.13730565650284018 0.12001440110274253 0.13738924150260304 0.12006265892485583 C 0.13730565650284018 0.12001440110274253 0.136917057548695 0.11955514779329826 0.1369653153708083 0.11963873279306113 C 0.136917057548695 0.11955514779329826 0.13679721699277964 0.11901138110558815 0.1368101476372434 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368101476372434 0.11905963892770145 C 0.13673406610085526 0.11897703725761682 0.13577920563541995 0.11788267444276843 0.1358971692005858 0.1180684188866859 C 0.13577920563541995 0.11788267444276843 0.1353527028264755 0.11672756282685902 0.1353945848552532 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1353945848552532 0.11683070560069185 C 0.1354291307755494 0.11673049727025162 0.13591637550350397 0.11544246119149161 0.13580913589880775 0.11562820563540908 C 0.13591637550350397 0.11544246119149161 0.136754153796008 0.114516236160205 0.13668146011160798 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18474867513656845) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10549145507169455 0.10641375012222896 C 0.10543302713736868 0.10625132834612573 0.1049427308889665 0.10509445665754133 0.10514088746573937 0.10543921946560958 C 0.1049427308889665 0.10509445665754133 0.104326759841726 0.10399533106056319 0.10430251561105733 0.10434517327381948 C 0.104326759841726 0.10399533106056319 0.10550720887965703 0.10294260242995376 0.10528635284975137 0.10334016618607185 C 0.10550720887965703 0.10294260242995376 0.10562765179049131 0.10195979073711098 0.10562765179049131 0.10195979073711098 C 0.10562765179049131 0.10195979073711098 0.1050654968198457 0.10373772994218994 0.10528635284975137 0.10334016618607185 C 0.1050654968198457 0.10373772994218994 0.10396843272059143 0.10429347065055833 0.10430251561105733 0.10434517327381948 C 0.10396843272059143 0.10429347065055833 0.10307383140519792 0.10263172820642248 0.10328185550695598 0.10302995044650498 C 0.10307383140519792 0.10263172820642248 0.10301645691610115 0.10177682139779444 0.10305437100050897 0.10195583983332451" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02169221731726521 0.01969476171262892 C 0.021769863246687338 0.019933731311340065 0.020913083753298624 0.021614749058287253 0.021116363435613822 0.021467057724005843 C 0.020913083753298624 0.021614749058287253 0.01904958144716762 0.021319366389724433 0.01925286112948282 0.021467057724005843 C 0.01904958144716762 0.021319366389724433 0.018754653177253548 0.019455792113917774 0.018677007247831424 0.01969476171262892 C 0.018754653177253548 0.019455792113917774 0.020435879788334464 0.018599422539472096 0.020184612282548316 0.018599422539472096 C 0.020435879788334464 0.018599422539472096 0.021769863246687338 0.019933731311340065 0.02169221731726521 0.01969476171262892 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027419487806183127 0.02605937823328933 C 0.027472358554177796 0.02622209766399067 0.026888959359666405 0.02736673803773433 0.027027376774927083 0.02726617189893087 C 0.026888959359666405 0.02736673803773433 0.025620061407794315 0.027165605760127408 0.025758478823054994 0.02726617189893087 C 0.025620061407794315 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.026564021133523043 0.02531353873051479 0.02639292779899103 0.02531353873051479 C 0.026564021133523043 0.02531353873051479 0.027472358554177796 0.02622209766399067 0.027419487806183127 0.02605937823328933 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35434565889154657,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17470197133093124 0.1864181858431891 C 0.17475003691658036 0.18672436626871866 0.17532425261725848 0.19071341399959058 0.17527875835872078 0.19009235094954385 C 0.17532425261725848 0.19071341399959058 0.17524533110627236 0.1941858250682668 0.17524790243338378 0.19387094244374964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17524790243338378 0.19387094244374964 C 0.1752324800287316 0.19406078898226603 0.17504563386312008 0.1967208534257407 0.17506283357755736 0.1961491009059462 C 0.17504563386312008 0.1967208534257407 0.17503972855035135 0.20111387866256175 0.17504150586013642 0.20073197268128362" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17504150586013642 0.20073197268128362 C 0.174948492050135 0.20036826486767334 0.17379710552200217 0.19582819495562745 0.17392534014011934 0.1963674789179601 C 0.17379710552200217 0.19582819495562745 0.1734674696346145 0.19408498898456927 0.17350269044273026 0.19426056513329165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17350269044273026 0.19426056513329165 C 0.17342170313081792 0.19395741731020746 0.172456794402851 0.189789163648947 0.1725308426997821 0.1906227912562815 C 0.172456794402851 0.189789163648947 0.17262104989453825 0.18372655406102725 0.172614110879557 0.18425703384527758" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.172614110879557 0.18425703384527758 C 0.17268871585355158 0.18430452186014173 0.17368335893844 0.1850069860234732 0.17350937056749216 0.18482689002364724 C 0.17368335893844 0.1850069860234732 0.1748013547278845 0.1865507938281509 0.17470197133093124 0.1864181858431891" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35240700490277654,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17133297740168535 0.1864181858431891 C 0.1714323607986386 0.18628557785822727 0.1726995665360724 0.18464679402382128 0.17252557816512454 0.18482689002364724 C 0.1726995665360724 0.18464679402382128 0.1734954428270544 0.18420954583041343 0.17342083785305978 0.18425703384527758" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17342083785305978 0.18425703384527758 C 0.173427776868041 0.18478751362952792 0.17342148614468603 0.19147488376764044 0.17350410603283462 0.1906227912562815 C 0.17342148614468603 0.19147488376764044 0.17233984029214675 0.1948037567086932 0.17242939919527658 0.19448214398158462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17242939919527658 0.19448214398158462 C 0.17237131032036196 0.19466240542804675 0.17157392517894302 0.19719187735471524 0.17173233269630112 0.1966452813391303 C 0.17157392517894302 0.19719187735471524 0.17042819034453588 0.20140763073772644 0.17052850898697935 0.20104129616860367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17052850898697935 0.20104129616860367 C 0.17054500552047458 0.20063721262644582 0.17073771754839512 0.1956113221846152 0.1707264673889221 0.1961922936627094 C 0.17073771754839512 0.1956113221846152 0.1706582645266334 0.1938927504955368 0.17066351090065562 0.19406963843147315" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17066351090065562 0.19406963843147315 C 0.1706712341900923 0.19373819780797905 0.1708119792489817 0.18945472990052017 0.1707561903738959 0.19009235094954385 C 0.1708119792489817 0.18945472990052017 0.17138104298733448 0.18611200541765952 0.17133297740168535 0.1864181858431891" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.1955410907903247 0.1778701079305874 C 0.19547094563500517 0.17724501663217812 0.19459553597858986 0.16939928192075915 0.19469934892649032 0.17036901234967597 C 0.19459553597858986 0.16939928192075915 0.19426166762293826 0.16588870365307817 0.1942953354155192 0.1662333427835857" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1942953354155192 0.1662333427835857 C 0.19427805296063508 0.16595792380363208 0.1941244634998981 0.1621644438767205 0.19408794595690987 0.1629283150241424 C 0.1941244634998981 0.1621644438767205 0.1947873459292501 0.15657843684705464 0.19473354593137776 0.15706688901452293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19473354593137776 0.15706688901452293 C 0.194798485985029 0.15704084308492944 0.19564572639185787 0.15675615219492386 0.19551282657519264 0.15675433785940107 C 0.19564572639185787 0.15675615219492386 0.1963963034943744 0.15711652130591286 0.1963283437313604 0.15708866104079658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1963283437313604 0.15708866104079658 C 0.1963843683170028 0.15755809690165926 0.19703758264335572 0.1635004089268499 0.19700063875906904 0.16272189137114873 C 0.19703758264335572 0.1635004089268499 0.19675258964144482 0.16673995340404885 0.19677167034280052 0.16643087170921037" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19677167034280052 0.16643087170921037 C 0.1967203314410512 0.16677475654099913 0.19605305522576907 0.17151075937579027 0.19615560352180872 0.17055748969067552 C 0.19605305522576907 0.17151075937579027 0.19548988139603435 0.1784794927839134 0.1955410907903247 0.1778701079305874" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,165 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g id="編節1">
<g transform="translate(0.3213105737601799,0.13389549078914734) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14065887184510625 0.11460177227368223 C 0.1408108562807152 0.11478060703819197 0.14270689644550907 0.11713613493763485 0.14248268507241377 0.116747789447799 C 0.14270689644550907 0.11713613493763485 0.1434216352597362 0.1194714288770386 0.14334940832224985 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224985 0.11926191815171247 C 0.14326184340435533 0.11947756406920186 0.1420519967971106 0.12223801465142105 0.14229862930751544 0.12184966916158521 C 0.1420519967971106 0.12223801465142105 0.14023075060488152 0.12409476360208903 0.14038981819739182 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739182 0.12392206402974258 C 0.14036278343203218 0.12402295914763548 0.1399645058951833 0.12530756091488346 0.14006540101307619 0.12513280544445732 C 0.1399645058951833 0.12530756091488346 0.13900432131225107 0.12612002479274906 0.1391790767826772 0.12601912967485618 C 0.13900432131225107 0.12612002479274906 0.13776654513217684 0.12634354685917182 0.1379683353679626 0.12634354685917182 C 0.13776654513217684 0.12634354685917182 0.1365828384828218 0.1259182345569633 0.13675759395324794 0.12601912967485618 C 0.1365828384828218 0.1259182345569633 0.13577037460495617 0.12495804997403119 0.13587126972284905 0.12513280544445732 C 0.13577037460495617 0.12495804997403119 0.13551981777317365 0.12382116891184969 0.1355468525385333 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1355468525385333 0.12392206402974258 C 0.135387784946023 0.12374936445739614 0.13339140891800488 0.12146132367174936 0.1336380414284097 0.12184966916158521 C 0.13339140891800488 0.12146132367174936 0.13249969749578078 0.11904627223422304 0.1325872624136753 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136753 0.11926191815171244 C 0.13265948935116165 0.11905240742638633 0.13367819703660672 0.11635944395796315 0.1334539856635114 0.116747789447799 C 0.13367819703660672 0.11635944395796315 0.1354297833264279 0.1144229375091725 0.13527779889081895 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017985,0.13855563666717757) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10701944173009977 0.0995217617126694 C 0.10694017279817102 0.09989604478983355 0.1061089014188307 0.10260004395381073 0.1065438281385273 0.10176746017565433 C 0.1061089014188307 0.10260004395381073 0.10371139708039742 0.1046253617229477 0.10440988141192016 0.10451726438160774 C 0.10371139708039742 0.1046253617229477 0.10189116705562863 0.10158483717192755 0.10235292214939083 0.1024160442236941 C 0.10189116705562863 0.10158483717192755 0.10163935084934693 0.09953002207100842 0.10163935084934693 0.09953002207100842 C 0.10163935084934693 0.09953002207100842 0.10281467724315303 0.10324725127546065 0.10235292214939083 0.1024160442236941 C 0.10281467724315303 0.10324725127546065 0.10446057007552778 0.1052486975421745 0.10440988141192016 0.10451726438160774 C 0.10446057007552778 0.1052486975421745 0.10224275795480607 0.10752545657323248 0.10265705413103651 0.10680464318709461 C 0.10224275795480607 0.10752545657323248 0.10180194605845436 0.10918172828365838 0.10192410435453753 0.10884214469843498" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.32131057376017985,0.14321578254520767) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739182 0.11460177227368223 C 0.1405266041894399 0.114762723561741 0.1422330403377545 0.11688269867123963 0.1420312501019687 0.11653318773038736 C 0.1422330403377545 0.11688269867123963 0.14287630527055883 0.11898446321670295 0.14281130102682113 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14281130102682113 0.11879590356390944 C 0.14273249260071605 0.1189899848896499 0.1416436306541958 0.1214743904136472 0.14186559991356015 0.12112487947279495 C 0.1416436306541958 0.1214743904136472 0.14000450908118964 0.12314546446924837 0.1401476699144489 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401476699144489 0.12299003485413657 C 0.14012333862562523 0.12308084046024016 0.13976488884246124 0.12423698205076321 0.13985569444856483 0.12407970212737969 C 0.13976488884246124 0.12423698205076321 0.13890072271782228 0.12496819954084241 0.1390580026412058 0.1248773939347388 C 0.13890072271782228 0.12496819954084241 0.1377867241557554 0.12516936940062295 0.1379683353679626 0.12516936940062295 C 0.1377867241557554 0.12516936940062295 0.1367213881713359 0.12478658832863519 0.1368786680947194 0.1248773939347388 C 0.1367213881713359 0.12478658832863519 0.1359901706812567 0.12392242220399617 0.13608097628736032 0.12407970212737969 C 0.1359901706812567 0.12392242220399617 0.13576466953265254 0.12289922924803297 0.1357890008214762 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214762 0.12299003485413657 C 0.13564583998821694 0.12283460523902476 0.13384910156300078 0.12077536853194269 0.1340710708223651 0.12112487947279495 C 0.13384910156300078 0.12077536853194269 0.13304656128299908 0.11860182223816898 0.13312536970910416 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910416 0.11879590356390944 C 0.13319037395284186 0.11860734391111594 0.13410721086974223 0.11618367678953505 0.13390542063395647 0.11653318773038732 C 0.13410721086974223 0.11618367678953505 0.13568363853058135 0.11444082098562347 0.1355468525385333 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601798,0.1474099138354349) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675122289465533 0.09998832557258422 C 0.10667988085591945 0.10032518034203194 0.10593173661451313 0.10275877958961131 0.10632317066224006 0.10200945418927057 C 0.10593173661451313 0.10275877958961131 0.10377398270992325 0.10458156558183468 0.10440261860829371 0.1044842779746287 C 0.10377398270992325 0.10458156558183468 0.10213577568763135 0.10184509348591653 0.10255135527201732 0.10259317983250642 C 0.10213577568763135 0.10184509348591653 0.1019091411019779 0.09999575989508931 0.1019091411019779 0.09999575989508931 C 0.1019091411019779 0.09999575989508931 0.10296693485640329 0.10334126617909631 0.10255135527201732 0.10259317983250642 C 0.10296693485640329 0.10334126617909631 0.10444823840554056 0.10514256781913878 0.10440261860829371 0.1044842779746287 C 0.10444823840554056 0.10514256781913878 0.10245220749689103 0.10719165094709095 0.10282507405549843 0.10654291889956687 C 0.10245220749689103 0.10719165094709095 0.10205547679017447 0.10868229548647426 0.10216541925664932 0.10837667025977321" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3213105737601798,0.151604045125662) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1401476699144489 0.11460177227368223 C 0.14027077730729218 0.11474662843293512 0.1418065698407752 0.11665460603148387 0.141624958628568 0.11634004618471683 C 0.1418065698407752 0.11665460603148387 0.14238550828029914 0.11854619412240089 0.1423270044609352 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1423270044609352 0.11837649043488672 C 0.14225607687744066 0.11855116362805314 0.14127610112557248 0.12078712859965067 0.1414758734590004 0.12047256875288363 C 0.14127610112557248 0.12078712859965067 0.139800891709867 0.12229109524969174 0.13992973645980034 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980034 0.12215120859609112 C 0.13990783829985903 0.12223293364158436 0.1395852334950113 0.12327346107305513 0.13966695854050457 0.12313190914200996 C 0.1395852334950113 0.12327346107305513 0.13880748398283627 0.12393155681412645 0.13894903591388144 0.1238498317686332 C 0.13880748398283627 0.12393155681412645 0.13780488527697612 0.12411260968792882 0.1379683353679626 0.12411260968792882 C 0.13780488527697612 0.12411260968792882 0.13684608289099856 0.12376810672313997 0.13698763482204374 0.1238498317686332 C 0.13684608289099856 0.12376810672313997 0.13618798714992733 0.12299035721096478 0.13626971219542056 0.12313190914200996 C 0.13618798714992733 0.12299035721096478 0.13598503611618362 0.12206948355059788 0.13600693427612492 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612492 0.12215120859609112 C 0.13587808952619157 0.1220113219424905 0.13426102494349687 0.1201580089061166 0.1344607972769248 0.12047256875288363 C 0.13426102494349687 0.1201580089061166 0.1335387386914952 0.11820181724172031 0.1336096662749898 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1336096662749898 0.11837649043488672 C 0.13366817009435375 0.11820678674737256 0.13449332331956432 0.11602548633794979 0.13431171210735712 0.11634004618471683 C 0.13449332331956432 0.11602548633794979 0.13591210821431948 0.11445691611442935 0.1357890008214762 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017974,0.1553787632868665) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650982594275545 0.10040823304650746 C 0.10644561810789314 0.10071140233901044 0.1057722882906274 0.102901641661832 0.10612457893358165 0.10222724880152531 C 0.1057722882906274 0.102901641661832 0.1038303097764965 0.10454214905483297 0.10439608208502991 0.1044545902083476 C 0.1038303097764965 0.10454214905483297 0.10235592345643378 0.10207932416850657 0.10272994508238116 0.10275260188043749 C 0.10235592345643378 0.10207932416850657 0.10215195232934561 0.10041492393676214 0.10215195232934561 0.10041492393676214 C 0.10215195232934561 0.10041492393676214 0.10310396670832854 0.1034258795923684 0.10272994508238116 0.10275260188043749 C 0.10310396670832854 0.1034258795923684 0.10443713990255209 0.10504705106840669 0.10439608208502991 0.1044545902083476 C 0.10443713990255209 0.10504705106840669 0.10264071208476754 0.10689122588356362 0.10297629198751419 0.10630736704079195 C 0.10264071208476754 0.10689122588356362 0.1022836544487226 0.10823280596900858 0.10238260266854997 0.10795774326497763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.32131057376017974,0.1591534814480709) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980034 0.11460177227368223 C 0.14004053311335926 0.11473214281700983 0.1414227463934939 0.11644932265570374 0.14125929630250741 0.1161662187936134 C 0.1414227463934939 0.11644932265570374 0.14194379098906557 0.11815175193752903 0.141891137551638 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.141891137551638 0.11799901861876629 C 0.14182730272649288 0.11815622449261605 0.14094532454981146 0.12016859296705384 0.14112511964989657 0.11988548910496352 C 0.14094532454981146 0.12016859296705384 0.1396176360756765 0.1215221629520908 0.13973359635061652 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061652 0.12139626496385024 C 0.13971388800666934 0.12146981750479416 0.13942354368230642 0.1224062921931179 0.13949709622325032 0.12227889545517724 C 0.13942354368230642 0.1224062921931179 0.138723569121349 0.12299857836008199 0.13885096585928966 0.12292502581913807 C 0.138723569121349 0.12299857836008199 0.13782123028607476 0.1231615259465042 0.1379683353679626 0.1231615259465042 C 0.13782123028607476 0.1231615259465042 0.136958308138695 0.12285147327819415 0.13708570487663566 0.12292502581913807 C 0.136958308138695 0.12285147327819415 0.1363660219717308 0.12215149871723659 0.13643957451267472 0.12227889545517724 C 0.1363660219717308 0.12215149871723659 0.13618336604136147 0.12132271242290632 0.13620307438530865 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530865 0.12139626496385024 C 0.13608711411036864 0.12127036697560968 0.1346317559859435 0.1196023852428732 0.13481155108602863 0.11988548910496352 C 0.1346317559859435 0.1196023852428732 0.13398169835914203 0.11784181274491652 0.13404553318428716 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428716 0.11799901861876629 C 0.13409818662171472 0.11784628530000354 0.13484082452440416 0.11588311493152306 0.13467737443341768 0.1161662187936134 C 0.13484082452440416 0.11588311493152306 0.13611773092968385 0.11447140173035464 0.13600693427612492 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601797,0.16255072779315494) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629256868604538 0.10078614977303844 C 0.10623478163466932 0.10105900213629111 0.10562878479913024 0.1030302175268305 0.10594584637778905 0.10242326395255448 C 0.10562878479913024 0.1030302175268305 0.10388100413641245 0.10450667418053142 0.10439019921409252 0.10442787121869458 C 0.10388100413641245 0.10450667418053142 0.10255405644835593 0.10229013178283765 0.10289067591170857 0.10289608172357546 C 0.10255405644835593 0.10229013178283765 0.10237048243397663 0.10079217157426766 0.10237048243397663 0.10079217157426766 C 0.10237048243397663 0.10079217157426766 0.10322729537506121 0.10350203166431328 0.10289067591170857 0.10289608172357546 C 0.10322729537506121 0.10350203166431328 0.10442715124986249 0.10496108599274775 0.10439019921409252 0.10442787121869458 C 0.10442715124986249 0.10496108599274775 0.10281036621385636 0.10662084332638898 0.10311238812632836 0.10609537036789447 C 0.10281036621385636 0.10662084332638898 0.10248901434141588 0.10782826540328949 0.10257806773926052 0.10758070896966163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3213105737601797,0.16594797413823892) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061652 0.11460177227368223 C 0.13983331333881957 0.11471910576267708 0.1410773052909409 0.11626456761750158 0.14093020020905306 0.11600977414162027 C 0.1410773052909409 0.11626456761750158 0.1415462454269553 0.11779675397114435 0.1414988573332705 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414988573332705 0.11765929398425788 C 0.1414414059906399 0.11780077927072267 0.1406476256316266 0.11961191089771672 0.14080944122170322 0.11935711742183543 C 0.1406476256316266 0.11961191089771672 0.13945270600490514 0.12083012388425 0.13955707025235115 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235115 0.1207168156948335 C 0.13953933274279867 0.12078301298168302 0.13927802285087204 0.1216258402011743 0.13934422013772158 0.12151118313702772 C 0.13927802285087204 0.1216258402011743 0.13864804574601025 0.12215889775144197 0.13876270281015685 0.12209270046459245 C 0.13864804574601025 0.12215889775144197 0.13783594079426356 0.12230555057922199 0.1379683353679626 0.12230555057922199 C 0.13783594079426356 0.12230555057922199 0.1370593108616217 0.12202650317774293 0.13717396792576828 0.12209270046459245 C 0.1370593108616217 0.12202650317774293 0.1365262533113541 0.12139652607288114 0.13659245059820363 0.12151118313702772 C 0.1365262533113541 0.12139652607288114 0.1363618629740215 0.12065061840798398 0.13637960048357398 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357398 0.1207168156948335 C 0.13627523623612797 0.120603507505417 0.13496541392414543 0.11910232394595413 0.13512722951422204 0.11935711742183543 C 0.13496541392414543 0.11910232394595413 0.13438036206002418 0.11751780869779309 0.1344378134026548 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1344378134026548 0.11765929398425788 C 0.13448520149633958 0.11752183399737141 0.13515357560875996 0.11575498066573896 0.13500647052687215 0.11600977414162027 C 0.13515357560875996 0.11575498066573896 0.1363027913735117 0.11448443878468739 0.13620307438530865 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017963,0.16900549584881458) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609703715500646 0.10112627482691638 C 0.106045028808768 0.10137184195384379 0.10549963165678276 0.10314593580532919 0.1057849870775757 0.10259967758848078 C 0.10549963165678276 0.10314593580532919 0.10392662906033673 0.10447474679365994 0.10438490463024878 0.10440382412800679 C 0.10392662906033673 0.10447474679365994 0.10273237614108599 0.10247985863573565 0.10303533365810337 0.10302521358239967 C 0.10273237614108599 0.10247985863573565 0.10256715952814453 0.10113169444802263 0.10256715952814453 0.10113169444802263 C 0.10256715952814453 0.10113169444802263 0.10333829117512075 0.1035705685290637 0.10303533365810337 0.10302521358239967 C 0.10333829117512075 0.1035705685290637 0.10441816146244173 0.10488371742465463 0.10438490463024878 0.10440382412800679 C 0.10441816146244173 0.10488371742465463 0.10296305493003625 0.10637749902493181 0.10323487465126104 0.10590457336228674 C 0.10296305493003625 0.10637749902493181 0.10267383824483994 0.10746417889414223 0.1027539863029001 0.10724137810387716" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.32131057376017963,0.17206301755939019) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235115 0.11460177227368223 C 0.1396468155417339 0.11470737241377758 0.14076640829864304 0.11609828808311966 0.140634013724944 0.11586897395482648 C 0.14076640829864304 0.11609828808311966 0.14118845442105593 0.11747725580139809 0.14114580513673963 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14114580513673963 0.11735354181320028 C 0.1410940989283721 0.11748087857101859 0.1403796966052602 0.11911089703531323 0.14052533063632916 0.11888158290702006 C 0.1403796966052602 0.11911089703531323 0.13930426894121084 0.12020728872319325 0.13939819676391224 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391224 0.12010531135271839 C 0.13938223300531502 0.12016488891088295 0.1391470541025811 0.12092343340842512 0.13920663166074568 0.12082024205069321 C 0.1391470541025811 0.12092343340842512 0.13858007470820544 0.12140318520366601 0.13868326606593737 0.12134360764550145 C 0.13858007470820544 0.12140318520366601 0.13784918025163345 0.12153517274866801 0.1379683353679626 0.12153517274866801 C 0.13784918025163345 0.12153517274866801 0.13715021331225577 0.12128403008733689 0.1372534046699877 0.12134360764550145 C 0.13715021331225577 0.12128403008733689 0.13667046151701484 0.12071705069296129 0.13673003907517942 0.12082024205069321 C 0.13667046151701484 0.12071705069296129 0.1365225102134157 0.12004573379455383 0.1365384739720129 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1365384739720129 0.12010531135271839 C 0.1364445461493115 0.12000333398224353 0.13526570606852703 0.11865226877872688 0.135411340099596 0.11888158290702006 C 0.13526570606852703 0.11865226877872688 0.134739159390818 0.11722620505538196 0.13479086559918552 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918552 0.11735354181320028 C 0.13483351488350181 0.11722982782500246 0.1354350515846803 0.1156396598265333 0.13530265701098126 0.11586897395482648 C 0.1354350515846803 0.1156396598265333 0.1364693457729567 0.11449617213358688 0.13637960048357398 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601796,0.17481478709890824) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592105877707135 0.10143238737540648 C 0.10587425126545674 0.10165339778964114 0.10538339382867001 0.10325008225597801 0.10564021370738366 0.10275844986081444 C 0.10538339382867001 0.10325008225597801 0.1039676914918686 0.10444601214547572 0.10438013950478946 0.10438218174638789 C 0.1039676914918686 0.10444601214547572 0.10289286386454288 0.10265061280334381 0.10316552562985852 0.10314143225534145 C 0.10289286386454288 0.10265061280334381 0.10274416891289567 0.10143726503440209 0.10274416891289567 0.10143726503440209 C 0.10274416891289567 0.10143726503440209 0.10343818739517416 0.10363225170733908 0.10316552562985852 0.10314143225534145 C 0.10343818739517416 0.10363225170733908 0.10441007065376312 0.10481408571337095 0.10438013950478946 0.10438218174638789 C 0.10441007065376312 0.10481408571337095 0.10310047477459822 0.10615848915362033 0.10334511252370052 0.10573285605723978 C 0.10310047477459822 0.10615848915362033 0.1028401797579215 0.10713650103590973 0.10291231301017564 0.10693598032467116" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.3213105737601796,0.17756655663842635) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391224 0.11460177227368223 C 0.1394789675243567 0.11469681239976806 0.14048660100557492 0.11594863650217593 0.14036744588924577 0.11574225378671207 C 0.14048660100557492 0.11594863650217593 0.14086644251574676 0.1171897074486265 0.14082805815986207 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14082805815986207 0.11707836485924847 C 0.14078152257233129 0.11719296794128496 0.14013856048153042 0.1186599845591502 0.1402696311094925 0.11845360184368633 C 0.14013856048153042 0.1186599845591502 0.13917067558388596 0.11964673707824212 0.13925521062431723 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431723 0.11955495744481476 C 0.13924084324157973 0.11960857724716287 0.13902918222911914 0.12029126729495083 0.13908280203146725 0.1201983950729921 C 0.13902918222911914 0.12029126729495083 0.13851890077418122 0.12072304391066765 0.13861177299613994 0.12066942410831955 C 0.13851890077418122 0.12072304391066765 0.13786109576326638 0.12084183270116945 0.1379683353679626 0.12084183270116945 C 0.13786109576326638 0.12084183270116945 0.1372320255178265 0.12061580430597144 0.13732489773978526 0.12066942410831955 C 0.1372320255178265 0.12061580430597144 0.13680024890210957 0.12010552285103336 0.13685386870445768 0.1201983950729921 C 0.13680024890210957 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160795 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160795 0.11955495744481476 C 0.13659692507117668 0.11946317781138739 0.13553596899847065 0.11824721912822247 0.1356670396264327 0.11845360184368633 C 0.13553596899847065 0.11824721912822247 0.13506207698853243 0.11696376177721197 0.13510861257606321 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13510861257606321 0.11707836485924847 C 0.1351469969319479 0.11696702226987044 0.13568837996300848 0.11553587107124819 0.13556922484667933 0.11574225378671205 C 0.13568837996300848 0.11553587107124819 0.13661924473245737 0.11450673214759642 0.1365384739720129 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601795,0.1800431492239926) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576267823692977 0.10170788866904754 C 0.1057205514764766 0.10190679804185873 0.10527877978336853 0.10334381406156194 0.10550991767421082 0.10290134490591472 C 0.10527877978336853 0.10334381406156194 0.10400464768024728 0.10442015096210991 0.10437585089187604 0.10436270360293086 C 0.10400464768024728 0.10442015096210991 0.10303730281565425 0.10280429155419113 0.10328269840443832 0.10324602906098901 C 0.10303730281565425 0.10280429155419113 0.1029034773591716 0.10171227856214361 0.1029034773591716 0.10171227856214361 C 0.1029034773591716 0.10171227856214361 0.1035280939932224 0.10368776656778689 0.10328269840443832 0.10324602906098901 C 0.1035280939932224 0.10368776656778689 0.10440278892595231 0.10475141717321562 0.10437585089187604 0.10436270360293086 C 0.10440278892595231 0.10475141717321562 0.10322415263470393 0.10596138026944006 0.103444326608896 0.10557831048269757 C 0.10322415263470393 0.10596138026944006 0.10298988711969487 0.10684159096350049 0.1030548070467236 0.10666112232338579" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3213105737601795,0.18251974180955888) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431723 0.11460177227368223 C 0.13932790430871725 0.11468730838715947 0.1402347744418137 0.11581395007932656 0.14012753483711746 0.11562820563540908 C 0.1402347744418137 0.11581395007932656 0.14057663180096833 0.11693091393113209 0.1405420858806721 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405420858806721 0.11683070560069185 C 0.14050020385189438 0.11693384837452468 0.13992153797017365 0.11825416333060337 0.1400395015353395 0.1180684188866859 C 0.13992153797017365 0.11825416333060337 0.13905044156229357 0.11914224059778608 0.13912652309868173 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868173 0.11905963892770145 C 0.139113592454218 0.11910789674981476 0.13892309754300355 0.119722317792824 0.13897135536511684 0.11963873279306113 C 0.13892309754300355 0.119722317792824 0.13846384423355937 0.12011091674696914 0.13854742923332222 0.12006265892485583 C 0.13846384423355937 0.12011091674696914 0.137871819723736 0.12021782665842078 0.1379683353679626 0.12021782665842078 C 0.137871819723736 0.12021782665842078 0.13730565650284013 0.12001440110274253 0.13738924150260298 0.12006265892485583 C 0.13730565650284013 0.12001440110274253 0.13691705754869496 0.11955514779329826 0.13696531537080828 0.11963873279306113 C 0.13691705754869496 0.11955514779329826 0.1367972169927795 0.11901138110558815 0.13681014763724325 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13681014763724325 0.11905963892770145 C 0.13673406610085512 0.11897703725761682 0.13577920563541984 0.11788267444276843 0.13589716920058567 0.1180684188866859 C 0.13577920563541984 0.11788267444276843 0.1353527028264754 0.11672756282685902 0.13539458485525313 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539458485525313 0.11683070560069185 C 0.13542913077554933 0.11673049727025162 0.1359163755035038 0.11544246119149161 0.13580913589880755 0.11562820563540908 C 0.1359163755035038 0.11544246119149161 0.13675415379600797 0.114516236160205 0.13668146011160795 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.1847486751365685) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10562013575080237 0.10195583983332451 C 0.10558222166639453 0.10213485826885459 0.10518462714259726 0.10342817268658748 0.10539265124435532 0.10302995044650498 C 0.10518462714259726 0.10342817268658748 0.10403790824978813 0.10439687589708063 0.10437199114025403 0.10434517327381948 C 0.10403790824978813 0.10439687589708063 0.10316729787165431 0.10294260242995376 0.10338815390155998 0.10334016618607185 C 0.10316729787165431 0.10294260242995376 0.10304685496082001 0.10195979073711098 0.10304685496082001 0.10195979073711098 C 0.10304685496082001 0.10195979073711098 0.10360900993146564 0.10373772994218994 0.10338815390155998 0.10334016618607185 C 0.10360900993146564 0.10373772994218994 0.10439623537092269 0.10469501548707577 0.10437199114025403 0.10434517327381948 C 0.10439623537092269 0.10469501548707577 0.10333546270879906 0.10578398227367783 0.10353361928557193 0.10543921946560958 C 0.10333546270879906 0.10578398227367783 0.10312462374529098 0.1065761718983322 0.10318305167961683 0.10641375012222896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02018461228254831 0.018599422539472096 C 0.020435879788334454 0.018599422539472096 0.021769863246687306 0.019933731311340065 0.02169221731726518 0.01969476171262892 C 0.021769863246687306 0.019933731311340065 0.02091308375329863 0.021614749058287253 0.02111636343561383 0.021467057724005843 C 0.02091308375329863 0.021614749058287253 0.0190495814471676 0.021319366389724433 0.0192528611294828 0.021467057724005843 C 0.0190495814471676 0.021319366389724433 0.018754653177253573 0.019455792113917774 0.018677007247831445 0.01969476171262892 C 0.018754653177253573 0.019455792113917774 0.020435879788334454 0.018599422539472096 0.02018461228254831 0.018599422539472096 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.026392927798991044 0.02531353873051479 C 0.02656402113352306 0.02531353873051479 0.02747235855417783 0.02622209766399067 0.027419487806183158 0.02605937823328933 C 0.02747235855417783 0.02622209766399067 0.026888959359666446 0.02736673803773433 0.027027376774927128 0.02726617189893087 C 0.026888959359666446 0.02736673803773433 0.02562006140779431 0.027165605760127408 0.02575847882305499 0.02726617189893087 C 0.02562006140779431 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.02656402113352306 0.02531353873051479 0.026392927798991044 0.02531353873051479 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3204760438009511,0.18718935489443791) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.1715519620070864 0.18635855301437484 C 0.17163842556243572 0.18623074100517434 0.17274089455400307 0.18465122635844283 0.17258952467127844 0.1848248089039687 C 0.17274089455400307 0.18465122635844283 0.1734333069271573 0.1842297919317388 0.173368400599782 0.18427556246806417" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.173368400599782 0.18427556246806417 C 0.17333183204168182 0.1848266482224662 0.1728200223462147 0.1921584304611907 0.17292957790257968 0.1908885915208885 C 0.1728200223462147 0.1921584304611907 0.17198074692513757 0.20023238293759055 0.17205373392340234 0.1995136297516904" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17205373392340234 0.1995136297516904 C 0.1719441216699472 0.19953128081252378 0.17055659012429006 0.19974692807434194 0.17073838688194043 0.19972544248169077 C 0.17055659012429006 0.19974692807434194 0.16979998832740278 0.19977529139532232 0.169872172831598 0.1997714568635045" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.169872172831598 0.1997714568635045 C 0.1699277243816657 0.1991324875405764 0.17067877386370103 0.19098608300093997 0.17053879143241032 0.19210382498836745 C 0.17067877386370103 0.19098608300093997 0.1716363928883094 0.18587978034987546 0.1715519620070864 0.18635855301437484" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3221451037194078,0.18718935489443791) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17448298672553023 0.18634281830520028 C 0.17456741344646606 0.18679032680339006 0.17564792466947693 0.19282187547383733 0.17549610737676016 0.19171292028347756 C 0.17564792466947693 0.19282187547383733 0.17637218480991254 0.20031172728168778 0.17630479423813158 0.19965028058951775" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17630479423813158 0.19965028058951775 C 0.1762326097339364 0.19964648402336152 0.1752538247147823 0.19959256875276413 0.17543858018778918 0.19960472179564281 C 0.1752538247147823 0.19959256875276413 0.17397515759323717 0.19949608759825116 0.17408772856204888 0.19950444407497359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17408772856204888 0.19950444407497359 C 0.17396325991658068 0.19874200985354332 0.17247567311399586 0.18908656736386803 0.1725941048164304 0.19035523341781044 C 0.17247567311399586 0.18908656736386803 0.17267258507586833 0.18377421959515272 0.17266654813283464 0.18428045142766486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17266654813283464 0.18428045142766486 C 0.17273145446020993 0.18432576879036325 0.17359679394406277 0.18499612368650695 0.17344542406133814 0.18482425978004566 C 0.17359679394406277 0.18499612368650695 0.17456945028087956 0.18646936484896315 0.17448298672553023 0.18634281830520028" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19427561416026085 0.17274541588188216 C 0.19427306084983317 0.17203981040151675 0.19428360394572933 0.1629760369562614 0.19424497443512878 0.1642781501174973 C 0.19428360394572933 0.1629760369562614 0.19478035110849576 0.1565235502661809 0.19473916828746754 0.1571200579470514" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19473916828746754 0.1571200579470514 C 0.19480363981144463 0.15709148966240985 0.19563855443068695 0.15677600322444307 0.19551282657519264 0.1567772385313529 C 0.19563855443068695 0.15677600322444307 0.19630915888491632 0.1571325672418654 0.1962479025533991 0.15710523426413367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1962479025533991 0.15710523426413367 C 0.19629168162473262 0.15771269053142942 0.1968032612510356 0.16569577798454535 0.19677325140940122 0.16439470947168275 C 0.1968032612510356 0.16569577798454535 0.19659425142331233 0.17341166866405183 0.19660802065301147 0.17271805641848498" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19660802065301147 0.17271805641848498 C 0.1965167544798599 0.17271805641848498 0.19531845936746342 0.17272033637376807 0.19551282657519264 0.17271805641848498 C 0.19531845936746342 0.17272033637376807 0.1941725131256832 0.17274769583716526 0.19427561416026085 0.17274541588188216" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g id="編節1">
<g transform="translate(0.353376331897162,0.13389549078914728) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1406588718451063 0.11460177227368223 C 0.14081085628071527 0.11478060703819197 0.14270689644550916 0.11713613493763485 0.14248268507241385 0.116747789447799 C 0.14270689644550916 0.11713613493763485 0.1434216352597363 0.11947142887703856 0.14334940832224996 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224996 0.11926191815171244 C 0.1432618434043554 0.11947756406920185 0.14205199679711067 0.12223801465142106 0.1422986293075155 0.12184966916158521 C 0.14205199679711067 0.12223801465142106 0.14023075060488158 0.12409476360208903 0.14038981819739188 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739188 0.12392206402974258 C 0.14036278343203223 0.12402295914763548 0.13996450589518336 0.12530756091488346 0.14006540101307624 0.12513280544445732 C 0.13996450589518336 0.12530756091488346 0.13900432131225113 0.12612002479274906 0.13917907678267727 0.12601912967485618 C 0.13900432131225113 0.12612002479274906 0.1377665451321769 0.12634354685917182 0.13796833536796266 0.12634354685917182 C 0.1377665451321769 0.12634354685917182 0.13658283848282188 0.1259182345569633 0.13675759395324802 0.12601912967485618 C 0.13658283848282188 0.1259182345569633 0.13577037460495622 0.12495804997403119 0.1358712697228491 0.12513280544445732 C 0.13577037460495622 0.12495804997403119 0.1355198177731737 0.12382116891184969 0.13554685253853335 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13554685253853335 0.12392206402974258 C 0.13538778494602305 0.12374936445739614 0.13339140891800497 0.12146132367174937 0.1336380414284098 0.12184966916158521 C 0.13339140891800497 0.12146132367174937 0.1324996974957809 0.11904627223422308 0.1325872624136754 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136754 0.11926191815171247 C 0.13265948935116176 0.11905240742638634 0.1336781970366068 0.11635944395796315 0.1334539856635115 0.116747789447799 C 0.1336781970366068 0.11635944395796315 0.13542978332642802 0.1144229375091725 0.13527779889081906 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716194,0.13855563666717752) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675040239677382 0.10884214469843498 C 0.10662824410069065 0.10850256111321158 0.10560315644404437 0.10608382980095674 0.1060174526202748 0.10680464318709461 C 0.10560315644404437 0.10608382980095674 0.10431531400299884 0.10378583122104099 0.10426462533939122 0.10451726438160774 C 0.10431531400299884 0.10378583122104099 0.10678333969568272 0.10158483717192755 0.10632158460192052 0.1024160442236941 C 0.10678333969568272 0.10158483717192755 0.10703515590196443 0.09953002207100842 0.10703515590196443 0.09953002207100842 C 0.10703515590196443 0.09953002207100842 0.10585982950815832 0.10324725127546065 0.10632158460192052 0.1024160442236941 C 0.10585982950815832 0.10324725127546065 0.10356614100786848 0.10440916704026779 0.10426462533939122 0.10451726438160774 C 0.10356614100786848 0.10440916704026779 0.1016957518930875 0.10093487639749793 0.10213067861278409 0.10176746017565433 C 0.1016957518930875 0.10093487639749793 0.10157579608928285 0.09914747863550524 0.1016550650212116 0.0995217617126694" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.35337633189716194,0.14321578254520761) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739188 0.11460177227368223 C 0.14052660418943996 0.114762723561741 0.14223304033775455 0.11688269867123958 0.14203125010196876 0.11653318773038732 C 0.14223304033775455 0.11688269867123958 0.14287630527055892 0.11898446321670295 0.1428113010268212 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1428113010268212 0.11879590356390944 C 0.14273249260071613 0.1189899848896499 0.14164363065419583 0.1214743904136472 0.14186559991356018 0.12112487947279495 C 0.14164363065419583 0.1214743904136472 0.14000450908118967 0.12314546446924837 0.14014766991444894 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14014766991444894 0.12299003485413657 C 0.14012333862562526 0.12308084046024016 0.13976488884246127 0.12423698205076321 0.13985569444856485 0.12407970212737969 C 0.13976488884246127 0.12423698205076321 0.13890072271782233 0.12496819954084241 0.13905800264120585 0.1248773939347388 C 0.13890072271782233 0.12496819954084241 0.13778672415575546 0.12516936940062295 0.13796833536796266 0.12516936940062295 C 0.13778672415575546 0.12516936940062295 0.13672138817133592 0.12478658832863519 0.13687866809471944 0.1248773939347388 C 0.13672138817133592 0.12478658832863519 0.13599017068125688 0.12392242220399617 0.13608097628736046 0.12407970212737969 C 0.13599017068125688 0.12392242220399617 0.13576466953265262 0.12289922924803297 0.1357890008214763 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214763 0.12299003485413657 C 0.13564583998821703 0.12283460523902476 0.1338491015630008 0.12077536853194269 0.13407107082236516 0.12112487947279495 C 0.1338491015630008 0.12077536853194269 0.1330465612829991 0.11860182223816898 0.13312536970910419 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910419 0.11879590356390944 C 0.1331903739528419 0.11860734391111594 0.13410721086974237 0.11618367678953509 0.1339054206339566 0.11653318773038736 C 0.13410721086974237 0.11618367678953509 0.1356836385305814 0.11444082098562347 0.13554685253853335 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971619,0.14740991383543484) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650908749466204 0.10837667025977321 C 0.10639914502818718 0.10807104503307216 0.10547656613720548 0.10589418685204278 0.10584943269581287 0.10654291889956687 C 0.10547656613720548 0.10589418685204278 0.10431750794026452 0.10382598813011862 0.10427188814301767 0.1044842779746287 C 0.10431750794026452 0.10382598813011862 0.10653873106367996 0.10184509348591653 0.10612315147929399 0.10259317983250642 C 0.10653873106367996 0.10184509348591653 0.10676536564933349 0.09999575989508931 0.10676536564933349 0.09999575989508931 C 0.10676536564933349 0.09999575989508931 0.10570757189490802 0.10334126617909631 0.10612315147929399 0.10259317983250642 C 0.10570757189490802 0.10334126617909631 0.10364325224464722 0.10438699036742272 0.10427188814301767 0.1044842779746287 C 0.10364325224464722 0.10438699036742272 0.10195990204134435 0.10126012878892983 0.1023513360890713 0.10200945418927057 C 0.10195990204134435 0.10126012878892983 0.10185194181792016 0.0996514708031365 0.10192328385665604 0.09998832557258422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3533763318971619,0.15160404512566195) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14014766991444894 0.11460177227368223 C 0.1402707773072922 0.11474662843293512 0.14180656984077528 0.11665460603148387 0.14162495862856808 0.11634004618471683 C 0.14180656984077528 0.11665460603148387 0.14238550828029928 0.11854619412240089 0.14232700446093535 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14232700446093535 0.11837649043488672 C 0.14225607687744077 0.11855116362805314 0.1412761011255725 0.12078712859965067 0.14147587345900042 0.12047256875288363 C 0.1412761011255725 0.12078712859965067 0.1398008917098671 0.12229109524969174 0.13992973645980042 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980042 0.12215120859609112 C 0.13990783829985912 0.12223293364158436 0.13958523349501142 0.12327346107305513 0.13966695854050468 0.12313190914200996 C 0.13958523349501142 0.12327346107305513 0.1388074839828363 0.12393155681412645 0.13894903591388147 0.1238498317686332 C 0.1388074839828363 0.12393155681412645 0.13780488527697618 0.12411260968792882 0.13796833536796266 0.12411260968792882 C 0.13780488527697618 0.12411260968792882 0.1368460828909986 0.12376810672313997 0.13698763482204376 0.1238498317686332 C 0.1368460828909986 0.12376810672313997 0.1361879871499274 0.12299035721096478 0.1362697121954206 0.12313190914200996 C 0.1361879871499274 0.12299035721096478 0.13598503611618368 0.12206948355059788 0.13600693427612498 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612498 0.12215120859609112 C 0.13587808952619165 0.1220113219424905 0.134261024943497 0.1201580089061166 0.13446079727692492 0.12047256875288363 C 0.134261024943497 0.1201580089061166 0.13353873869149535 0.11820181724172031 0.13360966627498994 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13360966627498994 0.11837649043488672 C 0.1336681700943539 0.11820678674737256 0.1344933233195644 0.11602548633794979 0.1343117121073572 0.11634004618471683 C 0.1344933233195644 0.11602548633794979 0.13591210821431957 0.11445691611442935 0.1357890008214763 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716183,0.15537876328686645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629190408276137 0.10795774326497763 C 0.10619295586293401 0.10768268056094668 0.10536263486105055 0.10572350819802029 0.10569821476379719 0.10630736704079195 C 0.10536263486105055 0.10572350819802029 0.10431948248380365 0.10386212934828852 0.10427842466628148 0.1044545902083476 C 0.10431948248380365 0.10386212934828852 0.10631858329487756 0.10207932416850657 0.10594456166893018 0.10275260188043749 C 0.10631858329487756 0.10207932416850657 0.10652255442196577 0.10041492393676214 0.10652255442196577 0.10041492393676214 C 0.10652255442196577 0.10041492393676214 0.1055705400429828 0.1034258795923684 0.10594456166893018 0.10275260188043749 C 0.1055705400429828 0.1034258795923684 0.10371265235774807 0.10436703136186223 0.10427842466628148 0.1044545902083476 C 0.10371265235774807 0.10436703136186223 0.10219763717477544 0.10155285594121863 0.10254992781772969 0.10222724880152531 C 0.10219763717477544 0.10155285594121863 0.10210047297369368 0.10010506375400449 0.10216468080855597 0.10040823304650746" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.35337633189716183,0.15915348144807084) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980042 0.11460177227368223 C 0.14004053311335934 0.11473214281700983 0.14142274639349403 0.11644932265570374 0.14125929630250755 0.1161662187936134 C 0.14142274639349403 0.11644932265570374 0.1419437909890656 0.11815175193752903 0.14189113755163804 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14189113755163804 0.11799901861876629 C 0.14182730272649294 0.11815622449261605 0.14094532454981157 0.12016859296705384 0.14112511964989669 0.11988548910496352 C 0.14094532454981157 0.12016859296705384 0.13961763607567657 0.1215221629520908 0.13973359635061658 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061658 0.12139626496385024 C 0.1397138880066694 0.12146981750479416 0.13942354368230656 0.1224062921931179 0.13949709622325046 0.12227889545517724 C 0.13942354368230656 0.1224062921931179 0.13872356912134906 0.12299857836008199 0.13885096585928972 0.12292502581913807 C 0.13872356912134906 0.12299857836008199 0.13782123028607482 0.1231615259465042 0.13796833536796266 0.1231615259465042 C 0.13782123028607482 0.1231615259465042 0.13695830813869508 0.12285147327819415 0.1370857048766357 0.12292502581913807 C 0.13695830813869508 0.12285147327819415 0.13636602197173103 0.12215149871723659 0.13643957451267497 0.12227889545517724 C 0.13636602197173103 0.12215149871723659 0.1361833660413615 0.12132271242290632 0.13620307438530868 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530868 0.12139626496385024 C 0.1360871141103687 0.12127036697560968 0.1346317559859436 0.1196023852428732 0.1348115510860287 0.11988548910496352 C 0.1346317559859436 0.1196023852428732 0.1339816983591421 0.11784181274491652 0.13404553318428722 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428722 0.11799901861876629 C 0.13409818662171477 0.11784628530000354 0.13484082452440424 0.11588311493152306 0.13467737443341776 0.1161662187936134 C 0.13484082452440424 0.11588311493152306 0.1361177309296839 0.11447140173035464 0.13600693427612498 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971618,0.16255072779315488) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609643901205082 0.10758070896966163 C 0.1060073856142062 0.10733315253603376 0.10526009671251108 0.10556989740939997 0.10556211862498305 0.10609537036789447 C 0.10526009671251108 0.10556989740939997 0.1043212595729889 0.10389465644464141 0.10428430753721894 0.10442787121869458 C 0.1043212595729889 0.10389465644464141 0.10612045030295542 0.10229013178283765 0.10578383083960279 0.10289608172357546 C 0.10612045030295542 0.10229013178283765 0.10630402431733471 0.10079217157426766 0.10630402431733471 0.10079217157426766 C 0.10630402431733471 0.10079217157426766 0.10544721137625016 0.10350203166431328 0.10578383083960279 0.10289608172357546 C 0.10544721137625016 0.10350203166431328 0.10377511245953887 0.10434906825685775 0.10428430753721894 0.10442787121869458 C 0.10377511245953887 0.10434906825685775 0.1024115987948635 0.10181631037827846 0.10272866037352234 0.10242326395255448 C 0.1024115987948635 0.10181631037827846 0.1023241510138899 0.10051329740978578 0.10238193806526596 0.10078614977303844" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3533763318971618,0.16594797413823886) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061658 0.11460177227368223 C 0.13983331333881963 0.11471910576267708 0.14107730529094095 0.11626456761750158 0.1409302002090531 0.11600977414162027 C 0.14107730529094095 0.11626456761750158 0.14154624542695537 0.11779675397114435 0.14149885733327058 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14149885733327058 0.11765929398425788 C 0.14144140599063998 0.11780077927072267 0.14064762563162672 0.11961191089771672 0.14080944122170333 0.11935711742183543 C 0.14064762563162672 0.11961191089771672 0.13945270600490517 0.12083012388425 0.13955707025235117 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235117 0.1207168156948335 C 0.13953933274279873 0.12078301298168302 0.13927802285087212 0.1216258402011743 0.13934422013772166 0.12151118313702772 C 0.13927802285087212 0.1216258402011743 0.1386480457460103 0.12215889775144197 0.1387627028101569 0.12209270046459245 C 0.1386480457460103 0.12215889775144197 0.13783594079426362 0.12230555057922199 0.13796833536796266 0.12230555057922199 C 0.13783594079426362 0.12230555057922199 0.13705931086162176 0.12202650317774293 0.13717396792576836 0.12209270046459245 C 0.13705931086162176 0.12202650317774293 0.13652625331135412 0.12139652607288114 0.13659245059820366 0.12151118313702772 C 0.13652625331135412 0.12139652607288114 0.13636186297402156 0.12065061840798398 0.13637960048357403 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357403 0.1207168156948335 C 0.13627523623612803 0.120603507505417 0.13496541392414546 0.11910232394595413 0.13512722951422207 0.11935711742183543 C 0.13496541392414546 0.11910232394595413 0.1343803620600242 0.11751780869779309 0.13443781340265482 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13443781340265482 0.11765929398425788 C 0.1344852014963396 0.11752183399737141 0.13515357560876007 0.11575498066573896 0.13500647052687226 0.11600977414162027 C 0.13515357560876007 0.11575498066573896 0.13630279137351173 0.11448443878468739 0.13620307438530868 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971617,0.16900549584881452) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592052044841131 0.10724137810387716 C 0.10584037239035114 0.10701857731361208 0.10516781237882551 0.10543164769964168 0.10543963210005029 0.10590457336228674 C 0.10516781237882551 0.10543164769964168 0.10432285895325556 0.10392393083135895 0.1042896021210626 0.10440382412800679 C 0.10432285895325556 0.10392393083135895 0.10594213061022542 0.10247985863573565 0.10563917309320804 0.10302521358239967 C 0.10594213061022542 0.10247985863573565 0.10610734722316686 0.10113169444802263 0.10610734722316686 0.10113169444802263 C 0.10610734722316686 0.10113169444802263 0.10533621557619066 0.1035705685290637 0.10563917309320804 0.10302521358239967 C 0.10533621557619066 0.1035705685290637 0.10383132655115054 0.10433290146235365 0.1042896021210626 0.10440382412800679 C 0.10383132655115054 0.10433290146235365 0.10260416425294272 0.10205341937163237 0.10288951967373566 0.10259967758848078 C 0.10260416425294272 0.10205341937163237 0.10252546125006651 0.10088070769998898 0.10257746959630495 0.10112627482691638" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.3533763318971617,0.17206301755939013) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235117 0.11460177227368223 C 0.13964681554173392 0.11470737241377758 0.14076640829864315 0.11609828808311966 0.1406340137249441 0.11586897395482648 C 0.14076640829864315 0.11609828808311966 0.1411884544210561 0.11747725580139809 0.1411458051367398 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1411458051367398 0.11735354181320028 C 0.14109409892837224 0.11748087857101859 0.14037969660526026 0.11911089703531323 0.14052533063632922 0.11888158290702006 C 0.14037969660526026 0.11911089703531323 0.13930426894121092 0.12020728872319325 0.13939819676391232 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391232 0.12010531135271839 C 0.1393822330053151 0.12016488891088295 0.13914705410258119 0.12092343340842512 0.13920663166074576 0.12082024205069321 C 0.13914705410258119 0.12092343340842512 0.13858007470820563 0.12140318520366601 0.13868326606593756 0.12134360764550145 C 0.13858007470820563 0.12140318520366601 0.1378491802516335 0.12153517274866801 0.13796833536796266 0.12153517274866801 C 0.1378491802516335 0.12153517274866801 0.1371502133122559 0.12128403008733689 0.13725340466998784 0.12134360764550145 C 0.1371502133122559 0.12128403008733689 0.13667046151701498 0.12071705069296129 0.13673003907517955 0.12082024205069321 C 0.13667046151701498 0.12071705069296129 0.13652251021341574 0.12004573379455383 0.13653847397201296 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13653847397201296 0.12010531135271839 C 0.13644454614931156 0.12000333398224353 0.13526570606852725 0.11865226877872688 0.1354113400995962 0.11888158290702006 C 0.13526570606852725 0.11865226877872688 0.13473915939081801 0.11722620505538196 0.13479086559918557 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918557 0.11735354181320028 C 0.1348335148835019 0.11722982782500246 0.1354350515846804 0.1156396598265333 0.13530265701098135 0.11586897395482648 C 0.1354350515846804 0.1156396598265333 0.13646934577295675 0.11449617213358688 0.13637960048357403 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716167,0.1748147870989082) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576219374113578 0.10693598032467116 C 0.10569006048888163 0.1067354596134326 0.10508475647850853 0.10530722296085923 0.10532939422761084 0.10573285605723978 C 0.10508475647850853 0.10530722296085923 0.10432429839549553 0.10395027777940483 0.10429436724652187 0.10438218174638789 C 0.10432429839549553 0.10395027777940483 0.10578164288676842 0.10265061280334381 0.10550898112145278 0.10314143225534145 C 0.10578164288676842 0.10265061280334381 0.10593033783841574 0.10143726503440209 0.10593033783841574 0.10143726503440209 C 0.10593033783841574 0.10143726503440209 0.10523631935613714 0.10363225170733908 0.10550898112145278 0.10314143225534145 C 0.10523631935613714 0.10363225170733908 0.10388191923360102 0.10431835134730005 0.10429436724652187 0.10438218174638789 C 0.10388191923360102 0.10431835134730005 0.10277747316521403 0.10226681746565086 0.10303429304392768 0.10275844986081444 C 0.10277747316521403 0.10226681746565086 0.1027066404626254 0.10121137696117183 0.10275344797424 0.10143238737540648" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.35337633189716167,0.1775665566384263) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391232 0.11460177227368223 C 0.1394789675243568 0.11469681239976805 0.14048660100557503 0.1159486365021759 0.14036744588924588 0.11574225378671205 C 0.14048660100557503 0.1159486365021759 0.1408664425157468 0.1171897074486265 0.1408280581598621 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1408280581598621 0.11707836485924847 C 0.1407815225723313 0.11719296794128496 0.14013856048153053 0.1186599845591502 0.1402696311094926 0.11845360184368633 C 0.14013856048153053 0.1186599845591502 0.13917067558388607 0.11964673707824212 0.13925521062431734 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431734 0.11955495744481476 C 0.13924084324157984 0.11960857724716287 0.13902918222911925 0.12029126729495083 0.13908280203146736 0.1201983950729921 C 0.13902918222911925 0.12029126729495083 0.13851890077418125 0.12072304391066765 0.13861177299613997 0.12066942410831955 C 0.13851890077418125 0.12072304391066765 0.13786109576326644 0.12084183270116945 0.13796833536796266 0.12084183270116945 C 0.13786109576326644 0.12084183270116945 0.13723202551782657 0.12061580430597144 0.1373248977397853 0.12066942410831955 C 0.13723202551782657 0.12061580430597144 0.13680024890210976 0.12010552285103336 0.13685386870445787 0.1201983950729921 C 0.13680024890210976 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160798 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160798 0.11955495744481476 C 0.1365969250711767 0.11946317781138739 0.13553596899847073 0.11824721912822247 0.13566703962643278 0.11845360184368633 C 0.13553596899847073 0.11824721912822247 0.1350620769885325 0.11696376177721197 0.1351086125760633 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1351086125760633 0.11707836485924847 C 0.13514699693194798 0.11696702226987044 0.1356883799630085 0.11553587107124821 0.13556922484667935 0.11574225378671207 C 0.1356883799630085 0.11553587107124821 0.13661924473245743 0.11450673214759641 0.13653847397201296 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971616,0.18004314922399253) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10561969970458775 0.10666112232338579 C 0.105554779777559 0.10648065368327109 0.10501000616822322 0.10519524069595508 0.1052301801424153 0.10557831048269757 C 0.10501000616822322 0.10519524069595508 0.10432559389351158 0.1039739900326461 0.10429865585943528 0.10436270360293086 C 0.10432559389351158 0.1039739900326461 0.10563720393565718 0.10280429155419113 0.1053918083468731 0.10324602906098901 C 0.10563720393565718 0.10280429155419113 0.10577102939213974 0.10171227856214361 0.10577102939213974 0.10171227856214361 C 0.10577102939213974 0.10171227856214361 0.10514641275808903 0.10368776656778689 0.1053918083468731 0.10324602906098901 C 0.10514641275808903 0.10368776656778689 0.1039274526478065 0.10430525624375181 0.10429865585943528 0.10436270360293086 C 0.1039274526478065 0.10430525624375181 0.10293345118625818 0.1024588757502675 0.10316458907710047 0.10290134490591472 C 0.10293345118625818 0.1024588757502675 0.10286970175392844 0.10150897929623634 0.10291182851438159 0.10170788866904754" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3533763318971616,0.18251974180955882) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431734 0.11460177227368223 C 0.13932790430871736 0.11468730838715947 0.14023477444181376 0.11581395007932656 0.1401275348371175 0.11562820563540908 C 0.14023477444181376 0.11581395007932656 0.14057663180096838 0.11693091393113209 0.14054208588067216 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14054208588067216 0.11683070560069185 C 0.14050020385189443 0.11693384837452468 0.13992153797017373 0.11825416333060337 0.1400395015353396 0.1180684188866859 C 0.13992153797017373 0.11825416333060337 0.13905044156229374 0.11914224059778608 0.13912652309868187 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868187 0.11905963892770145 C 0.13911359245421814 0.11910789674981476 0.13892309754300375 0.119722317792824 0.13897135536511704 0.11963873279306113 C 0.13892309754300375 0.119722317792824 0.13846384423355948 0.12011091674696914 0.13854742923332233 0.12006265892485583 C 0.13846384423355948 0.12011091674696914 0.13787181972373605 0.12021782665842078 0.13796833536796266 0.12021782665842078 C 0.13787181972373605 0.12021782665842078 0.13730565650284018 0.12001440110274253 0.13738924150260304 0.12006265892485583 C 0.13730565650284018 0.12001440110274253 0.136917057548695 0.11955514779329826 0.1369653153708083 0.11963873279306113 C 0.136917057548695 0.11955514779329826 0.13679721699277964 0.11901138110558815 0.1368101476372434 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368101476372434 0.11905963892770145 C 0.13673406610085526 0.11897703725761682 0.13577920563541995 0.11788267444276843 0.1358971692005858 0.1180684188866859 C 0.13577920563541995 0.11788267444276843 0.1353527028264755 0.11672756282685902 0.1353945848552532 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1353945848552532 0.11683070560069185 C 0.1354291307755494 0.11673049727025162 0.13591637550350397 0.11544246119149161 0.13580913589880775 0.11562820563540908 C 0.13591637550350397 0.11544246119149161 0.136754153796008 0.114516236160205 0.13668146011160798 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18474867513656845) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10549145507169455 0.10641375012222896 C 0.10543302713736868 0.10625132834612573 0.1049427308889665 0.10509445665754133 0.10514088746573937 0.10543921946560958 C 0.1049427308889665 0.10509445665754133 0.104326759841726 0.10399533106056319 0.10430251561105733 0.10434517327381948 C 0.104326759841726 0.10399533106056319 0.10550720887965703 0.10294260242995376 0.10528635284975137 0.10334016618607185 C 0.10550720887965703 0.10294260242995376 0.10562765179049131 0.10195979073711098 0.10562765179049131 0.10195979073711098 C 0.10562765179049131 0.10195979073711098 0.1050654968198457 0.10373772994218994 0.10528635284975137 0.10334016618607185 C 0.1050654968198457 0.10373772994218994 0.10396843272059143 0.10429347065055833 0.10430251561105733 0.10434517327381948 C 0.10396843272059143 0.10429347065055833 0.10307383140519792 0.10263172820642248 0.10328185550695598 0.10302995044650498 C 0.10307383140519792 0.10263172820642248 0.10301645691610115 0.10177682139779444 0.10305437100050897 0.10195583983332451" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02169221731726521 0.01969476171262892 C 0.021769863246687338 0.019933731311340065 0.020913083753298624 0.021614749058287253 0.021116363435613822 0.021467057724005843 C 0.020913083753298624 0.021614749058287253 0.01904958144716762 0.021319366389724433 0.01925286112948282 0.021467057724005843 C 0.01904958144716762 0.021319366389724433 0.018754653177253548 0.019455792113917774 0.018677007247831424 0.01969476171262892 C 0.018754653177253548 0.019455792113917774 0.020435879788334464 0.018599422539472096 0.020184612282548316 0.018599422539472096 C 0.020435879788334464 0.018599422539472096 0.021769863246687338 0.019933731311340065 0.02169221731726521 0.01969476171262892 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027419487806183127 0.02605937823328933 C 0.027472358554177796 0.02622209766399067 0.026888959359666405 0.02736673803773433 0.027027376774927083 0.02726617189893087 C 0.026888959359666405 0.02736673803773433 0.025620061407794315 0.027165605760127408 0.025758478823054994 0.02726617189893087 C 0.025620061407794315 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.026564021133523043 0.02531353873051479 0.02639292779899103 0.02531353873051479 C 0.026564021133523043 0.02531353873051479 0.027472358554177796 0.02622209766399067 0.027419487806183127 0.02605937823328933 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35421086185638995,0.18718935489443786) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17448298672553025 0.18635855301437484 C 0.17456741760675326 0.18683732567887423 0.17563613973149714 0.19322156697579493 0.17549615730020643 0.19210382498836745 C 0.17563613973149714 0.19322156697579493 0.1762183274510863 0.2004104261864326 0.17616277590101861 0.1997714568635045" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17616277590101861 0.1997714568635045 C 0.17609059139682343 0.19976762233168668 0.17511476509302587 0.1997039568890396 0.17529656185067624 0.19972544248169077 C 0.17511476509302587 0.1997039568890396 0.173871602555759 0.19949597869085703 0.1739812148092142 0.1995136297516904" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1739812148092142 0.1995136297516904 C 0.17390822781094942 0.19879487656579026 0.17299581527367194 0.1896187525805863 0.1731053708300369 0.1908885915208885 C 0.17299581527367194 0.1896187525805863 0.17262997957473444 0.18372447671366215 0.17266654813283464 0.18427556246806417" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17266654813283464 0.18427556246806417 C 0.17273145446020993 0.18432133300438955 0.17359679394406272 0.1849983914494946 0.1734454240613381 0.1848248089039687 C 0.17359679394406272 0.1849983914494946 0.1745694502808796 0.18648636502357535 0.17448298672553025 0.18635855301437484" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35254180193793316,0.18718935489443786) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17155196200708636 0.18634281830520028 C 0.1716384255624357 0.1862162717614374 0.17274089455400302 0.18465239587358437 0.1725895246712784 0.18482425978004566 C 0.17274089455400302 0.18465239587358437 0.17343330692715733 0.18423513406496647 0.17336840059978204 0.18428045142766486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17336840059978204 0.18428045142766486 C 0.1733744375428157 0.184786683260177 0.1733224122137516 0.19162389947175285 0.17344084391618614 0.19035523341781044 C 0.1733224122137516 0.19162389947175285 0.1718227515250994 0.20026687829640386 0.17194722017056763 0.19950444407497359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17194722017056763 0.19950444407497359 C 0.17183464920175595 0.199512800551696 0.17041161307182048 0.1996168748385215 0.17059636854482738 0.19960472179564281 C 0.17041161307182048 0.1996168748385215 0.16965796999028987 0.199654077155674 0.16973015449448506 0.19965028058951775" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16973015449448506 0.19965028058951775 C 0.16979754506626601 0.19898883389734773 0.1706906586485733 0.19060396509311778 0.17053884135585654 0.19171292028347756 C 0.1706906586485733 0.19060396509311778 0.17163638872802217 0.1858953098070105 0.17155196200708636 0.18634281830520028" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19675003899012447 0.17274541588188216 C 0.19664693795554683 0.17274313592659907 0.19531845936746342 0.17271577646320188 0.19551282657519264 0.17271805641848498 C 0.19531845936746342 0.17271577646320188 0.19432636632422218 0.17271805641848498 0.19441763249737376 0.17271805641848498" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19441763249737376 0.17271805641848498 C 0.19440386326767461 0.17202444417291812 0.19428241158261836 0.16309364095882015 0.194252401740984 0.16439470947168275 C 0.19428241158261836 0.16309364095882015 0.19482152966831975 0.15649777799683792 0.19477775059698624 0.15710523426413367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19477775059698624 0.15710523426413367 C 0.19483900692850345 0.15707790128640195 0.19563855443068692 0.1567784738382627 0.19551282657519264 0.1567772385313529 C 0.19563855443068692 0.1567784738382627 0.19635095638689465 0.15714862623169293 0.19628648486291758 0.1571200579470514" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19628648486291758 0.1571200579470514 C 0.19632766768394583 0.15771656562792188 0.19681930822585708 0.1655802632787332 0.1967806787152565 0.1642781501174973 C 0.19681930822585708 0.1655802632787332 0.1967474856796968 0.17345102136224758 0.19675003899012447 0.17274541588188216" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 70 KiB

View File

@@ -0,0 +1,171 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g id="編節1">
<g transform="translate(0.3213105737601799,0.13389549078914734) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14065887184510625 0.11460177227368223 C 0.1408108562807152 0.11478060703819197 0.14270689644550907 0.11713613493763485 0.14248268507241377 0.116747789447799 C 0.14270689644550907 0.11713613493763485 0.1434216352597362 0.1194714288770386 0.14334940832224985 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224985 0.11926191815171247 C 0.14326184340435533 0.11947756406920186 0.1420519967971106 0.12223801465142105 0.14229862930751544 0.12184966916158521 C 0.1420519967971106 0.12223801465142105 0.14023075060488152 0.12409476360208903 0.14038981819739182 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739182 0.12392206402974258 C 0.14036278343203218 0.12402295914763548 0.1399645058951833 0.12530756091488346 0.14006540101307619 0.12513280544445732 C 0.1399645058951833 0.12530756091488346 0.13900432131225107 0.12612002479274906 0.1391790767826772 0.12601912967485618 C 0.13900432131225107 0.12612002479274906 0.13776654513217684 0.12634354685917182 0.1379683353679626 0.12634354685917182 C 0.13776654513217684 0.12634354685917182 0.1365828384828218 0.1259182345569633 0.13675759395324794 0.12601912967485618 C 0.1365828384828218 0.1259182345569633 0.13577037460495617 0.12495804997403119 0.13587126972284905 0.12513280544445732 C 0.13577037460495617 0.12495804997403119 0.13551981777317365 0.12382116891184969 0.1355468525385333 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1355468525385333 0.12392206402974258 C 0.135387784946023 0.12374936445739614 0.13339140891800488 0.12146132367174936 0.1336380414284097 0.12184966916158521 C 0.13339140891800488 0.12146132367174936 0.13249969749578078 0.11904627223422304 0.1325872624136753 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136753 0.11926191815171244 C 0.13265948935116165 0.11905240742638633 0.13367819703660672 0.11635944395796315 0.1334539856635114 0.116747789447799 C 0.13367819703660672 0.11635944395796315 0.1354297833264279 0.1144229375091725 0.13527779889081895 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017985,0.13855563666717757) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10701944173009977 0.0995217617126694 C 0.10694017279817102 0.09989604478983355 0.1061089014188307 0.10260004395381073 0.1065438281385273 0.10176746017565433 C 0.1061089014188307 0.10260004395381073 0.10371139708039742 0.1046253617229477 0.10440988141192016 0.10451726438160774 C 0.10371139708039742 0.1046253617229477 0.10189116705562863 0.10158483717192755 0.10235292214939083 0.1024160442236941 C 0.10189116705562863 0.10158483717192755 0.10163935084934693 0.09953002207100842 0.10163935084934693 0.09953002207100842 C 0.10163935084934693 0.09953002207100842 0.10281467724315303 0.10324725127546065 0.10235292214939083 0.1024160442236941 C 0.10281467724315303 0.10324725127546065 0.10446057007552778 0.1052486975421745 0.10440988141192016 0.10451726438160774 C 0.10446057007552778 0.1052486975421745 0.10224275795480607 0.10752545657323248 0.10265705413103651 0.10680464318709461 C 0.10224275795480607 0.10752545657323248 0.10180194605845436 0.10918172828365838 0.10192410435453753 0.10884214469843498" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.32131057376017985,0.14321578254520767) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739182 0.11460177227368223 C 0.1405266041894399 0.114762723561741 0.1422330403377545 0.11688269867123963 0.1420312501019687 0.11653318773038736 C 0.1422330403377545 0.11688269867123963 0.14287630527055883 0.11898446321670295 0.14281130102682113 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14281130102682113 0.11879590356390944 C 0.14273249260071605 0.1189899848896499 0.1416436306541958 0.1214743904136472 0.14186559991356015 0.12112487947279495 C 0.1416436306541958 0.1214743904136472 0.14000450908118964 0.12314546446924837 0.1401476699144489 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401476699144489 0.12299003485413657 C 0.14012333862562523 0.12308084046024016 0.13976488884246124 0.12423698205076321 0.13985569444856483 0.12407970212737969 C 0.13976488884246124 0.12423698205076321 0.13890072271782228 0.12496819954084241 0.1390580026412058 0.1248773939347388 C 0.13890072271782228 0.12496819954084241 0.1377867241557554 0.12516936940062295 0.1379683353679626 0.12516936940062295 C 0.1377867241557554 0.12516936940062295 0.1367213881713359 0.12478658832863519 0.1368786680947194 0.1248773939347388 C 0.1367213881713359 0.12478658832863519 0.1359901706812567 0.12392242220399617 0.13608097628736032 0.12407970212737969 C 0.1359901706812567 0.12392242220399617 0.13576466953265254 0.12289922924803297 0.1357890008214762 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214762 0.12299003485413657 C 0.13564583998821694 0.12283460523902476 0.13384910156300078 0.12077536853194269 0.1340710708223651 0.12112487947279495 C 0.13384910156300078 0.12077536853194269 0.13304656128299908 0.11860182223816898 0.13312536970910416 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910416 0.11879590356390944 C 0.13319037395284186 0.11860734391111594 0.13410721086974223 0.11618367678953505 0.13390542063395647 0.11653318773038732 C 0.13410721086974223 0.11618367678953505 0.13568363853058135 0.11444082098562347 0.1355468525385333 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601798,0.1474099138354349) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675122289465533 0.09998832557258422 C 0.10667988085591945 0.10032518034203194 0.10593173661451313 0.10275877958961131 0.10632317066224006 0.10200945418927057 C 0.10593173661451313 0.10275877958961131 0.10377398270992325 0.10458156558183468 0.10440261860829371 0.1044842779746287 C 0.10377398270992325 0.10458156558183468 0.10213577568763135 0.10184509348591653 0.10255135527201732 0.10259317983250642 C 0.10213577568763135 0.10184509348591653 0.1019091411019779 0.09999575989508931 0.1019091411019779 0.09999575989508931 C 0.1019091411019779 0.09999575989508931 0.10296693485640329 0.10334126617909631 0.10255135527201732 0.10259317983250642 C 0.10296693485640329 0.10334126617909631 0.10444823840554056 0.10514256781913878 0.10440261860829371 0.1044842779746287 C 0.10444823840554056 0.10514256781913878 0.10245220749689103 0.10719165094709095 0.10282507405549843 0.10654291889956687 C 0.10245220749689103 0.10719165094709095 0.10205547679017447 0.10868229548647426 0.10216541925664932 0.10837667025977321" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3213105737601798,0.151604045125662) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1401476699144489 0.11460177227368223 C 0.14027077730729218 0.11474662843293512 0.1418065698407752 0.11665460603148387 0.141624958628568 0.11634004618471683 C 0.1418065698407752 0.11665460603148387 0.14238550828029914 0.11854619412240089 0.1423270044609352 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1423270044609352 0.11837649043488672 C 0.14225607687744066 0.11855116362805314 0.14127610112557248 0.12078712859965067 0.1414758734590004 0.12047256875288363 C 0.14127610112557248 0.12078712859965067 0.139800891709867 0.12229109524969174 0.13992973645980034 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980034 0.12215120859609112 C 0.13990783829985903 0.12223293364158436 0.1395852334950113 0.12327346107305513 0.13966695854050457 0.12313190914200996 C 0.1395852334950113 0.12327346107305513 0.13880748398283627 0.12393155681412645 0.13894903591388144 0.1238498317686332 C 0.13880748398283627 0.12393155681412645 0.13780488527697612 0.12411260968792882 0.1379683353679626 0.12411260968792882 C 0.13780488527697612 0.12411260968792882 0.13684608289099856 0.12376810672313997 0.13698763482204374 0.1238498317686332 C 0.13684608289099856 0.12376810672313997 0.13618798714992733 0.12299035721096478 0.13626971219542056 0.12313190914200996 C 0.13618798714992733 0.12299035721096478 0.13598503611618362 0.12206948355059788 0.13600693427612492 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612492 0.12215120859609112 C 0.13587808952619157 0.1220113219424905 0.13426102494349687 0.1201580089061166 0.1344607972769248 0.12047256875288363 C 0.13426102494349687 0.1201580089061166 0.1335387386914952 0.11820181724172031 0.1336096662749898 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1336096662749898 0.11837649043488672 C 0.13366817009435375 0.11820678674737256 0.13449332331956432 0.11602548633794979 0.13431171210735712 0.11634004618471683 C 0.13449332331956432 0.11602548633794979 0.13591210821431948 0.11445691611442935 0.1357890008214762 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017974,0.1553787632868665) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650982594275545 0.10040823304650746 C 0.10644561810789314 0.10071140233901044 0.1057722882906274 0.102901641661832 0.10612457893358165 0.10222724880152531 C 0.1057722882906274 0.102901641661832 0.1038303097764965 0.10454214905483297 0.10439608208502991 0.1044545902083476 C 0.1038303097764965 0.10454214905483297 0.10235592345643378 0.10207932416850657 0.10272994508238116 0.10275260188043749 C 0.10235592345643378 0.10207932416850657 0.10215195232934561 0.10041492393676214 0.10215195232934561 0.10041492393676214 C 0.10215195232934561 0.10041492393676214 0.10310396670832854 0.1034258795923684 0.10272994508238116 0.10275260188043749 C 0.10310396670832854 0.1034258795923684 0.10443713990255209 0.10504705106840669 0.10439608208502991 0.1044545902083476 C 0.10443713990255209 0.10504705106840669 0.10264071208476754 0.10689122588356362 0.10297629198751419 0.10630736704079195 C 0.10264071208476754 0.10689122588356362 0.1022836544487226 0.10823280596900858 0.10238260266854997 0.10795774326497763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.32131057376017974,0.1591534814480709) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980034 0.11460177227368223 C 0.14004053311335926 0.11473214281700983 0.1414227463934939 0.11644932265570374 0.14125929630250741 0.1161662187936134 C 0.1414227463934939 0.11644932265570374 0.14194379098906557 0.11815175193752903 0.141891137551638 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.141891137551638 0.11799901861876629 C 0.14182730272649288 0.11815622449261605 0.14094532454981146 0.12016859296705384 0.14112511964989657 0.11988548910496352 C 0.14094532454981146 0.12016859296705384 0.1396176360756765 0.1215221629520908 0.13973359635061652 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061652 0.12139626496385024 C 0.13971388800666934 0.12146981750479416 0.13942354368230642 0.1224062921931179 0.13949709622325032 0.12227889545517724 C 0.13942354368230642 0.1224062921931179 0.138723569121349 0.12299857836008199 0.13885096585928966 0.12292502581913807 C 0.138723569121349 0.12299857836008199 0.13782123028607476 0.1231615259465042 0.1379683353679626 0.1231615259465042 C 0.13782123028607476 0.1231615259465042 0.136958308138695 0.12285147327819415 0.13708570487663566 0.12292502581913807 C 0.136958308138695 0.12285147327819415 0.1363660219717308 0.12215149871723659 0.13643957451267472 0.12227889545517724 C 0.1363660219717308 0.12215149871723659 0.13618336604136147 0.12132271242290632 0.13620307438530865 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530865 0.12139626496385024 C 0.13608711411036864 0.12127036697560968 0.1346317559859435 0.1196023852428732 0.13481155108602863 0.11988548910496352 C 0.1346317559859435 0.1196023852428732 0.13398169835914203 0.11784181274491652 0.13404553318428716 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428716 0.11799901861876629 C 0.13409818662171472 0.11784628530000354 0.13484082452440416 0.11588311493152306 0.13467737443341768 0.1161662187936134 C 0.13484082452440416 0.11588311493152306 0.13611773092968385 0.11447140173035464 0.13600693427612492 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601797,0.16255072779315494) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629256868604538 0.10078614977303844 C 0.10623478163466932 0.10105900213629111 0.10562878479913024 0.1030302175268305 0.10594584637778905 0.10242326395255448 C 0.10562878479913024 0.1030302175268305 0.10388100413641245 0.10450667418053142 0.10439019921409252 0.10442787121869458 C 0.10388100413641245 0.10450667418053142 0.10255405644835593 0.10229013178283765 0.10289067591170857 0.10289608172357546 C 0.10255405644835593 0.10229013178283765 0.10237048243397663 0.10079217157426766 0.10237048243397663 0.10079217157426766 C 0.10237048243397663 0.10079217157426766 0.10322729537506121 0.10350203166431328 0.10289067591170857 0.10289608172357546 C 0.10322729537506121 0.10350203166431328 0.10442715124986249 0.10496108599274775 0.10439019921409252 0.10442787121869458 C 0.10442715124986249 0.10496108599274775 0.10281036621385636 0.10662084332638898 0.10311238812632836 0.10609537036789447 C 0.10281036621385636 0.10662084332638898 0.10248901434141588 0.10782826540328949 0.10257806773926052 0.10758070896966163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3213105737601797,0.16594797413823892) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061652 0.11460177227368223 C 0.13983331333881957 0.11471910576267708 0.1410773052909409 0.11626456761750158 0.14093020020905306 0.11600977414162027 C 0.1410773052909409 0.11626456761750158 0.1415462454269553 0.11779675397114435 0.1414988573332705 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414988573332705 0.11765929398425788 C 0.1414414059906399 0.11780077927072267 0.1406476256316266 0.11961191089771672 0.14080944122170322 0.11935711742183543 C 0.1406476256316266 0.11961191089771672 0.13945270600490514 0.12083012388425 0.13955707025235115 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235115 0.1207168156948335 C 0.13953933274279867 0.12078301298168302 0.13927802285087204 0.1216258402011743 0.13934422013772158 0.12151118313702772 C 0.13927802285087204 0.1216258402011743 0.13864804574601025 0.12215889775144197 0.13876270281015685 0.12209270046459245 C 0.13864804574601025 0.12215889775144197 0.13783594079426356 0.12230555057922199 0.1379683353679626 0.12230555057922199 C 0.13783594079426356 0.12230555057922199 0.1370593108616217 0.12202650317774293 0.13717396792576828 0.12209270046459245 C 0.1370593108616217 0.12202650317774293 0.1365262533113541 0.12139652607288114 0.13659245059820363 0.12151118313702772 C 0.1365262533113541 0.12139652607288114 0.1363618629740215 0.12065061840798398 0.13637960048357398 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357398 0.1207168156948335 C 0.13627523623612797 0.120603507505417 0.13496541392414543 0.11910232394595413 0.13512722951422204 0.11935711742183543 C 0.13496541392414543 0.11910232394595413 0.13438036206002418 0.11751780869779309 0.1344378134026548 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1344378134026548 0.11765929398425788 C 0.13448520149633958 0.11752183399737141 0.13515357560875996 0.11575498066573896 0.13500647052687215 0.11600977414162027 C 0.13515357560875996 0.11575498066573896 0.1363027913735117 0.11448443878468739 0.13620307438530865 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017963,0.16900549584881458) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609703715500646 0.10112627482691638 C 0.106045028808768 0.10137184195384379 0.10549963165678276 0.10314593580532919 0.1057849870775757 0.10259967758848078 C 0.10549963165678276 0.10314593580532919 0.10392662906033673 0.10447474679365994 0.10438490463024878 0.10440382412800679 C 0.10392662906033673 0.10447474679365994 0.10273237614108599 0.10247985863573565 0.10303533365810337 0.10302521358239967 C 0.10273237614108599 0.10247985863573565 0.10256715952814453 0.10113169444802263 0.10256715952814453 0.10113169444802263 C 0.10256715952814453 0.10113169444802263 0.10333829117512075 0.1035705685290637 0.10303533365810337 0.10302521358239967 C 0.10333829117512075 0.1035705685290637 0.10441816146244173 0.10488371742465463 0.10438490463024878 0.10440382412800679 C 0.10441816146244173 0.10488371742465463 0.10296305493003625 0.10637749902493181 0.10323487465126104 0.10590457336228674 C 0.10296305493003625 0.10637749902493181 0.10267383824483994 0.10746417889414223 0.1027539863029001 0.10724137810387716" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.32131057376017963,0.17206301755939019) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235115 0.11460177227368223 C 0.1396468155417339 0.11470737241377758 0.14076640829864304 0.11609828808311966 0.140634013724944 0.11586897395482648 C 0.14076640829864304 0.11609828808311966 0.14118845442105593 0.11747725580139809 0.14114580513673963 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14114580513673963 0.11735354181320028 C 0.1410940989283721 0.11748087857101859 0.1403796966052602 0.11911089703531323 0.14052533063632916 0.11888158290702006 C 0.1403796966052602 0.11911089703531323 0.13930426894121084 0.12020728872319325 0.13939819676391224 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391224 0.12010531135271839 C 0.13938223300531502 0.12016488891088295 0.1391470541025811 0.12092343340842512 0.13920663166074568 0.12082024205069321 C 0.1391470541025811 0.12092343340842512 0.13858007470820544 0.12140318520366601 0.13868326606593737 0.12134360764550145 C 0.13858007470820544 0.12140318520366601 0.13784918025163345 0.12153517274866801 0.1379683353679626 0.12153517274866801 C 0.13784918025163345 0.12153517274866801 0.13715021331225577 0.12128403008733689 0.1372534046699877 0.12134360764550145 C 0.13715021331225577 0.12128403008733689 0.13667046151701484 0.12071705069296129 0.13673003907517942 0.12082024205069321 C 0.13667046151701484 0.12071705069296129 0.1365225102134157 0.12004573379455383 0.1365384739720129 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1365384739720129 0.12010531135271839 C 0.1364445461493115 0.12000333398224353 0.13526570606852703 0.11865226877872688 0.135411340099596 0.11888158290702006 C 0.13526570606852703 0.11865226877872688 0.134739159390818 0.11722620505538196 0.13479086559918552 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918552 0.11735354181320028 C 0.13483351488350181 0.11722982782500246 0.1354350515846803 0.1156396598265333 0.13530265701098126 0.11586897395482648 C 0.1354350515846803 0.1156396598265333 0.1364693457729567 0.11449617213358688 0.13637960048357398 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601796,0.17481478709890824) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592105877707135 0.10143238737540648 C 0.10587425126545674 0.10165339778964114 0.10538339382867001 0.10325008225597801 0.10564021370738366 0.10275844986081444 C 0.10538339382867001 0.10325008225597801 0.1039676914918686 0.10444601214547572 0.10438013950478946 0.10438218174638789 C 0.1039676914918686 0.10444601214547572 0.10289286386454288 0.10265061280334381 0.10316552562985852 0.10314143225534145 C 0.10289286386454288 0.10265061280334381 0.10274416891289567 0.10143726503440209 0.10274416891289567 0.10143726503440209 C 0.10274416891289567 0.10143726503440209 0.10343818739517416 0.10363225170733908 0.10316552562985852 0.10314143225534145 C 0.10343818739517416 0.10363225170733908 0.10441007065376312 0.10481408571337095 0.10438013950478946 0.10438218174638789 C 0.10441007065376312 0.10481408571337095 0.10310047477459822 0.10615848915362033 0.10334511252370052 0.10573285605723978 C 0.10310047477459822 0.10615848915362033 0.1028401797579215 0.10713650103590973 0.10291231301017564 0.10693598032467116" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.3213105737601796,0.17756655663842635) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391224 0.11460177227368223 C 0.1394789675243567 0.11469681239976806 0.14048660100557492 0.11594863650217593 0.14036744588924577 0.11574225378671207 C 0.14048660100557492 0.11594863650217593 0.14086644251574676 0.1171897074486265 0.14082805815986207 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14082805815986207 0.11707836485924847 C 0.14078152257233129 0.11719296794128496 0.14013856048153042 0.1186599845591502 0.1402696311094925 0.11845360184368633 C 0.14013856048153042 0.1186599845591502 0.13917067558388596 0.11964673707824212 0.13925521062431723 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431723 0.11955495744481476 C 0.13924084324157973 0.11960857724716287 0.13902918222911914 0.12029126729495083 0.13908280203146725 0.1201983950729921 C 0.13902918222911914 0.12029126729495083 0.13851890077418122 0.12072304391066765 0.13861177299613994 0.12066942410831955 C 0.13851890077418122 0.12072304391066765 0.13786109576326638 0.12084183270116945 0.1379683353679626 0.12084183270116945 C 0.13786109576326638 0.12084183270116945 0.1372320255178265 0.12061580430597144 0.13732489773978526 0.12066942410831955 C 0.1372320255178265 0.12061580430597144 0.13680024890210957 0.12010552285103336 0.13685386870445768 0.1201983950729921 C 0.13680024890210957 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160795 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160795 0.11955495744481476 C 0.13659692507117668 0.11946317781138739 0.13553596899847065 0.11824721912822247 0.1356670396264327 0.11845360184368633 C 0.13553596899847065 0.11824721912822247 0.13506207698853243 0.11696376177721197 0.13510861257606321 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13510861257606321 0.11707836485924847 C 0.1351469969319479 0.11696702226987044 0.13568837996300848 0.11553587107124819 0.13556922484667933 0.11574225378671205 C 0.13568837996300848 0.11553587107124819 0.13661924473245737 0.11450673214759642 0.1365384739720129 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213105737601795,0.1800431492239926) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576267823692977 0.10170788866904754 C 0.1057205514764766 0.10190679804185873 0.10527877978336853 0.10334381406156194 0.10550991767421082 0.10290134490591472 C 0.10527877978336853 0.10334381406156194 0.10400464768024728 0.10442015096210991 0.10437585089187604 0.10436270360293086 C 0.10400464768024728 0.10442015096210991 0.10303730281565425 0.10280429155419113 0.10328269840443832 0.10324602906098901 C 0.10303730281565425 0.10280429155419113 0.1029034773591716 0.10171227856214361 0.1029034773591716 0.10171227856214361 C 0.1029034773591716 0.10171227856214361 0.1035280939932224 0.10368776656778689 0.10328269840443832 0.10324602906098901 C 0.1035280939932224 0.10368776656778689 0.10440278892595231 0.10475141717321562 0.10437585089187604 0.10436270360293086 C 0.10440278892595231 0.10475141717321562 0.10322415263470393 0.10596138026944006 0.103444326608896 0.10557831048269757 C 0.10322415263470393 0.10596138026944006 0.10298988711969487 0.10684159096350049 0.1030548070467236 0.10666112232338579" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3213105737601795,0.18251974180955888) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431723 0.11460177227368223 C 0.13932790430871725 0.11468730838715947 0.1402347744418137 0.11581395007932656 0.14012753483711746 0.11562820563540908 C 0.1402347744418137 0.11581395007932656 0.14057663180096833 0.11693091393113209 0.1405420858806721 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405420858806721 0.11683070560069185 C 0.14050020385189438 0.11693384837452468 0.13992153797017365 0.11825416333060337 0.1400395015353395 0.1180684188866859 C 0.13992153797017365 0.11825416333060337 0.13905044156229357 0.11914224059778608 0.13912652309868173 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868173 0.11905963892770145 C 0.139113592454218 0.11910789674981476 0.13892309754300355 0.119722317792824 0.13897135536511684 0.11963873279306113 C 0.13892309754300355 0.119722317792824 0.13846384423355937 0.12011091674696914 0.13854742923332222 0.12006265892485583 C 0.13846384423355937 0.12011091674696914 0.137871819723736 0.12021782665842078 0.1379683353679626 0.12021782665842078 C 0.137871819723736 0.12021782665842078 0.13730565650284013 0.12001440110274253 0.13738924150260298 0.12006265892485583 C 0.13730565650284013 0.12001440110274253 0.13691705754869496 0.11955514779329826 0.13696531537080828 0.11963873279306113 C 0.13691705754869496 0.11955514779329826 0.1367972169927795 0.11901138110558815 0.13681014763724325 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13681014763724325 0.11905963892770145 C 0.13673406610085512 0.11897703725761682 0.13577920563541984 0.11788267444276843 0.13589716920058567 0.1180684188866859 C 0.13577920563541984 0.11788267444276843 0.1353527028264754 0.11672756282685902 0.13539458485525313 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539458485525313 0.11683070560069185 C 0.13542913077554933 0.11673049727025162 0.1359163755035038 0.11544246119149161 0.13580913589880755 0.11562820563540908 C 0.1359163755035038 0.11544246119149161 0.13675415379600797 0.114516236160205 0.13668146011160795 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.1847486751365685) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10562013575080237 0.10195583983332451 C 0.10558222166639453 0.10213485826885459 0.10518462714259726 0.10342817268658748 0.10539265124435532 0.10302995044650498 C 0.10518462714259726 0.10342817268658748 0.10403790824978813 0.10439687589708063 0.10437199114025403 0.10434517327381948 C 0.10403790824978813 0.10439687589708063 0.10316729787165431 0.10294260242995376 0.10338815390155998 0.10334016618607185 C 0.10316729787165431 0.10294260242995376 0.10304685496082001 0.10195979073711098 0.10304685496082001 0.10195979073711098 C 0.10304685496082001 0.10195979073711098 0.10360900993146564 0.10373772994218994 0.10338815390155998 0.10334016618607185 C 0.10360900993146564 0.10373772994218994 0.10439623537092269 0.10469501548707577 0.10437199114025403 0.10434517327381948 C 0.10439623537092269 0.10469501548707577 0.10333546270879906 0.10578398227367783 0.10353361928557193 0.10543921946560958 C 0.10333546270879906 0.10578398227367783 0.10312462374529098 0.1065761718983322 0.10318305167961683 0.10641375012222896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02018461228254831 0.018599422539472096 C 0.020435879788334454 0.018599422539472096 0.021769863246687306 0.019933731311340065 0.02169221731726518 0.01969476171262892 C 0.021769863246687306 0.019933731311340065 0.02091308375329863 0.021614749058287253 0.02111636343561383 0.021467057724005843 C 0.02091308375329863 0.021614749058287253 0.0190495814471676 0.021319366389724433 0.0192528611294828 0.021467057724005843 C 0.0190495814471676 0.021319366389724433 0.018754653177253573 0.019455792113917774 0.018677007247831445 0.01969476171262892 C 0.018754653177253573 0.019455792113917774 0.020435879788334454 0.018599422539472096 0.02018461228254831 0.018599422539472096 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.026392927798991044 0.02531353873051479 C 0.02656402113352306 0.02531353873051479 0.02747235855417783 0.02622209766399067 0.027419487806183158 0.02605937823328933 C 0.02747235855417783 0.02622209766399067 0.026888959359666446 0.02736673803773433 0.027027376774927128 0.02726617189893087 C 0.026888959359666446 0.02736673803773433 0.02562006140779431 0.027165605760127408 0.02575847882305499 0.02726617189893087 C 0.02562006140779431 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.02656402113352306 0.02531353873051479 0.026392927798991044 0.02531353873051479 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32034124676579434,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17140929570826424 0.1874087424575616 C 0.1715028333377361 0.18719553075667622 0.17269560584478572 0.18458799436991413 0.17253174726192655 0.18485020204693703 C 0.17269560584478572 0.18458799436991413 0.17344591965596154 0.18421325435714944 0.17337559870257424 0.18426225033328694" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17337559870257424 0.18426225033328694 C 0.17343515726659886 0.18461358669207303 0.17414423295543427 0.1893045540186986 0.17409030147086968 0.18847828663872002 C 0.17414423295543427 0.1893045540186986 0.17401714943788937 0.19465238991422257 0.1740227765173494 0.19417745889303006" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1740227765173494 0.19417745889303006 C 0.17404562451459166 0.19436351509096433 0.17421007283395717 0.1971203454534341 0.1742969524842564 0.19641013326824147 C 0.17421007283395717 0.1971203454534341 0.17287049306621727 0.2032241611026001 0.17298022071375874 0.20270000511534175" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17298022071375874 0.20270000511534175 C 0.17297507235804835 0.20218419133686288 0.17283716805563365 0.19578022120307573 0.17291844044523405 0.19651023977359525 C 0.17283716805563365 0.19578022120307573 0.17192882800466391 0.193725577477067 0.17200495203855393 0.19393978226910763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17200495203855393 0.19393978226910763 C 0.1718832768062677 0.19361894816545303 0.1704952112235949 0.18954551970762368 0.17054484925111904 0.1900897730252525 C 0.1704952112235949 0.18954551970762368 0.17148133291302634 0.18718532324358733 0.17140929570826424 0.1874087424575616" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32227990075456453,0.1872136342801211) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.174808485083766 0.18784736712931807 C 0.1748888890711553 0.1880523716381623 0.1757777441231313 0.1908087457681499 0.1757733329324376 0.19030742123544872 C 0.1757777441231313 0.1908087457681499 0.17478542657539486 0.1941595815455892 0.17486141937209046 0.19386326152173225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17486141937209046 0.19386326152173225 C 0.1748556687557673 0.1941234260303336 0.17463126345108596 0.1977314431768513 0.17479241197621243 0.19698523562494857 C 0.17463126345108596 0.1977314431768513 0.1727722391617694 0.2033037951878662 0.1729276370705727 0.20281775214456485" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1729276370705727 0.20281775214456485 C 0.17296768023170303 0.20232953445089533 0.1734033621403085 0.19624168854761131 0.17340815500413648 0.19695913982053043 C 0.1734033621403085 0.19624168854761131 0.17282528667967842 0.19397910329028603 0.17287012270463673 0.1942083368695356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17287012270463673 0.1942083368695356 C 0.17290842046642052 0.19399069331239313 0.17330836152728563 0.19076947357156468 0.17332969584604227 0.19159661418382593 C 0.17330836152728563 0.19076947357156468 0.17255447879901653 0.18367315246728202 0.17261411087955697 0.18428264952240078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17261411087955697 0.18428264952240078 C 0.17268871585355156 0.18432776313652172 0.17369223508450948 0.18512107269242845 0.17350937056749208 0.184824012891852 C 0.17369223508450948 0.18512107269242845 0.17491674462678883 0.18809931331577356 0.174808485083766 0.18784736712931807" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32131057376017946,0.18697760846357808) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19503351468743646 0.17794847475399714 C 0.1947946637963254 0.17726880381908208 0.19205618704455454 0.16864622559988468 0.1921673039941039 0.1697924235350164 C 0.19205618704455454 0.16864622559988468 0.19382784523440608 0.1637275725322 0.19370011129284437 0.16419409953241665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19370011129284437 0.16419409953241665 C 0.19378472245663375 0.1639722744286316 0.19480002926793366 0.1609354048928641 0.19471544525831702 0.161532198286996 C 0.19480002926793366 0.1609354048928641 0.19471509225407124 0.15665761051248694 0.194715119408244 0.1570325788028338" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.194715119408244 0.1570325788028338 C 0.1947815950054897 0.15701147957811568 0.19564135914420538 0.15677846259758604 0.19551282657519264 0.15677938810621642 C 0.19564135914420538 0.15677846259758604 0.19631956720816382 0.15704164641535698 0.19625751023639681 0.15702147269926925" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19625751023639681 0.15702147269926925 C 0.19636190628675312 0.1574246029524609 0.19754778382856442 0.162542549471107 0.1975102628406725 0.1618590357375692 C 0.19754778382856442 0.162542549471107 0.1966408870286353 0.16550402098206862 0.1967077620910997 0.1652236375017225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1967077620910997 0.1652236375017225 C 0.19643429423031736 0.16560436967116365 0.19328662714473988 0.17085282663937262 0.1934261477617118 0.1697924235350164 C 0.19328662714473988 0.17085282663937262 0.19516746193124684 0.1786281456889122 0.19503351468743646 0.17794847475399714" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g id="編節1">
<g transform="translate(0.353376331897162,0.13389549078914728) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1406588718451063 0.11460177227368223 C 0.14081085628071527 0.11478060703819197 0.14270689644550916 0.11713613493763485 0.14248268507241385 0.116747789447799 C 0.14270689644550916 0.11713613493763485 0.1434216352597363 0.11947142887703856 0.14334940832224996 0.11926191815171244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14334940832224996 0.11926191815171244 C 0.1432618434043554 0.11947756406920185 0.14205199679711067 0.12223801465142106 0.1422986293075155 0.12184966916158521 C 0.14205199679711067 0.12223801465142106 0.14023075060488158 0.12409476360208903 0.14038981819739188 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14038981819739188 0.12392206402974258 C 0.14036278343203223 0.12402295914763548 0.13996450589518336 0.12530756091488346 0.14006540101307624 0.12513280544445732 C 0.13996450589518336 0.12530756091488346 0.13900432131225113 0.12612002479274906 0.13917907678267727 0.12601912967485618 C 0.13900432131225113 0.12612002479274906 0.1377665451321769 0.12634354685917182 0.13796833536796266 0.12634354685917182 C 0.1377665451321769 0.12634354685917182 0.13658283848282188 0.1259182345569633 0.13675759395324802 0.12601912967485618 C 0.13658283848282188 0.1259182345569633 0.13577037460495622 0.12495804997403119 0.1358712697228491 0.12513280544445732 C 0.13577037460495622 0.12495804997403119 0.1355198177731737 0.12382116891184969 0.13554685253853335 0.12392206402974258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13554685253853335 0.12392206402974258 C 0.13538778494602305 0.12374936445739614 0.13339140891800497 0.12146132367174937 0.1336380414284098 0.12184966916158521 C 0.13339140891800497 0.12146132367174937 0.1324996974957809 0.11904627223422308 0.1325872624136754 0.11926191815171247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1325872624136754 0.11926191815171247 C 0.13265948935116176 0.11905240742638634 0.1336781970366068 0.11635944395796315 0.1334539856635115 0.116747789447799 C 0.1336781970366068 0.11635944395796315 0.13542978332642802 0.1144229375091725 0.13527779889081906 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716194,0.13855563666717752) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10675040239677382 0.10884214469843498 C 0.10662824410069065 0.10850256111321158 0.10560315644404437 0.10608382980095674 0.1060174526202748 0.10680464318709461 C 0.10560315644404437 0.10608382980095674 0.10431531400299884 0.10378583122104099 0.10426462533939122 0.10451726438160774 C 0.10431531400299884 0.10378583122104099 0.10678333969568272 0.10158483717192755 0.10632158460192052 0.1024160442236941 C 0.10678333969568272 0.10158483717192755 0.10703515590196443 0.09953002207100842 0.10703515590196443 0.09953002207100842 C 0.10703515590196443 0.09953002207100842 0.10585982950815832 0.10324725127546065 0.10632158460192052 0.1024160442236941 C 0.10585982950815832 0.10324725127546065 0.10356614100786848 0.10440916704026779 0.10426462533939122 0.10451726438160774 C 0.10356614100786848 0.10440916704026779 0.1016957518930875 0.10093487639749793 0.10213067861278409 0.10176746017565433 C 0.1016957518930875 0.10093487639749793 0.10157579608928285 0.09914747863550524 0.1016550650212116 0.0995217617126694" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.35337633189716194,0.14321578254520761) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14038981819739188 0.11460177227368223 C 0.14052660418943996 0.114762723561741 0.14223304033775455 0.11688269867123958 0.14203125010196876 0.11653318773038732 C 0.14223304033775455 0.11688269867123958 0.14287630527055892 0.11898446321670295 0.1428113010268212 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1428113010268212 0.11879590356390944 C 0.14273249260071613 0.1189899848896499 0.14164363065419583 0.1214743904136472 0.14186559991356018 0.12112487947279495 C 0.14164363065419583 0.1214743904136472 0.14000450908118967 0.12314546446924837 0.14014766991444894 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14014766991444894 0.12299003485413657 C 0.14012333862562526 0.12308084046024016 0.13976488884246127 0.12423698205076321 0.13985569444856485 0.12407970212737969 C 0.13976488884246127 0.12423698205076321 0.13890072271782233 0.12496819954084241 0.13905800264120585 0.1248773939347388 C 0.13890072271782233 0.12496819954084241 0.13778672415575546 0.12516936940062295 0.13796833536796266 0.12516936940062295 C 0.13778672415575546 0.12516936940062295 0.13672138817133592 0.12478658832863519 0.13687866809471944 0.1248773939347388 C 0.13672138817133592 0.12478658832863519 0.13599017068125688 0.12392242220399617 0.13608097628736046 0.12407970212737969 C 0.13599017068125688 0.12392242220399617 0.13576466953265262 0.12289922924803297 0.1357890008214763 0.12299003485413657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357890008214763 0.12299003485413657 C 0.13564583998821703 0.12283460523902476 0.1338491015630008 0.12077536853194269 0.13407107082236516 0.12112487947279495 C 0.1338491015630008 0.12077536853194269 0.1330465612829991 0.11860182223816898 0.13312536970910419 0.11879590356390944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13312536970910419 0.11879590356390944 C 0.1331903739528419 0.11860734391111594 0.13410721086974237 0.11618367678953509 0.1339054206339566 0.11653318773038736 C 0.13410721086974237 0.11618367678953509 0.1356836385305814 0.11444082098562347 0.13554685253853335 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971619,0.14740991383543484) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10650908749466204 0.10837667025977321 C 0.10639914502818718 0.10807104503307216 0.10547656613720548 0.10589418685204278 0.10584943269581287 0.10654291889956687 C 0.10547656613720548 0.10589418685204278 0.10431750794026452 0.10382598813011862 0.10427188814301767 0.1044842779746287 C 0.10431750794026452 0.10382598813011862 0.10653873106367996 0.10184509348591653 0.10612315147929399 0.10259317983250642 C 0.10653873106367996 0.10184509348591653 0.10676536564933349 0.09999575989508931 0.10676536564933349 0.09999575989508931 C 0.10676536564933349 0.09999575989508931 0.10570757189490802 0.10334126617909631 0.10612315147929399 0.10259317983250642 C 0.10570757189490802 0.10334126617909631 0.10364325224464722 0.10438699036742272 0.10427188814301767 0.1044842779746287 C 0.10364325224464722 0.10438699036742272 0.10195990204134435 0.10126012878892983 0.1023513360890713 0.10200945418927057 C 0.10195990204134435 0.10126012878892983 0.10185194181792016 0.0996514708031365 0.10192328385665604 0.09998832557258422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3533763318971619,0.15160404512566195) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14014766991444894 0.11460177227368223 C 0.1402707773072922 0.11474662843293512 0.14180656984077528 0.11665460603148387 0.14162495862856808 0.11634004618471683 C 0.14180656984077528 0.11665460603148387 0.14238550828029928 0.11854619412240089 0.14232700446093535 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14232700446093535 0.11837649043488672 C 0.14225607687744077 0.11855116362805314 0.1412761011255725 0.12078712859965067 0.14147587345900042 0.12047256875288363 C 0.1412761011255725 0.12078712859965067 0.1398008917098671 0.12229109524969174 0.13992973645980042 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13992973645980042 0.12215120859609112 C 0.13990783829985912 0.12223293364158436 0.13958523349501142 0.12327346107305513 0.13966695854050468 0.12313190914200996 C 0.13958523349501142 0.12327346107305513 0.1388074839828363 0.12393155681412645 0.13894903591388147 0.1238498317686332 C 0.1388074839828363 0.12393155681412645 0.13780488527697618 0.12411260968792882 0.13796833536796266 0.12411260968792882 C 0.13780488527697618 0.12411260968792882 0.1368460828909986 0.12376810672313997 0.13698763482204376 0.1238498317686332 C 0.1368460828909986 0.12376810672313997 0.1361879871499274 0.12299035721096478 0.1362697121954206 0.12313190914200996 C 0.1361879871499274 0.12299035721096478 0.13598503611618368 0.12206948355059788 0.13600693427612498 0.12215120859609112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13600693427612498 0.12215120859609112 C 0.13587808952619165 0.1220113219424905 0.134261024943497 0.1201580089061166 0.13446079727692492 0.12047256875288363 C 0.134261024943497 0.1201580089061166 0.13353873869149535 0.11820181724172031 0.13360966627498994 0.11837649043488672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13360966627498994 0.11837649043488672 C 0.1336681700943539 0.11820678674737256 0.1344933233195644 0.11602548633794979 0.1343117121073572 0.11634004618471683 C 0.1344933233195644 0.11602548633794979 0.13591210821431957 0.11445691611442935 0.1357890008214763 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716183,0.15537876328686645) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629190408276137 0.10795774326497763 C 0.10619295586293401 0.10768268056094668 0.10536263486105055 0.10572350819802029 0.10569821476379719 0.10630736704079195 C 0.10536263486105055 0.10572350819802029 0.10431948248380365 0.10386212934828852 0.10427842466628148 0.1044545902083476 C 0.10431948248380365 0.10386212934828852 0.10631858329487756 0.10207932416850657 0.10594456166893018 0.10275260188043749 C 0.10631858329487756 0.10207932416850657 0.10652255442196577 0.10041492393676214 0.10652255442196577 0.10041492393676214 C 0.10652255442196577 0.10041492393676214 0.1055705400429828 0.1034258795923684 0.10594456166893018 0.10275260188043749 C 0.1055705400429828 0.1034258795923684 0.10371265235774807 0.10436703136186223 0.10427842466628148 0.1044545902083476 C 0.10371265235774807 0.10436703136186223 0.10219763717477544 0.10155285594121863 0.10254992781772969 0.10222724880152531 C 0.10219763717477544 0.10155285594121863 0.10210047297369368 0.10010506375400449 0.10216468080855597 0.10040823304650746" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.35337633189716183,0.15915348144807084) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13992973645980042 0.11460177227368223 C 0.14004053311335934 0.11473214281700983 0.14142274639349403 0.11644932265570374 0.14125929630250755 0.1161662187936134 C 0.14142274639349403 0.11644932265570374 0.1419437909890656 0.11815175193752903 0.14189113755163804 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14189113755163804 0.11799901861876629 C 0.14182730272649294 0.11815622449261605 0.14094532454981157 0.12016859296705384 0.14112511964989669 0.11988548910496352 C 0.14094532454981157 0.12016859296705384 0.13961763607567657 0.1215221629520908 0.13973359635061658 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13973359635061658 0.12139626496385024 C 0.1397138880066694 0.12146981750479416 0.13942354368230656 0.1224062921931179 0.13949709622325046 0.12227889545517724 C 0.13942354368230656 0.1224062921931179 0.13872356912134906 0.12299857836008199 0.13885096585928972 0.12292502581913807 C 0.13872356912134906 0.12299857836008199 0.13782123028607482 0.1231615259465042 0.13796833536796266 0.1231615259465042 C 0.13782123028607482 0.1231615259465042 0.13695830813869508 0.12285147327819415 0.1370857048766357 0.12292502581913807 C 0.13695830813869508 0.12285147327819415 0.13636602197173103 0.12215149871723659 0.13643957451267497 0.12227889545517724 C 0.13636602197173103 0.12215149871723659 0.1361833660413615 0.12132271242290632 0.13620307438530868 0.12139626496385024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13620307438530868 0.12139626496385024 C 0.1360871141103687 0.12127036697560968 0.1346317559859436 0.1196023852428732 0.1348115510860287 0.11988548910496352 C 0.1346317559859436 0.1196023852428732 0.1339816983591421 0.11784181274491652 0.13404553318428722 0.11799901861876629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13404553318428722 0.11799901861876629 C 0.13409818662171477 0.11784628530000354 0.13484082452440424 0.11588311493152306 0.13467737443341776 0.1161662187936134 C 0.13484082452440424 0.11588311493152306 0.1361177309296839 0.11447140173035464 0.13600693427612498 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971618,0.16255072779315488) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10609643901205082 0.10758070896966163 C 0.1060073856142062 0.10733315253603376 0.10526009671251108 0.10556989740939997 0.10556211862498305 0.10609537036789447 C 0.10526009671251108 0.10556989740939997 0.1043212595729889 0.10389465644464141 0.10428430753721894 0.10442787121869458 C 0.1043212595729889 0.10389465644464141 0.10612045030295542 0.10229013178283765 0.10578383083960279 0.10289608172357546 C 0.10612045030295542 0.10229013178283765 0.10630402431733471 0.10079217157426766 0.10630402431733471 0.10079217157426766 C 0.10630402431733471 0.10079217157426766 0.10544721137625016 0.10350203166431328 0.10578383083960279 0.10289608172357546 C 0.10544721137625016 0.10350203166431328 0.10377511245953887 0.10434906825685775 0.10428430753721894 0.10442787121869458 C 0.10377511245953887 0.10434906825685775 0.1024115987948635 0.10181631037827846 0.10272866037352234 0.10242326395255448 C 0.1024115987948635 0.10181631037827846 0.1023241510138899 0.10051329740978578 0.10238193806526596 0.10078614977303844" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3533763318971618,0.16594797413823886) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13973359635061658 0.11460177227368223 C 0.13983331333881963 0.11471910576267708 0.14107730529094095 0.11626456761750158 0.1409302002090531 0.11600977414162027 C 0.14107730529094095 0.11626456761750158 0.14154624542695537 0.11779675397114435 0.14149885733327058 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14149885733327058 0.11765929398425788 C 0.14144140599063998 0.11780077927072267 0.14064762563162672 0.11961191089771672 0.14080944122170333 0.11935711742183543 C 0.14064762563162672 0.11961191089771672 0.13945270600490517 0.12083012388425 0.13955707025235117 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955707025235117 0.1207168156948335 C 0.13953933274279873 0.12078301298168302 0.13927802285087212 0.1216258402011743 0.13934422013772166 0.12151118313702772 C 0.13927802285087212 0.1216258402011743 0.1386480457460103 0.12215889775144197 0.1387627028101569 0.12209270046459245 C 0.1386480457460103 0.12215889775144197 0.13783594079426362 0.12230555057922199 0.13796833536796266 0.12230555057922199 C 0.13783594079426362 0.12230555057922199 0.13705931086162176 0.12202650317774293 0.13717396792576836 0.12209270046459245 C 0.13705931086162176 0.12202650317774293 0.13652625331135412 0.12139652607288114 0.13659245059820366 0.12151118313702772 C 0.13652625331135412 0.12139652607288114 0.13636186297402156 0.12065061840798398 0.13637960048357403 0.1207168156948335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637960048357403 0.1207168156948335 C 0.13627523623612803 0.120603507505417 0.13496541392414546 0.11910232394595413 0.13512722951422207 0.11935711742183543 C 0.13496541392414546 0.11910232394595413 0.1343803620600242 0.11751780869779309 0.13443781340265482 0.11765929398425788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13443781340265482 0.11765929398425788 C 0.1344852014963396 0.11752183399737141 0.13515357560876007 0.11575498066573896 0.13500647052687226 0.11600977414162027 C 0.13515357560876007 0.11575498066573896 0.13630279137351173 0.11448443878468739 0.13620307438530868 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971617,0.16900549584881452) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10592052044841131 0.10724137810387716 C 0.10584037239035114 0.10701857731361208 0.10516781237882551 0.10543164769964168 0.10543963210005029 0.10590457336228674 C 0.10516781237882551 0.10543164769964168 0.10432285895325556 0.10392393083135895 0.1042896021210626 0.10440382412800679 C 0.10432285895325556 0.10392393083135895 0.10594213061022542 0.10247985863573565 0.10563917309320804 0.10302521358239967 C 0.10594213061022542 0.10247985863573565 0.10610734722316686 0.10113169444802263 0.10610734722316686 0.10113169444802263 C 0.10610734722316686 0.10113169444802263 0.10533621557619066 0.1035705685290637 0.10563917309320804 0.10302521358239967 C 0.10533621557619066 0.1035705685290637 0.10383132655115054 0.10433290146235365 0.1042896021210626 0.10440382412800679 C 0.10383132655115054 0.10433290146235365 0.10260416425294272 0.10205341937163237 0.10288951967373566 0.10259967758848078 C 0.10260416425294272 0.10205341937163237 0.10252546125006651 0.10088070769998898 0.10257746959630495 0.10112627482691638" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.3533763318971617,0.17206301755939013) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13955707025235117 0.11460177227368223 C 0.13964681554173392 0.11470737241377758 0.14076640829864315 0.11609828808311966 0.1406340137249441 0.11586897395482648 C 0.14076640829864315 0.11609828808311966 0.1411884544210561 0.11747725580139809 0.1411458051367398 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1411458051367398 0.11735354181320028 C 0.14109409892837224 0.11748087857101859 0.14037969660526026 0.11911089703531323 0.14052533063632922 0.11888158290702006 C 0.14037969660526026 0.11911089703531323 0.13930426894121092 0.12020728872319325 0.13939819676391232 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13939819676391232 0.12010531135271839 C 0.1393822330053151 0.12016488891088295 0.13914705410258119 0.12092343340842512 0.13920663166074576 0.12082024205069321 C 0.13914705410258119 0.12092343340842512 0.13858007470820563 0.12140318520366601 0.13868326606593756 0.12134360764550145 C 0.13858007470820563 0.12140318520366601 0.1378491802516335 0.12153517274866801 0.13796833536796266 0.12153517274866801 C 0.1378491802516335 0.12153517274866801 0.1371502133122559 0.12128403008733689 0.13725340466998784 0.12134360764550145 C 0.1371502133122559 0.12128403008733689 0.13667046151701498 0.12071705069296129 0.13673003907517955 0.12082024205069321 C 0.13667046151701498 0.12071705069296129 0.13652251021341574 0.12004573379455383 0.13653847397201296 0.12010531135271839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13653847397201296 0.12010531135271839 C 0.13644454614931156 0.12000333398224353 0.13526570606852725 0.11865226877872688 0.1354113400995962 0.11888158290702006 C 0.13526570606852725 0.11865226877872688 0.13473915939081801 0.11722620505538196 0.13479086559918557 0.11735354181320028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13479086559918557 0.11735354181320028 C 0.1348335148835019 0.11722982782500246 0.1354350515846804 0.1156396598265333 0.13530265701098135 0.11586897395482648 C 0.1354350515846804 0.1156396598265333 0.13646934577295675 0.11449617213358688 0.13637960048357403 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716167,0.1748147870989082) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10576219374113578 0.10693598032467116 C 0.10569006048888163 0.1067354596134326 0.10508475647850853 0.10530722296085923 0.10532939422761084 0.10573285605723978 C 0.10508475647850853 0.10530722296085923 0.10432429839549553 0.10395027777940483 0.10429436724652187 0.10438218174638789 C 0.10432429839549553 0.10395027777940483 0.10578164288676842 0.10265061280334381 0.10550898112145278 0.10314143225534145 C 0.10578164288676842 0.10265061280334381 0.10593033783841574 0.10143726503440209 0.10593033783841574 0.10143726503440209 C 0.10593033783841574 0.10143726503440209 0.10523631935613714 0.10363225170733908 0.10550898112145278 0.10314143225534145 C 0.10523631935613714 0.10363225170733908 0.10388191923360102 0.10431835134730005 0.10429436724652187 0.10438218174638789 C 0.10388191923360102 0.10431835134730005 0.10277747316521403 0.10226681746565086 0.10303429304392768 0.10275844986081444 C 0.10277747316521403 0.10226681746565086 0.1027066404626254 0.10121137696117183 0.10275344797424 0.10143238737540648" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.35337633189716167,0.1775665566384263) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939819676391232 0.11460177227368223 C 0.1394789675243568 0.11469681239976805 0.14048660100557503 0.1159486365021759 0.14036744588924588 0.11574225378671205 C 0.14048660100557503 0.1159486365021759 0.1408664425157468 0.1171897074486265 0.1408280581598621 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1408280581598621 0.11707836485924847 C 0.1407815225723313 0.11719296794128496 0.14013856048153053 0.1186599845591502 0.1402696311094926 0.11845360184368633 C 0.14013856048153053 0.1186599845591502 0.13917067558388607 0.11964673707824212 0.13925521062431734 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13925521062431734 0.11955495744481476 C 0.13924084324157984 0.11960857724716287 0.13902918222911925 0.12029126729495083 0.13908280203146736 0.1201983950729921 C 0.13902918222911925 0.12029126729495083 0.13851890077418125 0.12072304391066765 0.13861177299613997 0.12066942410831955 C 0.13851890077418125 0.12072304391066765 0.13786109576326644 0.12084183270116945 0.13796833536796266 0.12084183270116945 C 0.13786109576326644 0.12084183270116945 0.13723202551782657 0.12061580430597144 0.1373248977397853 0.12066942410831955 C 0.13723202551782657 0.12061580430597144 0.13680024890210976 0.12010552285103336 0.13685386870445787 0.1201983950729921 C 0.13680024890210976 0.12010552285103336 0.13666709272887048 0.11950133764246665 0.13668146011160798 0.11955495744481476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13668146011160798 0.11955495744481476 C 0.1365969250711767 0.11946317781138739 0.13553596899847073 0.11824721912822247 0.13566703962643278 0.11845360184368633 C 0.13553596899847073 0.11824721912822247 0.1350620769885325 0.11696376177721197 0.1351086125760633 0.11707836485924847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1351086125760633 0.11707836485924847 C 0.13514699693194798 0.11696702226987044 0.1356883799630085 0.11553587107124821 0.13556922484667935 0.11574225378671207 C 0.1356883799630085 0.11553587107124821 0.13661924473245743 0.11450673214759641 0.13653847397201296 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3533763318971616,0.18004314922399253) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10561969970458775 0.10666112232338579 C 0.105554779777559 0.10648065368327109 0.10501000616822322 0.10519524069595508 0.1052301801424153 0.10557831048269757 C 0.10501000616822322 0.10519524069595508 0.10432559389351158 0.1039739900326461 0.10429865585943528 0.10436270360293086 C 0.10432559389351158 0.1039739900326461 0.10563720393565718 0.10280429155419113 0.1053918083468731 0.10324602906098901 C 0.10563720393565718 0.10280429155419113 0.10577102939213974 0.10171227856214361 0.10577102939213974 0.10171227856214361 C 0.10577102939213974 0.10171227856214361 0.10514641275808903 0.10368776656778689 0.1053918083468731 0.10324602906098901 C 0.10514641275808903 0.10368776656778689 0.1039274526478065 0.10430525624375181 0.10429865585943528 0.10436270360293086 C 0.1039274526478065 0.10430525624375181 0.10293345118625818 0.1024588757502675 0.10316458907710047 0.10290134490591472 C 0.10293345118625818 0.1024588757502675 0.10286970175392844 0.10150897929623634 0.10291182851438159 0.10170788866904754" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節8">
<g transform="translate(0.3533763318971616,0.18251974180955882) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13925521062431734 0.11460177227368223 C 0.13932790430871736 0.11468730838715947 0.14023477444181376 0.11581395007932656 0.1401275348371175 0.11562820563540908 C 0.14023477444181376 0.11581395007932656 0.14057663180096838 0.11693091393113209 0.14054208588067216 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14054208588067216 0.11683070560069185 C 0.14050020385189443 0.11693384837452468 0.13992153797017373 0.11825416333060337 0.1400395015353396 0.1180684188866859 C 0.13992153797017373 0.11825416333060337 0.13905044156229374 0.11914224059778608 0.13912652309868187 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13912652309868187 0.11905963892770145 C 0.13911359245421814 0.11910789674981476 0.13892309754300375 0.119722317792824 0.13897135536511704 0.11963873279306113 C 0.13892309754300375 0.119722317792824 0.13846384423355948 0.12011091674696914 0.13854742923332233 0.12006265892485583 C 0.13846384423355948 0.12011091674696914 0.13787181972373605 0.12021782665842078 0.13796833536796266 0.12021782665842078 C 0.13787181972373605 0.12021782665842078 0.13730565650284018 0.12001440110274253 0.13738924150260304 0.12006265892485583 C 0.13730565650284018 0.12001440110274253 0.136917057548695 0.11955514779329826 0.1369653153708083 0.11963873279306113 C 0.136917057548695 0.11955514779329826 0.13679721699277964 0.11901138110558815 0.1368101476372434 0.11905963892770145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368101476372434 0.11905963892770145 C 0.13673406610085526 0.11897703725761682 0.13577920563541995 0.11788267444276843 0.1358971692005858 0.1180684188866859 C 0.13577920563541995 0.11788267444276843 0.1353527028264755 0.11672756282685902 0.1353945848552532 0.11683070560069185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1353945848552532 0.11683070560069185 C 0.1354291307755494 0.11673049727025162 0.13591637550350397 0.11544246119149161 0.13580913589880775 0.11562820563540908 C 0.13591637550350397 0.11544246119149161 0.136754153796008 0.114516236160205 0.13668146011160798 0.11460177227368223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18474867513656845) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10549145507169455 0.10641375012222896 C 0.10543302713736868 0.10625132834612573 0.1049427308889665 0.10509445665754133 0.10514088746573937 0.10543921946560958 C 0.1049427308889665 0.10509445665754133 0.104326759841726 0.10399533106056319 0.10430251561105733 0.10434517327381948 C 0.104326759841726 0.10399533106056319 0.10550720887965703 0.10294260242995376 0.10528635284975137 0.10334016618607185 C 0.10550720887965703 0.10294260242995376 0.10562765179049131 0.10195979073711098 0.10562765179049131 0.10195979073711098 C 0.10562765179049131 0.10195979073711098 0.1050654968198457 0.10373772994218994 0.10528635284975137 0.10334016618607185 C 0.1050654968198457 0.10373772994218994 0.10396843272059143 0.10429347065055833 0.10430251561105733 0.10434517327381948 C 0.10396843272059143 0.10429347065055833 0.10307383140519792 0.10263172820642248 0.10328185550695598 0.10302995044650498 C 0.10307383140519792 0.10263172820642248 0.10301645691610115 0.10177682139779444 0.10305437100050897 0.10195583983332451" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.02169221731726521 0.01969476171262892 C 0.021769863246687338 0.019933731311340065 0.020913083753298624 0.021614749058287253 0.021116363435613822 0.021467057724005843 C 0.020913083753298624 0.021614749058287253 0.01904958144716762 0.021319366389724433 0.01925286112948282 0.021467057724005843 C 0.01904958144716762 0.021319366389724433 0.018754653177253548 0.019455792113917774 0.018677007247831424 0.01969476171262892 C 0.018754653177253548 0.019455792113917774 0.020435879788334464 0.018599422539472096 0.020184612282548316 0.018599422539472096 C 0.020435879788334464 0.018599422539472096 0.021769863246687338 0.019933731311340065 0.02169221731726521 0.01969476171262892 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.027419487806183127 0.02605937823328933 C 0.027472358554177796 0.02622209766399067 0.026888959359666405 0.02736673803773433 0.027027376774927083 0.02726617189893087 C 0.026888959359666405 0.02736673803773433 0.025620061407794315 0.027165605760127408 0.025758478823054994 0.02726617189893087 C 0.025620061407794315 0.027165605760127408 0.025419238539793613 0.02589665880258799 0.025366367791798943 0.02605937823328933 C 0.025419238539793613 0.02589665880258799 0.026564021133523043 0.02531353873051479 0.02639292779899103 0.02531353873051479 C 0.026564021133523043 0.02531353873051479 0.027472358554177796 0.02622209766399067 0.027419487806183127 0.02605937823328933 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35434565889154657,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17462565302435235 0.1874087424575616 C 0.17469769022911447 0.18763216167153585 0.17544046145397352 0.19063402634288135 0.17549009948149766 0.1900897730252525 C 0.17544046145397352 0.19063402634288135 0.1739083214617764 0.19426061637276223 0.17402999669406266 0.19393978226910763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17402999669406266 0.19393978226910763 C 0.17395387266017265 0.19415398706114825 0.1730352358977822 0.19724025834411477 0.1731165082873826 0.19651023977359525 C 0.1730352358977822 0.19724025834411477 0.17304957966314755 0.20321581889382062 0.17305472801885793 0.20270000511534175" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17305472801885793 0.20270000511534175 C 0.17294500037131647 0.2021758491280834 0.17165111659806104 0.19569992108304884 0.17173799624836025 0.19641013326824147 C 0.17165111659806104 0.19569992108304884 0.1720350202125096 0.1939914026950958 0.17201217221526735 0.19417745889303006" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17201217221526735 0.19417745889303006 C 0.17200654513580732 0.19370252787183756 0.17199857874631153 0.18765201925874142 0.17194464726174694 0.18847828663872002 C 0.17199857874631153 0.18765201925874142 0.17271890859406702 0.18391091397450085 0.1726593500300424 0.18426225033328694" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1726593500300424 0.18426225033328694 C 0.1727296709834297 0.18431124630942444 0.17366706005354915 0.18511240972395993 0.17350320147068998 0.18485020204693703 C 0.17366706005354915 0.18511240972395993 0.1747191906538242 0.18762195415844696 0.17462565302435235 0.1874087424575616" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35240700490277654,0.18721363428012106) rotate(0) scale(1,1) translate(-0.17301747436630832,-0.18476934738774106)"><path d="M 0.17122646364885072 0.18784736712931807 C 0.17133472319187354 0.18759542094286258 0.17270844268214197 0.18452695309127554 0.17252557816512454 0.184824012891852 C 0.17270844268214197 0.18452695309127554 0.1734954428270544 0.18423753590827985 0.17342083785305978 0.18428264952240078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17342083785305978 0.18428264952240078 C 0.17336120577251934 0.18489214657751954 0.1726839185678177 0.19242375479608717 0.17270525288657437 0.19159661418382593 C 0.1726839185678177 0.19242375479608717 0.1732031237897636 0.19442598042667805 0.1731648260279798 0.1942083368695356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1731648260279798 0.1942083368695356 C 0.1731199900030215 0.19443757044878515 0.17262200086465218 0.19767659109344954 0.17262679372848017 0.19695913982053043 C 0.17262200086465218 0.19767659109344954 0.17314735482317425 0.20330596983823437 0.17310731166204393 0.20281775214456485" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17310731166204393 0.20281775214456485 C 0.17295191375324062 0.2023317091012635 0.1710813882312776 0.19623902807304586 0.1712425367564041 0.19698523562494857 C 0.1710813882312776 0.19623902807304586 0.17116777874420294 0.1936030970131309 0.1711735293605261 0.19386326152173225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1711735293605261 0.19386326152173225 C 0.1710975365638305 0.1935669414978753 0.17026602699087265 0.18980609670274753 0.17026161580017893 0.19030742123544872 C 0.17026602699087265 0.18980609670274753 0.17130686763624003 0.18764236262047385 0.17122646364885072 0.18784736712931807" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35337633189716156,0.18697760846357803) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19599213846294875 0.17794847475399714 C 0.19612608570675913 0.17726880381908208 0.19745998477170154 0.16873202043066016 0.19759950538867346 0.1697924235350164 C 0.19745998477170154 0.16873202043066016 0.19404442319850326 0.16484290533228135 0.1943178910592856 0.1652236375017225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1943178910592856 0.1652236375017225 C 0.1942510159968212 0.16494325402137638 0.1935529112976047 0.16117552200403143 0.1935153903097128 0.1618590357375692 C 0.1935529112976047 0.16117552200403143 0.19487253896434487 0.15661834244607759 0.19476814291398856 0.15702147269926925" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19476814291398856 0.15702147269926925 C 0.19483019988575556 0.15700129898318152 0.19564135914420536 0.1567803136148468 0.19551282657519264 0.15677938810621642 C 0.19564135914420536 0.1567803136148468 0.19637700933938695 0.15705367802755194 0.19631053374214125 0.1570325788028338" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19631053374214125 0.1570325788028338 C 0.19631050658796848 0.15740754709318067 0.19639479190168474 0.1621289916811279 0.1963102078920681 0.161532198286996 C 0.19639479190168474 0.1621289916811279 0.19741015302133033 0.1644159246362017 0.19732554185754092 0.16419409953241665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19732554185754092 0.16419409953241665 C 0.19745327579910263 0.1646606265326333 0.198747232206732 0.1709386214701481 0.19885834915628134 0.1697924235350164 C 0.198747232206732 0.1709386214701481 0.1957532875718377 0.1786281456889122 0.19599213846294875 0.17794847475399714" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 72 KiB

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24073248845225406 0.2494909368722861 0.24188766313423996 0.2475101238438775 C 0.24073248845225406 0.2494909368722861 0.2297390831874525 0.2587673083827231 0.23173990442826928 0.25755640496278853 C 0.2297390831874525 0.2587673083827231 0.2155674588804668 0.2620409648830925 0.2178778082444386 0.2620409648830925 C 0.2155674588804668 0.2620409648830925 0.2020148908197911 0.25634550154285407 0.2040157120606079 0.25755640496278864 C 0.2020148908197911 0.25634550154285407 0.19271277867265127 0.24552931081546894 0.19386795335463716 0.24751012384387755 C 0.19271277867265127 0.24552931081546894 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.12428215862934613) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19819225144331876 0.2310348219816778 C 0.19796896603764158 0.2310348219816778 0.1950662557638383 0.2310348219816778 0.19551282657519264 0.2310348219816778 C 0.1950662557638383 0.2310348219816778 0.19261011630138936 0.2310348219816778 0.19283340170706653 0.2310348219816778" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19283340170706653 0.2310348219816778 C 0.1927595919797526 0.2273539757739595 0.1919210889166349 0.1806270346506281 0.19194768497929923 0.1868646674890582 C 0.1919210889166349 0.1806270346506281 0.192561462619744 0.153626441289805 0.1925142489550944 0.15618322792051678" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19851140419529087 0.15618322792051678 C 0.19855861785994047 0.15874001455122858 0.19905137210842175 0.1931023003274883 0.19907796817108608 0.1868646674890582 C 0.19905137210842175 0.1931023003274883 0.19811844171600482 0.2347156681893961 0.19819225144331876 0.2310348219816778" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3315941297101035,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.1747139434286262 0.1626271006073876 C 0.17475250227575354 0.16705886641689588 0.17515576294029492 0.22206585571359197 0.1751766495941541 0.21580829032148688 C 0.17515576294029492 0.22206585571359197 0.17440385808132947 0.2395436848952454 0.174463303582316 0.2377178853126486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174463303582316 0.2377178853126486 C 0.17424297622058305 0.2377178853126486 0.17137872051805492 0.2377178853126486 0.17181937524152077 0.2377178853126486 C 0.17137872051805492 0.2377178853126486 0.16895511953899267 0.2377178853126486 0.1691754469007256 0.2377178853126486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1691754469007256 0.2377178853126486 C 0.16903938478286767 0.23589208573005177 0.16752301049473356 0.2095507249293818 0.16754270148643033 0.21580829032148688 C 0.16752301049473356 0.2095507249293818 0.16905552612652566 0.15819533479787934 0.1689391550003645 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3279408233169804,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.1745117662633915 0.164791067082083 C 0.17453482795603673 0.1686085219200617 0.1746841284781732 0.21719548298229926 0.1747885065751343 0.21060052513782768 C 0.1746841284781732 0.21719548298229926 0.1731317893102518 0.2467080642222348 0.17325922909985816 0.24393056121574194" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17325922909985816 0.24393056121574194 C 0.17305052336293275 0.24383591004585287 0.17033734878290235 0.2426057385256824 0.17075476025675318 0.2427947471770732 C 0.17033734878290235 0.2426057385256824 0.16804158567672284 0.2415680999175506 0.16825029141364825 0.24166245739905234" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16825029141364825 0.24166245739905234 C 0.1681692286060051 0.2390412378187324 0.1673350603619646 0.2037775995589344 0.16727753772193066 0.21020782243521297 C 0.1673350603619646 0.2037775995589344 0.16907914854173264 0.160690779587751 0.16894056309405556 0.16449978288370962" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32219150019841303,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546626481932254 0.1643478140001234 C 0.17549439757268942 0.16786126884411492 0.17578194406586442 0.21370828805739733 0.17580385785972497 0.20650927212802161 C 0.17578194406586442 0.21370828805739733 0.1751532527457685 0.2544215662380161 0.17520329929299594 0.2507360051526319" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17520329929299594 0.2507360051526319 C 0.17493243339704886 0.2506010218588223 0.17141117674973694 0.24883256938880605 0.1719529085416311 0.2491162056269168 C 0.17141117674973694 0.24883256938880605 0.16843165189431916 0.2471837173510018 0.16870251779026624 0.24733237029530297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16870251779026624 0.24733237029530297 C 0.16862777653587166 0.24396265007000312 0.16782507805068447 0.20000664186416026 0.16780562273753127 0.20689572759170483 C 0.16782507805068447 0.20000664186416026 0.16903017811565235 0.16114397606252331 0.16893598154810457 0.16466334156476806" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31644217707984557,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.17451441354652203 0.16424072920864125 C 0.1745901729649076 0.16765095667538008 0.175399228776772 0.21288727419619569 0.1754235265671486 0.20516345880950712 C 0.175399228776772 0.21288727419619569 0.17412278285324065 0.2612401017688538 0.1742228400620028 0.2569265138489041" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1742228400620028 0.2569265138489041 C 0.17399859150244168 0.25682352400997227 0.17108336022814713 0.25547828531173644 0.17153185734726936 0.2556906357817223 C 0.17108336022814713 0.25547828531173644 0.16861662607297476 0.2542689475780196 0.1688408746325359 0.25437830820907364" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1688408746325359 0.25437830820907364 C 0.16873296076422215 0.25027707075910977 0.16751618957134318 0.1976519938928044 0.16754590821277096 0.20516345880950712 C 0.16751618957134318 0.1976519938928044 0.16856244616228844 0.16083050174190242 0.16848425093540248 0.16424072920864125" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3130281152203159,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.1767588888908717 0.16866918493841992 C 0.17670925333262266 0.17112705498246805 0.17605648960601458 0.20659791430129926 0.17616326219188302 0.19816362546699756 C 0.17605648960601458 0.20659791430129926 0.17542048083283096 0.2758570697402938 0.17547761786045035 0.2698806509500402" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17547761786045035 0.2698806509500402 C 0.1752421572072315 0.26978012657970335 0.17218116871538616 0.2684791849004509 0.1726520900218239 0.2686743585059981 C 0.17218116871538616 0.2684791849004509 0.16959110152997864 0.26744391844826393 0.1698265621831975 0.2675385676834742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1698265621831975 0.2675385676834742 C 0.169845962890366 0.2617573224987678 0.1700826765621229 0.18992451023824303 0.17005937066921933 0.19816362546699756 C 0.1700826765621229 0.18992451023824303 0.17011013808377545 0.1662113148943718 0.17010623289804036 0.16866918493841992" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3430927759472383,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.17471394342862617 0.1626271006073876 C 0.17483031455478737 0.16705886641689588 0.17609070595086368 0.22206585571359197 0.17611039694256042 0.21580829032148688 C 0.17609070595086368 0.22206585571359197 0.17434158941040717 0.23954368489524547 0.1744776515282651 0.23771788531264865" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1744776515282651 0.23771788531264865 C 0.17425732416653217 0.23771788531264865 0.1713930684640041 0.23771788531264865 0.17183372318746995 0.23771788531264865 C 0.1713930684640041 0.23771788531264865 0.16896946748494182 0.23771788531264865 0.16918979484667476 0.23771788531264865" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16918979484667476 0.23771788531264865 C 0.16913034934568824 0.23589208573005183 0.16845556218097743 0.2095507249293818 0.16847644883483662 0.21580829032148688 C 0.16845556218097743 0.2095507249293818 0.16897771384749188 0.15819533479787934 0.16893915500036455 0.1626271006073876" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3467460823403615,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.1745117662633916 0.16449978288370962 C 0.17465035171106869 0.16830878617966824 0.17625403212047144 0.21663804531149153 0.1761747916355165 0.21020782243521297 C 0.17625403212047144 0.21663804531149153 0.17540330712012897 0.24428367697937228 0.17546265208285108 0.24166245739905234" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17546265208285108 0.24166245739905234 C 0.17525394634592567 0.2417568148805541 0.17254077176589525 0.242983755828464 0.17295818323974607 0.2427947471770732 C 0.17254077176589525 0.242983755828464 0.1702450086597157 0.24402521238563102 0.17045371439664112 0.24393056121574194" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17045371439664112 0.24393056121574194 C 0.17030455676211376 0.2411530582092491 0.1685377268404307 0.2040055672933561 0.16866382278231282 0.21060052513782768 C 0.1685377268404307 0.2040055672933561 0.16896362478670093 0.16097361224410428 0.1689405630940557 0.164791067082083" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3524954054589289,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17546626481932254 0.16466334156476806 C 0.17556046138687031 0.1681827070670128 0.17661607894304912 0.2137848133192494 0.17659662362989592 0.20689572759170483 C 0.17661607894304912 0.2137848133192494 0.17562498732276632 0.2507020905206028 0.1756997285771609 0.24733237029530297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1756997285771609 0.24733237029530297 C 0.17542886268121383 0.24748102323960414 0.1719076060339019 0.24939984186502756 0.17244933782579605 0.2491162056269168 C 0.1719076060339019 0.24939984186502756 0.16892808117848412 0.25087098844644146 0.1691989470744312 0.2507360051526319" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1691989470744312 0.2507360051526319 C 0.16914890052720377 0.2470504440672477 0.16857647471384168 0.1993102561986459 0.16859838850770223 0.20650927212802161 C 0.16857647471384168 0.1993102561986459 0.16896411430147149 0.1608343591561319 0.16893598154810463 0.1643478140001234" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3582447285774963,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.174514413546522 0.16424072920864125 C 0.17459260877340796 0.16765095667538008 0.1754230376277258 0.21267492372620983 0.17545275626915358 0.20516345880950712 C 0.1754230376277258 0.21267492372620983 0.1740498759810749 0.2584795456590375 0.17415778984938865 0.25437830820907364" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17415778984938865 0.25437830820907364 C 0.17393354128982752 0.2544876688401277 0.17101831001553297 0.25590298625170815 0.1714668071346552 0.2556906357817223 C 0.17101831001553297 0.25590298625170815 0.16855157586036063 0.2570295036878359 0.16877582441992175 0.2569265138489041" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16877582441992175 0.2569265138489041 C 0.1686757672111596 0.25261292592895435 0.16755084012439928 0.19743964342281856 0.16757513791477588 0.20516345880950712 C 0.16755084012439928 0.19743964342281856 0.16856001035378804 0.16083050174190242 0.16848425093540248 0.16424072920864125" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.361658790437026,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.17675888889087168 0.16866918493841992 C 0.17676279407660678 0.17112705498246805 0.17682905701259632 0.2064027406957521 0.17680575111969274 0.19816362546699756 C 0.17682905701259632 0.2064027406957521 0.17705796031288315 0.27331981286818074 0.17703855960571466 0.26753856768347434" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17703855960571466 0.26753856768347434 C 0.1768030989524958 0.26763321691868464 0.17374211046065044 0.26886953211154535 0.1742130317670882 0.2686743585059982 C 0.17374211046065044 0.26886953211154535 0.1711520432752429 0.269981175320377 0.17138750392846175 0.2698806509500402" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17138750392846175 0.2698806509500402 C 0.17133036690084236 0.26390423215978664 0.17059508701116058 0.18972933663269587 0.17070185959702902 0.19816362546699756 C 0.17059508701116058 0.18972933663269587 0.17005659733979134 0.1662113148943718 0.1701062328980404 0.16866918493841992" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252104)"><path d="M 0.027518731894252094 0.03351898730977576 C 0.026652669624412335 0.03351898730977576 0.022755389410133435 0.02376857225954999 0.022322358275213554 0.024518604186490434 C 0.022755389410133435 0.02376857225954999 0.03314813664821053 0.025268636113430876 0.03271510551329065 0.024518604186490434 C 0.03314813664821053 0.025268636113430876 0.026652669624412335 0.03351898730977576 0.027518731894252094 0.03351898730977576 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="お下げ">
<g id="編節1">
<g transform="translate(0.3373434528286707,0.10096164316357523) rotate(0) scale(1,1) translate(-0.15631943324043046,-0.13009997050031358)"><path d="M 0.13532199395169361 0.11439556251780549 C 0.13522412123437366 0.11420642274743761 0.1340285549926485 0.1117367638720388 0.13414752134385405 0.11212588527339096 C 0.1340285549926485 0.1117367638720388 0.13387330410334153 0.10952612407059543 0.1338943977372271 0.1097261057015797" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1338943977372271 0.1097261057015797 C 0.13401583612142404 0.10955331663804257 0.13564898780043125 0.10735962499703548 0.13535165834759036 0.10765263693913427 C 0.13564898780043125 0.10735962499703548 0.13763824223996174 0.10608973951783258 0.13746235117131778 0.10620996239639426" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13746235117131778 0.10620996239639426 C 0.13750684879640923 0.10612627453523972 0.13812120030182104 0.10507179320018283 0.13799632267241507 0.10520570806253986 C 0.13812120030182104 0.10507179320018283 0.13913598735479796 0.10454944919006745 0.1389608827241895 0.10460298404810994 C 0.13913598735479796 0.10454944919006745 0.14027599072716515 0.10460447953428134 0.1400975782397167 0.10456328976602991 C 0.14027599072716515 0.10460447953428134 0.14123574743592815 0.10522213889653317 0.14110183257357112 0.10509726126712719 C 0.14123574743592815 0.10522213889653317 0.14175809144604348 0.10623692594951008 0.141704556588001 0.10606182131890161 C 0.14175809144604348 0.10623692594951008 0.141747558726921 0.10729324146072275 0.141744250870081 0.10719851683442881" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.141744250870081 0.10719851683442881 C 0.14184963847423002 0.10738367801138039 0.14314769208079128 0.10981414900011675 0.14300890211986925 0.10942045095784778 C 0.14314769208079128 0.10981414900011675 0.14344313275791845 0.11213143020697391 0.14340973040114544 0.11192289334165652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14340973040114544 0.11192289334165652 C 0.14330310539168295 0.112093388800478 0.14185272444447114 0.11426642743053002 0.14213023028759553 0.11396883884751441 C 0.14185272444447114 0.11426642743053002 0.13990877944999092 0.11562104946203797 0.14007966028365282 0.11549395633784384" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3196760836574265,0.08168617218487978) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10315380623829981 0.09957934001708402 C 0.10319249590164709 0.09990451741621097 0.10360510980309028 0.10225227716315188 0.1033859442183835 0.1015304044118457 C 0.10360510980309028 0.10225227716315188 0.10427468206397617 0.10454692523015957 0.10446879974654046 0.10391057652492112 C 0.10427468206397617 0.10454692523015957 0.1016433107508074 0.1059891526784209 0.10222123812299774 0.10534849664327638 C 0.1016433107508074 0.1059891526784209 0.1010012355133984 0.10775451273578829 0.1010012355133984 0.10775451273578829 C 0.1010012355133984 0.10775451273578829 0.10279916549518808 0.10470784060813185 0.10222123812299774 0.10534849664327638 C 0.10279916549518808 0.10470784060813185 0.10506429844410843 0.10414872641909503 0.10446879974654046 0.10391057652492112 C 0.10506429844410843 0.10414872641909503 0.10600882158869267 0.10760230149996866 0.10579423030840558 0.10677739600831987 C 0.10600882158869267 0.10760230149996866 0.1057500336149059 0.10920711171922956 0.105756347428263 0.10886000947481389" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3206273206089396,0.07756591227867318) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13607100636049935 0.11306534553772073 C 0.13606595236291663 0.11285244326286477 0.13607401173628414 0.11010862682481908 0.1360103583895067 0.11051051823944925 C 0.13607401173628414 0.11010862682481908 0.13690355386618874 0.10805365942238428 0.1368348465218286 0.10824264856215851" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368348465218286 0.10824264856215851 C 0.13701974035847236 0.10814058186433036 0.13944925848463738 0.10688483145238381 0.13905357256155387 0.10701784818822073 C 0.13944925848463738 0.10688483145238381 0.14179386968527052 0.10661549769410675 0.1415830775988308 0.10664644773211551" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1415830775988308 0.10664644773211551 C 0.14165975814300408 0.10659073605570303 0.14267418781051971 0.10591228848377929 0.14250324412891013 0.10597790761516576 C 0.14267418781051971 0.10591228848377929 0.14381525291472952 0.10588766216152773 0.14363440177814593 0.10585901815547788 C 0.14381525291472952 0.10588766216152773 0.14481575744347291 0.10643686769296101 0.14467345776791316 0.1063216356877639 C 0.14481575744347291 0.10643686769296101 0.14540761701624944 0.10741274589945281 0.14534199788486296 0.10724180221784321 C 0.14540761701624944 0.10741274589945281 0.14543224333850094 0.10855381100366261 0.1454608873445508 0.10837295986707902 C 0.14543224333850094 0.10855381100366261 0.1449597183512409 0.1094986038559935 0.14499826981226474 0.10941201585684623" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14499826981226474 0.10941201585684623 C 0.14501182224594653 0.10962463650518423 0.14511305674473102 0.11237815860766527 0.14516089901644627 0.11196346363690207 C 0.14511305674473102 0.11237815860766527 0.1443627678462848 0.11459042982842982 0.14442416255168183 0.11438835550600461" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14442416255168183 0.11438835550600461 C 0.14425358833818444 0.11449485448163994 0.14199739714169182 0.11581216350559848 0.14237727198971314 0.11566634321362855 C 0.14199739714169182 0.11581216350559848 0.13965636374090204 0.11617752032597833 0.13986566437542597 0.11613819900964374" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32328848977773217,0.07427964203907253) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1052936188103659 0.09952691407515649 C 0.1051858444600706 0.09983614201757327 0.10452750924545626 0.10212717252942136 0.10464697270859401 0.10138228172965716 C 0.10452750924545626 0.10212717252942136 0.10412340930249607 0.10448310971026246 0.10457683803153937 0.10399625887374171 C 0.10412340930249607 0.10448310971026246 0.10112611753219256 0.10462585789398732 0.10192640033433421 0.10430338674878166 C 0.10112611753219256 0.10462585789398732 0.09977514121868945 0.10593108574497562 0.09977514121868945 0.10593108574497562 C 0.09977514121868945 0.10593108574497562 0.10272668313647587 0.103980915603576 0.10192640033433421 0.10430338674878166 C 0.10272668313647587 0.103980915603576 0.10500767067327565 0.10447135602771628 0.10457683803153937 0.10399625887374171 C 0.10500767067327565 0.10447135602771628 0.104342654783495 0.10798946044291288 0.10451139618475193 0.10715396967262907 C 0.104342654783495 0.10798946044291288 0.10340655519720539 0.10931840913258051 0.10356438962399775 0.10900920349544459" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3259496589465247,0.07099337179947181) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13693655250238476 0.11238910677798729 C 0.13702534021383 0.112195535954187 0.13823539388915446 0.10973294307227928 0.13800200503972776 0.11006625689238385 C 0.13823539388915446 0.10973294307227928 0.13988181983348655 0.10824959794042814 0.1397372186955051 0.10838934093673243" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1397372186955051 0.10838934093673243 C 0.13994814327045382 0.10837865611960283 0.14268226444579274 0.10831502577281937 0.14226831359488992 0.10826112313117733 C 0.14268226444579274 0.10831502577281937 0.1449076551822931 0.10910076009520862 0.144704628906339 0.10903617263643699" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.144704628906339 0.10903617263643699 C 0.1447979713143874 0.10901971385145376 0.14600714650008023 0.10885462590976829 0.14582473780291988 0.10883866721663822 C 0.14600714650008023 0.10885462590976829 0.14704352449131033 0.10933270193623977 0.1468935332722633 0.10922767695399777 C 0.14704352449131033 0.10933270193623977 0.14770201614640288 0.11026491691571946 0.14762463243148455 0.11009896700354234 C 0.14770201614640288 0.11026491691571946 0.14780617915815333 0.11140148459728356 0.1478221378512834 0.11121907590012321 C 0.14780617915815333 0.11140148459728356 0.1473281031316818 0.11243786258851364 0.1474331281139238 0.11228787136946658 C 0.1473281031316818 0.11243786258851364 0.14648923056025048 0.11307989545862299 0.1465618380643792 0.11301897052868788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1465618380643792 0.11301897052868788 C 0.14648081215364228 0.1132160136974292 0.14536473647665618 0.1157352412528191 0.14558952713553638 0.11538348855358374 C 0.14536473647665618 0.1157352412528191 0.1437205854096733 0.11739471245000628 0.14386435015781662 0.11724000291951224" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14386435015781662 0.11724000291951224 C 0.14366435299219188 0.11726094875116674 0.1410590315099634 0.11745588913685498 0.14146438417031976 0.11749135289936623 C 0.1410590315099634 0.11745588913685498 0.13879476273880895 0.11675802817521143 0.13900011823354055 0.11681443776937718" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3297821080052229,0.06920627145391195) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10723985163061928 0.10041782604181068 C 0.10700742807849362 0.10064851310987082 0.10541139863432156 0.1024190825308075 0.10584531031786532 0.1018019484501715 C 0.10541139863432156 0.1024190825308075 0.10401542112775077 0.10435943908698947 0.1046363815293567 0.10412063052562667 C 0.10401542112775077 0.10435943908698947 0.10125889644457897 0.10317381407403196 0.10211954790822969 0.10323479981834827 C 0.10125889644457897 0.10317381407403196 0.09947247274745238 0.10375471605972889 0.09947247274745238 0.10375471605972889 C 0.09947247274745238 0.10375471605972889 0.10298019937188041 0.10329578556266457 0.10211954790822969 0.10323479981834827 C 0.10298019937188041 0.10329578556266457 0.10481534245847655 0.1047365096182648 0.1046363815293567 0.10412063052562667 C 0.10481534245847655 0.1047365096182648 0.10267539466903391 0.10760703714266621 0.10319331348294883 0.10693007437417702 C 0.10267539466903391 0.10760703714266621 0.10125146117302027 0.10839112926362598 0.1015288686458672 0.10818240713656185" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
<g transform="translate(0.3336145570639212,0.06741917110835201) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13801094378211617 0.11216073786167931 C 0.13817560151256192 0.11202567952859742 0.1403427202173625 0.11034276832520838 0.13998683654746527 0.11054003786469664 C 0.1403427202173625 0.11034276832520838 0.1424727737603342 0.10973129218141385 0.14228154782088276 0.10979350338782022" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14228154782088276 0.10979350338782022 C 0.1424758094886032 0.10987636318560462 0.1449611150309483 0.11101773244384532 0.14461268783352796 0.11078782096123306 C 0.1449611150309483 0.11101773244384532 0.14661683971962683 0.11269949286399514 0.14646267418992692 0.11255244117916728" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14646267418992692 0.11255244117916728 C 0.1465537848469959 0.11257856673967527 0.147712954095147 0.11296025419339367 0.14755600207475478 0.11286594790526316 C 0.147712954095147 0.11296025419339367 0.14843486972740347 0.11384426428818711 0.14834609843463376 0.11368411663673336 C 0.14843486972740347 0.11384426428818711 0.14861806195692986 0.11497079730360832 0.14862125758799138 0.1147877197227081 C 0.14861806195692986 0.11497079730360832 0.1482134445737651 0.1160379996279282 0.1483077508618956 0.11588104760753597 C 0.1482134445737651 0.1160379996279282 0.14732943447897162 0.11675991526018457 0.14748958213042537 0.11667114396741486 C 0.14732943447897162 0.11675991526018457 0.14629401212061938 0.11696923305021897 0.1463859790444506 0.1169463031207725" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1463859790444506 0.1169463031207725 C 0.14622677539843623 0.11708788492629177 0.14411929655226285 0.11886289627992522 0.14447553529227802 0.1186452847870036 C 0.14411929655226285 0.11886289627992522 0.14191407907026787 0.11963367072323428 0.14211111416426866 0.11955764103583191" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14211111416426866 0.11955764103583191 C 0.1419221758542856 0.11948879403776827 0.1394950721769337 0.11852190752988938 0.13984385444447198 0.11873147705906828 C 0.1394950721769337 0.11852190752988938 0.13776588299625392 0.1169020841545699 0.13792572695380914 0.11704280668568516" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33784255268853425,0.06749297104649586) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10859856400166473 0.10207174472654916 C 0.10828853654221955 0.1021771971107937 0.10607786823255384 0.10306892110714014 0.10673839924499365 0.10270445903201644 C 0.10607786823255384 0.10306892110714014 0.10397257563216726 0.10420094576708683 0.10463537792702587 0.10425851717729129 C 0.10397257563216726 0.10420094576708683 0.10201477145504775 0.10192693217778284 0.10276158547584197 0.10235903057078972 C 0.10201477145504775 0.10192693217778284 0.10015449380226062 0.10166592681925003 0.10015449380226062 0.10166592681925003 C 0.10015449380226062 0.10166592681925003 0.10350839949663618 0.10279112896379661 0.10276158547584197 0.10235903057078972 C 0.10350839949663618 0.10279112896379661 0.10452624332051577 0.10489051694672327 0.10463537792702587 0.10425851717729129 C 0.10452624332051577 0.10489051694672327 0.1013445145452122 0.10653243862886644 0.10210677783678138 0.10615102918738167 C 0.1013445145452122 0.10653243862886644 0.09972096823441579 0.1066129645993363 0.10006179817761086 0.10654697382619992" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節5">
<g transform="translate(0.3420705483131473,0.06756677098463967) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1390767106114674 0.11242646337673796 C 0.1392839096756257 0.11237725494918406 0.14196944277929788 0.11181466669097931 0.14156309938136713 0.11183596224609119 C 0.14196944277929788 0.11181466669097931 0.14415197572040866 0.11219882958783746 0.14395283138663623 0.11217091671539543" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14395283138663623 0.11217091671539543 C 0.14409110927243005 0.11233054931837738 0.1458245437464794 0.1144458914530321 0.145612166016162 0.11408650795117874 C 0.1458245437464794 0.1144458914530321 0.14657546399496865 0.11668326963650734 0.14650136415044507 0.1164835187376359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14650136415044507 0.1164835187376359 C 0.14657180117465268 0.11654694051910075 0.1474463348267424 0.11739814528268457 0.14734660844093644 0.11724458011521409 C 0.1474463348267424 0.11739814528268457 0.14770766377991712 0.11850915527635049 0.14769808078011676 0.11832630074728166 C 0.14770766377991712 0.11850915527635049 0.14737847629527775 0.11960198263131087 0.14746160443854062 0.11943883446404005 C 0.14737847629527775 0.11960198263131087 0.14654697789349205 0.12038380514033747 0.14670054306096253 0.1202840787545315 C 0.14654697789349205 0.12038380514033747 0.14543596789982613 0.12064513409351206 0.14561882242889496 0.12063555109371173 C 0.14543596789982613 0.12064513409351206 0.14441357756907333 0.12037936839033755 0.14450628871213653 0.12039907475213557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14450628871213653 0.12039907475213557 C 0.14430113204449974 0.12045653735112424 0.14162882884220176 0.12112804906925267 0.14204440870049503 0.1210886259399996 C 0.14162882884220176 0.12112804906925267 0.13930890722196074 0.12085411283343692 0.13951933041261722 0.12087215230317251" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13951933041261722 0.12087215230317251 C 0.13937969432198075 0.12072744792758769 0.13762208313429977 0.1187944438684424 0.13784369732497972 0.11913569979615457 C 0.13762208313429977 0.1187944438684424 0.13677798202441444 0.11658052961849917 0.13685996012445792 0.1167770811706265" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34583829384481135,0.06948653322024144) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10909473636086872 0.10415389729370678 C 0.10876985824351722 0.10411277017590073 0.10639201665754972 0.10394515319268056 0.10714546765675967 0.10390713458687055 C 0.10639201665754972 0.10394515319268056 0.1040035452542302 0.10403971068574648 0.10457403036560896 0.10438200892856689 C 0.1040035452542302 0.10403971068574648 0.1032407444609727 0.10113759594816435 0.10372255698848713 0.10185334512994808 C 0.1032407444609727 0.10113759594816435 0.10168315520052235 0.10008751383786448 0.10168315520052235 0.10008751383786448 C 0.10168315520052235 0.10008751383786448 0.10420436951600157 0.1025690943117318 0.10372255698848713 0.10185334512994808 C 0.10420436951600157 0.1025690943117318 0.10419889036733615 0.10490220509598461 0.10457403036560896 0.10438200892856689 C 0.10419889036733615 0.10490220509598461 0.10061940039641562 0.10498317643638276 0.10147171699885026 0.10497452213445435 C 0.10061940039641562 0.10498317643638276 0.09912486637635963 0.10434383684108452 0.09946013075100114 0.10443393474013735" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節6">
<g transform="translate(0.3496060393764755,0.07140629545584318) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13991812909366408 0.11313249731481492 C 0.1401259299337468 0.11317909916447044 0.14278629355838593 0.11385070841387498 0.1424117391746569 0.1136917195106811 C 0.14278629355838593 0.11385070841387498 0.1445795352420586 0.1151527512066798 0.14441278169841232 0.11504036415314144" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14441278169841232 0.11504036415314144 C 0.14446708671166453 0.11524445802166784 0.14509778233916995 0.11790560259645402 0.14506444185743866 0.11748949057545836 C 0.14509778233916995 0.11790560259645402 0.14479190294766672 0.12024572655755855 0.14481286747918765 0.12003370840508931" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14481286747918765 0.12003370840508931 C 0.14484837357811234 0.12012158908375391 0.14526125560953426 0.12127001717741678 0.14523894066628382 0.12108827654906448 C 0.14526125560953426 0.12127001717741678 0.1450091017917558 0.12238314541799493 0.14508064679819305 0.12221459594531688 C 0.1450091017917558 0.12238314541799493 0.14423416605960931 0.12322106584311623 0.14438040058903692 0.12311087022120118 C 0.14423416605960931 0.12322106584311623 0.14314409181670953 0.12355925835154792 0.14332583244506183 0.12353694340829746 C 0.14314409181670953 0.12355925835154792 0.1420309635761314 0.1233071045337694 0.14219951304880946 0.12337864954020665 C 0.1420309635761314 0.1233071045337694 0.14122854924993475 0.12262004948028746 0.1413032387729251 0.12267840333105047" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1413032387729251 0.12267840333105047 C 0.14109365523607845 0.122640115609243 0.13839743366598856 0.1220722057241575 0.1387882363307651 0.12221895066936081 C 0.13839743366598856 0.1220722057241575 0.13643238766767685 0.12080900676521483 0.13661360679560672 0.12091746398861068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13661360679560672 0.12091746398861068 C 0.1365515369317647 0.12072619212417615 0.13581917966672366 0.11821833355239124 0.13586876842950246 0.11862220161539633 C 0.13581917966672366 0.11821833355239124 0.13603102274332446 0.11585845103397899 0.13601854164226124 0.11607104723254955" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3521508982555223,0.07478343725303702) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10862793751460477 0.10624283127066386 C 0.10835396793875311 0.10606344926916829 0.10629025652739851 0.10487041897966803 0.10698412005949484 0.10516653926169044 C 0.10629025652739851 0.10487041897966803 0.10410206137366633 0.10390836974332256 0.1044647563220268 0.1044661095785294 C 0.10410206137366633 0.10390836974332256 0.10468866392780156 0.10096557643699476 0.104807950369332 0.10182010025044932 C 0.10468866392780156 0.10096557643699476 0.1037490376728441 0.099338966697802 0.1037490376728441 0.099338966697802 C 0.1037490376728441 0.099338966697802 0.10492723681086245 0.10267462406390389 0.104807950369332 0.10182010025044932 C 0.10492723681086245 0.10267462406390389 0.10389954373458432 0.10476920824546279 0.1044647563220268 0.1044661095785294 C 0.10389954373458432 0.10476920824546279 0.10064682396058597 0.1032728396806611 0.10141667484467717 0.10363869225204961 C 0.10064682396058597 0.1032728396806611 0.09958381371294667 0.10204304446655646 0.0998456510174796 0.10227099415019834" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節7">
<g transform="translate(0.35469575713456925,0.07816057905023086) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.14036488610880168 0.11413592999981373 C 0.14053122736040805 0.11426890935740144 0.14262793223036893 0.11603877440521468 0.14236098112807788 0.11573168229086622 C 0.14262793223036893 0.11603877440521468 0.14366890918697914 0.11799514812875593 0.14356829933629442 0.11782103537199519" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14356829933629442 0.11782103537199519 C 0.14352763949569114 0.11802827947684866 0.14292793597169942 0.12069657914251222 0.1430803812490552 0.12030796463023677 C 0.14292793597169942 0.12069657914251222 0.1416271705712727 0.12266577992672258 0.1417389560080252 0.12248440951930059" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1417389560080252 0.12248440951930059 C 0.1417323443244592 0.12257896099937268 0.1416000024957014 0.12379215690216262 0.14165961580523334 0.12361902728016567 C 0.1416000024957014 0.12379215690216262 0.14088540484218495 0.12468209297929496 0.14102359629364175 0.12456196498326398 C 0.14088540484218495 0.12468209297929496 0.13982157708218879 0.12509550140307754 0.1400013183877517 0.1250605632325374 C 0.13982157708218879 0.12509550140307754 0.1386935710048897 0.12492160972021372 0.13886670062688664 0.12498122302974567 C 0.1386935710048897 0.12492160972021372 0.1378036349277574 0.12420701206669722 0.13792376292378838 0.12434520351815403 C 0.1378036349277574 0.12420701206669722 0.13738361482040884 0.1232377357867731 0.13742516467451496 0.12332292561226395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13742516467451496 0.12332292561226395 C 0.13725357647191153 0.12319663746046144 0.1350791838848091 0.1215042576952344 0.13536610624327383 0.12180746779063395 C 0.1350791838848091 0.1215042576952344 0.13386676221707702 0.11950748252387224 0.13398209637293831 0.1196844044674693" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13398209637293831 0.1196844044674693 C 0.13401015641542316 0.11948528081709753 0.13445129090393848 0.11691018816968157 0.13431881688275638 0.11729492066300812 C 0.13445129090393848 0.11691018816968157 0.1356761986058209 0.11488200570459596 0.13557178462712363 0.11506761454755074" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35550261962122287,0.08231152669628086) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10729265310771809 0.10791572154670838 C 0.10712504677778444 0.10763439371459953 0.10579318530414158 0.10565743365530487 0.10628701512811621 0.10622775455405524 C 0.10579318530414158 0.10565743365530487 0.10424818315483074 0.10383350791049104 0.10432967416387033 0.10449379615420622 C 0.10424818315483074 0.10383350791049104 0.10606545371448951 0.10144569244164024 0.10579806907387863 0.10226602509176416 C 0.10606545371448951 0.10144569244164024 0.10593398200753558 0.09957180025346273 0.10593398200753558 0.09957180025346273 C 0.10593398200753558 0.09957180025346273 0.10553068443326775 0.10308635774188808 0.10579806907387863 0.10226602509176416 C 0.10553068443326775 0.10308635774188808 0.10368879474516986 0.10451844654135037 0.10432967416387033 0.10449379615420622 C 0.10368879474516986 0.10451844654135037 0.1014212343817918 0.10174762088672623 0.10195279256167582 0.10241392741462911 C 0.1014212343817918 0.10174762088672623 0.10100491383838137 0.10017629524881558 0.10114032508456629 0.10049595698678894" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24073248845225406 0.2494909368722861 0.24188766313423996 0.2475101238438775 C 0.24073248845225406 0.2494909368722861 0.2297390831874525 0.2587673083827231 0.23173990442826928 0.25755640496278853 C 0.2297390831874525 0.2587673083827231 0.2155674588804668 0.2620409648830925 0.2178778082444386 0.2620409648830925 C 0.2155674588804668 0.2620409648830925 0.2020148908197911 0.25634550154285407 0.2040157120606079 0.25755640496278864 C 0.2020148908197911 0.25634550154285407 0.19271277867265127 0.24552931081546894 0.19386795335463716 0.24751012384387755 C 0.19271277867265127 0.24552931081546894 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,147 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24073248845225406 0.2494909368722861 0.24188766313423996 0.2475101238438775 C 0.24073248845225406 0.2494909368722861 0.2297390831874525 0.2587673083827231 0.23173990442826928 0.25755640496278853 C 0.2297390831874525 0.2587673083827231 0.2155674588804668 0.2620409648830925 0.2178778082444386 0.2620409648830925 C 0.2155674588804668 0.2620409648830925 0.2020148908197911 0.25634550154285407 0.2040157120606079 0.25755640496278864 C 0.2020148908197911 0.25634550154285407 0.19271277867265127 0.24552931081546894 0.19386795335463716 0.24751012384387755 C 0.19271277867265127 0.24552931081546894 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.12428215862934613) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19551282657519264 0.2423680787601194 C 0.1955012355300026 0.24198715394918774 0.19526836089482094 0.23703513140707602 0.19537373403291217 0.23779698102893934 C 0.19526836089482094 0.23703513140707602 0.19422516682771782 0.2324640336758961 0.1942483489180979 0.23322588329775942 C 0.19422516682771782 0.2324640336758961 0.19499017581026 0.22789293594471619 0.1950955489483512 0.2286547855665795 C 0.19499017581026 0.22789293594471619 0.1929606891706233 0.22332183821353627 0.19298387126100336 0.2240836878353996 C 0.1929606891706233 0.22332183821353627 0.19471199072569925 0.21875074048235635 0.19481736386379048 0.21951259010421967 C 0.19471199072569925 0.21875074048235635 0.19169621151352864 0.21417964275117643 0.19171939360390872 0.21494149237303975 C 0.19169621151352864 0.21417964275117643 0.19443380564113844 0.2096085450199965 0.19453917877922963 0.21037039464185983 C 0.19443380564113844 0.2096085450199965 0.1904317338564341 0.2050374472888166 0.19045491594681419 0.2057992969106799 C 0.1904317338564341 0.2050374472888166 0.1941556205565776 0.20046634955763667 0.19426099369466882 0.2012281991795 C 0.1941556205565776 0.20046634955763667 0.1891672561993395 0.19589525182645676 0.18919043828971954 0.19665710144832008 C 0.1891672561993395 0.19589525182645676 0.19387743547201686 0.19132415409527684 0.19398280861010808 0.19208600371714016 C 0.19387743547201686 0.19132415409527684 0.1874212233011681 0.18713398117502858 0.187925960632625 0.18751490598596024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.187925960632625 0.18751490598596024 C 0.187981159011742 0.1863186236670079 0.1888763682879357 0.17056224881152787 0.18858834118202883 0.17315951815853242 C 0.1888763682879357 0.17056224881152787 0.1916151146302972 0.15494668679385343 0.19138228590350734 0.15634767382190565" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19964336724687803 0.15634767382190565 C 0.19987619597366793 0.15774866084995787 0.20272533907426352 0.17575678750553697 0.20243731196835665 0.17315951815853242 C 0.20272533907426352 0.17575678750553697 0.20315489089687733 0.18871118830491257 0.20309969251776036 0.18751490598596024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20309969251776036 0.18751490598596024 C 0.2025949551863034 0.1878958307968919 0.19693747140218576 0.19284785333900362 0.19704284454027698 0.1920860037171403 C 0.19693747140218576 0.19284785333900362 0.20181203277028542 0.19741895107018353 0.2018352148606655 0.19665710144832022 C 0.20181203277028542 0.19741895107018353 0.19665928631762503 0.20199004880136345 0.19676465945571625 0.20122819917950013 C 0.19665928631762503 0.20199004880136345 0.2005475551131909 0.20656114653254337 0.20057073720357096 0.20579929691068005 C 0.2005475551131909 0.20656114653254337 0.19638110123306407 0.2111322442637233 0.1964864743711553 0.21037039464185997 C 0.19638110123306407 0.2111322442637233 0.19928307745609636 0.2157033419949032 0.19930625954647643 0.2149414923730399 C 0.19928307745609636 0.2157033419949032 0.19610291614850334 0.22027443972608313 0.19620828928659456 0.2195125901042198 C 0.19610291614850334 0.22027443972608313 0.19801859979900183 0.22484553745726304 0.1980417818893819 0.22408368783539973 C 0.19801859979900183 0.22484553745726304 0.19582473106394252 0.22941663518844296 0.19593010420203374 0.22865478556657964 C 0.19582473106394252 0.22941663518844296 0.19675412214190718 0.23398773291962288 0.19677730423228726 0.23322588329775956 C 0.19675412214190718 0.23398773291962288 0.19554654597938168 0.2385588306508028 0.1956519191174729 0.23779698102893948 C 0.19554654597938168 0.2385588306508028 0.19550123553000262 0.24274900357105106 0.19551282657519264 0.2423680787601194" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3315941297101035,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.1772357118591768 0.16248098613034803 C 0.17741103277147174 0.16452361870550788 0.17939634795264964 0.18927639233655072 0.17933956280671592 0.1869925770322662 C 0.17939634795264964 0.18927639233655072 0.17779859784402013 0.19012795251088685 0.17791713361038136 0.1898867697817622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17791713361038136 0.1898867697817622 C 0.17737507997318686 0.18986915169323137 0.17138139006638428 0.19023561184881618 0.1714124899640473 0.18967535271939237 C 0.17138139006638428 0.19023561184881618 0.17805488857795684 0.1971877565528027 0.17754393483842534 0.19660987933484808" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17754393483842534 0.19660987933484808 C 0.17700558152083407 0.19690472286774519 0.1710562954492703 0.20102072248046518 0.1710836950273301 0.20014800172961342 C 0.1710562954492703 0.20102072248046518 0.1777260936412396 0.20766040556302384 0.1772151399017081 0.20708252834506918" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1772151399017081 0.20708252834506918 C 0.1766767865841168 0.2073773718779663 0.1707275005125531 0.21149337149068625 0.17075490009061284 0.21062065073983452 C 0.1707275005125531 0.21149337149068625 0.17739729870452253 0.2181330545732448 0.176886344964991 0.21755517735529017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.176886344964991 0.21755517735529017 C 0.17634799164739973 0.21785002088818728 0.17026811918476797 0.22193165566115255 0.1704261051538956 0.2210932997500555 C 0.17026811918476797 0.22193165566115255 0.17537088068392281 0.22815896066665475 0.17499051333545917 0.2276154482884548" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17499051333545917 0.2276154482884548 C 0.17458274640893578 0.22794465666110664 0.17000461744358478 0.23249021677076046 0.1700973102171785 0.23156594876027664 C 0.17000461744358478 0.23249021677076046 0.17419327420526431 0.2393017240520925 0.17387820005233465 0.2387066644142605" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17387820005233465 0.2387066644142605 C 0.1735357263213452 0.23898432552728022 0.16993699528900325 0.24289413610147154 0.1697685152804612 0.24203859777049722 C 0.16993699528900325 0.24289413610147154 0.1764109138943708 0.24955100160390709 0.1758999601548393 0.24897312438595248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1758999601548393 0.24897312438595248 C 0.175315705035056 0.24839710541888949 0.1685738159483942 0.2412090749520054 0.16888889871743984 0.2420608967811965 C 0.1685738159483942 0.2412090749520054 0.17238813927702945 0.23847545957353108 0.17211896692629178 0.2387512624356592" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17211896692629178 0.2387512624356592 C 0.1717305913931103 0.2381580610487188 0.16740455054120418 0.23071229428367412 0.16745846052811406 0.2316328457923747 C 0.16740455054120418 0.23071229428367412 0.1718065126296448 0.22737729420949201 0.1714720470833732 0.22770464433125223" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1714720470833732 0.22770464433125223 C 0.1710183783546578 0.2271629902039439 0.16603940554741234 0.22037015539423851 0.16602802233878827 0.22120479480355235 C 0.16603940554741234 0.22037015539423851 0.1720736975242015 0.2173959861374809 0.17160864558686204 0.2176889714194864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17160864558686204 0.2176889714194864 C 0.17102439046707874 0.21711295245242337 0.16447838096701867 0.20990773956566156 0.1645975841494625 0.21077674381473008 C 0.16447838096701867 0.20990773956566156 0.17064325933487573 0.2069679351486586 0.17017820739753625 0.2072609204306641" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17017820739753625 0.2072609204306641 C 0.16959395227775295 0.20668490146360108 0.16304794277769294 0.19947968857683926 0.16316714596013676 0.20034869282590778 C 0.16304794277769294 0.19947968857683926 0.16921282114555 0.19653988415983634 0.16874776920821052 0.19683286944184183" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16874776920821052 0.19683286944184183 C 0.16816351408842722 0.1962568504747788 0.16162292887234433 0.18704456522697868 0.16173670777081092 0.1899206418370855 C 0.16162292887234433 0.18704456522697868 0.16785289864792824 0.1600198924775159 0.16738242242661153 0.16231995012055972" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3279408233169804,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.17805912532992385 0.16485806112190202 C 0.17816113525562824 0.16667975440086907 0.17905813054709657 0.1888326184050777 0.17928324443837662 0.18671838046950687 C 0.17905813054709657 0.1888326184050777 0.17503063481757863 0.19052146100535583 0.1753577586345631 0.19022891634875205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1753577586345631 0.19022891634875205 C 0.17561183258588528 0.19055267509261145 0.1782561464211751 0.19490816992305507 0.17840664605042933 0.19411402127506472 C 0.1782561464211751 0.19490816992305507 0.17314718950293573 0.20022909002876735 0.17355176308351217 0.19975870012463637" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17355176308351217 0.19975870012463637 C 0.17389273852703735 0.200121301843725 0.17749825377434553 0.20497727721667441 0.17764346840581421 0.2041099207537001 C 0.17749825377434553 0.20497727721667441 0.17132299743089405 0.2106717324242139 0.17180918750588792 0.21016697768032822" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17180918750588792 0.21016697768032822 C 0.17216648624829656 0.21052957939941686 0.17595155778332308 0.21538555477236623 0.17609677241479177 0.21451819830939192 C 0.17595155778332308 0.21538555477236623 0.16956409855438637 0.22108000997990573 0.1700666119282637 0.22057525523602006" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1700666119282637 0.22057525523602006 C 0.17048920386620628 0.2209378569551087 0.17499250055210613 0.22579383232805805 0.17513771518357482 0.22492647586508374 C 0.17499250055210613 0.22579383232805805 0.16775622978122817 0.23148828753559758 0.16832403635063944 0.2309835327917119" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16832403635063944 0.2309835327917119 C 0.16864868849528114 0.23143204661018732 0.172074647454871 0.23723305507639103 0.1722198620863397 0.23636569861341675 C 0.172074647454871 0.23723305507639103 0.1661115939969048 0.24181065299190224 0.1665814607730152 0.24139181034740337" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1665814607730152 0.24139181034740337 C 0.16691397228378596 0.24175441206649198 0.17078549684623237 0.2466791171189503 0.1705715989022644 0.2457430309764666 C 0.17078549684623237 0.2466791171189503 0.16902962253382817 0.2531983284806026 0.16914823610063096 0.25262484405720753" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16914823610063096 0.25262484405720753 C 0.16918094560410865 0.2520711467180709 0.16918798340703592 0.2450399770187151 0.16954075014236328 0.24598047598756795 C 0.16918798340703592 0.2450399770187151 0.1645295590378976 0.2409520548012574 0.16491503527670265 0.24133885643097358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16491503527670265 0.24133885643097358 C 0.16531546765713334 0.2409178073732901 0.1697265696819801 0.2354144984494286 0.16972022384187083 0.23628626773877204 C 0.1697265696819801 0.2354144984494286 0.16459709881769274 0.2304269047271923 0.16499118535801413 0.23087762495885228" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16499118535801413 0.23087762495885228 C 0.16548955753174574 0.23037066380178203 0.1709779972829026 0.22392232178466578 0.1709716514427933 0.22479409107400924 C 0.1709779972829026 0.22392232178466578 0.1645753091057035 0.22005158535445743 0.1650673354393258 0.22041639348673064" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1650673354393258 0.22041639348673064 C 0.16550041441752344 0.2199094323296604 0.17027062901780676 0.21346109031254415 0.17026428317769748 0.2143328596018876 C 0.17027062901780676 0.21346109031254415 0.16471675238254893 0.2095903538823358 0.1651434855206373 0.209955162014609" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1651434855206373 0.209955162014609 C 0.16556024119995144 0.20944820085753876 0.17015089951251652 0.2029998588404225 0.17014455367240722 0.20387162812976595 C 0.17015089951251652 0.2029998588404225 0.16480922576274412 0.1991291224102141 0.16521963560194897 0.19949393054248732" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16521963560194897 0.19949393054248732 C 0.16555477478684572 0.19902133422517176 0.16924765166081912 0.19295100544535734 0.16924130582070981 0.1938227747347008 C 0.16924765166081912 0.19295100544535734 0.16496699233847306 0.18863352609833778 0.1652957856832605 0.1890326990703657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1652957856832605 0.1890326990703657 C 0.16521277153175956 0.18879206065604648 0.16443706159957353 0.18409504557966194 0.16429961586524922 0.18614503809853486 C 0.16443706159957353 0.18409504557966194 0.1671655943809776 0.16262343473933702 0.16694513449515236 0.1644327888438907" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32219150019841303,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.1791412368744067 0.16425918175260887 C 0.1792843456254977 0.16606535166621353 0.18084192741038646 0.1880361981383007 0.18085854188749872 0.18593322071586493 C 0.18084192741038646 0.1880361981383007 0.17878213992085637 0.189791718330669 0.17894186314905963 0.18949491082183792" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17894186314905963 0.18949491082183792 C 0.178391196119592 0.1898027592482088 0.17224839915210938 0.19404583764259448 0.1723338587954482 0.19318909193828843 C 0.17224839915210938 0.19404583764259448 0.17838155481512227 0.2003247565514457 0.1779163474289935 0.19977585927351052" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1779163474289935 0.19977585927351052 C 0.1773707842850048 0.20024135743305332 0.17128923394326914 0.20632468536587026 0.17136958970112906 0.20536183718802434 C 0.17128923394326914 0.20632468536587026 0.17741728572080318 0.21182738742596482 0.17695207833467438 0.2113300374076617" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17695207833467438 0.2113300374076617 C 0.17642283848956916 0.21179553556720454 0.17052084443555182 0.21787886350002156 0.17060120019341177 0.2169160153221756 C 0.17052084443555182 0.21787886350002156 0.17643669332760045 0.22338156556011607 0.17598780924035518 0.22288421554181295" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17598780924035518 0.22288421554181295 C 0.17545856939524995 0.2231950719224596 0.16955657534123264 0.2275773402874187 0.16963693109909259 0.22661449210957274 C 0.16955657534123264 0.2275773402874187 0.17547242423328127 0.2350903854731635 0.175023540146036 0.2344383936759642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.175023540146036 0.2344383936759642 C 0.1744943003009308 0.23474925005661085 0.1684617198558457 0.2390284239023057 0.16867266200477352 0.23816867024372393 C 0.1684617198558457 0.2390284239023057 0.1728105320550797 0.2453043348568804 0.17249223435890232 0.2447554375789453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17249223435890232 0.2447554375789453 C 0.17209358090486498 0.24516938847885605 0.16743215756599253 0.25073724381535234 0.16770839291045425 0.2497228483778743 C 0.16743215756599253 0.25073724381535234 0.16929982833493712 0.2575286273662486 0.1691774102253615 0.25692818282868135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1691774102253615 0.25692818282868135 C 0.1689711106890851 0.2563314559046012 0.16681028828110483 0.2487604995292157 0.1667018157900447 0.24976745973971948 C 0.16681028828110483 0.2487604995292157 0.1707938521454196 0.24443442701621226 0.17047908011808305 0.2448446603026359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17047908011808305 0.2448446603026359 C 0.17007690099520484 0.2442994806381879 0.16569610993907063 0.23745018589765216 0.16565293064354444 0.2383025043292597 C 0.16569610993907063 0.23745018589765216 0.1714425900828018 0.23430970035618576 0.1709972316643974 0.2346168391233453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1709972316643974 0.2346168391233453 C 0.1704644661504513 0.23396856493963314 0.16451663840150255 0.2258821359679275 0.16460404549704424 0.2268375489187992 C 0.16451663840150255 0.2258821359679275 0.17039370493630152 0.2228447449457252 0.16994834651789711 0.22315188371288475" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16994834651789711 0.22315188371288475 C 0.16941558100395102 0.22265825130806874 0.16346775325500232 0.21627288190422092 0.16355516035054402 0.21722829485509265 C 0.16346775325500232 0.21627288190422092 0.1693448197898013 0.2112251477563684 0.1688994613713969 0.2116869283024241" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1688994613713969 0.2116869283024241 C 0.1683503725585673 0.2111932958976081 0.1622229885219002 0.2048079264937603 0.1623103956174419 0.20576333944463204 C 0.1622229885219002 0.2048079264937603 0.16831225794218455 0.19976019234590775 0.16785057622489666 0.20022197289196347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16785057622489666 0.20022197289196347 C 0.16730148741206707 0.19967679322751541 0.16117410337539995 0.192724403967715 0.16126151047094164 0.19367981691858674 C 0.16117410337539995 0.192724403967715 0.16726337279568426 0.1883467841950791 0.16680169107839637 0.18875701748150278" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16680169107839637 0.18875701748150278 C 0.16659464534294413 0.18755817345345566 0.1642597985576303 0.17237046883916898 0.16431714225296948 0.1743708891449373 C 0.1642597985576303 0.17237046883916898 0.16626326877443914 0.16395039753456148 0.1661135667343261 0.16475197381228268" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31644217707984557,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.1789703194064021 0.1648350535222143 C 0.17883005069950142 0.16667540270471673 0.17669616152675793 0.18904175134735518 0.17728709492359396 0.18691924371224342 C 0.17669616152675793 0.18904175134735518 0.17142845395443432 0.1905873035961649 0.17187911864436967 0.19030514514355557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17187911864436967 0.19030514514355557 C 0.1722729559198822 0.19065897272584584 0.1764914541552282 0.19549601917242365 0.1766051659505202 0.1945510761310388 C 0.1764914541552282 0.19549601917242365 0.17000702803006137 0.2022355770992682 0.1705145771008659 0.20164446164017363" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1705145771008659 0.20164446164017363 C 0.1708757677786115 0.20208420132185068 0.174735153438521 0.20786628086168304 0.17484886523381296 0.2069213378202982 C 0.174735153438521 0.20786628086168304 0.16867513308432472 0.21348898149649956 0.16915003555736227 0.21298377813679176" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16915003555736227 0.21298377813679176 C 0.16954387283287484 0.21337197055883675 0.173762371068221 0.2185354829830843 0.17387608286351297 0.21764208720133155 C 0.173762371068221 0.2185354829830843 0.16727794494305412 0.22420973087753285 0.16778549401385864 0.22370452751782505" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16778549401385864 0.22370452751782505 C 0.16809771479495378 0.22423017929888886 0.1714184315917083 0.23100883919160767 0.1715321433870003 0.23001234889059077 C 0.1714184315917083 0.23100883919160767 0.1659950198939678 0.23613324964998092 0.16642095247035493 0.23566241113002784" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16642095247035493 0.23566241113002784 C 0.16676581984921704 0.23610215081170488 0.17044564922140815 0.24188423035153717 0.1705593610167001 0.24093928731015238 C 0.17044564922140815 0.24188423035153717 0.16459783175269738 0.247506930986353 0.16505641092685144 0.24700172762664527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16505641092685144 0.24700172762664527 C 0.16528701521352915 0.2473727376288129 0.16789799497482963 0.25239879069404164 0.16782366236698387 0.25145384765265677 C 0.16789799497482963 0.25239879069404164 0.1657921305421686 0.25891497716248063 0.16594840222100055 0.2583410441232634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16594840222100055 0.2583410441232634 C 0.1660303320008818 0.25776105359326507 0.1667085431738286 0.25042409974033614 0.16693155957957573 0.25138115776328324 C 0.1667085431738286 0.25042409974033614 0.16296725916640684 0.24647928035494937 0.1632722053520352 0.24685634784789812" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1632722053520352 0.24685634784789812 C 0.1636564426272386 0.24634508699740926 0.1678480806518667 0.2397641596190848 0.1678830526544761 0.2407212176420318 C 0.1678480806518667 0.2397641596190848 0.16243333204290974 0.23492585440007582 0.16285254132072255 0.23537165157253398" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16285254132072255 0.23537165157253398 C 0.16320413199815897 0.23489475556179976 0.1670366574473502 0.22872620626053106 0.1670716294499596 0.22964889944372344 C 0.1670366574473502 0.22872620626053106 0.162046314609364 0.2238535362017671 0.1624328772894098 0.22429933337422528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1624328772894098 0.22429933337422528 C 0.16286608446126366 0.2236677955845949 0.1675637447512796 0.2158153691353457 0.16763136335165596 0.21672087989866073 C 0.1675637447512796 0.2158153691353457 0.16112062831266338 0.21315923124076044 0.1616214540848936 0.2134332042144451" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1616214540848936 0.2134332042144451 C 0.16208730785451442 0.21275011916518263 0.167209373915501 0.20419321350096184 0.16721169932034344 0.2052361836232957 C 0.167209373915501 0.20419321350096184 0.16112537005232108 0.20055767767336735 0.16159354922678434 0.20091756274643877" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16159354922678434 0.20091756274643877 C 0.1620267563986382 0.20032038979656308 0.16675706328642131 0.19279442932498347 0.1667920352890307 0.19375148734793057 C 0.16675706328642131 0.19279442932498347 0.1607057060210086 0.18907298139800233 0.16117388519547182 0.18943286647107374" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16117388519547182 0.18943286647107374 C 0.1612144707452578 0.18909995834590335 0.16214715320756243 0.1832936606555043 0.16166091179290357 0.1854379689690291 C 0.16214715320756243 0.1832936606555043 0.16745443803625115 0.16188976652042186 0.16700878217137827 0.16370116670877627" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3130281152203159,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.18267406310863074 0.16828563453563383 C 0.1825174776103839 0.1690508166268354 0.17983789652804344 0.17909055650171674 0.1807950371296685 0.17746781963005293 C 0.17983789652804344 0.17909055650171674 0.17086200879417052 0.18943135904143354 0.17118837588913002 0.18775847699559964 C 0.17086200879417052 0.18943135904143354 0.177352819998573 0.1983577314454313 0.1768786319901543 0.19754240418005964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1768786319901543 0.19754240418005964 C 0.1763322768388101 0.19799359614938516 0.17023252180167184 0.20393117348401846 0.17032237017402377 0.20295670781196584 C 0.17023252180167184 0.20393117348401846 0.17625695830092333 0.2097592659474181 0.17580045152193105 0.209235992244691" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17580045152193105 0.209235992244691 C 0.1752023665048866 0.20971140455307563 0.16858617145208332 0.21604940100053066 0.16862343131739777 0.21494093994530653 C 0.16858617145208332 0.21604940100053066 0.17591415828988788 0.2231705736542202 0.17535333313815787 0.22253752490738068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17535333313815787 0.22253752490738068 C 0.17467124005243206 0.22295393153928939 0.16703805417246936 0.2285306140494209 0.1671682161094482 0.2275344044902852 C 0.16703805417246936 0.2285306140494209 0.17434332104315864 0.23507184254423605 0.17379138989441167 0.23449203961700907" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17379138989441167 0.23449203961700907 C 0.17310892024113025 0.23493527993839222 0.1653895990560829 0.24075753931860244 0.16560175405503477 0.2398109234736068 C 0.1653895990560829 0.24075753931860244 0.17171584456131864 0.24635480528056913 0.1712455299069891 0.24585142975695665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1712455299069891 0.24585142975695665 C 0.17075589751412135 0.24635790138348843 0.16519043279139115 0.2528527494073776 0.16536994119257606 0.2519290892753381 C 0.16519043279139115 0.2528527494073776 0.169401553084453 0.2573525398469387 0.16909142909277017 0.2569353513414309" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16909142909277017 0.2569353513414309 C 0.16870209152259638 0.2572699987691892 0.1641908999528495 0.2619765234421371 0.16441937825068487 0.2609511204745305 C 0.1641908999528495 0.2619765234421371 0.16651054879108404 0.2699309424925589 0.16634968951874565 0.26924018695271057" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16634968951874565 0.26924018695271057 C 0.16608191625252802 0.2685326345932074 0.16313228597675822 0.2595530568529517 0.16313641032413395 0.2607495586386731 C 0.16313228597675822 0.2595530568529517 0.16656384626907866 0.2543932160978359 0.16630019735023677 0.2548821655240541" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16630019735023677 0.2548821655240541 C 0.1659106790065311 0.25444229211770225 0.16171055998474643 0.24871928433676277 0.16162597722576869 0.2496036846478318 C 0.16171055998474643 0.24871928433676277 0.16778929156065303 0.24382483488650833 0.1673151904579696 0.24426936179122552" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1673151904579696 0.24426936179122552 C 0.16678756172847348 0.24372639386560957 0.16103959109653143 0.23672675519767614 0.16098364570401594 0.23775374668383406 C 0.16103959109653143 0.23672675519767614 0.1685701092901671 0.23146144039678845 0.16798653516815548 0.23194546395733043" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16798653516815548 0.23194546395733043 C 0.16739365906291173 0.23142632232061106 0.16082002571945306 0.2246602350389506 0.16087202190523045 0.2257157643166978 C 0.16082002571945306 0.2246602350389506 0.16790346085829327 0.2187427249833363 0.16736258093882692 0.21927911262436411" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16736258093882692 0.21927911262436411 C 0.16687644584259725 0.2188202124039264 0.16152927444653997 0.21278655915070765 0.16152895978407106 0.21377230997911165 C 0.16152927444653997 0.21278655915070765 0.1678528066471526 0.20692325207555 0.16736635688845403 0.2074501026835163" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16736635688845403 0.2074501026835163 C 0.16700233656855024 0.20686814151371913 0.163047204274354 0.19939637744969682 0.16299811304960846 0.20046656864595036 C 0.163047204274354 0.19939637744969682 0.16836856313004991 0.19411957830201756 0.16795545158540057 0.19460780832847394" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16795545158540057 0.19460780832847394 C 0.1677187260919237 0.19391004805401957 0.16522913687638124 0.1847117781489229 0.16511474566367818 0.18623468503502155 C 0.16522913687638124 0.1847117781489229 0.16976944869653338 0.174870368966175 0.1693281461378374 0.17633292569529005 C 0.16976944869653338 0.174870368966175 0.17050056222054605 0.16804659416817036 0.17041037636803 0.1686840042856411" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3430927759472383,0.12302840530544282) rotate(0) scale(1,1) translate(-0.17182654921449536,-0.1626271006073876)"><path d="M 0.17627067600237914 0.16231995012055972 C 0.17674115222369585 0.16462000776360353 0.1818026117597132 0.19279671844719234 0.1819163906581798 0.1899206418370855 C 0.1818026117597132 0.19279671844719234 0.17432107410099687 0.19740888840890486 0.17490532922078017 0.19683286944184183" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17490532922078017 0.19683286944184183 C 0.17537038115811965 0.19712585472384733 0.18036674928641014 0.2012176970749763 0.18048595246885396 0.20034869282590778 C 0.18036674928641014 0.2012176970749763 0.17289063591167114 0.20783693939772713 0.17347489103145444 0.2072609204306641" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17347489103145444 0.2072609204306641 C 0.17393994296879392 0.2075539057126696 0.1789363110970844 0.2116457480637986 0.17905551427952823 0.21077674381473008 C 0.1789363110970844 0.2116457480637986 0.17146019772234541 0.21826499038654942 0.17204445284212871 0.2176889714194864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17204445284212871 0.2176889714194864 C 0.1725095047794682 0.2179819567014919 0.1776364592988265 0.22203943421286618 0.17762507609020242 0.22120479480355235 C 0.1776364592988265 0.22203943421286618 0.17172738261690212 0.22824629845856056 0.17218105134561754 0.22770464433125223" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17218105134561754 0.22770464433125223 C 0.17251551689188913 0.22803199445301245 0.17614072791396682 0.23255339730107527 0.1761946379008767 0.2316328457923747 C 0.17614072791396682 0.23255339730107527 0.1711457559695174 0.23934446382259958 0.1715341315026989 0.2387512624356592" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1715341315026989 0.2387512624356592 C 0.17180330385343656 0.2390270652977873 0.17444911694250523 0.2429127186103876 0.17476419971155085 0.2420608967811965 C 0.17444911694250523 0.2429127186103876 0.16716888315436812 0.24954914335301548 0.16775313827415142 0.24897312438595248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16775313827415142 0.24897312438595248 C 0.16826409201368292 0.24839524716799788 0.17405306315707156 0.2411830594395229 0.1738845831485295 0.24203859777049722 C 0.17405306315707156 0.2411830594395229 0.16943242464566663 0.23842900330124078 0.16977489837665607 0.2387066644142605" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16977489837665607 0.2387066644142605 C 0.17008997252958574 0.2381116047764285 0.17346309543821847 0.23064168074979283 0.1735557882118122 0.23156594876027664 C 0.17346309543821847 0.23064168074979283 0.1682548181670081 0.227286239915803 0.1686625850935315 0.2276154482884548" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1686625850935315 0.2276154482884548 C 0.16904295244199513 0.22707193591025487 0.17306900730596747 0.22025494383895847 0.1732269932750951 0.2210932997500555 C 0.17306900730596747 0.22025494383895847 0.16622840014640844 0.21726033382239307 0.16676675346399972 0.21755517735529017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16676675346399972 0.21755517735529017 C 0.16727770720353125 0.21697730013733554 0.17287079876031816 0.20974792998898278 0.1728981983383779 0.21062065073983452 C 0.17287079876031816 0.20974792998898278 0.16589960520969135 0.20678768481217208 0.16643795852728263 0.20708252834506918" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16643795852728263 0.20708252834506918 C 0.16694891226681413 0.20650465112711452 0.17254200382360083 0.19927528097876165 0.1725694034016606 0.20014800172961342 C 0.17254200382360083 0.19927528097876165 0.16557081027297416 0.19631503580195098 0.16610916359056543 0.19660987933484808" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16610916359056543 0.19660987933484808 C 0.16662011733009693 0.19603200211689345 0.1722095085672804 0.18911509358996856 0.1722406084649434 0.18967535271939237 C 0.1722095085672804 0.18911509358996856 0.1651939111814149 0.189904387870293 0.16573596481860942 0.1898867697817622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16573596481860942 0.1898867697817622 C 0.1656174290522482 0.18964558705263754 0.16437032076820846 0.1847087617279817 0.16431353562227474 0.1869925770322662 C 0.16437032076820846 0.1847087617279817 0.16659270748210891 0.16043835355518818 0.16641738656981397 0.16248098613034803" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3467460823403615,0.1204963061541541) rotate(0) scale(1,1) translate(-0.17172616467872354,-0.16464542498289636)"><path d="M 0.17650719486229483 0.1644327888438907 C 0.17672765474812008 0.1662421429484444 0.17929015922652228 0.18819503061740778 0.17915271349219797 0.18614503809853486 C 0.17929015922652228 0.18819503061740778 0.1780735295226857 0.18927333748468494 0.17815654367418665 0.1890326990703657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17815654367418665 0.1890326990703657 C 0.1778277503293992 0.18943187204239365 0.17421736937684662 0.19469454402404426 0.17421102353673731 0.1938227747347008 C 0.17421736937684662 0.19469454402404426 0.17856783294039502 0.19996652685980287 0.17823269375549827 0.19949393054248732" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17823269375549827 0.19949393054248732 C 0.1778222839162934 0.19985873867476053 0.17331412152514927 0.2047433974191094 0.17330777568503997 0.20387162812976595 C 0.17331412152514927 0.2047433974191094 0.17872559951612402 0.21046212317167926 0.17830884383680987 0.209955162014609" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17830884383680987 0.209955162014609 C 0.1778821106987215 0.21031997014688222 0.17319439201985898 0.21520462889123107 0.17318804617974967 0.2143328596018876 C 0.17319439201985898 0.21520462889123107 0.178818072896319 0.2209233546438009 0.17838499391812138 0.22041639348673064" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17838499391812138 0.22041639348673064 C 0.17789296758449907 0.22078120161900386 0.1724870237547632 0.2256658603633527 0.1724806779146539 0.22479409107400924 C 0.1724870237547632 0.2256658603633527 0.17895951617316472 0.23138458611592252 0.1784611439994331 0.23087762495885228" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1784611439994331 0.23087762495885228 C 0.17806705745911172 0.23132834519051226 0.17373845135568566 0.23715803702811547 0.17373210551557638 0.23628626773877204 C 0.17373845135568566 0.23715803702811547 0.17893772646117517 0.24175990548865706 0.1785372940807445 0.24133885643097358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1785372940807445 0.24133885643097358 C 0.17815181784193945 0.24172565806068977 0.1735588124797566 0.2469209749564208 0.17391157921508396 0.24598047598756795 C 0.1735588124797566 0.2469209749564208 0.17433680276029392 0.25317854139634416 0.17430409325681623 0.25262484405720753" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17430409325681623 0.25262484405720753 C 0.17418547969001344 0.2520513596338125 0.1730946283991508 0.2448069448339829 0.17288073045518282 0.2457430309764666 C 0.1730946283991508 0.2448069448339829 0.1772033800952027 0.24102920862831476 0.17687086858443193 0.24139181034740337" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17687086858443193 0.24139181034740337 C 0.17640100180832158 0.2409729677029045 0.17108725263963884 0.23549834215044246 0.17123246727110752 0.23636569861341675 C 0.17108725263963884 0.23549834215044246 0.17545294515144946 0.2305350189732365 0.17512829300680777 0.2309835327917119" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17512829300680777 0.2309835327917119 C 0.1745604864373965 0.23047877804782624 0.1681693995424037 0.22405911940210943 0.1683146141738724 0.22492647586508374 C 0.1681693995424037 0.22405911940210943 0.17380830936712607 0.22021265351693142 0.1733857174291835 0.22057525523602006" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1733857174291835 0.22057525523602006 C 0.17288320405530616 0.2200705004921344 0.1672103423111867 0.2136508418464176 0.1673555569426554 0.21451819830939192 C 0.1672103423111867 0.2136508418464176 0.172000440593968 0.20980437596123958 0.17164314185155932 0.21016697768032822" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17164314185155932 0.21016697768032822 C 0.17115695177656545 0.20966222293644254 0.16566364632016434 0.2032425642907258 0.16580886095163302 0.2041099207537001 C 0.16566364632016434 0.2032425642907258 0.1702415417174602 0.19939609840554773 0.16990056627393504 0.19975870012463637" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16990056627393504 0.19975870012463637 C 0.1694959926933586 0.1992883102205054 0.16489518367776365 0.19331987262707437 0.1650456833070179 0.19411402127506472 C 0.16489518367776365 0.19331987262707437 0.16834864467420627 0.18990515760489265 0.16809457072288408 0.19022891634875205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16809457072288408 0.19022891634875205 C 0.16776744690589962 0.18993637169214828 0.16394397102779057 0.18460414253393603 0.16416908491907062 0.18671838046950687 C 0.16394397102779057 0.18460414253393603 0.16549521395322772 0.16303636784293496 0.16539320402752333 0.16485806112190202" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3524954054589289,0.11486552260992469) rotate(0) scale(1,1) translate(-0.17220112318371358,-0.1645055777824458)"><path d="M 0.17828867963310116 0.16475197381228268 C 0.1784383816732142 0.1655535500900039 0.1800277604191186 0.17637130945070564 0.1800851041144578 0.1743708891449373 C 0.1800277604191186 0.17637130945070564 0.17739350955357863 0.1899558615095499 0.17760055528903088 0.18875701748150278" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17760055528903088 0.18875701748150278 C 0.17806223700631876 0.18916725076792645 0.1830533288009439 0.19463522986945847 0.1831407358964856 0.19367981691858674 C 0.1830533288009439 0.19463522986945847 0.17600258132970095 0.20076715255641153 0.17655167014253054 0.20022197289196347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17655167014253054 0.20022197289196347 C 0.17701335185981845 0.2006837534380192 0.1820044436544437 0.20671875239550377 0.18209185074998538 0.20576333944463204 C 0.1820044436544437 0.20671875239550377 0.17495369618320084 0.21218056070724012 0.17550278499603042 0.2116869283024241" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17550278499603042 0.2116869283024241 C 0.17594814341443482 0.21214870884847983 0.18075967892134154 0.21818370780596438 0.18084708601688324 0.21722829485509265 C 0.18075967892134154 0.21818370780596438 0.17392113433558395 0.22364551611770075 0.17445389984953005 0.22315188371288475" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17445389984953005 0.22315188371288475 C 0.17489925826793445 0.2234590224800443 0.1797107937748413 0.2277929618696709 0.179798200870383 0.2268375489187992 C 0.1797107937748413 0.2277929618696709 0.17287224918908373 0.23526511330705746 0.17340501470302983 0.2346168391233453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17340501470302983 0.2346168391233453 C 0.17385037312143423 0.23492397789050484 0.17879249501940894 0.23915482276086725 0.17874931572388275 0.2383025043292597 C 0.17879249501940894 0.23915482276086725 0.17352098712646594 0.2453898399670839 0.17392316624934415 0.2448446603026359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17392316624934415 0.2448446603026359 C 0.1742379382766807 0.24525489358905955 0.17780890306844266 0.25077441995022326 0.17770043057738252 0.24976745973971948 C 0.17780890306844266 0.25077441995022326 0.17501853660578934 0.2575249097527615 0.17522483614206574 0.25692818282868135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17522483614206574 0.25692818282868135 C 0.17534725425164135 0.2563277382911141 0.17641761811251125 0.2487084529403963 0.17669385345697297 0.2497228483778743 C 0.17641761811251125 0.2487084529403963 0.17151135855448763 0.24434148667903455 0.17191001200852496 0.2447554375789453" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17191001200852496 0.2447554375789453 C 0.17222830970470235 0.2442065403010102 0.1755186422137259 0.23730891658514217 0.1757295843626537 0.23816867024372393 C 0.1755186422137259 0.23730891658514217 0.16884946637628603 0.23412753729531754 0.16937870622139123 0.2344383936759642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16937870622139123 0.2344383936759642 C 0.1698275903086365 0.2337864018787649 0.1746849595104747 0.2256516439317268 0.17476531526833464 0.22661449210957274 C 0.1746849595104747 0.2256516439317268 0.16788519728196682 0.2225733591611663 0.16841443712707205 0.22288421554181295" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16841443712707205 0.22288421554181295 C 0.16886332121431732 0.22238686552350984 0.1737206904161555 0.21595316714432966 0.17380104617401546 0.2169160153221756 C 0.1737206904161555 0.21595316714432966 0.16692092818764764 0.21086453924811888 0.16745016803275287 0.2113300374076617" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16745016803275287 0.2113300374076617 C 0.16791537541888163 0.2108326873893586 0.17295230090843827 0.20439898901017842 0.1730326566662982 0.20536183718802434 C 0.17295230090843827 0.20439898901017842 0.165940335794445 0.19931036111396772 0.1664858989384337 0.19977585927351052" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1664858989384337 0.19977585927351052 C 0.1669511063245625 0.19922696199557535 0.1719829279286402 0.19233234623398238 0.17206838757197904 0.19318909193828843 C 0.1719829279286402 0.19233234623398238 0.16490971618889996 0.18918706239546704 0.1654603832183676 0.18949491082183792" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1654603832183676 0.18949491082183792 C 0.16530065999016433 0.18919810331300685 0.1635270900028163 0.18383024329342917 0.16354370447992855 0.18593322071586493 C 0.1635270900028163 0.18383024329342917 0.16540411824411153 0.1624530118390042 0.16526100949302053 0.16425918175260887" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3582447285774963,0.10970774271469325) rotate(0) scale(1,1) translate(-0.17149933224096225,-0.16424072920864125)"><path d="M 0.17598988231054621 0.16370116670877627 C 0.1764355381754191 0.16551256689713068 0.18182399410367983 0.1875822772825539 0.18133775268902097 0.1854379689690291 C 0.18182399410367983 0.1875822772825539 0.18186536483623866 0.18976577459624414 0.1818247792864527 0.18943286647107374" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1818247792864527 0.18943286647107374 C 0.18135660011198945 0.18979275154414516 0.17617165719028446 0.19470854537087767 0.17620662919289384 0.19375148734793057 C 0.17617165719028446 0.19470854537087767 0.18183832242699408 0.20151473569631445 0.18140511525514022 0.20091756274643877" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18140511525514022 0.20091756274643877 C 0.18093693608067696 0.20127744781951018 0.17578463975673864 0.20627915374562958 0.17578696516158107 0.2052361836232957 C 0.17578463975673864 0.20627915374562958 0.18184306416665177 0.21411628926370754 0.18137721039703095 0.2134332042144451" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18137721039703095 0.2134332042144451 C 0.18087638462480074 0.21370717718812973 0.17529968252989217 0.21762639066197575 0.17536730113026852 0.21672087989866073 C 0.17529968252989217 0.21762639066197575 0.18099899436436853 0.22493087116385566 0.18056578719251468 0.22429933337422528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18056578719251468 0.22429933337422528 C 0.18017922451246887 0.22474513054668346 0.17589206302935553 0.23057159262691582 0.17592703503196494 0.22964889944372344 C 0.17589206302935553 0.23057159262691582 0.18049771383863833 0.2358485475832682 0.1801461231612019 0.23537165157253398" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1801461231612019 0.23537165157253398 C 0.17972691388338913 0.23581744874499214 0.1750806398248391 0.24167827566497882 0.17511561182744848 0.2407212176420318 C 0.1750806398248391 0.24167827566497882 0.18011069640509275 0.24736760869838698 0.17972645912988935 0.24685634784789812" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17972645912988935 0.24685634784789812 C 0.17942151294426098 0.24723341534084686 0.17584408849660166 0.25233821578623034 0.17606710490234878 0.25138115776328324 C 0.17584408849660166 0.25233821578623034 0.17713219204080527 0.2589210346532618 0.177050262260924 0.2583410441232634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.177050262260924 0.2583410441232634 C 0.17689399058209204 0.2577671110840462 0.17524933472278642 0.2505089046112719 0.17517500211494066 0.25145384765265677 C 0.17524933472278642 0.2505089046112719 0.17817285784175074 0.24663071762447764 0.17794225355507304 0.24700172762664527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17794225355507304 0.24700172762664527 C 0.17748367438091897 0.24649652426693752 0.17232559166993242 0.2399943442687676 0.17243930346522438 0.24093928731015238 C 0.17232559166993242 0.2399943442687676 0.1769225793904317 0.2352226714483508 0.1765777120115696 0.23566241113002784" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1765777120115696 0.23566241113002784 C 0.17615177943518248 0.23519157261007476 0.17135280929963223 0.22901585858957388 0.17146652109492422 0.23001234889059077 C 0.17135280929963223 0.22901585858957388 0.175525391249161 0.22317887573676123 0.17521317046806587 0.22370452751782505" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17521317046806587 0.22370452751782505 C 0.17470562139726134 0.22319932415811725 0.16900886982311955 0.21674869141957878 0.1691225816184115 0.21764208720133155 C 0.16900886982311955 0.21674869141957878 0.1742424662000748 0.21259558571474677 0.17384862892456224 0.21298377813679176" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17384862892456224 0.21298377813679176 C 0.17337372645152468 0.21247857477708396 0.1680360874528196 0.20597639477891336 0.16814979924811155 0.2069213378202982 C 0.1680360874528196 0.20597639477891336 0.17284527805880417 0.2012047219584966 0.17248408738105858 0.20164446164017363" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17248408738105858 0.20164446164017363 C 0.17197653831025406 0.20105334618107906 0.16627978673611235 0.19360613308965396 0.16639349853140434 0.1945510761310388 C 0.16627978673611235 0.19360613308965396 0.17151338311306738 0.1899513175612653 0.17111954583755484 0.19030514514355557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17111954583755484 0.19030514514355557 C 0.1706688811476195 0.19002298669094622 0.16512063616149458 0.18479673607713165 0.1657115695583306 0.18691924371224342 C 0.16512063616149458 0.18479673607713165 0.1638880763686218 0.1629947043397119 0.16402834507552247 0.1648350535222143" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.361658790437026,0.10164269012927307) rotate(0) scale(1,1) translate(-0.17343256089445602,-0.16866918493841992)"><path d="M 0.17645474542088202 0.1686840042856411 C 0.17654493127339807 0.16932141440311183 0.17797827820977064 0.1777954824244051 0.17753697565107465 0.17633292569529005 C 0.17797827820977064 0.1777954824244051 0.18186476733793694 0.1877575919211202 0.18175037612523387 0.18623468503502155 C 0.18186476733793694 0.1877575919211202 0.17867294471003461 0.1953055686029283 0.17890967020351148 0.19460780832847394" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17890967020351148 0.19460780832847394 C 0.17932278174816083 0.1950960383549303 0.18391609996404917 0.2015367598422039 0.18386700873930362 0.20046656864595036 C 0.18391609996404917 0.2015367598422039 0.1791347445805542 0.20803206385331346 0.179498764900458 0.2074501026835163" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.179498764900458 0.2074501026835163 C 0.17998521465915657 0.20797695329148258 0.18533647666730996 0.21475806080751564 0.18533616200484104 0.21377230997911165 C 0.18533647666730996 0.21475806080751564 0.17901640575385544 0.21973801284480182 0.1795025408500851 0.21927911262436411" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1795025408500851 0.21927911262436411 C 0.1800434207695515 0.21981550026539193 0.18594110369790423 0.22677129359444498 0.18599309988368162 0.2257157643166978 C 0.18594110369790423 0.22677129359444498 0.17828571051551276 0.2324646055940498 0.1788785866207565 0.23194546395733043" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1788785866207565 0.23194546395733043 C 0.17946216074276813 0.2324294875178724 0.18593742147741163 0.23878073816999199 0.18588147608489614 0.23775374668383406 C 0.18593742147741163 0.23878073816999199 0.1790223026014463 0.24481232971684147 0.17954993133094244 0.24426936179122552" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17954993133094244 0.24426936179122552 C 0.18002403243362586 0.2447138886959427 0.18532372732212113 0.25048808495890085 0.1852391445631434 0.2496036846478318 C 0.18532372732212113 0.25048808495890085 0.18017540609496965 0.255322038930406 0.18056492443867533 0.2548821655240541" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18056492443867533 0.2548821655240541 C 0.18082857335751723 0.25537111495027237 0.18372458711740236 0.2619460604243945 0.1837287114647781 0.2607495586386731 C 0.18372458711740236 0.2619460604243945 0.1802476590039488 0.2699477393122137 0.18051543227016642 0.26924018695271057" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18051543227016642 0.26924018695271057 C 0.1806762915425048 0.26854943141286225 0.1822172652403918 0.2599257175069239 0.18244574353822718 0.2609511204745305 C 0.1822172652403918 0.2599257175069239 0.17738435512596806 0.2566007039136726 0.17777369269614185 0.2569353513414309" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17777369269614185 0.2569353513414309 C 0.1780838166878247 0.25651816283592316 0.18131567219515105 0.25100542914329854 0.18149518059633596 0.2519290892753381 C 0.18131567219515105 0.25100542914329854 0.17512995948905524 0.24534495813042487 0.175619591881923 0.24585142975695665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.175619591881923 0.24585142975695665 C 0.17608990653625253 0.24534805423334416 0.18105121273492542 0.23886430762861116 0.1812633677338773 0.2398109234736068 C 0.18105121273492542 0.23886430762861116 0.17239126224121895 0.23404879929562591 0.17307373189450037 0.23449203961700907" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17307373189450037 0.23449203961700907 C 0.17362566304324734 0.2339122366897821 0.179566743742485 0.2265381949311495 0.17969690567946384 0.2275344044902852 C 0.179566743742485 0.2265381949311495 0.17082969556502842 0.22212111827547198 0.17151178865075423 0.22253752490738068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17151178865075423 0.22253752490738068 C 0.17207261380248423 0.22190447616054118 0.17820443060619984 0.2138324788900824 0.17824169047151428 0.21494093994530653 C 0.17820443060619984 0.2138324788900824 0.17046658524993658 0.20876057993630637 0.17106467026698102 0.209235992244691" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17106467026698102 0.209235992244691 C 0.1715211770459733 0.2087127185419639 0.17645290324253637 0.20198224213991323 0.1765427516148883 0.20295670781196584 C 0.17645290324253637 0.20198224213991323 0.16944013464741356 0.1970912122107341 0.16998648979875777 0.19754240418005964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16998648979875777 0.19754240418005964 C 0.17046067780717647 0.19672707691468796 0.17535037880482254 0.1860855949497658 0.17567674589978205 0.18775847699559967 C 0.17535037880482254 0.1860855949497658 0.1651129440576185 0.17584508275838914 0.16607008465924356 0.17746781963005295 C 0.1651129440576185 0.17584508275838914 0.16403447318203443 0.16752045244443223 0.16419105868028128 0.16828563453563383" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 54 KiB

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.24972370812541383 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.24972370812541383 0.2308044715076716 0.262207331506811 0.23280529274848838 0.26034966000032117 C 0.2308044715076716 0.262207331506811 0.21538989416043028 0.26980218192175565 0.2178778082444386 0.26980218192175565 C 0.21538989416043028 0.26980218192175565 0.200949502499572 0.2584919884938314 0.2029503237403888 0.2603496600003213 C 0.200949502499572 0.2584919884938314 0.19280156103266954 0.2452965395623412 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.2452965395623412 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g transform="translate(0.33734345282867095,0.12379564176882465) rotate(0) scale(1,1) translate(-0.08512163657345904,-0.0749625261910107)"><path d="M 0.09005188720557471 0.09752048584487923 C 0.08984235155370979 0.09786185809875456 0.08692528659637469 0.10195832514525849 0.08753745938319572 0.10161695289138316 C 0.08692528659637469 0.10195832514525849 0.08209364097690133 0.10127558063750783 0.08270581376372237 0.10161695289138316 C 0.08209364097690133 0.10127558063750783 0.07998185028947846 0.0971791135910039 0.08019138594134338 0.09752048584487923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08019138594134338 0.09752048584487923 C 0.0797580372298141 0.09633877917856025 0.07439556154822781 0.08146017587789582 0.07499120140299209 0.08334000584905153 C 0.07439556154822781 0.08146017587789582 0.07288141654093705 0.07426440288617396 0.07304370768417205 0.0749625261910107" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09719956546274605 0.0749625261910107 C 0.09703727431951105 0.07566064949584743 0.09465643188916172 0.08521983582020724 0.095252071743926 0.08334000584905153 C 0.09465643188916172 0.08521983582020724 0.08961853849404543 0.0987021925111982 0.09005188720557471 0.09752048584487923" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024875998926522182 0.018660288359277216 C 0.025117618626550778 0.019403917332312448 0.02245148009586505 0.024634932103891602 0.02308404868289147 0.024175344123536648 C 0.02245148009586505 0.024634932103891602 0.01665260729517875 0.023715756143181693 0.017285175882205166 0.024175344123536648 C 0.01665260729517875 0.023715756143181693 0.015734845338603046 0.017916659386241984 0.01549322563857445 0.018660288359277216 C 0.015734845338603046 0.017916659386241984 0.02096651005654396 0.015251796447113858 0.020184612282548316 0.015251796447113858 C 0.02096651005654396 0.015251796447113858 0.025117618626550778 0.019403917332312448 0.024875998926522182 0.018660288359277216 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.029587391730907443 0.025354983548605776 C 0.029751915671387442 0.025861336171692267 0.027936485816611307 0.02942324425628728 0.028367215084751006 0.029110301124927164 C 0.027936485816611307 0.02942324425628728 0.023987911245091358 0.028797357993567047 0.024418640513231057 0.029110301124927164 C 0.023987911245091358 0.028797357993567047 0.023362987807554615 0.024848630925519286 0.023198463867074616 0.025354983548605776 C 0.023362987807554615 0.024848630925519286 0.026925338454310433 0.023034069647889278 0.02639292779899103 0.023034069647889278 C 0.026925338454310433 0.023034069647889278 0.029751915671387442 0.025861336171692267 0.029587391730907443 0.025354983548605776 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3334085348186441,0.148189999717076) rotate(0) scale(1,1) translate(-0.17491035026257845,-0.17443573639196525)"><path d="M 0.1714106737829024 0.18190980148971994 C 0.1717736032395435 0.18116887574539217 0.17597901032166133 0.17314475094382875 0.1757658272625957 0.1730186925577866 C 0.17597901032166133 0.17314475094382875 0.17381912409411437 0.18428948625259592 0.17396887049168985 0.18342250212222597" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17396887049168985 0.18342250212222597 C 0.1738698486185716 0.18404955914062154 0.17258511973600515 0.19243432828183257 0.1727806080142708 0.19094718634297303 C 0.17258511973600515 0.19243432828183257 0.17152654474735443 0.20212829030900448 0.17162301115250184 0.2012682053885405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17162301115250184 0.2012682053885405 C 0.17158066127936467 0.20228244389447644 0.17104355451850686 0.21568586078860003 0.1711148126748557 0.21343906745977168 C 0.17104355451850686 0.21568586078860003 0.17073900499310393 0.22946228015737297 0.1707679132763156 0.22822972533448055" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1707679132763156 0.22822972533448055 C 0.17048784841152856 0.22683287467445623 0.16710616506563167 0.20912447447387114 0.16740713489887102 0.21146751741418882 C 0.16710616506563167 0.20912447447387114 0.16713537030899114 0.19916701777037496 0.16715627527744345 0.20011321005066834" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16715627527744345 0.20011321005066834 C 0.1673392411803876 0.1992142868973652 0.16970639932156142 0.1878091814976182 0.16935186611277317 0.18932613221103056 C 0.16970639932156142 0.1878091814976182 0.1715822410887465 0.1812917739296107 0.1714106737829024 0.18190980148971994" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33507072873560473,0.14633598263922498) rotate(0) scale(1,1) translate(-0.17301747436630827,-0.1665549443625739)"><path d="M 0.1700319481673693 0.1741485011878991 C 0.17017091891847616 0.17361448989179407 0.17198020186451615 0.16701308569346915 0.1716995971806516 0.16774036563463887 C 0.17198020186451615 0.16701308569346915 0.17354083830650185 0.16522787324879779 0.17339920437374415 0.16542114189386248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17339920437374415 0.16542114189386248 C 0.1734277655097517 0.16703249346726723 0.17372689303592576 0.18759838439638796 0.17374193800583473 0.18475736077471944 C 0.17372689303592576 0.18759838439638796 0.17317505862892 0.20074309740214857 0.17321866473483652 0.1995134253538848" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17321866473483652 0.1995134253538848 C 0.17313387598243182 0.20085464924593055 0.1720696017521603 0.2178959534725261 0.1722011997059803 0.2156081120584336 C 0.1720696017521603 0.2178959534725261 0.1715926800875812 0.22791413984504144 0.1716394892889965 0.2269675223229947" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1716394892889965 0.2269675223229947 C 0.1714234606675257 0.22592551547431577 0.1687403784632583 0.21200143145174305 0.16904714583134695 0.2144634401388476 C 0.1687403784632583 0.21200143145174305 0.16786754212531493 0.1960034162393143 0.1679582808719328 0.19742341807773994" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1679582808719328 0.19742341807773994 C 0.16798382152220712 0.19651420798948296 0.16843757428317765 0.18457332061116935 0.1682647686752246 0.1865128970186561 C 0.16843757428317765 0.18457332061116935 0.17017921312504802 0.17311813486866934 0.1700319481673693 0.1741485011878991" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3412783708386977,0.148189999717076) rotate(0) scale(1,1) translate(-0.17132080444909886,-0.17443573639196525)"><path d="M 0.1748324997895199 0.18258760341340735 C 0.17500743642185507 0.183292271340781 0.17722985456801757 0.19248937361335322 0.17693173937754203 0.1910436185418911 C 0.17722985456801757 0.19248937361335322 0.17853306063336682 0.20067775141504104 0.17840988207522646 0.19993666427095258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17840988207522646 0.19993666427095258 C 0.1783856315209292 0.2009465997972848 0.17785531382052644 0.21434834812734477 0.17811887542365948 0.21205589058693924 C 0.17785531382052644 0.21434834812734477 0.17500783178879437 0.22872867676989211 0.17524714283763015 0.2274461547558188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17524714283763015 0.2274461547558188 C 0.17521810253402348 0.2265590610567531 0.17480575405056234 0.2145979728215442 0.17489865919435021 0.21680103036703055 C 0.17480575405056234 0.2145979728215442 0.17406841627199457 0.19969350036356198 0.17413228111217577 0.20100946420998264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17413228111217577 0.20100946420998264 C 0.17406935941398238 0.20025649275911767 0.1732054545618033 0.19054003271339034 0.17337722073385528 0.1919738067996028 C 0.1732054545618033 0.19054003271339034 0.17196224257369347 0.18312337254008584 0.17207108704755206 0.1838041751754333" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17207108704755206 0.1838041751754333 C 0.1719422802533402 0.1829114137434521 0.17075552324550716 0.17298965701149002 0.17052540551700984 0.17309103799165884 C 0.17075552324550716 0.17298965701149002 0.17519142431222906 0.18337898386521972 0.1748324997895199 0.18258760341340735" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3396161769217372,0.14633598263922498) rotate(0) scale(1,1) translate(-0.17301747436630838,-0.1665549443625739)"><path d="M 0.1759473002932622 0.173899787346787 C 0.1760920517244373 0.17491893022294946 0.1778336450081524 0.18812255717244952 0.1776843174673632 0.18612950186073685 C 0.1778336450081524 0.18812255717244952 0.17774380689234667 0.19879036352288934 0.17773923078273257 0.19781645108733914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17773923078273257 0.19781645108733914 C 0.17765603304061203 0.19919858915293942 0.17650172783116458 0.21679905903786278 0.1767408578772862 0.21440210787454247 C 0.17650172783116458 0.21679905903786278 0.17471373792527217 0.227594678144903 0.17486967022927324 0.22657986504718297" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17486967022927324 0.22657986504718297 C 0.1747777917800179 0.2257079956360477 0.17357008499485535 0.21402995782006937 0.17376712883820902 0.2161174321135599 C 0.17357008499485535 0.21402995782006937 0.17239997871493076 0.20031456864294114 0.1725051441090291 0.20153017352529642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1725051441090291 0.20153017352529642 C 0.17246149588040652 0.20040813631260537 0.17198301458894177 0.1850508982622594 0.1719813653655581 0.18806572697300383 C 0.17198301458894177 0.1850508982622594 0.17257023224163934 0.1634594374983099 0.1725249347896331 0.1653522289963633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1725249347896331 0.1653522289963633 C 0.17268443892185908 0.16556762920182996 0.17472418150164737 0.16864932799116533 0.17443898437634495 0.16793703146196334 C 0.17472418150164737 0.16864932799116533 0.17607299328633863 0.1743966836705223 0.1759473002932622 0.173899787346787" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.1958108277546985 0.22262095008111574 C 0.19556867129864494 0.22082680902009771 0.1926387047215027 0.19818480537526192 0.19290495028205593 0.2010912573488994 C 0.1926387047215027 0.19818480537526192 0.19259179192356018 0.18663121548484657 0.19261588102805985 0.18774352639746603" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19261588102805985 0.18774352639746603 C 0.1926291675157583 0.18678461682173444 0.19285914816889954 0.17359903291546822 0.192775318880441 0.1762366114886869 C 0.19285914816889954 0.17359903291546822 0.1936923752903224 0.15441391452135456 0.1936218324895623 0.15609258351884167" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1936218324895623 0.15609258351884167 C 0.1937705351484707 0.15602138826860823 0.19571219594663156 0.1552324403471676 0.1954062643964631 0.15523824051604046 C 0.19571219594663156 0.1552324403471676 0.1974502399828436 0.15608837657372804 0.19729301109158356 0.15602298149236746" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19729301109158356 0.15602298149236746 C 0.1973636240658457 0.1576926491921826 0.1982212946125289 0.17871062004257643 0.1981403667827293 0.176058993890149 C 0.1982212946125289 0.17871062004257643 0.1982744599047161 0.18882445377410872 0.19826414504917864 0.18784249532149644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19826414504917864 0.18784249532149644 C 0.198233650642417 0.18900672396161589 0.19769376906016561 0.20471144356623155 0.19789821216803896 0.20181323900292994 C 0.19769376906016561 0.20471144356623155 0.1956368790535868 0.22435492600429788 0.1958108277546985 0.22262095008111574" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.24972370812541383 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.24972370812541383 0.2308044715076716 0.262207331506811 0.23280529274848838 0.26034966000032117 C 0.2308044715076716 0.262207331506811 0.21538989416043028 0.26980218192175565 0.2178778082444386 0.26980218192175565 C 0.21538989416043028 0.26980218192175565 0.200949502499572 0.2584919884938314 0.2029503237403888 0.2603496600003213 C 0.200949502499572 0.2584919884938314 0.19280156103266954 0.2452965395623412 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.2452965395623412 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g transform="translate(0.33734345282867095,0.12379564176882465) rotate(0) scale(1,1) translate(-0.08512163657345904,-0.0749625261910107)"><path d="M 0.09005188720557471 0.09752048584487923 C 0.08984235155370979 0.09786185809875456 0.08692528659637469 0.10195832514525849 0.08753745938319572 0.10161695289138316 C 0.08692528659637469 0.10195832514525849 0.08209364097690133 0.10127558063750783 0.08270581376372237 0.10161695289138316 C 0.08209364097690133 0.10127558063750783 0.07998185028947846 0.0971791135910039 0.08019138594134338 0.09752048584487923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08019138594134338 0.09752048584487923 C 0.0797580372298141 0.09633877917856025 0.07439556154822781 0.08146017587789582 0.07499120140299209 0.08334000584905153 C 0.07439556154822781 0.08146017587789582 0.07288141654093705 0.07426440288617396 0.07304370768417205 0.0749625261910107" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09719956546274605 0.0749625261910107 C 0.09703727431951105 0.07566064949584743 0.09465643188916172 0.08521983582020724 0.095252071743926 0.08334000584905153 C 0.09465643188916172 0.08521983582020724 0.08961853849404543 0.0987021925111982 0.09005188720557471 0.09752048584487923" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024875998926522182 0.018660288359277216 C 0.025117618626550778 0.019403917332312448 0.02245148009586505 0.024634932103891602 0.02308404868289147 0.024175344123536648 C 0.02245148009586505 0.024634932103891602 0.01665260729517875 0.023715756143181693 0.017285175882205166 0.024175344123536648 C 0.01665260729517875 0.023715756143181693 0.015734845338603046 0.017916659386241984 0.01549322563857445 0.018660288359277216 C 0.015734845338603046 0.017916659386241984 0.02096651005654396 0.015251796447113858 0.020184612282548316 0.015251796447113858 C 0.02096651005654396 0.015251796447113858 0.025117618626550778 0.019403917332312448 0.024875998926522182 0.018660288359277216 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.029587391730907443 0.025354983548605776 C 0.029751915671387442 0.025861336171692267 0.027936485816611307 0.02942324425628728 0.028367215084751006 0.029110301124927164 C 0.027936485816611307 0.02942324425628728 0.023987911245091358 0.028797357993567047 0.024418640513231057 0.029110301124927164 C 0.023987911245091358 0.028797357993567047 0.023362987807554615 0.024848630925519286 0.023198463867074616 0.025354983548605776 C 0.023362987807554615 0.024848630925519286 0.026925338454310433 0.023034069647889278 0.02639292779899103 0.023034069647889278 C 0.026925338454310433 0.023034069647889278 0.029751915671387442 0.025861336171692267 0.029587391730907443 0.025354983548605776 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3334085348186441,0.148189999717076) rotate(0) scale(1,1) translate(-0.17491035026257845,-0.17443573639196525)"><path d="M 0.1714106737829024 0.18190980148971994 C 0.1717736032395435 0.18116887574539217 0.17597901032166133 0.17314475094382875 0.1757658272625957 0.1730186925577866 C 0.17597901032166133 0.17314475094382875 0.17381912409411437 0.18428948625259592 0.17396887049168985 0.18342250212222597" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17396887049168985 0.18342250212222597 C 0.1738698486185716 0.18404955914062154 0.17258511973600515 0.19243432828183257 0.1727806080142708 0.19094718634297303 C 0.17258511973600515 0.19243432828183257 0.17152654474735443 0.20212829030900448 0.17162301115250184 0.2012682053885405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17162301115250184 0.2012682053885405 C 0.17158066127936467 0.20251633871960753 0.17066783227052204 0.21846753853033765 0.17111481267485568 0.2162458053613448 C 0.17066783227052204 0.21846753853033765 0.1658546157693016 0.22890260325438064 0.16625924630049807 0.2279290034164548" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16625924630049807 0.2279290034164548 C 0.16639155951276752 0.2267994611280089 0.1679217572624767 0.2120565131746216 0.16784700484773127 0.2143744959551038 C 0.1679217572624767 0.2120565131746216 0.16709871447991947 0.19892476955863206 0.16715627527744345 0.20011321005066834" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16715627527744345 0.20011321005066834 C 0.1673392411803876 0.1992142868973652 0.16970639932156142 0.1878091814976182 0.16935186611277317 0.18932613221103056 C 0.16970639932156142 0.1878091814976182 0.1715822410887465 0.1812917739296107 0.1714106737829024 0.18190980148971994" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33507072873560473,0.14633598263922498) rotate(0) scale(1,1) translate(-0.17301747436630827,-0.1665549443625739)"><path d="M 0.1700319481673693 0.1741485011878991 C 0.17017091891847616 0.17361448989179407 0.17198020186451615 0.16701308569346915 0.1716995971806516 0.16774036563463887 C 0.17198020186451615 0.16701308569346915 0.17354083830650185 0.16522787324879779 0.17339920437374415 0.16542114189386248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17339920437374415 0.16542114189386248 C 0.1734277655097517 0.16703249346726723 0.17372689303592576 0.18759838439638796 0.17374193800583473 0.18475736077471944 C 0.17372689303592576 0.18759838439638796 0.17317505862892 0.20074309740214857 0.17321866473483652 0.1995134253538848" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17321866473483652 0.1995134253538848 C 0.17313387598243182 0.20085464924593055 0.1718130109486585 0.2178959534725261 0.1722011997059803 0.2156081120584336 C 0.1718130109486585 0.2178959534725261 0.16825699964205768 0.22791413984504144 0.1685603996469748 0.2269675223229947" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1685603996469748 0.2269675223229947 C 0.16860096182900583 0.22592551547431577 0.1689969692667601 0.21200143145174305 0.16904714583134695 0.2144634401388476 C 0.1689969692667601 0.21200143145174305 0.16786754212531493 0.1960034162393143 0.1679582808719328 0.19742341807773994" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1679582808719328 0.19742341807773994 C 0.16798382152220712 0.19651420798948296 0.16843757428317765 0.18457332061116935 0.1682647686752246 0.1865128970186561 C 0.16843757428317765 0.18457332061116935 0.17017921312504802 0.17311813486866934 0.1700319481673693 0.1741485011878991" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3412783708386977,0.148189999717076) rotate(0) scale(1,1) translate(-0.17132080444909886,-0.17443573639196525)"><path d="M 0.1748324997895199 0.18258760341340735 C 0.17500743642185507 0.183292271340781 0.17722985456801757 0.19248937361335322 0.17693173937754203 0.1910436185418911 C 0.17722985456801757 0.19248937361335322 0.17853306063336682 0.20067775141504104 0.17840988207522646 0.19993666427095258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17840988207522646 0.19993666427095258 C 0.17839479547819714 0.20111366752952128 0.1784143152138697 0.21632810075434716 0.17822884291087454 0.2140607033737771 C 0.1784143152138697 0.21632810075434716 0.18083610861119254 0.22823582695979439 0.18063554971116808 0.22714543283779307" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18063554971116808 0.22714543283779307 C 0.18015747550143324 0.22613303833955 0.17435672014443418 0.21281870147322565 0.17489865919435021 0.2149966988588765 C 0.17435672014443418 0.21281870147322565 0.17406841627199457 0.1998438613225748 0.17413228111217577 0.20100946420998264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17413228111217577 0.20100946420998264 C 0.17406935941398238 0.20025649275911767 0.1732054545618033 0.19054003271339034 0.17337722073385528 0.1919738067996028 C 0.1732054545618033 0.19054003271339034 0.17196224257369347 0.18312337254008584 0.17207108704755206 0.1838041751754333" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17207108704755206 0.1838041751754333 C 0.1719422802533402 0.1829114137434521 0.17075552324550716 0.17298965701149002 0.17052540551700984 0.17309103799165884 C 0.17075552324550716 0.17298965701149002 0.17519142431222906 0.18337898386521972 0.1748324997895199 0.18258760341340735" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3396161769217372,0.14633598263922498) rotate(0) scale(1,1) translate(-0.17301747436630838,-0.1665549443625739)"><path d="M 0.1759473002932622 0.173899787346787 C 0.1760920517244373 0.17491893022294946 0.1778336450081524 0.18812255717244952 0.1776843174673632 0.18612950186073685 C 0.1778336450081524 0.18812255717244952 0.17774380689234667 0.19879036352288934 0.17773923078273257 0.19781645108733914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17773923078273257 0.19781645108733914 C 0.17765603304061203 0.19919858915293942 0.17677664654920222 0.21683280671977456 0.1767408578772862 0.21440210787454247 C 0.17677664654920222 0.21683280671977456 0.1782876812597617 0.22803339800975603 0.17816869484572512 0.22698483723012422" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17816869484572512 0.22698483723012422 C 0.1778018976784321 0.2260792201370772 0.17329516627681768 0.2139962101381576 0.17376712883820902 0.2161174321135599 C 0.17329516627681768 0.2139962101381576 0.17239997871493076 0.20031456864294114 0.1725051441090291 0.20153017352529642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1725051441090291 0.20153017352529642 C 0.17246149588040652 0.20040813631260537 0.17198301458894177 0.1850508982622594 0.1719813653655581 0.18806572697300383 C 0.17198301458894177 0.1850508982622594 0.17257023224163934 0.1634594374983099 0.1725249347896331 0.1653522289963633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1725249347896331 0.1653522289963633 C 0.17268443892185908 0.16556762920182996 0.17472418150164737 0.16864932799116533 0.17443898437634495 0.16793703146196334 C 0.17472418150164737 0.16864932799116533 0.17607299328633863 0.1743966836705223 0.1759473002932622 0.173899787346787" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.1958108277546985 0.22262095008111574 C 0.19556867129864494 0.22082680902009771 0.1926387047215027 0.19818480537526192 0.19290495028205593 0.2010912573488994 C 0.1926387047215027 0.19818480537526192 0.19259179192356018 0.18663121548484657 0.19261588102805985 0.18774352639746603" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19261588102805985 0.18774352639746603 C 0.1926291675157583 0.18678461682173444 0.19285914816889954 0.17359903291546822 0.192775318880441 0.1762366114886869 C 0.19285914816889954 0.17359903291546822 0.1936923752903224 0.15441391452135456 0.1936218324895623 0.15609258351884167" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1936218324895623 0.15609258351884167 C 0.1937705351484707 0.15602138826860823 0.19571219594663156 0.1552324403471676 0.1954062643964631 0.15523824051604046 C 0.19571219594663156 0.1552324403471676 0.1974502399828436 0.15608837657372804 0.19729301109158356 0.15602298149236746" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19729301109158356 0.15602298149236746 C 0.1973636240658457 0.1576926491921826 0.1982212946125289 0.17871062004257643 0.1981403667827293 0.176058993890149 C 0.1982212946125289 0.17871062004257643 0.1982744599047161 0.18882445377410872 0.19826414504917864 0.18784249532149644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19826414504917864 0.18784249532149644 C 0.198233650642417 0.18900672396161589 0.19769376906016561 0.20471144356623155 0.19789821216803896 0.20181323900292994 C 0.19769376906016561 0.20471144356623155 0.1956368790535868 0.22435492600429788 0.1958108277546985 0.22262095008111574" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.24972370812541383 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.24972370812541383 0.2308044715076716 0.262207331506811 0.23280529274848838 0.26034966000032117 C 0.2308044715076716 0.262207331506811 0.21538989416043028 0.26980218192175565 0.2178778082444386 0.26980218192175565 C 0.21538989416043028 0.26980218192175565 0.200949502499572 0.2584919884938314 0.2029503237403888 0.2603496600003213 C 0.200949502499572 0.2584919884938314 0.19280156103266954 0.2452965395623412 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.2452965395623412 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g transform="translate(0.33734345282867095,0.12379564176882465) rotate(0) scale(1,1) translate(-0.08512163657345904,-0.0749625261910107)"><path d="M 0.09005188720557471 0.09752048584487923 C 0.08984235155370979 0.09786185809875456 0.08692528659637469 0.10195832514525849 0.08753745938319572 0.10161695289138316 C 0.08692528659637469 0.10195832514525849 0.08209364097690133 0.10127558063750783 0.08270581376372237 0.10161695289138316 C 0.08209364097690133 0.10127558063750783 0.07998185028947846 0.0971791135910039 0.08019138594134338 0.09752048584487923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08019138594134338 0.09752048584487923 C 0.0797580372298141 0.09633877917856025 0.07439556154822781 0.08146017587789582 0.07499120140299209 0.08334000584905153 C 0.07439556154822781 0.08146017587789582 0.07288141654093705 0.07426440288617396 0.07304370768417205 0.0749625261910107" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09719956546274605 0.0749625261910107 C 0.09703727431951105 0.07566064949584743 0.09465643188916172 0.08521983582020724 0.095252071743926 0.08334000584905153 C 0.09465643188916172 0.08521983582020724 0.08961853849404543 0.0987021925111982 0.09005188720557471 0.09752048584487923" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024875998926522182 0.018660288359277216 C 0.025117618626550778 0.019403917332312448 0.02245148009586505 0.024634932103891602 0.02308404868289147 0.024175344123536648 C 0.02245148009586505 0.024634932103891602 0.01665260729517875 0.023715756143181693 0.017285175882205166 0.024175344123536648 C 0.01665260729517875 0.023715756143181693 0.015734845338603046 0.017916659386241984 0.01549322563857445 0.018660288359277216 C 0.015734845338603046 0.017916659386241984 0.02096651005654396 0.015251796447113858 0.020184612282548316 0.015251796447113858 C 0.02096651005654396 0.015251796447113858 0.025117618626550778 0.019403917332312448 0.024875998926522182 0.018660288359277216 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.029587391730907443 0.025354983548605776 C 0.029751915671387442 0.025861336171692267 0.027936485816611307 0.02942324425628728 0.028367215084751006 0.029110301124927164 C 0.027936485816611307 0.02942324425628728 0.023987911245091358 0.028797357993567047 0.024418640513231057 0.029110301124927164 C 0.023987911245091358 0.028797357993567047 0.023362987807554615 0.024848630925519286 0.023198463867074616 0.025354983548605776 C 0.023362987807554615 0.024848630925519286 0.026925338454310433 0.023034069647889278 0.02639292779899103 0.023034069647889278 C 0.026925338454310433 0.023034069647889278 0.029751915671387442 0.025861336171692267 0.029587391730907443 0.025354983548605776 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33462791861878816,0.1480956690654119) rotate(0) scale(1,1) translate(-0.17511680917575018,-0.16435363338213985)"><path d="M 0.17045771017840197 0.17179139215453834 C 0.1708738774882951 0.1709840663919501 0.17575714835275313 0.1627323169144776 0.17545171789711952 0.16210348300347938 C 0.17575714835275313 0.1627323169144776 0.17401213879174576 0.18077355876010354 0.1741228756460053 0.17933739908651705" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1741228756460053 0.17933739908651705 C 0.1740118127292563 0.18050175362466098 0.17235322180806556 0.19672834667364383 0.17279012064501764 0.1933096535442443 C 0.17235322180806556 0.19672834667364383 0.16855425368237736 0.2226160552305671 0.16888008960258047 0.2203617166393115" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16888008960258047 0.2203617166393115 C 0.16865911747153112 0.22039553863161424 0.16581545520730448 0.22085019634320066 0.1662284240299884 0.22076758054694437 C 0.16581545520730448 0.22085019634320066 0.16373246703873912 0.22140189999834053 0.16392446373037367 0.22135310619438697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16392446373037367 0.22135310619438697 C 0.16411052852687527 0.21884640227152402 0.16670167849239534 0.1871425162833776 0.166157241288393 0.19127265912003166 C 0.16670167849239534 0.1871425162833776 0.17081608258590272 0.17016795324074724 0.17045771017840197 0.17179139215453834" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3357587548170266,0.14602207844009965) rotate(0) scale(1,1) translate(-0.17325291340394497,-0.15344617203421773)"><path d="M 0.1692213227159484 0.1701225047993188 C 0.16937845090847287 0.16891197830636917 0.17144205458344575 0.15411569613485862 0.17110686102624198 0.15559618688392324 C 0.17144205458344575 0.15411569613485862 0.17342171076707275 0.15208665155442852 0.17324364540239345 0.1523566158105435" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17324364540239345 0.1523566158105435 C 0.17325337103962474 0.15498770822142294 0.17324394074265137 0.18895137392223904 0.1733603530491689 0.18392972474109695 C 0.17324394074265137 0.18895137392223904 0.17172055978043402 0.21500696275451128 0.17184669772418285 0.21261640598424864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17184669772418285 0.21261640598424864 C 0.17166678272870411 0.21259018462356133 0.16929340578061278 0.21225825605253898 0.16968771777843822 0.21230174965600088 C 0.16929340578061278 0.21225825605253898 0.1669005567479307 0.21207721049993133 0.16711495375027743 0.21209448274270593" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16711495375027743 0.21209448274270593 C 0.16716615229687934 0.2100187594432462 0.1679048670566395 0.18368813832057349 0.16772933630950027 0.1871858031491891 C 0.1679048670566395 0.18368813832057349 0.16934565491648573 0.16870056327016295 0.1692213227159484 0.1701225047993188" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34005898703855375,0.14815850514496687) rotate(0) scale(1,1) translate(-0.17111434553592714,-0.16435363338213985)"><path d="M 0.175836113066247 0.1725090918429462 C 0.1761614844877434 0.17405434289937605 0.18026754962793917 0.19510281303055135 0.17974057012420405 0.19105210452010457 C 0.18026754962793917 0.19510281303055135 0.18236147519330698 0.22362305142232436 0.1821598671110683 0.22111759396830746" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1821598671110683 0.22111759396830746 C 0.1819693856348123 0.22108917647647827 0.17946928869203166 0.22074444253521214 0.17987408939599636 0.22077658406635714 C 0.17946928869203166 0.22074444253521214 0.17708793943578297 0.22072817155525182 0.1773022586634917 0.2207318955945676" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1773022586634917 0.2207318955945676 C 0.1770020053935634 0.2186741475956782 0.17326725463742793 0.19260632882857054 0.17369921942435199 0.1960389196078946 C 0.17326725463742793 0.19260632882857054 0.1719869697034074 0.1781659634622441 0.17211868122040314 0.17954080624267874" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17211868122040314 0.17954080624267874 C 0.1720079676532261 0.178081090994584 0.17109990440143236 0.161438247065564 0.1707901184142787 0.16202422326554172 C 0.17109990440143236 0.161438247065564 0.17625661262057768 0.17338283089106324 0.175836113066247 0.1725090918429462" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33892815084031536,0.14602207844009965) rotate(0) scale(1,1) translate(-0.17278203532867167,-0.15344617203421773)"><path d="M 0.17692369406603495 0.17037402859944953 C 0.1770367846808982 0.17177351735095206 0.17846985189992104 0.19057062997653096 0.17828078144439394 0.18716789361747982 C 0.17846985189992104 0.19057062997653096 0.17926851937302407 0.2132101125156117 0.17919253953236022 0.2112068649080631" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17919253953236022 0.2112068649080631 C 0.17901236548154625 0.21127010858520984 0.17666050046961174 0.21211056554424162 0.17703045092259256 0.21196578903382415 C 0.17666050046961174 0.21211056554424162 0.1745633576944235 0.2130257158663433 0.17475313409659035 0.2129441830330726" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17475313409659035 0.2129441830330726 C 0.1746056467060215 0.2112749803786534 0.17281729125722764 0.18786322565545904 0.17298328540976407 0.1929137511800421 C 0.17281729125722764 0.18786322565545904 0.17274269750418567 0.14895655386791243 0.17276120426615324 0.15233787673807625" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17276120426615324 0.15233787673807625 C 0.17293410540930318 0.15260337294374643 0.17518289213394256 0.15702684386123297 0.1748360179839524 0.15552383120611854 C 0.17518289213394256 0.15702684386123297 0.17709766707287516 0.17161154504889378 0.17692369406603495 0.17037402859944953" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.1979845055614551 0.21623133241981204 C 0.19780169879657322 0.21623133241981204 0.19542521085310852 0.21623133241981204 0.19579082438287232 0.21623133241981204 C 0.19542521085310852 0.21623133241981204 0.19341433643940764 0.21623133241981204 0.19359714320428953 0.21623133241981204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19359714320428953 0.21623133241981204 C 0.19350952404184166 0.21406955724028312 0.19257252303472408 0.18525694119626746 0.19254571325491515 0.1902900302654651 C 0.19257252303472408 0.18525694119626746 0.19403328950425355 0.15296294969977184 0.19391886056199675 0.15583426358944055" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19391886056199675 0.15583426358944055 C 0.19405169106309642 0.15577138044738847 0.1957759793220528 0.15507810429544341 0.19551282657519264 0.1550796658848157 C 0.1957759793220528 0.15507810429544341 0.19720701577007904 0.15587684606965307 0.19707669352431856 0.15581552451697328" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19707669352431856 0.15581552451697328 C 0.19720491164081702 0.1586931709199526 0.19869096192539487 0.19538193201129497 0.19861531092230017 0.19034728135272508 C 0.19869096192539487 0.19538193201129497 0.19793193844805135 0.21838833667540264 0.1979845055614551 0.21623133241981204" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.24529247248894492 0.23493027155705123 0.24082127081227234 0.24972370812541383 0.24188766313423996 0.2475101238438775 C 0.24082127081227234 0.24972370812541383 0.2308044715076716 0.262207331506811 0.23280529274848838 0.26034966000032117 C 0.2308044715076716 0.262207331506811 0.21538989416043028 0.26980218192175565 0.2178778082444386 0.26980218192175565 C 0.21538989416043028 0.26980218192175565 0.200949502499572 0.2584919884938314 0.2029503237403888 0.2603496600003213 C 0.200949502499572 0.2584919884938314 0.19280156103266954 0.2452965395623412 0.19386795335463716 0.24751012384387755 C 0.19280156103266954 0.2452965395623412 0.18984408775362221 0.23264302568671918 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ">
<g transform="translate(0.33734345282867095,0.12379564176882465) rotate(0) scale(1,1) translate(-0.08512163657345904,-0.0749625261910107)"><path d="M 0.09005188720557471 0.09752048584487923 C 0.08984235155370979 0.09786185809875456 0.08692528659637469 0.10195832514525849 0.08753745938319572 0.10161695289138316 C 0.08692528659637469 0.10195832514525849 0.08209364097690133 0.10127558063750783 0.08270581376372237 0.10161695289138316 C 0.08209364097690133 0.10127558063750783 0.07998185028947846 0.0971791135910039 0.08019138594134338 0.09752048584487923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08019138594134338 0.09752048584487923 C 0.0797580372298141 0.09633877917856025 0.07439556154822781 0.08146017587789582 0.07499120140299209 0.08334000584905153 C 0.07439556154822781 0.08146017587789582 0.07288141654093705 0.07426440288617396 0.07304370768417205 0.0749625261910107" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09719956546274605 0.0749625261910107 C 0.09703727431951105 0.07566064949584743 0.09465643188916172 0.08521983582020724 0.095252071743926 0.08334000584905153 C 0.09465643188916172 0.08521983582020724 0.08961853849404543 0.0987021925111982 0.09005188720557471 0.09752048584487923" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024875998926522182 0.018660288359277216 C 0.025117618626550778 0.019403917332312448 0.02245148009586505 0.024634932103891602 0.02308404868289147 0.024175344123536648 C 0.02245148009586505 0.024634932103891602 0.01665260729517875 0.023715756143181693 0.017285175882205166 0.024175344123536648 C 0.01665260729517875 0.023715756143181693 0.015734845338603046 0.017916659386241984 0.01549322563857445 0.018660288359277216 C 0.015734845338603046 0.017916659386241984 0.02096651005654396 0.015251796447113858 0.020184612282548316 0.015251796447113858 C 0.02096651005654396 0.015251796447113858 0.025117618626550778 0.019403917332312448 0.024875998926522182 0.018660288359277216 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.029587391730907443 0.025354983548605776 C 0.029751915671387442 0.025861336171692267 0.027936485816611307 0.02942324425628728 0.028367215084751006 0.029110301124927164 C 0.027936485816611307 0.02942324425628728 0.023987911245091358 0.028797357993567047 0.024418640513231057 0.029110301124927164 C 0.023987911245091358 0.028797357993567047 0.023362987807554615 0.024848630925519286 0.023198463867074616 0.025354983548605776 C 0.023362987807554615 0.024848630925519286 0.026925338454310433 0.023034069647889278 0.02639292779899103 0.023034069647889278 C 0.026925338454310433 0.023034069647889278 0.029751915671387442 0.025861336171692267 0.029587391730907443 0.025354983548605776 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34373380428401,0.1492334183155791) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19342321484518715 0.2117771156167573 C 0.1938527143518382 0.2113434716669449 0.19899325321423011 0.20575789408757908 0.19857720892499983 0.20657338821900828 C 0.19899325321423011 0.20575789408757908 0.19840229109852972 0.20160933585798996 0.1984157463159505 0.20199118603960675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1984157463159505 0.20199118603960675 C 0.19803791910495017 0.2016174929340307 0.19379986065844065 0.19674689845078727 0.19388181978394667 0.19750686877269405 C 0.19379986065844065 0.19674689845078727 0.19772810489537251 0.19248526496039467 0.19743223680987823 0.1928715421767254" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19743223680987823 0.1928715421767254 C 0.19772308483720302 0.1924483713043159 0.20084045401226971 0.18703352138590493 0.20092241313777576 0.1877934917078117 C 0.20084045401226971 0.18703352138590493 0.19607592015097494 0.18341509886434673 0.19644872730380578 0.18375189831384403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19644872730380578 0.18375189831384403 C 0.19593354993853102 0.18340404429677684 0.19018463979500277 0.17881767978713095 0.1902665989205088 0.17957765010903773 C 0.19018463979500277 0.17881767978713095 0.19589843603750215 0.1742201381461231 0.19546521779773343 0.1746322544509627" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19546521779773343 0.1746322544509627 C 0.19571677536023593 0.174221665291077 0.19840194942225753 0.1689452142104274 0.19848390854776357 0.16970518453233419 C 0.19840194942225753 0.1689452142104274 0.19414819160365251 0.1651632294260603 0.19448170829166106 0.16551261058808137" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19448170829166106 0.16551261058808137 C 0.19433110558333255 0.1653040904437459 0.192488921287381 0.1624707137806844 0.1926744757917189 0.16301036885605547 C 0.192488921287381 0.1624707137806844 0.19222010244359664 0.15870561475259298 0.19225505423960604 0.15903674968362855" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19225505423960604 0.15903674968362855 C 0.19232038508928764 0.15869380709820866 0.19333647384961083 0.15473301675043333 0.19303902443578524 0.15492143865858982 C 0.19333647384961083 0.15473301675043333 0.19605656576965727 0.15693020746301417 0.19582444720551326 0.15677568678575077" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19582444720551326 0.15677568678575077 C 0.19597722912189167 0.15711541333885645 0.19792096226632686 0.16148939813589894 0.19765783020205413 0.1608524054230189 C 0.19792096226632686 0.16148939813589894 0.19909238212468044 0.16471686550008555 0.1989820319767861 0.1644195993403112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1989820319767861 0.1644195993403112 C 0.19930614136886893 0.16484607275981059 0.20279415405181758 0.17037370735381183 0.2028713446817799 0.16953728037430385 C 0.20279415405181758 0.17037370735381183 0.19765444439519333 0.17486667665441563 0.19805574441723844 0.17445672309440705" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19805574441723844 0.17445672309440705 C 0.19780423829991184 0.17482892487941498 0.19506566083025206 0.17968677173967074 0.19503767100931904 0.1789231445145024 C 0.19506566083025206 0.17968677173967074 0.19867111820669422 0.1840116752365877 0.1983916222684346 0.1836202497964273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1983916222684346 0.1836202497964273 C 0.19885492516726003 0.18393021592616102 0.20397924687527272 0.18810347057840016 0.2039512570543397 0.1873398433532318 C 0.20397924687527272 0.18810347057840016 0.19829218704173832 0.1932374375938822 0.19872750011963072 0.19278377649844755" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19872750011963072 0.19278377649844755 C 0.19850544433722714 0.1931650522708269 0.19609082055172067 0.19812271299216805 0.19606283073078767 0.1973590857669997 C 0.19609082055172067 0.19812271299216805 0.19931342357416343 0.20232965465325684 0.19906337797082682 0.20194730320046783" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19906337797082682 0.20194730320046783 C 0.19910489722662558 0.2023272517923886 0.19909159544660854 0.2073258373382079 0.19956160904041184 0.2065066863035171 C 0.19909159544660854 0.2073258373382079 0.1929116819955851 0.21221631805952731 0.19342321484518715 0.2117771156167573" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3404187722727318,0.1479720777849393) rotate(0) scale(1,1) translate(-0.17536354441476742,-0.1747542786641903)"><path d="M 0.1791425887987996 0.18428901362981873 C 0.17943356833254664 0.1847647715520832 0.18226498511586559 0.19071040908049713 0.1826343432037641 0.18999810869699243 C 0.18226498511586559 0.19071040908049713 0.17404995412237212 0.19307316069311553 0.17471029174401764 0.19283661823187528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17471029174401764 0.19283661823187528 C 0.17539183831933008 0.19330571885065806 0.1828861151475868 0.19929452381857016 0.18288885064776678 0.19846582565726853 C 0.1828861151475868 0.19929452381857016 0.17399318366636554 0.20314059371001353 0.17467746574185794 0.20278099616749468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17467746574185794 0.20278099616749468 C 0.17518332778678503 0.20302095959441296 0.18081136598331243 0.2062494126734445 0.18074781028098308 0.20566055729051427 C 0.18081136598331243 0.2062494126734445 0.1749978278272125 0.21019615271866907 0.17544013416981022 0.20984726076265717" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17544013416981022 0.20984726076265717 C 0.17570691745747566 0.2101708702843002 0.17830613350634195 0.2144375103624122 0.17864153362179536 0.21373057502237372 C 0.17830613350634195 0.2144375103624122 0.17081314938125042 0.21871381066151446 0.17141533278436927 0.218330484843119" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17141533278436927 0.218330484843119 C 0.1720583996692228 0.21850289730571126 0.17911486466581944 0.22080838931805857 0.17913213540261147 0.22039943439422607 C 0.17911486466581944 0.22080838931805857 0.17054774632121925 0.22347448639034911 0.1712080839428648 0.22323794392910887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1712080839428648 0.22323794392910887 C 0.17169289850957803 0.22367390294552358 0.17736849691896062 0.22939038086916033 0.17702585874342375 0.22846945212608544 C 0.17736849691896062 0.22939038086916033 0.1751775656581308 0.23477405857266778 0.1753197420493072 0.2342890888460076" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1753197420493072 0.2342890888460076 C 0.17541739265700335 0.23380545916081275 0.17605985959916357 0.22756728396352505 0.1764915493416609 0.2284855326236693 C 0.17605985959916357 0.22756728396352505 0.16961012478914586 0.22283548594932723 0.17013946513933934 0.22327010492427662" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17013946513933934 0.22327010492427662 C 0.17075527697750464 0.2230349025045017 0.17745742636715472 0.22004140104607575 0.17752920719732315 0.22044767588697758 C 0.17745742636715472 0.22004140104607575 0.16859050250898458 0.21822373441232756 0.16927809517731832 0.2183948068334545" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16927809517731832 0.2183948068334545 C 0.16983575279695695 0.2180128210565244 0.17621633516147472 0.21310672225318533 0.17596998661298177 0.21381097751029315 C 0.17621633516147472 0.21310672225318533 0.17192296868808798 0.20962147426798278 0.17223427775923367 0.2099437437481605" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17223427775923367 0.2099437437481605 C 0.1726320583183512 0.20959619183361392 0.17685503719935425 0.205186945473602 0.17700764446864403 0.20577312077360155 C 0.17685503719935425 0.205186945473602 0.16985260269934893 0.202671016762713 0.17040299052775626 0.20290964014816598" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17040299052775626 0.20290964014816598 C 0.17104274681976844 0.20255138264711248 0.17799374996512185 0.1977845320571528 0.17808006603190235 0.19861055013552376 C 0.17799374996512185 0.1977845320571528 0.1686411253675977 0.19252966263039695 0.16936719772639036 0.1929974232077144" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16936719772639036 0.1929974232077144 C 0.1699830095645557 0.19276222078793948 0.17703724630531234 0.18946537386984136 0.1767569397843743 0.19017499417041542 C 0.17703724630531234 0.18946537386984136 0.17239537066041957 0.1840075617200264 0.17273087597764686 0.18448197960082557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17273087597764686 0.18448197960082557 C 0.17294743725535416 0.183522332862699 0.17586392071189724 0.1729501382457229 0.17532961131013453 0.17296621874330678 C 0.17586392071189724 0.1729501382457229 0.179460336922855 0.1852325798703614 0.1791425887987996 0.18428901362981873" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3309531013733319,0.14923341831557907) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.19760243830519816 0.2117771156167573 C 0.1970909054555961 0.21133791317398729 0.19099403051617014 0.2056875352688263 0.19146404410997345 0.2065066863035171 C 0.19099403051617014 0.2056875352688263 0.1920037944353572 0.20156735460854705 0.19196227517955844 0.20194730320046783" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19196227517955844 0.20194730320046783 C 0.19221232078289502 0.20156495174767883 0.19499081224053058 0.19659545854183136 0.19496282241959756 0.1973590857669997 C 0.19499081224053058 0.19659545854183136 0.19207609724835098 0.1924025007260682 0.19229815303075457 0.19278377649844755" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19229815303075457 0.19278377649844755 C 0.19186283995286216 0.1923301154030129 0.18710238591697853 0.18657621612806347 0.18707439609604554 0.1873398433532318 C 0.18710238591697853 0.18657621612806347 0.1930973337807761 0.18331028366669358 0.19263403088195066 0.1836202497964273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19263403088195066 0.1836202497964273 C 0.1929135268202103 0.1832288243562669 0.19601597196199919 0.17815951728933405 0.19598798214106616 0.1789231445145024 C 0.19601597196199919 0.17815951728933405 0.1927184026158202 0.1740845213093991 0.19296990873314682 0.17445672309440705" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19296990873314682 0.17445672309440705 C 0.1925686087111017 0.17404676953439846 0.18808463072799275 0.1687226933210978 0.1881543084686054 0.16953728037430388 C 0.18808463072799275 0.1687226933210978 0.19246539812722763 0.16427704496273637 0.19213377584579514 0.16468167845593387" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19213377584579514 0.16468167845593387 C 0.1922591517723888 0.16429341260323496 0.19387888036114287 0.15935273562121416 0.19363828696491914 0.16002248822354703 C 0.19387888036114287 0.15935273562121416 0.19513611407011017 0.15636316047830545 0.19502089660048008 0.15664464722793942" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19502089660048008 0.15664464722793942 C 0.1952680409433234 0.15650104651382696 0.1982709305720637 0.15512017386527774 0.19798662871460002 0.15492143865858982 C 0.1982709305720637 0.15512017386527774 0.19846967640466467 0.15937180562899503 0.19843251889004432 0.15902946970819462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19843251889004432 0.15902946970819462 C 0.19842448828087123 0.1593047914942365 0.1982476385630623 0.1628129264187378 0.19833615157996703 0.16233333114069692 C 0.1982476385630623 0.1628129264187378 0.19728988027945582 0.164988886536684 0.19737036268718744 0.164784613044685" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19737036268718744 0.164784613044685 C 0.19696797784680695 0.16519466066865576 0.1923909173247437 0.17052582131619065 0.19254174460262166 0.16970518453233419 C 0.1923909173247437 0.17052582131619065 0.19581199291515433 0.1750428436108484 0.19556043535265183 0.1746322544509627" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19556043535265183 0.1746322544509627 C 0.19599365359242055 0.1750443707558023 0.20067709510437043 0.1803376204309445 0.20075905422987644 0.17957765010903773 C 0.20067709510437043 0.1803376204309445 0.19406174848130475 0.18409975233091122 0.19457692584657948 0.18375189831384403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19457692584657948 0.18375189831384403 C 0.19420411869374865 0.18408869776334133 0.1900212808871034 0.18855346202971848 0.19010324001260945 0.1877934917078117 C 0.1900212808871034 0.18855346202971848 0.19388426436783188 0.19329471304913487 0.19359341634050709 0.1928715421767254" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19359341634050709 0.1928715421767254 C 0.19388928442600137 0.1932578193930561 0.19706187424093258 0.19826683909460083 0.1971438333664386 0.19750686877269405 C 0.19706187424093258 0.19826683909460083 0.19223207962343442 0.2023648791451828 0.19260990683443474 0.20199118603960675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19260990683443474 0.20199118603960675 C 0.19259645161701397 0.20237303622122355 0.1928644885146157 0.20738888235043748 0.19244844422538543 0.20657338821900828 C 0.1928644885146157 0.20738888235043748 0.19803193781184922 0.2122107595665697 0.19760243830519816 0.2117771156167573" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33426813338461014,0.14797207778493926) rotate(0) scale(1,1) translate(-0.17536354441476742,-0.1747542786641903)"><path d="M 0.17158450003073522 0.18428901362981873 C 0.17190224815479063 0.18334544738927605 0.175931786921163 0.17298229924089067 0.1753974775194003 0.17296621874330678 C 0.175931786921163 0.17298229924089067 0.17821277412959527 0.18544162633895214 0.17799621285188796 0.18448197960082557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17799621285188796 0.18448197960082557 C 0.17766070753466068 0.18495639748162473 0.17425045556609858 0.19088461447098948 0.17397014904516053 0.19017499417041542 C 0.17425045556609858 0.19088461447098948 0.1819757029413098 0.19323262562748933 0.18135989110314446 0.1929974232077144" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18135989110314446 0.1929974232077144 C 0.1806338187443518 0.19346518378503186 0.17256070673085197 0.19943656821389472 0.17264702279763247 0.19861055013552376 C 0.17256070673085197 0.19943656821389472 0.18096385459379077 0.2032678976492195 0.1803240983017786 0.20290964014816598" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1803240983017786 0.20290964014816598 C 0.17977371047337126 0.20314826353361895 0.173566837091601 0.2063592960736011 0.1737194443608908 0.20577312077360155 C 0.173566837091601 0.2063592960736011 0.17889059162941867 0.21029129566270707 0.17849281107030116 0.2099437437481605" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17849281107030116 0.2099437437481605 C 0.17818150199915547 0.2102660132283382 0.175003450765046 0.21451523276740098 0.17475710221655305 0.21381097751029315 C 0.175003450765046 0.21451523276740098 0.18200665127185517 0.2187767926103846 0.18144899365221653 0.2183948068334545" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18144899365221653 0.2183948068334545 C 0.1807614009838828 0.21856587925458143 0.17312610080204324 0.22085395072787942 0.17319788163221167 0.22044767588697758 C 0.17312610080204324 0.22085395072787942 0.18120343552836082 0.22350530734405155 0.18058762369019551 0.22327010492427662" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18058762369019551 0.22327010492427662 C 0.18005828334000204 0.22370472389922602 0.1738038497453766 0.22940378128381356 0.17423553948787393 0.2284855326236693 C 0.1738038497453766 0.22940378128381356 0.17550499738792377 0.23477271853120246 0.17540734678022762 0.2342890888460076" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17540734678022762 0.2342890888460076 C 0.17526517038905123 0.23380411911934743 0.17404386826164794 0.22754852338301054 0.17370123008611107 0.22846945212608544 C 0.17404386826164794 0.22754852338301054 0.18000381945338328 0.22280198491269415 0.17951900488667002 0.22323794392910887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17951900488667002 0.22323794392910887 C 0.17885866726502447 0.22300140146786862 0.17157768269013132 0.21999047947039357 0.17159495342692335 0.22039943439422607 C 0.17157768269013132 0.21999047947039357 0.1799548229300191 0.21815807238052676 0.17931175604516558 0.218330484843119" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17931175604516558 0.218330484843119 C 0.17870957264204673 0.21794715902472356 0.17175015509228608 0.21302363968233523 0.1720855552077395 0.21373057502237372 C 0.17175015509228608 0.21302363968233523 0.17555373794739004 0.20952365124101413 0.1752869546597246 0.20984726076265717" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1752869546597246 0.20984726076265717 C 0.17484464831712687 0.20949836880664527 0.1700428342508811 0.20507170190758406 0.16997927854855174 0.20566055729051427 C 0.1700428342508811 0.20507170190758406 0.176555485132604 0.2025410327405764 0.1760496230876769 0.20278099616749468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1760496230876769 0.20278099616749468 C 0.1753653410121845 0.20242139862497582 0.1678355026815881 0.1976371274959669 0.16783823818176807 0.19846582565726853 C 0.1678355026815881 0.1976371274959669 0.17669834366082965 0.1923675176130925 0.1760167970855172 0.19283661823187528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1760167970855172 0.19283661823187528 C 0.17535645946387168 0.19260007577063504 0.16772338753787225 0.18928580831348774 0.16809274562577076 0.18999810869699243 C 0.16772338753787225 0.18928580831348774 0.17187547956448226 0.18381325570755425 0.17158450003073522 0.18428901362981873" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867095,0.14635360142269319) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15725534279570835)"><path d="M 0.20341999549867684 0.22220984429466176 C 0.20270696366293886 0.22172663899720785 0.19416908990243792 0.21547098483714508 0.194863613469821 0.21641138072521468 C 0.19416908990243792 0.21547098483714508 0.19510422095843463 0.2104679030472109 0.19508571269007974 0.21092509363782658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19508571269007974 0.21092509363782658 C 0.1953777017611904 0.21044815591000696 0.19855398871964844 0.20428745972275986 0.19858958154340783 0.2052018409039912 C 0.19855398871964844 0.20428745972275986 0.19433101691009677 0.1995150760096387 0.19465859880496686 0.19995251946305043" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19465859880496686 0.19995251946305043 C 0.19404424229964898 0.1994458751723066 0.18725072791739297 0.19295840679289342 0.18728632074115237 0.19387278797412477 C 0.18725072791739297 0.19295840679289342 0.19481024860141244 0.18857220839778668 0.19423148491985398 0.18897994528827422" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19423148491985398 0.18897994528827422 C 0.1945612705369442 0.1884897855642398 0.19815331950117707 0.1821836474186297 0.19818891232493646 0.18309802859986105 C 0.19815331950117707 0.1821836474186297 0.1934389925938915 0.17758314965630106 0.1938043710347411 0.178007371113498" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1938043710347411 0.178007371113498 C 0.19323879956968976 0.17755018052288232 0.18698192063036564 0.17160670284487856 0.18701751345412504 0.1725210840261099 C 0.18698192063036564 0.17160670284487856 0.19390723579092015 0.16657760634810617 0.19337725714962822 0.16703479693872184" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19337725714962822 0.16703479693872184 C 0.1932338607812663 0.16657760634810614 0.19164047272154075 0.16068780163713284 0.19165650072928542 0.1615485098513337 C 0.19164047272154075 0.16068780163713284 0.19331228941730944 0.15630278074472628 0.19318492105669222 0.15670629836831146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19318492105669222 0.15670629836831146 C 0.1933789131832339 0.1566073427977708 0.19590081082827604 0.15551883152182372 0.19551282657519264 0.15551883152182372 C 0.19590081082827604 0.15551883152182372 0.19803472422023474 0.1568052539388521 0.19784073209369304 0.15670629836831146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19784073209369304 0.15670629836831146 C 0.1979681004543103 0.15710981599189663 0.1993531244133553 0.16240921806553457 0.19936915242109995 0.1615485098513337 C 0.1993531244133553 0.16240921806553457 0.19750499963239526 0.16749198752933755 0.19764839600075715 0.16703479693872186" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19764839600075715 0.16703479693872186 C 0.19724372110499422 0.16747910896159585 0.19275670442784243 0.1732809223944409 0.19279229725160182 0.17236654121320955 C 0.19275670442784243 0.1732809223944409 0.1975903641876478 0.1784774402718554 0.19722128211564427 0.17800737111349801" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19722128211564427 0.17800737111349801 C 0.19782895378958798 0.17846456170411368 0.20447774937920957 0.18440803938211747 0.20451334220296896 0.18349365820088612 C 0.20447774937920957 0.18440803938211747 0.19615090373282826 0.18943713587888994 0.1967941682305314 0.18897994528827425" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1967941682305314 0.18897994528827425 C 0.19633672953127926 0.18941240902882586 0.19126931101574648 0.19508389135612486 0.1913049038395059 0.1941695101748935 C 0.19126931101574648 0.19508389135612486 0.19678890022091117 0.2004344369037302 0.19636705434541846 0.19995251946305045" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19636705434541846 0.19995251946305045 C 0.19679199485240959 0.2003899629164622 0.2014307476055526 0.20611622208522257 0.201466340429312 0.2052018409039912 C 0.2014307476055526 0.20611622208522257 0.1954794071295551 0.21140203136564623 0.19593994046030563 0.2109250936378266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19593994046030563 0.2109250936378266 C 0.19595844872866053 0.21138228422844227 0.19678537760042852 0.21735177661328428 0.19616203968056425 0.21641138072521468 C 0.19678537760042852 0.21735177661328428 0.20402482515018622 0.22269304959211567 0.20341999549867684 0.22220984429466176" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3182585573914811,0.13725898064642297) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16870635156326613 0.16401779130210858 C 0.16847353050831587 0.1653604535946437 0.16535381094263782 0.18297220781609022 0.16591249890386311 0.18012973881253008 C 0.16535381094263782 0.18297220781609022 0.16167622912228766 0.19962722605585526 0.1620020960285627 0.19812741934483025" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1620020960285627 0.19812741934483025 C 0.16192428956458133 0.19914293854525336 0.16107364874238575 0.21250290380620207 0.16106841846078612 0.21031364974990757 C 0.16107364874238575 0.21250290380620207 0.16214789615333935 0.22557220287623567 0.16206485940775833 0.22439846802036428" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16206485940775833 0.22439846802036428 C 0.16167160756473895 0.2228511697767117 0.15686221668104633 0.203113700668783 0.15734583729152557 0.2058308890965333 C 0.15686221668104633 0.203113700668783 0.15617104331454762 0.19062231670326307 0.15626141208200747 0.1917922068873608" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15626141208200747 0.1917922068873608 C 0.1564751068285329 0.19067681971140216 0.1594818207541026 0.17624238069137196 0.15882574904031269 0.17840756077585726 C 0.1594818207541026 0.17624238069137196 0.16457664961475088 0.1647602529650105 0.1641342726474864 0.16581004587353718" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1641342726474864 0.16581004587353718 C 0.16443327517365322 0.16551160545963686 0.16810330953780334 0.1620794063591144 0.16772230296148835 0.16222876090673344 C 0.16810330953780334 0.1620794063591144 0.1687883556134143 0.16416687716838985 0.16870635156326613 0.16401779130210858" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32391373566001425,0.13800332333299054) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.17216410021891074 0.17095724360379805 C 0.172313209950261 0.17195121247788403 0.17409765247168435 0.1849751711259556 0.17395341699511385 0.1828848700928298 C 0.17409765247168435 0.1849751711259556 0.17389005168297694 0.19713718816034753 0.1738949259377567 0.19604085600130772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1738949259377567 0.19604085600130772 C 0.17371129922713235 0.19733024725370163 0.1711555316348784 0.21424412142362648 0.17169140541026456 0.21151355103003464 C 0.1711555316348784 0.21424412142362648 0.16711219356836085 0.23024887986560788 0.16746444063312269 0.22880770072440995" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16746444063312269 0.22880770072440995 C 0.167494443870764 0.2274264648578775 0.16781529924374072 0.2097315550023263 0.16782447948481868 0.21223287032602067 C 0.16781529924374072 0.2097315550023263 0.16731509426146804 0.1976718373829154 0.16735427774018732 0.19879191684007735" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16735427774018732 0.19879191684007735 C 0.16736730502013547 0.19793397390159292 0.1676203001168115 0.18608630405324442 0.16751060509956509 0.18849660157826423 C 0.1676203001168115 0.18608630405324442 0.16876728568444252 0.16831599195330424 0.16867061794714425 0.16986834653983962" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16867061794714425 0.16986834653983962 C 0.16873552849396295 0.16956158371586968 0.1697406680316158 0.16627793407419691 0.1694495445089686 0.1661871926522004 C 0.1697406680316158 0.16627793407419691 0.17239031319473924 0.1713547478497645 0.17216410021891074 0.17095724360379805" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.1698255967385791 0.16271202691222622 C 0.16975751973230843 0.1640878909061021 0.16874846324854986 0.18225804195065465 0.16900867266333108 0.1792223948387367 C 0.16874846324854986 0.18225804195065465 0.16651095135269398 0.20079957537328355 0.16670308376120452 0.19913979225524148" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16670308376120452 0.19913979225524148 C 0.16658941669715993 0.20019251938313168 0.16513648422876753 0.21475122272547886 0.16533907899266934 0.21177251778992398 C 0.16513648422876753 0.21475122272547886 0.16418301889452566 0.2368102292895646 0.16427194659438288 0.23488425148189995" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16427194659438288 0.23488425148189995 C 0.16398167256737672 0.23287422032800523 0.16039194417322633 0.2072866916393176 0.16078865827030905 0.21076387763516327 C 0.16039194417322633 0.2072866916393176 0.1594049373593137 0.19169086468980095 0.15951137742939026 0.1931580195317519" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15951137742939026 0.1931580195317519 C 0.15958233661226162 0.1919110827354021 0.16073458292550077 0.17558525540762515 0.1603628876238466 0.17819477797555436 C 0.16073458292550077 0.17558525540762515 0.16427245716802327 0.16048116294502196 0.16397172104924046 0.16184374871660137" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16397172104924046 0.16184374871660137 C 0.16424421622843535 0.16168117680701774 0.1677294861736906 0.15996524231790002 0.16724166319957903 0.15989288580159794 C 0.1677294861736906 0.15996524231790002 0.17004092453349579 0.1629469553381119 0.1698255967385791 0.16271202691222622" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3564283482658608,0.13725898064642292) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16420339054184935 0.1640177913021086 C 0.1642853945919975 0.16386870543582735 0.16556844571994214 0.1623781154543525 0.16518743914362716 0.16222876090673344 C 0.16556844571994214 0.1623781154543525 0.1690744719837959 0.1661084862874375 0.16877546945762908 0.16581004587353718" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16877546945762908 0.16581004587353718 C 0.16921784642489357 0.16685983878206384 0.17474006477859264 0.18057274086034256 0.17408399306480274 0.17840756077585726 C 0.17474006477859264 0.18057274086034256 0.17686202476963342 0.19290759406331942 0.17664833002310798 0.1917922068873608" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17664833002310798 0.1917922068873608 C 0.17655796125564815 0.1929620970714585 0.17508028420311073 0.2085480775242836 0.17556390481358997 0.2058308890965333 C 0.17508028420311073 0.2085480775242836 0.17045163085433768 0.22594576626401686 0.1708448826973571 0.22439846802036428" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1708448826973571 0.22439846802036428 C 0.17092791944293811 0.2232247331644929 0.171846553925929 0.20812439569361307 0.17184132364432936 0.21031364974990757 C 0.171846553925929 0.20812439569361307 0.17082983961257142 0.19711190014440713 0.1709076460765528 0.19812741934483025" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1709076460765528 0.19812741934483025 C 0.17058177917027775 0.19662761263380524 0.16643855524002707 0.17728726980896994 0.16699724320125237 0.18012973881253008 C 0.16643855524002707 0.17728726980896994 0.1639705694868991 0.16267512900957348 0.16420339054184935 0.1640177913021086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35077316999732766,0.13800332333299048) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.1687467692297029 0.17095724360379802 C 0.1689729822055314 0.17055973935783156 0.17175244846229218 0.16609645123020386 0.17146132493964497 0.1661871926522004 C 0.17175244846229218 0.16609645123020386 0.17230516204828805 0.17017510936380956 0.17224025150146935 0.16986834653983962" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17224025150146935 0.16986834653983962 C 0.17233691923876762 0.171420701126375 0.1735099593662949 0.190906899103284 0.17340026434904848 0.1884966015782642 C 0.1735099593662949 0.190906899103284 0.1735696189883744 0.19964985977856178 0.17355659170842624 0.19879191684007735" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17355659170842624 0.19879191684007735 C 0.17351740822970696 0.1999119962972393 0.17307720972271692 0.21473418564971505 0.17308638996379486 0.21223287032602067 C 0.17307720972271692 0.21473418564971505 0.1734764320531323 0.23018893659094236 0.17344642881549094 0.22880770072440992" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17344642881549094 0.22880770072440992 C 0.1730941817507291 0.22736652158321197 0.16868359026296292 0.20878298063644277 0.1692194640383491 0.2115135510300346 C 0.16868359026296292 0.20878298063644277 0.16683231680023253 0.19475146474891378 0.16701594351085688 0.1960408560013077" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16701594351085688 0.1960408560013077 C 0.16701106925607712 0.19494452384226788 0.16710168793007027 0.180794569059704 0.16695745245349977 0.1828848700928298 C 0.16710168793007027 0.180794569059704 0.16889587896105315 0.16996327472971204 0.1687467692297029 0.17095724360379802" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.16433607563916033 0.16271202691222622 C 0.164551403434077 0.16247709848634054 0.16740783215227198 0.15982052928529586 0.16692000917816044 0.15989288580159794 C 0.16740783215227198 0.15982052928529586 0.17046244650769382 0.162006320626185 0.17018995132849896 0.16184374871660137" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17018995132849896 0.16184374871660137 C 0.17049068744728177 0.16320633448818078 0.174170480055547 0.18080430054348354 0.17379878475389282 0.17819477797555433 C 0.174170480055547 0.18080430054348354 0.17472125413122053 0.1944049563281017 0.17465029494834916 0.1931580195317519" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17465029494834916 0.1931580195317519 C 0.1745438548782726 0.19462517437370286 0.17297630001034764 0.21424106363100895 0.17337301410743036 0.21076387763516327 C 0.17297630001034764 0.21424106363100895 0.16959945175635044 0.23689428263579465 0.1698897257833566 0.23488425148189992" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1698897257833566 0.23488425148189992 C 0.16980079808349938 0.23295827367423527 0.16861999862116828 0.2087938128543691 0.16882259338507008 0.21177251778992398 C 0.16861999862116828 0.2087938128543691 0.1673449215524903 0.19808706512735128 0.1674585886165349 0.19913979225524148" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1674585886165349 0.19913979225524148 C 0.16726645620802436 0.1974800091371994 0.16489279029962714 0.17618674772681875 0.16515299971440836 0.1792223948387367 C 0.16489279029962714 0.17618674772681875 0.16426799863288966 0.16133616291835035 0.16433607563916033 0.16271202691222622" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.2178778082444383,-0.21061995408824444)"><path d="M 0.2456020006120999 0.23378664862188522 C 0.245122456365314 0.235580768030074 0.2389452910220962 0.2582449981683262 0.23984746965066872 0.25531608152015056 C 0.2389452910220962 0.2582449981683262 0.2329450519520436 0.2696271114436592 0.23477585706922943 0.26893364839999273 C 0.2329450519520436 0.2696271114436592 0.2150614667736401 0.2636376380441483 0.2178778082444386 0.2636376380441483 C 0.2150614667736401 0.2636376380441483 0.19914895430246188 0.2682401853563264 0.20097975941964774 0.26893364839999284 C 0.19914895430246188 0.2682401853563264 0.19500596820963584 0.252387164871975 0.1959081468382084 0.2553160815201506 C 0.19500596820963584 0.252387164871975 0.18967407162999128 0.23199252921369645 0.1901536158767772 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901536158767772 0.23378664862188522 C 0.1904631439999322 0.23264302568671918 0.19502312803662308 0.2180823603714842 0.1938679533546372 0.22006317339989281 C 0.19502312803662308 0.2180823603714842 0.20601653330142475 0.20887326934581574 0.20401571206060795 0.21001689228098178 C 0.20601653330142475 0.20887326934581574 0.22018815760841043 0.20633969817790035 0.21787780824443864 0.20633969817790035 C 0.22018815760841043 0.20633969817790035 0.2337407256690861 0.21116051521614781 0.23173990442826933 0.21001689228098178 C 0.2337407256690861 0.21116051521614781 0.24304283781622593 0.22204398642830142 0.24188766313424004 0.22006317339989281 C 0.24304283781622593 0.22204398642830142 0.2459115287352549 0.23493027155705126 0.2456020006120999 0.23378664862188522" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="お下げ左">
<g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3237366584363228,0.13811746710788242) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.16416576964393267 0.1631892598346399 C 0.16430279604074732 0.1630780901088516 0.16617386569920722 0.1621413825233496 0.16581008640570846 0.16185522312518036 C 0.16617386569920722 0.1621413825233496 0.168757874062602 0.167020501736628 0.1685311211659179 0.16662317261267048" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1685311211659179 0.16662317261267048 C 0.1686878156920809 0.16781522732023688 0.17040734173377856 0.18350404743088441 0.17041145547987413 0.18092782910346708 C 0.17040734173377856 0.18350404743088441 0.16832094794051244 0.19892195616152947 0.16848175621277103 0.19753779254167853" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16848175621277103 0.19753779254167853 C 0.16831877059772785 0.19840953865846597 0.16600827708887533 0.21022236235670536 0.16652592883225284 0.20799874594312778 C 0.16600827708887533 0.21022236235670536 0.16191526916390675 0.22557305980139966 0.16226993529224107 0.2242211895046095" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16226993529224107 0.2242211895046095 C 0.16232296081767245 0.22282197508961246 0.16293177694235875 0.20515351364597526 0.16290624159741765 0.20743061652464506 C 0.16293177694235875 0.20515351364597526 0.16254886925104406 0.19601806649689893 0.16257635943153434 0.19689595496057172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16257635943153434 0.19689595496057172 C 0.16252557459932715 0.19545482680694853 0.16209939229608142 0.17679352585659905 0.16196694144504822 0.17960241711709338 C 0.16209939229608142 0.17679352585659905 0.16434900532717306 0.16182149672776877 0.16416576964393267 0.1631892598346399" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31731694317659054,0.1370234819767626) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.16807618569056804 0.17058877310373663 C 0.16839736599668365 0.17024025262205683 0.17227307839781206 0.1663765274042289 0.17193034936395526 0.16640652732357888 C 0.17227307839781206 0.1663765274042289 0.17221048282459084 0.17054729463386656 0.17218893409684963 0.17022877407153675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17218893409684963 0.17022877407153675 C 0.17213082443192054 0.17102416059512035 0.17111615109610512 0.18211217066579533 0.17149161811770072 0.1797734123545401 C 0.17111615109610512 0.18211217066579533 0.1673659724810357 0.19983724559427102 0.16768332983770226 0.1982938738065994" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16768332983770226 0.1982938738065994 C 0.16733669711247134 0.19938991815263524 0.1625559800610388 0.21382931668400706 0.16352373713493126 0.21144640595902922 C 0.1625559800610388 0.21382931668400706 0.15544912060233107 0.22817566888527546 0.15607024495099261 0.22688880250633345" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15607024495099261 0.22688880250633345 C 0.1563775173911238 0.22554869653551182 0.16024500807633343 0.20816490030685447 0.15975751423256673 0.21080753085647405 C 0.16024500807633343 0.20816490030685447 0.1621003924798285 0.19387471133210055 0.16192017107619297 0.1951772359108985" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16192017107619297 0.1951772359108985 C 0.1621420833627651 0.1938284266054349 0.16509611973292304 0.17694248567807183 0.16458311851505844 0.17899152424533532 C 0.16509611973292304 0.17694248567807183 0.1683672746218605 0.16988854384193675 0.16807618569056804 0.17058877310373663" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32110341688472954,0.13544916735502502) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.16386599457844414 0.16138466070957277 C 0.16414768065373703 0.16125921350123318 0.16776936450376045 0.1599571012778171 0.1672462274819589 0.15987929420949754 C 0.16776936450376045 0.1599571012778171 0.17038508978657177 0.16252159980606648 0.1701436388400631 0.16231834552940733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1701436388400631 0.16231834552940733 C 0.17011600936723448 0.16377801121935365 0.16944418686103804 0.18293033716438067 0.16981208516611962 0.17983433380876304 C 0.16944418686103804 0.18293033716438067 0.1653885903468311 0.20110672346249017 0.16572885917908406 0.19947038579681886" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16572885917908406 0.19947038579681886 C 0.16537104655832627 0.2006771338277236 0.1606123249168335 0.21662382230853885 0.16143510772999045 0.21395136216767557 C 0.1606123249168335 0.21662382230853885 0.15539049522880155 0.23300561959713684 0.15585546542120068 0.2315399074871783" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15585546542120068 0.2315399074871783 C 0.15602325409708462 0.22994407167900088 0.1581393767245114 0.20961205053353885 0.15786892953180795 0.21238987778904933 C 0.1581393767245114 0.20961205053353885 0.15920349025046138 0.19702398897371934 0.1591008317336419 0.19820598042105242" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1591008317336419 0.19820598042105242 C 0.15917806062103765 0.19652671672198962 0.16042467528612447 0.17498637272300901 0.16002757838239096 0.17805481603229897 C 0.16042467528612447 0.17498637272300901 0.1641858625947819 0.15999548109934558 0.16386599457844414 0.16138466070957277" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.020184612282548316,-0.020184612282548316)"><path d="M 0.024406860262124797 0.018812720751604325 C 0.02462431799215053 0.019481986827336033 0.022224793314533378 0.02418990012175727 0.022794105042857154 0.023776270939437814 C 0.022224793314533378 0.02418990012175727 0.017005807793915705 0.023362641757118358 0.01757511952223948 0.023776270939437814 C 0.017005807793915705 0.023362641757118358 0.01617982203299757 0.018143454675872618 0.015962364302971835 0.018812720751604325 C 0.01617982203299757 0.018143454675872618 0.020888320279144397 0.015745078030657306 0.020184612282548316 0.015745078030657306 C 0.020888320279144397 0.015745078030657306 0.02462431799215053 0.019481986827336033 0.024406860262124797 0.018812720751604325 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.02639292779899103,-0.02639292779899103)"><path d="M 0.0292679453377158 0.025458777973644302 C 0.0294160168841478 0.025914495334422145 0.02778213001484928 0.029120212610557656 0.02816978635617501 0.02883856379233355 C 0.02778213001484928 0.029120212610557656 0.024228412900481326 0.028556914974109445 0.024616069241807054 0.02883856379233355 C 0.024228412900481326 0.028556914974109445 0.023665981806698252 0.02500306061286646 0.023517910260266256 0.025458777973644302 C 0.023665981806698252 0.02500306061286646 0.026872097388778493 0.023369955462999453 0.02639292779899103 0.023369955462999453 C 0.026872097388778493 0.023369955462999453 0.0294160168841478 0.025914495334422145 0.0292679453377158 0.025458777973644302 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3509502472210191,0.13811746710788234) rotate(0) scale(1,1) translate(-0.16645487105255777,-0.16447013861067913)"><path d="M 0.1687439724611828 0.16318925983463986 C 0.16892720814442316 0.16455702294151098 0.1710752515111004 0.18241130837758773 0.1709428006600672 0.1796024171170934 C 0.1710752515111004 0.18241130837758773 0.1702825978413739 0.1983370831141949 0.17033338267358109 0.19689595496057172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17033338267358109 0.19689595496057172 C 0.1703058924930908 0.1977738434242445 0.17002903585263887 0.20970771940331492 0.17000350050769777 0.20743061652464512 C 0.17002903585263887 0.20970771940331492 0.1706928323383057 0.22562040391960658 0.17063980681287433 0.22422118950460954" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17063980681287433 0.22422118950460954 C 0.17028514068454004 0.22286931920781938 0.16586616152948516 0.2057751295295502 0.16638381327286267 0.20799874594312778 C 0.16586616152948516 0.2057751295295502 0.16426500027730118 0.1966660464248911 0.16442798589234436 0.19753779254167855" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16442798589234436 0.19753779254167855 C 0.16426717762008577 0.1961536289218276 0.1624941728791457 0.17835161077604986 0.16249828662524127 0.1809278291034672 C 0.1624941728791457 0.17835161077604986 0.16453531546536057 0.16543111790510412 0.16437862093919756 0.1666231726126705" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16437862093919756 0.1666231726126705 C 0.16460537383588167 0.166225843488713 0.16746343499290572 0.16156906372701116 0.16709965569940696 0.1618552231251804 C 0.16746343499290572 0.16156906372701116 0.16888099885799746 0.16330042956042815 0.1687439724611828 0.16318925983463986" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35736996248075137,0.13702348197676253) rotate(0) scale(1,1) translate(-0.17045543472430674,-0.16823329692941572)"><path d="M 0.1728346837580456 0.17058877310373666 C 0.17312577268933804 0.17128900236553654 0.1768407521514197 0.18104056281259878 0.17632775093355513 0.1789915242453353 C 0.1768407521514197 0.18104056281259878 0.17921261065899272 0.1965260452163621 0.1789906983724206 0.1951772359108985" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1789906983724206 0.1951772359108985 C 0.17917091977605612 0.19647976048969645 0.18164084905981356 0.21345016140609369 0.18115335521604686 0.2108075308564741 C 0.18164084905981356 0.21345016140609369 0.18514789693775216 0.22822890847715505 0.18484062449762098 0.22688880250633345" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18484062449762098 0.22688880250633345 C 0.18421950014895944 0.22560193612739143 0.17641937523978982 0.20906349523405138 0.17738713231368228 0.21144640595902922 C 0.17641937523978982 0.20906349523405138 0.1728809068856804 0.19719782946056355 0.1732275396109113 0.19829387380659938" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1732275396109113 0.19829387380659938 C 0.17291018225424476 0.19675050201892777 0.16904378430931716 0.1774346540432849 0.1694192513309128 0.1797734123545401 C 0.16904378430931716 0.1774346540432849 0.1686638256868348 0.16943338754795312 0.16872193535176389 0.17022877407153672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16872193535176389 0.17022877407153672 C 0.1687434840795051 0.1699102535092069 0.1693232491185151 0.1664365272429289 0.16898052008465828 0.1664065273235789 C 0.1693232491185151 0.1664365272429289 0.1731558640641612 0.17093729358541648 0.1728346837580456 0.17058877310373666" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3535834887726123,0.13544916735502496) rotate(0) scale(1,1) translate(-0.16708083618886968,-0.161146472941817)"><path d="M 0.17029567779929528 0.16138466070957277 C 0.17061554581563304 0.16277384031979997 0.17453119089908203 0.1811232593415889 0.17413409399534852 0.17805481603229895 C 0.17453119089908203 0.1811232593415889 0.17513806953149333 0.1998852441201152 0.17506084064409758 0.19820598042105242" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17506084064409758 0.19820598042105242 C 0.17516349916091706 0.1993879718683855 0.1765631900386349 0.21516770504455981 0.17629274284593147 0.21238987778904933 C 0.1765631900386349 0.21516770504455981 0.17847399563242275 0.2331357432953557 0.17830620695653882 0.2315399074871783" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17830620695653882 0.2315399074871783 C 0.17784123676413965 0.23007419537721974 0.17190378183459207 0.21127890202681227 0.17272656464774902 0.21395136216767555 C 0.17190378183459207 0.21127890202681227 0.1680750005778976 0.1982636377659141 0.16843281319865538 0.19947038579681883" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16843281319865538 0.19947038579681883 C 0.16809254436640242 0.19783404813114752 0.16398168890653825 0.1767383304531454 0.16434958721161982 0.17983433380876304 C 0.16398168890653825 0.1767383304531454 0.16399040406484774 0.160858679839461 0.16401803353767636 0.16231834552940733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16401803353767636 0.16231834552940733 C 0.16425948448418504 0.16211509125274817 0.1674385819175822 0.15980148714117795 0.16691544489578064 0.1598792942094975 C 0.1674385819175822 0.15980148714117795 0.17057736387458816 0.16151010791791237 0.17029567779929528 0.16138466070957277" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,182 @@
id: BackHair1
original_key: 後髪1
resource: 胴体
morph_x: 1
morph_y: 8
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
- x: 0
y: 3
file: x0y3.svg
- x: 0
y: 4
file: x0y4.svg
- x: 0
y: 5
file: x0y5.svg
- x: 0
y: 6
file: x0y6.svg
- x: 0
y: 7
file: x0y7.svg
fields:
- name: 髪基
- name: お下げ
joints:
- position: [
0.0275187318942521,
0.017102829910013467
]
- position: [
0.19083898557750778,
0.15734206532767245
]
- position: [
0.20018666757287754,
0.15734206532767245
]
- position: [
0.1703391963183732,
0.16170951931532562
]
- position: [
0.17278168464839316,
0.1698064594849867
]
- position: [
0.17388453110939092,
0.16170951931532562
]
- position: [
0.1763676310576798,
0.1698064594849867
]
- position: [
0.19074550875755406,
0.1566145604668384
]
- position: [
0.20028014439283123,
0.1566145604668384
]
- position: [
0.17032489459331163,
0.16093829994956305
]
- position: [
0.17281272183592566,
0.16912391084504008
]
- position: [
0.17396138038179998,
0.16093829994956305
]
- position: [
0.17661423747377847,
0.16912391084504008
]
- position: [
0.19162018693446026,
0.1557889914369246
]
- position: [
0.1994054662159251,
0.1557889914369246
]
- position: [
0.17043188209928087,
0.1644159844888365
]
- position: [
0.17191675091978087,
0.17205722086933817
]
- position: [
0.17702560808169224,
0.1644159844888365
]
- position: [
0.17819552995556803,
0.17205722086933817
]
- position: [
0.007501695109867956,
0.029968914837671178
]
- position: [
0.04753576867863624,
0.029968914837671178
]
- position: [
0.1684988523822399,
0.1605457289686459
]
- position: [
0.1713192910203347,
0.17150268208528838
]
- position: [
0.17534461603285442,
0.1605457289686459
]
- position: [
0.17165014375958507,
0.1715026820852884
]
- position: [
0.16855153801109019,
0.1605363902535818
]
- position: [
0.17135218578497635,
0.1715026820852884
]
- position: [
0.17529193040400418,
0.1605363902535818
]
- position: [
0.17161724899494338,
0.1715026820852884
]
- position: [
0.16836789275482927,
0.15883431798168077
]
- position: [
0.17098695098170855,
0.17193226703642722
]
- position: [
0.1754755756602651,
0.15883431798168077
]
- position: [
0.17198248379821113,
0.17193226703642722
]
- position: [
0.16777609858339262,
0.15976546273597753
]
- position: [
0.170454862871674,
0.17203853778868491
]
- position: [
0.17606736983170176,
0.15976546273597753
]
- position: [
0.17251457190824565,
0.17203853778868494
]

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252104)"><path d="M 0.03193564947043487 0.030518859602013837 C 0.03156757300575297 0.03126889152895428 0.022733737853387437 0.029768827675073394 0.023101814318069337 0.030518859602013837 C 0.022733737853387437 0.029768827675073394 0.02825488482361589 0.02151847647872851 0.027518731894252097 0.02151847647872851 C 0.02825488482361589 0.02151847647872851 0.03156757300575297 0.03126889152895428 0.03193564947043487 0.030518859602013837 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="お下げ">
<g transform="translate(0.3373434528286707,0.06806009361139365) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15529045777044517)"><path d="M 0.19551282657519264 0.25814272740180166 C 0.19534603190350763 0.25619438726620086 0.19319358637842954 0.23029949151492482 0.19351129051497243 0.23476264577459202 C 0.19319358637842954 0.23029949151492482 0.19154946747182008 0.202070062161729 0.19170037693667796 0.2045848762857954" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19170037693667796 0.2045848762857954 C 0.19163762845397958 0.20289264116759131 0.1909624456468312 0.18007592784100085 0.1909473951442972 0.1842780548673465 C 0.1909624456468312 0.18007592784100085 0.19195878195231855 0.15164946006150598 0.19188098296708614 0.15415935196964756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19188098296708614 0.15415935196964756 C 0.19218363660109503 0.15393269090612952 0.1961181338432104 0.1514394192074312 0.19551282657519264 0.1514394192074312 C 0.1961181338432104 0.1514394192074312 0.199447323817308 0.1543860130331656 0.19914467018329912 0.15415935196964756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19914467018329912 0.15415935196964756 C 0.19922246916853154 0.15666924387778913 0.20009330850862211 0.18848018189369214 0.20007825800608808 0.1842780548673465 C 0.20009330850862211 0.18848018189369214 0.199262527731009 0.20627711140399946 0.19932527621370738 0.2045848762857954" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19932527621370738 0.2045848762857954 C 0.1991743667488495 0.20709969040986176 0.19719665849886991 0.23922580003425922 0.1975143626354128 0.23476264577459202 C 0.19719665849886991 0.23922580003425922 0.19534603190350763 0.26009106753740246 0.19551282657519264 0.25814272740180166" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3326696118309858,0.07011170116862092) rotate(0) scale(1,1) translate(-0.17214313748755586,-0.16165585602103322)"><path d="M 0.16860932132744558 0.16286507780244222 C 0.1690227693300489 0.16237213246888835 0.17407817548405316 0.15663687985220115 0.17357069735868547 0.15694973379979577 C 0.17407817548405316 0.15663687985220115 0.17479308895462237 0.1592909218172659 0.174699058831858 0.15911083043130667" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174699058831858 0.15911083043130667 C 0.17471791275799778 0.16133246092278059 0.1749404727327511 0.1899533202422622 0.17492530594553532 0.18577039632899386 C 0.1749404727327511 0.1899533202422622 0.17487737313952315 0.21126721081232083 0.17488106027844716 0.20930591739052645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17488106027844716 0.20930591739052645 C 0.17474805935286838 0.21139853443370188 0.1731242652430048 0.23843007095130278 0.17328504917150178 0.23441732190863163 C 0.1731242652430048 0.23843007095130278 0.1729238701335652 0.2593790379020759 0.1729516531364834 0.2574589059025802" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1729516531364834 0.2574589059025802 C 0.17266597487634971 0.2554910444580626 0.16921363603209616 0.22983949033262643 0.16952351401487922 0.23384456856836888 C 0.16921363603209616 0.22983949033262643 0.16920891762043733 0.20736075028244597 0.16923311734308671 0.2093979670736708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16923311734308671 0.2093979670736708 C 0.1690832371940182 0.20744023065572548 0.16738257255296085 0.18202738928572432 0.16743455555426429 0.1859051300583267 C 0.16738257255296085 0.18202738928572432 0.1687072184752107 0.1609450734477852 0.16860932132744558 0.16286507780244222" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33086567066180317,0.07016536446291333) rotate(0) scale(1,1) translate(-0.17471347965485204,-0.16839727901127924)"><path d="M 0.17143308199295756 0.17334006114675074 C 0.17177726913436223 0.17268521369121465 0.17599683215638096 0.16500607928166816 0.1755633276898136 0.16548189168031768 C 0.17599683215638096 0.16500607928166816 0.1767244529169285 0.16780934741984285 0.17663513559176583 0.1676303123629563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17663513559176583 0.1676303123629563 C 0.17656472390798622 0.16911246714768882 0.17564283291197477 0.18814177751947928 0.1757901953864104 0.18541616977974656 C 0.17564283291197477 0.18814177751947928 0.17478983510788196 0.20158105819474914 0.174866785898538 0.20033760523974894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174866785898538 0.20033760523974894 C 0.17470251583043672 0.20303910012880994 0.1726764409095374 0.23738971329879183 0.1728955450813227 0.23275554390848094 C 0.1726764409095374 0.23738971329879183 0.17218270173343034 0.2578803124247294 0.17223753583711437 0.2559476379234795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17223753583711437 0.2559476379234795 C 0.1719745716322893 0.2539647747683947 0.16888450049155349 0.22751911067215033 0.16908196537921347 0.23215328006246122 C 0.16888450049155349 0.22751911067215033 0.16993345650235966 0.19768629900452292 0.16986795718519457 0.20033760523974894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16986795718519457 0.20033760523974894 C 0.16988831977942448 0.19899836677799426 0.17024273538326692 0.18201694835760962 0.17011230831595334 0.1842667436986928 C 0.17024273538326692 0.18201694835760962 0.17154314646604124 0.17242950426742223 0.17143308199295756 0.17334006114675074" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32893387565534427,0.0715745449366208) rotate(0) scale(1,1) translate(-0.17582728218728638,-0.17126228311857125)"><path d="M 0.17301102974025206 0.17665820397323162 C 0.17328479787779366 0.17611272362696417 0.17653187463660383 0.17027483830774506 0.1762962473907512 0.1701124398180222 C 0.17653187463660383 0.17027483830774506 0.17580041579879485 0.17931486468589608 0.1758385566904838 0.17860698584990578" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1758385566904838 0.17860698584990578 C 0.1757540973526309 0.1795550293055196 0.174684564183563 0.19190684846287587 0.17482504463624896 0.18998350731727146 C 0.174684564183563 0.19190684846287587 0.17409677014341932 0.20266237728714928 0.17415279125825237 0.20168707959715867" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17415279125825237 0.20168707959715867 C 0.17395544904535878 0.20383526294478282 0.17153210183866274 0.23127353498959025 0.17178468470352937 0.2274652797686486 C 0.17153210183866274 0.23127353498959025 0.17106655622788003 0.24904621412177583 0.17112179687985304 0.24738614224845834" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17112179687985304 0.24738614224845834 C 0.17089843250539577 0.2457542470768323 0.16832076876852686 0.22398276090658228 0.16844142438636592 0.22780340018894582 C 0.16832076876852686 0.22398276090658228 0.16977663822240266 0.19934972674935827 0.16967392946578444 0.20153847086009577" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16967392946578444 0.20153847086009577 C 0.16974766247041426 0.20022820165263433 0.17083681721088123 0.18374188479665324 0.17055872552134227 0.18581524037055858 C 0.17083681721088123 0.18374188479665324 0.1732153884251612 0.17589511760678772 0.17301102974025206 0.17665820397323162" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3420172938263556,0.07011170116862092) rotate(0) scale(1,1) translate(-0.1720805899402084,-0.16165585602103322)"><path d="M 0.17561440610031862 0.16286507780244222 C 0.1757123032480837 0.16478508215709925 0.17673718887219642 0.1897828708309291 0.17678917187349985 0.1859051300583267 C 0.17673718887219642 0.1897828708309291 0.17484072993560892 0.21135570349161614 0.17499061008467745 0.2093979670736708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17499061008467745 0.2093979670736708 C 0.1749664103620281 0.21143518386489565 0.17439033543010193 0.23784964680411133 0.174700213412885 0.23384456856836888 C 0.17439033543010193 0.23784964680411133 0.17098639603114713 0.2594267673470978 0.1712720742912808 0.2574589059025802" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1712720742912808 0.2574589059025802 C 0.1712442912883626 0.2555387739030845 0.17077789432776544 0.23040457286596047 0.1709386782562624 0.23441732190863163 C 0.17077789432776544 0.23040457286596047 0.16920966622373823 0.20721330034735103 0.169342667149317 0.20930591739052645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.169342667149317 0.20930591739052645 C 0.169338980010393 0.20734462396873207 0.16931358826944465 0.18158747241572554 0.16929842148222887 0.18577039632899386 C 0.16931358826944465 0.18158747241572554 0.169543522522046 0.15688919993983275 0.1695246685959062 0.15911083043130667" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1695246685959062 0.15911083043130667 C 0.16961869871867058 0.15893073904534744 0.1711605081944464 0.15726258774739038 0.1706530300690787 0.15694973379979577 C 0.1711605081944464 0.15726258774739038 0.17602785410292193 0.1633580231359961 0.17561440610031862 0.16286507780244222" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3438212349955381,0.07016536446291333) rotate(0) scale(1,1) translate(-0.17443583605122104,-0.16839727901127924)"><path d="M 0.17771623371311548 0.17334006114675074 C 0.17782629818619916 0.17425061802607925 0.17916743445743322 0.186516539039776 0.17903700739011963 0.1842667436986928 C 0.17916743445743322 0.186516539039776 0.17930172111510834 0.20167684370150363 0.17928135852087843 0.20033760523974894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17928135852087843 0.20033760523974894 C 0.17934685783804352 0.20298891147497497 0.17986988543919957 0.2367874494527721 0.18006735032685955 0.23215328006246122 C 0.17986988543919957 0.2367874494527721 0.17664881566413349 0.25793050107856436 0.17691177986895856 0.2559476379234795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17691177986895856 0.2559476379234795 C 0.17685694576527455 0.2540149634222296 0.17603466645296498 0.22812137451817005 0.17625377062475028 0.23275554390848094 C 0.17603466645296498 0.22812137451817005 0.17411825973943373 0.19763611035068795 0.174282529807535 0.20033760523974894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174282529807535 0.20033760523974894 C 0.17420557901687897 0.19909415228474875 0.17321175784522697 0.18269056204001385 0.1733591203196626 0.18541616977974656 C 0.17321175784522697 0.18269056204001385 0.1724437684305276 0.1661481575782238 0.17251418011430722 0.1676303123629563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17251418011430722 0.1676303123629563 C 0.1726034974394699 0.16745127730606976 0.17401949248282678 0.1659577040789672 0.1735859880162594 0.16548189168031768 C 0.17401949248282678 0.1659577040789672 0.17806042085452015 0.17399490860228684 0.17771623371311548 0.17334006114675074" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34575303000199686,0.0715745449366208) rotate(0) scale(1,1) translate(-0.17541252126519447,-0.17126228311857125)"><path d="M 0.17822877371222873 0.17665820397323162 C 0.17843313239713787 0.17742129033967552 0.18095916962067754 0.18788859594446392 0.18068107793113858 0.18581524037055858 C 0.18095916962067754 0.18788859594446392 0.1816396069913262 0.2028487400675572 0.18156587398669638 0.20153847086009577" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18156587398669638 0.20153847086009577 C 0.1816685827433146 0.20372721497083326 0.1826777234482758 0.23162403947130936 0.18279837906611485 0.22780340018894582 C 0.1826777234482758 0.23162403947130936 0.17989464219817047 0.24901803742008438 0.18011800657262772 0.24738614224845834" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18011800657262772 0.24738614224845834 C 0.1800627659206547 0.24572607037514085 0.1792025358840848 0.22365702454770697 0.1794551187489514 0.2274652797686486 C 0.1792025358840848 0.22365702454770697 0.17688966998133487 0.19953889624953453 0.17708701219422845 0.20168707959715867" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17708701219422845 0.20168707959715867 C 0.1770309910793954 0.20071178190716807 0.17627427836354592 0.18806016617166704 0.17641475881623186 0.18998350731727146 C 0.17627427836354592 0.18806016617166704 0.1753167874241442 0.17765894239429197 0.1754012467619971 0.17860698584990578" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1754012467619971 0.17860698584990578 C 0.17536310587030812 0.17789910701391548 0.17517918330758228 0.16995004132829936 0.17494355606172965 0.1701124398180222 C 0.17517918330758228 0.16995004132829936 0.17850254184977032 0.17720368431949907 0.17822877371222873 0.17665820397323162" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252104)"><path d="M 0.03193564947043487 0.030518859602013837 C 0.03156757300575297 0.03126889152895428 0.022733737853387437 0.029768827675073394 0.023101814318069337 0.030518859602013837 C 0.022733737853387437 0.029768827675073394 0.02825488482361589 0.02151847647872851 0.027518731894252097 0.02151847647872851 C 0.02825488482361589 0.02151847647872851 0.03156757300575297 0.03126889152895428 0.03193564947043487 0.030518859602013837 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="お下げ">
<g transform="translate(0.3373434528286707,0.06806009361139365) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15529045777044517)"><path d="M 0.19551282657519264 0.25814272740180166 C 0.19534603190350763 0.2552744812661542 0.19319358637842954 0.21926061951436507 0.19351129051497243 0.22372377377403227 C 0.19319358637842954 0.21926061951436507 0.19154946747182008 0.20298996816177564 0.19170037693667796 0.2045848762857954" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19170037693667796 0.2045848762857954 C 0.19163762845397958 0.20289264116759131 0.1909624456468312 0.18007592784100085 0.1909473951442972 0.1842780548673465 C 0.1909624456468312 0.18007592784100085 0.19195878195231855 0.15164946006150598 0.19188098296708614 0.15415935196964756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19188098296708614 0.15415935196964756 C 0.19218363660109503 0.15393269090612952 0.1961181338432104 0.1514394192074312 0.19551282657519264 0.1514394192074312 C 0.1961181338432104 0.1514394192074312 0.199447323817308 0.1543860130331656 0.19914467018329912 0.15415935196964756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19914467018329912 0.15415935196964756 C 0.19922246916853154 0.15666924387778913 0.20009330850862211 0.18848018189369214 0.20007825800608808 0.1842780548673465 C 0.20009330850862211 0.18848018189369214 0.199262527731009 0.20627711140399946 0.19932527621370738 0.2045848762857954" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19932527621370738 0.2045848762857954 C 0.1991743667488495 0.20617978440981513 0.19719665849886991 0.22818692803369947 0.1975143626354128 0.22372377377403227 C 0.19719665849886991 0.22818692803369947 0.19534603190350763 0.2610109735374491 0.19551282657519264 0.25814272740180166" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3326696118309858,0.07011170116862092) rotate(0) scale(1,1) translate(-0.17214313748755586,-0.16165585602103322)"><path d="M 0.16860932132744558 0.16286507780244222 C 0.1690227693300489 0.16237213246888835 0.17407817548405316 0.15663687985220115 0.17357069735868547 0.15694973379979577 C 0.17407817548405316 0.15663687985220115 0.17479308895462237 0.1592909218172659 0.174699058831858 0.15911083043130667" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174699058831858 0.15911083043130667 C 0.17471791275799778 0.16133246092278059 0.1749404727327511 0.1899533202422622 0.17492530594553532 0.18577039632899386 C 0.1749404727327511 0.1899533202422622 0.17487737313952315 0.21126721081232083 0.17488106027844716 0.20930591739052645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17488106027844716 0.20930591739052645 C 0.17474805935286838 0.21139853443370188 0.1728949900553319 0.23837720279038055 0.17328504917150178 0.23441732190863163 C 0.1728949900553319 0.23837720279038055 0.16994329269381744 0.25869175181008697 0.17020035088440855 0.25682448797151347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17020035088440855 0.25682448797151347 C 0.17014394781194778 0.25490949468791807 0.16944291121976907 0.22989235849354867 0.16952351401487922 0.23384456856836888 C 0.16944291121976907 0.22989235849354867 0.16920891762043733 0.20736075028244597 0.16923311734308671 0.2093979670736708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16923311734308671 0.2093979670736708 C 0.1690832371940182 0.20744023065572548 0.16738257255296085 0.18202738928572432 0.16743455555426429 0.1859051300583267 C 0.16738257255296085 0.18202738928572432 0.1687072184752107 0.1609450734477852 0.16860932132744558 0.16286507780244222" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33086567066180317,0.07016536446291333) rotate(0) scale(1,1) translate(-0.17471347965485204,-0.16839727901127924)"><path d="M 0.17143308199295756 0.17334006114675074 C 0.17177726913436223 0.17268521369121465 0.17599683215638096 0.16500607928166816 0.1755633276898136 0.16548189168031768 C 0.17599683215638096 0.16500607928166816 0.1767244529169285 0.16780934741984285 0.17663513559176583 0.1676303123629563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17663513559176583 0.1676303123629563 C 0.17656472390798622 0.16911246714768882 0.17564283291197477 0.18814177751947928 0.1757901953864104 0.18541616977974656 C 0.17564283291197477 0.18814177751947928 0.17478983510788196 0.20158105819474914 0.174866785898538 0.20033760523974894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174866785898538 0.20033760523974894 C 0.17470251583043672 0.20303910012880994 0.17229673357047615 0.23745520611078375 0.1728955450813227 0.23275554390848094 C 0.17229673357047615 0.23745520611078375 0.16724650632563395 0.25873171898062447 0.16768104776837925 0.25673355166738265" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16768104776837925 0.25673355166738265 C 0.16779779090261543 0.25468519570030584 0.16926420783061474 0.2274536178601584 0.16908196537921347 0.23215328006246122 C 0.16926420783061474 0.2274536178601584 0.16993345650235966 0.19768629900452292 0.16986795718519457 0.20033760523974894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16986795718519457 0.20033760523974894 C 0.16988831977942448 0.19899836677799426 0.17024273538326692 0.18201694835760962 0.17011230831595334 0.1842667436986928 C 0.17024273538326692 0.18201694835760962 0.17154314646604124 0.17242950426742223 0.17143308199295756 0.17334006114675074" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32893387565534427,0.0715745449366208) rotate(0) scale(1,1) translate(-0.17582728218728638,-0.17126228311857125)"><path d="M 0.17301102974025206 0.17665820397323162 C 0.17328479787779366 0.17611272362696417 0.17653187463660383 0.17027483830774506 0.1762962473907512 0.1701124398180222 C 0.17653187463660383 0.17027483830774506 0.17580041579879485 0.17931486468589608 0.1758385566904838 0.17860698584990578" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1758385566904838 0.17860698584990578 C 0.1757540973526309 0.1795550293055196 0.174684564183563 0.19190684846287587 0.17482504463624896 0.18998350731727146 C 0.174684564183563 0.19190684846287587 0.17409677014341932 0.20266237728714928 0.17415279125825237 0.20168707959715867" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17415279125825237 0.20168707959715867 C 0.17395544904535878 0.20383526294478282 0.17117132949626582 0.23098652030580769 0.17178468470352937 0.2274652797686486 C 0.17117132949626582 0.23098652030580769 0.16637651577671989 0.2453150232326024 0.16679252877108985 0.2439419660430675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16679252877108985 0.2439419660430675 C 0.1669666207690572 0.24212127210692402 0.16912174947125577 0.2185600142107649 0.1688816327466979 0.22209363880934588 C 0.16912174947125577 0.2185600142107649 0.16973995419237498 0.19982554019765825 0.16967392946578444 0.20153847086009577" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16967392946578444 0.20153847086009577 C 0.16974766247041426 0.20022820165263433 0.17083681721088123 0.18374188479665324 0.17055872552134227 0.18581524037055858 C 0.17083681721088123 0.18374188479665324 0.1732153884251612 0.17589511760678772 0.17301102974025206 0.17665820397323162" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3420172938263556,0.07011170116862092) rotate(0) scale(1,1) translate(-0.1720805899402084,-0.16165585602103322)"><path d="M 0.17561440610031862 0.16286507780244222 C 0.1757123032480837 0.16478508215709925 0.17673718887219642 0.1897828708309291 0.17678917187349985 0.1859051300583267 C 0.17673718887219642 0.1897828708309291 0.17484072993560892 0.21135570349161614 0.17499061008467745 0.2093979670736708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17499061008467745 0.2093979670736708 C 0.1749664103620281 0.21143518386489565 0.17461961061777484 0.2377967786431891 0.174700213412885 0.23384456856836888 C 0.17461961061777484 0.2377967786431891 0.17396697347089488 0.25873948125510887 0.17402337654335565 0.25682448797151347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17402337654335565 0.25682448797151347 C 0.17376631835276454 0.25495722413294 0.17054861914009253 0.2304574410268827 0.1709386782562624 0.23441732190863163 C 0.17054861914009253 0.2304574410268827 0.16920966622373823 0.20721330034735103 0.169342667149317 0.20930591739052645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.169342667149317 0.20930591739052645 C 0.169338980010393 0.20734462396873207 0.16931358826944465 0.18158747241572554 0.16929842148222887 0.18577039632899386 C 0.16931358826944465 0.18158747241572554 0.169543522522046 0.15688919993983275 0.1695246685959062 0.15911083043130667" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1695246685959062 0.15911083043130667 C 0.16961869871867058 0.15893073904534744 0.1711605081944464 0.15726258774739038 0.1706530300690787 0.15694973379979577 C 0.1711605081944464 0.15726258774739038 0.17602785410292193 0.1633580231359961 0.17561440610031862 0.16286507780244222" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3438212349955381,0.07016536446291333) rotate(0) scale(1,1) translate(-0.17443583605122104,-0.16839727901127924)"><path d="M 0.17771623371311548 0.17334006114675074 C 0.17782629818619916 0.17425061802607925 0.17916743445743322 0.186516539039776 0.17903700739011963 0.1842667436986928 C 0.17916743445743322 0.186516539039776 0.17930172111510834 0.20167684370150363 0.17928135852087843 0.20033760523974894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17928135852087843 0.20033760523974894 C 0.17934685783804352 0.20298891147497497 0.18024959277826083 0.23685294226476403 0.18006735032685955 0.23215328006246122 C 0.18024959277826083 0.23685294226476403 0.1815850110719299 0.25878190763445946 0.18146826793769372 0.25673355166738265" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18146826793769372 0.25673355166738265 C 0.18103372649494842 0.25473538435414084 0.17565495911390372 0.22805588170617813 0.17625377062475028 0.23275554390848094 C 0.17565495911390372 0.22805588170617813 0.17411825973943373 0.19763611035068795 0.174282529807535 0.20033760523974894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174282529807535 0.20033760523974894 C 0.17420557901687897 0.19909415228474875 0.17321175784522697 0.18269056204001385 0.1733591203196626 0.18541616977974656 C 0.17321175784522697 0.18269056204001385 0.1724437684305276 0.1661481575782238 0.17251418011430722 0.1676303123629563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17251418011430722 0.1676303123629563 C 0.1726034974394699 0.16745127730606976 0.17401949248282678 0.1659577040789672 0.1735859880162594 0.16548189168031768 C 0.17401949248282678 0.1659577040789672 0.17806042085452015 0.17399490860228684 0.17771623371311548 0.17334006114675074" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34575303000199686,0.0715745449366208) rotate(0) scale(1,1) translate(-0.17541252126519447,-0.17126228311857125)"><path d="M 0.17822877371222873 0.17665820397323162 C 0.17843313239713787 0.17742129033967552 0.18095916962067754 0.18788859594446392 0.18068107793113858 0.18581524037055858 C 0.18095916962067754 0.18788859594446392 0.1816396069913262 0.2028487400675572 0.18156587398669638 0.20153847086009577" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18156587398669638 0.20153847086009577 C 0.18163189871328692 0.2032514015225333 0.18259828743034076 0.22562726340792685 0.1823581707057829 0.22209363880934588 C 0.18259828743034076 0.22562726340792685 0.18462136667935825 0.24576265997921098 0.1844472746813909 0.2439419660430675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1844472746813909 0.2439419660430675 C 0.18403126168702094 0.2425689088535326 0.17884176354168785 0.22394403923148953 0.1794551187489514 0.2274652797686486 C 0.17884176354168785 0.22394403923148953 0.17688966998133487 0.19953889624953453 0.17708701219422845 0.20168707959715867" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17708701219422845 0.20168707959715867 C 0.1770309910793954 0.20071178190716807 0.17627427836354592 0.18806016617166704 0.17641475881623186 0.18998350731727146 C 0.17627427836354592 0.18806016617166704 0.1753167874241442 0.17765894239429197 0.1754012467619971 0.17860698584990578" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1754012467619971 0.17860698584990578 C 0.17536310587030812 0.17789910701391548 0.17517918330758228 0.16995004132829936 0.17494355606172965 0.1701124398180222 C 0.17517918330758228 0.16995004132829936 0.17850254184977032 0.17720368431949907 0.17822877371222873 0.17665820397323162" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252104)"><path d="M 0.03193564947043487 0.030518859602013837 C 0.03156757300575297 0.03126889152895428 0.022733737853387437 0.029768827675073394 0.023101814318069337 0.030518859602013837 C 0.022733737853387437 0.029768827675073394 0.02825488482361589 0.02151847647872851 0.027518731894252097 0.02151847647872851 C 0.02825488482361589 0.02151847647872851 0.03156757300575297 0.03126889152895428 0.03193564947043487 0.030518859602013837 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="お下げ">
<g transform="translate(0.3373434528286707,0.06806009361139365) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15443650689281874)"><path d="M 0.19841028830046384 0.24950628194903168 C 0.19816883315669123 0.24950628194903168 0.1950299162876475 0.24950628194903168 0.19551282657519267 0.24950628194903168 C 0.1950299162876475 0.24950628194903168 0.19237390970614887 0.24950628194903168 0.19261536484992148 0.24950628194903168" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19261536484992148 0.24950628194903168 C 0.19247636737445278 0.24417061687939104 0.19088014358138075 0.17745575162097676 0.1909473951442972 0.18547830111334399 C 0.19088014358138075 0.17745575162097676 0.19188009200747624 0.15054880361789846 0.191808346094924 0.15323568804062504" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.191808346094924 0.15323568804062504 C 0.19211705280161306 0.15299505725441673 0.19613023998857074 0.15034811860612515 0.19551282657519264 0.15034811860612515 C 0.19613023998857074 0.15034811860612515 0.1995260137621503 0.15347631882683335 0.19921730705546123 0.15323568804062504" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19921730705546123 0.15323568804062504 C 0.19928905296801347 0.15592257246335162 0.20001100644317163 0.1935008506057112 0.20007825800608808 0.18547830111334399 C 0.20001100644317163 0.1935008506057112 0.19827129082499514 0.2548419470186723 0.19841028830046384 0.24950628194903168" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3325761350110321,0.0702381471854133) rotate(0) scale(1,1) translate(-0.17216491458587796,-0.1608813292440714)"><path d="M 0.1685604221025655 0.16216507857200807 C 0.1689821390652209 0.16164175170973313 0.17413865334230522 0.15555302025830312 0.17362102565443016 0.1558851562247087 C 0.17413865334230522 0.15555302025830312 0.1748678650822858 0.15837063787101063 0.17477195435706613 0.15817944697514125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17477195435706613 0.15817944697514125 C 0.17478500586983425 0.160562005878536 0.17477973320604456 0.19424634352353326 0.17492857251028363 0.18677015381587841 C 0.17477973320604456 0.19424634352353326 0.17282399188919026 0.2529873542712594 0.17298588270619744 0.2478937234669993" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17298588270619744 0.2478937234669993 C 0.17277173153656503 0.24789771541754385 0.1699877663313436 0.2479496107746227 0.17041606867060843 0.24794162687353363 C 0.1699877663313436 0.2479496107746227 0.16763210346538704 0.2479935222306124 0.16784625463501945 0.2479895302800679" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16784625463501945 0.2479895302800679 C 0.1678122185920189 0.24289960166348745 0.16749733607464143 0.1797583492387641 0.1674378221190126 0.18691038688110242 C 0.16749733607464143 0.1797583492387641 0.1686539721011949 0.1601029695462502 0.1685604221025655 0.16216507857200807" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3307361150184658,0.07029511789090495) rotate(0) scale(1,1) translate(-0.17478315274251371,-0.16762787884009597)"><path d="M 0.17144353295610681 0.17355719535978548 C 0.17179407168794578 0.1728051631175722 0.17609208880902724 0.16402441655477812 0.1756499977381745 0.16453280845322615 C 0.17609208880902724 0.16402441655477812 0.17684017814535363 0.16770013292217412 0.17674862580633985 0.1674564925784089" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17674862580633985 0.1674564925784089 C 0.1766253806697123 0.17063699470062538 0.17480676705884102 0.2125657120004539 0.17526968416680946 0.20562251804500678 C 0.17480676705884102 0.2125657120004539 0.1708539485393777 0.2545375118770049 0.1711936205107186 0.25077482004377427" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1711936205107186 0.25077482004377427 C 0.17098533598099597 0.25077482004377427 0.1682776370946016 0.25077482004377427 0.1686942061540469 0.25077482004377427 C 0.1682776370946016 0.25077482004377427 0.16598650726765257 0.25077482004377427 0.1661947917973752 0.25077482004377427" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1661947917973752 0.25077482004377427 C 0.1665221224208525 0.24528774045301507 0.17056015437566355 0.1784950628976649 0.1701227592791026 0.18492986495466396 C 0.17056015437566355 0.1784950628976649 0.1715535974291905 0.1726094728935456 0.17144353295610681 0.17355719535978548" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32876568411187773,0.07179114989584906) rotate(0) scale(1,1) translate(-0.17594161129954422,-0.17052112892115934)"><path d="M 0.17302817910709076 0.1764245003141878 C 0.17331082716542306 0.17583082676528822 0.17665975808541184 0.16931794455963284 0.17641995580707834 0.1693004177273928 C 0.17665975808541184 0.16931794455963284 0.17586296066709395 0.17724602268220793 0.17590580644709275 0.1766348223010683" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17590580644709275 0.1766348223010683 C 0.17573549712806744 0.17948552176320215 0.17328025765700553 0.2164131379343811 0.17386209461878896 0.2108432158466746 C 0.17328025765700553 0.2164131379343811 0.16851223526293357 0.24619310997911922 0.1689237629056917 0.24347388735354655" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1689237629056917 0.24347388735354655 C 0.16873714366433887 0.2434674425868882 0.16631109352675208 0.24338366062032982 0.16668433200945773 0.2433965501536465 C 0.16631109352675208 0.24338366062032982 0.16425828187187094 0.24331276818708808 0.16444490111322377 0.24331921295374642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16444490111322377 0.24331921295374642 C 0.16493784342595308 0.2401165036141471 0.1710754820321312 0.19931214149192483 0.1703602088659756 0.2048867008785547 C 0.1710754820321312 0.19931214149192483 0.17325050996051702 0.17405265026715722 0.17302817910709076 0.1764245003141878" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34211077064630924,0.0702381471854133) rotate(0) scale(1,1) translate(-0.17212136038923373,-0.1608813292440714)"><path d="M 0.17572585287254613 0.16216507857200807 C 0.17581940287117553 0.16422718759776594 0.1769079668117279 0.19406242452344075 0.17684845285609907 0.18691038688110242 C 0.1769079668117279 0.19406242452344075 0.1764059842970917 0.25307945889664835 0.17644002034009226 0.2479895302800679" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17644002034009226 0.2479895302800679 C 0.17622586917045985 0.2479855383295234 0.1734419039652384 0.24793364297244458 0.17387020630450323 0.24794162687353363 C 0.1734419039652384 0.24793364297244458 0.17108624109928178 0.24788973151645477 0.1713003922689142 0.2478937234669993" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1713003922689142 0.2478937234669993 C 0.171138501451907 0.24280009266273925 0.169208863160589 0.17929396410822357 0.16935770246482806 0.18677015381587841 C 0.169208863160589 0.17929396410822357 0.16952737213081367 0.1557968880717465 0.16951432061804556 0.15817944697514125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16951432061804556 0.15817944697514125 C 0.16961023134326522 0.15798825607927186 0.17118287700855656 0.15621729219111427 0.1706652493206815 0.1558851562247087 C 0.17118287700855656 0.15621729219111427 0.17614756983520152 0.162688405434283 0.17572585287254613 0.16216507857200807" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34395079063887546,0.07029511789090495) rotate(0) scale(1,1) translate(-0.17464380656719036,-0.16762787884009597)"><path d="M 0.17798342635359735 0.17355719535978548 C 0.17809349082668102 0.17450491782602534 0.17974159512716245 0.19136466701166302 0.1793042000306015 0.18492986495466396 C 0.17974159512716245 0.19136466701166302 0.18355949813580616 0.25626189963453344 0.18323216751232888 0.25077482004377427" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18323216751232888 0.25077482004377427 C 0.18302388298260625 0.25077482004377427 0.18031618409621186 0.25077482004377427 0.18073275315565715 0.25077482004377427 C 0.18031618409621186 0.25077482004377427 0.17802505426926288 0.25077482004377427 0.1782333387989855 0.25077482004377427" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1782333387989855 0.25077482004377427 C 0.1778936668276446 0.24701212821054364 0.17369435803492622 0.19867932408955966 0.17415727514289467 0.20562251804500678 C 0.17369435803492622 0.19867932408955966 0.17255508836673675 0.1642759904561924 0.17267833350336428 0.1674564925784089" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17267833350336428 0.1674564925784089 C 0.17276988584237807 0.16721285223464366 0.17421905264238238 0.1650412003516742 0.17377696157152964 0.16453280845322615 C 0.17421905264238238 0.1650412003516742 0.1783339650854363 0.17430922760199874 0.17798342635359735 0.17355719535978548" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34592122154546356,0.07179114989584906) rotate(0) scale(1,1) translate(-0.17571295307502857,-0.17052112892115934)"><path d="M 0.17862638526748204 0.1764245003141878 C 0.1788487161209083 0.17879635036121838 0.18200962867475276 0.21046126026518458 0.18129435550859718 0.2048867008785547 C 0.18200962867475276 0.21046126026518458 0.18770260557407836 0.24652192229334574 0.18720966326134905 0.24331921295374642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18720966326134905 0.24331921295374642 C 0.18702304401999623 0.24332565772040476 0.1845969938824094 0.24340943968696319 0.18497023236511506 0.2433965501536465 C 0.1845969938824094 0.24340943968696319 0.18254418222752825 0.2434803321202049 0.18273080146888107 0.24347388735354655" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18273080146888107 0.24347388735354655 C 0.18231927382612298 0.24075466472797388 0.17721063279400043 0.20527329375896808 0.17779246975578386 0.2108432158466746 C 0.17721063279400043 0.20527329375896808 0.17557844860845467 0.17378412283893446 0.17574875792748 0.1766348223010683" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17574875792748 0.1766348223010683 C 0.17570591214748119 0.17602362191992868 0.175474410845828 0.16928289089515275 0.17523460856749448 0.1693004177273928 C 0.175474410845828 0.16928289089515275 0.17890903332581434 0.17701817386308738 0.17862638526748204 0.1764245003141878" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,101 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252104)"><path d="M 0.03144978853705477 0.030518859602013837 C 0.03112220048348788 0.03126889152895428 0.023260087197882553 0.029768827675073394 0.023587675251449444 0.030518859602013837 C 0.023260087197882553 0.029768827675073394 0.028173908001385875 0.02151847647872851 0.027518731894252097 0.02151847647872851 C 0.028173908001385875 0.02151847647872851 0.03112220048348788 0.03126889152895428 0.03144978853705477 0.030518859602013837 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="お下げ">
<g transform="translate(0.3373434528286707,0.06806009361139365) rotate(0) scale(1,1) translate(-0.19551282657519264,-0.15529045777044517)"><path d="M 0.19551282657519264 0.25814272740180166 C 0.19550419495093294 0.25780541408524676 0.19534530912659703 0.25342034097003335 0.19540924708407628 0.2540949676031431 C 0.19534530912659703 0.25342034097003335 0.19472830783692222 0.24937258117137476 0.1947455710854416 0.25004720780448453 C 0.19472830783692222 0.24937258117137476 0.19513815014436423 0.2453248213727162 0.19520208810184347 0.24599944800582596 C 0.19513815014436423 0.2453248213727162 0.19396105234717112 0.2412770615740576 0.1939783155956905 0.24195168820716736 C 0.19396105234717112 0.2412770615740576 0.19493099116213145 0.23722930177539903 0.1949949291196107 0.2379039284085088 C 0.19493099116213145 0.23722930177539903 0.19319379685742005 0.23318154197674046 0.19321106010593944 0.23385616860985023 C 0.19319379685742005 0.23318154197674046 0.1947238321798987 0.22913378217808186 0.19478777013737794 0.22980840881119163 C 0.1947238321798987 0.22913378217808186 0.19242654136766896 0.2250860223794233 0.19244380461618835 0.22576064901253307 C 0.19242654136766896 0.2250860223794233 0.19451667319766586 0.2210382625807647 0.1945806111551451 0.22171288921387447 C 0.19451667319766586 0.2210382625807647 0.1916592858779179 0.21699050278210613 0.19167654912643728 0.2176651294152159 C 0.1916592858779179 0.21699050278210613 0.19430951421543305 0.21294274298344756 0.1943734521729123 0.21361736961655733 C 0.19430951421543305 0.21294274298344756 0.19062061375866732 0.2092322965013439 0.19090929363668616 0.20956960981789877" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19090929363668616 0.20956960981789877 C 0.19080136708618647 0.2074619802386861 0.18967254848143705 0.17966053337999222 0.18961417503069 0.1842780548673465 C 0.18967254848143705 0.17966053337999222 0.19177607504689756 0.15164946006150598 0.19160977504565083 0.15415935196964756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19160977504565083 0.15415935196964756 C 0.19193502933977932 0.1539312650700129 0.1961633351634496 0.15142230917403163 0.19551282657519264 0.15142230917403163 C 0.1961633351634496 0.15142230917403163 0.19974113239886296 0.15438743886928222 0.19941587810473446 0.15415935196964756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19941587810473446 0.15415935196964756 C 0.1995821781059812 0.15666924387778913 0.2014698515704424 0.18889557635470078 0.20141147811969534 0.1842780548673465 C 0.2014698515704424 0.18889557635470078 0.20000843296319953 0.21167723939711144 0.20011635951369922 0.20956960981789877" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20011635951369922 0.20956960981789877 C 0.19982767963568038 0.20990692313445364 0.19658826301999377 0.21429199624966713 0.19665220097747302 0.21361736961655736 C 0.19658826301999377 0.21429199624966713 0.19933184077542873 0.2183397560483257 0.19934910402394812 0.21766512941521593 C 0.19933184077542873 0.2183397560483257 0.19638110403776102 0.22238751584698427 0.19644504199524027 0.2217128892138745 C 0.19638110403776102 0.22238751584698427 0.19856458528567766 0.22643527564564286 0.19858184853419705 0.2257606490125331 C 0.19856458528567766 0.22643527564564286 0.19617394505552824 0.23048303544430143 0.19623788301300749 0.22980840881119166 C 0.19617394505552824 0.23048303544430143 0.1977973297959266 0.23453079524296003 0.19781459304444599 0.23385616860985026 C 0.1977973297959266 0.23453079524296003 0.19596678607329543 0.2385785550416186 0.19603072403077468 0.23790392840850882 C 0.19596678607329543 0.2385785550416186 0.1970300743061755 0.24262631484027716 0.1970473375546949 0.2419516882071674 C 0.1970300743061755 0.24262631484027716 0.19575962709106265 0.24667407463893576 0.1958235650485419 0.245999448005826 C 0.19575962709106265 0.24667407463893576 0.1962628188164244 0.25072183443759427 0.1962800820649438 0.25004720780448453 C 0.1962628188164244 0.25072183443759427 0.1955524681088298 0.25476959423625284 0.1956164060663091 0.2540949676031431 C 0.1955524681088298 0.25476959423625284 0.19550419495093294 0.25848004071835656 0.19551282657519264 0.25814272740180166" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3334508131879383,0.06855862727787307) rotate(0) scale(1,1) translate(-0.17341570432315195,-0.16269417972442426)"><path d="M 0.16893593460346965 0.164643621260847 C 0.169343966199307 0.164213581058904 0.17434279636082328 0.15945773970626717 0.17383231375351804 0.15948313883753087 C 0.17434279636082328 0.15945773970626717 0.1751641769026005 0.16474347275636184 0.1750617258911326 0.16433883168568253" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1750617258911326 0.16433883168568253 C 0.17518955080068538 0.1661376772716124 0.1766887938637066 0.1896817530854817 0.17659562480576563 0.18592497871684122 C 0.1766887938637066 0.1896817530854817 0.1761450987348124 0.21137805289207906 0.17617975458642418 0.20942012410936844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17617975458642418 0.20942012410936844 C 0.17650512820520384 0.20994196968715897 0.17997856341025079 0.21634087505112726 0.1800842380117802 0.2156822710428547 C 0.17997856341025079 0.21634087505112726 0.17448061114776203 0.2174601306391213 0.17491165936807113 0.21732337220863926" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17491165936807113 0.21732337220863926 C 0.1752370329868508 0.2178452177864298 0.17871046819189781 0.2242441231503981 0.17881614279342722 0.22358551914212554 C 0.17871046819189781 0.2242441231503981 0.173212515929409 0.22536337873839213 0.1736435641497181 0.22522662030791007" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1736435641497181 0.22522662030791007 C 0.17396893776849776 0.2257484658857006 0.1774423729735447 0.23214737124966897 0.1775480475750741 0.2314887672413964 C 0.1774423729735447 0.23214737124966897 0.17194442071105595 0.233266626837663 0.17237546893136504 0.23312986840718095" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17237546893136504 0.23312986840718095 C 0.17270084255014473 0.23365171398497148 0.1761742777551917 0.24005061934893976 0.17627995235672111 0.2393920153406672 C 0.1761742777551917 0.24005061934893976 0.17067632549270292 0.24116987493693381 0.17110737371301202 0.24103311650645176" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17110737371301202 0.24103311650645176 C 0.17143274733179167 0.2415549620842423 0.17490618253683862 0.24795386744821063 0.17501185713836803 0.24729526343993805 C 0.17490618253683862 0.24795386744821063 0.16940823027434987 0.24907312303620466 0.16983927849465896 0.2489363646057226" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16983927849465896 0.2489363646057226 C 0.17016465211343865 0.24945821018351313 0.17363808731848562 0.2558571155474815 0.17374376192001503 0.2551985115392089 C 0.17363808731848562 0.2558571155474815 0.16814013505599684 0.2569763711354755 0.16857118327630594 0.25683961270499345" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16857118327630594 0.25683961270499345 C 0.16894677975557376 0.25670269958867065 0.1730731121469666 0.2545377419291659 0.17307834102751973 0.25519665530911995 C 0.1730731121469666 0.2545377419291659 0.16812761134984744 0.24841065188191322 0.1685084367096684 0.2489326521455445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1685084367096684 0.2489326521455445 C 0.16888403318893622 0.2487957390292217 0.17301036558032906 0.24663078136971675 0.1730155944608822 0.24728969474967083 C 0.17301036558032906 0.24663078136971675 0.1680648647832099 0.2405036913224642 0.16844569014303085 0.2410256915860955" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16844569014303085 0.2410256915860955 C 0.16882128662229867 0.2408887784697727 0.17294761901369154 0.23872382081026777 0.17295284789424467 0.23938273419022185 C 0.17294761901369154 0.23872382081026777 0.16800211821657235 0.2325967307630152 0.1683829435763933 0.2331187310266465" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1683829435763933 0.2331187310266465 C 0.16875854005566113 0.23298181791032369 0.17288487244705397 0.23081686025081877 0.1728901013276071 0.23147577363077285 C 0.17288487244705397 0.23081686025081877 0.16793937164993486 0.22468977020356617 0.1683201970097558 0.22521177046719745" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1683201970097558 0.22521177046719745 C 0.16869579348902364 0.22507485735087465 0.17282212588041646 0.22290989969136976 0.17282735476096958 0.22356881307132384 C 0.17282212588041646 0.22290989969136976 0.16787662508329732 0.2167828096441172 0.16825745044311827 0.21730480990774848" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16825745044311827 0.21730480990774848 C 0.1686330469223861 0.21716789679142567 0.1727593793137789 0.21500293913192073 0.17276460819433204 0.2156618525118748 C 0.1727593793137789 0.21500293913192073 0.16781387851665971 0.20887584908466816 0.16819470387648067 0.20939784934829944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16819470387648067 0.20939784934829944 C 0.16810667581978456 0.20743580704116593 0.16720013642337647 0.18212382265540963 0.1671383671961274 0.18585334166269735 C 0.16720013642337647 0.18212382265540963 0.16908573188741483 0.1628761445606928 0.16893593460346965 0.164643621260847" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3304669909640672,0.07028043204228529) rotate(0) scale(1,1) translate(-0.17505614043767442,-0.17067763858170087)"><path d="M 0.17082192668587146 0.17392972923035133 C 0.1712283521840198 0.17339789825845947 0.1761864394502009 0.167548992740732 0.17569903266365164 0.16754775756764892 C 0.1761864394502009 0.167548992740732 0.17675178941286368 0.1744776174523235 0.17667080812446276 0.17394455130734854" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17667080812446276 0.17394455130734854 C 0.1765703991347283 0.1754315238006808 0.17557472088403359 0.19463899547468816 0.17546590024764924 0.19178822122733563 C 0.17557472088403359 0.19463899547468816 0.17818588538719365 0.20951764402959897 0.17797665576107485 0.2081538422755787" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17797665576107485 0.2081538422755787 C 0.17760584579425964 0.2086727715741936 0.17345064803423235 0.21506173705666037 0.17352693615929243 0.21438099385895742 C 0.17345064803423235 0.21506173705666037 0.17735572010210884 0.2164845745471023 0.17706119826035374 0.21632276064801423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17706119826035374 0.21632276064801423 C 0.17669038829353853 0.2168416899466291 0.1725351905335112 0.22323065542909587 0.1726114786585713 0.22254991223139292 C 0.1725351905335112 0.22323065542909587 0.17644026260138773 0.22465349291953773 0.17614574075963263 0.22449167902044967" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17614574075963263 0.22449167902044967 C 0.17577493079281742 0.22501060831906455 0.17161973303279013 0.23139957380153137 0.1716960211578502 0.23071883060382842 C 0.17161973303279013 0.23139957380153137 0.17552480510066665 0.23282241129197329 0.17523028325891155 0.23266059739288522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17523028325891155 0.23266059739288522 C 0.17485947329209633 0.2331795266915001 0.17070427553206907 0.2395684921739669 0.17078056365712915 0.23888774897626394 C 0.17070427553206907 0.2395684921739669 0.1746093475999456 0.2409913296644088 0.1743148257581905 0.24082951576532075" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1743148257581905 0.24082951576532075 C 0.17394401579137528 0.24134844506393563 0.16978881803134796 0.24773741054640241 0.16986510615640804 0.24705666734869947 C 0.16978881803134796 0.24773741054640241 0.1736938900992245 0.2491602480368443 0.1733993682574694 0.24899843413775624" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1733993682574694 0.24899843413775624 C 0.1730285582906542 0.24951736343637113 0.16887336053062685 0.25590632891883786 0.16894964865568693 0.2552255857211349 C 0.16887336053062685 0.25590632891883786 0.17277843259850356 0.25732916640927983 0.17248391075674843 0.25716735251019174" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17248391075674843 0.25716735251019174 C 0.17214049858363098 0.2570094370558888 0.1683414721416743 0.2545994207504239 0.1683629646793389 0.2552723670585566 C 0.1683414721416743 0.2545994207504239 0.17254791994022606 0.24857696595876994 0.1722260003047732 0.2490919968125997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1722260003047732 0.2490919968125997 C 0.17188258813165574 0.24893408135829678 0.16808356168969915 0.246524065052832 0.16810505422736374 0.24719701136096467 C 0.16808356168969915 0.246524065052832 0.17229000948825093 0.24050161026117786 0.17196808985279807 0.24101664111500762" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17196808985279807 0.24101664111500762 C 0.17162467767968062 0.2408587256607047 0.16782565123772397 0.23844870935523987 0.16784714377538856 0.23912165566337254 C 0.16782565123772397 0.23844870935523987 0.17203209903627575 0.23242625456358593 0.1717101794008229 0.23294128541741566" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1717101794008229 0.23294128541741566 C 0.17136676722770544 0.23278336996311272 0.16756774078574885 0.2303733536576479 0.16758923332341344 0.23104629996578058 C 0.16756774078574885 0.2303733536576479 0.1717741885843006 0.22435089886599385 0.17145226894884774 0.2248659297198236" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17145226894884774 0.2248659297198236 C 0.1711088567757303 0.22470801426552067 0.1673098303337737 0.22229799796005587 0.1673313228714383 0.22297094426818853 C 0.1673098303337737 0.22229799796005587 0.17151627813232548 0.2162755431684018 0.17119435849687262 0.21679057402223156" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17119435849687262 0.21679057402223156 C 0.17085094632375517 0.21663265856792865 0.16705191988179857 0.21422264226246387 0.16707341241946316 0.21489558857059654 C 0.16705191988179857 0.21422264226246387 0.17125836768035035 0.20820018747080973 0.1709364480448975 0.2087152183246395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1709364480448975 0.2087152183246395 C 0.17082226792439495 0.20671382171336156 0.1695567431522814 0.18179966823144703 0.16956628659886688 0.18469845898930437 C 0.1695567431522814 0.18179966823144703 0.1709265633597885 0.17303233508377192 0.17082192668587146 0.17392972923035133" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3273276014461736,0.07166001432992258) rotate(0) scale(1,1) translate(-0.1753915898257882,-0.16813440718777062)"><path d="M 0.17359206221207452 0.17018466366426938 C 0.17384440204818416 0.1698597329338931 0.17688114489909554 0.166549401966756 0.17662014024539022 0.16628549489975378 C 0.17688114489909554 0.166549401966756 0.17673278287413394 0.17394038626567435 0.17672411805653826 0.17335154846829584" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17672411805653826 0.17335154846829584 C 0.17644934422811748 0.17452073122227568 0.1732737484685673 0.18945250311407177 0.1734268321154889 0.18738174151605388 C 0.1732737484685673 0.18945250311407177 0.17500880447497838 0.1991022664885485 0.1748871142934792 0.19820068764451046" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1748871142934792 0.19820068764451046 C 0.1751353227901586 0.19861113095393335 0.17772793271977888 0.2036923441358896 0.177865616253632 0.20312600735758526 C 0.17772793271977888 0.2036923441358896 0.17284901985670928 0.20515262245304394 0.1732349118872418 0.20499672898416252" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1732349118872418 0.20499672898416252 C 0.17348312038392122 0.20540717229358543 0.17607573031354157 0.2104883854755417 0.17621341384739467 0.20992204869723735 C 0.17607573031354157 0.2104883854755417 0.17119681745047194 0.21194866379269595 0.17158270948100446 0.21179277032381452" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17158270948100446 0.21179277032381452 C 0.17183091797768388 0.2122032136332374 0.17442352790730428 0.21728442681519367 0.17456121144115738 0.21671809003688933 C 0.17442352790730428 0.21728442681519367 0.16954461504423465 0.218744705132348 0.16993050707476717 0.21858881166346658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16993050707476717 0.21858881166346658 C 0.17017871557144656 0.21899925497288947 0.1727713255010668 0.22408046815484572 0.17290900903491993 0.2235141313765414 C 0.1727713255010668 0.22408046815484572 0.16789241263799726 0.22554074647199998 0.16827830466852978 0.22538485300311856" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16827830466852978 0.22538485300311856 C 0.1685265131652092 0.22579529631254144 0.17111912309482957 0.23087650949449767 0.17125680662868267 0.23031017271619333 C 0.17111912309482957 0.23087650949449767 0.16624021023175992 0.23233678781165196 0.16662610226229244 0.23218089434277053" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16662610226229244 0.23218089434277053 C 0.16687431075897183 0.23259133765219345 0.16946692068859215 0.23767255083414973 0.16960460422244528 0.2371062140558454 C 0.16946692068859215 0.23767255083414973 0.16458800782552252 0.23913282915130404 0.16497389985605504 0.23897693568242262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16497389985605504 0.23897693568242262 C 0.16531080857193517 0.23882190990922178 0.16905652135116492 0.23655202501706935 0.16901680444661657 0.2371166264040125 C 0.16905652135116492 0.23655202501706935 0.1651533108993034 0.23179214342536247 0.1654505027106352 0.23220171903910478" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1654505027106352 0.23220171903910478 C 0.16578741142651532 0.23204669326590394 0.16953312420574507 0.22977680837375142 0.16949340730119672 0.2303414097606946 C 0.16953312420574507 0.22977680837375142 0.16562991375388345 0.22501692678204455 0.16592710556521523 0.22542650239578685" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16592710556521523 0.22542650239578685 C 0.16626401428109536 0.225271476622586 0.17000972706032513 0.22300159173043352 0.16997001015577679 0.2235661931173767 C 0.17000972706032513 0.22300159173043352 0.16610651660846354 0.21824171013872665 0.16640370841979532 0.21865128575246895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16640370841979532 0.21865128575246895 C 0.16674061713567545 0.2184962599792681 0.17048632991490525 0.2162263750871156 0.1704466130103569 0.21679097647405876 C 0.17048632991490525 0.2162263750871156 0.16658311946304363 0.21146649349540875 0.16688031127437541 0.21187606910915105" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16688031127437541 0.21187606910915105 C 0.16721721999025554 0.2117210433359502 0.1709629327694853 0.20945115844379772 0.17092321586493694 0.2100157598307409 C 0.1709629327694853 0.20945115844379772 0.16705972231762373 0.20469127685209085 0.1673569141289555 0.20510085246583315" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1673569141289555 0.20510085246583315 C 0.16769382284483564 0.2049458266926323 0.17143953562406544 0.20267594180047982 0.1713998187195171 0.203240543187423 C 0.17143953562406544 0.20267594180047982 0.16753632517220382 0.19791606020877298 0.1678335169835356 0.19832563582251528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1678335169835356 0.19832563582251528 C 0.16792912321609235 0.19715774291025034 0.16946067054326136 0.18196583986214898 0.16898079177421646 0.18431092087533613 C 0.16946067054326136 0.18196583986214898 0.1739763347485627 0.16900747556334714 0.17359206221207452 0.17018466366426938" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3412360924694031,0.06855862727787307) rotate(0) scale(1,1) translate(-0.1740417858578211,-0.16269417972442426)"><path d="M 0.17852155557750343 0.164643621260847 C 0.1786713528614486 0.1664110979610012 0.18038089221209472 0.18958286066998506 0.18031912298484565 0.18585334166269735 C 0.18038089221209472 0.18958286066998506 0.1791747582477963 0.21135989165543298 0.1792627863044924 0.20939784934829947" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1792627863044924 0.20939784934829947 C 0.17888196094467146 0.20991984961193075 0.17468765310608783 0.2163207658918289 0.17469288198664096 0.2156618525118748 C 0.17468765310608783 0.2163207658918289 0.17957563621712264 0.21744172302407128 0.1792000397378548 0.21730480990774848" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1792000397378548 0.21730480990774848 C 0.17881921437803386 0.21782681017137975 0.17462490653945037 0.22422772645127792 0.1746301354200035 0.22356881307132384 C 0.17462490653945037 0.22422772645127792 0.179512889650485 0.22534868358352025 0.1791372931712172 0.22521177046719745" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1791372931712172 0.22521177046719745 C 0.17875646781139629 0.22573377073082873 0.17456215997281285 0.23213468701072693 0.17456738885336598 0.23147577363077285 C 0.17456215997281285 0.23213468701072693 0.1794501430838475 0.2332556441429693 0.1790745466045797 0.2331187310266465" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1790745466045797 0.2331187310266465 C 0.17869372124475874 0.23364073129027776 0.17449941340617522 0.24004164757017593 0.17450464228672835 0.23938273419022185 C 0.17449941340617522 0.24004164757017593 0.17938739651721003 0.2411626047024183 0.1790118000379422 0.2410256915860955" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1790118000379422 0.2410256915860955 C 0.17863097467812125 0.24154769184972677 0.17443666683953774 0.2479486081296249 0.17444189572009086 0.24728969474967083 C 0.17443666683953774 0.2479486081296249 0.1793246499505724 0.2490695652618673 0.1789490534713046 0.2489326521455445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1789490534713046 0.2489326521455445 C 0.17856822811148365 0.24945465240917578 0.1743739202729001 0.255855568689074 0.17437914915345323 0.25519665530911995 C 0.1743739202729001 0.255855568689074 0.1792619033839349 0.25697652582131625 0.1788863069046671 0.25683961270499345" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1788863069046671 0.25683961270499345 C 0.178455258684358 0.2567028542745114 0.17360805365942863 0.25453990753093636 0.17371372826095804 0.2551985115392089 C 0.17360805365942863 0.25453990753093636 0.17794358530509372 0.24841451902793207 0.17761821168631406 0.2489363646057226" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17761821168631406 0.2489363646057226 C 0.17718716346600497 0.24879960617524055 0.1723399584410756 0.24663665943166546 0.17244563304260502 0.24729526343993805 C 0.1723399584410756 0.24663665943166546 0.17667549008674072 0.24051127092866123 0.17635011646796106 0.24103311650645176" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17635011646796106 0.24103311650645176 C 0.17591906824765197 0.2408963580759697 0.17107186322272247 0.23873341133239465 0.1711775378242519 0.2393920153406672 C 0.17107186322272247 0.23873341133239465 0.17540739486838763 0.23260802282939042 0.17508202124960795 0.23312986840718095" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17508202124960795 0.23312986840718095 C 0.17465097302929886 0.2329931099766989 0.16980376800436947 0.2308301632331238 0.16990944260589888 0.2314887672413964 C 0.16980376800436947 0.2308301632331238 0.1741392996500346 0.22470477473011954 0.17381392603125492 0.22522662030791007" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17381392603125492 0.22522662030791007 C 0.17338287781094583 0.22508986187742802 0.16853567278601633 0.222926915133853 0.16864134738754574 0.22358551914212554 C 0.16853567278601633 0.222926915133853 0.17287120443168158 0.21680152663084873 0.1725458308129019 0.21732337220863926" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1725458308129019 0.21732337220863926 C 0.1721147825925928 0.2171866137781572 0.16726757756766344 0.21502366703458214 0.16737325216919285 0.2156822710428547 C 0.16726757756766344 0.21502366703458214 0.17160310921332855 0.2088982785315779 0.1712777355945489 0.20942012410936844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1712777355945489 0.20942012410936844 C 0.1712430797429371 0.20746219532665783 0.1709550344331483 0.18216820434820072 0.17086186537520734 0.18592497871684122 C 0.1709550344331483 0.18216820434820072 0.17252358919939323 0.16253998609975265 0.17239576428984046 0.16433883168568253" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17239576428984046 0.16433883168568253 C 0.17249821530130835 0.16393419061500322 0.17413565903476025 0.15950853796879458 0.173625176427455 0.15948313883753087 C 0.17413565903476025 0.15950853796879458 0.1789295871733408 0.16507366146279 0.17852155557750343 0.164643621260847" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3442199146932743,0.07028043204228529) rotate(0) scale(1,1) translate(-0.17505614043767442,-0.17067763858170087)"><path d="M 0.17929035418947747 0.17392972923035133 C 0.17939499086339453 0.17482712337693074 0.1805364508298966 0.18759724974716174 0.1805459942764821 0.1846984589893044 C 0.1805364508298966 0.18759724974716174 0.1790616527099489 0.21071661493591742 0.17917583283045144 0.2087152183246395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17917583283045144 0.2087152183246395 C 0.1794977524659043 0.20923024917846925 0.18301737591822112 0.2155685348787292 0.1830388684558857 0.21489558857059654 C 0.18301737591822112 0.2155685348787292 0.17857451020535886 0.21694848947653447 0.1789179223784763 0.21679057402223156" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1789179223784763 0.21679057402223156 C 0.17923984201392917 0.21730560487606132 0.18275946546624608 0.2236438905763212 0.18278095800391067 0.22297094426818853 C 0.18275946546624608 0.2236438905763212 0.1783165997533837 0.22502384517412655 0.17866001192650116 0.2248659297198236" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17866001192650116 0.2248659297198236 C 0.17898193156195402 0.22538096057365337 0.18250155501427087 0.23171924627391324 0.18252304755193546 0.23104629996578058 C 0.18250155501427087 0.23171924627391324 0.1780586893014086 0.23309920087171854 0.17840210147452606 0.23294128541741563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17840210147452606 0.23294128541741563 C 0.17872402110997893 0.23345631627124538 0.18224364456229575 0.23979460197150526 0.18226513709996034 0.2391216556633726 C 0.18224364456229575 0.23979460197150526 0.17780077884943338 0.24117455656931053 0.17814419102255083 0.24101664111500762" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17814419102255083 0.24101664111500762 C 0.1784661106580037 0.24153167196883737 0.18198573411032062 0.24786995766909733 0.18200722664798522 0.24719701136096467 C 0.18198573411032062 0.24786995766909733 0.17754286839745828 0.2492499122669026 0.17788628057057573 0.2490919968125997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17788628057057573 0.2490919968125997 C 0.1782082002060286 0.24960702766642945 0.1817278236583454 0.2559453133666893 0.18174931619600998 0.2552723670585566 C 0.1817278236583454 0.2559453133666893 0.17728495794548302 0.2573252679644947 0.17762837011860047 0.25716735251019174" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17762837011860047 0.25716735251019174 C 0.1779228919603556 0.25700553861110365 0.1810863440946019 0.25454484252343196 0.18116263221966197 0.2552255857211349 C 0.1810863440946019 0.25454484252343196 0.17634210265106443 0.24847950483914136 0.1767129126178796 0.24899843413775624" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1767129126178796 0.24899843413775624 C 0.1770074344596347 0.24883662023866818 0.18017088659388075 0.24637592415099652 0.18024717471894086 0.24705666734869947 C 0.18017088659388075 0.24637592415099652 0.17542664515034326 0.24031058646670586 0.17579745511715847 0.24082951576532075" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17579745511715847 0.24082951576532075 C 0.17609197695891357 0.24066770186623268 0.17925542909315972 0.238207005778561 0.1793317172182198 0.23888774897626394 C 0.17925542909315972 0.238207005778561 0.17451118764962212 0.23214166809427034 0.17488199761643733 0.23266059739288522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17488199761643733 0.23266059739288522 C 0.17517651945819246 0.23249878349379716 0.17833997159243864 0.23003808740612547 0.17841625971749872 0.23071883060382842 C 0.17833997159243864 0.23003808740612547 0.173595730148901 0.22397274972183484 0.17396654011571622 0.22449167902044972" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17396654011571622 0.22449167902044972 C 0.17426106195747132 0.22432986512136166 0.17742451409171753 0.22186916903368997 0.1775008022167776 0.22254991223139292 C 0.17742451409171753 0.22186916903368997 0.17268027264818 0.21580383134939934 0.17305108261499522 0.21632276064801423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17305108261499522 0.21632276064801423 C 0.17334560445675032 0.21616094674892616 0.1765090565909964 0.21370025066125448 0.17658534471605647 0.21438099385895742 C 0.1765090565909964 0.21370025066125448 0.1717648151474589 0.20763491297696382 0.1721356251142741 0.2081538422755787" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1721356251142741 0.2081538422755787 C 0.1723448547403929 0.20679004052155844 0.17475520126408403 0.18893744697998313 0.1746463806276997 0.19178822122733563 C 0.17475520126408403 0.18893744697998313 0.1733410637611517 0.1724575788140163 0.17344147275088614 0.17394455130734857" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17344147275088614 0.17394455130734857 C 0.17352245403928707 0.1734114851623736 0.17490065499824659 0.16754652239456583 0.17441324821169732 0.16754775756764892 C 0.17490065499824659 0.16754652239456583 0.17969677968762582 0.17446156020224318 0.17929035418947747 0.17392972923035133" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3473593042111679,0.07166001432992258) rotate(0) scale(1,1) translate(-0.1765159132099819,-0.16813440718777062)"><path d="M 0.17831544082369558 0.17018466366426938 C 0.17869971336018375 0.17136185176519161 0.1834065900305986 0.18665600188852327 0.1829267112615537 0.18431092087533613 C 0.1834065900305986 0.18665600188852327 0.1841695922847912 0.1994935287347802 0.1840739860522345 0.19832563582251528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1840739860522345 0.19832563582251528 C 0.1837767942409027 0.19873521143625758 0.18054740122080137 0.20380514457436616 0.18050768431625303 0.203240543187423 C 0.18054740122080137 0.20380514457436616 0.18488749762269466 0.205255878239034 0.18455058890681453 0.20510085246583315" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18455058890681453 0.20510085246583315 C 0.18425339709548275 0.20551042807957545 0.18102400407538152 0.21058036121768406 0.18098428717083317 0.2100157598307409 C 0.18102400407538152 0.21058036121768406 0.1853641004772748 0.2120310948823519 0.18502719176139468 0.21187606910915105" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18502719176139468 0.21187606910915105 C 0.1847299999500629 0.21228564472289335 0.18150060692996156 0.21735557786100193 0.1814608900254132 0.21679097647405876 C 0.18150060692996156 0.21735557786100193 0.18584070333185496 0.2188063115256698 0.18550379461597483 0.21865128575246895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18550379461597483 0.21865128575246895 C 0.18520660280464304 0.21906086136621125 0.1819772097845417 0.22413079450431986 0.18193749287999336 0.2235661931173767 C 0.1819772097845417 0.22413079450431986 0.186317306186435 0.2255815281689877 0.18598039747055486 0.22542650239578685" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18598039747055486 0.22542650239578685 C 0.18568320565922308 0.22583607800952915 0.1824538126391217 0.23090601114763776 0.18241409573457337 0.2303414097606946 C 0.1824538126391217 0.23090601114763776 0.186793909041015 0.23235674481230562 0.18645700032513488 0.23220171903910478" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18645700032513488 0.23220171903910478 C 0.1861598085138031 0.23261129465284708 0.18293041549370187 0.23768122779095563 0.18289069858915352 0.2371166264040125 C 0.18293041549370187 0.23768122779095563 0.18727051189559518 0.23913196145562346 0.18693360317971505 0.23897693568242262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18693360317971505 0.23897693568242262 C 0.18654771114918253 0.2388210422135412 0.18216521527947163 0.23653987727754106 0.18230289881332476 0.2371062140558454 C 0.18216521527947163 0.23653987727754106 0.18552960927015708 0.23177045103334762 0.18528140077347766 0.23218089434277053" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18528140077347766 0.23218089434277053 C 0.18489550874294514 0.2320250008738891 0.1805130128732343 0.22974383593788902 0.1806506964070874 0.23031017271619336 C 0.1805130128732343 0.22974383593788902 0.18387740686391982 0.22497440969369564 0.1836291983672404 0.22538485300311856" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1836291983672404 0.22538485300311856 C 0.18324330633670788 0.22522895953423713 0.17886081046699714 0.22294779459823705 0.17899849400085024 0.2235141313765414 C 0.17886081046699714 0.22294779459823705 0.18222520445768242 0.2181783683540437 0.18197699596100303 0.21858881166346658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18197699596100303 0.21858881166346658 C 0.1815911039304705 0.21843291819458516 0.1772086080607596 0.216151753258585 0.1773462915946127 0.21671809003688933 C 0.1772086080607596 0.216151753258585 0.18057300205144508 0.21138232701439164 0.18032479355476566 0.21179277032381452" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18032479355476566 0.21179277032381452 C 0.17993890152423314 0.2116368768549331 0.17555640565452235 0.209355711918933 0.17569408918837548 0.20992204869723735 C 0.17555640565452235 0.209355711918933 0.17892079964520766 0.2045862856747396 0.17867259114852826 0.20499672898416252" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17867259114852826 0.20499672898416252 C 0.17828669911799574 0.2048408355152811 0.17390420324828496 0.20255967057928093 0.17404188678213808 0.20312600735758526 C 0.17390420324828496 0.20255967057928093 0.17726859723897026 0.19779024433508757 0.17702038874229087 0.19820068764451046" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17702038874229087 0.19820068764451046 C 0.17714207892379005 0.1972991088004724 0.1783275872733596 0.185310979918036 0.1784806709202812 0.18738174151605388 C 0.1783275872733596 0.185310979918036 0.17490861115081105 0.172182365714316 0.17518338497923183 0.17335154846829584" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17518338497923183 0.17335154846829584 C 0.1751920497968275 0.17276271067091734 0.17554836744408525 0.16602158783275156 0.17528736279037993 0.16628549489975378 C 0.17554836744408525 0.16602158783275156 0.17856778065980522 0.17050959439464566 0.17831544082369558 0.17018466366426938" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252104)"><path d="M 0.027518731894252094 0.03351898730977576 C 0.026652669624412335 0.03351898730977576 0.022755389410133435 0.02376857225954999 0.022322358275213554 0.024518604186490434 C 0.022755389410133435 0.02376857225954999 0.03314813664821053 0.025268636113430876 0.03271510551329065 0.024518604186490434 C 0.03314813664821053 0.025268636113430876 0.026652669624412335 0.03351898730977576 0.027518731894252094 0.03351898730977576 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="お下げ左">
<g transform="translate(0.3173264160442866,0.08092617853905136) rotate(0) scale(1,1) translate(-0.1719217342075472,-0.16462012712208823)"><path d="M 0.1691837744348894 0.15841506811034614 C 0.1693679056354716 0.15841760794068208 0.17181857918421023 0.15868497406821594 0.17139334884187585 0.15844554607437722 C 0.17181857918421023 0.15868497406821594 0.174527637684654 0.1615250921999137 0.17428653854290185 0.1612882040364109" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17428653854290185 0.1612882040364109 C 0.17434996643404754 0.16284941946296894 0.17477283333773164 0.1833352402103204 0.17504767323665024 0.18002278915510753 C 0.17477283333773164 0.1833352402103204 0.17065019196581444 0.2027888523276202 0.17098845975587873 0.2010376166989654" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17098845975587873 0.2010376166989654 C 0.1707656827509969 0.20185983000032603 0.16788939359734936 0.21318477537725286 0.16831513569729697 0.21090417631529326 C 0.16788939359734936 0.21318477537725286 0.1656765894614415 0.2298631912030796 0.16587955455650732 0.22840480544248065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16587955455650732 0.22840480544248065 C 0.1657902555705585 0.2269687458959293 0.16466514515716393 0.20846070145830112 0.1648079667251213 0.21117209088386446 C 0.16466514515716393 0.20846070145830112 0.16411217315901036 0.19459280245670843 0.16416569574101889 0.19586813233572042" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16416569574101889 0.19586813233572042 C 0.16422392737236594 0.19456054231401934 0.16528264854167266 0.17705596338985946 0.16486447531718346 0.18017705207530732 C 0.16528264854167266 0.17705596338985946 0.1695437160280316 0.15660156944659936 0.1691837744348894 0.15841506811034614" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31220085444714585,0.07641747282463367) rotate(0) scale(1,1) translate(-0.17652113247044526,-0.16988053717297155)"><path d="M 0.17333360913027893 0.1724194594432011 C 0.173678528747138 0.17209833945348693 0.1776837806766507 0.1688306747576188 0.17747264453258774 0.168566019566631 C 0.1776837806766507 0.1688306747576188 0.17573345938623838 0.1761810969157563 0.1758672428590345 0.17559532173505438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1758672428590345 0.17559532173505438 C 0.175780412280187 0.17621416596951384 0.17460469969146222 0.18457262870811622 0.17482527591286476 0.18302145254856794 C 0.17460469969146222 0.18457262870811622 0.173086582559649 0.19514176757472254 0.17322032820220407 0.19420943564963372" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17322032820220407 0.19420943564963372 C 0.1728085493178408 0.1963894055964824 0.16771965959865923 0.22388654436081082 0.16827898158984467 0.22036907501181807 C 0.16771965959865923 0.22388654436081082 0.16636092120115648 0.2377565672396906 0.16650846430797864 0.23641906783754657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16650846430797864 0.23641906783754657 C 0.1664144724928365 0.23411841702463612 0.1653718028649563 0.20532514070719038 0.16538056252627303 0.20881125808262124 C 0.1653718028649563 0.20532514070719038 0.16648858052600335 0.1934001927698559 0.16640334837217793 0.19458565933237632" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16640334837217793 0.19458565933237632 C 0.16661469518624014 0.1936448380900336 0.16951703187076603 0.18144862110016577 0.1689395101409243 0.18329580442426371 C 0.16951703187076603 0.18144862110016577 0.1736997840460585 0.1715130973614459 0.17333360913027893 0.1724194594432011" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3139035342189793,0.07685178038560904) rotate(0) scale(1,1) translate(-0.17302197079216816,-0.17193698964626375)"><path d="M 0.17040536278148055 0.17313870717623875 C 0.1706432659790051 0.17284626675087783 0.17364231123749338 0.16956446022491076 0.1732602011517751 0.16962942207190762 C 0.17364231123749338 0.16956446022491076 0.1751348906982937 0.17258664359064035 0.17499068381009994 0.1723591650122763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17499068381009994 0.1723591650122763 C 0.1749503346385776 0.1735255815777098 0.17421235082263467 0.18906649988977314 0.17450649375183167 0.18635616379747838 C 0.17421235082263467 0.18906649988977314 0.17120717490206133 0.20642711764667462 0.17146096865973598 0.20488319811981337" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17146096865973598 0.20488319811981337 C 0.1712114269585671 0.20641043273659265 0.1679806683456381 0.22664614113086634 0.1684664682457094 0.22321001352116485 C 0.1679806683456381 0.22664614113086634 0.16539511165997794 0.24802562242915338 0.16563136985888036 0.2461167294362312" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16563136985888036 0.2461167294362312 C 0.1655312902228589 0.24386088066799702 0.16436359790918878 0.21536872089462022 0.1644304142266229 0.21904654421742106 C 0.16436359790918878 0.21536872089462022 0.16486283736825816 0.20056087500805456 0.16482957404967083 0.20198284956262122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16482957404967083 0.20198284956262122 C 0.16501345398327572 0.20062890057121896 0.16750078231391366 0.18333178313359563 0.16703613325292951 0.18573546166579416 C 0.16750078231391366 0.18333178313359563 0.1706861319088598 0.17208897763544245 0.17040536278148055 0.17313870717623875" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g transform="translate(0.35736048961305483,0.08092617853905136) rotate(0) scale(1,1) translate(-0.1719217342075472,-0.16462012712208823)"><path d="M 0.174659693980205 0.15841506811034614 C 0.17501963557334715 0.16022856677409292 0.1793971663224001 0.18329814076075518 0.1789789930979109 0.18017705207530732 C 0.1793971663224001 0.18329814076075518 0.17973600430542255 0.1971757223574215 0.1796777726740755 0.19586813233572042" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1796777726740755 0.19586813233572042 C 0.17962425009206698 0.19714346221473242 0.17889268012201578 0.2138834803094278 0.17903550168997315 0.21117209088386446 C 0.17889268012201578 0.2138834803094278 0.17787461487263828 0.22984086498903197 0.17796391385858712 0.22840480544248062" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17796391385858712 0.22840480544248062 C 0.1777609487635213 0.22694641968188167 0.17510259061784983 0.20862357725333366 0.17552833271779744 0.21090417631529326 C 0.17510259061784983 0.20862357725333366 0.1726322316543338 0.20021540339760474 0.17285500865921563 0.2010376166989654" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17285500865921563 0.2010376166989654 C 0.17251674086915134 0.19928638107031058 0.16852095527952554 0.17671033809989464 0.16879579517844412 0.18002278915510753 C 0.16852095527952554 0.17671033809989464 0.16962035776333828 0.15972698860985285 0.16955692987219256 0.1612882040364109" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16955692987219256 0.1612882040364109 C 0.16979802901394472 0.16105131587290808 0.17287534991555287 0.1582061180805385 0.17245011957321849 0.15844554607437722 C 0.17287534991555287 0.1582061180805385 0.17484382518078723 0.1584125282800102 0.174659693980205 0.15841506811034614" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36248605121019567,0.0764174728246337) rotate(0) scale(1,1) translate(-0.17065161948019514,-0.16988053717297155)"><path d="M 0.17383914282036145 0.1724194594432011 C 0.174205317736141 0.17332582152495632 0.17881076353955794 0.18514298774836166 0.17823324180971617 0.18329580442426371 C 0.17881076353955794 0.18514298774836166 0.18098075039252473 0.19552648057471902 0.18076940357846252 0.19458565933237632" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18076940357846252 0.19458565933237632 C 0.18085463573228794 0.19577112589489673 0.18178342976305062 0.2122973754580521 0.18179218942436734 0.20881125808262124 C 0.18178342976305062 0.2122973754580521 0.18057029582751966 0.23871971865045702 0.1806642876426618 0.23641906783754657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1806642876426618 0.23641906783754657 C 0.18051674453583963 0.23508156843540254 0.17833444836961038 0.21685160566282533 0.17889377036079585 0.22036907501181807 C 0.17833444836961038 0.21685160566282533 0.173540644864073 0.19202946570278503 0.1739524237484363 0.19420943564963372" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1739524237484363 0.19420943564963372 C 0.17381867810588125 0.1932771037245449 0.17212689981637316 0.1814702763890197 0.1723474760377757 0.18302145254856797 C 0.17212689981637316 0.1814702763890197 0.1712186785127585 0.17497647750059492 0.17130550909160597 0.17559532173505438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17130550909160597 0.17559532173505438 C 0.17117172561880986 0.17500954655435244 0.16991124356211562 0.16830136437564322 0.16970010741805266 0.168566019566631 C 0.16991124356211562 0.16830136437564322 0.1741840624372205 0.1727405794329153 0.17383914282036145 0.1724194594432011" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36078337143836203,0.07685178038560904) rotate(0) scale(1,1) translate(-0.16994746398775143,-0.17193698964626375)"><path d="M 0.1725640719984391 0.17313870717623875 C 0.17284484112581835 0.17418843671703504 0.17639795058797436 0.1881391401979927 0.17593330152699022 0.18573546166579416 C 0.17639795058797436 0.1881391401979927 0.17832374066385376 0.20333679855402348 0.17813986073024887 0.20198284956262122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17813986073024887 0.20198284956262122 C 0.1781731240488362 0.20340482411718788 0.1784722042358627 0.22272436754022193 0.17853902055329685 0.2190465442174211 C 0.1784722042358627 0.22272436754022193 0.17723798528501788 0.24837257820446537 0.17733806492103935 0.2461167294362312" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17733806492103935 0.2461167294362312 C 0.17710180672213693 0.244207836443309 0.17401716663413902 0.21977388591146335 0.17450296653421032 0.22321001352116485 C 0.17401716663413902 0.21977388591146335 0.17125892441901477 0.2033559635030341 0.17150846612018367 0.20488319811981337" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17150846612018367 0.20488319811981337 C 0.17125467236250902 0.20333927859295212 0.168168798098891 0.18364582770518365 0.16846294102808798 0.1863561637974784 C 0.168168798098891 0.18364582770518365 0.1679384017982974 0.1711927484468428 0.16797875096981973 0.1723591650122763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16797875096981973 0.1723591650122763 C 0.16812295785801346 0.17213168643391225 0.1700913437138628 0.16969438391890448 0.16970923362814452 0.16962942207190762 C 0.1700913437138628 0.16969438391890448 0.17280197519596363 0.17343114760159967 0.1725640719984391 0.17313870717623875" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252104)"><path d="M 0.027518731894252094 0.03351898730977576 C 0.026652669624412335 0.03351898730977576 0.022755389410133435 0.02376857225954999 0.022322358275213554 0.024518604186490434 C 0.022755389410133435 0.02376857225954999 0.03314813664821053 0.025268636113430876 0.03271510551329065 0.024518604186490434 C 0.03314813664821053 0.025268636113430876 0.026652669624412335 0.03351898730977576 0.027518731894252094 0.03351898730977576 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="お下げ左">
<g transform="translate(0.3173264160442866,0.08092617853905136) rotate(0) scale(1,1) translate(-0.1719217342075472,-0.16462012712208823)"><path d="M 0.1692163386769496 0.15840774135332153 C 0.16939693128080052 0.1584107940883093 0.17180126771614468 0.15868497530378461 0.17138344992316065 0.15844437417317467 C 0.17180126771614468 0.15868497530378461 0.17446737738189091 0.1615325033162632 0.1742301521927578 0.161294954920641" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1742301521927578 0.161294954920641 C 0.1742974346804549 0.16285627114328607 0.17477876692533523 0.18334227378994525 0.1750375420451226 0.18003074959238183 C 0.17477876692533523 0.18334227378994525 0.17079879314782515 0.20278345326632033 0.17112485075530956 0.20103324529140199" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17112485075530956 0.20103324529140199 C 0.1709112305394669 0.20177372261549115 0.16778879278440612 0.21212010042179688 0.16856140816519766 0.20991897318047184 C 0.16778879278440612 0.21212010042179688 0.1612944710208622 0.2289074221045385 0.1618534661858111 0.22744677218730258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1618534661858111 0.22744677218730258 C 0.16209435869194583 0.22608870837592607 0.16495777927529853 0.20851652565897172 0.16474417625942778 0.21115000645078447 C 0.16495777927529853 0.20851652565897172 0.1643894128859963 0.1945695857051135 0.16441670237626024 0.19584500268554975" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16441670237626024 0.19584500268554975 C 0.16446956060434245 0.19453763850204206 0.16545097080497073 0.17703686070577188 0.1650510011132466 0.18015663248345756 C 0.16545097080497073 0.17703686070577188 0.16956345014059152 0.15659533375914353 0.1692163386769496 0.15840774135332153" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3122864348406378,0.07640813410956958) rotate(0) scale(1,1) translate(-0.17652113247044526,-0.16988053717297155)"><path d="M 0.17333534186404284 0.17238095539742485 C 0.17368116947526002 0.17206401347862485 0.17768607228602867 0.1688447499900288 0.17748527319864907 0.168577652371825 C 0.17768607228602867 0.1688447499900288 0.17559990238876064 0.17617016635287405 0.1757449309125982 0.17558612681587027" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1757449309125982 0.17558612681587027 C 0.17564516549258413 0.17620378499362102 0.174294804269068 0.18454619337182154 0.17454774587242916 0.18299802494887932 C 0.174294804269068 0.18454619337182154 0.17255645548891696 0.1950946581363686 0.17270963167226405 0.1941641478911771" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17270963167226405 0.1941641478911771 C 0.17227237543973026 0.19589607323606859 0.1662310776011839 0.21775300836474096 0.16746255688185863 0.21494725202987475 C 0.1662310776011839 0.21775300836474096 0.15713765725602655 0.22890705489954646 0.15793188030416747 0.22783322390957172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15793188030416747 0.22783322390957172 C 0.15842523526947386 0.22662639745346602 0.1645757535376201 0.21069421281710454 0.1638521398878443 0.21335130643630346 C 0.1645757535376201 0.21069421281710454 0.16684550278594634 0.19449783331609163 0.16661524410147696 0.19594810047918484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16661524410147696 0.19594810047918484 C 0.16688997110089437 0.19470966123880307 0.17047197624136645 0.17912290083779026 0.16991196809448597 0.1810868295946036 C 0.17047197624136645 0.17912290083779026 0.1736206230115059 0.17165546588099329 0.17333534186404284 0.17238095539742485" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31395621984782957,0.07684244167054492) rotate(0) scale(1,1) translate(-0.17302197079216816,-0.17193698964626375)"><path d="M 0.17045591409834876 0.17313870717623872 C 0.1706892211470146 0.1728462667508778 0.17363032662753664 0.16956446022491076 0.17325559868233875 0.16962942207190762 C 0.17363032662753664 0.16956446022491076 0.17509407033725544 0.17258664359064035 0.1749526494407234 0.1723591650122763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1749526494407234 0.1723591650122763 C 0.17491307979129478 0.1735255815777098 0.17418935338554514 0.18906649988977317 0.17447781364758005 0.1863561637974784 C 0.17418935338554514 0.18906649988977317 0.17124223568369823 0.20642711764667465 0.17149112629630453 0.2048831981198134" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17149112629630453 0.2048831981198134 C 0.1711804251006619 0.20621255103793162 0.16646397942245836 0.22401710330166144 0.16776271194859285 0.22083543313723225 C 0.16646397942245836 0.22401710330166144 0.1549183046521988 0.24491555733927478 0.15590633598269066 0.24306324009296382" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15590633598269066 0.24306324009296382 C 0.15647655333623398 0.24129742222078887 0.1635497237467159 0.2185348661916193 0.16274894422521036 0.22187342562686455 C 0.1635497237467159 0.2185348661916193 0.1657462524087192 0.2014277853069506 0.165515690240757 0.2030005268700209" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.165515690240757 0.2030005268700209 C 0.1656520307280764 0.20156177143633533 0.16756346141005599 0.18324697669131232 0.16715177608859 0.18573546166579416 C 0.16756346141005599 0.18324697669131232 0.17073125893249533 0.17208897763544242 0.17045591409834876 0.17313870717623872" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g transform="translate(0.35736048961305483,0.08092617853905136) rotate(0) scale(1,1) translate(-0.1719217342075472,-0.16462012712208823)"><path d="M 0.17462712973814482 0.15840774135332153 C 0.17497424120178673 0.16022014894749953 0.17919243699357187 0.18327640426114325 0.17879246730184775 0.18015663248345756 C 0.17919243699357187 0.18327640426114325 0.17947962426691635 0.19715236686905743 0.17942676603883415 0.19584500268554975" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17942676603883415 0.19584500268554975 C 0.1793994765485702 0.19712041966598598 0.17931289517153742 0.21378348724259721 0.17909929215566667 0.21115000645078447 C 0.17931289517153742 0.21378348724259721 0.1822308947354181 0.2288048359986791 0.18199000222928335 0.22744677218730258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18199000222928335 0.22744677218730258 C 0.18143100706433446 0.22598612227006667 0.17450944486910522 0.2077178459391468 0.17528206024989676 0.20991897318047184 C 0.17450944486910522 0.2077178459391468 0.17250499744394215 0.20029276796731282 0.17271861765978483 0.20103324529140199" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17271861765978483 0.20103324529140199 C 0.17239256005230041 0.19928303731648364 0.16854715125018443 0.1767192253948184 0.1688059263699718 0.18003074959238183 C 0.16854715125018443 0.1767192253948184 0.1696805987100337 0.15973363869799592 0.1696133162223366 0.161294954920641" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1696133162223366 0.161294954920641 C 0.16985054141146969 0.1610574065250188 0.1728778362849177 0.15820377304256472 0.17246001849193368 0.15844437417317467 C 0.1728778362849177 0.15820377304256472 0.17480772234199574 0.15840468861833376 0.17462712973814482 0.15840774135332153" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3624004708167038,0.07640813410956958) rotate(0) scale(1,1) translate(-0.17065161948019514,-0.16988053717297155)"><path d="M 0.1738374100865976 0.17238095539742485 C 0.17412269123406066 0.1731064449138564 0.17782079200303497 0.1830507583514169 0.17726078385615449 0.18108682959460357 C 0.17782079200303497 0.1830507583514169 0.1808322348485809 0.19718653971956662 0.1805575078491635 0.19594810047918484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1805575078491635 0.19594810047918484 C 0.18078776653363288 0.19739836764227806 0.18404422571257195 0.21600840005550237 0.18332061206279615 0.21335130643630346 C 0.18404422571257195 0.21600840005550237 0.18973422661177938 0.22904005036567743 0.189240871646473 0.22783322390957172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.189240871646473 0.22783322390957172 C 0.18844664859833207 0.22675939291959699 0.17847871578810717 0.21214149569500854 0.17971019506878189 0.21494725202987475 C 0.17847871578810717 0.21214149569500854 0.17402586404584255 0.19243222254628564 0.17446312027837635 0.1941641478911771" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17446312027837635 0.1941641478911771 C 0.17430994409502926 0.19323363764598564 0.17237206447485018 0.1814498565259371 0.17262500607821135 0.18299802494887932 C 0.17237206447485018 0.1814498565259371 0.1713280556180282 0.17496846863811952 0.17142782103804227 0.17558612681587027" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17142782103804227 0.17558612681587027 C 0.1712827925142047 0.17500208727886649 0.16988827783937097 0.16831055475362122 0.16968747875199136 0.168577652371825 C 0.16988827783937097 0.16831055475362122 0.17418323769781477 0.17269789731622484 0.1738374100865976 0.17238095539742485" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36073068580951184,0.07684244167054492) rotate(0) scale(1,1) translate(-0.16994746398775143,-0.17193698964626375)"><path d="M 0.1725135206815709 0.17313870717623872 C 0.17278886551571745 0.17418843671703502 0.17622934401279572 0.188223946640276 0.17581765869132973 0.18573546166579416 C 0.17622934401279572 0.188223946640276 0.17759008502648216 0.20443928230370648 0.17745374453916274 0.2030005268700209" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17745374453916274 0.2030005268700209 C 0.17768430670712496 0.2045732684330912 0.18102127007621494 0.2252119850621098 0.1802204905547094 0.22187342562686455 C 0.18102127007621494 0.2252119850621098 0.18763331615077233 0.24482905796513876 0.18706309879722904 0.24306324009296382" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18706309879722904 0.24306324009296382 C 0.1860750674667372 0.24121092284665285 0.17390799030519236 0.21765376297280306 0.17520672283132685 0.22083543313723225 C 0.17390799030519236 0.21765376297280306 0.17116760728797248 0.20355384520169517 0.17147830848361512 0.2048831981198134" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17147830848361512 0.2048831981198134 C 0.17122941787100882 0.20333927859295214 0.1682031608703047 0.18364582770518365 0.16849162113233962 0.1863561637974784 C 0.1682031608703047 0.18364582770518365 0.16797721568976767 0.1711927484468428 0.16801678533919628 0.1723591650122763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16801678533919628 0.1723591650122763 C 0.16815820623572833 0.17213168643391225 0.17008856404277878 0.16969438391890448 0.1697138360975809 0.16962942207190762 C 0.17008856404277878 0.16969438391890448 0.17274682773023672 0.17343114760159964 0.1725135206815709 0.17313870717623872" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252104)"><path d="M 0.027518731894252094 0.03351898730977576 C 0.026652669624412335 0.03351898730977576 0.022755389410133435 0.02376857225954999 0.022322358275213554 0.024518604186490434 C 0.022755389410133435 0.02376857225954999 0.03314813664821053 0.025268636113430876 0.03271510551329065 0.024518604186490434 C 0.03314813664821053 0.025268636113430876 0.026652669624412335 0.03351898730977576 0.027518731894252094 0.03351898730977576 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="お下げ左">
<g transform="translate(0.3173264160442866,0.08092617853905136) rotate(0) scale(1,1) translate(-0.1719217342075472,-0.16462012712208823)"><path d="M 0.1692143574946937 0.1583730178269807 C 0.16940388556361108 0.15838020904705297 0.17192219077378063 0.15876782849354715 0.17148869432170227 0.15845931246784783 C 0.17192219077378063 0.15876782849354715 0.17466028330279473 0.16237653494099963 0.17441631491963377 0.16207521013537257" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17441631491963377 0.16207521013537257 C 0.17425548895681725 0.1647686024845123 0.17209835261174494 0.20032591247798304 0.17248640336583546 0.19439591832504932 C 0.17209835261174494 0.20032591247798304 0.16953248107927368 0.23647174177437122 0.16975970587054767 0.23323513997057724" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16975970587054767 0.23323513997057724 C 0.16960201080234075 0.23303769735984745 0.16757623712212513 0.23048393710569295 0.1678673650520647 0.23086582864181973 C 0.16757623712212513 0.23048393710569295 0.16613273784954002 0.22846799261165887 0.1662661707112727 0.22865244153705586" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1662661707112727 0.22865244153705586 C 0.16612091004257623 0.2255974443800973 0.16476872491886682 0.18613585701104673 0.16452304268691506 0.19199247565355299 C 0.16476872491886682 0.18613585701104673 0.16960530039534194 0.15557139634143302 0.1692143574946937 0.1583730178269807" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3115978044718174,0.07583439833526574) rotate(0) scale(1,1) translate(-0.1765211324704453,-0.1709985396473049)"><path d="M 0.1734317577722759 0.17517836874503567 C 0.1737811016045039 0.17480221437227078 0.17784601673911646 0.17083393890083706 0.1776238837590119 0.17066451627185714 C 0.17784601673911646 0.17083393890083706 0.17597014268140743 0.17775701729453972 0.17609735353353084 0.1772114402927949" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17609735353353084 0.1772114402927949 C 0.17593348061866307 0.17893463549840072 0.17353556348206053 0.20241625663905766 0.17413087855511766 0.19788978276006486 C 0.17353556348206053 0.20241625663905766 0.16852213049865608 0.2343324055140955 0.16895357265684544 0.23152912684070853" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16895357265684544 0.23152912684070853 C 0.16881872937813605 0.2316232887169701 0.16705363565167683 0.2328354389178642 0.16733545331233274 0.23265906935584726 C 0.16705363565167683 0.2328354389178642 0.16542478634702804 0.23372776927066718 0.16557176072897456 0.23364556158491182" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16557176072897456 0.23364556158491182 C 0.16587282610108403 0.23049615427827644 0.16983954494789658 0.19098040783529777 0.16918454519428813 0.19585267390528743 C 0.16983954494789658 0.19098040783529777 0.17378569215377487 0.17345550998168136 0.1734317577722759 0.17517836874503567" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31377257459156865,0.0751403693986439) rotate(0) scale(1,1) translate(-0.17316172110145983,-0.17123823809980537)"><path d="M 0.17044156450340722 0.17510778385342177 C 0.1706805433745557 0.17473770963960308 0.17370139227623044 0.17057834817583561 0.1733093109571892 0.17066689328759763 C 0.17370139227623044 0.17057834817583561 0.1752996427797945 0.17432677161433438 0.1751465403319018 0.1740452425122777" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1751465403319018 0.1740452425122777 C 0.17504476583936118 0.17622309817364906 0.1733175004746853 0.20612680882436346 0.1739252464214144 0.20017951044873405 C 0.1733175004746853 0.20612680882436346 0.16734761751696392 0.24918226573408844 0.1678535889711524 0.24541282301983042" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1678535889711524 0.24541282301983042 C 0.16773164805779492 0.24526402002109324 0.16614641618414755 0.2433295810375099 0.16639029801086253 0.24362718703498426 C 0.16614641618414755 0.2433295810375099 0.16480506613721504 0.24169274805140092 0.16492700705057253 0.2418415510501381" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16492700705057253 0.2418415510501381 C 0.16509387774483483 0.238385010499263 0.16738900183612293 0.1948019171732438 0.16692945538172005 0.20036306443963683 C 0.16738900183612293 0.1948019171732438 0.17073424026354783 0.17300317713790384 0.17044156450340722 0.17510778385342177" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g transform="translate(0.35736048961305483,0.08092617853905136) rotate(0) scale(1,1) translate(-0.1719217342075472,-0.16462012712208823)"><path d="M 0.1746291109204007 0.1583730178269807 C 0.1750200538210489 0.1611746393125284 0.179566107960131 0.19784909429605924 0.17932042572817924 0.19199247565355299 C 0.179566107960131 0.19784909429605924 0.17743203703512525 0.23170743869401442 0.17757729770382172 0.22865244153705586" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17757729770382172 0.22865244153705586 C 0.17744386484208904 0.22883689046245284 0.17568497543309006 0.2312477201779465 0.17597610336302963 0.23086582864181973 C 0.17568497543309006 0.2312477201779465 0.17392606747633982 0.23343258258130703 0.17408376254454672 0.23323513997057724" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17408376254454672 0.23323513997057724 C 0.17385653775327273 0.22999853816678326 0.17096901429516848 0.1884659241721156 0.171357065049259 0.19439591832504932 C 0.17096901429516848 0.1884659241721156 0.16926632753264412 0.15938181778623284 0.16942715349546064 0.16207521013537257" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16942715349546064 0.16207521013537257 C 0.1696711218786216 0.16177388532974551 0.1727882705454704 0.15815079644214852 0.17235477409339206 0.15845931246784783 C 0.1727882705454704 0.15815079644214852 0.1748186389893181 0.15836582660690846 0.1746291109204007 0.1583730178269807" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3630891011855241,0.07583439833526574) rotate(0) scale(1,1) translate(-0.1706516194801951,-0.1709985396473049)"><path d="M 0.17374099417836453 0.17517836874503567 C 0.1740949285598635 0.17690122750839 0.17864320650996074 0.2007249399752771 0.1779882067563523 0.19585267390528743 C 0.17864320650996074 0.2007249399752771 0.18190205659377537 0.2367949688915472 0.1816009912216659 0.23364556158491182" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1816009912216659 0.23364556158491182 C 0.1814540168397194 0.23356335389915645 0.17955548097765187 0.23248269979383032 0.17983729863830777 0.23265906935584726 C 0.17955548097765187 0.23248269979383032 0.17808433601508555 0.23143496496444696 0.17821917929379497 0.23152912684070853" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17821917929379497 0.23152912684070853 C 0.1777877371356056 0.22872584816732155 0.1724465583224657 0.19336330888107206 0.1730418733955228 0.19788978276006486 C 0.1724465583224657 0.19336330888107206 0.17091152550224184 0.17548824508718908 0.17107539841710961 0.1772114402927949" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17107539841710961 0.1772114402927949 C 0.1709481875649862 0.17666586329105008 0.1697710011717332 0.1704950936428772 0.16954886819162862 0.17066451627185714 C 0.1697710011717332 0.1704950936428772 0.1740903380105925 0.17555452311780056 0.17374099417836453 0.17517836874503567" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36091433106577275,0.0751403693986439) rotate(0) scale(1,1) translate(-0.16980771367845976,-0.17123823809980537)"><path d="M 0.17252787027651248 0.17510778385342177 C 0.1728205460366531 0.1772123905689397 0.1764995258526025 0.20592421170602987 0.17603997939819963 0.20036306443963683 C 0.1764995258526025 0.20592421170602987 0.1782092984236095 0.2452980916010132 0.1780424277293472 0.2418415510501381" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1780424277293472 0.2418415510501381 C 0.17792048681598968 0.24199035404887528 0.17633525494234217 0.24392479303245862 0.17657913676905715 0.24362718703498426 C 0.17633525494234217 0.24392479303245862 0.17499390489540986 0.2455616260185676 0.17511584580876735 0.24541282301983042" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17511584580876735 0.24541282301983042 C 0.17460987435457886 0.2416433803055724 0.16843644241177624 0.19423221207310465 0.16904418835850535 0.20017951044873405 C 0.16843644241177624 0.19423221207310465 0.1677211199554773 0.17186738685090636 0.16782289444801793 0.1740452425122777" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16782289444801793 0.1740452425122777 C 0.16797599689591064 0.17376371341022104 0.17005220514177166 0.17075543839935964 0.16966012382273044 0.17066689328759763 C 0.17005220514177166 0.17075543839935964 0.172766849147661 0.17547785806724045 0.17252787027651248 0.17510778385342177" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@@ -0,0 +1,86 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07847599559563229) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252104)"><path d="M 0.027518731894252094 0.03351898730977576 C 0.026652669624412335 0.03351898730977576 0.022755389410133435 0.02376857225954999 0.022322358275213554 0.024518604186490434 C 0.022755389410133435 0.02376857225954999 0.03314813664821053 0.025268636113430876 0.03271510551329065 0.024518604186490434 C 0.03314813664821053 0.025268636113430876 0.026652669624412335 0.03351898730977576 0.027518731894252094 0.03351898730977576 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="お下げ左">
<g transform="translate(0.3173264160442866,0.08092617853905136) rotate(0) scale(1,1) translate(-0.1719217342075472,-0.16462012712208823)"><path d="M 0.1688275893928575 0.15838385892897205 C 0.16904419290019165 0.15838959752258971 0.17192225599752825 0.15869891784089207 0.1714268314808673 0.158452722052384 C 0.17192225599752825 0.15869891784089207 0.1750515046021158 0.1615786655859591 0.174772683592789 0.16133820839106872" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174772683592789 0.16133820839106872 C 0.17467273267800226 0.16330907576956588 0.17318185363142347 0.18830240830993247 0.1735732726153481 0.18498861693303478 C 0.17318185363142347 0.18830240830993247 0.16978418771655554 0.2024466289122414 0.17007565578569342 0.2011037049138409" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17007565578569342 0.2011037049138409 C 0.170584178039291 0.20158294460325982 0.17610316804471837 0.20727128235891204 0.17617792282886433 0.20685458118686792 C 0.17610316804471837 0.20727128235891204 0.1685953213381983 0.20604158046099547 0.16917859837594185 0.20610411897837028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16917859837594185 0.20610411897837028 C 0.16968712062953942 0.2065833586677892 0.17520611063496683 0.21227169642344143 0.17528086541911278 0.2118549952513973 C 0.17520611063496683 0.21227169642344143 0.16769826392844672 0.21104199452552477 0.16828154096619027 0.21110453304289958" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16828154096619027 0.21110453304289958 C 0.16879006321978784 0.2115837727323185 0.17430905322521525 0.2172721104879707 0.1743838080093612 0.2168554093159266 C 0.17430905322521525 0.2172721104879707 0.16680120651869518 0.2160424085900541 0.16738448355643873 0.21610494710742892" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16738448355643873 0.21610494710742892 C 0.1678930058100363 0.21658418679684782 0.17341199581546368 0.22227252455250004 0.17348675059960963 0.22185582338045592 C 0.17341199581546368 0.22227252455250004 0.1659041491089436 0.22104282265458347 0.16648742614668716 0.22110536117195828" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16648742614668716 0.22110536117195828 C 0.16699594840028473 0.2215846008613772 0.1725149384057121 0.2272729386170294 0.17258969318985806 0.2268562374449853 C 0.1725149384057121 0.2272729386170294 0.16500709169919203 0.22604323671911275 0.16559036873693558 0.22610577523648756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16559036873693558 0.22610577523648756 C 0.16610763121223257 0.22612655688980257 0.17174024409975228 0.22585494017610383 0.17179751844049942 0.22635515507626755 C 0.17174024409975228 0.22585494017610383 0.16432853983192572 0.21958219988104416 0.16490307664796985 0.2201031964345229" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16490307664796985 0.2201031964345229 C 0.16542033912326684 0.2201239780878379 0.17105295201078655 0.2198523613741392 0.1711102263515337 0.2203525762743029 C 0.17105295201078655 0.2198523613741392 0.16364124774296002 0.21357962107907946 0.16421578455900415 0.2141006176325582" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16421578455900415 0.2141006176325582 C 0.16473304703430114 0.2141213992858732 0.17036565992182084 0.2138497825721745 0.170422934262568 0.2143499974723382 C 0.17036565992182084 0.2138497825721745 0.1629539556539943 0.20757704227711476 0.16352849247003842 0.2080980388305935" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16352849247003842 0.2080980388305935 C 0.1640457549453354 0.2081188204839085 0.16967836783285511 0.20784720377020982 0.16973564217360226 0.20834741867037354 C 0.16967836783285511 0.20784720377020982 0.16226666356502858 0.2015744634751501 0.16284120038107272 0.20209546002862883" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16284120038107272 0.20209546002862883 C 0.1633584628563697 0.20211624168194384 0.1689910757438894 0.20184462496824512 0.16904835008463656 0.20234483986840884 C 0.1689910757438894 0.20184462496824512 0.16157937147606286 0.19557188467318548 0.162153908292107 0.1960928812266642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.162153908292107 0.1960928812266642 C 0.16224928146645193 0.19475288596246537 0.16385452647597543 0.17687051953147057 0.1632983863842462 0.18001293805627824 C 0.16385452647597543 0.17687051953147057 0.16928835631024178 0.15658143566836322 0.1688275893928575 0.15838385892897205" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3108931731182212,0.07701156415111186) rotate(0) scale(1,1) translate(-0.17833788649123686,-0.1705792887194299)"><path d="M 0.1741083101455367 0.1727038643902865 C 0.1745493299882404 0.1723942279219877 0.1796485407973276 0.1692587256383024 0.179400548257981 0.16898822677070055 C 0.1796485407973276 0.1692587256383024 0.17689119331433895 0.17652998613740947 0.17708422061769602 0.1759498508015088" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17708422061769602 0.1759498508015088 C 0.17694757065975472 0.1765644210115378 0.1751544389397822 0.1849158154560259 0.17544442112240052 0.1833246933218569 C 0.1751544389397822 0.1849158154560259 0.17345110220159912 0.1960198683356764 0.17360443442627616 0.19504331641153644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17360443442627616 0.19504331641153644 C 0.17392905915226572 0.19540785517989517 0.17723167718399518 0.20007225340256118 0.1774999311381511 0.19941778163184135 C 0.17723167718399518 0.20007225340256118 0.16979250829625958 0.20318691066253558 0.1703853869764051 0.20289697766017448" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1703853869764051 0.20289697766017448 C 0.17071001170239467 0.2032615164285332 0.1740126297341241 0.20792591465119917 0.17428088368828 0.20727144288047933 C 0.1740126297341241 0.20792591465119917 0.16657346084638852 0.21104057191117354 0.167166339526534 0.21075063890881243" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.167166339526534 0.21075063890881243 C 0.16749096425252358 0.21111517767717117 0.17089434240165846 0.21579566445607506 0.1710618362384089 0.21512510412911726 C 0.17089434240165846 0.21579566445607506 0.1646642949227889 0.21910338439090513 0.1651564134855289 0.21879736283230605" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1651564134855289 0.21879736283230605 C 0.16551893033416096 0.2191375404454075 0.16930962959964047 0.22355046006402945 0.16950661566911376 0.22287949418952355 C 0.16930962959964047 0.22355046006402945 0.16223307773374412 0.22717974158778134 0.16279258065184948 0.2268489533263769" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16279258065184948 0.2268489533263769 C 0.16315509750048154 0.22718913093947835 0.16694579676596102 0.23160205055810024 0.16714278283543432 0.23093108468359433 C 0.16694579676596102 0.23160205055810024 0.15986924490006463 0.23523133208185212 0.16042874781817 0.23490054382044767" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16042874781817 0.23490054382044767 C 0.1609192713749107 0.23458833040855379 0.1663740578458024 0.2305201667022361 0.1663150304990584 0.2311539828777209 C 0.1663740578458024 0.2305201667022361 0.160705579769101 0.2269731469510391 0.1611370759790977 0.22729474971463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1611370759790977 0.22729474971463 C 0.1616275995358384 0.2269825363027361 0.16708238600673017 0.22291437259641836 0.1670233586599862 0.22354818877190316 C 0.16708238600673017 0.22291437259641836 0.16141390793002877 0.21936735284522138 0.1618454041400255 0.2196889556088123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1618454041400255 0.2196889556088123 C 0.16225988720993423 0.21937674683713212 0.16683834873519152 0.2152793252456035 0.16681920097893033 0.2159424503486502 C 0.16683834873519152 0.2152793252456035 0.1616798419015122 0.21138053804088544 0.16207517721515974 0.21173145437225196" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16207517721515974 0.21173145437225196 C 0.16259734530764727 0.21145514380688307 0.16846802710385006 0.20778850069109 0.16834119432501007 0.20841572758782542 C 0.16846802710385006 0.20778850069109 0.16320183524759188 0.20385381528006058 0.16359717056123943 0.2042047316114271" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16359717056123943 0.2042047316114271 C 0.16411933865372696 0.20392842104605824 0.16999002044992975 0.20026177793026526 0.16986318767108977 0.20088900482700064 C 0.16999002044992975 0.20026177793026526 0.16472382859367157 0.19632709251923583 0.16511916390731912 0.19667800885060235" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16511916390731912 0.19667800885060235 C 0.16549614245610803 0.19539876196354572 0.17039200201263735 0.1793292008342297 0.16964290649278588 0.1813270462059227 C 0.17039200201263735 0.1793292008342297 0.17448042711659928 0.17198526590565016 0.1741083101455367 0.1727038643902865" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.313180780420132,0.07607151415294065) rotate(0) scale(1,1) translate(-0.17274247017358482,-0.1710984877905137)"><path d="M 0.1691225365965632 0.17314812991836845 C 0.16944806117852076 0.17286115175614422 0.17347018654426102 0.16960634038601702 0.17302883158005378 0.16970439197167786 C 0.17347018654426102 0.16960634038601702 0.17453462654930002 0.17216043746700166 0.1744187961670503 0.1719715108904383" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1744187961670503 0.1719715108904383 C 0.17449013232521593 0.1731341212640635 0.17520566979954844 0.1886877562469508 0.1752748300650378 0.18592283537394078 C 0.17520566979954844 0.1886877562469508 0.17344837655752293 0.20675287186594363 0.17358887298117792 0.2051505613665588" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17358887298117792 0.2051505613665588 C 0.17300795700647545 0.20551977166057253 0.16658259206122064 0.2102641948793917 0.16661788128474825 0.20958108489472357 C 0.16658259206122064 0.2102641948793917 0.17371102905002148 0.21366178087323073 0.1731654022988466 0.21334788118257633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1731654022988466 0.21334788118257633 C 0.17258448632414414 0.21371709147659007 0.16615912137888939 0.21846151469540928 0.166194410602417 0.21777840471074114 C 0.16615912137888939 0.21846151469540928 0.17328755836769022 0.2218591006892483 0.17274193161651535 0.2215452009985939" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17274193161651535 0.2215452009985939 C 0.17216101564181288 0.22191441129260764 0.1657356506965581 0.2266588345114269 0.1657709399200857 0.22597572452675876 C 0.1657356506965581 0.2266588345114269 0.17286408768535894 0.23005642050526587 0.17231846093418407 0.22974252081461147" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17231846093418407 0.22974252081461147 C 0.1717375449594816 0.2301117311086252 0.16531218001422682 0.23485615432744444 0.16534746923775442 0.2341730443427763 C 0.16531218001422682 0.23485615432744444 0.17244061700302765 0.2382537403212834 0.1718949902518528 0.237939840630629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1718949902518528 0.237939840630629 C 0.1713140742771503 0.23830905092464275 0.16488870933189556 0.2430534741434621 0.16492399855542317 0.24237036415879396 C 0.16488870933189556 0.2430534741434621 0.17201714632069634 0.24645106013730106 0.17147151956952147 0.24613716044664666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17147151956952147 0.24613716044664666 C 0.1708586491423262 0.24580504664944663 0.1640178763146651 0.2414322566824871 0.1641170744431783 0.2421517948802465 C 0.1640178763146651 0.2414322566824871 0.17079481432604512 0.2371152776729747 0.17028114202736305 0.23750270207353405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17028114202736305 0.23750270207353405 C 0.16966827160016779 0.23717058827633403 0.16282749877250663 0.23279779830937447 0.16292669690101982 0.23351733650713385 C 0.16282749877250663 0.23279779830937447 0.16960443678388668 0.22848081929986216 0.1690907644852046 0.22886824370042153" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1690907644852046 0.22886824370042153 C 0.16847789405800934 0.2285361299032215 0.1616371212303482 0.22416333993626186 0.1617363193588614 0.22488287813402125 C 0.1616371212303482 0.22416333993626186 0.16841405924172825 0.21984636092674953 0.16790038694304618 0.2202337853273089" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16790038694304618 0.2202337853273089 C 0.16728751651585091 0.21990167153010887 0.16044674368818973 0.2155288815631493 0.16054594181670293 0.2162484197609087 C 0.16044674368818973 0.2155288815631493 0.1672236816995698 0.2112119025536371 0.16671000940088773 0.21159932695419645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16671000940088773 0.21159932695419645 C 0.16609713897369247 0.21126721315699643 0.15925636614603136 0.20689442319003676 0.15935556427454456 0.20761396138779614 C 0.15925636614603136 0.20689442319003676 0.16603330415741144 0.20257744418052448 0.16551963185872937 0.20296486858108384" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16551963185872937 0.20296486858108384 C 0.16555328657894114 0.20142663504787325 0.1662237305627569 0.18202133796066375 0.16592348850127075 0.1845060661825567 C 0.1662237305627569 0.18202133796066375 0.1693891239378376 0.1722016352296861 0.1691225365965632 0.17314812991836845" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="お下げ右">
<g transform="translate(0.35736048961305483,0.08092617853905136) rotate(0) scale(1,1) translate(-0.1719217342075472,-0.16462012712208823)"><path d="M 0.17501587902223692 0.15838385892897205 C 0.1754766459396212 0.1601862821895809 0.1811012221225774 0.18315535658108592 0.18054508203084818 0.18001293805627824 C 0.1811012221225774 0.18315535658108592 0.18178493329733236 0.19743287649086305 0.18168956012298743 0.1960928812266642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18168956012298743 0.1960928812266642 C 0.1811150233069433 0.19661387778014294 0.17473784398971065 0.20284505476857256 0.1747951183304578 0.20234483986840884 C 0.17473784398971065 0.20284505476857256 0.18151953050931863 0.20207467837531382 0.18100226803402164 0.20209546002862883" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18100226803402164 0.20209546002862883 C 0.1804277312179775 0.20261645658210756 0.17405055190074498 0.20884763357053726 0.17410782624149213 0.20834741867037354 C 0.17405055190074498 0.20884763357053726 0.18083223842035295 0.20807725717727849 0.18031497594505597 0.2080980388305935" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18031497594505597 0.2080980388305935 C 0.17974043912901183 0.20861903538407223 0.1733632598117792 0.21485021237250193 0.17342053415252634 0.2143499974723382 C 0.1733632598117792 0.21485021237250193 0.18014494633138717 0.21407983597924318 0.17962768385609018 0.2141006176325582" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17962768385609018 0.2141006176325582 C 0.17905314704004605 0.21462161418603692 0.17267596772281352 0.22085279117446663 0.17273324206356067 0.2203525762743029 C 0.17267596772281352 0.22085279117446663 0.1794576542424215 0.22008241478120788 0.1789403917671245 0.2201031964345229" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1789403917671245 0.2201031964345229 C 0.17836585495108037 0.22062419298800162 0.17198867563384784 0.22685536997643127 0.172045949974595 0.22635515507626755 C 0.17198867563384784 0.22685536997643127 0.17877036215345582 0.22608499358317255 0.17825309967815883 0.22610577523648756" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17825309967815883 0.22610577523648756 C 0.17766982264041528 0.22616831375386237 0.17117902044109037 0.22643953627294117 0.17125377522523633 0.2268562374449853 C 0.17117902044109037 0.22643953627294117 0.17786456452200486 0.22062612148253935 0.1773560422684073 0.22110536117195828" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1773560422684073 0.22110536117195828 C 0.17677276523066374 0.2211678996893331 0.1702819630313388 0.2214391222084118 0.17035671781548478 0.22185582338045592 C 0.1702819630313388 0.2214391222084118 0.1769675071122532 0.21562570741801002 0.17645898485865563 0.21610494710742892" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17645898485865563 0.21610494710742892 C 0.1758757078209121 0.21616748562480373 0.16938490562158728 0.21643870814388247 0.16945966040573324 0.2168554093159266 C 0.16938490562158728 0.21643870814388247 0.17607044970250166 0.21062529335348068 0.1755619274489041 0.21110453304289958" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1755619274489041 0.21110453304289958 C 0.17497865041116054 0.2111670715602744 0.16848784821183563 0.2114382940793532 0.16856260299598158 0.2118549952513973 C 0.16848784821183563 0.2114382940793532 0.1751733922927501 0.20562487928895135 0.17466487003915254 0.20610411897837028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17466487003915254 0.20610411897837028 C 0.174081593001409 0.2061666574957451 0.16759079080208408 0.2064378800148238 0.16766554558623004 0.20685458118686792 C 0.16759079080208408 0.2064378800148238 0.17427633488299857 0.200624465224422 0.173767812629401 0.2011037049138409" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.173767812629401 0.2011037049138409 C 0.17347634456026312 0.19976078091544042 0.1698787768158217 0.1816748255561371 0.17027019579974634 0.18498861693303478 C 0.1698787768158217 0.1816748255561371 0.16897083390751869 0.15936734101257155 0.16907078482230542 0.16133820839106872" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16907078482230542 0.16133820839106872 C 0.16934960583163222 0.16109775119617833 0.172912061450888 0.15820652626387594 0.17241663693422704 0.158452722052384 C 0.172912061450888 0.15820652626387594 0.17523248252957108 0.1583781203353544 0.17501587902223692 0.15838385892897205" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3637937325391203,0.07701156415111189) rotate(0) scale(1,1) translate(-0.16883486545940354,-0.1705792887194299)"><path d="M 0.17306444180510372 0.1727038643902865 C 0.1734365587761663 0.17342246287492286 0.17827894097770602 0.18332489157761567 0.17752984545785455 0.1813270462059227 C 0.17827894097770602 0.18332489157761567 0.18243056659211024 0.19795725573765902 0.18205358804332133 0.19667800885060238" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18205358804332133 0.19667800885060238 C 0.18165825272967379 0.1970289251819689 0.1774363970583907 0.20151623172373603 0.17730956427955072 0.20088900482700064 C 0.1774363970583907 0.20151623172373603 0.18409774948188856 0.20448104217679597 0.18357558138940103 0.2042047316114271" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18357558138940103 0.2042047316114271 C 0.18318024607575348 0.20455564794279363 0.1789583904044703 0.20904295448456084 0.17883155762563033 0.20841572758782542 C 0.1789583904044703 0.20904295448456084 0.18561974282796825 0.21200776493762089 0.18509757473548072 0.211731454372252" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18509757473548072 0.211731454372252 C 0.18470223942183317 0.21208237070361852 0.18037269872797135 0.2166055754516969 0.18035355097171016 0.2159424503486502 C 0.18037269872797135 0.2166055754516969 0.18574183088052373 0.22000116438049247 0.185327347810615 0.2196889556088123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.185327347810615 0.2196889556088123 C 0.18489585160061828 0.22001055837240321 0.1802084206373982 0.22418200494738796 0.18014939329065421 0.22354818877190316 C 0.1802084206373982 0.22418200494738796 0.18652619952828348 0.22760696312652393 0.18603567597154277 0.22729474971463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18603567597154277 0.22729474971463 C 0.18560417976154603 0.22761635247822093 0.18091674879832598 0.2317877990532057 0.180857721451582 0.2311539828777209 C 0.18091674879832598 0.2317877990532057 0.18723452768921112 0.23521275723234156 0.18674400413247041 0.23490054382044767" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18674400413247041 0.23490054382044767 C 0.18618450121436506 0.23456975555904322 0.17983298304573284 0.23026011880908842 0.18002996911520613 0.23093108468359433 C 0.17983298304573284 0.23026011880908842 0.18474268814742298 0.22650877571327543 0.18438017129879092 0.2268489533263769" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18438017129879092 0.2268489533263769 C 0.18382066838068556 0.22651816506497244 0.1774691502120534 0.22220852831501764 0.17766613628152667 0.22287949418952355 C 0.1774691502120534 0.22220852831501764 0.18237885531374368 0.21845718521920462 0.1820163384651116 0.21879736283230608" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1820163384651116 0.21879736283230608 C 0.18152421990237158 0.218491341273707 0.17594342187548107 0.21445454380215945 0.1761109157122315 0.21512510412911726 C 0.17594342187548107 0.21445454380215945 0.18033103715009602 0.2103861001404537 0.18000641242410645 0.21075063890881243" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18000641242410645 0.21075063890881243 C 0.17941353374396096 0.21046070590645133 0.17262361430820455 0.2066169711097595 0.17289186826236047 0.20727144288047933 C 0.17262361430820455 0.2066169711097595 0.1771119897002249 0.20253243889181574 0.17678736497423533 0.20289697766017448" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17678736497423533 0.20289697766017448 C 0.17619448629408985 0.20260704465781337 0.16940456685833344 0.1987633098611215 0.16967282081248936 0.19941778163184135 C 0.16940456685833344 0.1987633098611215 0.17389294225035398 0.1946787776431777 0.17356831752436438 0.19504331641153644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17356831752436438 0.19504331641153644 C 0.17341498529968735 0.1940667644873965 0.17143834864562166 0.18173357118768793 0.17172833082824 0.1833246933218569 C 0.17143834864562166 0.18173357118768793 0.16995188137500314 0.1753352805914798 0.17008853133294444 0.1759498508015088" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17008853133294444 0.1759498508015088 C 0.16989550402958736 0.17536971546560812 0.16802019623200612 0.16871772790309872 0.16777220369265952 0.16898822677070058 C 0.16802019623200612 0.16871772790309872 0.1735054616478074 0.17301350085858533 0.17306444180510372 0.1727038643902865" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3615061252372094,0.07607151415294065) rotate(0) scale(1,1) translate(-0.17022696460633477,-0.1710984877905137)"><path d="M 0.17384689818335652 0.17314812991836845 C 0.17411348552463088 0.1740946246070508 0.17734618834013507 0.18699079440444963 0.17704594627864892 0.1845060661825567 C 0.17734618834013507 0.18699079440444963 0.1774834576414021 0.20450310211429443 0.17744980292119034 0.20296486858108384" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17744980292119034 0.20296486858108384 C 0.1779634752198724 0.2033522929816432 0.18351467237686195 0.20833349958555553 0.18361387050537514 0.20761396138779614 C 0.18351467237686195 0.20833349958555553 0.1756465549518367 0.21193144075139647 0.17625942537903197 0.21159932695419645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17625942537903197 0.21159932695419645 C 0.17677309767771404 0.2119867513547558 0.18232429483470358 0.21696795795866808 0.18242349296321678 0.2162484197609087 C 0.18232429483470358 0.21696795795866808 0.17445617740967828 0.22056589912450897 0.17506904783687355 0.22023378532730895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17506904783687355 0.22023378532730895 C 0.17558272013555562 0.2206212097278683 0.18113391729254516 0.22560241633178063 0.18123311542105836 0.22488287813402125 C 0.18113391729254516 0.22560241633178063 0.17326579986751986 0.22920035749762158 0.17387867029471513 0.22886824370042155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17387867029471513 0.22886824370042155 C 0.1743923425933972 0.2292556681009809 0.17994353975038674 0.23423687470489324 0.18004273787889993 0.23351733650713385 C 0.17994353975038674 0.23423687470489324 0.17207542232536144 0.23783481587073407 0.1726882927525567 0.23750270207353405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1726882927525567 0.23750270207353405 C 0.17320196505123875 0.2378901264740934 0.17875316220822818 0.24287133307800587 0.1788523603367414 0.2421517948802465 C 0.17875316220822818 0.24287133307800587 0.17088504478320293 0.24646927424384668 0.1714979152103982 0.24613716044664666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1714979152103982 0.24613716044664666 C 0.17204354196157307 0.24582326075599226 0.17801014700096887 0.24168725417412582 0.17804543622449648 0.24237036415879396 C 0.17801014700096887 0.24168725417412582 0.17049352855336447 0.23757063033661527 0.17107444452806694 0.237939840630629" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17107444452806694 0.237939840630629 C 0.1716200712792418 0.2376259409399746 0.1775866763186377 0.23348993435810816 0.1776219655421653 0.2341730443427763 C 0.1775866763186377 0.23348993435810816 0.1700700578710331 0.22937331052059773 0.17065097384573558 0.22974252081461147" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17065097384573558 0.22974252081461147 C 0.17119660059691044 0.22942862112395707 0.17716320563630644 0.22529261454209065 0.17719849485983405 0.22597572452675876 C 0.17716320563630644 0.22529261454209065 0.16964658718870188 0.22117599070458022 0.17022750316340435 0.22154520099859396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17022750316340435 0.22154520099859396 C 0.1707731299145792 0.22123130130793955 0.1767397349539751 0.217095294726073 0.1767750241775027 0.21777840471074114 C 0.1767397349539751 0.217095294726073 0.16922311650637067 0.21297867088856262 0.16980403248107315 0.21334788118257636" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16980403248107315 0.21334788118257636 C 0.170349659232248 0.21303398149192196 0.17631626427164387 0.20889797491005543 0.17635155349517148 0.20958108489472357 C 0.17631626427164387 0.20889797491005543 0.1687996458240393 0.20478135107254505 0.16938056179874178 0.2051505613665588" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16938056179874178 0.2051505613665588 C 0.1692400653750868 0.20354825086717396 0.1676254444493925 0.18315791450093077 0.16769460471488187 0.1859228353739408 C 0.1676254444493925 0.18315791450093077 0.16862197477103505 0.17080890051681308 0.16855063861286942 0.1719715108904383" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16855063861286942 0.1719715108904383 C 0.16866646899511914 0.17178258431387494 0.17038195816407323 0.1698024435573387 0.16994060319986598 0.16970439197167786 C 0.17038195816407323 0.1698024435573387 0.17417242276531408 0.17343510808059268 0.17384689818335652 0.17314812991836845" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

View File

@@ -0,0 +1,28 @@
id: BaseHair
original_key: 基髪
resource: 胴体
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name:
joints:
- position: [
0.3496084009802555,
0.3484280984670132
]
- position: [
0.39187296969485164,
0.3484280984670132
]
- position: [
0.37074068533755355,
0.3369604475899917
]
- position: [
0.37074068533755355,
0.34104165692268584
]

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.0851831332121245) rotate(0) scale(1,1) translate(-0.37074068533755355,-0.34774879453917806)"><path d="M 0.3512440706122735 0.3814710866087863 C 0.35072645269444197 0.37981373409020963 0.34471822406112906 0.35878276436390927 0.3450326555982956 0.36158285638586585 C 0.34471822406112906 0.35878276436390927 0.3484118394047021 0.3458537180865726 0.347470892166275 0.3478699823453072 C 0.3484118394047021 0.3458537180865726 0.3582631718903601 0.3361459196916798 0.35632402245942024 0.33738768528105073 C 0.3582631718903601 0.3361459196916798 0.37314346248390917 0.332968795272856 0.3707406853375536 0.332968795272856 C 0.37314346248390917 0.332968795272856 0.38709649764662674 0.3386294508704217 0.38515734821568687 0.33738768528105073 C 0.38709649764662674 0.3386294508704217 0.39495142574725917 0.3498862466040418 0.3940104785088321 0.3478699823453072 C 0.39495142574725917 0.3498862466040418 0.3961342835396451 0.3643829484078224 0.3964487150768116 0.36158285638586585 C 0.3961342835396451 0.3643829484078224 0.38971968214500213 0.383128439127363 0.39023730006283364 0.3814710866087863" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.39023730006283364 0.3814710866087863 C 0.3903917451129846 0.38054809812027235 0.39224519783158457 0.368925756250436 0.3920906406646448 0.37039522474661873 C 0.39224519783158457 0.368925756250436 0.39209209818290003 0.363290984646925 0.3920919860661112 0.36383746465459377" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3920919860661112 0.36383746465459377 C 0.39146736459574744 0.36305784955831255 0.3833038185113359 0.35359037426998396 0.3845965284217466 0.3544820834992192 C 0.3833038185113359 0.35359037426998396 0.37591137870113567 0.3530248597708164 0.3765794671411827 0.3531369539037704" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3765794671411827 0.3531369539037704 C 0.37609290199088025 0.3531416312147656 0.36976755503694875 0.3531930816357123 0.3707406853375536 0.3531930816357123 C 0.36976755503694875 0.3531930816357123 0.36441533838362195 0.35313227659277524 0.3649019035339244 0.3531369539037704" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3649019035339244 0.3531369539037704 C 0.3642338150938774 0.35324904803672447 0.35559213234294995 0.3553737927284545 0.35688484225336065 0.3544820834992192 C 0.35559213234294995 0.3553737927284545 0.34876476313863236 0.364617079750875 0.3493893846089961 0.36383746465459377" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3493893846089961 0.36383746465459377 C 0.34938949672578495 0.36438394466226254 0.34954528717740213 0.37186469324280147 0.34939073001046234 0.37039522474661873 C 0.34954528717740213 0.37186469324280147 0.3513985156624244 0.3823940750973003 0.3512440706122735 0.3814710866087863" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1,11 @@
id: ChestHair
original_key: 胸毛
resource: 胴体
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name: 獣性

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g id="獣性">
<g transform="translate(0.3373434528286707,0.16513021119802657) rotate(0) scale(1,1) translate(-0.09807843887568797,-0.09807843887568801)"><path d="M 0.09807843887568794 0.0768868355115205 C 0.09850045508401897 0.07676326799502127 0.1043639771143595 0.07534850541322759 0.10314263337566022 0.07540402531352976 C 0.1043639771143595 0.07534850541322759 0.11353389127044762 0.07628864432409144 0.11273456374007935 0.07622059670789438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.11273456374007935 0.07622059670789438 C 0.11257035382183779 0.07639778950632627 0.11141074319018417 0.07883239848911211 0.1107640447211806 0.07834691028907703 C 0.11141074319018417 0.07883239848911211 0.12130585375536737 0.08235475050991851 0.12049494536812223 0.08204645510831532" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.12049494536812223 0.08204645510831532 C 0.12019115556301575 0.08230015815211487 0.11706999617213715 0.08581726300740741 0.11684946770684446 0.08509089163390991 C 0.11706999617213715 0.08581726300740741 0.12366560522203361 0.09123557991998334 0.12314128695163444 0.09076291159028538" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.12314128695163444 0.09076291159028538 C 0.12255404211126536 0.0908884122870482 0.1156786593732728 0.09289295385377767 0.11609434886720543 0.09226891995143925 C 0.1156786593732728 0.09289295385377767 0.11832456837087933 0.09874985162392197 0.11815301302444288 0.09825131841834638" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.11815301302444288 0.09825131841834638 C 0.11754931342340275 0.09823267118361245 0.11019515619411849 0.0985103629791573 0.11090861781196135 0.0980275516015393 C 0.11019515619411849 0.0985103629791573 0.10948171159352582 0.10454651356211442 0.10959147361032856 0.10404505494976249" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10959147361032856 0.10404505494976249 C 0.10905345069861845 0.1039680907810259 0.10217577910858724 0.1044318700778607 0.10313519866980729 0.10312148492492332 C 0.10217577910858724 0.1044318700778607 0.09765704222617799 0.12115702610668502 0.09807843887568794 0.11976967678501105" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09807843887568794 0.11976967678501105 C 0.09765704222617799 0.11838232746333707 0.09206225952034858 0.10181109977198594 0.09302167908156862 0.10312148492492332 C 0.09206225952034858 0.10181109977198594 0.08602738122933727 0.10412201911849908 0.08656540414104738 0.10404505494976249" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08656540414104738 0.10404505494976249 C 0.08645564212424464 0.10354359633741056 0.08453479832157171 0.09754474022392129 0.08524825993941457 0.0980275516015393 C 0.08453479832157171 0.09754474022392129 0.07740016512589294 0.09826996565308033 0.07800386472693306 0.0982513184183464" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07800386472693306 0.0982513184183464 C 0.07817542007336951 0.09775278521277081 0.07964683939023785 0.09164488604910086 0.08006252888417048 0.09226891995143928 C 0.07964683939023785 0.09164488604910086 0.07242834595937239 0.09063741089352255 0.07301559079974147 0.09076291159028538" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07301559079974147 0.09076291159028538 C 0.07353990907014063 0.09029024326058742 0.07952793850982412 0.08436452026041241 0.07930741004453144 0.08509089163390991 C 0.07952793850982412 0.08436452026041241 0.0753581425781472 0.0817927520645158 0.07566193238325368 0.08204645510831535" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07566193238325368 0.08204645510831535 C 0.07647284077049882 0.08173815970671215 0.08603953149919888 0.07786142208904195 0.0853928330301953 0.07834691028907703 C 0.08603953149919888 0.07786142208904195 0.08325810409305497 0.0760434039094625 0.08342231401129653 0.07622059670789438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08342231401129653 0.07622059670789438 C 0.0842216415416648 0.07615254909169733 0.09423558811441494 0.07545954521383193 0.09301424437571566 0.07540402531352976 C 0.09423558811441494 0.07545954521383193 0.09850045508401897 0.07701040302801972 0.09807843887568794 0.0768868355115205" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@@ -0,0 +1,129 @@
id: Cough
original_key:
resource: 胴体
morph_x: 1
morph_y: 5
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
- x: 0
y: 3
file: x0y3.svg
- x: 0
y: 4
file: x0y4.svg
fields:
- name: 咳基
- name: 雫1
- name: 雫2
- name: 雫3
- name: 雫4
- name: 雫5
joints:
- position: [
0.015060186809668778,
0.011804050326270342
]
- position: [
0.023325542716308097,
0.01180405032627034
]
- position: [
0.019192864762988437,
0.012747043616595701
]
- position: [
0.017126525786328606,
0.01246475024727707
]
- position: [
0.021259203739648267,
0.01246475024727707
]
- position: [
0.0132805523660205,
0.014281815633928652
]
- position: [
0.025105177159956374,
0.014281815633928649
]
- position: [
0.019192864762988437,
0.015630885409900368
]
- position: [
0.016236708564504466,
0.015227029458418903
]
- position: [
0.022149020961472407,
0.015227029458418903
]
- position: [
0.01150091792237222,
0.016759580941586964
]
- position: [
0.026884811603604654,
0.016759580941586957
]
- position: [
0.019192864762988437,
0.018514727203205038
]
- position: [
0.015346891342680326,
0.017989308669560736
]
- position: [
0.023038838183296547,
0.017989308669560736
]
- position: [
0.009721283478723941,
0.019237346249245273
]
- position: [
0.028664446047252934,
0.019237346249245266
]
- position: [
0.019192864762988437,
0.021398568996509708
]
- position: [
0.014457074120856186,
0.02075158788070257
]
- position: [
0.023928655405120687,
0.02075158788070257
]
- position: [
0.007941649035075663,
0.021715111556903584
]
- position: [
0.03044408049090121,
0.021715111556903578
]
- position: [
0.019192864762988437,
0.024282410789814374
]
- position: [
0.013567256899032046,
0.023513867091844397
]
- position: [
0.024818472626944827,
0.023513867091844397
]

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.1307709240821216) rotate(0) scale(1,1) translate(-0.019192864762988454,-0.007177757148175707)"><path d="M 0.019192864762988444 0.006934657002141492 C 0.02022603425131836 0.008152005333173704 0.03365723759960725 0.023977533636592458 0.03159089862294742 0.021542836974528034 C 0.03365723759960725 0.023977533636592458 0.0450221019712363 0.0373683652779468 0.04398893248290639 0.03615101694691458" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04398893248290639 0.03615101694691458 C 0.04192259350624656 0.03615101694691458 0.015060186809668797 0.03615101694691458 0.019192864762988454 0.03615101694691458 C 0.015060186809668797 0.03615101694691458 -0.007669541933589324 0.036151016946914596 -0.0056032029569294955 0.036151016946914596" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0056032029569294955 0.036151016946914596 C -0.004570033468599582 0.03493366861588238 0.008861169879689292 0.019108140312463617 0.006794830903029465 0.02154283697452804 C 0.008861169879689292 0.019108140312463617 0.020226034251318335 0.0057173086711092835 0.019192864762988423 0.006934657002141496" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.1363402105505416) rotate(0) scale(1,1) translate(-0.015438241254617997,-0.015438241254617997)"><path d="M 0.015979343809571837 0.015125835548856204 C 0.016024435689151323 0.015266717097548866 0.01593425192999235 0.01582874838682024 0.015979343809571837 0.01575064696037979 C 0.01593425192999235 0.01582874838682024 0.015348057495459026 0.016063052666141584 0.015438241254617999 0.016063052666141584 C 0.015348057495459026 0.016063052666141584 0.014852046820084673 0.01567254553393934 0.014897138699664159 0.01575064696037979 C 0.014852046820084673 0.01567254553393934 0.014942230579243643 0.014984954000163543 0.014897138699664157 0.015125835548856204 C 0.014942230579243643 0.014984954000163543 0.015528425013776971 0.014060068376067847 0.015438241254617997 0.014060068376067847 C 0.015528425013776971 0.014060068376067847 0.016024435689151323 0.015266717097548866 0.015979343809571837 0.015125835548856204 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3352771138520108,0.13605791718122295) rotate(0) scale(1,1) translate(-0.015438241254617997,-0.015438241254617997)"><path d="M 0.016058395416627316 0.015362095898143574 C 0.016044855904127527 0.015509396848470861 0.015742238196215824 0.0159915117760497 0.01581426214870973 0.015937237834943503 C 0.015742238196215824 0.0159915117760497 0.01511109339869199 0.01597814558943034 0.01519410798670041 0.01601338319141793 C 0.01511109339869199 0.01597814558943034 0.014807096457094169 0.015424875067998632 0.01481808709260868 0.01551438661109242 C 0.014807096457094169 0.015424875067998632 0.015158774461034474 0.014827181325952793 0.015062220360526265 0.014939244674292489 C 0.015158774461034474 0.014827181325952793 0.01605975088671563 0.014204864033003655 0.015976736298707207 0.014169626431016064 C 0.01605975088671563 0.014204864033003655 0.016044855904127527 0.015509396848470861 0.016058395416627316 0.015362095898143574 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33321077487535095,0.13539721726021625) rotate(0) scale(1,1) translate(-0.015438241254617997,-0.015438241254617997)"><path d="M 0.01603575137903798 0.015620918432135368 C 0.015963469724837104 0.01574997753035025 0.015490920885152002 0.01606732572185029 0.015578793240406306 0.016047038790142788 C 0.015490920885152002 0.01606732572185029 0.014919777940135633 0.015798405386538573 0.014981283115986324 0.01586436161262542 C 0.014919777940135633 0.015798405386538573 0.014867098309601628 0.015169320919306277 0.014840731130198015 0.015255564077100627 C 0.014867098309601628 0.015169320919306277 0.015431476098881253 0.01476634084696517 0.015297689268829687 0.014829443719093206 C 0.015431476098881253 0.01476634084696517 0.016507678266667488 0.014564285837651028 0.016446173090816796 0.014498329611564182 C 0.016507678266667488 0.014564285837651028 0.015963469724837104 0.01574997753035025 0.01603575137903798 0.015620918432135368 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3394097918053305,0.13605791718122295) rotate(0) scale(1,1) translate(-0.015438241254617997,-0.015438241254617997)"><path d="M 0.014899746210528808 0.014169626431016064 C 0.014982760798537229 0.014134388829028474 0.015910816249217946 0.015051308022632185 0.015814262148709735 0.014939244674292489 C 0.015910816249217946 0.015051308022632185 0.01604740478111284 0.015603898154186207 0.016058395416627347 0.01551438661109242 C 0.01604740478111284 0.015603898154186207 0.015599359934527204 0.016048620793405518 0.015682374522535625 0.01601338319141793 C 0.015599359934527204 0.016048620793405518 0.014990196408032378 0.015882963893837306 0.01506222036052629 0.015937237834943503 C 0.014990196408032378 0.015882963893837306 0.014804547580108888 0.015214794947816287 0.014818087092608678 0.015362095898143574 C 0.014804547580108888 0.015214794947816287 0.014982760798537229 0.014134388829028474 0.014899746210528808 0.014169626431016064 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3414761307819903,0.13539721726021625) rotate(0) scale(1,1) translate(-0.015438241254617997,-0.015438241254617997)"><path d="M 0.014430309418419274 0.014498329611564182 C 0.014491814594269967 0.014432373385477336 0.015712580070457904 0.014892546591221243 0.015578793240406341 0.014829443719093206 C 0.015712580070457904 0.014892546591221243 0.016062118558441623 0.015341807234894977 0.01603575137903801 0.015255564077100627 C 0.016062118558441623 0.015341807234894977 0.015833694217398987 0.015930317838712266 0.01589519939324968 0.01586436161262542 C 0.015833694217398987 0.015930317838712266 0.015209816913575378 0.016026751858435283 0.015297689268829684 0.016047038790142788 C 0.015209816913575378 0.016026751858435283 0.014768449475997147 0.015491859333920485 0.014840731130198015 0.015620918432135368 C 0.014768449475997147 0.015491859333920485 0.014491814594269967 0.014432373385477336 0.014430309418419274 0.014498329611564182 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.1307709240821216) rotate(0) scale(1,1) translate(-0.019192864762988454,-0.007177757148175707)"><path d="M 0.019192864762988444 0.006934657002141492 C 0.02022603425131836 0.008152005333173704 0.03365723759960725 0.023977533636592458 0.03159089862294742 0.021542836974528034 C 0.03365723759960725 0.023977533636592458 0.0450221019712363 0.0373683652779468 0.04398893248290639 0.03615101694691458" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04398893248290639 0.03615101694691458 C 0.04192259350624656 0.03615101694691458 0.015060186809668797 0.03615101694691458 0.019192864762988454 0.03615101694691458 C 0.015060186809668797 0.03615101694691458 -0.007669541933589324 0.036151016946914596 -0.0056032029569294955 0.036151016946914596" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0056032029569294955 0.036151016946914596 C -0.004570033468599582 0.03493366861588238 0.008861169879689292 0.019108140312463617 0.006794830903029465 0.02154283697452804 C 0.008861169879689292 0.019108140312463617 0.020226034251318335 0.0057173086711092835 0.019192864762988423 0.006934657002141496" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.13922405234384627) rotate(0) scale(1,1) translate(-0.015438241254617997,-0.015492310634907715)"><path d="M 0.015979343809571837 0.015125835548856204 C 0.016024435689151323 0.015266717097548866 0.01593425192999235 0.01582874838682024 0.015979343809571837 0.01575064696037979 C 0.01593425192999235 0.01582874838682024 0.015348057495459026 0.016063052666141584 0.015438241254617999 0.016063052666141584 C 0.015348057495459026 0.016063052666141584 0.014852046820084673 0.01567254553393934 0.014897138699664159 0.01575064696037979 C 0.014852046820084673 0.01567254553393934 0.014942230579243643 0.014984954000163543 0.014897138699664157 0.015125835548856204 C 0.014942230579243643 0.014984954000163543 0.015528425013776971 0.014060068376067847 0.015438241254617997 0.014060068376067847 C 0.015528425013776971 0.014060068376067847 0.016024435689151323 0.015266717097548866 0.015979343809571837 0.015125835548856204 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3343872966301867,0.13882019639236481) rotate(0) scale(1,1) translate(-0.015417114664640682,-0.015488012381597853)"><path d="M 0.016058395416627316 0.015362095898143574 C 0.016044855904127527 0.015509396848470861 0.015742238196215824 0.0159915117760497 0.01581426214870973 0.015937237834943503 C 0.015742238196215824 0.0159915117760497 0.01511109339869199 0.01597814558943034 0.01519410798670041 0.01601338319141793 C 0.01511109339869199 0.01597814558943034 0.014807096457094169 0.015424875067998632 0.01481808709260868 0.01551438661109242 C 0.014807096457094169 0.015424875067998632 0.015158774461034474 0.014827181325952793 0.015062220360526265 0.014939244674292489 C 0.015158774461034474 0.014827181325952793 0.01605975088671563 0.014204864033003655 0.015976736298707207 0.014169626431016064 C 0.01605975088671563 0.014204864033003655 0.016044855904127527 0.015509396848470861 0.016058395416627316 0.015362095898143574 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3314311404317027,0.13787498256787456) rotate(0) scale(1,1) translate(-0.015398697413198856,-0.015475116483305181)"><path d="M 0.01603575137903798 0.015620918432135368 C 0.015963469724837104 0.01574997753035025 0.015490920885152002 0.01606732572185029 0.015578793240406306 0.016047038790142788 C 0.015490920885152002 0.01606732572185029 0.014919777940135633 0.015798405386538573 0.014981283115986324 0.01586436161262542 C 0.014919777940135633 0.015798405386538573 0.014867098309601628 0.015169320919306277 0.014840731130198015 0.015255564077100627 C 0.014867098309601628 0.015169320919306277 0.015431476098881253 0.01476634084696517 0.015297689268829687 0.014829443719093206 C 0.015431476098881253 0.01476634084696517 0.016507678266667488 0.014564285837651028 0.016446173090816796 0.014498329611564182 C 0.016507678266667488 0.014564285837651028 0.015963469724837104 0.01574997753035025 0.01603575137903798 0.015620918432135368 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3402996090271546,0.13882019639236481) rotate(0) scale(1,1) translate(-0.015459367844595307,-0.01548801238159785)"><path d="M 0.014899746210528808 0.014169626431016064 C 0.014982760798537229 0.014134388829028474 0.015910816249217946 0.015051308022632185 0.015814262148709735 0.014939244674292489 C 0.015910816249217946 0.015051308022632185 0.01604740478111284 0.015603898154186207 0.016058395416627347 0.01551438661109242 C 0.01604740478111284 0.015603898154186207 0.015599359934527204 0.016048620793405518 0.015682374522535625 0.01601338319141793 C 0.015599359934527204 0.016048620793405518 0.014990196408032378 0.015882963893837306 0.01506222036052629 0.015937237834943503 C 0.014990196408032378 0.015882963893837306 0.014804547580108888 0.015214794947816287 0.014818087092608678 0.015362095898143574 C 0.014804547580108888 0.015214794947816287 0.014982760798537229 0.014134388829028474 0.014899746210528808 0.014169626431016064 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34325576522563855,0.13787498256787456) rotate(0) scale(1,1) translate(-0.015477785096037127,-0.015475116483305181)"><path d="M 0.014430309418419274 0.014498329611564182 C 0.014491814594269967 0.014432373385477336 0.015712580070457904 0.014892546591221243 0.015578793240406341 0.014829443719093206 C 0.015712580070457904 0.014892546591221243 0.016062118558441623 0.015341807234894977 0.01603575137903801 0.015255564077100627 C 0.016062118558441623 0.015341807234894977 0.015833694217398987 0.015930317838712266 0.01589519939324968 0.01586436161262542 C 0.015833694217398987 0.015930317838712266 0.015209816913575378 0.016026751858435283 0.015297689268829684 0.016047038790142788 C 0.015209816913575378 0.016026751858435283 0.014768449475997147 0.015491859333920485 0.014840731130198015 0.015620918432135368 C 0.014768449475997147 0.015491859333920485 0.014491814594269967 0.014432373385477336 0.014430309418419274 0.014498329611564182 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.1307709240821216) rotate(0) scale(1,1) translate(-0.019192864762988454,-0.007177757148175707)"><path d="M 0.019192864762988444 0.006934657002141492 C 0.02022603425131836 0.008152005333173704 0.03365723759960725 0.023977533636592458 0.03159089862294742 0.021542836974528034 C 0.03365723759960725 0.023977533636592458 0.0450221019712363 0.0373683652779468 0.04398893248290639 0.03615101694691458" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04398893248290639 0.03615101694691458 C 0.04192259350624656 0.03615101694691458 0.015060186809668797 0.03615101694691458 0.019192864762988454 0.03615101694691458 C 0.015060186809668797 0.03615101694691458 -0.007669541933589324 0.036151016946914596 -0.0056032029569294955 0.036151016946914596" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0056032029569294955 0.036151016946914596 C -0.004570033468599582 0.03493366861588238 0.008861169879689292 0.019108140312463617 0.006794830903029465 0.02154283697452804 C 0.008861169879689292 0.019108140312463617 0.020226034251318335 0.0057173086711092835 0.019192864762988423 0.006934657002141496" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.14210789413715094) rotate(0) scale(1,1) translate(-0.015438241254617997,-0.015546380015197436)"><path d="M 0.015979343809571837 0.015125835548856204 C 0.016024435689151323 0.015266717097548866 0.01593425192999235 0.01582874838682024 0.015979343809571837 0.01575064696037979 C 0.01593425192999235 0.01582874838682024 0.015348057495459026 0.016063052666141584 0.015438241254617999 0.016063052666141584 C 0.015348057495459026 0.016063052666141584 0.014852046820084673 0.01567254553393934 0.014897138699664159 0.01575064696037979 C 0.014852046820084673 0.01567254553393934 0.014942230579243643 0.014984954000163543 0.014897138699664157 0.015125835548856204 C 0.014942230579243643 0.014984954000163543 0.015528425013776971 0.014060068376067847 0.015438241254617997 0.014060068376067847 C 0.015528425013776971 0.014060068376067847 0.016024435689151323 0.015266717097548866 0.015979343809571837 0.015125835548856204 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3334974794083625,0.14158247560350662) rotate(0) scale(1,1) translate(-0.015395988074663365,-0.015537783508577707)"><path d="M 0.016058395416627316 0.015362095898143574 C 0.016044855904127527 0.015509396848470861 0.015742238196215824 0.0159915117760497 0.01581426214870973 0.015937237834943503 C 0.015742238196215824 0.0159915117760497 0.01511109339869199 0.01597814558943034 0.01519410798670041 0.01601338319141793 C 0.01511109339869199 0.01597814558943034 0.014807096457094169 0.015424875067998632 0.01481808709260868 0.01551438661109242 C 0.014807096457094169 0.015424875067998632 0.015158774461034474 0.014827181325952793 0.015062220360526265 0.014939244674292489 C 0.015158774461034474 0.014827181325952793 0.01605975088671563 0.014204864033003655 0.015976736298707207 0.014169626431016064 C 0.01605975088671563 0.014204864033003655 0.016044855904127527 0.015509396848470861 0.016058395416627316 0.015362095898143574 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3296515059880544,0.14035274787553287) rotate(0) scale(1,1) translate(-0.015359153571779718,-0.015511991711992367)"><path d="M 0.01603575137903798 0.015620918432135368 C 0.015963469724837104 0.01574997753035025 0.015490920885152002 0.01606732572185029 0.015578793240406306 0.016047038790142788 C 0.015490920885152002 0.01606732572185029 0.014919777940135633 0.015798405386538573 0.014981283115986324 0.01586436161262542 C 0.014919777940135633 0.015798405386538573 0.014867098309601628 0.015169320919306277 0.014840731130198015 0.015255564077100627 C 0.014867098309601628 0.015169320919306277 0.015431476098881253 0.01476634084696517 0.015297689268829687 0.014829443719093206 C 0.015431476098881253 0.01476634084696517 0.016507678266667488 0.014564285837651028 0.016446173090816796 0.014498329611564182 C 0.016507678266667488 0.014564285837651028 0.015963469724837104 0.01574997753035025 0.01603575137903798 0.015620918432135368 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34118942624897874,0.14158247560350662) rotate(0) scale(1,1) translate(-0.015480494434572617,-0.0155377835085777)"><path d="M 0.014899746210528808 0.014169626431016064 C 0.014982760798537229 0.014134388829028474 0.015910816249217946 0.015051308022632185 0.015814262148709735 0.014939244674292489 C 0.015910816249217946 0.015051308022632185 0.01604740478111284 0.015603898154186207 0.016058395416627347 0.01551438661109242 C 0.01604740478111284 0.015603898154186207 0.015599359934527204 0.016048620793405518 0.015682374522535625 0.01601338319141793 C 0.015599359934527204 0.016048620793405518 0.014990196408032378 0.015882963893837306 0.01506222036052629 0.015937237834943503 C 0.014990196408032378 0.015882963893837306 0.014804547580108888 0.015214794947816287 0.014818087092608678 0.015362095898143574 C 0.014804547580108888 0.015214794947816287 0.014982760798537229 0.014134388829028474 0.014899746210528808 0.014169626431016064 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34503539966928687,0.14035274787553287) rotate(0) scale(1,1) translate(-0.015517328937456257,-0.015511991711992367)"><path d="M 0.014430309418419274 0.014498329611564182 C 0.014491814594269967 0.014432373385477336 0.015712580070457904 0.014892546591221243 0.015578793240406341 0.014829443719093206 C 0.015712580070457904 0.014892546591221243 0.016062118558441623 0.015341807234894977 0.01603575137903801 0.015255564077100627 C 0.016062118558441623 0.015341807234894977 0.015833694217398987 0.015930317838712266 0.01589519939324968 0.01586436161262542 C 0.015833694217398987 0.015930317838712266 0.015209816913575378 0.016026751858435283 0.015297689268829684 0.016047038790142788 C 0.015209816913575378 0.016026751858435283 0.014768449475997147 0.015491859333920485 0.014840731130198015 0.015620918432135368 C 0.014768449475997147 0.015491859333920485 0.014491814594269967 0.014432373385477336 0.014430309418419274 0.014498329611564182 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.1307709240821216) rotate(0) scale(1,1) translate(-0.019192864762988454,-0.007177757148175707)"><path d="M 0.019192864762988444 0.006934657002141492 C 0.02022603425131836 0.008152005333173704 0.03365723759960725 0.023977533636592458 0.03159089862294742 0.021542836974528034 C 0.03365723759960725 0.023977533636592458 0.0450221019712363 0.0373683652779468 0.04398893248290639 0.03615101694691458" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04398893248290639 0.03615101694691458 C 0.04192259350624656 0.03615101694691458 0.015060186809668797 0.03615101694691458 0.019192864762988454 0.03615101694691458 C 0.015060186809668797 0.03615101694691458 -0.007669541933589324 0.036151016946914596 -0.0056032029569294955 0.036151016946914596" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0056032029569294955 0.036151016946914596 C -0.004570033468599582 0.03493366861588238 0.008861169879689292 0.019108140312463617 0.006794830903029465 0.02154283697452804 C 0.008861169879689292 0.019108140312463617 0.020226034251318335 0.0057173086711092835 0.019192864762988423 0.006934657002141496" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.1449917359304556) rotate(0) scale(1,1) translate(-0.015438241254617997,-0.015600449395487154)"><path d="M 0.015979343809571837 0.015125835548856204 C 0.016024435689151323 0.015266717097548866 0.01593425192999235 0.01582874838682024 0.015979343809571837 0.01575064696037979 C 0.01593425192999235 0.01582874838682024 0.015348057495459026 0.016063052666141584 0.015438241254617999 0.016063052666141584 C 0.015348057495459026 0.016063052666141584 0.014852046820084673 0.01567254553393934 0.014897138699664159 0.01575064696037979 C 0.014852046820084673 0.01567254553393934 0.014942230579243643 0.014984954000163543 0.014897138699664157 0.015125835548856204 C 0.014942230579243643 0.014984954000163543 0.015528425013776971 0.014060068376067847 0.015438241254617997 0.014060068376067847 C 0.015528425013776971 0.014060068376067847 0.016024435689151323 0.015266717097548866 0.015979343809571837 0.015125835548856204 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33260766218653837,0.14434475481464848) rotate(0) scale(1,1) translate(-0.015374861484686048,-0.015587554635557561)"><path d="M 0.016058395416627316 0.015362095898143574 C 0.016044855904127527 0.015509396848470861 0.015742238196215824 0.0159915117760497 0.01581426214870973 0.015937237834943503 C 0.015742238196215824 0.0159915117760497 0.01511109339869199 0.01597814558943034 0.01519410798670041 0.01601338319141793 C 0.01511109339869199 0.01597814558943034 0.014807096457094169 0.015424875067998632 0.01481808709260868 0.01551438661109242 C 0.014807096457094169 0.015424875067998632 0.015158774461034474 0.014827181325952793 0.015062220360526265 0.014939244674292489 C 0.015158774461034474 0.014827181325952793 0.01605975088671563 0.014204864033003655 0.015976736298707207 0.014169626431016064 C 0.01605975088671563 0.014204864033003655 0.016044855904127527 0.015509396848470861 0.016058395416627316 0.015362095898143574 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3278718715444061,0.14283051318319118) rotate(0) scale(1,1) translate(-0.015319609730360579,-0.015548866940679553)"><path d="M 0.01603575137903798 0.015620918432135368 C 0.015963469724837104 0.01574997753035025 0.015490920885152002 0.01606732572185029 0.015578793240406306 0.016047038790142788 C 0.015490920885152002 0.01606732572185029 0.014919777940135633 0.015798405386538573 0.014981283115986324 0.01586436161262542 C 0.014919777940135633 0.015798405386538573 0.014867098309601628 0.015169320919306277 0.014840731130198015 0.015255564077100627 C 0.014867098309601628 0.015169320919306277 0.015431476098881253 0.01476634084696517 0.015297689268829687 0.014829443719093206 C 0.015431476098881253 0.01476634084696517 0.016507678266667488 0.014564285837651028 0.016446173090816796 0.014498329611564182 C 0.016507678266667488 0.014564285837651028 0.015963469724837104 0.01574997753035025 0.01603575137903798 0.015620918432135368 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3420792434708029,0.14434475481464848) rotate(0) scale(1,1) translate(-0.015501621024549926,-0.015587554635557551)"><path d="M 0.014899746210528808 0.014169626431016064 C 0.014982760798537229 0.014134388829028474 0.015910816249217946 0.015051308022632185 0.015814262148709735 0.014939244674292489 C 0.015910816249217946 0.015051308022632185 0.01604740478111284 0.015603898154186207 0.016058395416627347 0.01551438661109242 C 0.01604740478111284 0.015603898154186207 0.015599359934527204 0.016048620793405518 0.015682374522535625 0.01601338319141793 C 0.015599359934527204 0.016048620793405518 0.014990196408032378 0.015882963893837306 0.01506222036052629 0.015937237834943503 C 0.014990196408032378 0.015882963893837306 0.014804547580108888 0.015214794947816287 0.014818087092608678 0.015362095898143574 C 0.014804547580108888 0.015214794947816287 0.014982760798537229 0.014134388829028474 0.014899746210528808 0.014169626431016064 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3468150341129351,0.14283051318319118) rotate(0) scale(1,1) translate(-0.015556872778875387,-0.015548866940679553)"><path d="M 0.014430309418419274 0.014498329611564182 C 0.014491814594269967 0.014432373385477336 0.015712580070457904 0.014892546591221243 0.015578793240406341 0.014829443719093206 C 0.015712580070457904 0.014892546591221243 0.016062118558441623 0.015341807234894977 0.01603575137903801 0.015255564077100627 C 0.016062118558441623 0.015341807234894977 0.015833694217398987 0.015930317838712266 0.01589519939324968 0.01586436161262542 C 0.015833694217398987 0.015930317838712266 0.015209816913575378 0.016026751858435283 0.015297689268829684 0.016047038790142788 C 0.015209816913575378 0.016026751858435283 0.014768449475997147 0.015491859333920485 0.014840731130198015 0.015620918432135368 C 0.014768449475997147 0.015491859333920485 0.014491814594269967 0.014432373385477336 0.014430309418419274 0.014498329611564182 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.1307709240821216) rotate(0) scale(1,1) translate(-0.019192864762988454,-0.007177757148175707)"><path d="M 0.019192864762988444 0.006934657002141492 C 0.02022603425131836 0.008152005333173704 0.03365723759960725 0.023977533636592458 0.03159089862294742 0.021542836974528034 C 0.03365723759960725 0.023977533636592458 0.0450221019712363 0.0373683652779468 0.04398893248290639 0.03615101694691458" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04398893248290639 0.03615101694691458 C 0.04192259350624656 0.03615101694691458 0.015060186809668797 0.03615101694691458 0.019192864762988454 0.03615101694691458 C 0.015060186809668797 0.03615101694691458 -0.007669541933589324 0.036151016946914596 -0.0056032029569294955 0.036151016946914596" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0056032029569294955 0.036151016946914596 C -0.004570033468599582 0.03493366861588238 0.008861169879689292 0.019108140312463617 0.006794830903029465 0.02154283697452804 C 0.008861169879689292 0.019108140312463617 0.020226034251318335 0.0057173086711092835 0.019192864762988423 0.006934657002141496" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.14787557772376028) rotate(0) scale(1,1) translate(-0.015438241254617997,-0.015654518775776873)"><path d="M 0.015979343809571837 0.015125835548856204 C 0.016024435689151323 0.015266717097548866 0.01593425192999235 0.01582874838682024 0.015979343809571837 0.01575064696037979 C 0.01593425192999235 0.01582874838682024 0.015348057495459026 0.016063052666141584 0.015438241254617999 0.016063052666141584 C 0.015348057495459026 0.016063052666141584 0.014852046820084673 0.01567254553393934 0.014897138699664159 0.01575064696037979 C 0.014852046820084673 0.01567254553393934 0.014942230579243643 0.014984954000163543 0.014897138699664157 0.015125835548856204 C 0.014942230579243643 0.014984954000163543 0.015528425013776971 0.014060068376067847 0.015438241254617997 0.014060068376067847 C 0.015528425013776971 0.014060068376067847 0.016024435689151323 0.015266717097548866 0.015979343809571837 0.015125835548856204 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33171784496471424,0.14710703402579028) rotate(0) scale(1,1) translate(-0.015353734894708732,-0.015637325762537416)"><path d="M 0.016058395416627316 0.015362095898143574 C 0.016044855904127527 0.015509396848470861 0.015742238196215824 0.0159915117760497 0.01581426214870973 0.015937237834943503 C 0.015742238196215824 0.0159915117760497 0.01511109339869199 0.01597814558943034 0.01519410798670041 0.01601338319141793 C 0.01511109339869199 0.01597814558943034 0.014807096457094169 0.015424875067998632 0.01481808709260868 0.01551438661109242 C 0.014807096457094169 0.015424875067998632 0.015158774461034474 0.014827181325952793 0.015062220360526265 0.014939244674292489 C 0.015158774461034474 0.014827181325952793 0.01605975088671563 0.014204864033003655 0.015976736298707207 0.014169626431016064 C 0.01605975088671563 0.014204864033003655 0.016044855904127527 0.015509396848470861 0.016058395416627316 0.015362095898143574 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32609223710075785,0.14530827849084949) rotate(0) scale(1,1) translate(-0.015280065888941438,-0.015585742169366737)"><path d="M 0.01603575137903798 0.015620918432135368 C 0.015963469724837104 0.01574997753035025 0.015490920885152002 0.01606732572185029 0.015578793240406306 0.016047038790142788 C 0.015490920885152002 0.01606732572185029 0.014919777940135633 0.015798405386538573 0.014981283115986324 0.01586436161262542 C 0.014919777940135633 0.015798405386538573 0.014867098309601628 0.015169320919306277 0.014840731130198015 0.015255564077100627 C 0.014867098309601628 0.015169320919306277 0.015431476098881253 0.01476634084696517 0.015297689268829687 0.014829443719093206 C 0.015431476098881253 0.01476634084696517 0.016507678266667488 0.014564285837651028 0.016446173090816796 0.014498329611564182 C 0.016507678266667488 0.014564285837651028 0.015963469724837104 0.01574997753035025 0.01603575137903798 0.015620918432135368 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.342969060692627,0.14710703402579028) rotate(0) scale(1,1) translate(-0.015522747614527236,-0.015637325762537402)"><path d="M 0.014899746210528808 0.014169626431016064 C 0.014982760798537229 0.014134388829028474 0.015910816249217946 0.015051308022632185 0.015814262148709735 0.014939244674292489 C 0.015910816249217946 0.015051308022632185 0.01604740478111284 0.015603898154186207 0.016058395416627347 0.01551438661109242 C 0.01604740478111284 0.015603898154186207 0.015599359934527204 0.016048620793405518 0.015682374522535625 0.01601338319141793 C 0.015599359934527204 0.016048620793405518 0.014990196408032378 0.015882963893837306 0.01506222036052629 0.015937237834943503 C 0.014990196408032378 0.015882963893837306 0.014804547580108888 0.015214794947816287 0.014818087092608678 0.015362095898143574 C 0.014804547580108888 0.015214794947816287 0.014982760798537229 0.014134388829028474 0.014899746210528808 0.014169626431016064 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3485946685565834,0.14530827849084949) rotate(0) scale(1,1) translate(-0.015596416620294517,-0.015585742169366737)"><path d="M 0.014430309418419274 0.014498329611564182 C 0.014491814594269967 0.014432373385477336 0.015712580070457904 0.014892546591221243 0.015578793240406341 0.014829443719093206 C 0.015712580070457904 0.014892546591221243 0.016062118558441623 0.015341807234894977 0.01603575137903801 0.015255564077100627 C 0.016062118558441623 0.015341807234894977 0.015833694217398987 0.015930317838712266 0.01589519939324968 0.01586436161262542 C 0.015833694217398987 0.015930317838712266 0.015209816913575378 0.016026751858435283 0.015297689268829684 0.016047038790142788 C 0.015209816913575378 0.016026751858435283 0.014768449475997147 0.015491859333920485 0.014840731130198015 0.015620918432135368 C 0.014768449475997147 0.015491859333920485 0.014491814594269967 0.014432373385477336 0.014430309418419274 0.014498329611564182 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 6.2 KiB

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,197 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3342255704678405,0.08741492338496484) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.1755870457428347 0.15568117740203538 C 0.17558409059447116 0.155791226978559 0.17552889888977308 0.15746306414360664 0.17555158396247222 0.1570017723203186 C 0.17552889888977308 0.15746306414360664 0.17529509494610918 0.16156792152825633 0.1753148248704448 0.1612166792814919" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1753148248704448 0.1612166792814919 C 0.1753136911400326 0.16216840660319182 0.17521463951967398 0.1746948769480515 0.1753012201054983 0.17263740714189102 C 0.17521463951967398 0.1746948769480515 0.17419041098514068 0.1870120594398783 0.1742758578405528 0.18590631695541776" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1742758578405528 0.18590631695541776 C 0.17422726947404138 0.1864514878740349 0.1735847814402416 0.19376404367311006 0.1736927974424159 0.19244836797882353 C 0.1735847814402416 0.19376404367311006 0.17292023817879842 0.2024649300625254 0.1729796658144613 0.20169442528685602" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1729796658144613 0.20169442528685602 C 0.1727537820113202 0.20093177820052757 0.16985678586701725 0.1909916672367728 0.1702690601767679 0.1925426602509146 C 0.16985678586701725 0.1909916672367728 0.167845983590844 0.18229416318934122 0.16803237409745353 0.18308250911715457" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16803237409745353 0.18308250911715457 C 0.16804360793586942 0.18210292038295162 0.1683896131870951 0.16943257597354494 0.16816718015844423 0.17132744430671923 C 0.1683896131870951 0.16943257597354494 0.17091276963149907 0.15942880952009195 0.17070157044126408 0.16034408911906328" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17070157044126408 0.16034408911906328 C 0.17091911089213957 0.16002831944179216 0.17371917879356769 0.15616627701539088 0.17331205585177015 0.15655485299180988 C 0.17371917879356769 0.15616627701539088 0.17577662823375675 0.1556083711028875 0.1755870457428347 0.15568117740203538" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3245206654383008,0.08742697586365877) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.17853856266176305 0.1571775710149313 C 0.1785619505351032 0.15737926354589626 0.1786454307084232 0.16018175337142213 0.17881921714184504 0.1595978813865108 C 0.1786454307084232 0.16018175337142213 0.1762559511539389 0.1645662142878136 0.1764531254607009 0.16418403483386723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1764531254607009 0.16418403483386723 C 0.17632135184251324 0.16484084308648386 0.1745786044077185 0.17339906970923422 0.17487184204244888 0.17206573386526694 C 0.1745786044077185 0.17339906970923422 0.17277280982739346 0.18086059255282524 0.17293427384393617 0.1801840649614746" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17293427384393617 0.1801840649614746 C 0.17281289797964958 0.18090964746064778 0.17124034303323662 0.19037923476645927 0.17147776347249705 0.18889105495155273 C 0.17124034303323662 0.19037923476645927 0.16996918399783728 0.1988048200560865 0.1700852285728111 0.19804222274035313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1700852285728111 0.19804222274035313 C 0.1699028386477656 0.19724863628961795 0.16768305819029972 0.1871270211249918 0.16789654947226498 0.18851918533153103 C 0.16768305819029972 0.1871270211249918 0.16749223183230802 0.18073767450607817 0.1675233331892278 0.18133625226188224" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1675233331892278 0.18133625226188224 C 0.16755621319862493 0.1805083375101894 0.16821084072980608 0.16986435466863264 0.16791789330199353 0.1714012752415684 C 0.16821084072980608 0.16986435466863264 0.1712987697413937 0.16218419956541036 0.17103870232297833 0.16289320538665328" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17103870232297833 0.16289320538665328 C 0.1713752371239545 0.16253759598297002 0.17570210829625774 0.15814958967814388 0.17507711993469235 0.15862589254245404 C 0.17570210829625774 0.15814958967814388 0.17882701622235228 0.1570568775543044 0.17853856266176305 0.1571775710149313" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31349378021505514,0.09003558690739316) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.18037896509729023 0.1417911197052702 C 0.18009145077787153 0.14269990118708273 0.17645331193450076 0.15460063705415014 0.17692879326426567 0.15269649748702047 C 0.17645331193450076 0.15460063705415014 0.1744852221297652 0.16563615259614342 0.17467318914011137 0.16464079451082628" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17467318914011137 0.16464079451082628 C 0.17472910506001832 0.16573407679123917 0.17537213813894803 0.1800714337833251 0.17534418017899456 0.17776018187578085 C 0.17537213813894803 0.1800714337833251 0.17498072669959963 0.19359378702848853 0.17500868465955308 0.19237581740135717" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17500868465955308 0.19237581740135717 C 0.17493440562910717 0.193601045447743 0.1742080922228128 0.20988187851969434 0.17411733629420212 0.2070785539579873 C 0.1742080922228128 0.20988187851969434 0.17626279076193796 0.22759380865716272 0.17609775580288137 0.22601571214184155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17609775580288137 0.22601571214184155 C 0.17567233094311904 0.22446159396242776 0.1703181180819626 0.20446539137394848 0.17099265748573358 0.20736629398887615 C 0.1703181180819626 0.20446539137394848 0.1677541684136207 0.18985809632719536 0.1680032829576294 0.19120488076270928" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1680032829576294 0.19120488076270928 C 0.16784898931415237 0.1898051584063693 0.1661257092642108 0.1717636806945214 0.16615175923590525 0.17440821248662944 C 0.1661257092642108 0.1717636806945214 0.16781892696907863 0.15822568982164456 0.16769068329729606 0.15947049925741263" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16769068329729606 0.15947049925741263 C 0.16813185495532196 0.15853479453812094 0.17404210001027293 0.14676876099656708 0.17298474319360674 0.14824204262591228 C 0.17404210001027293 0.14676876099656708 0.18099515025593052 0.14125354279521668 0.18037896509729023 0.1417911197052702" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31349378021505514,0.09003558690739316) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18145129184674708 0.13018357941873762 C 0.18144291616623837 0.1304027842122994 0.1812862120656775 0.13322327310905416 0.18135078368064256 0.132814036941479 C 0.1812862120656775 0.13322327310905416 0.1806202365327101 0.13528444480365281 0.18067643246716644 0.13509441342963943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18067643246716644 0.13509441342963943 C 0.18054762827705076 0.13518785115747362 0.1788598430455313 0.13632781392350576 0.17913078218577813 0.13621566616364977 C 0.1788598430455313 0.13632781392350576 0.17728302783407338 0.13645889657993326 0.1774251627842045 0.13644018654791146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1774251627842045 0.13644018654791146 C 0.1773710060812383 0.13649269593642768 0.1766577818967548 0.1371271318822067 0.17677528234860984 0.1370702992101061 C 0.1766577818967548 0.1371271318822067 0.1758962557246042 0.13708148065501063 0.1760151573619441 0.13712217861311876 C 0.1758962557246042 0.13708148065501063 0.17526001947541053 0.13645460010950033 0.1753484627005313 0.13658192371280853 C 0.17526001947541053 0.13645460010950033 0.17491955213834037 0.13541446238159582 0.1749538386604949 0.13559429537342027 C 0.17491955213834037 0.13541446238159582 0.17496608166141106 0.13423977153550648 0.1749370244346768 0.1344239278109153 C 0.17496608166141106 0.13423977153550648 0.17533298379352527 0.13329779442331438 0.17530252538130617 0.13338442006851445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17530252538130617 0.13338442006851445 C 0.17530522394256523 0.1331649762500524 0.17538965270636647 0.13032771101236051 0.17533490811641483 0.13075109424696993 C 0.17538965270636647 0.13032771101236051 0.1760115064894183 0.12809988183705423 0.17595946046072572 0.12830382125320158" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17595946046072572 0.12830382125320158 C 0.17607896950116078 0.12820493595373308 0.17765468106117988 0.12699090283268932 0.17739356894594646 0.12711719765957957 C 0.17765468106117988 0.12699090283268932 0.17923440891832498 0.12676087380309695 0.17909280584352663 0.1267882833305187" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31153967783386444,0.09324877287418551) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10746924305527247 0.10266280772405723 C 0.10727755486219809 0.10287086081618842 0.105779367790444 0.10421076978874765 0.10631911389682619 0.10391112627684436 C 0.105779367790444 0.10421076978874765 0.10387929809301054 0.10409447954739917 0.10423076641697937 0.10446066879547691 C 0.10387929809301054 0.10409447954739917 0.1043564635062987 0.10084951712899984 0.10421030395301319 0.10171399078837787 C 0.1043564635062987 0.10084951712899984 0.10510772373669244 0.0992738268392087 0.10510772373669244 0.0992738268392087 C 0.10510772373669244 0.0992738268392087 0.10406414439972768 0.1025784644477559 0.10421030395301319 0.10171399078837787 C 0.10406414439972768 0.1025784644477559 0.10394627677345587 0.10499697740492303 0.10423076641697937 0.10446066879547691 C 0.10394627677345587 0.10499697740492303 0.10201953000686034 0.10516743715856411 0.10250336609187223 0.10493184244505455 C 0.10201953000686034 0.10516743715856411 0.10113181387608071 0.10603130284844758 0.10132774990690807 0.10587423707653429" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3095855754526737,0.09646195884097788) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13937124236798004 0.11524489271857583 C 0.1394206722784332 0.11542588632282838 0.1400165589438942 0.11778455338178594 0.13996440129341783 0.11741681596960649 C 0.1400165589438942 0.11778455338178594 0.1399998619137196 0.11984448547265619 0.13999713417369639 0.1196577416647293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13999713417369639 0.1196577416647293 C 0.13991551984197143 0.11981125327238688 0.13882441111847021 0.12175507229094347 0.1390177621929969 0.12149988095662038 C 0.13882441111847021 0.12175507229094347 0.13756518453657424 0.12282171740327175 0.13767692127937597 0.12272003767660626" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13767692127937597 0.12272003767660626 C 0.13764600186452705 0.1227951925576486 0.13722414121890184 0.12373914405122813 0.13730588830118878 0.12362189624911439 C 0.13722414121890184 0.12373914405122813 0.1365880119369107 0.12416685641993487 0.13669595629193262 0.12412701130197117 C 0.1365880119369107 0.12416685641993487 0.13590533801592422 0.12405180363131182 0.13601055604092555 0.12410003766467885 C 0.13590533801592422 0.12405180363131182 0.1353590413817645 0.12342481398715757 0.13543333999191687 0.12354820290156693 C 0.1353590413817645 0.12342481398715757 0.1350955017763826 0.12245388885628578 0.13511897271909695 0.12261937069176654 C 0.1350955017763826 0.12245388885628578 0.13515441500936526 0.12147434172446711 0.13515168867934463 0.12156242087579784" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13515168867934463 0.12156242087579784 C 0.13509754249069061 0.12138469711722093 0.13443808587335312 0.1190566390236547 0.1345019344154963 0.11942973577287494 C 0.13443808587335312 0.1190566390236547 0.1343758038201373 0.11688988689451163 0.13438550617362646 0.11708525988515496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13438550617362646 0.11708525988515496 C 0.1344580999741586 0.11693304496807501 0.13543829196287208 0.11499813020883172 0.13525663178001218 0.11525868088019559 C 0.13543829196287208 0.11499813020883172 0.1366744947502728 0.1138503160745047 0.13656542836794505 0.11395865182878862" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30880856025837244,0.10023168734223775) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1065137385043163 0.10105435357599486 C 0.10640999932534535 0.10133817442294452 0.10552570084540083 0.10332681928506399 0.10589130343049066 0.10275727865769275 C 0.10552570084540083 0.10332681928506399 0.10393789361025617 0.10439208134394626 0.10432012299377733 0.10447159734022227 C 0.10393789361025617 0.10439208134394626 0.10349574984351964 0.10149742136960146 0.10359792712936375 0.10228018268003666 C 0.10349574984351964 0.10149742136960146 0.10370705927871272 0.0997750294776111 0.10370705927871272 0.0997750294776111 C 0.10370705927871272 0.0997750294776111 0.10370010441520786 0.10306294399047186 0.10359792712936375 0.10228018268003666 C 0.10370010441520786 0.10306294399047186 0.10422459680362368 0.10507539118796728 0.10432012299377733 0.10447159734022227 C 0.10422459680362368 0.10507539118796728 0.10268856081334014 0.10638700338029214 0.10302476998844189 0.1059029457665068 C 0.10268856081334014 0.10638700338029214 0.10218255093562104 0.10762144256567222 0.10230286794316687 0.1073759430229343" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.30803154506407127,0.10400141584349769) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1392896724549893 0.11433307660101658 C 0.1393739581037376 0.11445286230950662 0.1404321566725862 0.11604119234826615 0.14030110023996895 0.11577050510289713 C 0.1404321566725862 0.11604119234826615 0.14090912043026557 0.11773222508232384 0.1408623496463966 0.11758132354544486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1408623496463966 0.11758132354544486 C 0.1408309766768035 0.11775281314566229 0.140385696453667 0.11995690773613951 0.1404858740112794 0.11963919874805398 C 0.140385696453667 0.11995690773613951 0.13959141436702832 0.12154005079033932 0.13966021895504763 0.12139383140247122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13966021895504763 0.12139383140247122 C 0.13965238370772978 0.12147267532329138 0.13952607110038434 0.12248191988817914 0.13956619598723358 0.12233995845231314 C 0.13952607110038434 0.12248191988817914 0.13909833862441687 0.12319096496999565 0.13917872031285686 0.12309736863286311 C 0.13909833862441687 0.12319096496999565 0.13850251544442665 0.12348326667335362 0.13860161572595364 0.12346311449790369 C 0.13850251544442665 0.12348326667335362 0.1378982519003237 0.12328050299289194 0.13798951693453287 0.12333919473826217 C 0.1378982519003237 0.12328050299289194 0.13744745992076593 0.12263700429304482 0.1375064353154437 0.12275881355346088 C 0.13744745992076593 0.12263700429304482 0.1372630936053126 0.12180403945158681 0.1372818121983996 0.12187748361326943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1372818121983996 0.12187748361326943 C 0.13719437886798636 0.12176303541611512 0.13609054465843134 0.1202356571326542 0.13623261223344052 0.12050410524741768 C 0.13609054465843134 0.1202356571326542 0.13552236705369378 0.11850210631849849 0.13557700129828967 0.11865610623610766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13557700129828967 0.11865610623610766 C 0.13560117259752852 0.11849077853127493 0.1359562233043764 0.11635670392063488 0.13586705688915587 0.11667217377811485 C 0.1359562233043764 0.11635670392063488 0.1367119933969176 0.11472032579370069 0.13664699828093593 0.11487046794634793" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30828288516845176,0.10751835846059166) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10540285430569092 0.10039845044887453 C 0.10538411146954015 0.10068883265359496 0.10512170695006141 0.10281251704687318 0.10529039728878628 0.10214074367719708 C 0.10512170695006141 0.10281251704687318 0.10405351293914894 0.10458042561886906 0.10439071227334175 0.10442909066693114 C 0.10405351293914894 0.10458042561886906 0.10299560056258814 0.10246756789213672 0.10326720128362943 0.10304875338882462 C 0.10299560056258814 0.10246756789213672 0.10276110794709399 0.10094197768680377 0.10276110794709399 0.10094197768680377 C 0.10276110794709399 0.10094197768680377 0.10353880200467072 0.10362993888551252 0.10326720128362943 0.10304875338882462 C 0.10353880200467072 0.10362993888551252 0.10445505483568956 0.10497603024619048 0.10439071227334175 0.10442909066693114 C 0.10445505483568956 0.10497603024619048 0.10348866987157038 0.10691575247610062 0.10365325665771633 0.1063303908643807 C 0.10348866987157038 0.10691575247610062 0.10336151403959103 0.10820973858272893 0.10340319155646607 0.10794126033725061" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.31349378021505514,0.09003558690739316) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.1775596427053748 0.15783498676145755 C 0.17757025226563147 0.15810324016032526 0.17762371784712072 0.1616931378400696 0.1776869574284547 0.16105402754787024 C 0.17762371784712072 0.1616931378400696 0.1767269185877766 0.1658751671611815 0.1768007677293672 0.16550431026784987" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1768007677293672 0.16550431026784987 C 0.17660023668642105 0.1662130643204706 0.17391706741932902 0.1754804735720717 0.17439439521401348 0.1740093588992984 C 0.17391706741932902 0.1754804735720717 0.17079603744141544 0.18392004696128217 0.17107283419315375 0.18315768634112958" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17107283419315375 0.18315768634112958 C 0.1706695693871994 0.1844520517655866 0.1652700604192766 0.20084007676081286 0.16623365652170158 0.19869007143461373 C 0.1652700604192766 0.20084007676081286 0.15894934966758345 0.2098133901572612 0.15950968096405407 0.20895775025551908" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15950968096405407 0.20895775025551908 C 0.15982007243801014 0.20793941683693232 0.16373709651078536 0.19430313200166469 0.16323437865152685 0.19673774923247808 C 0.16373709651078536 0.19430313200166469 0.1657346216604587 0.17832605967353182 0.16554229527515624 0.17974234348575846" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16554229527515624 0.17974234348575846 C 0.16569165839289363 0.1789621454728944 0.16777217636776837 0.1690338811262292 0.1673346526880049 0.17037996733138971 C 0.16777217636776837 0.1690338811262292 0.17108073999434392 0.16302342083153584 0.17079257943231785 0.16358930902383229" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17079257943231785 0.16358930902383229 C 0.17103066010297635 0.16333044364192037 0.17421346941964128 0.16000339758569135 0.17364954748021985 0.16048292444088924 C 0.17421346941964128 0.16000339758569135 0.17788548397413773 0.15761432528817157 0.1775596427053748 0.15783498676145755" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32895831599132364,0.08626044283757239) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.1757359250068409 0.15767794066077534 C 0.17577757598716542 0.15793512086688258 0.1762334275947643 0.16137252558693385 0.17623573677073506 0.16076410313406217 C 0.1762334275947643 0.16137252558693385 0.17566425473889621 0.16533025234200005 0.1757082148951915 0.1649790100952356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1757082148951915 0.1649790100952356 C 0.17564557365288166 0.16562086353751684 0.17474316949488586 0.17424142175409027 0.17495651998747355 0.17268125140261034 C 0.17474316949488586 0.17424142175409027 0.17299729973386146 0.1846193712221936 0.17314800898413932 0.18370105431299488" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17314800898413932 0.18370105431299488 C 0.17303609604668138 0.18454601414296978 0.1716044799208696 0.1952406756721669 0.1718050537346442 0.19384057227269358 C 0.1716044799208696 0.1952406756721669 0.1706524623425278 0.20105743867617318 0.17074112321884444 0.20050229510667475" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17074112321884444 0.20050229510667475 C 0.17055553504000726 0.1998165538908695 0.16824058684776835 0.19101151003185715 0.1685140650727984 0.19227340051701178 C 0.16824058684776835 0.19101151003185715 0.1673714944722909 0.18478346001547 0.1674593845184838 0.18535960928481937" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1674593845184838 0.18535960928481937 C 0.1674481983788185 0.184267695386804 0.16751077466983078 0.17048201877387995 0.16732515084250027 0.17225664250863484 C 0.16751077466983078 0.17048201877387995 0.16988368041344584 0.16338141463102096 0.16968687044645003 0.1640641244677605" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16968687044645003 0.1640641244677605 C 0.169893145116503 0.16378508018537144 0.17266625436711805 0.1601834110951764 0.1721621664870855 0.16071559307909183 C 0.17266625436711805 0.1601834110951764 0.17603373821682053 0.15742480295924896 0.1757359250068409 0.15767794066077534" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.320212706213022,0.08629624084815782) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.1740718582300162 0.15536057593524327 C 0.1738550861155747 0.15576354519787505 0.17115043187412018 0.16091913917715892 0.17147059285671834 0.16019620708682453 C 0.17115043187412018 0.16091913917715892 0.1701265375706816 0.16435572384695857 0.17022992643883827 0.16403576101925596" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17022992643883827 0.16403576101925596 C 0.1700939933717116 0.16479172042410928 0.16837745036440746 0.17479846130442506 0.16859872963331826 0.1731072738774956 C 0.16837745036440746 0.17479846130442506 0.1674892290101245 0.18526523816448534 0.16757457521190863 0.1843300101424092" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16757457521190863 0.1843300101424092 C 0.16734873824218677 0.18590484610487978 0.16470270088151412 0.20646067470190302 0.1648645315752464 0.20322804169205594 C 0.16470270088151412 0.20646067470190302 0.16569661316311093 0.22477940330795054 0.16563260688712136 0.22312160626057403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16563260688712136 0.22312160626057403 C 0.16530850081652343 0.22143508870284306 0.16124411628220844 0.1996920734907209 0.16174333403994606 0.20288339556780227 C 0.16124411628220844 0.1996920734907209 0.1594668821071303 0.18332093681624717 0.15964199379427 0.18482574133559757" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15964199379427 0.18482574133559757 C 0.15975043506692838 0.18369040847333232 0.1614038237946122 0.16939030506374783 0.16094328906617045 0.1712017469884147 C 0.1614038237946122 0.16939030506374783 0.1655205039913544 0.16241232917719342 0.16516841053557102 0.16308843823959507" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16516841053557102 0.16308843823959507 C 0.1655472004424301 0.16270446786445084 0.17045584339241723 0.15783680521250157 0.16971388941788013 0.15848079373786422 C 0.17045584339241723 0.15783680521250157 0.1744350222976942 0.15510055778502485 0.1740718582300162 0.15536057593524327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31349378021505514,0.09003558690739316) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.12844423897559287 0.11714421259350746 C 0.1282980488577716 0.11777971286641452 0.12655820516397365 0.12619185869145574 0.12668995756173754 0.12477021586839213 C 0.12655820516397365 0.12619185869145574 0.12687764792248368 0.13499006902042743 0.12686321020242627 0.13420392647027088" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12686321020242627 0.13420392647027088 C 0.12700102952778713 0.13340736804596925 0.1290986999821063 0.12298708997312786 0.12851704210675674 0.1246452253786513 C 0.1290986999821063 0.12298708997312786 0.1342869432566095 0.11344472462276785 0.13384310470662084 0.11430630160398965" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13384310470662084 0.11430630160398965 C 0.13382864608886216 0.11493452557518195 0.1337389483156022 0.12347643197408228 0.13366960129351685 0.12184498925829733 C 0.1337389483156022 0.12347643197408228 0.13475907461148928 0.13488683293800185 0.13467526897164525 0.1338836141934092" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13467526897164525 0.1338836141934092 C 0.1345164735657711 0.13334492881186963 0.13252808121588755 0.1264658809750106 0.13276972410115542 0.12741938961493435 C 0.13252808121588755 0.1264658809750106 0.13169270686903706 0.12202668725593992 0.13177555434843077 0.1224415105143241" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13177555434843077 0.1224415105143241 C 0.13158747554117997 0.12297497436497107 0.12916026777457015 0.13038417313191636 0.12951860866142123 0.12884307672208775 C 0.12916026777457015 0.13038417313191636 0.12730520162661754 0.14194229999144894 0.12747546370621782 0.14093466743226732" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12747546370621782 0.14093466743226732 C 0.12726937790844545 0.14020251429833752 0.12479520206195532 0.13080526945459062 0.12500243413294948 0.13214882982510961 C 0.12479520206195532 0.13080526945459062 0.12498753258106624 0.12420053574945 0.12498867885428802 0.1248119429860392" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12498867885428802 0.1248119429860392 C 0.12486014587561003 0.1253090881423622 0.12320113747528011 0.13220041468081864 0.12344628311015218 0.13077768486191488 C 0.12320113747528011 0.13220041468081864 0.12193031857962909 0.14281028547546498 0.12204693123582318 0.1418847008128842" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12204693123582318 0.1418847008128842 C 0.12189572802021886 0.14108904445459908 0.12005004627866075 0.13115542963640162 0.12023249264857148 0.13233682451346265 C 0.12005004627866075 0.13115542963640162 0.11982633164258809 0.12732222376937585 0.1198575747968945 0.12770796228815176" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1198575747968945 0.12770796228815176 C 0.11968646825657299 0.12789492840515032 0.11751412559782944 0.12989867389763712 0.11780429631303636 0.12995155569213465 C 0.11751412559782944 0.12989867389763712 0.11625646203952587 0.12683353284268542 0.1163755262144113 0.1270733807541815" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1163755262144113 0.1270733807541815 C 0.11637874428211602 0.12775797261569274 0.11694643798589648 0.13478343041340263 0.11641414302686791 0.1352884830923162 C 0.11694643798589648 0.13478343041340263 0.12329214261407798 0.11982310406679393 0.12276306572275412 0.12101274860721872" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12276306572275412 0.12101274860721872 C 0.12265653815683275 0.12148187872880256 0.12140186734415126 0.12759717607892357 0.12148473493169767 0.12664231006622476 C 0.12140186734415126 0.12759717607892357 0.12179231465057203 0.13295687665071942 0.12176865467219708 0.13247114075960445" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12176865467219708 0.13247114075960445 C 0.12189429661703235 0.13186347774939242 0.12383265670217003 0.12390194062321866 0.12327635801022038 0.12517918463706007 C 0.12383265670217003 0.12390194062321866 0.12887489572270724 0.11647463158987809 0.12844423897559287 0.11714421259350746" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.329754252643396,0.07115430505539927) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.18030555534411588 0.14702121428830364 C 0.17990007483003526 0.1477514351671813 0.17467294396816857 0.15735622339075003 0.17543978917514824 0.1557838648348356 C 0.17467294396816857 0.15735622339075003 0.17074204816746086 0.16673165463631362 0.17110341286035988 0.16588951695927684" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17110341286035988 0.16588951695927684 C 0.17079137821778217 0.16700189998018383 0.16681850223639988 0.18156574311813062 0.16735899714942742 0.17923811321016084 C 0.16681850223639988 0.18156574311813062 0.16438901363357936 0.19503632274197683 0.1646174739040292 0.19382107585491407" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1646174739040292 0.19382107585491407 C 0.16462444440328214 0.19526795940163413 0.1648606768771514 0.21357024642684536 0.16470111989506458 0.21118367841555494 C 0.1648606768771514 0.21357024642684536 0.16668474417190474 0.22339957645496936 0.16653215768907087 0.222459891990399" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16653215768907087 0.222459891990399 C 0.16588311350847362 0.22056933273253285 0.15806427355247393 0.19634543073570992 0.15874362752190407 0.1997731808960051 C 0.15806427355247393 0.19634543073570992 0.15834960026707615 0.17978969916442805 0.15837991005590907 0.18132689006685707" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15837991005590907 0.18132689006685707 C 0.15861962609995756 0.18033258306271566 0.16190758536275235 0.16744927491806294 0.16125650258449087 0.16939520601716004 C 0.16190758536275235 0.16744927491806294 0.16660427012925974 0.15702409278273596 0.16619290339504675 0.15797571687769166" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16619290339504675 0.15797571687769166 C 0.1667574947386333 0.15729826006825567 0.1741440538471745 0.14893335994867762 0.1729679995180854 0.14984623516445997 C 0.1741440538471745 0.14893335994867762 0.18091701832961843 0.14678579588195728 0.18030555534411588 0.14702121428830364" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33250385172065433,0.0712995286035914) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17198902227819265 0.16260916005858478 C 0.17181442655886522 0.16287181206349502 0.16939100909058086 0.16654254887663172 0.16989387364626352 0.1657609841175076 C 0.16939100909058086 0.16654254887663172 0.1656263787736456 0.17250684992228818 0.16595464761000084 0.17198793716807428" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16595464761000084 0.17198793716807428 C 0.16552192360582638 0.17304874000007917 0.1599872743328142 0.18749425642778517 0.16076195955990732 0.18471757115213286 C 0.1599872743328142 0.18749425642778517 0.15631646366196483 0.20702404291954948 0.1566584248848835 0.20530816047590206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1566584248848835 0.20530816047590206 C 0.15661627879446122 0.20678757127937158 0.15649926550443793 0.22618787830545783 0.1561526717998161 0.22306109011753641 C 0.15649926550443793 0.22618787830545783 0.16120628913538979 0.24447699611541107 0.16081754934034564 0.24282961873095918" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16081754934034564 0.24282961873095918 C 0.16010494417212293 0.24099947349105316 0.1514811807879289 0.2170942019585098 0.1522662873216731 0.22086787585208692 C 0.1514811807879289 0.2170942019585098 0.1513237695698938 0.195602003354363 0.15139627093541527 0.19754553200803407" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15139627093541527 0.19754553200803407 C 0.15180140873525755 0.19598552554829834 0.1572977458587032 0.17622067073207587 0.15625792453352264 0.1788254544912053 C 0.1572977458587032 0.17622067073207587 0.16450881036292028 0.16524334959908718 0.163874126837582 0.16628812689848088" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.163874126837582 0.16628812689848088 C 0.16428306574058502 0.16591810655410844 0.1694576349603355 0.16154130219602014 0.16878139367361794 0.16184788276601147 C 0.1694576349603355 0.16154130219602014 0.1722563246619072 0.1626725998329659 0.17198902227819265 0.16260916005858478" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3404488702846278,0.08741492338496484) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.1736814077489167 0.15568117740203538 C 0.17387099023983874 0.15575398370118326 0.1763635205817788 0.15694342896822888 0.17595639763998125 0.15655485299180988 C 0.1763635205817788 0.15694342896822888 0.17878442350136278 0.1606598587963344 0.1785668830504873 0.16034408911906328" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1785668830504873 0.16034408911906328 C 0.17877808224072228 0.16125936871803462 0.181323706361958 0.17322231263989352 0.1811012733333071 0.17132744430671923 C 0.181323706361958 0.17322231263989352 0.18124731323271376 0.18406209785135752 0.18123607939429787 0.18308250911715457" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18123607939429787 0.18308250911715457 C 0.18104968888768833 0.18387085504496792 0.17858711900523283 0.1940936532650564 0.1789993933149835 0.1925426602509146 C 0.17858711900523283 0.1940936532650564 0.17606290387414897 0.20245707237318447 0.1762887876772901 0.20169442528685602" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1762887876772901 0.20169442528685602 C 0.1762293600416272 0.20092392051118665 0.1754676400471612 0.191132692284537 0.17557565604933548 0.19244836797882353 C 0.1754676400471612 0.191132692284537 0.17494400728468718 0.18536114603680062 0.1749925956511986 0.18590631695541776" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1749925956511986 0.18590631695541776 C 0.17490714879578648 0.1848005744709572 0.17388065280042875 0.17057993733573054 0.17396723338625308 0.17263740714189102 C 0.17388065280042875 0.17057993733573054 0.17395249489089434 0.16026495195979196 0.17395362862130656 0.1612166792814919" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17395362862130656 0.1612166792814919 C 0.17393389869697096 0.16086543703472744 0.17369418445658003 0.15654048049703054 0.17371686952927917 0.1570017723203186 C 0.17369418445658003 0.15654048049703054 0.17367845260055315 0.15557112782551177 0.1736814077489167 0.15568117740203538" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3501537753141675,0.08742697586365877) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.16863939130100072 0.1571775710149313 C 0.16892784486158996 0.1572982644755582 0.1727258223896368 0.1591021954067642 0.17210083402807141 0.15862589254245404 C 0.1727258223896368 0.1591021954067642 0.17647578644076162 0.16324881479033654 0.17613925163978544 0.16289320538665328" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17613925163978544 0.16289320538665328 C 0.17639931905820083 0.1636022112078962 0.1795530080885828 0.17293819581450415 0.17926006066077024 0.1714012752415684 C 0.1795530080885828 0.17293819581450415 0.17968750078293308 0.18216416701357507 0.17965462077353594 0.18133625226188224" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17965462077353594 0.18133625226188224 C 0.1796235194166162 0.18193483001768632 0.17906791320853355 0.18991134953807026 0.1792814044904988 0.18851918533153103 C 0.17906791320853355 0.18991134953807026 0.17691033546490711 0.19883580919108831 0.17709272538995263 0.19804222274035313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17709272538995263 0.19804222274035313 C 0.1769766808149788 0.19727962542461977 0.17546277005100627 0.1874028751366462 0.1757001904902667 0.18889105495155273 C 0.17546277005100627 0.1874028751366462 0.17412230425454103 0.17945848246230142 0.17424368011882763 0.1801840649614746" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17424368011882763 0.1801840649614746 C 0.17408221610228491 0.17950753737012395 0.1720128742855845 0.17073239802129966 0.17230611192031492 0.17206573386526694 C 0.1720128742855845 0.17073239802129966 0.1705930548838752 0.1635272265812506 0.17072482850206286 0.16418403483386723" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17072482850206286 0.16418403483386723 C 0.17052765419530086 0.16380185537992087 0.16818495038749687 0.15901400940159946 0.1683587368209187 0.1595978813865108 C 0.16818495038749687 0.15901400940159946 0.1686627791743409 0.15697587848396632 0.16863939130100072 0.1571775710149313" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36118066053741305,0.09003558690739316) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.16361271028450658 0.1417911197052702 C 0.16422889544314687 0.1423286966153237 0.17206428900485626 0.1497153242552575 0.17100693218819008 0.14824204262591228 C 0.17206428900485626 0.1497153242552575 0.17674216374252666 0.16040620397670433 0.17630099208450076 0.15947049925741263" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17630099208450076 0.15947049925741263 C 0.17642923575628333 0.1607153086931807 0.17781386617419714 0.1770527442787375 0.1778399161458916 0.17440821248662944 C 0.17781386617419714 0.1770527442787375 0.1758340987806904 0.19260460311904926 0.17598839242416742 0.19120488076270928" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17598839242416742 0.19120488076270928 C 0.17573927788015872 0.1925516651982232 0.17232447849229224 0.21026719660380383 0.17299901789606323 0.20736629398887615 C 0.17232447849229224 0.21026719660380383 0.16746849471915312 0.22756983032125533 0.16789391957891545 0.22601571214184155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16789391957891545 0.22601571214184155 C 0.16805895453797204 0.22443761562652037 0.1699650950162054 0.20427522939628026 0.16987433908759472 0.2070785539579873 C 0.1699650950162054 0.20427522939628026 0.16890871169179783 0.19115058935497134 0.16898299072224374 0.19237581740135717" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16898299072224374 0.19237581740135717 C 0.1689550327622903 0.19115784777422581 0.16867545316275573 0.1754489299682366 0.16864749520280226 0.17776018187578085 C 0.16867545316275573 0.1754489299682366 0.16937440216159239 0.1635475122304134 0.16931848624168544 0.16464079451082628" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16931848624168544 0.16464079451082628 C 0.16913051923133926 0.16364543642550913 0.16658740078776627 0.1507923579198908 0.16706288211753118 0.15269649748702047 C 0.16658740078776627 0.1507923579198908 0.16332519596508788 0.14088233822345766 0.16361271028450658 0.1417911197052702" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.36118066053741305,0.09003558690739316) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18145129184674702 0.1267882833305187 C 0.18159289492154537 0.12681569285794045 0.18341164085956063 0.12724349248646982 0.18315052874432722 0.12711719765957957 C 0.18341164085956063 0.12724349248646982 0.184704146269983 0.12840270655267008 0.18458463722954793 0.12830382125320158" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18458463722954793 0.12830382125320158 C 0.1846366832582405 0.12850776066934894 0.18526393416381037 0.13117447748157934 0.18520918957385873 0.13075109424696993 C 0.18526393416381037 0.13117447748157934 0.1852442708702265 0.13360386388697648 0.18524157230896743 0.13338442006851445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18524157230896743 0.13338442006851445 C 0.18527203072118653 0.13347104571371451 0.1856361304823311 0.13460808408632413 0.18560707325559683 0.1344239278109153 C 0.1856361304823311 0.13460808408632413 0.18555597250762418 0.13577412836524472 0.18559025902977871 0.13559429537342027 C 0.18555597250762418 0.13577412836524472 0.18510719176462162 0.13670924731611672 0.1851956349897424 0.13658192371280853 C 0.18510719176462162 0.13670924731611672 0.18441003869098965 0.1371628765712269 0.18452894032832953 0.13712217861311876 C 0.18441003869098965 0.1371628765712269 0.18365131488980876 0.1370134665380055 0.1837688153416638 0.1370702992101061 C 0.18365131488980876 0.1370134665380055 0.1830647782031029 0.13638767715939523 0.18311893490606912 0.13644018654791146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18311893490606912 0.13644018654791146 C 0.182976799955938 0.13642147651588965 0.18114237636424865 0.13610351840379376 0.1814133155044955 0.13621566616364975 C 0.18114237636424865 0.13610351840379376 0.17973886103299147 0.13500097570180525 0.17986766522310715 0.13509441342963943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17986766522310715 0.13509441342963943 C 0.17981146928865083 0.13490438205562605 0.17912874239466603 0.13240480077390385 0.17919331400963107 0.132814036941479 C 0.17912874239466603 0.13240480077390385 0.17908443016301787 0.12996437462517585 0.17909280584352658 0.13018357941873762" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3631347629186038,0.09324877287418551) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10734675684440337 0.10587423707653429 C 0.107150820813576 0.105717171304621 0.1056873045744273 0.10469624773154498 0.10617114065943918 0.10493184244505455 C 0.1056873045744273 0.10469624773154498 0.10415925069080859 0.1039243601860308 0.10444374033433208 0.10446066879547691 C 0.10415925069080859 0.1039243601860308 0.1043180432450127 0.10084951712899984 0.10446420279829823 0.10171399078837787 C 0.1043180432450127 0.10084951712899984 0.103566783014619 0.0992738268392087 0.103566783014619 0.0992738268392087 C 0.103566783014619 0.0992738268392087 0.10461036235158375 0.1025784644477559 0.10446420279829823 0.10171399078837787 C 0.10461036235158375 0.1025784644477559 0.10409227201036325 0.10482685804355465 0.10444374033433208 0.10446066879547691 C 0.10409227201036325 0.10482685804355465 0.10181564674810303 0.10361148276494107 0.10235539285448522 0.10391112627684436 C 0.10181564674810303 0.10361148276494107 0.1010135755029646 0.10245475463192603 0.10120526369603897 0.10266280772405723" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.36508886529979456,0.09646195884097788) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13937124236798015 0.11395865182878862 C 0.1394803087503079 0.11406698758307253 0.14086169913877297 0.11551923155155945 0.14068003895591308 0.11525868088019559 C 0.14086169913877297 0.11551923155155945 0.1416237583628309 0.11723747480223491 0.14155116456229874 0.11708525988515496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14155116456229874 0.11708525988515496 C 0.1415414622088096 0.11728063287579829 0.14137088777828571 0.11980283252209518 0.14143473632042888 0.11942973577287494 C 0.14137088777828571 0.11980283252209518 0.14073083586792665 0.12174014463437476 0.14078498205658066 0.12156242087579784" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14078498205658066 0.12156242087579784 C 0.1407877083866013 0.12165050002712857 0.140794227074114 0.1227848525272473 0.14081769801682834 0.12261937069176654 C 0.140794227074114 0.1227848525272473 0.140429032133856 0.12367159181597628 0.14050333074400836 0.12354820290156693 C 0.140429032133856 0.12367159181597628 0.13982089666999842 0.12414827169804588 0.13992611469499971 0.12410003766467885 C 0.13982089666999842 0.12414827169804588 0.13913277008897074 0.12408716618400746 0.13924071444399266 0.12412701130197117 C 0.13913277008897074 0.12408716618400746 0.13854903535244947 0.12350464844700065 0.13863078243473642 0.12362189624911439 C 0.13854903535244947 0.12350464844700065 0.13822883004170033 0.12264488279556392 0.13825974945654926 0.12272003767660626" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13825974945654926 0.12272003767660626 C 0.13814801271374752 0.12261835794994078 0.13672555746840165 0.1212446896222973 0.13691890854292835 0.12149988095662038 C 0.13672555746840165 0.1212446896222973 0.13585792223050394 0.11950423005707171 0.1359395365622289 0.1196577416647293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1359395365622289 0.1196577416647293 C 0.13594226430225212 0.1194709978568024 0.1360244270929838 0.11704907855742704 0.13597226944250743 0.11741681596960649 C 0.1360244270929838 0.11704907855742704 0.1366148582783983 0.11506389911432328 0.13656542836794516 0.11524489271857584" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36586588049409574,0.10023168734223775) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10637163880814458 0.1073759430229343 C 0.10625132180059875 0.10713044348019637 0.10531352758776781 0.10541888815272146 0.10564973676286955 0.1059029457665068 C 0.10531352758776781 0.10541888815272146 0.10425885756738047 0.10386780349247725 0.10435438375753411 0.10447159734022227 C 0.10425885756738047 0.10386780349247725 0.10517875690779181 0.10149742136960146 0.1050765796219477 0.10228018268003666 C 0.10517875690779181 0.10149742136960146 0.10496744747259873 0.0997750294776111 0.10496744747259873 0.0997750294776111 C 0.10496744747259873 0.0997750294776111 0.1049744023361036 0.10306294399047186 0.1050765796219477 0.10228018268003666 C 0.1049744023361036 0.10306294399047186 0.10397215437401296 0.10455111333649827 0.10435438375753411 0.10447159734022227 C 0.10397215437401296 0.10455111333649827 0.10241760073573097 0.10218773803032152 0.10278320332082079 0.10275727865769275 C 0.10241760073573097 0.10218773803032152 0.10205702906802423 0.10077053272904521 0.10216076824699517 0.10105435357599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3666428956883969,0.10400141584349769) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928967245498936 0.11487046794634793 C 0.13935466757097104 0.11502061009899518 0.14015878026198988 0.11698764363559483 0.14006961384676936 0.11667217377811485 C 0.14015878026198988 0.11698764363559483 0.1403838407368744 0.11882143394094039 0.14035966943763556 0.11865610623610766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14035966943763556 0.11865610623610766 C 0.14030503519303966 0.11881010615371683 0.13956199092747554 0.12077255336218118 0.13970405850248468 0.1205041052474177 C 0.13956199092747554 0.12077255336218118 0.1385674252071124 0.12199193181042374 0.13865485853752565 0.12187748361326943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13865485853752565 0.12187748361326943 C 0.13863613994443863 0.12195092777495205 0.13837126002580372 0.12288062281387695 0.1384302354204815 0.12275881355346088 C 0.13837126002580372 0.12288062281387695 0.1378558887671832 0.12339788648363241 0.13794715380139236 0.12333919473826217 C 0.1378558887671832 0.12339788648363241 0.13723595472844463 0.12344296232245376 0.13733505500997162 0.12346311449790369 C 0.13723595472844463 0.12344296232245376 0.13667756873462836 0.12300377229573056 0.13675795042306835 0.12309736863286311 C 0.13667756873462836 0.12300377229573056 0.13633034986184245 0.12219799701644715 0.13637047474869168 0.12233995845231314 C 0.13633034986184245 0.12219799701644715 0.13626861653355973 0.12131498748165105 0.13627645178087758 0.12139383140247122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13627645178087758 0.12139383140247122 C 0.13620764719285827 0.12124761201460311 0.13535061916703345 0.11932148975996845 0.13545079672464586 0.11963919874805398 C 0.13535061916703345 0.11932148975996845 0.13504294811993559 0.11740983394522743 0.1350743210895287 0.11758132354544486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1350743210895287 0.11758132354544486 C 0.13512109187339766 0.11743042200856588 0.13576662692857352 0.11549981785752811 0.13563557049595626 0.11577050510289713 C 0.13576662692857352 0.11549981785752811 0.1367312839296843 0.11421329089252653 0.136646998280936 0.11433307660101658" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36639155558401637,0.10751835846059166) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10527131519484535 0.10794126033725061 C 0.10522963767797032 0.10767278209177229 0.1048566633074492 0.10574502925266079 0.10502125009359513 0.1063303908643807 C 0.1048566633074492 0.10574502925266079 0.10434813704031752 0.10388215108767179 0.1042837944779697 0.10442909066693114 C 0.10434813704031752 0.10388215108767179 0.10567890618872329 0.10246756789213672 0.105407305467682 0.10304875338882462 C 0.10567890618872329 0.10246756789213672 0.10591339880421745 0.10094197768680377 0.10591339880421745 0.10094197768680377 C 0.10591339880421745 0.10094197768680377 0.1051357047466407 0.10362993888551252 0.105407305467682 0.10304875338882462 C 0.1051357047466407 0.10362993888551252 0.1039465951437769 0.10427775571499322 0.1042837944779697 0.10442909066693114 C 0.1039465951437769 0.10427775571499322 0.10321541912380028 0.10146897030752099 0.10338410946252514 0.10214074367719708 C 0.10321541912380028 0.10146897030752099 0.1032529096094697 0.10010806824415411 0.10327165244562048 0.10039845044887453" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.36118066053741305,0.09003558690739316) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.16417183049584005 0.15783498676145755 C 0.16449767176460298 0.15805564823474352 0.1686458476604164 0.16096245129608713 0.16808192572099498 0.16048292444088924 C 0.1686458476604164 0.16096245129608713 0.1711769744395555 0.1638481744057442 0.170938893768897 0.16358930902383229" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.170938893768897 0.16358930902383229 C 0.17122705433092308 0.16415519721612873 0.1748343441929734 0.17172605353655024 0.17439682051320993 0.17037996733138971 C 0.1748343441929734 0.17172605353655024 0.17633854104379598 0.1805225414986225 0.1761891779260586 0.17974234348575846" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1761891779260586 0.17974234348575846 C 0.17638150431136104 0.1811586272979851 0.17899981240894644 0.19917236646329148 0.17849709454968793 0.19673774923247808 C 0.17899981240894644 0.19917236646329148 0.18253218371111687 0.20997608367410583 0.1822217922371608 0.20895775025551908" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1822217922371608 0.20895775025551908 C 0.1816614609406902 0.20810211035377696 0.17453422057708826 0.1965400661084146 0.17549781667951322 0.19869007143461373 C 0.17453422057708826 0.1965400661084146 0.1702553742021068 0.18186332091667257 0.17065863900806114 0.18315768634112958" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17065863900806114 0.18315768634112958 C 0.17038184225632283 0.182395325720977 0.16685975019251686 0.17253824422652508 0.16733707798720132 0.1740093588992984 C 0.16685975019251686 0.17253824422652508 0.16473017442890145 0.16479555621522915 0.1649307054718476 0.16550431026784987" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1649307054718476 0.16550431026784987 C 0.16485685633025698 0.16513345337451824 0.16398127619142613 0.16041491725567086 0.1640445157727601 0.16105402754787024 C 0.16398127619142613 0.16041491725567086 0.16418244005609672 0.15756673336258983 0.16417183049584005 0.15783498676145755" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34571612476114466,0.08626044283757239) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.1709155239863195 0.15767794066077534 C 0.17121333719629914 0.15793107836230172 0.1749933703861075 0.16124777506300728 0.17448928250607493 0.16071559307909183 C 0.1749933703861075 0.16124777506300728 0.17717085321676335 0.16434316875014957 0.17696457854671038 0.1640641244677605" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17696457854671038 0.1640641244677605 C 0.1771613885137062 0.16474683430450004 0.1795119219779907 0.17403126624338974 0.1793262981506602 0.17225664250863484 C 0.1795119219779907 0.17403126624338974 0.1791808783350113 0.18645152318283476 0.17919206447467662 0.18535960928481937" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17919206447467662 0.18535960928481937 C 0.17910417442848373 0.18593575855416875 0.17786390569533198 0.1935352910021664 0.17813738392036202 0.19227340051701178 C 0.17786390569533198 0.1935352910021664 0.17572473759547885 0.20118803632248 0.175910325774316 0.20050229510667475" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.175910325774316 0.20050229510667475 C 0.17582166489799936 0.19994715153717632 0.17464582144474167 0.19244046887322025 0.17484639525851625 0.19384057227269358 C 0.17464582144474167 0.19244046887322025 0.17339152707156316 0.18285609448301998 0.1735034400090211 0.18370105431299488" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1735034400090211 0.18370105431299488 C 0.17335273075874325 0.18278273740379616 0.1714815785130992 0.1711210810511304 0.17169492900568686 0.17268125140261034 C 0.1714815785130992 0.1711210810511304 0.1708805928556591 0.16433715665295437 0.17094323409796894 0.1649790100952356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17094323409796894 0.1649790100952356 C 0.17089927394167365 0.16462776784847116 0.17041340304645458 0.1601556806811905 0.17041571222242538 0.16076410313406217 C 0.17041340304645458 0.1601556806811905 0.17095717496664403 0.1574207604546681 0.1709155239863195 0.15767794066077534" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3544617345394463,0.08629624084815782) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.16440494353190555 0.15536057593524327 C 0.16476810759958355 0.1556205940854617 0.16950486631857872 0.15912478226322688 0.16876291234404162 0.15848079373786422 C 0.16950486631857872 0.15912478226322688 0.1736871811332098 0.1634724086147393 0.17330839122635072 0.16308843823959507" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17330839122635072 0.16308843823959507 C 0.1736604846821341 0.16376454730199672 0.17799404742419306 0.17301318891308157 0.1775335126957513 0.1712017469884147 C 0.17799404742419306 0.17301318891308157 0.17894324924031013 0.1859610741978628 0.17883480796765175 0.18482574133559757" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17883480796765175 0.18482574133559757 C 0.17865969628051206 0.18633054585494796 0.17623424996423806 0.20607471764488364 0.17673346772197568 0.20288339556780227 C 0.17623424996423806 0.20607471764488364 0.17252008880420244 0.224808123818305 0.17284419487480038 0.22312160626057403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17284419487480038 0.22312160626057403 C 0.17290820115078995 0.22146380921319753 0.1734504394929431 0.19999540868220886 0.17361227018667535 0.20322804169205594 C 0.1734504394929431 0.19999540868220886 0.17067638958029124 0.18275517417993864 0.1709022265500131 0.1843300101424092" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1709022265500131 0.1843300101424092 C 0.17081688034822898 0.18339478212033308 0.16965679285969268 0.17141608645056616 0.16987807212860348 0.1731072738774956 C 0.16965679285969268 0.17141608645056616 0.1681109422559568 0.16327980161440264 0.16824687532308347 0.16403576101925596" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16824687532308347 0.16403576101925596 C 0.1681434864549268 0.16371579819155335 0.16668604792260525 0.15947327499649014 0.1670062089052034 0.16019620708682453 C 0.16668604792260525 0.15947327499649014 0.16418817141746406 0.1549576066726115 0.16440494353190555 0.15536057593524327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.17201937151874655,-0.15955296299577326)"><path d="M 0.17188188273643934 0.15522038932254642 C 0.17202074319139365 0.15526669360631995 0.1738326938866348 0.15622346925582883 0.1735482081958912 0.15577604072782866 C 0.1738326938866348 0.15622346925582883 0.1754413362611519 0.16099065590277528 0.17529571102536262 0.1605895316585486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17529571102536262 0.1605895316585486 C 0.17542692375869398 0.16161296352497964 0.1768812425516456 0.1749385309008077 0.17687026382533882 0.17287071405572105 C 0.1768812425516456 0.1749385309008077 0.17530722173401944 0.18644771877824384 0.175427455741044 0.18540333379958823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.175427455741044 0.18540333379958823 C 0.1753282822994061 0.1860332607311807 0.17404935064574753 0.1945767607053293 0.17423737444138931 0.19296245697869793 C 0.17404935064574753 0.1945767607053293 0.17308231983933883 0.20575935531420358 0.17317117019334272 0.20477497851916468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17317117019334272 0.20477497851916468 C 0.17291511460516107 0.2037317054576428 0.169706607910598 0.19064139805427063 0.17009850313516298 0.192255701780902 C 0.169706607910598 0.19064139805427063 0.16833258786217947 0.18483230313447874 0.1684684274985628 0.18540333379958823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1684684274985628 0.18540333379958823 C 0.16835653815321658 0.1843258474662405 0.1671503008536349 0.17040568095432876 0.16712575535440818 0.1724734977994154 C 0.1671503008536349 0.17040568095432876 0.16889940833385628 0.1595992011468097 0.16876297348928335 0.1605895316585486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16876297348928335 0.1605895316585486 C 0.16889907218795167 0.1601725974931417 0.17065606697723287 0.15513889314566554 0.1703961578733032 0.1555863216736657 C 0.17065606697723287 0.15513889314566554 0.1720056931417007 0.15518989495995314 0.17188188273643934 0.15522038932254642" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36118066053741305,0.09003558690739316) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.10979054773921447 0.11714421259350746 C 0.11022120448632884 0.11781379359713684 0.11551472739653662 0.12645642865090148 0.11495842870458697 0.12517918463706007 C 0.11551472739653662 0.12645642865090148 0.11659177398744554 0.13307880376981648 0.11646613204261026 0.13247114075960445" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11646613204261026 0.13247114075960445 C 0.11648979202098521 0.13198540486848948 0.11666718419556324 0.12568744405352594 0.11675005178310967 0.12664231006622476 C 0.11666718419556324 0.12568744405352594 0.11536519342613172 0.12054361848563488 0.11547172099205309 0.12101274860721872" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11547172099205309 0.12101274860721872 C 0.11585778605719407 0.12155819830485204 0.12063679673277339 0.12806319765773216 0.12010450177374482 0.1275581449788186 C 0.12063679673277339 0.12806319765773216 0.1220054903942835 0.12703298373546176 0.12185926050039592 0.1270733807541815" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12185926050039592 0.1270733807541815 C 0.1217401963255105 0.1273132286656776 0.12014031968656405 0.13000443748663218 0.12043049040177098 0.12995155569213465 C 0.12014031968656405 0.13000443748663218 0.11820610537759134 0.1275209961711532 0.11837721191791285 0.12770796228815176" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11837721191791285 0.12770796228815176 C 0.11834596876360644 0.12809370080692767 0.11781984769632514 0.1335182193905237 0.11800229406623587 0.13233682451346265 C 0.11781984769632514 0.1335182193905237 0.11603665226337985 0.14268035717116934 0.11618785547898416 0.1418847008128842" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11618785547898416 0.1418847008128842 C 0.11607124282279008 0.14095911615030343 0.1145433579697831 0.12935495504301112 0.11478850360465517 0.13077768486191488 C 0.1145433579697831 0.12935495504301112 0.11311757488184121 0.12431479782971623 0.11324610786051921 0.1248119429860392" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11324610786051921 0.1248119429860392 C 0.11324496158729742 0.1254233502226284 0.1130251205108636 0.1334923901956286 0.11323235258185774 0.13214882982510961 C 0.1130251205108636 0.1334923901956286 0.11055323721081717 0.14166682056619712 0.11075932300858952 0.14093466743226732" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11075932300858952 0.14093466743226732 C 0.11058906092898924 0.1399270348730857 0.10835783716653492 0.12730198031225914 0.108716178053386 0.12884307672208775 C 0.10835783716653492 0.12730198031225914 0.1062711535591258 0.12190804666367713 0.10645923236637658 0.1224415105143241" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10645923236637658 0.1224415105143241 C 0.10637638488698288 0.12285633377270828 0.10522341972838428 0.1283728982548581 0.10546506261365214 0.12741938961493435 C 0.10522341972838428 0.1283728982548581 0.10340072233728817 0.13442229957494875 0.10355951774316233 0.1338836141934092" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10355951774316233 0.1338836141934092 C 0.10364332338300634 0.13288039544881652 0.10463453244337595 0.12021354654251237 0.1045651854212906 0.12184498925829733 C 0.10463453244337595 0.12021354654251237 0.10437722339042785 0.11367807763279734 0.10439168200818652 0.11430630160398965" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10439168200818652 0.11430630160398965 C 0.10483552055817519 0.11516787858521145 0.11029940248340014 0.12630336078417473 0.1097177446080506 0.1246452253786513 C 0.11029940248340014 0.12630336078417473 0.11150939583774194 0.1350004848945725 0.11137157651238107 0.13420392647027088" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11137157651238107 0.13420392647027088 C 0.11138601423243846 0.13341778392011433 0.11141307675530593 0.12334857304532851 0.11154482915306982 0.12477021586839213 C 0.11141307675530593 0.12334857304532851 0.10964435762139318 0.11650871232060041 0.10979054773921447 0.11714421259350746" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34492018810907243,0.07115430505539927) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.1784372810092826 0.14702121428830364 C 0.17904874399478515 0.14725663269465 0.18695089116440214 0.1507591103802423 0.18577483683531304 0.14984623516445997 C 0.18695089116440214 0.1507591103802423 0.1931145243019382 0.15865317368712764 0.19254993295835166 0.15797571687769166" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19254993295835166 0.15797571687769166 C 0.19296129969256465 0.15892734097264735 0.19813741654716904 0.17134113711625715 0.19748633376890756 0.16939520601716004 C 0.19813741654716904 0.17134113711625715 0.20060264234153782 0.18232119707099848 0.20036292629748934 0.18132689006685707" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20036292629748934 0.18132689006685707 C 0.2003326165086564 0.18286408096928608 0.1993198548620643 0.20320093105630027 0.19999920883149444 0.1997731808960051 C 0.1993198548620643 0.20320093105630027 0.19156163448373037 0.22435045124826516 0.19221067866432762 0.222459891990399" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19221067866432762 0.222459891990399 C 0.19236326514716148 0.22152020752582866 0.1942012734404207 0.20879711040426452 0.1940417164583339 0.21118367841555494 C 0.1942012734404207 0.20879711040426452 0.19413233294862217 0.192374192308194 0.19412536244936923 0.19382107585491407" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19412536244936923 0.19382107585491407 C 0.1938969021789194 0.1926058289678513 0.19084334429094346 0.17691048330219106 0.19138383920397103 0.17923811321016084 C 0.19084334429094346 0.17691048330219106 0.1873273888504608 0.16477713393836985 0.1876394234930385 0.16588951695927684" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1876394234930385 0.16588951695927684 C 0.18727805880013948 0.16504737928224006 0.18253620197127046 0.1542115062789212 0.18330304717825013 0.1557838648348356 C 0.18253620197127046 0.1542115062789212 0.17803180049520198 0.14629099340942597 0.1784372810092826 0.14702121428830364" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34217058903181397,0.0712995286035914) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17151876667059912 0.16260916005858478 C 0.17178606905431368 0.16254572028420367 0.17540263656189142 0.1621544633360028 0.17472639527517386 0.16184788276601147 C 0.17540263656189142 0.1621544633360028 0.18004260101421285 0.16665814724285333 0.17963366211120985 0.16628812689848088" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17963366211120985 0.16628812689848088 C 0.18026834563654812 0.16733290419787458 0.1882896857404498 0.18143023825033472 0.18724986441526922 0.1788254544912053 C 0.1882896857404498 0.18143023825033472 0.19251665581321886 0.1991055384677698 0.1921115180133766 0.19754553200803407" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1921115180133766 0.19754553200803407 C 0.1920390166478551 0.19948906066170513 0.1904563950933745 0.22464154974566403 0.1912415016271187 0.22086787585208692 C 0.1904563950933745 0.22464154974566403 0.1819776344402234 0.2446597639708652 0.18269023960844613 0.24282961873095918" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18269023960844613 0.24282961873095918 C 0.18307897940349027 0.2411822413465073 0.18770171085359758 0.219934301929615 0.18735511714897574 0.22306109011753641 C 0.18770171085359758 0.219934301929615 0.18680721797348607 0.20382874967243253 0.18684936406390834 0.20530816047590206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18684936406390834 0.20530816047590206 C 0.18650740284098968 0.20359227803225463 0.1819711441617914 0.18194088587648055 0.1827458293888845 0.18471757115213286 C 0.1819711441617914 0.18194088587648055 0.17712041733461653 0.1709271343360694 0.177553141338791 0.17198793716807428" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.177553141338791 0.17198793716807428 C 0.17722487250243577 0.1714690244138604 0.17311105074684557 0.16497941935838345 0.17361391530252823 0.1657609841175076 C 0.17311105074684557 0.16497941935838345 0.1713441709512717 0.16234650805367454 0.17151876667059912 0.16260916005858478" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 66 KiB

View File

@@ -0,0 +1,197 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3342255704678405,0.08741492338496484) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17558466369534229 0.15568117740203538 C 0.17558171593484967 0.155791226978559 0.17552666220941332 0.15746306414360664 0.17554929056943072 0.1570017723203186 C 0.17552666220941332 0.15746306414360664 0.17529344277560854 0.16156792152825633 0.17531312337513333 0.1612166792814919" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17531312337513333 0.1612166792814919 C 0.17531199247904716 0.16216840660319182 0.17521318848773948 0.1746948769480515 0.17529955262209923 0.17263740714189102 C 0.17521318848773948 0.1746948769480515 0.1741915205245426 0.1870120594398783 0.17427675376281618 0.18590631695541776" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17427675376281618 0.18590631695541776 C 0.174322713618167 0.18652946134540718 0.17483465654962482 0.19482969762190425 0.17482827202702625 0.1933840496352907 C 0.17483465654962482 0.19482969762190425 0.17431379270124686 0.20407659639140427 0.17435336803399912 0.20325409279478016" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17435336803399912 0.20325409279478016 C 0.17404284520248567 0.2023702172492729 0.17010171994709394 0.19096662094222444 0.17062709405583767 0.19264758624869324 C 0.17010171994709394 0.19096662094222444 0.16783402745184423 0.18228541935619302 0.16804887872907448 0.18308250911715457" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16804887872907448 0.18308250911715457 C 0.16806008448289433 0.18210292038295162 0.16840522472099212 0.16943257597354494 0.16818334777491287 0.17132744430671923 C 0.16840522472099212 0.16943257597354494 0.17092207327428494 0.15942880952009195 0.17071140208202554 0.16034408911906328" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17071140208202554 0.16034408911906328 C 0.17092839868177387 0.16002831944179216 0.17372146641344852 0.15616627701539088 0.17331536127900546 0.15655485299180988 C 0.17372146641344852 0.15616627701539088 0.175773772230037 0.1556083711028875 0.17558466369534229 0.15568117740203538" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3245206654383008,0.08742697586365877) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.1786599865902263 0.15722227430024227 C 0.17865146313552593 0.15738612260129817 0.17836186608769766 0.15974594705153372 0.17855770513382194 0.15918845391291306 C 0.17836186608769766 0.15974594705153372 0.1761226024453111 0.16430583680125493 0.176309918036735 0.16391219196369017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.176309918036735 0.16391219196369017 C 0.17618473309945673 0.16458870446388532 0.1745291230364016 0.17339698689746172 0.17480769878939548 0.1720303419660319 C 0.1745291230364016 0.17339698689746172 0.1728136181850929 0.18100206357208273 0.17296700900080847 0.18031193114084806" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17296700900080847 0.18031193114084806 C 0.1729293658683999 0.1811069171132604 0.1725136214250294 0.19125563240809454 0.17251529141190572 0.1898517628097963 C 0.1725136214250294 0.19125563240809454 0.17298294230382502 0.197767249946313 0.17294696915829277 0.1971583663204271" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17294696915829277 0.1971583663204271 C 0.17252214690653864 0.1965092814839254 0.16729073057932914 0.18795458231367468 0.167849102137243 0.1893693482824067 C 0.16729073057932914 0.18795458231367468 0.16611296115716692 0.17941549356341238 0.1662465104633266 0.1801811746956427" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1662465104633266 0.1801811746956427 C 0.16635675171802933 0.17930658185735374 0.167979380985807 0.16821951588095993 0.16756940551975935 0.16968606063617517 C 0.167979380985807 0.16821951588095993 0.17146595026724348 0.16199068571613356 0.17116621605589855 0.16258263763305983" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17116621605589855 0.16258263763305983 C 0.1715550934691663 0.16223987512896498 0.17645722589297252 0.1580227906395203 0.17583274501511187 0.15846948758392176 C 0.17645722589297252 0.1580227906395203 0.17889559005481917 0.15711833985993565 0.1786599865902263 0.15722227430024227" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31370917817631905,0.09000166485692815) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.18037896509729023 0.1421297383217348 C 0.18009145077787153 0.14301030158550862 0.17645331193450076 0.15457241883611142 0.17692879326426567 0.15269649748702047 C 0.17645331193450076 0.15457241883611142 0.1744852221297652 0.16563615259614342 0.17467318914011137 0.16464079451082628" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17467318914011137 0.16464079451082628 C 0.17472910506001832 0.16573407679123917 0.17537213813894803 0.1800714337833251 0.17534418017899456 0.17776018187578085 C 0.17537213813894803 0.1800714337833251 0.17498072669959963 0.19359378702848853 0.17500868465955308 0.19237581740135717" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17500868465955308 0.19237581740135717 C 0.17493440562910717 0.193601045447743 0.1742080922228128 0.20988475798942216 0.17411733629420212 0.2070785539579873 C 0.1742080922228128 0.20988475798942216 0.17626279076193796 0.22763124176362454 0.17609775580288137 0.2260502657785755" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17609775580288137 0.2260502657785755 C 0.17567233094311904 0.2244932681294339 0.1703181180819626 0.20446251190422063 0.17099265748573358 0.20736629398887615 C 0.1703181180819626 0.20446251190422063 0.1677541684136207 0.18985809632719536 0.1680032829576294 0.19120488076270928" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1680032829576294 0.19120488076270928 C 0.16784898931415237 0.1898051584063693 0.1661257092642108 0.1717636806945214 0.16615175923590525 0.17440821248662944 C 0.1661257092642108 0.1717636806945214 0.16781892696907863 0.15822568982164456 0.16769068329729606 0.15947049925741263" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16769068329729606 0.15947049925741263 C 0.16813185495532196 0.15853479453812094 0.17404210001027293 0.1467969792146058 0.17298474319360674 0.14824204262591228 C 0.17404210001027293 0.1467969792146058 0.18099515025593052 0.14162037962972002 0.18037896509729023 0.1421297383217348" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31370917817631905,0.09000166485692815) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18145129184674708 0.13018357941873765 C 0.18144291616623837 0.13040278421229942 0.18128621206567752 0.13322327310905416 0.18135078368064256 0.132814036941479 C 0.18128621206567752 0.13322327310905416 0.18062023653271014 0.13528444480365276 0.18067643246716647 0.1350944134296394" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18067643246716647 0.1350944134296394 C 0.1805476282770508 0.1351878511574736 0.1788598430455313 0.13632781392350574 0.17913078218577813 0.13621566616364975 C 0.1788598430455313 0.13632781392350574 0.17728302783407338 0.13645889657993326 0.1774251627842045 0.13644018654791146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1774251627842045 0.13644018654791146 C 0.1773710060812383 0.13649269593642768 0.1766577818967548 0.13712713188220674 0.17677528234860984 0.13707029921010613 C 0.1766577818967548 0.13712713188220674 0.1758962557246042 0.13708148065501066 0.1760151573619441 0.1371221786131188 C 0.1758962557246042 0.13708148065501066 0.17526001947541053 0.13645460010950033 0.1753484627005313 0.13658192371280853 C 0.17526001947541053 0.13645460010950033 0.17491955213834037 0.13541446238159588 0.1749538386604949 0.1355942953734203 C 0.17491955213834037 0.13541446238159588 0.17496608166141106 0.1342397715355065 0.1749370244346768 0.13442392781091533 C 0.17496608166141106 0.1342397715355065 0.17533298379352527 0.13329779442331435 0.17530252538130617 0.13338442006851442" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17530252538130617 0.13338442006851442 C 0.17530522394256523 0.13316497625005239 0.17538965270636647 0.13032771101236051 0.17533490811641483 0.13075109424696993 C 0.17538965270636647 0.13032771101236051 0.17601150648941827 0.12809988183705423 0.1759594604607257 0.12830382125320158" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1759594604607257 0.12830382125320158 C 0.17607896950116075 0.12820493595373308 0.17765468106117985 0.12699090283268932 0.17739356894594643 0.12711719765957957 C 0.17765468106117985 0.12699090283268932 0.17923440891832498 0.12676087380309692 0.17909280584352663 0.12678828333051867" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3117550757951283,0.0932148508237205) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10746924305527246 0.10266280772405723 C 0.10727755486219809 0.10287086081618842 0.105779367790444 0.10421076978874763 0.10631911389682619 0.10391112627684436 C 0.105779367790444 0.10421076978874763 0.10387929809301054 0.10409447954739914 0.10423076641697937 0.1044606687954769 C 0.10387929809301054 0.10409447954739914 0.1043564635062987 0.10084951712899984 0.10421030395301319 0.10171399078837787 C 0.1043564635062987 0.10084951712899984 0.10510772373669244 0.09927382683920868 0.10510772373669244 0.09927382683920868 C 0.10510772373669244 0.09927382683920868 0.10406414439972768 0.1025784644477559 0.10421030395301319 0.10171399078837787 C 0.10406414439972768 0.1025784644477559 0.10394627677345587 0.10499697740492302 0.10423076641697937 0.1044606687954769 C 0.10394627677345587 0.10499697740492302 0.10201953000686034 0.10516743715856411 0.10250336609187223 0.10493184244505455 C 0.10201953000686034 0.10516743715856411 0.10113181387608071 0.10603130284844758 0.10132774990690807 0.10587423707653429" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3098009734139376,0.09642803679051287) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13937124236798004 0.11524489271857584 C 0.1394206722784332 0.1154258863228284 0.14001655894389423 0.11778455338178594 0.13996440129341786 0.11741681596960649 C 0.14001655894389423 0.11778455338178594 0.1399998619137196 0.11984448547265619 0.13999713417369639 0.1196577416647293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13999713417369639 0.1196577416647293 C 0.13991551984197143 0.11981125327238688 0.13882441111847021 0.12175507229094347 0.1390177621929969 0.12149988095662038 C 0.13882441111847021 0.12175507229094347 0.13756518453657424 0.12282171740327175 0.13767692127937597 0.12272003767660626" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13767692127937597 0.12272003767660626 C 0.13764600186452705 0.1227951925576486 0.13722414121890184 0.12373914405122813 0.13730588830118878 0.12362189624911439 C 0.13722414121890184 0.12373914405122813 0.1365880119369107 0.12416685641993487 0.13669595629193262 0.12412701130197117 C 0.1365880119369107 0.12416685641993487 0.13590533801592422 0.12405180363131182 0.13601055604092555 0.12410003766467885 C 0.13590533801592422 0.12405180363131182 0.1353590413817645 0.12342481398715757 0.13543333999191687 0.12354820290156693 C 0.1353590413817645 0.12342481398715757 0.1350955017763826 0.12245388885628578 0.13511897271909695 0.12261937069176654 C 0.1350955017763826 0.12245388885628578 0.13515441500936526 0.12147434172446711 0.13515168867934463 0.12156242087579784" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13515168867934463 0.12156242087579784 C 0.13509754249069061 0.12138469711722093 0.13443808587335312 0.1190566390236547 0.1345019344154963 0.11942973577287494 C 0.13443808587335312 0.1190566390236547 0.1343758038201373 0.11688988689451163 0.13438550617362646 0.11708525988515496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13438550617362646 0.11708525988515496 C 0.1344580999741586 0.11693304496807501 0.13543829196287208 0.11499813020883173 0.13525663178001218 0.1152586808801956 C 0.13543829196287208 0.11499813020883173 0.1366744947502728 0.11385031607450471 0.13656542836794505 0.11395865182878863" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30902395821963635,0.10019776529177275) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1065137385043163 0.10105435357599485 C 0.10640999932534535 0.1013381744229445 0.10552570084540083 0.103326819285064 0.10589130343049066 0.10275727865769277 C 0.10552570084540083 0.103326819285064 0.10393789361025617 0.10439208134394624 0.10432012299377733 0.10447159734022227 C 0.10393789361025617 0.10439208134394624 0.10349574984351964 0.10149742136960146 0.10359792712936373 0.10228018268003666 C 0.10349574984351964 0.10149742136960146 0.10370705927871272 0.09977502947761109 0.10370705927871272 0.09977502947761109 C 0.10370705927871272 0.09977502947761109 0.10370010441520783 0.10306294399047186 0.10359792712936373 0.10228018268003666 C 0.10370010441520783 0.10306294399047186 0.10422459680362368 0.10507539118796728 0.10432012299377733 0.10447159734022227 C 0.10422459680362368 0.10507539118796728 0.10268856081334014 0.10638700338029214 0.10302476998844189 0.1059029457665068 C 0.10268856081334014 0.10638700338029214 0.10218255093562102 0.10762144256567222 0.10230286794316686 0.1073759430229343" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3082469430253352,0.10396749379303268) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1392896724549893 0.11433307660101658 C 0.1393739581037376 0.11445286230950662 0.1404321566725862 0.11604119234826614 0.14030110023996895 0.11577050510289712 C 0.1404321566725862 0.11604119234826614 0.14090912043026554 0.11773222508232385 0.14086234964639657 0.11758132354544487" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14086234964639657 0.11758132354544487 C 0.14083097667680347 0.1177528131456623 0.140385696453667 0.1199569077361395 0.1404858740112794 0.11963919874805397 C 0.140385696453667 0.1199569077361395 0.1395914143670283 0.12154005079033932 0.1396602189550476 0.12139383140247122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1396602189550476 0.12139383140247122 C 0.13965238370772975 0.12147267532329138 0.13952607110038437 0.12248191988817914 0.1395661959872336 0.12233995845231314 C 0.13952607110038437 0.12248191988817914 0.13909833862441687 0.12319096496999565 0.13917872031285686 0.12309736863286311 C 0.13909833862441687 0.12319096496999565 0.13850251544442668 0.12348326667335362 0.13860161572595367 0.12346311449790369 C 0.13850251544442668 0.12348326667335362 0.1378982519003237 0.12328050299289194 0.13798951693453287 0.12333919473826217 C 0.1378982519003237 0.12328050299289194 0.13744745992076593 0.12263700429304482 0.1375064353154437 0.12275881355346088 C 0.13744745992076593 0.12263700429304482 0.1372630936053126 0.12180403945158681 0.1372818121983996 0.12187748361326943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1372818121983996 0.12187748361326943 C 0.13719437886798636 0.12176303541611512 0.13609054465843134 0.12023565713265422 0.13623261223344052 0.1205041052474177 C 0.13609054465843134 0.12023565713265422 0.13552236705369378 0.1185021063184985 0.13557700129828967 0.11865610623610767" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13557700129828967 0.11865610623610767 C 0.13560117259752852 0.11849077853127493 0.13595622330437634 0.1163567039206349 0.13586705688915582 0.11667217377811487 C 0.13595622330437634 0.1163567039206349 0.1367119933969176 0.11472032579370069 0.13664699828093593 0.11487046794634793" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30849828312971567,0.10748443641012664) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10540285430569092 0.10039845044887453 C 0.10538411146954015 0.10068883265359496 0.10512170695006143 0.10281251704687318 0.1052903972887863 0.10214074367719708 C 0.10512170695006143 0.10281251704687318 0.10405351293914894 0.10458042561886906 0.10439071227334175 0.10442909066693114 C 0.10405351293914894 0.10458042561886906 0.10299560056258814 0.10246756789213672 0.10326720128362943 0.10304875338882462 C 0.10299560056258814 0.10246756789213672 0.10276110794709399 0.10094197768680375 0.10276110794709399 0.10094197768680375 C 0.10276110794709399 0.10094197768680375 0.10353880200467072 0.10362993888551252 0.10326720128362943 0.10304875338882462 C 0.10353880200467072 0.10362993888551252 0.10445505483568956 0.10497603024619048 0.10439071227334175 0.10442909066693114 C 0.10445505483568956 0.10497603024619048 0.10348866987157038 0.10691575247610062 0.10365325665771633 0.1063303908643807 C 0.10348866987157038 0.10691575247610062 0.10336151403959103 0.10820973858272893 0.10340319155646607 0.10794126033725061" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.31370917817631905,0.09000166485692815) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.17935136146313815 0.15632979545162684 C 0.17921266112691453 0.15672348145964712 0.17747440795064046 0.16181857044922215 0.1776869574284547 0.16105402754787024 C 0.17747440795064046 0.16181857044922215 0.1767269185877766 0.1658751671611815 0.1768007677293672 0.16550431026784987" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1768007677293672 0.16550431026784987 C 0.17660023668642105 0.1662130643204706 0.17391706741932902 0.1754804735720717 0.17439439521401348 0.1740093588992984 C 0.17391706741932902 0.1754804735720717 0.17079603744141544 0.18392004696128217 0.17107283419315375 0.18315768634112958" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17107283419315375 0.18315768634112958 C 0.1706695693871994 0.1844520517655866 0.1652700604192766 0.20084007676081286 0.16623365652170158 0.19869007143461373 C 0.1652700604192766 0.20084007676081286 0.15894934966758345 0.2098133901572612 0.15950968096405407 0.20895775025551908" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15950968096405407 0.20895775025551908 C 0.15982007243801014 0.20793941683693232 0.16373709651078536 0.19430313200166469 0.16323437865152685 0.19673774923247808 C 0.16373709651078536 0.19430313200166469 0.1657346216604587 0.17832605967353182 0.16554229527515624 0.17974234348575846" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16554229527515624 0.17974234348575846 C 0.16569165839289363 0.1789621454728944 0.16777217636776837 0.1690338811262292 0.1673346526880049 0.17037996733138971 C 0.16777217636776837 0.1690338811262292 0.17108073999434392 0.16302342083153584 0.17079257943231785 0.16358930902383229" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17079257943231785 0.16358930902383229 C 0.17103066010297635 0.16333044364192037 0.17436277931612154 0.15987796497653878 0.17364954748021985 0.16048292444088924 C 0.17436277931612154 0.15987796497653878 0.17982651262838134 0.15598370136918832 0.17935136146313815 0.15632979545162684" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32895831599132364,0.08626044283757239) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.1757298995055652 0.1578322999450191 C 0.17577144635843892 0.15808690834906525 0.1762261583370189 0.16148993902191597 0.17622846174004975 0.160887600793573 C 0.1762261583370189 0.16148993902191597 0.17565840841329042 0.1654080885094316 0.17570225866919498 0.16506035868513477" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17570225866919498 0.16506035868513477 C 0.1755209943614404 0.1658766460492025 0.1732845269538506 0.17633579257918777 0.17352708697614 0.17485580705394757 C 0.1732845269538506 0.17633579257918777 0.1727302426871876 0.1834838831491898 0.1727915384017224 0.18282018498801733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1727915384017224 0.18282018498801733 C 0.17281637061926844 0.18348315371741564 0.17313846200169003 0.19229178129191207 0.17308952501227473 0.1907758097407969 C 0.17313846200169003 0.19229178129191207 0.1734028870465751 0.2018648464231164 0.17337878227470585 0.2010118436013995" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17337878227470585 0.2010118436013995 C 0.17300190079791272 0.20019823063102862 0.16832704331698145 0.18967318906149067 0.1688562045531883 0.19124848795694874 C 0.16832704331698145 0.18967318906149067 0.16687656768080977 0.18134657093081566 0.1670288474402235 0.18210825685590282" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1670288474402235 0.18210825685590282 C 0.1670547895099245 0.1812880033491109 0.16756241228841484 0.1707690785292359 0.1673401522766355 0.17226521477439993 C 0.16756241228841484 0.1707690785292359 0.1698922855236537 0.1634787391755623 0.16969596758157537 0.16415462191393443" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16969596758157537 0.16415462191393443 C 0.1699017265649532 0.16387836807436926 0.17266790304244165 0.16031271567507613 0.17216507538210915 0.1608395758391524 C 0.17266790304244165 0.16031271567507613 0.17602696818251987 0.157581693620508 0.1757298995055652 0.1578322999450191" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3204281041742859,0.0862623187976928) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.1740718582300162 0.15581206742386275 C 0.1738550861155747 0.15617741239577623 0.17115043187412018 0.16088151488644062 0.17147059285671834 0.16019620708682453 C 0.17115043187412018 0.16088151488644062 0.1701265375706816 0.16435572384695857 0.17022992643883827 0.16403576101925596" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17022992643883827 0.16403576101925596 C 0.1700755482110875 0.16481993864214797 0.1681561084369181 0.1751370799208897 0.1683773877058289 0.17344589249396025 C 0.1681561084369181 0.1751370799208897 0.1675076741707486 0.18523701994644662 0.16757457521190863 0.1843300101424092" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16757457521190863 0.1843300101424092 C 0.16744096404530734 0.18587662788684106 0.16590163632208135 0.2060938378673997 0.16597124121269305 0.20288942307559135 C 0.16590163632208135 0.2060938378673997 0.16680332280055774 0.2244407846914859 0.16673931652456814 0.2227829876441094" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16673931652456814 0.2227829876441094 C 0.16630453949022553 0.22090834863278697 0.1609305485515985 0.19712421564919758 0.16152199211245669 0.20028731950824022 C 0.1609305485515985 0.19712421564919758 0.15948532726775444 0.18353727648787735 0.15964199379427 0.18482574133559757" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15964199379427 0.18482574133559757 C 0.15975043506692838 0.18369040847333232 0.1614038237946122 0.16939030506374783 0.16094328906617045 0.1712017469884147 C 0.1614038237946122 0.16939030506374783 0.1655205039913544 0.16241232917719342 0.16516841053557102 0.16308843823959507" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16516841053557102 0.16308843823959507 C 0.1655472004424301 0.16270446786445084 0.17045584339241723 0.15787442950321987 0.16971388941788013 0.15848079373786422 C 0.17045584339241723 0.15787442950321987 0.1744350222976942 0.15558967356436262 0.1740718582300162 0.15581206742386275" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31370917817631905,0.09000166485692815) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.12844423897559284 0.11714421259350746 C 0.12829804885777157 0.11777971286641452 0.12655820516397365 0.12619185869145574 0.12668995756173754 0.12477021586839213 C 0.12655820516397365 0.12619185869145574 0.12687764792248368 0.13499006902042743 0.12686321020242627 0.13420392647027088" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12686321020242627 0.13420392647027088 C 0.12700102952778713 0.13340736804596925 0.12909869998210627 0.12298708997312786 0.1285170421067567 0.1246452253786513 C 0.12909869998210627 0.12298708997312786 0.13428694325660956 0.11344472462276785 0.1338431047066209 0.11430630160398965" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1338431047066209 0.11430630160398965 C 0.13382864608886222 0.11493452557518195 0.13373894831560215 0.12347643197408228 0.1336696012935168 0.12184498925829733 C 0.13373894831560215 0.12347643197408228 0.13475907461148923 0.13488683293800185 0.1346752689716452 0.1338836141934092" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1346752689716452 0.1338836141934092 C 0.13451647356577104 0.13334492881186963 0.1325280812158875 0.1264658809750106 0.13276972410115537 0.12741938961493435 C 0.1325280812158875 0.1264658809750106 0.13169270686903703 0.12202668725593992 0.13177555434843075 0.1224415105143241" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13177555434843075 0.1224415105143241 C 0.13158747554117994 0.12297497436497107 0.12916026777457018 0.13038417313191636 0.12951860866142126 0.12884307672208775 C 0.12916026777457018 0.13038417313191636 0.12730520162661754 0.14194229999144894 0.12747546370621782 0.14093466743226732" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12747546370621782 0.14093466743226732 C 0.12726937790844545 0.14020251429833752 0.1247952020619554 0.13080526945459062 0.12500243413294954 0.13214882982510961 C 0.1247952020619554 0.13080526945459062 0.12498753258106626 0.12420053574945 0.12498867885428805 0.1248119429860392" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12498867885428805 0.1248119429860392 C 0.12486014587561006 0.1253090881423622 0.12320113747528008 0.13220041468081864 0.12344628311015216 0.13077768486191488 C 0.12320113747528008 0.13220041468081864 0.12193031857962909 0.14281028547546498 0.12204693123582318 0.1418847008128842" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12204693123582318 0.1418847008128842 C 0.12189572802021886 0.14108904445459908 0.12005004627866071 0.13115542963640162 0.12023249264857144 0.13233682451346265 C 0.12005004627866071 0.13115542963640162 0.11982633164258807 0.12732222376937585 0.11985757479689449 0.12770796228815176" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11985757479689449 0.12770796228815176 C 0.11968646825657298 0.12789492840515032 0.11751412559782946 0.12989867389763712 0.11780429631303639 0.12995155569213465 C 0.11751412559782946 0.12989867389763712 0.11625646203952592 0.12683353284268542 0.11637552621441134 0.1270733807541815" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11637552621441134 0.1270733807541815 C 0.11652175610829894 0.12711377777290125 0.11866257990009113 0.12705309229990502 0.11813028494106256 0.1275581449788186 C 0.11866257990009113 0.12705309229990502 0.12314913078789513 0.12046729890958541 0.12276306572275417 0.12101274860721872" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12276306572275417 0.12101274860721872 C 0.12265653815683279 0.12148187872880256 0.12140186734415127 0.12759717607892357 0.12148473493169769 0.12664231006622476 C 0.12140186734415127 0.12759717607892357 0.12179231465057208 0.13295687665071942 0.12176865467219712 0.13247114075960445" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12176865467219712 0.13247114075960445 C 0.1218942966170324 0.13186347774939242 0.12383265670217003 0.12390194062321866 0.12327635801022038 0.12517918463706007 C 0.12383265670217003 0.12390194062321866 0.12887489572270722 0.11647463158987809 0.12844423897559284 0.11714421259350746" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32929630507967844,0.07168783285742691) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.18028687260076753 0.1470464113533468 C 0.17988950169696852 0.14774854681380611 0.1747669134523392 0.15698392010569917 0.17551842175517926 0.15547203687885836 C 0.1747669134523392 0.15698392010569917 0.1709146355676456 0.16599875784181797 0.17126877296668666 0.16518901007543646" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17126877296668666 0.16518901007543646 C 0.1709629790169605 0.16625860913400087 0.16706956055520586 0.18026230445894967 0.16759924556997285 0.17802419877820952 C 0.16706956055520586 0.18026230445894967 0.16468866172444174 0.19321478486649413 0.1649125527894826 0.19204627824431839" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1649125527894826 0.19204627824431839 C 0.1649193838787505 0.19343751242385693 0.16527787849179537 0.21140401543079507 0.16499452586069727 0.20874108839878078 C 0.16527787849179537 0.21140401543079507 0.16858930590449017 0.22527309548096544 0.16831278436265995 0.2240014026284897" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16831278436265995 0.2240014026284897 C 0.16757694573173298 0.22224019566486167 0.1586899671128418 0.19920285535120366 0.1594827207915364 0.20286691906495327 C 0.1586899671128418 0.19920285535120366 0.15874282517055727 0.17812978131337281 0.15879974021832488 0.1800326380634944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15879974021832488 0.1800326380634944 C 0.1590346619414924 0.17907657363643534 0.16225686201903128 0.16668877734349996 0.16161880089633504 0.16855986493878566 C 0.16225686201903128 0.16668877734349996 0.16685961309020853 0.15666456375183943 0.16645647369067978 0.15757958692006607" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16645647369067978 0.15757958692006607 C 0.1670097732073946 0.15692818614176227 0.17424860113376495 0.14888501294986034 0.17309606789125764 0.14976277758042028 C 0.17424860113376495 0.14888501294986034 0.18088610632656002 0.14682004750109068 0.18028687260076753 0.1470464113533468" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33204590415693686,0.07182747088453473) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17198902227819265 0.1626108762015488 C 0.17181442655886522 0.16286342620627017 0.16939100909058086 0.16639298083428627 0.16989387364626352 0.16564147625820538 C 0.16939100909058086 0.16639298083428627 0.1656263787736456 0.172127885685879 0.16595464761000084 0.1716289311145195" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16595464761000084 0.1716289311145195 C 0.16552192360582638 0.1726489338376011 0.1599872743328142 0.18653885347962607 0.16076195955990732 0.18386896379149884 C 0.1599872743328142 0.18653885347962607 0.15631646366196483 0.20531749433709182 0.1566584248848835 0.2036676073720462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1566584248848835 0.2036676073720462 C 0.15661627879446122 0.20509011775999766 0.15649926550443793 0.2237442591312344 0.1561526717998161 0.2207377320274638 C 0.15649926550443793 0.2237442591312344 0.16120628913538979 0.2413299493331125 0.16081754934034564 0.23974593261729338" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16081754934034564 0.23974593261729338 C 0.16009568857528234 0.23806169554775938 0.15137011362584168 0.21590655519290733 0.15215522015958588 0.2195350877828853 C 0.15137011362584168 0.21590655519290733 0.1513330251667344 0.1942592460171138 0.15139627093541527 0.19620354153755776" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15139627093541527 0.19620354153755776 C 0.15180140873525755 0.1947035353262734 0.1572977458587032 0.17569886723375175 0.15625792453352264 0.17820346700214543 C 0.1572977458587032 0.17569886723375175 0.16450881036292028 0.1651437507597242 0.163874126837582 0.16614834431683353" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.163874126837582 0.16614834431683353 C 0.16433687964084345 0.16575522654360325 0.17010340176343677 0.16113614202846308 0.1694271604767192 0.16143093103807013 C 0.17010340176343677 0.16113614202846308 0.17220251076164877 0.16270920496517202 0.17198902227819265 0.1626108762015488" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3404488702846278,0.08741492338496484) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17368378979640908 0.15568117740203538 C 0.1738728983311038 0.15575398370118326 0.17635919734718897 0.15694342896822888 0.1759530922127459 0.15655485299180988 C 0.17635919734718897 0.15694342896822888 0.17877404800947416 0.1606598587963344 0.17855705140972583 0.16034408911906328" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17855705140972583 0.16034408911906328 C 0.17876772260198523 0.16125936871803462 0.18130698266291775 0.17322231263989352 0.1810851057168385 0.17132744430671923 C 0.18130698266291775 0.17322231263989352 0.1812307805164966 0.18406209785135752 0.18121957476267675 0.18308250911715457" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18121957476267675 0.18308250911715457 C 0.1810047234854465 0.1838795988781161 0.17811598532717 0.19432855155516204 0.1786413594359137 0.19264758624869324 C 0.17811598532717 0.19432855155516204 0.17460456262623883 0.2041379683402874 0.17491508545775228 0.20325409279478016" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17491508545775228 0.20325409279478016 C 0.17487551012500002 0.20243158919815604 0.17444656598732372 0.19193840164867718 0.17444018146472515 0.1933840496352907 C 0.17444656598732372 0.19193840164867718 0.1750376595842862 0.18528317256542834 0.17499169972893533 0.18590631695541776" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17499169972893533 0.18590631695541776 C 0.17490646649066172 0.1848005744709572 0.17388253673529236 0.17057993733573054 0.17396890086965214 0.17263740714189102 C 0.17388253673529236 0.17057993733573054 0.17395419922053174 0.16026495195979196 0.17395533011661793 0.1612166792814919" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17395533011661793 0.1612166792814919 C 0.17393564951709317 0.16086543703472744 0.17369653456230327 0.15654048049703054 0.17371916292232067 0.1570017723203186 C 0.17369653456230327 0.15654048049703054 0.17368084203591644 0.15557112782551177 0.17368378979640908 0.15568117740203538" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3501537753141675,0.08742697586365877) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.16851796737253746 0.15722227430024227 C 0.16875357083713033 0.1573262087405489 0.17196968982551245 0.15891618452832323 0.1713452089476518 0.15846948758392176 C 0.17196968982551245 0.15891618452832323 0.17640061532013304 0.16292540013715467 0.17601173790686525 0.16258263763305983" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17601173790686525 0.16258263763305983 C 0.1763114721182102 0.1631745895499861 0.18001852390905207 0.1711526053913904 0.17960854844300442 0.16968606063617517 C 0.18001852390905207 0.1711526053913904 0.1810416847541399 0.18105576753393168 0.18093144349943716 0.1801811746956427" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18093144349943716 0.1801811746956427 C 0.18079789419327744 0.18094685582787304 0.17877048026760678 0.19078411425113873 0.17932885182552064 0.1893693482824067 C 0.17877048026760678 0.19078411425113873 0.17380616255271686 0.1978074511569288 0.174230984804471 0.1971583663204271" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174230984804471 0.1971583663204271 C 0.17426695795000324 0.1965494826945412 0.17466099256398174 0.18844789321149805 0.17466266255085805 0.1898517628097963 C 0.17466099256398174 0.18844789321149805 0.17417330182954677 0.17951694516843572 0.17421094496195533 0.18031193114084806" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17421094496195533 0.18031193114084806 C 0.17405755414623975 0.1796217987096134 0.17209167942037437 0.17066369703460207 0.17237025517336826 0.1720303419660319 C 0.17209167942037437 0.17066369703460207 0.17074285098875047 0.16323567946349501 0.17086803592602876 0.16391219196369017" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17086803592602876 0.16391219196369017 C 0.17068072033460485 0.1635185471261254 0.16842440978281759 0.1586309607742924 0.16862024882894186 0.15918845391291306 C 0.16842440978281759 0.1586309607742924 0.1685094439178371 0.15705842599918637 0.16851796737253746 0.15722227430024227" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36096526257614914,0.09000166485692815) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.16361271028450658 0.1421297383217348 C 0.16422889544314687 0.1426390970137496 0.17206428900485626 0.14968710603721877 0.17100693218819008 0.14824204262591228 C 0.17206428900485626 0.14968710603721877 0.17674216374252666 0.16040620397670433 0.17630099208450076 0.15947049925741263" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17630099208450076 0.15947049925741263 C 0.17642923575628333 0.1607153086931807 0.17781386617419714 0.1770527442787375 0.1778399161458916 0.17440821248662944 C 0.17781386617419714 0.1770527442787375 0.1758340987806904 0.19260460311904926 0.17598839242416742 0.19120488076270928" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17598839242416742 0.19120488076270928 C 0.17573927788015872 0.1925516651982232 0.17232447849229224 0.21027007607353168 0.17299901789606323 0.20736629398887615 C 0.17232447849229224 0.21027007607353168 0.16746849471915312 0.22760726342771712 0.16789391957891545 0.2260502657785755" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16789391957891545 0.2260502657785755 C 0.16805895453797204 0.22446928979352648 0.1699650950162054 0.20427234992655244 0.16987433908759472 0.2070785539579873 C 0.1699650950162054 0.20427234992655244 0.16890871169179783 0.19115058935497134 0.16898299072224374 0.19237581740135717" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16898299072224374 0.19237581740135717 C 0.1689550327622903 0.19115784777422581 0.16867545316275573 0.1754489299682366 0.16864749520280226 0.17776018187578085 C 0.16867545316275573 0.1754489299682366 0.16937440216159239 0.1635475122304134 0.16931848624168544 0.16464079451082628" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16931848624168544 0.16464079451082628 C 0.16913051923133926 0.16364543642550913 0.16658740078776627 0.1508205761379295 0.16706288211753118 0.15269649748702047 C 0.16658740078776627 0.1508205761379295 0.16332519596508788 0.141249175057961 0.16361271028450658 0.1421297383217348" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.36096526257614914,0.09000166485692815) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18145129184674702 0.12678828333051867 C 0.18159289492154537 0.12681569285794042 0.18341164085956066 0.12724349248646982 0.18315052874432725 0.12711719765957957 C 0.18341164085956066 0.12724349248646982 0.18470414626998302 0.12840270655267008 0.18458463722954796 0.12830382125320158" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18458463722954796 0.12830382125320158 C 0.18463668325824054 0.12850776066934894 0.18526393416381035 0.13117447748157934 0.18520918957385873 0.13075109424696993 C 0.18526393416381035 0.13117447748157934 0.1852442708702265 0.13360386388697645 0.18524157230896743 0.13338442006851442" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18524157230896743 0.13338442006851442 C 0.18527203072118653 0.1334710457137145 0.1856361304823311 0.13460808408632416 0.18560707325559683 0.13442392781091533 C 0.1856361304823311 0.13460808408632416 0.18555597250762418 0.13577412836524472 0.18559025902977871 0.13559429537342027 C 0.18555597250762418 0.13577412836524472 0.18510719176462162 0.13670924731611675 0.1851956349897424 0.13658192371280853 C 0.18510719176462162 0.13670924731611675 0.18441003869098965 0.13716287657122692 0.18452894032832953 0.1371221786131188 C 0.18441003869098965 0.13716287657122692 0.18365131488980876 0.1370134665380055 0.1837688153416638 0.1370702992101061 C 0.18365131488980876 0.1370134665380055 0.1830647782031029 0.13638767715939523 0.18311893490606912 0.13644018654791146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18311893490606912 0.13644018654791146 C 0.182976799955938 0.13642147651588965 0.18114237636424865 0.13610351840379376 0.1814133155044955 0.13621566616364975 C 0.18114237636424865 0.13610351840379376 0.17973886103299141 0.13500097570180522 0.17986766522310713 0.1350944134296394" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17986766522310713 0.1350944134296394 C 0.1798114692886508 0.13490438205562605 0.17912874239466603 0.13240480077390385 0.17919331400963107 0.132814036941479 C 0.17912874239466603 0.13240480077390385 0.17908443016301787 0.12996437462517588 0.17909280584352658 0.13018357941873765" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3629193649573399,0.0932148508237205) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10734675684440337 0.10587423707653429 C 0.107150820813576 0.105717171304621 0.1056873045744273 0.10469624773154498 0.10617114065943918 0.10493184244505455 C 0.1056873045744273 0.10469624773154498 0.10415925069080859 0.10392436018603078 0.10444374033433208 0.1044606687954769 C 0.10415925069080859 0.10392436018603078 0.1043180432450127 0.10084951712899984 0.10446420279829823 0.10171399078837787 C 0.1043180432450127 0.10084951712899984 0.103566783014619 0.09927382683920868 0.103566783014619 0.09927382683920868 C 0.103566783014619 0.09927382683920868 0.10461036235158375 0.1025784644477559 0.10446420279829823 0.10171399078837787 C 0.10461036235158375 0.1025784644477559 0.10409227201036325 0.10482685804355465 0.10444374033433208 0.1044606687954769 C 0.10409227201036325 0.10482685804355465 0.10181564674810303 0.10361148276494109 0.10235539285448522 0.10391112627684436 C 0.10181564674810303 0.10361148276494109 0.10101357550296461 0.10245475463192603 0.10120526369603898 0.10266280772405723" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.36487346733853065,0.09642803679051287) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13937124236798015 0.11395865182878863 C 0.1394803087503079 0.11406698758307254 0.14086169913877297 0.11551923155155946 0.14068003895591308 0.1152586808801956 C 0.14086169913877297 0.11551923155155946 0.1416237583628309 0.11723747480223493 0.14155116456229874 0.11708525988515497" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14155116456229874 0.11708525988515497 C 0.1415414622088096 0.1172806328757983 0.14137088777828571 0.11980283252209518 0.14143473632042888 0.11942973577287494 C 0.14137088777828571 0.11980283252209518 0.14073083586792665 0.12174014463437476 0.14078498205658066 0.12156242087579784" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14078498205658066 0.12156242087579784 C 0.1407877083866013 0.12165050002712857 0.140794227074114 0.1227848525272473 0.14081769801682834 0.12261937069176654 C 0.140794227074114 0.1227848525272473 0.140429032133856 0.12367159181597628 0.14050333074400836 0.12354820290156693 C 0.140429032133856 0.12367159181597628 0.13982089666999842 0.12414827169804588 0.13992611469499971 0.12410003766467885 C 0.13982089666999842 0.12414827169804588 0.13913277008897074 0.12408716618400746 0.13924071444399266 0.12412701130197117 C 0.13913277008897074 0.12408716618400746 0.13854903535244947 0.12350464844700065 0.13863078243473642 0.12362189624911439 C 0.13854903535244947 0.12350464844700065 0.13822883004170033 0.12264488279556392 0.13825974945654926 0.12272003767660626" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13825974945654926 0.12272003767660626 C 0.13814801271374752 0.12261835794994078 0.13672555746840165 0.1212446896222973 0.13691890854292835 0.12149988095662038 C 0.13672555746840165 0.1212446896222973 0.13585792223050394 0.11950423005707171 0.1359395365622289 0.1196577416647293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1359395365622289 0.1196577416647293 C 0.13594226430225212 0.1194709978568024 0.1360244270929838 0.11704907855742704 0.13597226944250743 0.11741681596960649 C 0.1360244270929838 0.11704907855742704 0.1366148582783983 0.11506389911432327 0.13656542836794516 0.11524489271857583" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36565048253283183,0.10019776529177274) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10637163880814458 0.1073759430229343 C 0.10625132180059874 0.10713044348019637 0.1053135275877678 0.10541888815272146 0.10564973676286954 0.1059029457665068 C 0.1053135275877678 0.10541888815272146 0.10425885756738047 0.10386780349247725 0.10435438375753411 0.10447159734022227 C 0.10425885756738047 0.10386780349247725 0.10517875690779183 0.10149742136960146 0.10507657962194772 0.10228018268003666 C 0.10517875690779183 0.10149742136960146 0.10496744747259873 0.0997750294776111 0.10496744747259873 0.0997750294776111 C 0.10496744747259873 0.0997750294776111 0.10497440233610361 0.10306294399047186 0.10507657962194772 0.10228018268003666 C 0.10497440233610361 0.10306294399047186 0.10397215437401296 0.10455111333649829 0.10435438375753411 0.10447159734022227 C 0.10397215437401296 0.10455111333649829 0.10241760073573097 0.10218773803032154 0.10278320332082079 0.10275727865769277 C 0.10241760073573097 0.10218773803032154 0.10205702906802423 0.1007705327290452 0.10216076824699517 0.10105435357599485" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.366427497727133,0.10396749379303269) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928967245498936 0.11487046794634793 C 0.13935466757097104 0.11502061009899518 0.1401587802619899 0.11698764363559484 0.1400696138467694 0.11667217377811487 C 0.1401587802619899 0.11698764363559484 0.1403838407368744 0.11882143394094039 0.14035966943763556 0.11865610623610766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14035966943763556 0.11865610623610766 C 0.14030503519303966 0.11881010615371683 0.13956199092747554 0.12077255336218118 0.13970405850248468 0.1205041052474177 C 0.13956199092747554 0.12077255336218118 0.1385674252071124 0.12199193181042374 0.13865485853752565 0.12187748361326943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13865485853752565 0.12187748361326943 C 0.13863613994443863 0.12195092777495205 0.13837126002580372 0.12288062281387695 0.1384302354204815 0.12275881355346088 C 0.13837126002580372 0.12288062281387695 0.1378558887671832 0.12339788648363241 0.13794715380139236 0.12333919473826217 C 0.1378558887671832 0.12339788648363241 0.13723595472844458 0.12344296232245376 0.1373350550099716 0.12346311449790369 C 0.13723595472844458 0.12344296232245376 0.13667756873462836 0.12300377229573056 0.13675795042306835 0.12309736863286311 C 0.13667756873462836 0.12300377229573056 0.13633034986184242 0.12219799701644715 0.13637047474869166 0.12233995845231314 C 0.13633034986184242 0.12219799701644715 0.13626861653355976 0.12131498748165105 0.1362764517808776 0.12139383140247122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1362764517808776 0.12139383140247122 C 0.1362076471928583 0.12124761201460311 0.13535061916703345 0.11932148975996844 0.13545079672464586 0.11963919874805397 C 0.13535061916703345 0.11932148975996844 0.1350429481199356 0.11740983394522744 0.13507432108952871 0.11758132354544487" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13507432108952871 0.11758132354544487 C 0.1351210918733977 0.11743042200856589 0.13576662692857352 0.1154998178575281 0.13563557049595626 0.11577050510289712 C 0.13576662692857352 0.1154998178575281 0.1367312839296843 0.11421329089252653 0.136646998280936 0.11433307660101658" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36617615762275246,0.10748443641012666) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10527131519484535 0.10794126033725061 C 0.10522963767797032 0.10767278209177229 0.1048566633074492 0.10574502925266079 0.10502125009359513 0.1063303908643807 C 0.1048566633074492 0.10574502925266079 0.10434813704031752 0.10388215108767179 0.1042837944779697 0.10442909066693114 C 0.10434813704031752 0.10388215108767179 0.10567890618872329 0.10246756789213672 0.105407305467682 0.10304875338882462 C 0.10567890618872329 0.10246756789213672 0.10591339880421745 0.10094197768680375 0.10591339880421745 0.10094197768680375 C 0.10591339880421745 0.10094197768680375 0.1051357047466407 0.10362993888551252 0.105407305467682 0.10304875338882462 C 0.1051357047466407 0.10362993888551252 0.1039465951437769 0.10427775571499322 0.1042837944779697 0.10442909066693114 C 0.1039465951437769 0.10427775571499322 0.10321541912380026 0.10146897030752099 0.10338410946252513 0.10214074367719708 C 0.10321541912380026 0.10146897030752099 0.1032529096094697 0.10010806824415411 0.10327165244562048 0.10039845044887453" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.36096526257614914,0.09000166485692815) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.16238011173807673 0.15632979545162684 C 0.16285526290331992 0.15667588953406536 0.16879515755689667 0.1610878839052397 0.16808192572099498 0.16048292444088924 C 0.16879515755689667 0.1610878839052397 0.1711769744395555 0.1638481744057442 0.170938893768897 0.16358930902383229" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.170938893768897 0.16358930902383229 C 0.17122705433092308 0.16415519721612873 0.1748343441929734 0.17172605353655024 0.17439682051320993 0.17037996733138971 C 0.1748343441929734 0.17172605353655024 0.17633854104379598 0.1805225414986225 0.1761891779260586 0.17974234348575846" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1761891779260586 0.17974234348575846 C 0.17638150431136104 0.1811586272979851 0.17899981240894644 0.19917236646329148 0.17849709454968793 0.19673774923247808 C 0.17899981240894644 0.19917236646329148 0.18253218371111687 0.20997608367410583 0.1822217922371608 0.20895775025551908" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1822217922371608 0.20895775025551908 C 0.1816614609406902 0.20810211035377696 0.17453422057708826 0.1965400661084146 0.17549781667951322 0.19869007143461373 C 0.17453422057708826 0.1965400661084146 0.1702553742021068 0.18186332091667257 0.17065863900806114 0.18315768634112958" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17065863900806114 0.18315768634112958 C 0.17038184225632283 0.182395325720977 0.16685975019251686 0.17253824422652508 0.16733707798720132 0.1740093588992984 C 0.16685975019251686 0.17253824422652508 0.16473017442890145 0.16479555621522915 0.1649307054718476 0.16550431026784987" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1649307054718476 0.16550431026784987 C 0.16485685633025698 0.16513345337451824 0.16383196629494587 0.16028948464651832 0.1640445157727601 0.16105402754787024 C 0.16383196629494587 0.16028948464651832 0.1622414114018531 0.15593610944360656 0.16238011173807673 0.15632979545162684" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34571612476114466,0.08626044283757239) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.1709215494875951 0.1578322999450191 C 0.17121861816454978 0.1580829062695302 0.17498920127138365 0.16136643600322867 0.17448637361105115 0.1608395758391524 C 0.17498920127138365 0.16136643600322867 0.17716124039496287 0.1644308757534996 0.17695548141158504 0.16415462191393443" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17695548141158504 0.16415462191393443 C 0.17715179935366338 0.16483050465230656 0.17953355672830437 0.17376135101956397 0.17931129671652504 0.17226521477439993 C 0.17953355672830437 0.17376135101956397 0.1796485436226379 0.18292851036269472 0.1796226015529369 0.18210825685590282" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1796226015529369 0.18210825685590282 C 0.17947032179352318 0.18286994278098997 0.17726608320376525 0.1928237868524068 0.1777952444399721 0.19124848795694874 C 0.17726608320376525 0.1928237868524068 0.1728957852416615 0.2018254565717704 0.17327266671845462 0.2010118436013995" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17327266671845462 0.2010118436013995 C 0.17329677149032388 0.20015884077968263 0.173610860970301 0.1892598381896817 0.1735619239808857 0.1907758097407969 C 0.173610860970301 0.1892598381896817 0.17388474280898417 0.18215721625861903 0.17385991059143813 0.18282018498801733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17385991059143813 0.18282018498801733 C 0.17379861487690332 0.18215648682684485 0.17288180199473113 0.17337582152870737 0.17312436201702053 0.17485580705394757 C 0.17288180199473113 0.17337582152870737 0.17076792601621085 0.16424407132106705 0.17094919032396544 0.16506035868513477" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17094919032396544 0.16506035868513477 C 0.17090534006806088 0.16471262886083796 0.17042068385007983 0.16028526256523004 0.1704229872531107 0.160887600793573 C 0.17042068385007983 0.16028526256523004 0.1709630963404688 0.15757769154097295 0.1709215494875951 0.1578322999450191" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3542463365781824,0.0862623187976928) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.16440494353190555 0.15581206742386275 C 0.16476810759958355 0.15603446128336287 0.16950486631857872 0.15908715797250858 0.16876291234404162 0.15848079373786422 C 0.16950486631857872 0.15908715797250858 0.1736871811332098 0.1634724086147393 0.17330839122635072 0.16308843823959507" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17330839122635072 0.16308843823959507 C 0.1736604846821341 0.16376454730199672 0.17799404742419306 0.17301318891308157 0.1775335126957513 0.1712017469884147 C 0.17799404742419306 0.17301318891308157 0.17894324924031013 0.1859610741978628 0.17883480796765175 0.18482574133559757" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17883480796765175 0.18482574133559757 C 0.1786781414411362 0.18611420618331778 0.17636336608860687 0.20345042336728286 0.17695480964946506 0.20028731950824022 C 0.17636336608860687 0.20345042336728286 0.171302708203011 0.22465762665543182 0.1717374852373536 0.2227829876441094" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1717374852373536 0.2227829876441094 C 0.1718014915133432 0.22112519059673288 0.172435955658617 0.199685008283783 0.1725055605492287 0.20288942307559135 C 0.172435955658617 0.199685008283783 0.17076861538341181 0.18278339239797736 0.1709022265500131 0.1843300101424092" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1709022265500131 0.1843300101424092 C 0.17083532550885308 0.1834230003383718 0.16987813478718203 0.1717547050670308 0.17009941405609283 0.17344589249396025 C 0.16987813478718203 0.1717547050670308 0.1680924970953327 0.16325158339636395 0.16824687532308347 0.16403576101925596" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16824687532308347 0.16403576101925596 C 0.1681434864549268 0.16371579819155335 0.16668604792260525 0.15951089928720844 0.1670062089052034 0.16019620708682453 C 0.16668604792260525 0.15951089928720844 0.16418817141746406 0.15544672245194927 0.16440494353190555 0.15581206742386275" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.17194709033670127,-0.15955296299577326)"><path d="M 0.1718241093950515 0.15522038932254642 C 0.17196262269886842 0.15526669360631995 0.1737700435173715 0.15622346925582883 0.17348626904085473 0.15577604072782866 C 0.1737700435173715 0.15622346925582883 0.1753746642859523 0.16099065590277528 0.1752294031132525 0.1605895316585486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1752294031132525 0.1605895316585486 C 0.17536549687071398 0.1615964128476336 0.17690409050589462 0.1747127175519616 0.17686252820279044 0.17267210592756826 C 0.17690409050589462 0.1747127175519616 0.17563361929614546 0.18611060158657697 0.17572815075050277 0.1850768711512686" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17572815075050277 0.1850768711512686 C 0.17562872164297635 0.18572558706370035 0.17423135952817267 0.19470556499614455 0.17453500146018588 0.1928614621004496 C 0.17423135952817267 0.19470556499614455 0.1718802347418575 0.20840149288287113 0.1720844475663443 0.20720610589960795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1720844475663443 0.20720610589960795 C 0.17186365150525146 0.20601071891634476 0.16909355057555192 0.19101735920475466 0.16943489483323024 0.1928614621004496 C 0.16909355057555192 0.19101735920475466 0.16786776827761885 0.18442815523883688 0.16798831647420434 0.1850768711512686" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16798831647420434 0.1850768711512686 C 0.1679126127956436 0.18404314071596026 0.16714026241037624 0.17063149430317492 0.16707987233147548 0.17267210592756826 C 0.16714026241037624 0.17063149430317492 0.16884909117847494 0.15958265046946363 0.16871299742101345 0.1605895316585486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16871299742101345 0.1605895316585486 C 0.1688487558729351 0.1601725974931417 0.17060135817524308 0.15513889314566554 0.17034209884407325 0.1555863216736657 C 0.17060135817524308 0.15513889314566554 0.17194761027429967 0.15518989495995314 0.1718241093950515 0.15522038932254642" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36096526257614914,0.09000166485692815) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.10979054773921448 0.11714421259350746 C 0.11022120448632886 0.11781379359713684 0.11551472739653659 0.12645642865090148 0.11495842870458695 0.12517918463706007 C 0.11551472739653659 0.12645642865090148 0.11659177398744551 0.13307880376981648 0.11646613204261023 0.13247114075960445" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11646613204261023 0.13247114075960445 C 0.11648979202098518 0.13198540486848948 0.11666718419556317 0.12568744405352594 0.1167500517831096 0.12664231006622476 C 0.11666718419556317 0.12568744405352594 0.11536519342613175 0.12054361848563488 0.11547172099205312 0.12101274860721872" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11547172099205312 0.12101274860721872 C 0.1158577860571941 0.12155819830485204 0.12063679673277337 0.12806319765773216 0.1201045017737448 0.1275581449788186 C 0.12063679673277337 0.12806319765773216 0.12200549039428357 0.12703298373546176 0.12185926050039597 0.1270733807541815" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12185926050039597 0.1270733807541815 C 0.12174019632551056 0.1273132286656776 0.12014031968656405 0.13000443748663218 0.12043049040177098 0.12995155569213465 C 0.12014031968656405 0.13000443748663218 0.11820610537759135 0.1275209961711532 0.11837721191791287 0.12770796228815176" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11837721191791287 0.12770796228815176 C 0.11834596876360645 0.12809370080692767 0.11781984769632516 0.1335182193905237 0.11800229406623587 0.13233682451346265 C 0.11781984769632516 0.1335182193905237 0.1160366522633799 0.14268035717116934 0.1161878554789842 0.1418847008128842" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1161878554789842 0.1418847008128842 C 0.11607124282279012 0.14095911615030343 0.11454335796978315 0.12935495504301112 0.11478850360465523 0.13077768486191488 C 0.11454335796978315 0.12935495504301112 0.11311757488184125 0.12431479782971623 0.11324610786051925 0.1248119429860392" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11324610786051925 0.1248119429860392 C 0.11324496158729747 0.1254233502226284 0.11302512051086361 0.1334923901956286 0.11323235258185775 0.13214882982510961 C 0.11302512051086361 0.1334923901956286 0.1105532372108172 0.14166682056619712 0.11075932300858955 0.14093466743226732" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11075932300858955 0.14093466743226732 C 0.11058906092898926 0.1399270348730857 0.10835783716653494 0.12730198031225914 0.10871617805338601 0.12884307672208775 C 0.10835783716653494 0.12730198031225914 0.10627115355912578 0.12190804666367713 0.10645923236637657 0.1224415105143241" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10645923236637657 0.1224415105143241 C 0.10637638488698287 0.12285633377270828 0.10522341972838423 0.1283728982548581 0.10546506261365209 0.12741938961493435 C 0.10522341972838423 0.1283728982548581 0.10340072233728817 0.13442229957494875 0.10355951774316231 0.1338836141934092" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10355951774316231 0.1338836141934092 C 0.10364332338300633 0.13288039544881652 0.10463453244337595 0.12021354654251237 0.1045651854212906 0.12184498925829733 C 0.10463453244337595 0.12021354654251237 0.10437722339042779 0.11367807763279734 0.10439168200818646 0.11430630160398965" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10439168200818646 0.11430630160398965 C 0.10483552055817515 0.11516787858521145 0.11029940248340019 0.12630336078417473 0.10971774460805064 0.1246452253786513 C 0.11029940248340019 0.12630336078417473 0.11150939583774189 0.1350004848945725 0.11137157651238103 0.13420392647027088" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11137157651238103 0.13420392647027088 C 0.11138601423243844 0.13341778392011433 0.11141307675530598 0.12334857304532851 0.11154482915306986 0.12477021586839213 C 0.11141307675530598 0.12334857304532851 0.1096443576213932 0.11650871232060041 0.10979054773921448 0.11714421259350746" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34537813567278985,0.07168783285742691) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.17845596375263093 0.1470464113533468 C 0.1790551974784234 0.14727277520560295 0.18679930170464806 0.15064054221098022 0.18564676846214076 0.14976277758042028 C 0.18679930170464806 0.15064054221098022 0.19283966217943344 0.15823098769836988 0.19228636266271862 0.15757958692006607" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19228636266271862 0.15757958692006607 C 0.19268950206224736 0.15849461008829271 0.19776209657975963 0.17043095253407137 0.1971240354570634 0.16855986493878566 C 0.19776209657975963 0.17043095253407137 0.20017801785824102 0.18098870249055346 0.19994309613507352 0.1800326380634944" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19994309613507352 0.1800326380634944 C 0.1998861810873059 0.18193549481361598 0.19846736188316755 0.20653098277870288 0.19926011556186213 0.20286691906495327 C 0.19846736188316755 0.20653098277870288 0.18969421335981157 0.22576260959211772 0.19043005199073854 0.2240014026284897" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19043005199073854 0.2240014026284897 C 0.19070657353256876 0.22272970977601395 0.19403166312379933 0.2060781613667665 0.19374831049270122 0.20874108839878078 C 0.19403166312379933 0.2060781613667665 0.1938371146531837 0.19065504406477984 0.19383028356391582 0.19204627824431839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19383028356391582 0.19204627824431839 C 0.19360639249887496 0.19087777162214264 0.19061390576865858 0.17578609309746937 0.1911435907834256 0.17802419877820952 C 0.19061390576865858 0.17578609309746937 0.18716826943698553 0.16411941101687205 0.1874740633867117 0.16518901007543646" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1874740633867117 0.16518901007543646 C 0.18711992598767063 0.16437926230905495 0.18247290629537904 0.15396015365201754 0.18322441459821912 0.15547203687885836 C 0.18247290629537904 0.15396015365201754 0.1780585928488319 0.1463442758928875 0.17845596375263093 0.1470464113533468" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3426285365955314,0.07182747088453473) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17151876667059912 0.1626108762015488 C 0.17173225515405524 0.16251254743792556 0.17475686975879018 0.16172572004767719 0.17408062847207262 0.16143093103807013 C 0.17475686975879018 0.16172572004767719 0.1800964149144713 0.16654146209006382 0.17963366211120985 0.16614834431683353" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17963366211120985 0.16614834431683353 C 0.18026834563654812 0.16715293787394286 0.1882896857404498 0.1807080667705391 0.18724986441526922 0.17820346700214543 C 0.1882896857404498 0.1807080667705391 0.19251665581321886 0.1977035477488421 0.1921115180133766 0.19620354153755776" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1921115180133766 0.19620354153755776 C 0.1920482722446957 0.1981478370580017 0.1905674622554617 0.22316362037286328 0.1913525687892059 0.2195350877828853 C 0.1905674622554617 0.22316362037286328 0.18196837884338282 0.24143016968682737 0.18269023960844613 0.23974593261729338" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18269023960844613 0.23974593261729338 C 0.18307897940349027 0.23816191590147426 0.18770171085359758 0.2177312049236932 0.18735511714897574 0.2207377320274638 C 0.18770171085359758 0.2177312049236932 0.18680721797348607 0.20224509698409474 0.18684936406390834 0.2036676073720462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18684936406390834 0.2036676073720462 C 0.18650740284098968 0.20201772040700058 0.1819711441617914 0.1811990741033716 0.1827458293888845 0.18386896379149884 C 0.1819711441617914 0.1811990741033716 0.17712041733461653 0.17060892839143788 0.177553141338791 0.1716289311145195" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.177553141338791 0.1716289311145195 C 0.17722487250243577 0.17112997654315998 0.17311105074684557 0.1648899716821245 0.17361391530252823 0.16564147625820538 C 0.17311105074684557 0.1648899716821245 0.1713441709512717 0.1623583261968274 0.17151876667059912 0.1626108762015488" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 66 KiB

View File

@@ -0,0 +1,156 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.1771656262374324 C 0.18214574144411624 0.1771656262374324 0.17854899894242843 0.16798807745923464 0.17814936088668534 0.16869404274986524 C 0.17854899894242843 0.16798807745923464 0.18814031228026268 0.16940000804049585 0.1877406742245196 0.16869404274986524 C 0.18814031228026268 0.16940000804049585 0.18214574144411624 0.1771656262374324 0.18294501755560244 0.1771656262374324 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33450013027075615,0.07387680868310725) rotate(0) scale(1,1) translate(-0.18224766527367303,-0.16198050313523393)"><path d="M 0.1851272845921429 0.1586177017566029 C 0.18518149068751266 0.15902488289632932 0.18577111384913034 0.1643724572378792 0.1857777577365801 0.16350387543332012 C 0.18577111384913034 0.1643724572378792 0.1849867079599265 0.16950208407614434 0.185047557942746 0.1690406834113117" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.185047557942746 0.1690406834113117 C 0.18442881293694313 0.16903734461897973 0.17636105766710578 0.16968774076943366 0.17762261787311168 0.1690006179033282 C 0.17636105766710578 0.16968774076943366 0.16926602027047205 0.17797661946301455 0.1699088354706751 0.17728615780457713" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1699088354706751 0.17728615780457713 C 0.16946453255143892 0.17879713168080189 0.16408930841539757 0.20020735298315676 0.16457720043984111 0.19541784431927423 C 0.16408930841539757 0.20020735298315676 0.16401054207214522 0.23803879655882537 0.1640541311773526 0.2347602617711676" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1640541311773526 0.2347602617711676 C 0.16343642776706227 0.2321055473840807 0.15597161966213177 0.19889326301872315 0.1566416902538687 0.20290368912612475 C 0.15597161966213177 0.19889326301872315 0.15596091689506292 0.18527943676203357 0.15601328407650952 0.18663514848234827" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15601328407650952 0.18663514848234827 C 0.1563109419226159 0.18558517580875838 0.16043665307524366 0.17221530064279622 0.15958517822978624 0.17403547639926967 C 0.16043665307524366 0.17221530064279622 0.16678479922134964 0.1640228363217834 0.1662309822219986 0.16479303940466697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1662309822219986 0.16479303940466697 C 0.16713507992996865 0.16430850205723616 0.17865484658181777 0.15846397976482524 0.17708015471763908 0.15897859123549724 C 0.17865484658181777 0.15846397976482524 0.18579787874835155 0.1585876276333617 0.1851272845921429 0.1586177017566029" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3358066801329858,0.0880816368818722) rotate(0) scale(1,1) translate(-0.18500200957702506,-0.17234778295095274)"><path d="M 0.1865949668591181 0.16993481994732954 C 0.1866604874879344 0.17023277198147718 0.18737924377138016 0.17413992817268686 0.18738121440491354 0.17351024435710147 C 0.18737924377138016 0.17413992817268686 0.1865038279943678 0.17782275751579188 0.18657131925671747 0.17749102573435416" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18657131925671747 0.17749102573435416 C 0.18595575358167035 0.17821047727980593 0.17768149792113086 0.18746251803516087 0.17918453115615213 0.18612444427977548 C 0.17768149792113086 0.18746251803516087 0.16764745287648813 0.1941665330089125 0.1685349204364623 0.1935479107989789" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1685349204364623 0.1935479107989789 C 0.16831618630275494 0.19433038853391593 0.16569196956067492 0.2062190274283871 0.16591011083197402 0.20293764361822322 C 0.16569196956067492 0.2062190274283871 0.16591781804328135 0.2354234225961723 0.1659172251808731 0.23292451652094545" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1659172251808731 0.23292451652094545 C 0.16556213928598218 0.22992593138638043 0.16161980289802222 0.1921166842912458 0.16165619444218196 0.19694149490616514 C 0.16161980289802222 0.1921166842912458 0.16579922100168754 0.17320056366155898 0.16548052665095633 0.1750267891419133" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16548052665095633 0.1750267891419133 C 0.16593134394786743 0.174345900150517 0.17180718096636044 0.16587429125092545 0.17089033421388955 0.16685612124515797 C 0.17180718096636044 0.16587429125092545 0.1769487171361669 0.1629438882082868 0.1764826876806071 0.16324482921112304" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1764826876806071 0.16324482921112304 C 0.17690562029531962 0.16322334019834378 0.18240056898869994 0.16354446028578912 0.18155787905715737 0.1629869610577719 C 0.18240056898869994 0.16354446028578912 0.18701472417594817 0.170513808188126 0.1865949668591181 0.16993481994732954" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33663064815517535,0.08325881655015177) rotate(0) scale(1,1) translate(-0.18136792537595256,-0.16319014549459962)"><path d="M 0.18342753288550126 0.16083667134286292 C 0.1832910755530639 0.16118235087721505 0.18097414196713432 0.1659661687034979 0.1817900448962529 0.16498482575508866 C 0.18097414196713432 0.1659661687034979 0.1729572521393971 0.1732484501378309 0.17363669773607832 0.1726127867237738" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17363669773607832 0.1726127867237738 C 0.17303609610255385 0.17320332671690233 0.16546211642174777 0.18110491156196568 0.16642947813378473 0.1796992666413161 C 0.16546211642174777 0.18110491156196568 0.1616615971131225 0.19029563069908967 0.16202835719163497 0.18948052577156863" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16202835719163497 0.18948052577156863 C 0.16198958723485937 0.19065393486286095 0.16171520934333913 0.20767739133476137 0.1615631177103277 0.20356143486707648 C 0.16171520934333913 0.20767739133476137 0.16404431837755928 0.24181455076017996 0.16385345678777224 0.2388720033837874" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16385345678777224 0.2388720033837874 C 0.16338937876724813 0.23662695009665144 0.15766075936394122 0.208194917776096 0.1582845205414829 0.21193136393815593 C 0.15766075936394122 0.208194917776096 0.1562086395002544 0.19254325656414428 0.156368322657272 0.19403464943906826" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.156368322657272 0.19403464943906826 C 0.1563638332810098 0.19309207006986517 0.15652552871306247 0.18091988908260034 0.15631445014212586 0.18272369700863128 C 0.15652552871306247 0.18091988908260034 0.15911683345571018 0.17152772576986924 0.15890126550851139 0.1723889543266971" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15890126550851139 0.1723889543266971 C 0.15956222504902662 0.17155193995219806 0.16841712733989259 0.16112853941281216 0.16683277999469415 0.1623447818327085 C 0.16841712733989259 0.16112853941281216 0.17929632972512663 0.15766836941378726 0.1779134336508927 0.15779404528794105 C 0.17929632972512663 0.15766836941378726 0.18388704115505197 0.1610902235141064 0.18342753288550126 0.16083667134286292" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31019459248045644,0.09449108642269155) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.1817471697171048 0.12992285596574463 C 0.18177995002558545 0.13013966362794954 0.1821536955068073 0.13293883375271087 0.18214053341887265 0.13252454791220372 C 0.1821536955068073 0.13293883375271087 0.18188549655177444 0.13509176423013272 0.18190511477232046 0.1348942860518305" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18190511477232046 0.1348942860518305 C 0.1817961545399532 0.13501107806121052 0.1803526079192536 0.13645861420145267 0.18059759198391334 0.1362957901643909 C 0.1803526079192536 0.13645861420145267 0.17882928216411098 0.1368942065242537 0.17896530599640348 0.13684817449657194" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17896530599640348 0.13684817449657194 C 0.1789219661492002 0.13691026043089188 0.1783405167041372 0.1376718649923058 0.1784452278299642 0.13759320570841133 C 0.1783405167041372 0.1376718649923058 0.1775844428823572 0.13777527920207502 0.1777087724864794 0.13779208590330574 C 0.1775844428823572 0.13777527920207502 0.17684263851510004 0.13728375594930892 0.17695327258049764 0.13739152529364265 C 0.17684263851510004 0.13728375594930892 0.1763138694835139 0.1363289984926473 0.17638116370170823 0.13649885377130097 C 0.1763138694835139 0.1363289984926473 0.17613981902259515 0.13516683332157017 0.17614574196216573 0.1353532619497984 C 0.17613981902259515 0.13516683332157017 0.1763237839655858 0.13417074758945927 0.17631008842686116 0.13426171023256228" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17631008842686116 0.13426171023256228 C 0.17627169059436007 0.13404577295567136 0.1758238596749802 0.13124420269777134 0.17584931443684793 0.13167046290987114 C 0.1758238596749802 0.13124420269777134 0.17601757435508208 0.12893626475215578 0.17600463128444868 0.12914658768736464" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17600463128444868 0.12914658768736464 C 0.17610344818073057 0.1290262574410803 0.17750025540422976 0.12749635420884112 0.1771904340398314 0.1277026247319525 C 0.17750025540422976 0.12749635420884112 0.17993349212534543 0.12658540113320074 0.17972248765722895 0.1266713414100278" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3088774166637042,0.098025591917661) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10712652560047375 0.10208119498242545 C 0.10697727544555884 0.10232273655902191 0.10575724333125666 0.10392964113803693 0.10623102467098428 0.1035304444420042 C 0.10575724333125666 0.10392964113803693 0.10387033125706284 0.10418532512891354 0.1042838375621081 0.1044763751586219 C 0.10387033125706284 0.10418532512891354 0.1038860217820584 0.1008441600738867 0.10374998684071271 0.10178414426375403 C 0.1038860217820584 0.1008441600738867 0.10510004721018222 0.09883647001941798 0.10510004721018222 0.09883647001941798 C 0.10510004721018222 0.09883647001941798 0.10361395189936702 0.10272412845362135 0.10374998684071271 0.10178414426375403 C 0.10361395189936702 0.10272412845362135 0.1041048909469347 0.10505820454342679 0.1042838375621081 0.1044763751586219 C 0.1041048909469347 0.10505820454342679 0.10224542832356438 0.10560056266252285 0.10267630714967234 0.10527512057258337 C 0.10224542832356438 0.10560056266252285 0.10153560751475836 0.10662134555253804 0.10169856460546035 0.1064290276982588" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.307560240846952,0.10156009741263042) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1394657622468651 0.11496000899510757 C 0.13954813871841015 0.11512805598891868 0.140574264300073 0.11732740177392557 0.1404542799054057 0.11697657292084078 C 0.140574264300073 0.11732740177392557 0.1409431829059947 0.11935273709139882 0.14090557498287246 0.11916995523212512" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14090557498287246 0.11916995523212512 C 0.1408541743757157 0.11933653216006909 0.14014670238785068 0.12145701579428812 0.14028876769699133 0.12116887836745276 C 0.14014670238785068 0.12145701579428812 0.13911012657120056 0.12274916485304092 0.13920079127318447 0.12262760435414953" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13920079127318447 0.12262760435414953 C 0.1391844976032906 0.12270739671485437 0.13894695319614073 0.12371611791238891 0.13900526723445814 0.12358511268260765 C 0.13894695319614073 0.12371611791238891 0.1384025147017835 0.12425979091113805 0.13850102281337554 0.12419966711152473 C 0.1384025147017835 0.12425979091113805 0.1377108628794359 0.12427973052386056 0.1378231698953536 0.12430659827796746 C 0.1377108628794359 0.12427973052386056 0.1370573252763394 0.12377059394743017 0.13715333862236323 0.12387725406224191 C 0.1370573252763394 0.12377059394743017 0.13661701676546728 0.12286880391633845 0.13667100974306756 0.1230266769002266 C 0.13661701676546728 0.12286880391633845 0.13649162398683437 0.12189578670186378 0.13650542289116 0.121982778255584" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13650542289116 0.121982778255584 C 0.13641902841508727 0.12181885902763616 0.13533622622629565 0.11966193336111322 0.13546868917828714 0.1200157475202099 C 0.13533622622629565 0.11966193336111322 0.1348697989913436 0.11754711341527506 0.13491586746726233 0.1177370083464239" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13491586746726233 0.1177370083464239 C 0.1349586558208616 0.11757346007978386 0.13555891446227009 0.11548330641389629 0.1354293277104536 0.11577442914674353 C 0.13555891446227009 0.11548330641389629 0.13655770688727722 0.1141159610860497 0.13647090848906002 0.11424353555225691" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3075026267040567,0.10541180692822266) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10588771612985891 0.10068827613995919 C 0.10583897142377699 0.100987074633882 0.10534289463565841 0.10311130610863513 0.10559524789336738 0.10248106710349607 C 0.10534289463565841 0.10311130610863513 0.10398351641863944 0.10446605386137708 0.10437359658360508 0.10446971017079355 C 0.10398351641863944 0.10446605386137708 0.10300805194366207 0.10171063768832493 0.10325476690357353 0.10245912924699725 C 0.10300805194366207 0.10171063768832493 0.10289330682413632 0.09997876081875962 0.10289330682413632 0.09997876081875962 C 0.10289330682413632 0.09997876081875962 0.103501481863485 0.10320762080566957 0.10325476690357353 0.10245912924699725 C 0.103501481863485 0.10320762080566957 0.10439276469781598 0.10508100424916704 0.10437359658360508 0.10446971017079355 C 0.10439276469781598 0.10508100424916704 0.10313028616316273 0.10666749901409445 0.10336977558883893 0.10612689371723817 C 0.10313028616316273 0.10666749901409445 0.10286447410299938 0.10797774999104673 0.10293666002954789 0.10771334195193122" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3074450125611615,0.10926351644381495) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13921513643242922 0.11408082262284674 C 0.13932027934986027 0.11418200181308155 0.14065613185936984 0.11553517748208628 0.14047685144160194 0.11529497290566434 C 0.14065613185936984 0.11553517748208628 0.14144063894598086 0.11710230292609712 0.14136650144564403 0.11696327753990998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14136650144564403 0.11696327753990998 C 0.14136778189629143 0.11713772296149269 0.14134295708489908 0.11938799336422073 0.14138186685341284 0.11905662259890257 C 0.14134295708489908 0.11938799336422073 0.14085939400431774 0.1210966520674634 0.1408995842234789 0.12093972672372795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1408995842234789 0.12093972672372795 C 0.14090664063226502 0.12101864714554081 0.1409714272370729 0.12203393506868478 0.14098426112891232 0.12188677178548224 C 0.1409714272370729 0.12203393506868478 0.14068417980073275 0.12281320866491603 0.14074557752140568 0.1227056861221584 C 0.14068417980073275 0.12281320866491603 0.14015397840100213 0.12321611352238643 0.14024748848083712 0.12317704229857376 C 0.14015397840100213 0.12321611352238643 0.13952289007476465 0.12313469160991014 0.13962345656338576 0.12317454080791033 C 0.13952289007476465 0.12313469160991014 0.13896001442938827 0.12259075986318153 0.13904069061738383 0.1226988519225714 C 0.13896001442938827 0.12259075986318153 0.13862322994827705 0.12180898477628688 0.13865534230743912 0.12187743609523184" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13865534230743912 0.12187743609523184 C 0.13854810791790326 0.12178210902937253 0.1371788592063703 0.12049764797558854 0.13736852963300875 0.12073351130492019 C 0.1371788592063703 0.12049764797558854 0.136296861150675 0.1189065398797798 0.13637929718777758 0.11904707614325213" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13637929718777758 0.11904707614325213 C 0.13637209995998947 0.11888008116944998 0.13632145021396336 0.11671610693939838 0.13629293045432014 0.11704313645762623 C 0.13632145021396336 0.11671610693939838 0.13675725129092736 0.11496268738009209 0.13672153430349604 0.11512272192451779" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3083495765099097,0.11266692101171369) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10467455577917108 0.10026065102921712 C 0.10471047309110174 0.1005493462803615 0.1048501233701625 0.10268508814238013 0.10489005965075505 0.10199282253608337 C 0.1048501233701625 0.10268508814238013 0.10413224116041683 0.10462843308321526 0.10443493809561577 0.10441424466699768 C 0.10413224116041683 0.10462843308321526 0.10269855704588435 0.10276031107154046 0.10307387803956145 0.10327795303338883 C 0.10269855704588435 0.10276031107154046 0.10218301213355323 0.10130839289590754 0.10218301213355323 0.10130839289590754 C 0.10218301213355323 0.10130839289590754 0.10344919903323854 0.10379559499523719 0.10307387803956145 0.10327795303338883 C 0.10344919903323854 0.10379559499523719 0.10460040317169589 0.10493861151551295 0.10443493809561577 0.10441424466699768 C 0.10460040317169589 0.10493861151551295 0.10401459711499564 0.10703079686725844 0.10406666849604215 0.1064241541244804 C 0.10401459711499564 0.10703079686725844 0.10413181669488575 0.10832575895686344 0.10412250980933667 0.10805410112366587" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.31409382000938413,0.09852731555035957) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.17881838980285963 0.15829053461299128 C 0.1785642157543259 0.15855516003452855 0.17539995246231654 0.16221975519811813 0.1757683012204549 0.1614660396714384 C 0.17539995246231654 0.16221975519811813 0.17428402999559486 0.16782421103829046 0.17439820470519948 0.16733512093314798" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17439820470519948 0.16733512093314798 C 0.1742407158657578 0.1678838189140887 0.17207679360261763 0.17520102235062074 0.17250833863189924 0.1739194967044367 C 0.17207679360261763 0.17520102235062074 0.16894560816398038 0.18344625635259953 0.1692196643538203 0.18271342868735624" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1692196643538203 0.18271342868735624 C 0.16882039226871698 0.18333902777778477 0.16334322283038327 0.1914930515741319 0.16442839933258052 0.19022061777249857 C 0.16334322283038327 0.1914930515741319 0.15551164191035927 0.1986294690181609 0.1561975463274532 0.1979826343069561" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1561975463274532 0.1979826343069561 C 0.15661027558251675 0.19715973856310384 0.1617341663135273 0.18656186520534374 0.16115029738821587 0.18810788538072912 C 0.1617341663135273 0.18656186520534374 0.16337511310143824 0.1787072677707985 0.16320397343119036 0.17943039220233165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16320397343119036 0.17943039220233165 C 0.16332361998887865 0.178857426602881 0.16492260880786366 0.17135750714243417 0.16463973212344968 0.17255480500892392 C 0.16492260880786366 0.17135750714243417 0.16676172377088394 0.16443848553741533 0.16659849364415824 0.16506281780445445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16659849364415824 0.16506281780445445 C 0.16715361219341235 0.16469443177170306 0.17427824091509914 0.16007782847881574 0.17325991623520737 0.16064218541143768 C 0.17427824091509914 0.16007782847881574 0.17928159593349732 0.15809456371312075 0.17881838980285963 0.15829053461299128" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33663064815517535,0.08325881655015177) rotate(0) scale(1,1) translate(-0.18224766527367303,-0.16198050313523393)"><path d="M 0.18298629467244681 0.15920435592177784 C 0.18305165892406866 0.15949274751712075 0.18377066569190897 0.16306912235636126 0.18377066569190897 0.16266505506589268 C 0.18377066569190897 0.16306912235636126 0.18292093042082497 0.16416883910252655 0.18298629467244681 0.16405316340740086" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18298629467244681 0.16405316340740086 C 0.18253932160583555 0.16446545128206147 0.17674443936243892 0.1697739580516099 0.17762261787311165 0.1690006179033282 C 0.17674443936243892 0.1697739580516099 0.1720169471003126 0.17369429746040235 0.17244815254437407 0.17333324518678125" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17244815254437407 0.17333324518678125 C 0.1717308080000184 0.17493144979507172 0.16308841981272515 0.19641984599859427 0.1638400180121059 0.19251170048626673 C 0.16308841981272515 0.19641984599859427 0.16339472049677994 0.22254093223874902 0.16342897415180502 0.2202309913347119" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16342897415180502 0.2202309913347119 C 0.1631017838526216 0.21813576684026556 0.15912768659460194 0.1917895221462881 0.15950269056160402 0.19508829740135575 C 0.15912768659460194 0.1917895221462881 0.15888111287996134 0.17944213751327895 0.15892892654778001 0.18064568827390023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15892892654778001 0.18064568827390023 C 0.15918832051066345 0.1798192543994323 0.16272111326537222 0.16927595867612638 0.16204165410238125 0.17072848178028513 C 0.16272111326537222 0.16927595867612638 0.16750250170377912 0.16258932179430435 0.16708243650367158 0.16321541102399517" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16708243650367158 0.16321541102399517 C 0.1678982239449109 0.1628004603251974 0.17819720731260824 0.15790174804657048 0.17687188579854363 0.1582360026384219 C 0.17819720731260824 0.15790174804657048 0.1834958287452721 0.15928505202872417 0.18298629467244681 0.15920435592177784" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31019459248045644,0.09449108642269155) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.1265542020676122 0.12124859616852302 C 0.1263490914218577 0.12183722443717974 0.12382077380876848 0.12933253399898914 0.1240928743185585 0.12831213539240374 C 0.12382077380876848 0.12933253399898914 0.12322200608609636 0.13392514978547632 0.12328899595013192 0.13349337944754766" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12328899595013192 0.13349337944754766 C 0.12354154528074175 0.13289435816874226 0.12703957186331635 0.1252235839769856 0.12631958791744996 0.12630512410188285 C 0.12703957186331635 0.1252235839769856 0.13239623791578506 0.1200323791026888 0.1319288033005285 0.12051489794878065" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1319288033005285 0.12051489794878065 C 0.1315190365932238 0.12149145182730217 0.12644083985130664 0.13395255399197858 0.1270116028128722 0.1322335444910389 C 0.12644083985130664 0.13395255399197858 0.12491865150748094 0.14188546758247483 0.1250796477617418 0.14114301196005669" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1250796477617418 0.14114301196005669 C 0.12513761427550765 0.14050093681501624 0.12598762679740433 0.13222892555923146 0.12577524592693215 0.13343811021957153 C 0.12598762679740433 0.13222892555923146 0.12778263256411412 0.12606568652067635 0.12762821820740783 0.12663279603597596" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12762821820740783 0.12663279603597596 C 0.12746194946741182 0.12694857941840917 0.12522107498843565 0.1315122617787674 0.12563299332745562 0.13042219662517449 C 0.12522107498843565 0.1315122617787674 0.12243954854014452 0.14048785965025085 0.12268519813916845 0.13971357787909114" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12268519813916845 0.13971357787909114 C 0.12265782431448675 0.13907694301435228 0.1223682794565734 0.1310647272156556 0.12235671224298808 0.13207395950222475 C 0.1223682794565734 0.1310647272156556 0.12286294574045936 0.12723019301843116 0.12282400470219235 0.12760279044026143" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12282400470219235 0.12760279044026143 C 0.12272893342007767 0.12785839103135724 0.1214219687677923 0.13156471670497175 0.12168314931681617 0.130669997533411 C 0.1214219687677923 0.13156471670497175 0.11952372884699655 0.1389785390794555 0.11968983811390575 0.13833942049899053" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11968983811390575 0.13833942049899053 C 0.11966453953874526 0.13777937827956868 0.11939781111944286 0.13077328559093132 0.11938625521197982 0.13161891386592828 C 0.11939781111944286 0.13077328559093132 0.11986536348608587 0.12790629514345184 0.11982850900346233 0.12819188119902694" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11982850900346233 0.12819188119902694 C 0.11976984110831312 0.12837510268370372 0.11900844049359177 0.13079266394711847 0.11912449426167188 0.13039053901514824 C 0.11900844049359177 0.13079266394711847 0.1183784779135701 0.13323628382996316 0.118435863786501 0.13301738038266972" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.118435863786501 0.13301738038266972 C 0.11851106853562936 0.1325830344858521 0.11974097537308055 0.12688536292328575 0.1193383207760412 0.12780522962085814 C 0.11974097537308055 0.12688536292328575 0.12359516879888426 0.1214934592110464 0.12326771895097326 0.12197898001180114" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12326771895097326 0.12197898001180114 C 0.12309506930860156 0.12240407438215377 0.12095017109527158 0.1279046565232517 0.12119592324251298 0.1270801124560326 C 0.12095017109527158 0.1279046565232517 0.12024559067920675 0.13227295851529683 0.12031869318407645 0.13187350881843035" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12031869318407645 0.13187350881843035 C 0.12047702366525655 0.13143536305451453 0.12273828469853226 0.12573035026394813 0.12221865895823762 0.1266157596514404 C 0.12273828469853226 0.12573035026394813 0.12691549732672674 0.12080133254494657 0.1265542020676122 0.12124859616852302" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34018677538658526,0.07387680868310725) rotate(0) scale(1,1) translate(-0.18224766527367303,-0.16198050313523393)"><path d="M 0.17941787364062783 0.1586177017566029 C 0.18008430584626686 0.15864777587984408 0.18898559002190507 0.15949320270616923 0.18741506010829603 0.15897859123549724 C 0.18898559002190507 0.15949320270616923 0.19916833031190648 0.16527757675209778 0.19826423260393644 0.16479303940466697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19826423260393644 0.16479303940466697 C 0.19881804960328747 0.16556324248755053 0.20576152108505716 0.17585565215574311 0.20491003659614881 0.17403547639926967 C 0.20576152108505716 0.17585565215574311 0.20877971396039388 0.18768512115593816 0.20848204647083657 0.18663514848234827" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20848204647083657 0.18663514848234827 C 0.20842967928938996 0.18799086020266298 0.2071835697017405 0.20691411523352635 0.20785364029347742 0.20290368912612475 C 0.2071835697017405 0.20691411523352635 0.19982349595970322 0.2374149761582545 0.20044119936999355 0.2347602617711676" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20044119936999355 0.2347602617711676 C 0.20039761026478617 0.23148172698350983 0.1994302380830615 0.1906283356553917 0.19991813010750506 0.19541784431927423 C 0.1994302380830615 0.1906283356553917 0.19414219215743486 0.17577518392835237 0.19458649507667103 0.17728615780457713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19458649507667103 0.17728615780457713 C 0.193943679876468 0.1765956961461397 0.1856037132346569 0.16831349503722276 0.18687271267423453 0.1690006179033282 C 0.1856037132346569 0.16831349503722276 0.17873231756236488 0.16904402220364367 0.17935850180173946 0.1690406834113117" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17935850180173946 0.1690406834113117 C 0.17930261130796776 0.16857928274647907 0.1786927635297198 0.16263529362876106 0.1786878158764791 0.16350387543332012 C 0.1786927635297198 0.16263529362876106 0.17947871178764022 0.15821052061687646 0.17941787364062783 0.1586177017566029" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3388802255243556,0.0880816368818722) rotate(0) scale(1,1) translate(-0.18500200957702506,-0.17234778295095274)"><path d="M 0.18340905229493198 0.16993481994732954 C 0.18382880961176204 0.16935583170653307 0.18928883002843538 0.1624294618297547 0.18844614009689278 0.1629869610577719 C 0.18928883002843538 0.1624294618297547 0.19394426408815554 0.1632663182239023 0.19352133147344303 0.16324482921112304" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.19352133147344303 0.16324482921112304 C 0.19398736092900282 0.16354577021395927 0.20003053169263138 0.1678379512393905 0.1991136849401605 0.16685612124515797 C 0.20003053169263138 0.1678379512393905 0.20497430980000483 0.1757076781333096 0.20452349250309373 0.1750267891419133" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.20452349250309373 0.1750267891419133 C 0.20484218685382494 0.17685301462226763 0.20831143316770845 0.2017663055210845 0.20834782471186816 0.19694149490616514 C 0.20831143316770845 0.2017663055210845 0.20373170807828606 0.23592310165551048 0.204086793973177 0.23292451652094545" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.204086793973177 0.23292451652094545 C 0.20408738683558525 0.2304256104457186 0.203875767050777 0.19965625980805934 0.2040939083220761 0.20293764361822322 C 0.203875767050777 0.19965625980805934 0.20125036458388051 0.19276543306404187 0.20146909871758786 0.1935479107989789" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.20146909871758786 0.1935479107989789 C 0.2005816311576137 0.1929292885890453 0.1893164547628767 0.1847863705243901 0.19081948799789797 0.18612444427977548 C 0.1893164547628767 0.1847863705243901 0.1828171342222855 0.17677157418890238 0.1834326998973326 0.17749102573435416" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1834326998973326 0.17749102573435416 C 0.18336520863498293 0.17715929395291644 0.18262083411560315 0.17288056054151607 0.18262280474913653 0.17351024435710147 C 0.18262083411560315 0.17288056054151607 0.18347457292374827 0.1696368679131819 0.18340905229493198 0.16993481994732954" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33805625750216606,0.08325881655015177) rotate(0) scale(1,1) translate(-0.18136792537595256,-0.16319014549459962)"><path d="M 0.17930831786640392 0.16083667134286292 C 0.17976782613595463 0.16058311917161944 0.18620531317524638 0.15791972116209488 0.18482241710101247 0.15779404528794108 C 0.18620531317524638 0.15791972116209488 0.19748741810240947 0.16356102425260488 0.19590307075721103 0.16234478183270853 C 0.19748741810240947 0.16356102425260488 0.20449554478390905 0.17322596870119614 0.20383458524339382 0.1723889543266971" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.20383458524339382 0.1723889543266971 C 0.2040501531905926 0.17325018288352495 0.20663247918071598 0.18452750493466222 0.20642140060977937 0.18272369700863128 C 0.20663247918071598 0.18452750493466222 0.20636303871837094 0.19497722880827134 0.20636752809463313 0.19403464943906826" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20636752809463313 0.19403464943906826 C 0.20620784493761557 0.19552604231399223 0.20382756903288063 0.21566781010021585 0.2044513302104223 0.21193136393815593 C 0.20382756903288063 0.21566781010021585 0.19841831594360884 0.24111705667092334 0.19888239396413296 0.2388720033837874" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19888239396413296 0.2388720033837874 C 0.19907325555392 0.23592945600739482 0.20132482467458887 0.19944547839939158 0.20117273304157743 0.20356143486707648 C 0.20132482467458887 0.19944547839939158 0.20066872360349458 0.1883071166802763 0.20070749356027018 0.18948052577156863" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20070749356027018 0.18948052577156863 C 0.2003407334817577 0.18866542084404758 0.19533901090608352 0.17829362172066654 0.19630637261812045 0.1796992666413161 C 0.19533901090608352 0.17829362172066654 0.18849855138230245 0.17202224673064528 0.18909915301582692 0.1726127867237738" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18909915301582692 0.1726127867237738 C 0.1884197074191457 0.1719771233097167 0.1801299029265337 0.16400348280667942 0.1809458058556523 0.16498482575508866 C 0.1801299029265337 0.16400348280667942 0.17917186053396655 0.16049099180851079 0.17930831786640392 0.16083667134286292" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.364492313176885,0.09449108642269155) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.1808216100330447 0.1266713414100278 C 0.18103261450116118 0.12675728168685488 0.18366348501484064 0.1279088952550639 0.18335366365044228 0.1277026247319525 C 0.18366348501484064 0.1279088952550639 0.18463828330210685 0.12926691793364903 0.18453946640582497 0.12914658768736467" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18453946640582497 0.12914658768736467 C 0.18455240947645837 0.12935691062257354 0.18466932849155795 0.13209672312197093 0.18469478325342567 0.13167046290987114 C 0.18466932849155795 0.13209672312197093 0.18419561143091134 0.1344776475094532 0.18423400926341243 0.13426171023256228" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18423400926341243 0.13426171023256228 C 0.18424770480213706 0.1343526728756653 0.18439243278853729 0.13553969057802664 0.18439835572810787 0.1353532619497984 C 0.18439243278853729 0.13553969057802664 0.18409563977037108 0.13666870904995465 0.1841629339885654 0.13649885377130097 C 0.18409563977037108 0.13666870904995465 0.18348019104437846 0.13749929463797642 0.18359082510977606 0.13739152529364268 C 0.18348019104437846 0.13749929463797642 0.18271099559967202 0.1378088926045365 0.18283532520379422 0.13779208590330577 C 0.18271099559967202 0.1378088926045365 0.18199415873448246 0.13751454642451688 0.18209886986030946 0.13759320570841135 C 0.18199415873448246 0.13751454642451688 0.18153545184666686 0.13678608856225202 0.18157879169387015 0.13684817449657197" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18157879169387015 0.13684817449657197 C 0.18144276786157765 0.13680214246889022 0.17970152164170053 0.1361329661273291 0.17994650570636028 0.13629579016439092 C 0.17970152164170053 0.1361329661273291 0.17853002268558588 0.13477749404245046 0.17863898291795313 0.1348942860518305" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17863898291795313 0.1348942860518305 C 0.1786193646974071 0.13469680787352825 0.17841672635933561 0.13211026207169657 0.17840356427140097 0.13252454791220372 C 0.17841672635933561 0.13211026207169657 0.17882970828164946 0.1297060483035397 0.17879692797316882 0.12992285596574463" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3658094889936373,0.098025591917661) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10697594214585109 0.1064290276982588 C 0.10681298505514908 0.10623670984397955 0.1055673207755311 0.10494967848264387 0.10599819960163906 0.10527512057258336 C 0.1055673207755311 0.10494967848264387 0.10421172257402996 0.10389454577381702 0.10439066918920335 0.1044763751586219 C 0.10421172257402996 0.10389454577381702 0.10478848496925301 0.10084416007388669 0.1049245199105987 0.10178414426375401 C 0.10478848496925301 0.10084416007388669 0.10357445954112923 0.09883647001941798 0.10357445954112923 0.09883647001941798 C 0.10357445954112923 0.09883647001941798 0.10506055485194439 0.10272412845362133 0.1049245199105987 0.10178414426375401 C 0.10506055485194439 0.10272412845362133 0.10397716288415809 0.10476742518833027 0.10439066918920335 0.1044763751586219 C 0.10397716288415809 0.10476742518833027 0.10196970074059952 0.10313124774597143 0.10244348208032714 0.10353044444200418 C 0.10196970074059952 0.10313124774597143 0.1013987309959228 0.10183965340582897 0.1015479811508377 0.10208119498242543" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3671266648103896,0.10156009741263045) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13946576224686522 0.11424353555225689 C 0.13955256064508242 0.1143711100184641 0.1406369297772881 0.11606555187959076 0.14050734302547163 0.11577442914674352 C 0.1406369297772881 0.11606555187959076 0.14106359162226215 0.11790055661306391 0.14102080326866287 0.11773700834642388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14102080326866287 0.11773700834642388 C 0.14097473479274414 0.11792690327757271 0.1403355186056466 0.12036956167930656 0.14046798155763807 0.12001574752020988 C 0.1403355186056466 0.12036956167930656 0.13934485336869254 0.12214669748353184 0.13943124784476527 0.121982778255584" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13943124784476527 0.121982778255584 C 0.13941744894043964 0.12206976980930422 0.13921166801525742 0.12318454988411476 0.1392656609928577 0.1230266769002266 C 0.13921166801525742 0.12318454988411476 0.13868731876753815 0.12398391417705365 0.13878333211356197 0.12387725406224191 C 0.13868731876753815 0.12398391417705365 0.138001193824654 0.12433346603207433 0.1381135008405717 0.12430659827796743 C 0.138001193824654 0.12433346603207433 0.1373371398109577 0.12413954331191142 0.13743564792254975 0.12419966711152473 C 0.1373371398109577 0.12413954331191142 0.13687308946314966 0.12345410745282635 0.13693140350146707 0.12358511268260762 C 0.13687308946314966 0.12345410745282635 0.13671958579284696 0.12254781199344468 0.13673587946274082 0.12262760435414952" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13673587946274082 0.12262760435414952 C 0.13664521476075692 0.12250604385525812 0.1355058377297933 0.12088074094061739 0.13564790303893395 0.12116887836745276 C 0.1355058377297933 0.12088074094061739 0.13497969514589608 0.11900337830418113 0.13503109575305283 0.1191699552321251" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13503109575305283 0.1191699552321251 C 0.13506870367617507 0.1189871733728514 0.1356023752251868 0.11662574406775597 0.13548239083051955 0.11697657292084077 C 0.1356023752251868 0.11662574406775597 0.13655328496060518 0.11479196200129646 0.13647090848906013 0.11496000899510755" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3671842789532848,0.10541180692822269) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10573784672176358 0.10771334195193122 C 0.10566566079521506 0.10744893391281571 0.1050652417367963 0.1055862884203819 0.10530473116247249 0.10612689371723817 C 0.1050652417367963 0.1055862884203819 0.10432007828191728 0.10385841609242005 0.10430091016770637 0.10446971017079354 C 0.10432007828191728 0.10385841609242005 0.10566645480764938 0.10171063768832493 0.10541973984773792 0.10245912924699725 C 0.10566645480764938 0.10171063768832493 0.10578119992717515 0.09997876081875962 0.10578119992717515 0.09997876081875962 C 0.10578119992717515 0.09997876081875962 0.10517302488782646 0.10320762080566957 0.10541973984773792 0.10245912924699725 C 0.10517302488782646 0.10320762080566957 0.10391083000274073 0.10447336648021001 0.10430091016770637 0.10446971017079354 C 0.10391083000274073 0.10447336648021001 0.10282690560023508 0.101850828098357 0.10307925885794406 0.10248106710349605 C 0.10282690560023508 0.101850828098357 0.10273804591537064 0.10038947764603638 0.10278679062145256 0.10068827613995919" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.36724189309617994,0.10926351644381496) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13921513643242925 0.11512272192451779 C 0.13925085341986057 0.1152827564689435 0.13967226004124828 0.11737016597585408 0.1396437402816051 0.11704313645762622 C 0.13967226004124828 0.11737016597585408 0.13955017632035954 0.11921407111705427 0.13955737354814765 0.11904707614325212" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13955737354814765 0.11904707614325212 C 0.13947493751104506 0.11918761240672446 0.13837847067627804 0.12096937463425182 0.1385681411029165 0.12073351130492017 C 0.13837847067627804 0.12096937463425182 0.1371740940389503 0.12197276316109115 0.13728132842848617 0.12187743609523184" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13728132842848617 0.12187743609523184 C 0.1372492160693241 0.1219458874141768 0.1368153039305458 0.12280694398196126 0.13689598011854137 0.12269885192257139 C 0.1368153039305458 0.12280694398196126 0.13621264768391836 0.12321439000591052 0.13631321417253947 0.12317454080791032 C 0.13621264768391836 0.12321439000591052 0.13559567217525315 0.1231379710747611 0.13568918225508814 0.12317704229857376 C 0.13559567217525315 0.1231379710747611 0.13512969549384662 0.12259816357940076 0.13519109321451955 0.12270568612215839 C 0.13512969549384662 0.12259816357940076 0.1349395757151735 0.1217396085022797 0.13495240960701294 0.12188677178548224 C 0.1349395757151735 0.1217396085022797 0.13504414292123243 0.12086080630191508 0.1350370865124463 0.12093972672372794" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1350370865124463 0.12093972672372794 C 0.13499689629328515 0.12078280137999249 0.1345158941139987 0.11872525183358439 0.13455480388251245 0.11905662259890255 C 0.1345158941139987 0.11872525183358439 0.13457144974092863 0.11678883211832725 0.13457016929028123 0.11696327753990997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13457016929028123 0.11696327753990997 C 0.13464430679061806 0.11682425215372283 0.13563909971209118 0.1150547683292424 0.13545981929432327 0.11529497290566433 C 0.13563909971209118 0.1150547683292424 0.13682667722092715 0.11397964343261195 0.13672153430349607 0.11408082262284674" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3663373291474317,0.1126669210117137) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10455199694197474 0.10805410112366585 C 0.10456130382752384 0.10778244329046828 0.10455576687422277 0.10581751138170238 0.10460783825526929 0.1064241541244804 C 0.10455576687422277 0.10581751138170238 0.10440503373177579 0.10388987781848241 0.10423956865569567 0.10441424466699768 C 0.10440503373177579 0.10388987781848241 0.10597594970542706 0.10276031107154046 0.10560062871174998 0.10327795303338883 C 0.10597594970542706 0.10276031107154046 0.10649149461775821 0.10130839289590754 0.10649149461775821 0.10130839289590754 C 0.10649149461775821 0.10130839289590754 0.1052253077180729 0.10379559499523719 0.10560062871174998 0.10327795303338883 C 0.1052253077180729 0.10379559499523719 0.10393687172049673 0.1042000562507801 0.10423956865569567 0.10441424466699768 C 0.10393687172049673 0.1042000562507801 0.10374451081996382 0.1013005569297866 0.10378444710055637 0.10199282253608336 C 0.10374451081996382 0.1013005569297866 0.10403586828407099 0.09997195577807275 0.10399995097214033 0.10026065102921712" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.36059308564795745,0.09852731555035957) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.16291308339835525 0.15829053461299128 C 0.16337628952899294 0.1584865055128618 0.1694898816458993 0.16120654234405962 0.1684715569660075 0.16064218541143768 C 0.1694898816458993 0.16120654234405962 0.17568809810631075 0.16543120383720583 0.17513297955705664 0.16506281780445445" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17513297955705664 0.16506281780445445 C 0.17529620968378234 0.16568715007149357 0.17737461776217917 0.17375210287541368 0.17709174107776518 0.17255480500892392 C 0.17737461776217917 0.17375210287541368 0.17864714632771278 0.18000335780178228 0.1785274997700245 0.17943039220233165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1785274997700245 0.17943039220233165 C 0.17869863944027237 0.18015351663386478 0.18116504473831035 0.1896539055561145 0.18058117581299893 0.18810788538072912 C 0.18116504473831035 0.1896539055561145 0.18594665612882527 0.19880553005080834 0.18553392687376172 0.1979826343069561" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18553392687376172 0.1979826343069561 C 0.18484802245666776 0.1973357995957513 0.17621789736643706 0.18894818397086524 0.1773030738686343 0.19022061777249857 C 0.17621789736643706 0.18894818397086524 0.1721125367622913 0.1820878295969277 0.17251180884739462 0.18271342868735624" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17251180884739462 0.18271342868735624 C 0.1722377526575547 0.18198060102211294 0.16879158954003398 0.17263797105825268 0.1692231345693156 0.1739194967044367 C 0.16879158954003398 0.17263797105825268 0.16717577965657365 0.16678642295220725 0.16733326849601535 0.16733512093314798" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16733326849601535 0.16733512093314798 C 0.16721909378641073 0.1668460308280055 0.1655948232226216 0.1607123241447587 0.16596317198075994 0.1614660396714384 C 0.1655948232226216 0.1607123241447587 0.16265890934982152 0.158025909191454 0.16291308339835525 0.15829053461299128" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33805625750216606,0.08325881655015177) rotate(0) scale(1,1) translate(-0.18224766527367303,-0.16198050313523393)"><path d="M 0.1815090358748993 0.15920435592177784 C 0.18201856994772458 0.1591236598148315 0.18894876626286716 0.15857025723027335 0.18762344474880255 0.1582360026384219 C 0.18894876626286716 0.15857025723027335 0.19822868148491388 0.16363036172279294 0.19741289404367454 0.16321541102399517" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.19741289404367454 0.16321541102399517 C 0.19783295924378208 0.163841500253686 0.20313313560795593 0.17218100488444388 0.20245367644496495 0.17072848178028513 C 0.20313313560795593 0.17218100488444388 0.2058257979624496 0.18147212214836816 0.20556640399956616 0.18064568827390023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20556640399956616 0.18064568827390023 C 0.2055185903317475 0.18184923903452152 0.20461763601874 0.19838707265642339 0.2049926399857421 0.19508829740135575 C 0.20461763601874 0.19838707265642339 0.2007391660963577 0.22232621582915826 0.2010663563955411 0.2202309913347119" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.2010663563955411 0.2202309913347119 C 0.20103210274051603 0.2179210504306748 0.19990371433585946 0.18860355497393919 0.20065531253524022 0.19251170048626673 C 0.19990371433585946 0.18860355497393919 0.1913298334586164 0.1717350405784908 0.19204717800297208 0.17333324518678125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19204717800297208 0.17333324518678125 C 0.1916159725589106 0.17297219291316016 0.1859945341635618 0.1682272777550465 0.18687271267423453 0.1690006179033282 C 0.1859945341635618 0.1682272777550465 0.18106206280828804 0.16364087553274026 0.1815090358748993 0.16405316340740086" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1815090358748993 0.16405316340740086 C 0.18144367162327746 0.16393748771227518 0.18072466485543723 0.1622609877754241 0.18072466485543723 0.16266505506589268 C 0.18072466485543723 0.1622609877754241 0.18157440012652115 0.15891596432643493 0.1815090358748993 0.15920435592177784" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.364492313176885,0.09449108642269155) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.1116805846471951 0.12124859616852302 C 0.11204187990630965 0.12169585979209946 0.11653575349686439 0.12750116903893266 0.11601612775656973 0.1266157596514404 C 0.11653575349686439 0.12750116903893266 0.11807442401191104 0.13231165458234617 0.11791609353073094 0.13187350881843035" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11791609353073094 0.13187350881843035 C 0.11784299102586124 0.13147405912156387 0.11679311132505302 0.1262555683888135 0.11703886347229442 0.1270801124560326 C 0.11679311132505302 0.1262555683888135 0.1147944181214624 0.12155388564144852 0.1149670677638341 0.12197898001180114" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1149670677638341 0.12197898001180114 C 0.11529451761174511 0.12246450081255589 0.11929912053580552 0.12872509631843052 0.11889646593876617 0.12780522962085814 C 0.11929912053580552 0.12872509631843052 0.11987412767743466 0.13345172627948734 0.11979892292830631 0.13301738038266972" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11979892292830631 0.13301738038266972 C 0.11974153705537541 0.13279847693537628 0.11899423868505535 0.12998841408317802 0.11911029245313545 0.13039053901514824 C 0.11899423868505535 0.12998841408317802 0.11834760981619578 0.12800865971435016 0.11840627771134499 0.12819188119902694" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11840627771134499 0.12819188119902694 C 0.11844313219396853 0.12847746725460205 0.11886008741029053 0.13246454214092523 0.11884853150282747 0.13161891386592828 C 0.11886008741029053 0.13246454214092523 0.11851965002574116 0.1388994627184124 0.11854494860090165 0.13833942049899053" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11854494860090165 0.13833942049899053 C 0.11837883933399244 0.13770030191852556 0.11629045684896729 0.12977527836185024 0.11655163739799117 0.130669997533411 C 0.11629045684896729 0.12977527836185024 0.11531571073050033 0.12734718984916563 0.11541078201261501 0.12760279044026143" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11541078201261501 0.12760279044026143 C 0.11544972305088202 0.1279753878620917 0.11588964168540458 0.1330831917887939 0.11587807447181926 0.13207395950222475 C 0.11588964168540458 0.1330831917887939 0.11552221475095718 0.14035021274383 0.11554958857563888 0.13971357787909114" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11554958857563888 0.13971357787909114 C 0.11530393897661495 0.13893929610793143 0.11218987504833175 0.12933213147158157 0.1126017933873517 0.13042219662517449 C 0.11218987504833175 0.12933213147158157 0.11044029976740355 0.12631701265354275 0.11060656850739956 0.12663279603597596" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11060656850739956 0.12663279603597596 C 0.11076098286410586 0.12719990555127558 0.11267192165834736 0.1346472948799116 0.11245954078787519 0.13343811021957153 C 0.11267192165834736 0.1346472948799116 0.11321310546683144 0.14178508710509713 0.11315513895306557 0.14114301196005669" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11315513895306557 0.14114301196005669 C 0.1129941426988047 0.14040055633763854 0.11065242094036962 0.13051453499009924 0.11122318390193518 0.1322335444910389 C 0.11065242094036962 0.13051453499009924 0.10589621670697408 0.11953834407025912 0.10630598341427878 0.12051489794878065" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10630598341427878 0.12051489794878065 C 0.10677341802953533 0.1209974167948725 0.11263518274322376 0.1273866642267801 0.11191519879735738 0.12630512410188285 C 0.11263518274322376 0.1273866642267801 0.11519834009528522 0.13409240072635306 0.11494579076467538 0.13349337944754766" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11494579076467538 0.13349337944754766 C 0.11487880090063984 0.133061609109619 0.11386981188645887 0.12729173678581834 0.11414191239624889 0.12831213539240374 C 0.11386981188645887 0.12729173678581834 0.11147547400144062 0.12065996789986629 0.1116805846471951 0.12124859616852302" fill="none" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 52 KiB

View File

@@ -0,0 +1,156 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.1775730266759521 C 0.1821215225786621 0.1775730266759521 0.17841579518243067 0.16994295223147704 0.1780040476939605 0.1705298810348982 C 0.17841579518243067 0.16994295223147704 0.18829773490571464 0.17111680983831934 0.18788598741724447 0.1705298810348982 C 0.18829773490571464 0.17111680983831934 0.1821215225786621 0.1775730266759521 0.18294501755560244 0.1775730266759521 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3166123257704577,0.09346970158734061) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.19265858061947164 0.13432402913801017 C 0.1926924502019346 0.1346564902977594 0.19204106821847008 0.13973801736258462 0.19306501560902714 0.1383135630550007 C 0.19204106821847008 0.13973801736258462 0.17931339495976692 0.15250947397685205 0.18037121193278693 0.15141748082901732" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18037121193278693 0.15141748082901732 C 0.17982620290630572 0.153034769269238 0.17313828087156202 0.17353767514357102 0.17383110361501222 0.17082494211166568 C 0.17313828087156202 0.17353767514357102 0.17190952529441547 0.18506572180356584 0.17205733901138445 0.18397027721188122" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17205733901138445 0.18397027721188122 C 0.17210232506715037 0.18506632892448002 0.1727220887731151 0.200037087732372 0.17259717168057545 0.1971228977630667 C 0.1727220887731151 0.200037087732372 0.1736362751586338 0.2207586951002513 0.17355634412186008 0.2189405568435448" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17355634412186008 0.2189405568435448 C 0.17302124920766335 0.21665937703841515 0.1662964815427387 0.1878171596835527 0.16713520515149938 0.19156639918198895 C 0.1662964815427387 0.1878171596835527 0.16318803212216798 0.17248162316900315 0.16349166081673194 0.17394968286230975" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16349166081673194 0.17394968286230975 C 0.16361352633991583 0.17253208838668693 0.1655961492441355 0.15445488379068728 0.16495404709493866 0.15693854915483596 C 0.1655961492441355 0.15445488379068728 0.17171712323310692 0.14307962760399964 0.17119688660709398 0.1441456984925255" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17119688660709398 0.1441456984925255 C 0.17202858999196183 0.14350494885778908 0.1829658017265396 0.13563823042947892 0.1811773272255081 0.13645670287568853 C 0.1829658017265396 0.13563823042947892 0.19361535173563527 0.13414630632653698 0.19265858061947164 0.13432402913801017" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3359563004303272,0.07909040217201677) rotate(0) scale(1,1) translate(-0.1796864743156008,-0.1609457706712427)"><path d="M 0.18134428176353154 0.15722465442792516 C 0.18132433020044159 0.1575882400552836 0.18108247243253478 0.16299092893253103 0.18110486300645215 0.16158768195622664 C 0.18108247243253478 0.16299092893253103 0.18107315586569564 0.1751032794925238 0.18107559487652305 0.17406361814357788" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18107559487652305 0.17406361814357788 C 0.18095768514898297 0.17418939298321026 0.17926461926679937 0.1757411469269118 0.17966067814604222 0.17557291621916638 C 0.17926461926679937 0.1757411469269118 0.17604473917390598 0.1761248425046361 0.17632288832560877 0.17608238663652304" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17632288832560877 0.17608238663652304 C 0.17558549908024929 0.1763928756515609 0.1662765565249805 0.18088517267412677 0.16747421738129492 0.1798082548169774 C 0.1662765565249805 0.18088517267412677 0.16149068643888065 0.18977182976442697 0.16195095804983559 0.18900540092231546" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16195095804983559 0.18900540092231546 C 0.16181225201162835 0.18835798416365893 0.16018864249436754 0.18013964133208654 0.16028648559134892 0.1812363998184371 C 0.16018864249436754 0.18013964133208654 0.1608177038272849 0.17539495735841473 0.16077684088605906 0.17584429908610877" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16077684088605906 0.17584429908610877 C 0.16102694856537764 0.1752187828083088 0.16443292143530275 0.16723794465791605 0.16377813303788194 0.16833810375250913 C 0.16443292143530275 0.16723794465791605 0.1690389823732108 0.16216774713419865 0.1686343016551086 0.16264238995099176" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1686343016551086 0.16264238995099176 C 0.16909125557286506 0.16237488490960916 0.1751769136772213 0.15898085149414523 0.17411774866818605 0.15943232945440078 C 0.1751769136772213 0.15898085149414523 0.18194649285481032 0.1570406815090522 0.18134428176353154 0.15722465442792516" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32482811320020955,0.09175517420861776) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.1860968793401503 0.15590346619244633 C 0.1861537815597927 0.15624481298859366 0.18677021535174146 0.1605464255480734 0.18677970597585913 0.1599996277462143 C 0.18677021535174146 0.1605464255480734 0.18591659900697816 0.16267049082046758 0.18598299185073824 0.1624650398147558" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18598299185073824 0.1624650398147558 C 0.18516533192904194 0.16343485589312579 0.17485624287983806 0.17580353781913555 0.17617107279038274 0.17410283275519584 C 0.17485624287983806 0.17580353781913555 0.16970786293535364 0.1836043895676021 0.17020503292420203 0.1828735005820324" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17020503292420203 0.1828735005820324 C 0.16993097751153455 0.1834740848870343 0.16639532843892038 0.19150529128361315 0.1669163679721924 0.19008051224205513 C 0.16639532843892038 0.19150529128361315 0.1637055744043335 0.20079504381728483 0.16395255852493804 0.1999708490807287" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16395255852493804 0.1999708490807287 C 0.16385591252043666 0.19911439605981426 0.16276321990308953 0.1878706945345283 0.16279280647092162 0.18969341282975524 C 0.16276321990308953 0.1878706945345283 0.16366457914762228 0.17713196426369274 0.163597519710953 0.17809822953800525" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.163597519710953 0.17809822953800525 C 0.16389219744231923 0.17741698008724638 0.16789777860770833 0.16863976782158407 0.1671336524873477 0.16992323612889892 C 0.16789777860770833 0.16863976782158407 0.17323648154427457 0.162094390993671 0.1727670331552802 0.162696609850227" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1727670331552802 0.162696609850227 C 0.1732814661193622 0.16236025551964087 0.18005104923967014 0.1580942625783784 0.1789402287242643 0.15866035788319344 C 0.18005104923967014 0.1580942625783784 0.1866932668914741 0.1556737252182174 0.1860968793401503 0.15590346619244633" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.3126700149755389,0.09285722688055909) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.1815645078312005 0.13009553077729297 C 0.1815711422146644 0.13031479760051687 0.18160769049683437 0.1331395667691748 0.18164412043276718 0.1327267326559797 C 0.18160769049683437 0.1331395667691748 0.18108428428061019 0.1352431074256053 0.18112734860000687 0.1350495401356341" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18112734860000687 0.1350495401356341 C 0.18100524762872125 0.13515191577698013 0.17939952668608533 0.13640920204951512 0.17966213694457928 0.13627804783178638 C 0.17939952668608533 0.13640920204951512 0.17783551621087132 0.13665216932476196 0.17797602549807962 0.13662339074837923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17797602549807962 0.13662339074837923 C 0.17792559141489606 0.1366796259406833 0.17725748860475246 0.13736326845176605 0.177370816499877 0.1372982130560281 C 0.17725748860475246 0.13736326845176605 0.17649469575006435 0.13737191754884484 0.17661609075658521 0.1374040554972345 C 0.17649469575006435 0.13737191754884484 0.17581714199767176 0.13679183772015233 0.17591407642162654 0.13691255767535218 C 0.17581714199767176 0.13679183772015233 0.1754063773283567 0.13577846088733228 0.17545287766912793 0.1359554160348362 C 0.1754063773283567 0.13577846088733228 0.1753724658035416 0.13460332055436716 0.17535607233237185 0.13478909590530497 C 0.1753724658035416 0.13460332055436716 0.17567405990573115 0.13363752981677246 0.17564959932316504 0.13372611182358266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17564959932316504 0.13372611182358266 C 0.17563728530462897 0.133507010533449 0.17552749054511455 0.13067064890042812 0.17550183110073228 0.13109689634197877 C 0.17552749054511455 0.13067064890042812 0.17599548611867064 0.12840399637355795 0.1759575126557523 0.12861114252497494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1759575126557523 0.12861114252497494 C 0.17606996860405505 0.12850399401164694 0.17755882380232865 0.12718079281895464 0.17730698403538525 0.12732536036503894 C 0.17755882380232865 0.12718079281895464 0.17911897367771384 0.12683891293920704 0.1789795898590732 0.12687633197196335" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31094039675828167,0.09620163683623548) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1073573590021495 0.10244365362034957 C 0.10718036483751656 0.10266484016500968 0.10577745292367936 0.10410809404955731 0.10629539401435184 0.10377077288831019 C 0.10577745292367936 0.10410809404955731 0.10387405954175576 0.10412729334480848 0.10424971245811465 0.10446758058783234 C 0.10387405954175576 0.10412729334480848 0.10412816559815866 0.10085628107907538 0.1040414765161985 0.101729049430167 C 0.10412816559815866 0.10085628107907538 0.1047698469498756 0.09923097048128258 0.1047698469498756 0.09923097048128258 C 0.1047698469498756 0.09923097048128258 0.10395478743423833 0.10260181778125863 0.1040414765161985 0.101729049430167 C 0.10395478743423833 0.10260181778125863 0.1040025896700529 0.10502282665519595 0.10424971245811465 0.10446758058783234 C 0.1040025896700529 0.10502282665519595 0.10209219273987173 0.10532997573919078 0.10255873978782792 0.10506052583434866 C 0.10209219273987173 0.10532997573919078 0.1012657119008024 0.10625490571397449 0.10145043017037747 0.10608428001688508" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.30921077854102447,0.09954604679191184) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13941180281649138 0.11514349724109225 C 0.13947348902202242 0.11532053259184022 0.14022921449803832 0.11763105160810873 0.14015203728286374 0.11726792145006783 C 0.14022921449803832 0.11763105160810873 0.14035342040822996 0.11968715394487596 0.14033792939858641 0.11950105913758302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14033792939858641 0.11950105913758302 C 0.1402670113053559 0.1196600043585405 0.1393114826915024 0.12167673007781692 0.13948691227982035 0.12140840178907276 C 0.1393114826915024 0.12167673007781692 0.13812826284368346 0.12283038167029948 0.1382327743387709 0.12272099860251282" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1382327743387709 0.12272099860251282 C 0.1382070694828097 0.12279817059166225 0.13785078575542528 0.12376984167086856 0.13792431606723637 0.1236470624723059 C 0.13785078575542528 0.12376984167086856 0.13724545387772194 0.1242417782094237 0.13735041059703776 0.12419434898526473 C 0.13724545387772194 0.1242417782094237 0.13655657537680688 0.12417558378965772 0.13666483543544655 0.12421621316221347 C 0.13655657537680688 0.12417558378965772 0.13596873469068335 0.12358899515289051 0.1360512898933618 0.12370679651459568 C 0.13596873469068335 0.12358899515289051 0.13563944325647656 0.12263918825063298 0.13567417300330512 0.12280259682175139 C 0.13563944325647656 0.12263918825063298 0.1356312295920953 0.12165783506446008 0.13563453293141914 0.1217458936611748" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13563453293141914 0.1217458936611748 C 0.1355683655348766 0.12157245579457708 0.1347513180623297 0.11929699472923277 0.1348405241729087 0.11966463926200209 C 0.1347513180623297 0.11929699472923277 0.13454102089043468 0.11713995260177143 0.13456405960447115 0.11733415926794302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13456405960447115 0.11733415926794302 C 0.13462606781035888 0.1171771494670704 0.13547155876803738 0.11517719899399911 0.13530815807512384 0.11545004165747168 C 0.13547155876803738 0.11517719899399911 0.13662626040645953 0.11394421444367227 0.13652486791943372 0.11406004730627223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30869343767459057,0.1033618837209926) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629419270772901 0.10090710993169763 C 0.1062101144681005 0.10119762133787724 0.10546395759908334 0.10324434738418811 0.1057897232699579 0.10265017836877527 C 0.10546395759908334 0.10324434738418811 0.1039528629280179 0.10442000062460148 0.1043395986824816 0.10447212402417469 C 0.1039528629280179 0.10442000062460148 0.10331385357555353 0.10156385421856468 0.10346930874317574 0.102337437971336 C 0.10331385357555353 0.10156385421856468 0.10340686767674832 0.0998306215075467 0.10340686767674832 0.0998306215075467 C 0.10340686767674832 0.0998306215075467 0.10362476391079795 0.10311102172410733 0.10346930874317574 0.102337437971336 C 0.10362476391079795 0.10311102172410733 0.10428559381758513 0.10508124456838903 0.1043395986824816 0.10447212402417469 C 0.10428559381758513 0.10508124456838903 0.10284299019297936 0.10649896387749094 0.1031452795537969 0.10599216123662206 C 0.10284299019297936 0.10649896387749094 0.10242262634487292 0.10776640297484899 0.10252586251757635 0.107512939869388" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3081760968081568,0.10717772065007342) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13926807979794095 0.11423970666085433 C 0.13936035131687982 0.11435320293039514 0.14052458534497209 0.11586236397069173 0.14037533802520735 0.11560166189534407 C 0.14052458534497209 0.11586236397069173 0.1411160234359436 0.11751533737083306 0.14105904763511773 0.1173681315650262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14105904763511773 0.1173681315650262 C 0.14103947788959476 0.1175414358811276 0.1407460027333605 0.1197718469158355 0.140824210688842 0.11944778335824295 C 0.1407460027333605 0.1197718469158355 0.14006191395938133 0.12140765349762803 0.14012055216933986 0.12125689425613687" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14012055216933986 0.12125689425613687 C 0.1401181275129398 0.12133610366219279 0.14006113675418513 0.12235187798367653 0.14009145629253938 0.12220740712880798 C 0.14006113675418513 0.12235187798367653 0.13968293213071897 0.1230896327024351 0.13975671770908893 0.1229905445145594 C 0.13968293213071897 0.1230896327024351 0.13910854851985147 0.12342362030427846 0.13920602935209983 0.12339646538331638 C 0.13910854851985147 0.12342362030427846 0.13849189154626015 0.12326434908101065 0.13858694772210847 0.12331640356610449 C 0.13849189154626015 0.12326434908101065 0.13799819394802576 0.12265449562828391 0.1380653552419199 0.12277181156219036 C 0.13799819394802576 0.12265449562828391 0.13775731694150053 0.12183667909231351 0.13778101219537894 0.1219086123592271" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13778101219537894 0.1219086123592271 C 0.1376859656520463 0.12180066458366667 0.13648037515203934 0.12035555419059454 0.13664045367538724 0.12061323905250197 C 0.13648037515203934 0.12035555419059454 0.13579503793518902 0.11866665692999101 0.13586006991520427 0.118816394016338" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13586006991520427 0.118816394016338 C 0.13587287689598332 0.11864974904618171 0.1360811304364511 0.11649560803031016 0.13601375368455276 0.11681665437446248 C 0.1360811304364511 0.11649560803031016 0.13672316070910356 0.11480943651251417 0.13666859093798428 0.1149638378865102" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30866732021535515,0.11066821116707322) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10514116260240496 0.10033185349248873 C 0.1051423223375158 0.10062286205433743 0.10502577879916283 0.10276004559186386 0.10514812101307008 0.10207790486358093 C 0.10502577879916283 0.10276004559186386 0.10408107997142158 0.10459965879520322 0.1044071093189615 0.1044246978621863 C 0.10408107997142158 0.10459965879520322 0.1028812631883993 0.10256722742498257 0.10319194492783058 0.10312767046168243 C 0.1028812631883993 0.10256722742498257 0.10254301888237374 0.10106203964198712 0.10254301888237374 0.10106203964198712 C 0.10254301888237374 0.10106203964198712 0.10350262666726187 0.10368811349838229 0.10319194492783058 0.10312767046168243 C 0.10350262666726187 0.10368811349838229 0.10450869596598111 0.10496572659882238 0.1044071093189615 0.1044246978621863 C 0.10450869596598111 0.10496572659882238 0.10367730714411705 0.10696949034355509 0.10380146480994831 0.10637384288149883 C 0.10367730714411705 0.10696949034355509 0.10363894640964479 0.10826937259336139 0.10366216332397386 0.10799858263452389" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3126700149755389,0.09285722688055909) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.1805685037841553 0.15889682577551612 C 0.18035325531024626 0.15914605174100324 0.17763007677757126 0.16257599429334474 0.17798552209724697 0.1618875373613617 C 0.17763007677757126 0.16257599429334474 0.17616296310228 0.1675975399258087 0.17630315994804668 0.16715830895931277" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17630315994804668 0.16715830895931277 C 0.17614409622021057 0.1677292862785586 0.17395853473443906 0.17534359751659961 0.17439439521401348 0.17401003679026267 C 0.17395853473443906 0.17534359751659961 0.17079603744141544 0.18392362108244711 0.17107283419315375 0.183161037675356" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17107283419315375 0.183161037675356 C 0.1706695693871994 0.18421314596821153 0.16513762825448236 0.1975115442767651 0.16623365652170158 0.19578633718962263 C 0.16513762825448236 0.1975115442767651 0.1572277315252581 0.20453662151535232 0.15792049498652297 0.20386352272106542" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15792049498652297 0.20386352272106542 C 0.15836331862527328 0.2030276828655178 0.1638695286755796 0.19182354228974374 0.16323437865152685 0.19383344445449394 C 0.1638695286755796 0.19182354228974374 0.1657346216604587 0.1785706344348605 0.16554229527515624 0.17974469674406307" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16554229527515624 0.17974469674406307 C 0.1657174923671298 0.17901288117645398 0.16812592187707298 0.1696406870930554 0.16764466037883893 0.17096290993275398 C 0.16812592187707298 0.1696406870930554 0.17162349766022533 0.1632876153955906 0.17131743325396484 0.1638780226676801" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17131743325396484 0.1638780226676801 C 0.17163710453224734 0.16357098856343588 0.17592441113753723 0.15977851367573595 0.1751534885933547 0.16019361341674962 C 0.17592441113753723 0.15977851367573595 0.18101975505005533 0.15878876013874665 0.1805685037841553 0.15889682577551612" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3126700149755389,0.09285722688055909) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.13150440448132986 0.11898019546370492 C 0.13120134971143524 0.11960313811476411 0.1274002450716994 0.12783098277504557 0.1278677472425946 0.12645550727641525 C 0.1274002450716994 0.12783098277504557 0.12572993102958685 0.1362384342948399 0.12589437843058746 0.13548590144726877" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12589437843058746 0.13548590144726877 C 0.12621362341852582 0.13476241321399118 0.13084798528897354 0.1254068497950778 0.12972531828584785 0.12680404264793757 C 0.13084798528897354 0.1254068497950778 0.1401698044832829 0.11804588259336941 0.13936638246809557 0.11871958721295157" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13936638246809557 0.11871958721295157 C 0.13884179599653973 0.11955936432889663 0.13229327317759065 0.1304189270652631 0.13307134480942528 0.12879691260429232 C 0.13229327317759065 0.1304189270652631 0.12977603772580107 0.13896599808962642 0.13002952288607986 0.13818376074460073" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13002952288607986 0.13818376074460073 C 0.13011638680304738 0.13763333503161462 0.13131601132062776 0.13054680168244753 0.13107188988969015 0.13157865218876752 C 0.13131601132062776 0.13054680168244753 0.13311623757130112 0.12532012987542715 0.13295898005733103 0.12580155466876103" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13295898005733103 0.12580155466876103 C 0.13264098045040676 0.12623366900952554 0.12851763792445217 0.13254463972241848 0.12914298477423966 0.1309869267579351 C 0.12851763792445217 0.13254463972241848 0.12514747061701786 0.1456197088662803 0.12545481785988108 0.14449411024256145" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12545481785988108 0.14449411024256145 C 0.125388831019406 0.1436417692876358 0.12472145035133328 0.132729283789327 0.12466297577418034 0.13426601878345365 C 0.12472145035133328 0.132729283789327 0.12628097420334444 0.1253688962738405 0.12615651278571643 0.12605329031304152" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12615651278571643 0.12605329031304152 C 0.1259052691269521 0.12653690007871693 0.12255031266884552 0.1332301376899921 0.12314158888054454 0.13185660750114647 C 0.12255031266884552 0.1332301376899921 0.1187211656923935 0.14342557300235903 0.1190611982453282 0.14253565257918882" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1190611982453282 0.14253565257918882 C 0.11910139226649703 0.14171077025715156 0.11964771610456743 0.13140263898849516 0.11954352649935424 0.1326370647147417 C 0.11964771610456743 0.13140263898849516 0.12037546909193078 0.12731300046002103 0.12031147350788643 0.12772254386423032" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12031147350788643 0.12772254386423032 C 0.12009424295909005 0.12787226170186808 0.11743793595458846 0.12939659960766295 0.11770470692232989 0.12951915791588353 C 0.11743793595458846 0.12939659960766295 0.11706068147604425 0.12597956801972507 0.11711022189498929 0.1262518441655834" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11711022189498929 0.1262518441655834 C 0.1172361635958826 0.12632370817113064 0.11926811296209941 0.12671966386522593 0.11862152230570892 0.1271142122321503 C 0.11926811296209941 0.12671966386522593 0.1253899587271723 0.12105085139001924 0.1248693097716751 0.12151726376249086" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1248693097716751 0.12151726376249086 C 0.12462671248853262 0.1219881384789395 0.12163955120055768 0.12813958866435368 0.12195814237396532 0.1271677603598745 C 0.12163955120055768 0.12813958866435368 0.12097022180051825 0.1336801570042713 0.12104621569078342 0.1331792034162408" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12104621569078342 0.1331792034162408 C 0.12131678616083871 0.13256386736105022 0.12516457706399253 0.12461192009124267 0.12429306133144699 0.125795170753954 C 0.12516457706399253 0.12461192009124267 0.1321053497438201 0.11841228085618416 0.13150440448132986 0.11898019546370492" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3369792791005086,0.08570948372514536) rotate(0) scale(1,1) translate(-0.19087002262019262,-0.15610638648131955)"><path d="M 0.19125720647335898 0.1547613765752314 C 0.19120360457294377 0.15552756439721255 0.18968605387752435 0.165262533365331 0.1906139836683764 0.16395563043900532 C 0.18968605387752435 0.165262533365331 0.17924772109269774 0.1709849267954842 0.18012204898313455 0.17044421169113966" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18012204898313455 0.17044421169113966 C 0.179438296028567 0.17146461265380059 0.17115923046109488 0.18513602090251455 0.17191701352832395 0.18268902324307096 C 0.17115923046109488 0.18513602090251455 0.1709546220637241 0.20123478030124542 0.17102865217638563 0.19980818360446276" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17102865217638563 0.19980818360446276 C 0.17109101191079637 0.20078745679213775 0.1719635153811204 0.2140330694495036 0.17177696898931447 0.2115594618565627 C 0.1719635153811204 0.2140330694495036 0.17339139553545188 0.23098580912501915 0.1732672088780567 0.22949147471975326" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1732672088780567 0.22949147471975326 C 0.17292753522096196 0.2282112051474854 0.16856677811973564 0.21047407602163548 0.16919112499292008 0.21412823985253923 C 0.16856677811973564 0.21047407602163548 0.16549037318375365 0.1832676144902724 0.16577504639984336 0.1856415087489083" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16577504639984336 0.1856415087489083 C 0.16594928466673173 0.18436153559300214 0.16853506182352038 0.1680937073024116 0.1678659056025039 0.17028183087803428 C 0.16853506182352038 0.1680937073024116 0.1742998390061693 0.15847587542171968 0.17380492105204118 0.15938402584143618" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17380492105204118 0.15938402584143618 C 0.17455926124054522 0.15888075189210646 0.18431136043253282 0.15295951767729568 0.18285700331408966 0.1533447384494794 C 0.18431136043253282 0.15295951767729568 0.19195722340329807 0.1548794297523774 0.19125720647335898 0.1547613765752314" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3580745798868835,0.09346970158734061) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.15133309476232512 0.13432402913801017 C 0.15228986587848875 0.13450175194948336 0.16460282265732018 0.13727517532189815 0.1628143481562887 0.13645670287568853 C 0.16460282265732018 0.13727517532189815 0.17362649215957066 0.14478644812726194 0.1727947887747028 0.1441456984925255" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1727947887747028 0.1441456984925255 C 0.17331502540071575 0.14521176938105138 0.17967973043605487 0.15942221451898464 0.17903762828685804 0.15693854915483596 C 0.17967973043605487 0.15942221451898464 0.18062188008824867 0.17536727733793256 0.1805000145650648 0.17394968286230975" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1805000145650648 0.17394968286230975 C 0.18019638587050082 0.17541774255561635 0.17601774662153666 0.1953156386804252 0.17685647023029735 0.19156639918198895 C 0.17601774662153666 0.1953156386804252 0.16990023634573986 0.22122173664867445 0.1704353312599366 0.2189405568435448" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1704353312599366 0.2189405568435448 C 0.17051526229671032 0.21712241858683828 0.171519420793761 0.19420870779376143 0.17139450370122136 0.1971228977630667 C 0.171519420793761 0.19420870779376143 0.17197932242617814 0.18287422549928242 0.17193433637041222 0.18397027721188122" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17193433637041222 0.18397027721188122 C 0.17178652265344324 0.1828748326201966 0.1694677490233343 0.16811220907976035 0.1701605717667845 0.17082494211166568 C 0.1694677490233343 0.16811220907976035 0.16307545442252863 0.14980019238879663 0.16362046344900985 0.15141748082901732" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16362046344900985 0.15141748082901732 C 0.16256264647598984 0.1503254876811826 0.1499027123822126 0.13688910874741678 0.15092665977276964 0.1383135630550007 C 0.1499027123822126 0.13688910874741678 0.15136696434478808 0.13399156797826095 0.15133309476232512 0.13432402913801017" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33873060522701415,0.07909040217201677) rotate(0) scale(1,1) translate(-0.1796864743156008,-0.1609457706712427)"><path d="M 0.17802866686767002 0.15722465442792516 C 0.1786308779589488 0.1574086273467981 0.18631436497205073 0.15988380741465633 0.18525519996301548 0.15943232945440078 C 0.18631436497205073 0.15988380741465633 0.19119560089384946 0.16290989499237435 0.190738646976093 0.16264238995099176" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.190738646976093 0.16264238995099176 C 0.19114332769419523 0.16311703276778486 0.19624960399074043 0.1694382628471022 0.19559481559331965 0.16833810375250913 C 0.19624960399074043 0.1694382628471022 0.1988462154244611 0.17646981536390874 0.19859610774514252 0.17584429908610877" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.19859610774514252 0.17584429908610877 C 0.19863697068636837 0.1762936408138028 0.19898861994287126 0.18233315830478763 0.19908646303985264 0.1812363998184371 C 0.19898861994287126 0.18233315830478763 0.19728328454315872 0.189652817680972 0.19742199058136595 0.18900540092231546" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.19742199058136595 0.18900540092231546 C 0.196961718970411 0.18823897208020396 0.1907010703935922 0.17873133695982804 0.1918987312499066 0.1798082548169774 C 0.1907010703935922 0.17873133695982804 0.18231267106023333 0.17577189762148518 0.18305006030559282 0.17608238663652304" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18305006030559282 0.17608238663652304 C 0.18277191115389002 0.17603993076840999 0.17931621160591654 0.17540468551142094 0.1797122704851594 0.17557291621916638 C 0.17931621160591654 0.17540468551142094 0.17817944402713837 0.1739378433039455 0.17829735375467845 0.17406361814357788" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17829735375467845 0.17406361814357788 C 0.17829491474385104 0.17302395679463195 0.17824569505083204 0.16018443497992224 0.1782680856247494 0.16158768195622664 C 0.17824569505083204 0.16018443497992224 0.17800871530458007 0.15686106880056672 0.17802866686767002 0.15722465442792516" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3498587924571317,0.09175517420861776) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.16108107462261348 0.15590346619244633 C 0.1616774621739373 0.15613320716667525 0.16934854575390534 0.1592264531880085 0.1682377252384995 0.15866035788319344 C 0.16934854575390534 0.1592264531880085 0.1749253537715655 0.16303296418081312 0.17441092080748352 0.162696609850227" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17441092080748352 0.162696609850227 C 0.1748803691964779 0.16329882870678297 0.18080842759577667 0.17120670443621377 0.18004430147541606 0.16992323612889892 C 0.18080842759577667 0.17120670443621377 0.18387511198317696 0.17877947898876412 0.18358043425181075 0.17809822953800525" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18358043425181075 0.17809822953800525 C 0.18364749368848005 0.17906449481231776 0.1843555609240101 0.1915161311249822 0.18438514749184218 0.18969341282975524 C 0.1843555609240101 0.1915161311249822 0.18312874943332433 0.20082730210164315 0.1832253954378257 0.1999708490807287" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1832253954378257 0.1999708490807287 C 0.18297841131722117 0.19914665434417259 0.17974054645729942 0.1886557332004971 0.1802615859905714 0.19008051224205513 C 0.17974054645729942 0.1886557332004971 0.17669886562589437 0.1822729162770305 0.17697292103856183 0.1828735005820324" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17697292103856183 0.1828735005820324 C 0.17647575104971341 0.18214261159646267 0.16969205126183629 0.17240212769125612 0.17100688117238097 0.17410283275519584 C 0.16969205126183629 0.17240212769125612 0.16037730219032936 0.1614952237363858 0.16119496211202564 0.1624650398147558" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16119496211202564 0.1624650398147558 C 0.16112856926826555 0.162259588809044 0.16038875736278693 0.15945282994435517 0.1603982479869046 0.1599996277462143 C 0.16038875736278693 0.15945282994435517 0.1611379768422559 0.155562119396299 0.16108107462261348 0.15590346619244633" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.36201689068180215,0.09285722688055909) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18156450783120046 0.12687633197196335 C 0.18170389164984113 0.12691375100471966 0.18348895342183183 0.12746992791112327 0.18323711365488843 0.12732536036503897 C 0.18348895342183183 0.12746992791112327 0.1846990409828241 0.12871829103830293 0.18458658503452136 0.12861114252497494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18458658503452136 0.12861114252497494 C 0.1846245584974397 0.12881828867639192 0.18506792603392358 0.13152314378352942 0.18504226658954132 0.13109689634197877 C 0.18506792603392358 0.13152314378352942 0.18488218434857248 0.13394521311371632 0.18489449836710856 0.13372611182358266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18489449836710856 0.13372611182358266 C 0.18491895894967467 0.13381469383039285 0.18520441882907154 0.13497487125624277 0.18518802535790177 0.13478909590530497 C 0.18520441882907154 0.13497487125624277 0.18504471968037448 0.13613237118234014 0.1850912200211457 0.1359554160348362 C 0.18504471968037448 0.13613237118234014 0.18453308684469238 0.13703327763055204 0.18463002126864717 0.13691255767535218 C 0.18453308684469238 0.13703327763055204 0.18380661192716755 0.13743619344562416 0.1839280069336884 0.1374040554972345 C 0.18380661192716755 0.13743619344562416 0.18305995329527214 0.13723315766029015 0.18317328119039666 0.1372982130560281 C 0.18305995329527214 0.13723315766029015 0.18251763810901045 0.13656715555607518 0.182568072192194 0.13662339074837926" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.182568072192194 0.13662339074837926 C 0.1824275629049857 0.13659461217199653 0.1806193504872004 0.1361468936140576 0.18088196074569435 0.13627804783178638 C 0.1806193504872004 0.1361468936140576 0.1792946481189811 0.1349471644942881 0.17941674909026673 0.1350495401356341" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17941674909026673 0.1350495401356341 C 0.17937368477087004 0.13485597284566292 0.17886354732157364 0.1323138985427846 0.17889997725750645 0.1327267326559797 C 0.17886354732157364 0.1323138985427846 0.17898622424253702 0.12987626395406907 0.17897958985907314 0.13009553077729297" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36374650889905946,0.09620163683623548) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10722407658093397 0.10608428001688508 C 0.10703935831135888 0.10591365431979567 0.1056492199155273 0.10479107592950654 0.10611576696348349 0.10506052583434866 C 0.1056492199155273 0.10479107592950654 0.10417767150513504 0.10391233452046873 0.1044247942931968 0.10446758058783234 C 0.10417767150513504 0.10391233452046873 0.10454634115315276 0.10085628107907538 0.10463303023511292 0.101729049430167 C 0.10454634115315276 0.10085628107907538 0.10390465980143584 0.09923097048128258 0.10390465980143584 0.09923097048128258 C 0.10390465980143584 0.09923097048128258 0.10471971931707308 0.10260181778125863 0.10463303023511292 0.101729049430167 C 0.10471971931707308 0.10260181778125863 0.1040491413768379 0.1048078678308562 0.1044247942931968 0.10446758058783234 C 0.1040491413768379 0.1048078678308562 0.10186117164628711 0.10343345172706304 0.10237911273695958 0.10377077288831017 C 0.10186117164628711 0.10343345172706304 0.10114015358452902 0.10222246707568947 0.10131714774916195 0.10244365362034957" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.36547612711631666,0.09954604679191184) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1394118028164915 0.11406004730627221 C 0.1395131953035173 0.11417588016887217 0.14079191335371496 0.11572288432094423 0.14062851266080142 0.11545004165747166 C 0.14079191335371496 0.11572288432094423 0.14143461933734178 0.11749116906881564 0.14137261113145405 0.11733415926794302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14137261113145405 0.11733415926794302 C 0.14134957241741758 0.11752836593411461 0.1410069404524375 0.1200322837947714 0.1410961465630165 0.11966463926200209 C 0.1410069404524375 0.1200322837947714 0.1402359704079636 0.12191933152777253 0.14030213780450612 0.1217458936611748" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14030213780450612 0.1217458936611748 C 0.1402988344651823 0.12183395225788952 0.14022776798579162 0.1229660053928698 0.14026249773262017 0.12280259682175139 C 0.14022776798579162 0.1229660053928698 0.13980282563988497 0.12382459787630085 0.1398853808425634 0.12370679651459567 C 0.13980282563988497 0.12382459787630085 0.1391635752418391 0.12425684253476922 0.13927183530047874 0.12421621316221347 C 0.1391635752418391 0.12425684253476922 0.13848130341957168 0.12414691976110576 0.1385862601388875 0.12419434898526473 C 0.13848130341957168 0.12414691976110576 0.1379388243568777 0.12352428327374324 0.1380123546686888 0.12364706247230589 C 0.1379388243568777 0.12352428327374324 0.13767819154119312 0.12264382661336337 0.13770389639715433 0.1227209986025128" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13770389639715433 0.1227209986025128 C 0.13759938490206688 0.12261161553472613 0.13627432886778698 0.12114007350032861 0.13644975845610494 0.12140840178907276 C 0.13627432886778698 0.12114007350032861 0.13552782324410836 0.11934211391662554 0.13559874133733887 0.11950105913758302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13559874133733887 0.11950105913758302 C 0.13561423234698244 0.11931496433029008 0.13586181066823613 0.11690479129202692 0.13578463345306155 0.11726792145006783 C 0.13586181066823613 0.11690479129202692 0.13658655412496484 0.11496646189034429 0.13652486791943383 0.11514349724109225" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3659934679827505,0.1033618837209926) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1061486442337351 0.107512939869388 C 0.10604540806103167 0.107259476763927 0.105226937836697 0.10548535859575317 0.10552922719751454 0.10599216123662206 C 0.105226937836697 0.10548535859575317 0.10428090320393336 0.10386300347996033 0.10433490806882983 0.10447212402417468 C 0.10428090320393336 0.10386300347996033 0.10536065317575793 0.10156385421856468 0.10520519800813571 0.102337437971336 C 0.10536065317575793 0.10156385421856468 0.10526763907456313 0.0998306215075467 0.10526763907456313 0.0998306215075467 C 0.10526763907456313 0.0998306215075467 0.1050497428405135 0.10311102172410733 0.10520519800813571 0.102337437971336 C 0.1050497428405135 0.10311102172410733 0.10394817231436614 0.10452424742374788 0.10433490806882983 0.10447212402417468 C 0.10394817231436614 0.10452424742374788 0.10255901781047899 0.10205600935336243 0.10288478348135355 0.10265017836877527 C 0.10255901781047899 0.10205600935336243 0.10229623580395396 0.10061659852551802 0.10238031404358247 0.10090710993169763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.36651080884918424,0.10717772065007342) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139268079797941 0.11496383788651018 C 0.1393226495690603 0.11511823926050621 0.13999029380327077 0.1171377007186148 0.13992291705137244 0.11681665437446248 C 0.13999029380327077 0.1171377007186148 0.14008940780149998 0.11898303898649429 0.14007660082072093 0.11881639401633799" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14007660082072093 0.11881639401633799 C 0.14001156884070567 0.11896613110268499 0.13913613853719012 0.1208709239144094 0.139296217060538 0.12061323905250197 C 0.13913613853719012 0.1208709239144094 0.1380606119972137 0.12201656013478754 0.13815565854054634 0.1219086123592271" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13815565854054634 0.1219086123592271 C 0.13813196328666794 0.1219805456261407 0.13780415420011116 0.1228891274960968 0.1378713154940053 0.12277181156219036 C 0.13780415420011116 0.1228891274960968 0.13725466683796841 0.12336845805119832 0.13734972301381673 0.12331640356610449 C 0.13725466683796841 0.12336845805119832 0.13663316055157707 0.12336931046235428 0.13673064138382543 0.12339646538331638 C 0.13663316055157707 0.12336931046235428 0.13610616744846632 0.12289145632668368 0.13617995302683628 0.12299054451455937 C 0.13610616744846632 0.12289145632668368 0.13581489490503162 0.12206293627393942 0.13584521444338588 0.12220740712880797 C 0.13581489490503162 0.12206293627393942 0.1358136939101853 0.12117768485008094 0.13581611856658535 0.12125689425613687" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13581611856658535 0.12125689425613687 C 0.13575748035662685 0.1211061350146457 0.1350342520916018 0.1191237198006504 0.1351124600470833 0.11944778335824295 C 0.1350342520916018 0.1191237198006504 0.13485805335528456 0.11719482724892481 0.13487762310080753 0.1173681315650262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13487762310080753 0.1173681315650262 C 0.1349345989016334 0.11722092575921936 0.1357105800304826 0.11534095981999641 0.13556133271071788 0.11560166189534407 C 0.1357105800304826 0.11534095981999641 0.1367608624569232 0.11412621039131352 0.13666859093798434 0.11423970666085433" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3660195854419859,0.1106682111670732) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10501234342733756 0.10799858263452389 C 0.10498912651300848 0.10772779267568638 0.10474888427553188 0.10577819541944257 0.10487304194136314 0.10637384288149883 C 0.10474888427553188 0.10577819541944257 0.10436898407936958 0.10388366912555023 0.10426739743234996 0.1044246978621863 C 0.10436898407936958 0.10388366912555023 0.10579324356291213 0.10256722742498256 0.10548256182348084 0.10312767046168242 C 0.10579324356291213 0.10256722742498256 0.1061314878689377 0.10106203964198712 0.1061314878689377 0.10106203964198712 C 0.1061314878689377 0.10106203964198712 0.10517188008404955 0.10368811349838228 0.10548256182348084 0.10312767046168242 C 0.10517188008404955 0.10368811349838228 0.10394136808481004 0.10424973692916939 0.10426739743234996 0.1044246978621863 C 0.10394136808481004 0.10424973692916939 0.10340404352433408 0.10139576413529798 0.10352638573824133 0.10207790486358091 C 0.10340404352433408 0.10139576413529798 0.10353450388401733 0.10004084493064001 0.10353334414890647 0.10033185349248872" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.36201689068180215,0.09285722688055909) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.16116296941705957 0.15889682577551612 C 0.1616142206829596 0.15900489141228558 0.16734890715204268 0.1606087131577633 0.16657798460786014 0.16019361341674962 C 0.16734890715204268 0.1606087131577633 0.17073371122553252 0.1641850567719243 0.17041403994725002 0.1638780226676801" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17041403994725002 0.1638780226676801 C 0.1707201043535105 0.16446842993976957 0.17456807432060997 0.17228513277245255 0.17408681282237592 0.17096290993275398 C 0.17456807432060997 0.17228513277245255 0.17636437501803215 0.18047651231167217 0.1761891779260586 0.17974469674406307" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1761891779260586 0.17974469674406307 C 0.17638150431136104 0.18091875905326565 0.17913224457374072 0.19584334661924413 0.17849709454968793 0.19383344445449394 C 0.17913224457374072 0.19584334661924413 0.18425380185344226 0.20469936257661303 0.18381097821469192 0.20386352272106542" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18381097821469192 0.20386352272106542 C 0.18311821475342702 0.20319042392677852 0.17440178841229398 0.19406113010248016 0.17549781667951322 0.19578633718962263 C 0.17440178841229398 0.19406113010248016 0.1702553742021068 0.18210892938250045 0.17065863900806114 0.183161037675356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17065863900806114 0.183161037675356 C 0.17038184225632283 0.18239845426826487 0.1669012175076269 0.17267647606392572 0.16733707798720132 0.17401003679026267 C 0.1669012175076269 0.17267647606392572 0.165269249525332 0.16658733164006695 0.16542831325316812 0.16715830895931277" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16542831325316812 0.16715830895931277 C 0.16528811640740143 0.16671907799281685 0.16339050578429215 0.16119908042937864 0.16374595110396786 0.1618875373613617 C 0.16339050578429215 0.16119908042937864 0.16094772094315055 0.158647599810029 0.16116296941705957 0.15889682577551612" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.36201689068180215,0.09285722688055909) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.10673038223347754 0.11898019546370492 C 0.10733132749596777 0.11954811007122568 0.11481324111590588 0.12697842141666532 0.11394172538336035 0.125795170753954 C 0.11481324111590588 0.12697842141666532 0.11745914149407918 0.13379453947143136 0.11718857102402389 0.1331792034162408" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11718857102402389 0.1331792034162408 C 0.11711257713375872 0.13267824982821028 0.11595805316743435 0.12619593205539534 0.11627664434084199 0.1271677603598745 C 0.11595805316743435 0.12619593205539534 0.11312287965998977 0.12104638904604223 0.11336547694313225 0.12151726376249086" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11336547694313225 0.12151726376249086 C 0.11388612589862943 0.12198367613496248 0.12025985506548888 0.12750876059907468 0.11961326440909839 0.1271142122321503 C 0.12025985506548888 0.12750876059907468 0.12125050652071132 0.12617998016003618 0.12112456481981801 0.1262518441655834" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12112456481981801 0.1262518441655834 C 0.12107502440087296 0.12652412031144175 0.12026330882473606 0.12964171622410411 0.12053007979247748 0.12951915791588353 C 0.12026330882473606 0.12964171622410411 0.11770608265812449 0.12757282602659256 0.11792331320692087 0.12772254386423032" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11792331320692087 0.12772254386423032 C 0.11798730879096522 0.1281320872684396 0.1187954498206663 0.13387149044098826 0.1186912602154531 0.1326370647147417 C 0.1187954498206663 0.13387149044098826 0.11921378249064797 0.14336053490122608 0.11917358846947913 0.14253565257918882" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11917358846947913 0.14253565257918882 C 0.11883355591654444 0.1416457321560186 0.1145019216225638 0.13048307731230085 0.11509319783426282 0.13185660750114647 C 0.1145019216225638 0.13048307731230085 0.11182703027032649 0.1255696805473661 0.11207827392909082 0.12605329031304152" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11207827392909082 0.12605329031304152 C 0.11220273534671883 0.12673768435224253 0.1136302855177799 0.1358027537775803 0.11357181094062695 0.13426601878345365 C 0.1136302855177799 0.1358027537775803 0.11271398201445117 0.1453464511974871 0.11277996885492622 0.14449411024256145" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11277996885492622 0.14449411024256145 C 0.112472621612063 0.1433685116188426 0.10846645509078016 0.12942921379345174 0.10909180194056767 0.1309869267579351 C 0.10846645509078016 0.12942921379345174 0.10495780705055197 0.12536944032799652 0.10527580665747625 0.12580155466876103" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10527580665747625 0.12580155466876103 C 0.10543306417144632 0.1262829794620949 0.10740701825605473 0.1326105026950875 0.10716289682511712 0.13157865218876752 C 0.10740701825605473 0.1326105026950875 0.108292127745695 0.13873418645758684 0.10820526382872747 0.13818376074460073" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10820526382872747 0.13818376074460073 C 0.10795177866844868 0.13740152339957504 0.1043853702735473 0.12717489814332156 0.10516344190538195 0.12879691260429232 C 0.1043853702735473 0.12717489814332156 0.09834381777515586 0.11787981009700652 0.09886840424671171 0.11871958721295157" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09886840424671171 0.11871958721295157 C 0.09967182626189902 0.11939329183253374 0.10963213543208516 0.12820123550079734 0.10850946842895948 0.12680404264793757 C 0.10963213543208516 0.12820123550079734 0.11265965327215836 0.13620938968054636 0.11234040828421998 0.13548590144726877" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11234040828421998 0.13548590144726877 C 0.11217596088321938 0.13473336859969764 0.10989953730131756 0.12508003177778493 0.11036703947221277 0.12645550727641525 C 0.10989953730131756 0.12508003177778493 0.10642732746358294 0.11835725281264572 0.10673038223347754 0.11898019546370492" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33770762655683273,0.08570948372514539) rotate(0) scale(1,1) translate(-0.16157763931359273,-0.15610638648131955)"><path d="M 0.16119045546042632 0.1547613765752314 C 0.16189047239036544 0.1546433233980854 0.17104501573813882 0.15372995922166313 0.16959065861969566 0.1533447384494794 C 0.17104501573813882 0.15372995922166313 0.17939708107024818 0.1598872997907659 0.17864274088174414 0.15938402584143618" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17864274088174414 0.15938402584143618 C 0.17913765883587224 0.1602921762611527 0.18525091255229786 0.17246995445365695 0.18458175633128138 0.17028183087803428 C 0.18525091255229786 0.17246995445365695 0.18684685380083021 0.18692148190481447 0.18667261553394185 0.1856415087489083" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18667261553394185 0.1856415087489083 C 0.18638794231785213 0.1880154030075442 0.18263219006768075 0.21778240368344298 0.1832565369408652 0.21412823985253923 C 0.18263219006768075 0.21778240368344298 0.17884077939863385 0.2307717442920211 0.17918045305572858 0.22949147471975326" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17918045305572858 0.22949147471975326 C 0.17930463971312377 0.22799714031448737 0.1808572393362768 0.20908585426362183 0.18067069294447086 0.2115594618565627 C 0.1808572393362768 0.20908585426362183 0.1814813694918104 0.19882891041678777 0.18141900975739966 0.19980818360446276" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18141900975739966 0.19980818360446276 C 0.18134497964473814 0.1983815869076801 0.17977286533823225 0.18024202558362737 0.18053064840546132 0.18268902324307096 C 0.17977286533823225 0.18024202558362737 0.1716418599960832 0.16942381072847873 0.17232561295065074 0.17044421169113966" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17232561295065074 0.17044421169113966 C 0.17145128506021393 0.16990349658679513 0.1609057484745568 0.16264872751267964 0.16183367826540884 0.16395563043900532 C 0.1609057484745568 0.16264872751267964 0.16113685356001112 0.15399518875325025 0.16119045546042632 0.1547613765752314" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 51 KiB

View File

@@ -0,0 +1,180 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.18927342293533692 C 0.1821049703296256 0.18927342293533692 0.17832475781272994 0.16894640501170435 0.1779047341997415 0.1705100217750607 C 0.17832475781272994 0.16894640501170435 0.18840532452445186 0.17207363853841703 0.18798530091146345 0.1705100217750607 C 0.18840532452445186 0.17207363853841703 0.1821049703296256 0.18927342293533692 0.18294501755560244 0.18927342293533692 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3161225363334549,0.09407867593025118) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.1932825535084801 0.1338588946386486 C 0.1933174458835748 0.13419832051999153 0.19264639348658022 0.13938526191199188 0.19370126200961651 0.13793200521476376 C 0.19264639348658022 0.13938526191199188 0.1795343703339137 0.15241180582127117 0.18062413123204468 0.151297975005386" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18062413123204468 0.151297975005386 C 0.18007377075559527 0.1524717475930717 0.1732260766412898 0.16815022829756426 0.17401980551465174 0.16538324605761423 C 0.1732260766412898 0.16815022829756426 0.17085601635478917 0.18609497153705074 0.17109938475170167 0.1845017618847864" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17109938475170167 0.1845017618847864 C 0.17127169812538168 0.1865578143329285 0.17344548312759245 0.2123096297003548 0.1731671452358617 0.20917439126249165 C 0.17344548312759245 0.2123096297003548 0.17454546397052106 0.22320380912886537 0.17443943945247034 0.2221246231391443" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17443943945247034 0.2221246231391443 C 0.17382539319738582 0.21952728962371879 0.1661931054609755 0.18710041631020738 0.16707088439145626 0.19095662095403823 C 0.1661931054609755 0.18710041631020738 0.1636423596113048 0.17459129628476888 0.16390609228670106 0.17585016741317422" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16390609228670106 0.17585016741317422 C 0.163965876485303 0.17429456099607746 0.16522057859897632 0.15449391173745528 0.1646235026699245 0.15718289040801295 C 0.16522057859897632 0.15449391173745528 0.1716082951657728 0.14244905111302117 0.17107100343532294 0.14358242336648208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17107100343532294 0.14358242336648208 C 0.17193630227988865 0.14297346284529489 0.18330555207620783 0.13546460305158312 0.1814545895701114 0.1362748971122359 C 0.18330555207620783 0.13546460305158312 0.1942682171700108 0.133657561099183 0.1932825535084801 0.1338588946386486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33592841866712053,0.08097462761497573) rotate(0) scale(1,1) translate(-0.1844895011061321,-0.1624381065878798)"><path d="M 0.18603312192143742 0.15610453768020438 C 0.18609174247259583 0.1564527107261676 0.1867267913136392 0.16180523758158216 0.18673656853533832 0.16028261423176302 C 0.1867267913136392 0.16180523758158216 0.1858473974881906 0.17555046818189024 0.18591579526104812 0.1743760178780343" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18591579526104812 0.1743760178780343 C 0.185073443669648 0.17414745527494624 0.17445304105963985 0.17189732697137508 0.17580757616424678 0.1716332666409776 C 0.17445304105963985 0.17189732697137508 0.16914919049255805 0.1780373647762896 0.1696613740057649 0.17754474184280405" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1696613740057649 0.17754474184280405 C 0.16937904267599477 0.17866310135214897 0.16597057437266674 0.19527243436915817 0.16627339804852329 0.19096505595494287 C 0.16597057437266674 0.19527243436915817 0.16600699754939985 0.232422301718258 0.16602748989548627 0.22923328281338762" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16602748989548627 0.22923328281338762 C 0.16562283708507516 0.22655730736715077 0.16081830333085706 0.19304376881467009 0.16117165617055307 0.1971215774585454 C 0.16081830333085706 0.19304376881467009 0.16183855578984932 0.17889774588924545 0.16178725581913422 0.1802995790868839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16178725581913422 0.1802995790868839 C 0.16211059280287826 0.17943509533759675 0.16654342342602693 0.16848693671794124 0.1656672996240627 0.16992577409543808 C 0.16654342342602693 0.16848693671794124 0.17285352826092518 0.16245917692871223 0.172300741442705 0.1630335305569219" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.172300741442705 0.1630335305569219 C 0.1728307092379519 0.16269044981579625 0.17980472002556244 0.15833914559035434 0.17866035498566807 0.15891656166341414 C 0.17980472002556244 0.15833914559035434 0.18664751916608488 0.15587020234827023 0.18603312192143742 0.15610453768020438" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.3120611757558146,0.09345395296040823) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.1815645078312005 0.13009553077729297 C 0.1815711422146644 0.13031479760051687 0.18160769049683437 0.1331395667691748 0.18164412043276718 0.1327267326559797 C 0.18160769049683437 0.1331395667691748 0.18108428428061019 0.1352431074256053 0.18112734860000687 0.1350495401356341" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18112734860000687 0.1350495401356341 C 0.18100524762872125 0.13515191577698013 0.17939952668608533 0.13640920204951512 0.17966213694457928 0.13627804783178638 C 0.17939952668608533 0.13640920204951512 0.17783551621087132 0.13665216932476196 0.17797602549807962 0.13662339074837923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17797602549807962 0.13662339074837923 C 0.17792559141489606 0.1366796259406833 0.17725748860475246 0.13736326845176605 0.177370816499877 0.1372982130560281 C 0.17725748860475246 0.13736326845176605 0.17649469575006435 0.13737191754884484 0.17661609075658521 0.1374040554972345 C 0.17649469575006435 0.13737191754884484 0.17581714199767176 0.13679183772015233 0.17591407642162654 0.13691255767535218 C 0.17581714199767176 0.13679183772015233 0.1754063773283567 0.13577846088733228 0.17545287766912793 0.1359554160348362 C 0.1754063773283567 0.13577846088733228 0.1753724658035416 0.13460332055436716 0.17535607233237185 0.13478909590530497 C 0.1753724658035416 0.13460332055436716 0.17567405990573115 0.13363752981677246 0.17564959932316504 0.13372611182358266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17564959932316504 0.13372611182358266 C 0.17563728530462897 0.133507010533449 0.17552749054511455 0.13067064890042812 0.17550183110073228 0.13109689634197877 C 0.17552749054511455 0.13067064890042812 0.17599548611867064 0.12840399637355795 0.1759575126557523 0.12861114252497494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1759575126557523 0.12861114252497494 C 0.17606996860405505 0.12850399401164694 0.17755882380232865 0.12718079281895464 0.17730698403538525 0.12732536036503894 C 0.17755882380232865 0.12718079281895464 0.17911897367771384 0.12683891293920704 0.1789795898590732 0.12687633197196335" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31033155753855735,0.09679836291608462) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1073573590021495 0.10244365362034957 C 0.10718036483751656 0.10266484016500968 0.10577745292367936 0.10410809404955731 0.10629539401435184 0.10377077288831019 C 0.10577745292367936 0.10410809404955731 0.10387405954175576 0.10412729334480848 0.10424971245811465 0.10446758058783234 C 0.10387405954175576 0.10412729334480848 0.10412816559815866 0.10085628107907538 0.1040414765161985 0.101729049430167 C 0.10412816559815866 0.10085628107907538 0.1047698469498756 0.09923097048128258 0.1047698469498756 0.09923097048128258 C 0.1047698469498756 0.09923097048128258 0.10395478743423833 0.10260181778125863 0.1040414765161985 0.101729049430167 C 0.10395478743423833 0.10260181778125863 0.1040025896700529 0.10502282665519595 0.10424971245811465 0.10446758058783234 C 0.1040025896700529 0.10502282665519595 0.10209219273987173 0.10532997573919078 0.10255873978782792 0.10506052583434866 C 0.10209219273987173 0.10532997573919078 0.1012657119008024 0.10625490571397449 0.10145043017037747 0.10608428001688508" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.30860193932130014,0.10014277287176099) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13941180281649138 0.11514349724109225 C 0.13947348902202242 0.11532053259184022 0.14022921449803832 0.11763105160810873 0.14015203728286374 0.11726792145006783 C 0.14022921449803832 0.11763105160810873 0.14035342040822996 0.11968715394487596 0.14033792939858641 0.11950105913758302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14033792939858641 0.11950105913758302 C 0.1402670113053559 0.1196600043585405 0.1393114826915024 0.12167673007781692 0.13948691227982035 0.12140840178907276 C 0.1393114826915024 0.12167673007781692 0.13812826284368346 0.12283038167029948 0.1382327743387709 0.12272099860251282" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1382327743387709 0.12272099860251282 C 0.1382070694828097 0.12279817059166225 0.13785078575542528 0.12376984167086856 0.13792431606723637 0.1236470624723059 C 0.13785078575542528 0.12376984167086856 0.13724545387772194 0.1242417782094237 0.13735041059703776 0.12419434898526473 C 0.13724545387772194 0.1242417782094237 0.13655657537680688 0.12417558378965772 0.13666483543544655 0.12421621316221347 C 0.13655657537680688 0.12417558378965772 0.13596873469068335 0.12358899515289051 0.1360512898933618 0.12370679651459568 C 0.13596873469068335 0.12358899515289051 0.13563944325647656 0.12263918825063298 0.13567417300330512 0.12280259682175139 C 0.13563944325647656 0.12263918825063298 0.1356312295920953 0.12165783506446008 0.13563453293141914 0.1217458936611748" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13563453293141914 0.1217458936611748 C 0.1355683655348766 0.12157245579457708 0.1347513180623297 0.11929699472923277 0.1348405241729087 0.11966463926200209 C 0.1347513180623297 0.11929699472923277 0.13454102089043468 0.11713995260177143 0.13456405960447115 0.11733415926794302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13456405960447115 0.11733415926794302 C 0.13462606781035888 0.1171771494670704 0.13547155876803738 0.11517719899399911 0.13530815807512384 0.11545004165747168 C 0.13547155876803738 0.11517719899399911 0.13662626040645953 0.11394421444367227 0.13652486791943372 0.11406004730627223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30808459845486624,0.10395860980084175) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10629419270772901 0.10090710993169763 C 0.1062101144681005 0.10119762133787724 0.10546395759908334 0.10324434738418811 0.1057897232699579 0.10265017836877527 C 0.10546395759908334 0.10324434738418811 0.1039528629280179 0.10442000062460148 0.1043395986824816 0.10447212402417469 C 0.1039528629280179 0.10442000062460148 0.10331385357555353 0.10156385421856468 0.10346930874317574 0.102337437971336 C 0.10331385357555353 0.10156385421856468 0.10340686767674832 0.0998306215075467 0.10340686767674832 0.0998306215075467 C 0.10340686767674832 0.0998306215075467 0.10362476391079795 0.10311102172410733 0.10346930874317574 0.102337437971336 C 0.10362476391079795 0.10311102172410733 0.10428559381758513 0.10508124456838903 0.1043395986824816 0.10447212402417469 C 0.10428559381758513 0.10508124456838903 0.10284299019297936 0.10649896387749094 0.1031452795537969 0.10599216123662206 C 0.10284299019297936 0.10649896387749094 0.10242262634487292 0.10776640297484899 0.10252586251757635 0.107512939869388" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.30756725758843245,0.10777444672992256) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13926807979794095 0.11423970666085433 C 0.13936035131687982 0.11435320293039514 0.14052458534497209 0.11586236397069173 0.14037533802520735 0.11560166189534407 C 0.14052458534497209 0.11586236397069173 0.1411160234359436 0.11751533737083306 0.14105904763511773 0.1173681315650262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14105904763511773 0.1173681315650262 C 0.14103947788959476 0.1175414358811276 0.1407460027333605 0.1197718469158355 0.140824210688842 0.11944778335824295 C 0.1407460027333605 0.1197718469158355 0.14006191395938133 0.12140765349762803 0.14012055216933986 0.12125689425613687" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14012055216933986 0.12125689425613687 C 0.1401181275129398 0.12133610366219279 0.14006113675418513 0.12235187798367653 0.14009145629253938 0.12220740712880798 C 0.14006113675418513 0.12235187798367653 0.13968293213071897 0.1230896327024351 0.13975671770908893 0.1229905445145594 C 0.13968293213071897 0.1230896327024351 0.13910854851985147 0.12342362030427846 0.13920602935209983 0.12339646538331638 C 0.13910854851985147 0.12342362030427846 0.13849189154626015 0.12326434908101065 0.13858694772210847 0.12331640356610449 C 0.13849189154626015 0.12326434908101065 0.13799819394802576 0.12265449562828391 0.1380653552419199 0.12277181156219036 C 0.13799819394802576 0.12265449562828391 0.13775731694150053 0.12183667909231351 0.13778101219537894 0.1219086123592271" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13778101219537894 0.1219086123592271 C 0.1376859656520463 0.12180066458366667 0.13648037515203934 0.12035555419059454 0.13664045367538724 0.12061323905250197 C 0.13648037515203934 0.12035555419059454 0.13579503793518902 0.11866665692999101 0.13586006991520427 0.118816394016338" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13586006991520427 0.118816394016338 C 0.13587287689598332 0.11864974904618171 0.1360811304364511 0.11649560803031016 0.13601375368455276 0.11681665437446248 C 0.1360811304364511 0.11649560803031016 0.13672316070910356 0.11480943651251417 0.13666859093798428 0.1149638378865102" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3080584809956308,0.11126493724692237) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10514116260240496 0.10033185349248873 C 0.1051423223375158 0.10062286205433743 0.10502577879916283 0.10276004559186386 0.10514812101307008 0.10207790486358093 C 0.10502577879916283 0.10276004559186386 0.10408107997142158 0.10459965879520322 0.1044071093189615 0.1044246978621863 C 0.10408107997142158 0.10459965879520322 0.1028812631883993 0.10256722742498257 0.10319194492783058 0.10312767046168243 C 0.1028812631883993 0.10256722742498257 0.10254301888237374 0.10106203964198712 0.10254301888237374 0.10106203964198712 C 0.10254301888237374 0.10106203964198712 0.10350262666726187 0.10368811349838229 0.10319194492783058 0.10312767046168243 C 0.10350262666726187 0.10368811349838229 0.10450869596598111 0.10496572659882238 0.1044071093189615 0.1044246978621863 C 0.10450869596598111 0.10496572659882238 0.10367730714411705 0.10696949034355509 0.10380146480994831 0.10637384288149883 C 0.10367730714411705 0.10696949034355509 0.10363894640964479 0.10826937259336139 0.10366216332397386 0.10799858263452389" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3120611757558146,0.09345395296040823) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.18076054027111776 0.15850918993701166 C 0.18054103161452356 0.158765967698479 0.17776395612349696 0.162299840940099 0.17812643639198744 0.16159052307461994 C 0.17776395612349696 0.162299840940099 0.17626780543733572 0.16747354442677218 0.176410777049232 0.16702100432276046" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.176410777049232 0.16702100432276046 C 0.17624856514326084 0.16760928282575677 0.17401974717798938 0.17545431530862177 0.17446423417757811 0.17408034635871608 C 0.17401974717798938 0.17545431530862177 0.17079465796054952 0.18429432216853797 0.1710769330541671 0.1835086317216286" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1710769330541671 0.1835086317216286 C 0.1706656868594825 0.18459261994786597 0.165024257936209 0.19829397302356694 0.16614197871795186 0.19651649043647698 C 0.165024257936209 0.19829397302356694 0.1569578090861947 0.20553191712756058 0.15766428367325294 0.204838422766708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15766428367325294 0.204838422766708 C 0.1581158716463752 0.20397725612769743 0.16373106021946124 0.19243361888833688 0.16308333935071995 0.19450442309858115 C 0.16373106021946124 0.19243361888833688 0.16563306699376748 0.17877913467254286 0.16543693409814844 0.17998877224377657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16543693409814844 0.17998877224377657 C 0.1656155986786675 0.17924684061790142 0.16807748914497925 0.1696750704783181 0.16758090906437717 0.1710855927332746 C 0.16807748914497925 0.1696750704783181 0.17171381056545645 0.16239391455521718 0.17139589506537342 0.16306250518429852" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17139589506537342 0.16306250518429852 C 0.1717160997665752 0.16279440238065382 0.1760187385802736 0.15946582860328826 0.17523835147979488 0.15984527154056216 C 0.1760187385802736 0.15946582860328826 0.18122072267039468 0.15839784980338245 0.18076054027111776 0.15850918993701166" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3120611757558146,0.09345395296040823) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.13187846707040116 0.1187709751303489 C 0.13156626066168722 0.11940637538231455 0.12765037037845384 0.12779876039783392 0.1281319901658339 0.12639577815393674 C 0.12765037037845384 0.12779876039783392 0.12592961624317406 0.13637434404904658 0.1260990296218402 0.13560676205711505" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1260990296218402 0.13560676205711505 C 0.12642791516031504 0.13486880551338326 0.13120222535103224 0.12532614963077407 0.13004565608353844 0.1267512835323334 C 0.13120222535103224 0.12532614963077407 0.1408055445607846 0.11781797788057559 0.13997786083176567 0.11850515523840312" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13997786083176567 0.11850515523840312 C 0.1394374329137318 0.11936172620871507 0.13269115799980669 0.13043845837208773 0.1334927258153595 0.1287840068821466 C 0.13269115799980669 0.13043845837208773 0.1300979071476127 0.13915645363732565 0.1303590470451317 0.1383585731176965" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1303590470451317 0.1383585731176965 C 0.13044853407604923 0.13779713999680637 0.13168438481870276 0.1305688902245879 0.13143289141614176 0.13162137566701476 C 0.13168438481870276 0.1305688902245879 0.13353897424750716 0.12523769548703748 0.13337696787586367 0.12572874780857418" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13337696787586367 0.12572874780857418 C 0.13304936532638129 0.12616950356760415 0.1288015062269405 0.1326066810097038 0.12944573728207495 0.13101781691693382 C 0.1288015062269405 0.1326066810097038 0.1253295667085984 0.14594322525555395 0.12564619521425044 0.14479511692181393" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12564619521425044 0.14479511692181393 C 0.1255782157051529 0.14392573086099508 0.12489068149575386 0.13279501758681594 0.12483044110508013 0.1343624841919878 C 0.12489068149575386 0.13279501758681594 0.1264972998021064 0.12528743711539864 0.12636907990233515 0.12598551765975166" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12636907990233515 0.12598551765975166 C 0.1261102491951259 0.12647879864868494 0.12265397986288155 0.13330588755877798 0.12326311141582405 0.13190488952695115 C 0.12265397986288155 0.13330588755877798 0.11870920042129196 0.14370521108456732 0.11905950126702519 0.14279749404167377" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11905950126702519 0.14279749404167377 C 0.11910090906603545 0.14195611573120923 0.11966373077492355 0.13144184255652344 0.11955639485514824 0.1327009543160992 C 0.11966373077492355 0.13144184255652344 0.12041346042509393 0.12727041947765333 0.12034753230432887 0.12768815292676455" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12034753230432887 0.12768815292676455 C 0.12012374183395859 0.12784086482022222 0.1173872197504899 0.12939568642021382 0.11766204665988537 0.1295206956482566 C 0.1173872197504899 0.12939568642021382 0.11699857295255799 0.12591032106875066 0.11704960939158317 0.12618804219025112" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11704960939158317 0.12618804219025112 C 0.1171793542761692 0.12626134333146266 0.11927266438818535 0.12666521734356892 0.11860654800661556 0.12706765588478958 C 0.11927266438818535 0.12666521734356892 0.1255793774674043 0.12088304001317118 0.12504300597042056 0.12135877969560337" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12504300597042056 0.12135877969560337 C 0.12479308274182392 0.12183907095992279 0.12171571524718827 0.1281135377846303 0.12204392722726089 0.12712227486743646 C 0.12171571524718827 0.1281135377846303 0.12102617345807327 0.13376490635480398 0.12110446220954925 0.13325393470192956" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12110446220954925 0.13325393470192956 C 0.1213832033585151 0.13262629316246066 0.12534718973554385 0.12451532293067094 0.12444935599713952 0.12572223622830267 C 0.12534718973554385 0.12451532293067094 0.13249755965983961 0.11819170337218608 0.13187846707040116 0.1187709751303489" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35856436932388636,0.09407867593025118) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.15070912187331661 0.1338588946386486 C 0.15169478553484733 0.13406022817811422 0.16438804831778178 0.13708519117288867 0.16253708581168536 0.1362748971122359 C 0.16438804831778178 0.13708519117288867 0.17378597079103944 0.14419138388766928 0.17292067194647373 0.14358242336648208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17292067194647373 0.14358242336648208 C 0.1734579636769236 0.144715795619943 0.17996524864092392 0.15987186907857062 0.1793681727118721 0.15718289040801295 C 0.17996524864092392 0.15987186907857062 0.18014536729369754 0.17740577383027098 0.1800855830950956 0.17585016741317422" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1800855830950956 0.17585016741317422 C 0.17982185041969934 0.17710903854157956 0.17604301205985967 0.19481282559786908 0.17692079099034044 0.19095662095403823 C 0.17604301205985967 0.19481282559786908 0.1689381896742417 0.22472195665456982 0.16955223592932622 0.2221246231391443" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16955223592932622 0.2221246231391443 C 0.16965826044737695 0.22104543714942324 0.17110286803766575 0.2060391528246285 0.17082453014593502 0.20917439126249165 C 0.17110286803766575 0.2060391528246285 0.17306460400377488 0.1824457094366443 0.1728922906300949 0.1845017618847864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1728922906300949 0.1845017618847864 C 0.1726489222331824 0.18290855223252206 0.169178140993783 0.1626162638176642 0.1699718698671449 0.16538324605761423 C 0.169178140993783 0.1626162638176642 0.1628171836733026 0.1501242024177003 0.16336754414975202 0.151297975005386" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16336754414975202 0.151297975005386 C 0.16227778325162104 0.15018414418950082 0.14923554484914395 0.13647874851753564 0.15029041337218024 0.13793200521476376 C 0.14923554484914395 0.13647874851753564 0.1507440142484113 0.1335194687573057 0.15070912187331661 0.1338588946386486" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3387584869902209,0.08097462761497573) rotate(0) scale(1,1) translate(-0.1626884528566317,-0.1624381065878798)"><path d="M 0.16114483204132626 0.15610453768020438 C 0.16175922928597372 0.15633887301213853 0.16966196401699002 0.15949397773647395 0.16851759897709565 0.15891656166341414 C 0.16966196401699002 0.15949397773647395 0.17540718031530558 0.16337661129804756 0.17487721252005867 0.1630335305569219" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17487721252005867 0.1630335305569219 C 0.17542999933827885 0.16360788418513159 0.1823867781406652 0.1713646114729349 0.18151065433870098 0.16992577409543808 C 0.1823867781406652 0.1713646114729349 0.18571403512737353 0.18116406283617106 0.1853906981436295 0.1802995790868839" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1853906981436295 0.1802995790868839 C 0.1854419981143446 0.18170141228452236 0.1856529449525147 0.2011993861024207 0.1860062977922107 0.1971215774585454 C 0.1856529449525147 0.2011993861024207 0.18074581125686626 0.23190925825962447 0.18115046406727736 0.22923328281338762" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18115046406727736 0.22923328281338762 C 0.18112997172119094 0.22604426390851723 0.18060173223838383 0.18665767754072757 0.18090455591424037 0.19096505595494287 C 0.18060173223838383 0.18665767754072757 0.17723424862722872 0.17642638233345914 0.17751657995699885 0.17754474184280405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17751657995699885 0.17754474184280405 C 0.177004396443792 0.17705211890931852 0.17001584269390996 0.17136920631058014 0.17137037779851688 0.1716332666409776 C 0.17001584269390996 0.17136920631058014 0.16041980711031564 0.17460458048112237 0.16126215870171573 0.1743760178780343" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16126215870171573 0.1743760178780343 C 0.1611937609288582 0.17320156757417837 0.16043160820572624 0.15875999088194387 0.16044138542742536 0.16028261423176302 C 0.16043160820572624 0.15875999088194387 0.16120345259248467 0.15575636463424117 0.16114483204132626 0.15610453768020438" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.3626257299015264,0.09345395296040823) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18156450783120046 0.12687633197196335 C 0.18170389164984113 0.12691375100471966 0.18348895342183183 0.12746992791112327 0.18323711365488843 0.12732536036503897 C 0.18348895342183183 0.12746992791112327 0.1846990409828241 0.12871829103830293 0.18458658503452136 0.12861114252497494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18458658503452136 0.12861114252497494 C 0.1846245584974397 0.12881828867639192 0.18506792603392358 0.13152314378352942 0.18504226658954132 0.13109689634197877 C 0.18506792603392358 0.13152314378352942 0.18488218434857248 0.13394521311371632 0.18489449836710856 0.13372611182358266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18489449836710856 0.13372611182358266 C 0.18491895894967467 0.13381469383039285 0.18520441882907154 0.13497487125624277 0.18518802535790177 0.13478909590530497 C 0.18520441882907154 0.13497487125624277 0.18504471968037448 0.13613237118234014 0.1850912200211457 0.1359554160348362 C 0.18504471968037448 0.13613237118234014 0.18453308684469238 0.13703327763055204 0.18463002126864717 0.13691255767535218 C 0.18453308684469238 0.13703327763055204 0.18380661192716755 0.13743619344562416 0.1839280069336884 0.1374040554972345 C 0.18380661192716755 0.13743619344562416 0.18305995329527214 0.13723315766029015 0.18317328119039666 0.1372982130560281 C 0.18305995329527214 0.13723315766029015 0.18251763810901045 0.13656715555607518 0.182568072192194 0.13662339074837926" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.182568072192194 0.13662339074837926 C 0.1824275629049857 0.13659461217199653 0.1806193504872004 0.1361468936140576 0.18088196074569435 0.13627804783178638 C 0.1806193504872004 0.1361468936140576 0.1792946481189811 0.1349471644942881 0.17941674909026673 0.1350495401356341" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17941674909026673 0.1350495401356341 C 0.17937368477087004 0.13485597284566292 0.17886354732157364 0.1323138985427846 0.17889997725750645 0.1327267326559797 C 0.17886354732157364 0.1323138985427846 0.17898622424253702 0.12987626395406907 0.17897958985907314 0.13009553077729297" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3643553481187837,0.09679836291608462) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10722407658093397 0.10608428001688508 C 0.10703935831135888 0.10591365431979567 0.1056492199155273 0.10479107592950654 0.10611576696348349 0.10506052583434866 C 0.1056492199155273 0.10479107592950654 0.10417767150513504 0.10391233452046873 0.1044247942931968 0.10446758058783234 C 0.10417767150513504 0.10391233452046873 0.10454634115315276 0.10085628107907538 0.10463303023511292 0.101729049430167 C 0.10454634115315276 0.10085628107907538 0.10390465980143584 0.09923097048128258 0.10390465980143584 0.09923097048128258 C 0.10390465980143584 0.09923097048128258 0.10471971931707308 0.10260181778125863 0.10463303023511292 0.101729049430167 C 0.10471971931707308 0.10260181778125863 0.1040491413768379 0.1048078678308562 0.1044247942931968 0.10446758058783234 C 0.1040491413768379 0.1048078678308562 0.10186117164628711 0.10343345172706304 0.10237911273695958 0.10377077288831017 C 0.10186117164628711 0.10343345172706304 0.10114015358452902 0.10222246707568947 0.10131714774916195 0.10244365362034957" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.36608496633604093,0.10014277287176099) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1394118028164915 0.11406004730627221 C 0.1395131953035173 0.11417588016887217 0.14079191335371496 0.11572288432094423 0.14062851266080142 0.11545004165747166 C 0.14079191335371496 0.11572288432094423 0.14143461933734178 0.11749116906881564 0.14137261113145405 0.11733415926794302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14137261113145405 0.11733415926794302 C 0.14134957241741758 0.11752836593411461 0.1410069404524375 0.1200322837947714 0.1410961465630165 0.11966463926200209 C 0.1410069404524375 0.1200322837947714 0.1402359704079636 0.12191933152777253 0.14030213780450612 0.1217458936611748" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14030213780450612 0.1217458936611748 C 0.1402988344651823 0.12183395225788952 0.14022776798579162 0.1229660053928698 0.14026249773262017 0.12280259682175139 C 0.14022776798579162 0.1229660053928698 0.13980282563988497 0.12382459787630085 0.1398853808425634 0.12370679651459567 C 0.13980282563988497 0.12382459787630085 0.1391635752418391 0.12425684253476922 0.13927183530047874 0.12421621316221347 C 0.1391635752418391 0.12425684253476922 0.13848130341957168 0.12414691976110576 0.1385862601388875 0.12419434898526473 C 0.13848130341957168 0.12414691976110576 0.1379388243568777 0.12352428327374324 0.1380123546686888 0.12364706247230589 C 0.1379388243568777 0.12352428327374324 0.13767819154119312 0.12264382661336337 0.13770389639715433 0.1227209986025128" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13770389639715433 0.1227209986025128 C 0.13759938490206688 0.12261161553472613 0.13627432886778698 0.12114007350032861 0.13644975845610494 0.12140840178907276 C 0.13627432886778698 0.12114007350032861 0.13552782324410836 0.11934211391662554 0.13559874133733887 0.11950105913758302" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13559874133733887 0.11950105913758302 C 0.13561423234698244 0.11931496433029008 0.13586181066823613 0.11690479129202692 0.13578463345306155 0.11726792145006783 C 0.13586181066823613 0.11690479129202692 0.13658655412496484 0.11496646189034429 0.13652486791943383 0.11514349724109225" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3666023072024748,0.10395860980084175) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1061486442337351 0.107512939869388 C 0.10604540806103167 0.107259476763927 0.105226937836697 0.10548535859575317 0.10552922719751454 0.10599216123662206 C 0.105226937836697 0.10548535859575317 0.10428090320393336 0.10386300347996033 0.10433490806882983 0.10447212402417468 C 0.10428090320393336 0.10386300347996033 0.10536065317575793 0.10156385421856468 0.10520519800813571 0.102337437971336 C 0.10536065317575793 0.10156385421856468 0.10526763907456313 0.0998306215075467 0.10526763907456313 0.0998306215075467 C 0.10526763907456313 0.0998306215075467 0.1050497428405135 0.10311102172410733 0.10520519800813571 0.102337437971336 C 0.1050497428405135 0.10311102172410733 0.10394817231436614 0.10452424742374788 0.10433490806882983 0.10447212402417468 C 0.10394817231436614 0.10452424742374788 0.10255901781047899 0.10205600935336243 0.10288478348135355 0.10265017836877527 C 0.10255901781047899 0.10205600935336243 0.10229623580395396 0.10061659852551802 0.10238031404358247 0.10090710993169763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3671196480689085,0.10777444672992256) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139268079797941 0.11496383788651018 C 0.1393226495690603 0.11511823926050621 0.13999029380327077 0.1171377007186148 0.13992291705137244 0.11681665437446248 C 0.13999029380327077 0.1171377007186148 0.14008940780149998 0.11898303898649429 0.14007660082072093 0.11881639401633799" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14007660082072093 0.11881639401633799 C 0.14001156884070567 0.11896613110268499 0.13913613853719012 0.1208709239144094 0.139296217060538 0.12061323905250197 C 0.13913613853719012 0.1208709239144094 0.1380606119972137 0.12201656013478754 0.13815565854054634 0.1219086123592271" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13815565854054634 0.1219086123592271 C 0.13813196328666794 0.1219805456261407 0.13780415420011116 0.1228891274960968 0.1378713154940053 0.12277181156219036 C 0.13780415420011116 0.1228891274960968 0.13725466683796841 0.12336845805119832 0.13734972301381673 0.12331640356610449 C 0.13725466683796841 0.12336845805119832 0.13663316055157707 0.12336931046235428 0.13673064138382543 0.12339646538331638 C 0.13663316055157707 0.12336931046235428 0.13610616744846632 0.12289145632668368 0.13617995302683628 0.12299054451455937 C 0.13610616744846632 0.12289145632668368 0.13581489490503162 0.12206293627393942 0.13584521444338588 0.12220740712880797 C 0.13581489490503162 0.12206293627393942 0.1358136939101853 0.12117768485008094 0.13581611856658535 0.12125689425613687" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13581611856658535 0.12125689425613687 C 0.13575748035662685 0.1211061350146457 0.1350342520916018 0.1191237198006504 0.1351124600470833 0.11944778335824295 C 0.1350342520916018 0.1191237198006504 0.13485805335528456 0.11719482724892481 0.13487762310080753 0.1173681315650262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13487762310080753 0.1173681315650262 C 0.1349345989016334 0.11722092575921936 0.1357105800304826 0.11534095981999641 0.13556133271071788 0.11560166189534407 C 0.1357105800304826 0.11534095981999641 0.1367608624569232 0.11412621039131352 0.13666859093798434 0.11423970666085433" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3666284246617101,0.11126493724692235) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10501234342733756 0.10799858263452389 C 0.10498912651300848 0.10772779267568638 0.10474888427553188 0.10577819541944257 0.10487304194136314 0.10637384288149883 C 0.10474888427553188 0.10577819541944257 0.10436898407936958 0.10388366912555023 0.10426739743234996 0.1044246978621863 C 0.10436898407936958 0.10388366912555023 0.10579324356291213 0.10256722742498256 0.10548256182348084 0.10312767046168242 C 0.10579324356291213 0.10256722742498256 0.1061314878689377 0.10106203964198712 0.1061314878689377 0.10106203964198712 C 0.1061314878689377 0.10106203964198712 0.10517188008404955 0.10368811349838228 0.10548256182348084 0.10312767046168242 C 0.10517188008404955 0.10368811349838228 0.10394136808481004 0.10424973692916939 0.10426739743234996 0.1044246978621863 C 0.10394136808481004 0.10424973692916939 0.10340404352433408 0.10139576413529798 0.10352638573824133 0.10207790486358091 C 0.10340404352433408 0.10139576413529798 0.10353450388401733 0.10004084493064001 0.10353334414890647 0.10033185349248872" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3626257299015264,0.09345395296040823) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.16097093293009698 0.15850918993701166 C 0.16143111532937388 0.15862053007064086 0.16727350882189854 0.16022471447783607 0.16649312172141983 0.15984527154056216 C 0.16727350882189854 0.16022471447783607 0.1706557828370431 0.16333060798794322 0.17033557813584133 0.16306250518429852" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17033557813584133 0.16306250518429852 C 0.17065349363592436 0.16373109581337986 0.17464714421743963 0.1724961149882311 0.17415056413683755 0.1710855927332746 C 0.17464714421743963 0.1724961149882311 0.17647320368358535 0.18073070386965173 0.17629453910306628 0.17998877224377657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17629453910306628 0.17998877224377657 C 0.17649067199868532 0.1811984098150103 0.179295854719236 0.19657522730882543 0.17864813385049472 0.19450442309858115 C 0.179295854719236 0.19657522730882543 0.18451877750108409 0.20569958940571856 0.18406718952796183 0.204838422766708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18406718952796183 0.204838422766708 C 0.18336071494090359 0.2041449284058554 0.17447177370151998 0.19473900784938702 0.17558949448326283 0.19651649043647698 C 0.17447177370151998 0.19473900784938702 0.17024329395236307 0.18242464349539123 0.17065454014704767 0.1835086317216286" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17065454014704767 0.1835086317216286 C 0.1703722650534301 0.18272294127471922 0.16682275202404784 0.1727063774088104 0.16726723902363658 0.17408034635871608 C 0.16682275202404784 0.1727063774088104 0.16515848424601154 0.16643272581976415 0.1653206961519827 0.16702100432276046" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1653206961519827 0.16702100432276046 C 0.16517772454008642 0.16656846421874874 0.1632425565407368 0.16088120520914087 0.16360503680922728 0.16159052307461994 C 0.1632425565407368 0.16088120520914087 0.16075142427350278 0.1582524121755443 0.16097093293009698 0.15850918993701166" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3626257299015264,0.09345395296040823) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.10635631964440624 0.1187709751303489 C 0.1069754122338447 0.11935024688851172 0.1146832644560721 0.1269291495259344 0.1137854307176678 0.12572223622830267 C 0.1146832644560721 0.1269291495259344 0.11740906565422389 0.13388157624139846 0.11713032450525804 0.13325393470192956" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11713032450525804 0.13325393470192956 C 0.11705203575378206 0.13274296304905514 0.11586264750747378 0.12613101195024262 0.11619085948754639 0.12712227486743646 C 0.11586264750747378 0.12613101195024262 0.11294185751579011 0.12087848843128395 0.11319178074438675 0.12135877969560337" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11319178074438675 0.12135877969560337 C 0.1137281522413705 0.12183451937803555 0.12029435508976154 0.12747009442601023 0.11962823870819175 0.12706765588478958 C 0.12029435508976154 0.12747009442601023 0.12131492220781016 0.12611474104903958 0.12118517732322413 0.12618804219025112" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12118517732322413 0.12618804219025112 C 0.12113414088419895 0.12646576331175158 0.12029791314552649 0.1296457048762994 0.12057274005492197 0.1295206956482566 C 0.12029791314552649 0.1296457048762994 0.11766346394010808 0.12753544103330688 0.11788725441047838 0.12768815292676455" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11788725441047838 0.12768815292676455 C 0.11795318253124344 0.12810588637587578 0.11878572777943439 0.13396006607567498 0.11867839185965907 0.1327009543160992 C 0.11878572777943439 0.13396006607567498 0.11921669324679236 0.14363887235213832 0.11917528544778211 0.14279749404167377" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11917528544778211 0.14279749404167377 C 0.11882498460204888 0.14188977699878022 0.1143625437460408 0.1305038914951243 0.11497167529898329 0.13190488952695115 C 0.1143625437460408 0.1305038914951243 0.11160687610526285 0.12549223667081838 0.11186570681247211 0.12598551765975166" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11186570681247211 0.12598551765975166 C 0.11199392671224337 0.12668359820410469 0.11346458600040088 0.13592995079715964 0.11340434560972715 0.1343624841919878 C 0.11346458600040088 0.13592995079715964 0.11252061199145934 0.14566450298263278 0.11258859150055686 0.14479511692181393" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11258859150055686 0.14479511692181393 C 0.11227196299490481 0.14364700858807392 0.10814481837759793 0.12942895282416383 0.10878904943273236 0.13101781691693382 C 0.10814481837759793 0.12942895282416383 0.10453021628946119 0.12528799204954422 0.10485781883894359 0.12572874780857418" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10485781883894359 0.12572874780857418 C 0.10501982521058707 0.1262198001301109 0.10705338870122648 0.13267386110944163 0.10680189529866548 0.13162137566701476 C 0.10705338870122648 0.13267386110944163 0.1079652267005931 0.13892000623858664 0.10787573966967559 0.1383585731176965" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10787573966967559 0.1383585731176965 C 0.10761459977215661 0.13756069259806736 0.1039404930838949 0.1271295553922055 0.10474206089944774 0.1287840068821466 C 0.1039404930838949 0.1271295553922055 0.09771649796500775 0.11764858426809116 0.0982569258830416 0.11850515523840312" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0982569258830416 0.11850515523840312 C 0.09908460961206053 0.11919233259623065 0.10934569989876265 0.12817641743389271 0.10818913063126885 0.1267512835323334 C 0.10934569989876265 0.12817641743389271 0.11246464263144208 0.13634471860084685 0.11213575709296722 0.13560676205711505" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11213575709296722 0.13560676205711505 C 0.11196634371430107 0.13483918006518353 0.10962117676159334 0.12499279591003956 0.11010279654897343 0.12639577815393674 C 0.10962117676159334 0.12499279591003956 0.10604411323569231 0.11813557487838325 0.10635631964440624 0.1187709751303489" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3346360589302117,0.09478518652580295) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.16277501342526757 0.16131063530584727 C 0.16297717899268538 0.16132475194500823 0.1656549146079955 0.1616909153507327 0.16520100023428136 0.1614800349757787 C 0.1656549146079955 0.1616909153507327 0.16847373471613353 0.16403796354108838 0.1682219859098372 0.16384119980529532" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1682219859098372 0.16384119980529532 C 0.16841441906190044 0.1639499785816137 0.1708904062149409 0.16540987067522744 0.1705311837345961 0.16514654512111598 C 0.1708904062149409 0.16540987067522744 0.1726994450022561 0.16715565323242582 0.17253265567397455 0.16700110645463276" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17253265567397455 0.16700110645463276 C 0.17252803119001373 0.1671720040228453 0.17237319487087055 0.16942698596441116 0.17247716186644457 0.16905187727318308 C 0.17237319487087055 0.16942698596441116 0.17118570921547294 0.17170662187238522 0.17128505172708614 0.17150241074936967" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17128505172708614 0.17150241074936967 C 0.17097653843280214 0.17145702959308565 0.16700079236800666 0.17087460289183676 0.1675828921956781 0.17095783687396152 C 0.16700079236800666 0.17087460289183676 0.16402626726164166 0.17046575013803184 0.16429985379502907 0.17050360296387257" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16429985379502907 0.17050360296387257 C 0.16411765555753333 0.17039179994347772 0.1618458260073073 0.1688815822546751 0.16211347494508008 0.1691619667191344 C 0.1618458260073073 0.1688815822546751 0.16100261584147874 0.16697040794629642 0.16108806654175575 0.16713898939036087" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16108806654175575 0.16713898939036087 C 0.1610763871112076 0.1668857749545227 0.16108849228213698 0.16361471998659324 0.16094791337517766 0.16410041616030271 C 0.16108849228213698 0.16361471998659324 0.16292727176277505 0.16107815356797597 0.16277501342526757 0.16131063530584727" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33696230500515867,0.09440563057005821) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.16796570132539343 0.1570309930727952 C 0.16806307736087378 0.15732077124438362 0.16931850822622646 0.16101344821245603 0.16913421375115778 0.16050833113185628 C 0.16931850822622646 0.16101344821245603 0.17026415346580584 0.16330773694900338 0.17017723502621754 0.16309239803999206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17017723502621754 0.16309239803999206 C 0.17028260528286487 0.16329220402182876 0.1716570015571414 0.16585358291010413 0.1714416781059857 0.16549006982203243 C 0.1716570015571414 0.16585358291010413 0.17287106963459417 0.1676182622030873 0.17276111644008582 0.1674545550968523" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17276111644008582 0.1674545550968523 C 0.1728441535130443 0.16767672553972826 0.17379825332173104 0.17051915328875733 0.17375756131558773 0.17012060041136376 C 0.17379825332173104 0.17051915328875733 0.17320707544699063 0.17241357206009275 0.1732494205138058 0.17223718962557513" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1732494205138058 0.17223718962557513 C 0.17299863585325148 0.1720965467776704 0.16971361926562076 0.17029267120828281 0.17024000458715405 0.17054947545071805 C 0.16971361926562076 0.17029267120828281 0.1666571959944272 0.16903937732182173 0.16693279665540617 0.16915553871635222" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16693279665540617 0.16915553871635222 C 0.1667814349656278 0.16906266051970395 0.16481084103796287 0.16776272388281224 0.16511645637806568 0.16804100035657285 C 0.16481084103796287 0.16776272388281224 0.16311115892384806 0.1656308227541127 0.16326541257417249 0.165816221031225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16326541257417249 0.165816221031225 C 0.16325613197164338 0.16543037283290862 0.16354573607309164 0.16045394032155924 0.16315404534382322 0.16118604265142839 C 0.16354573607309164 0.16045394032155924 0.16836667265719094 0.15668473894124244 0.16796570132539343 0.1570309930727952" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3259874226857207,0.08890006480920426) rotate(0) scale(1,1) translate(-0.18077772561044797,-0.15906515328191137)"><path d="M 0.18329715958685777 0.15369717967131485 C 0.1831949396728612 0.15419002075628693 0.18195574775299886 0.16038204387776153 0.18207052061889914 0.15961127269097972 C 0.18195574775299886 0.16038204387776153 0.18190733224415062 0.16322436401450635 0.18191988519605434 0.16294643391269661" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18191988519605434 0.16294643391269661 C 0.1816068055129301 0.1634537772314641 0.17760720079596168 0.17014644282519545 0.17816292899856345 0.16903455373790646 C 0.17760720079596168 0.17014644282519545 0.17500849824535544 0.176893648728686 0.17525114676483297 0.17628910296016448" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17525114676483297 0.17628910296016448 C 0.17503908919541936 0.17714905112962784 0.1723631168942926 0.18850793793146314 0.17270645593186948 0.1866084809937248 C 0.1723631168942926 0.18850793793146314 0.17099979684574718 0.20012209498129963 0.17113107831391042 0.19908258621302463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17113107831391042 0.19908258621302463 C 0.1711202037987118 0.19795500503701405 0.17099460636300634 0.18368227252458888 0.17100058413152694 0.18555161210089763 C 0.17099460636300634 0.18368227252458888 0.17106424183834126 0.1759087528970215 0.17105934509166323 0.17665051129731965" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17105934509166323 0.17665051129731965 C 0.17113582940637057 0.1761206086770811 0.17214353351979067 0.16926210729283686 0.17197715686815132 0.17029167985445712 C 0.17214353351979067 0.16926210729283686 0.17314575724826758 0.16379597061649495 0.17305586491133557 0.16429564055787665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17305586491133557 0.16429564055787665 C 0.17326845693598503 0.16391647840131976 0.1764604104300893 0.15886248960531363 0.17560696920712912 0.15974569467919378 C 0.1764604104300893 0.15886248960531363 0.1839380087851685 0.1531931367539916 0.18329715958685777 0.15369717967131485" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3303367153832745,0.08679763593017767) rotate(0) scale(1,1) translate(-0.17559229873566568,-0.1581321562364564)"><path d="M 0.17798254197164506 0.1520638004581732 C 0.1780100072801252 0.15236166168166462 0.17829298196394047 0.15634592754457627 0.17831212567340665 0.15563813514007038 C 0.17829298196394047 0.15634592754457627 0.17770620844010457 0.16096724049325842 0.17775281745805088 0.16055730931224396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17775281745805088 0.16055730931224396 C 0.1774517216669352 0.1611481192304833 0.17364116804781551 0.1686127496027647 0.17413966796466288 0.167647028331116 C 0.17364116804781551 0.1686127496027647 0.17157341433015083 0.17252087592543777 0.17177081845588252 0.1721459645720284" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17177081845588252 0.1721459645720284 C 0.1715543230990318 0.17274023064377847 0.16877769347596874 0.18054040598024193 0.16917287417367374 0.17927715743302927 C 0.16877769347596874 0.18054040598024193 0.1668499647425681 0.18797392961404294 0.16702865008342238 0.18730494713858034" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16702865008342238 0.18730494713858034 C 0.16701009710869916 0.1865801068558105 0.16680641158442602 0.17726333391928378 0.16680601438674358 0.17860686374534213 C 0.16680641158442602 0.17726333391928378 0.16705236662801742 0.17056389968259167 0.16703341645561173 0.17118258922588017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16703341645561173 0.17118258922588017 C 0.16714624421530866 0.17054698255604367 0.1686080405686894 0.16261596225714087 0.1683873495719749 0.16355530918784214 C 0.1686080405686894 0.16261596225714087 0.16978957165320308 0.15960668579660003 0.16968170841618552 0.1599104260574648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16968170841618552 0.1599104260574648 C 0.16993957330519283 0.15955539287868747 0.17346782321389484 0.1549961424455292 0.17277608708427322 0.15565002791213683 C 0.17346782321389484 0.1549961424455292 0.17841641321225937 0.1517649481703429 0.17798254197164506 0.1520638004581732" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34005084672712993,0.09478518652580295) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.18072782674225377 0.16131063530584727 C 0.18088008507976128 0.16154311704371857 0.18269550569930304 0.16458611233401219 0.18255492679234372 0.16410041616030271 C 0.18269550569930304 0.16458611233401219 0.18240309419521752 0.16739220382619904 0.1824147736257657 0.16713898939036087" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1824147736257657 0.16713898939036087 C 0.18232932292548865 0.16730757083442532 0.18112171628466847 0.1694423511835937 0.18138936522244126 0.1691619667191344 C 0.18112171628466847 0.1694423511835937 0.1790207881349966 0.17061540598426742 0.17920298637249235 0.17050360296387257" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17920298637249235 0.17050360296387257 C 0.1789293998391049 0.1705414557897133 0.17533784814417175 0.17104107085608627 0.17591994797184318 0.17095783687396152 C 0.17533784814417175 0.17104107085608627 0.17190927514615123 0.1715477919056537 0.17221778844043523 0.17150241074936967" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17221778844043523 0.17150241074936967 C 0.17211844592882203 0.17129819962635412 0.17092171130550285 0.168676768581955 0.17102567830107687 0.16905187727318308 C 0.17092171130550285 0.168676768581955 0.17096556000958604 0.16683020888642022 0.17097018449354687 0.16700110645463276" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17097018449354687 0.16700110645463276 C 0.1711369738218284 0.1668465596768397 0.17333087891327004 0.16488321956700452 0.17297165643292528 0.16514654512111598 C 0.17333087891327004 0.16488321956700452 0.17547328740974735 0.16373242102897695 0.1752808542576841 0.16384119980529532" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1752808542576841 0.16384119980529532 C 0.17553260306398044 0.16364443606950227 0.17875575430695412 0.1612691546008247 0.17830183993323998 0.1614800349757787 C 0.17875575430695412 0.1612691546008247 0.18092999230967158 0.16129651866668632 0.18072782674225377 0.16131063530584727" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3377246006521828,0.09440563057005821) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.17795396905571517 0.1570309930727952 C 0.1783549403875127 0.15737724720434795 0.18315731576655386 0.1619181449812975 0.18276562503728544 0.16118604265142836 C 0.18315731576655386 0.1619181449812975 0.182644977204407 0.1662020692295414 0.18265425780693612 0.165816221031225" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18265425780693612 0.165816221031225 C 0.1825000041566117 0.16600161930833732 0.18049759866294016 0.16831927683033343 0.18080321400304297 0.16804100035657282 C 0.18049759866294016 0.16831927683033343 0.17883551203592404 0.1692484169130005 0.17898687372570243 0.16915553871635222" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17898687372570243 0.16915553871635222 C 0.17871127306472345 0.16927170011088272 0.1751532804724213 0.1708062796931533 0.1756796657939546 0.17054947545071805 C 0.1751532804724213 0.1708062796931533 0.17241946520674845 0.17237783247347988 0.17267024986730276 0.17223718962557513" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17267024986730276 0.17223718962557513 C 0.1726279048004876 0.1720608071910575 0.17220280107166422 0.1697220475339702 0.17216210906552087 0.17012060041136376 C 0.17220280107166422 0.1697220475339702 0.17324159101398126 0.16723238465397633 0.17315855394102278 0.16745455509685228" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17315855394102278 0.16745455509685228 C 0.17326850713553113 0.1672908479906173 0.17469331572627864 0.1651265567339607 0.17447799227512295 0.1654900698220324 C 0.17469331572627864 0.1651265567339607 0.17584780561153845 0.16289259205815537 0.17574243535489112 0.16309239803999206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17574243535489112 0.16309239803999206 C 0.17582935379447942 0.16287705913098074 0.1769697511050195 0.16000321405125653 0.17678545662995082 0.16050833113185628 C 0.1769697511050195 0.16000321405125653 0.17805134509119552 0.15674121490120677 0.17795396905571517 0.1570309930727952" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.348699482971621,0.08890006480920426) rotate(0) scale(1,1) translate(-0.18077772561044797,-0.15906515328191137)"><path d="M 0.17825829163403795 0.15369717967131485 C 0.17889914083234867 0.1542012225886381 0.18680192323672692 0.16062889975307393 0.18594848201376674 0.15974569467919378 C 0.18680192323672692 0.16062889975307393 0.1887121783342097 0.16467480271443355 0.18849958630956024 0.16429564055787665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18849958630956024 0.16429564055787665 C 0.18858947864649225 0.16479531049925836 0.18974467100438383 0.17132125241607737 0.18957829435274448 0.17029167985445712 C 0.18974467100438383 0.17132125241607737 0.1905725904439399 0.1771804139175582 0.19049610612923257 0.17665051129731965" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19049610612923257 0.17665051129731965 C 0.1905010028759106 0.17739226969761782 0.19054888932084824 0.18742095167720638 0.19055486708936883 0.18555161210089763 C 0.19054888932084824 0.18742095167720638 0.19041349839178684 0.20021016738903522 0.19042437290698547 0.19908258621302463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19042437290698547 0.19908258621302463 C 0.1902930914388222 0.19804307744474964 0.18850565625144935 0.18470902405598644 0.18884899528902624 0.1866084809937248 C 0.18850565625144935 0.18470902405598644 0.18609224688664927 0.17542915479070112 0.18630430445606289 0.17628910296016448" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18630430445606289 0.17628910296016448 C 0.18606165593658533 0.17568455719164297 0.18283679401973055 0.16792266465061748 0.18339252222233232 0.16903455373790646 C 0.18283679401973055 0.16792266465061748 0.17932248634171727 0.16243909059392914 0.17963556602484151 0.16294643391269661" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17963556602484151 0.16294643391269661 C 0.17962301307293776 0.16266850381088688 0.17937015773609633 0.1588405015041979 0.17948493060199663 0.15961127269097972 C 0.17937015773609633 0.1588405015041979 0.1781560717200414 0.15320433858634278 0.17825829163403795 0.15369717967131485" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3443501902740671,0.08679763593017767) rotate(0) scale(1,1) translate(-0.17559229873566568,-0.1581321562364564)"><path d="M 0.17320205549968634 0.1520638004581732 C 0.17363592674030068 0.1523626527460035 0.17910024651667986 0.15630391337874447 0.17840851038705824 0.15565002791213683 C 0.17910024651667986 0.15630391337874447 0.1817607539441532 0.1602654592362422 0.1815028890551459 0.15991042605746486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1815028890551459 0.15991042605746486 C 0.18161075229216345 0.16021416631832963 0.183017938896071 0.16449465611854341 0.1827972478993565 0.16355530918784214 C 0.183017938896071 0.16449465611854341 0.18426400877541652 0.17181819589571667 0.1841511810157196 0.17118258922588017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1841511810157196 0.17118258922588017 C 0.18417013118812528 0.17180127876916867 0.18437898028227032 0.17995039357140047 0.18437858308458785 0.17860686374534213 C 0.18437898028227032 0.17995039357140047 0.18413739441318583 0.18802978742135024 0.18415594738790905 0.18730494713858037" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18415594738790905 0.18730494713858037 C 0.18397726204705478 0.18663596466311777 0.18161654259995275 0.1780139088858166 0.18201172329765775 0.17927715743302927 C 0.18161654259995275 0.1780139088858166 0.1791972836585982 0.17155169850027835 0.17941377901544892 0.1721459645720284" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17941377901544892 0.1721459645720284 C 0.17921637488971723 0.17177105321861905 0.17654642958982122 0.1666813070594673 0.17704492950666859 0.167647028331116 C 0.17654642958982122 0.1666813070594673 0.17313068422216493 0.15996649939400462 0.1734317800132806 0.16055730931224396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1734317800132806 0.16055730931224396 C 0.1733851709953343 0.1601473781312295 0.1728533280884586 0.15493034273556447 0.17287247179792478 0.15563813514007035 C 0.1728533280884586 0.15493034273556447 0.17322952080816648 0.15176593923468176 0.17320205549968634 0.1520638004581732" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 60 KiB

View File

@@ -0,0 +1,182 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.17670302130178797 C 0.18221854822446001 0.17670302130178797 0.1789494362343192 0.16974461538933988 0.178586201568748 0.1702798773826051 C 0.1789494362343192 0.16974461538933988 0.18766706820802817 0.17081513937587034 0.18730383354245697 0.1702798773826051 C 0.18766706820802817 0.17081513937587034 0.18221854822446001 0.17670302130178797 0.18294501755560244 0.17670302130178797 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31299779566216324,0.09020065007890932) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.1805327025369448 0.1433623737461227 C 0.18018429818193202 0.14415955132604946 0.17583746294248281 0.15467187358287673 0.1763518502767913 0.1529285047052438 C 0.17583746294248281 0.15467187358287673 0.17419407154594754 0.1652289915754241 0.17436005452524322 0.1642828002777179" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17436005452524322 0.1642828002777179 C 0.17435287818659045 0.1654019093930841 0.17422591617848102 0.17992693493974016 0.17427393846141012 0.1777121096621124 C 0.17422591617848102 0.17992693493974016 0.1737429411858177 0.1919564197715124 0.17378378713009404 0.19086070360925086" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17378378713009404 0.19086070360925086 C 0.17379090590942248 0.19200767003883049 0.17416826344534003 0.20754149189292476 0.17386921248203535 0.20462430076420626 C 0.17416826344534003 0.20754149189292476 0.1776643308737263 0.2276372218530116 0.17737239868975008 0.22586699715387273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17737239868975008 0.22586699715387273 C 0.17696802082506227 0.22413727840062986 0.17190454523892917 0.2022686592329005 0.17251986431349636 0.20511037211495814 C 0.17190454523892917 0.2022686592329005 0.16977762858506462 0.19065444844036636 0.16998856979494398 0.1917664425691811" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16998856979494398 0.1917664425691811 C 0.16972579433648308 0.1904666769188175 0.16664948308458324 0.17357301490118507 0.1668352642934132 0.1761692547648179 C 0.16664948308458324 0.17357301490118507 0.16783618953861543 0.159315089992318 0.16775919528898448 0.16061156420558723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16775919528898448 0.16061156420558723 C 0.16816826235221422 0.1597715203257054 0.17373245898507153 0.14909360510871664 0.1726680000477415 0.15053103764700534 C 0.17373245898507153 0.14909360510871664 0.18118809441104508 0.14276498508771582 0.1805327025369448 0.1433623737461227" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3333730948438337,0.07975797759401762) rotate(0) scale(1,1) translate(-0.18233721705154246,-0.14882968924032608)"><path d="M 0.18733419446404379 0.14097871896887193 C 0.1874085256687218 0.14136108942073933 0.18813616841289427 0.14626903016844398 0.18822616892018 0.14556716439128076 C 0.18813616841289427 0.14626903016844398 0.18608985666465147 0.1497206036201262 0.1862541883766152 0.14940110829483041" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1862541883766152 0.14940110829483041 C 0.18631819587635043 0.15043873517232081 0.1860023652645925 0.16307243206097555 0.18702227837343802 0.16185263082471538 C 0.1860023652645925 0.16307243206097555 0.17293131046188825 0.16422089748872237 0.174015231070469 0.1640387231299526" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.174015231070469 0.1640387231299526 C 0.1734143389026442 0.16456936043437645 0.16603678923409768 0.17178955530820292 0.1668045250565715 0.17040637078303866 C 0.16603678923409768 0.17178955530820292 0.164635557546134 0.1814894846526642 0.16480240120078302 0.18063693743192377" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16480240120078302 0.18063693743192377 C 0.16480239369865426 0.18163073857775322 0.16491285967343872 0.19592508953585744 0.1648023111752379 0.19256255118187723 C 0.16491285967343872 0.19592508953585744 0.16623953917952242 0.22335613488783682 0.16612898317919284 0.2209873976796861" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16612898317919284 0.2209873976796861 C 0.16573470613182834 0.21890595178395242 0.16082007809266596 0.192015767885514 0.16139765861081876 0.196010046930882 C 0.16082007809266596 0.192015767885514 0.1590147134905711 0.17114321598563578 0.1591980169613594 0.17305604913527012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1591980169613594 0.17305604913527012 C 0.159445205798992 0.17168611921008542 0.1630225904648723 0.154324286002749 0.16216428301295027 0.1566168900330537 C 0.1630225904648723 0.154324286002749 0.17010882499871333 0.1446221266664937 0.16949770638442385 0.14554480077161372" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16949770638442385 0.14554480077161372 C 0.17029550869312937 0.14513301947132293 0.180557708095525 0.14022291835122905 0.17907133408889 0.14060342516812419 C 0.180557708095525 0.14022291835122905 0.18802276616197328 0.14100999345226758 0.18733419446404379 0.14097871896887193" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31299779566216324,0.09020065007890932) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.1307099261156265 0.12011874326965766 C 0.13040340945714776 0.12067744515495298 0.12649985998861085 0.12803529572982433 0.12703172621388154 0.12682316589320147 C 0.12649985998861085 0.12803529572982433 0.12410218184558623 0.13531772926045954 0.12432753141237818 0.13466430130913198" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12432753141237818 0.13466430130913198 C 0.12467235883533216 0.13409937705609337 0.12945364986844843 0.12684217954411392 0.12846546048782598 0.12788521027266855 C 0.12945364986844843 0.12684217954411392 0.13682916593751587 0.12166982609096047 0.13618580397984742 0.12214793256647648" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13618580397984742 0.12214793256647648 C 0.13570106991027953 0.12286104005192242 0.1296229341600317 0.13194629870875405 0.13036899514503253 0.13070522239182775 C 0.1296229341600317 0.13194629870875405 0.12697174524440463 0.13756881720107234 0.12723307215983753 0.137040848369592" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12723307215983753 0.137040848369592 C 0.12738175452956962 0.13650674290694997 0.12934911816964348 0.12978377115477274 0.12901726059662272 0.13063158281788784 C 0.12934911816964348 0.12978377115477274 0.13139853823937536 0.12655340221173766 0.1312153630360867 0.12686710841221074" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1312153630360867 0.12686710841221074 C 0.13089519834188615 0.12726284857816436 0.12662995396122312 0.13300313667968536 0.12737338670568027 0.1316159904036543 C 0.12662995396122312 0.13300313667968536 0.1218709020523443 0.14450426983466103 0.12229417010260091 0.14351286372458358" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12229417010260091 0.14351286372458358 C 0.12236189714272 0.14268572715914513 0.12336235581363245 0.13215837219499685 0.12310689458402994 0.13358722493932204 C 0.12336235581363245 0.13215837219499685 0.1255474390473144 0.12576491461379463 0.125359704857831 0.12636663079268134" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.125359704857831 0.12636663079268134 C 0.12508227215965445 0.12682455453117616 0.12148690475775428 0.13315093875925268 0.12203051247971236 0.13186171565461927 C 0.12148690475775428 0.13315093875925268 0.11857023717055246 0.1426686074144208 0.11883641219433398 0.14183730804828223" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11883641219433398 0.14183730804828223 C 0.11883215696594412 0.1410406241177475 0.11885021962216515 0.13111081448479034 0.1187853494536557 0.1322771008818654 C 0.11885021962216515 0.13111081448479034 0.11968397961334672 0.12747226881684143 0.11961485421644741 0.12784187128338173" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11961485421644741 0.12784187128338173 C 0.11939983860526393 0.12797370124793772 0.11676553046527934 0.1293005341478602 0.11703466688224567 0.12942383085805367 C 0.11676553046527934 0.1293005341478602 0.11633109640706854 0.12610718408631041 0.1163852172128514 0.1263623107610599" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1163852172128514 0.1263623107610599 C 0.11653403325976999 0.12644704695058692 0.11880867153899552 0.1270418427273658 0.11817100977587441 0.12737914503538425 C 0.11880867153899552 0.1270418427273658 0.12452600408650717 0.12189264456729294 0.12403715837030466 0.12231468306483843" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12403715837030466 0.12231468306483843 C 0.12382370311062482 0.12272646687852072 0.12114271874306162 0.1281308153496391 0.12147569525414663 0.12725608882902592 C 0.12114271874306162 0.1281308153496391 0.11992191898587935 0.13327434401912763 0.12004144023728452 0.13281140131219674" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12004144023728452 0.13281140131219674 C 0.12035238144331965 0.13225953681832794 0.12466177519956784 0.1251313058822264 0.123772734709706 0.1261890273857713 C 0.12466177519956784 0.1251313058822264 0.13128802539945322 0.11961288625998152 0.1307099261156265 0.12011874326965766" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.361689109995178,0.09020065007890932) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.1634589728448519 0.1433623737461227 C 0.1641143647189522 0.1439597624045296 0.1723881342713854 0.15196847018529405 0.17132367533405538 0.15053103764700534 C 0.1723881342713854 0.15196847018529405 0.176641547156042 0.16145160808546904 0.17623248009281225 0.16061156420558723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17623248009281225 0.16061156420558723 C 0.1763094743424432 0.16190803841885645 0.1769706298795537 0.17876549462845073 0.17715641108838365 0.1761692547648179 C 0.1769706298795537 0.17876549462845073 0.17374033012839193 0.1930662082195447 0.17400310558685284 0.1917664425691811" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17400310558685284 0.1917664425691811 C 0.17379216437697348 0.19287843669799584 0.17085649199373334 0.20795208499701578 0.17147181106830053 0.20511037211495814 C 0.17085649199373334 0.20795208499701578 0.16621489882735885 0.2275967159071156 0.16661927669204668 0.22586699715387273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16661927669204668 0.22586699715387273 C 0.1669112088760229 0.22409677245473386 0.17042151386306612 0.20170710963548777 0.17012246289976143 0.20462430076420626 C 0.17042151386306612 0.20170710963548777 0.17021500703103115 0.18971373717967124 0.17020788825170272 0.19086070360925086" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17020788825170272 0.19086070360925086 C 0.17016704230742638 0.18976498744698933 0.1696697146374576 0.17549728438448464 0.16971773692038672 0.1777121096621124 C 0.1696697146374576 0.17549728438448464 0.1696244445179007 0.16316369116235171 0.16963162085655348 0.1642828002777179" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16963162085655348 0.1642828002777179 C 0.16946563787725782 0.16333660898001173 0.16712543777069702 0.15118513582761087 0.1676398251050055 0.1529285047052438 C 0.16712543777069702 0.15118513582761087 0.1631105684898391 0.14256519616619595 0.1634589728448519 0.1433623737461227" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3413138108135077,0.07975797759401762) rotate(0) scale(1,1) translate(-0.17728282351693694,-0.14882968924032608)"><path d="M 0.17228584610443556 0.14097871896887193 C 0.17297441780236505 0.14094744448547628 0.1820350804862243 0.14098393198501932 0.18054870647958932 0.14060342516812419 C 0.1820350804862243 0.14098393198501932 0.19092013649276102 0.1459565820719045 0.1901223341840555 0.14554480077161372" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1901223341840555 0.14554480077161372 C 0.19073345279834497 0.14646747487673373 0.19831406500745108 0.15890949406335841 0.19745575755552905 0.1566168900330537 C 0.19831406500745108 0.15890949406335841 0.20066921244475253 0.17442597906045482 0.20042202360711994 0.17305604913527012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20042202360711994 0.17305604913527012 C 0.20023872013633168 0.17496888228490445 0.19764480143950783 0.20000432597625 0.19822238195766062 0.196010046930882 C 0.19764480143950783 0.20000432597625 0.19309678034192204 0.22306884357541976 0.19349105738928654 0.2209873976796861" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19349105738928654 0.2209873976796861 C 0.19360161338961612 0.21861866047153536 0.19492827789144224 0.18920001282789703 0.19481772939324143 0.19256255118187723 C 0.19492827789144224 0.18920001282789703 0.19481763186556758 0.17964313628609432 0.19481763936769633 0.18063693743192377" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19481763936769633 0.18063693743192377 C 0.19465079571304728 0.17978439021118334 0.19204777968943393 0.1690231862578744 0.19281551551190776 0.17040637078303866 C 0.19204777968943393 0.1690231862578744 0.1850039173301855 0.16350808582552875 0.1856048094980103 0.1640387231299526" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1856048094980103 0.1640387231299526 C 0.18452088888942955 0.16385654877118283 0.1715778490861958 0.1606328295884552 0.17259776219504133 0.16185263082471538 C 0.1715778490861958 0.1606328295884552 0.17342985969159933 0.14836348141734002 0.1733658521918641 0.14940110829483041" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1733658521918641 0.14940110829483041 C 0.17328186420247502 0.14904882951697523 0.17226799581190952 0.14447189718340514 0.17235799631919524 0.14517376296056836 C 0.17226799581190952 0.14447189718340514 0.17227983358653892 0.1406291319695639 0.17228584610443556 0.14097871896887193" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.361689109995178,0.09020065007890932) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.10776193717406216 0.119710215121995 C 0.10832237453520349 0.12023634076034266 0.11533949058225436 0.1271124443301889 0.1144871855077582 0.12602372278216692 C 0.11533949058225436 0.1271124443301889 0.11828146578137078 0.13333746960793313 0.11798959806801597 0.1327748736982588" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11798959806801597 0.1327748736982588 C 0.11788599091506437 0.13230795878121596 0.11644347055057212 0.12628584911465784 0.11674631223259677 0.12717189469374462 C 0.11644347055057212 0.12628584911465784 0.11415626335464724 0.12172319608717337 0.11435549788372028 0.12214232674921731" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11435549788372028 0.12214232674921731 C 0.11482960420712314 0.12258150805670705 0.12067050504089623 0.12777229611310967 0.12004477376455468 0.12741250243909413 C 0.12067050504089623 0.12777229611310967 0.12201589815275764 0.12638046320392948 0.12186427319981895 0.1264598508374037" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12186427319981895 0.1264598508374037 C 0.1218014552643805 0.12671289572766814 0.12083726645728991 0.12961003151867523 0.12111045797455762 0.1294963895205771 C 0.12083726645728991 0.12961003151867523 0.11837560141077719 0.1276841519224149 0.11858597499260645 0.12782355481458121" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11858597499260645 0.12782355481458121 C 0.11864241097086171 0.12819539256876003 0.11928812859952169 0.133453492771126 0.11926320673166954 0.13228560786472698 C 0.11928812859952169 0.133453492771126 0.11885352329642913 0.14263422084358962 0.11888503740683225 0.14183817369136942" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11888503740683225 0.14183817369136942 C 0.11864747049845481 0.14099790653467764 0.1155350734511037 0.13044718097093455 0.11603423450630294 0.13175496781106816 C 0.1155350734511037 0.13044718097093455 0.11263351059761943 0.12567721192632433 0.11289510474444124 0.12614473160976616" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11289510474444124 0.12614473160976616 C 0.11306213463666623 0.12675276342326153 0.11510587560278482 0.13487818854796088 0.1148994634511411 0.13344111337171036 C 0.11510587560278482 0.13487818854796088 0.11541143282358444 0.1442186770875275 0.11537205056416573 0.14338963372477234" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11537205056416573 0.14338963372477234 C 0.11498296496791942 0.14238376581016388 0.11000750986139228 0.12990645584686455 0.11070302340920998 0.13131921874947086 C 0.11000750986139228 0.12990645584686455 0.10671946003878198 0.12602958390549865 0.10702588799035337 0.12643647889349652" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10702588799035337 0.12643647889349652 C 0.1071982169954987 0.1267565139045738 0.10939648046863812 0.13113600631649522 0.10909383605209737 0.1302768990264237 C 0.10939648046863812 0.13113600631649522 0.11078793640023772 0.137284838653349 0.11065762098884231 0.13674576637435476" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11065762098884231 0.13674576637435476 C 0.11041451966432865 0.13620881753442926 0.10703726658586962 0.1290355048206575 0.10774040509467839 0.13030238029524888 C 0.10703726658586962 0.1290355048206575 0.10175992169884207 0.12081333404459252 0.10221995888313717 0.12154326067925839" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10221995888313717 0.12154326067925839 C 0.10284656874857027 0.12204397563858518 0.11069117353372558 0.12862940900484918 0.1097392772683344 0.12755184019117993 C 0.11069117353372558 0.12862940900484918 0.11396800046778935 0.13505094029763168 0.11364271406783127 0.13447408644328923" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11364271406783127 0.13447408644328923 C 0.11343986122127322 0.13381303548241624 0.1107184151679873 0.12531115230270534 0.11120847990913474 0.1265414749128132 C 0.1107184151679873 0.12531115230270534 0.10747472527947277 0.11914094347276016 0.10776193717406216 0.119710215121995" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33469399103193603,0.09482097381962298) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.16277501342526757 0.16131063530584727 C 0.16297717899268538 0.16132475194500823 0.1656549146079955 0.1616909153507327 0.16520100023428136 0.1614800349757787 C 0.1656549146079955 0.1616909153507327 0.16847373471613353 0.16403796354108838 0.1682219859098372 0.16384119980529532" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1682219859098372 0.16384119980529532 C 0.16841441906190044 0.1639499785816137 0.1708904062149409 0.16540987067522744 0.1705311837345961 0.16514654512111598 C 0.1708904062149409 0.16540987067522744 0.1726994450022561 0.16715565323242582 0.17253265567397455 0.16700110645463276" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17253265567397455 0.16700110645463276 C 0.17252803119001373 0.1671720040228453 0.17237319487087055 0.16942698596441116 0.17247716186644457 0.16905187727318308 C 0.17237319487087055 0.16942698596441116 0.17118570921547294 0.17170662187238522 0.17128505172708614 0.17150241074936967" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17128505172708614 0.17150241074936967 C 0.17097653843280214 0.17145702959308565 0.16700079236800666 0.17087460289183676 0.1675828921956781 0.17095783687396152 C 0.16700079236800666 0.17087460289183676 0.16402626726164166 0.17046575013803184 0.16429985379502907 0.17050360296387257" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16429985379502907 0.17050360296387257 C 0.16411765555753333 0.17039179994347772 0.1618458260073073 0.1688815822546751 0.16211347494508008 0.1691619667191344 C 0.1618458260073073 0.1688815822546751 0.16100261584147874 0.16697040794629642 0.16108806654175575 0.16713898939036087" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16108806654175575 0.16713898939036087 C 0.1610763871112076 0.1668857749545227 0.16108849228213698 0.16361471998659324 0.16094791337517766 0.16410041616030271 C 0.16108849228213698 0.16361471998659324 0.16292727176277505 0.16107815356797597 0.16277501342526757 0.16131063530584727" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.337020237106883,0.09444141786387825) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.16796570132539343 0.1570309930727952 C 0.16806307736087378 0.15732077124438362 0.16931850822622646 0.16101344821245603 0.16913421375115778 0.16050833113185628 C 0.16931850822622646 0.16101344821245603 0.17026415346580584 0.16330773694900338 0.17017723502621754 0.16309239803999206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17017723502621754 0.16309239803999206 C 0.17028260528286487 0.16329220402182876 0.1716570015571414 0.16585358291010413 0.1714416781059857 0.16549006982203243 C 0.1716570015571414 0.16585358291010413 0.17287106963459417 0.1676182622030873 0.17276111644008582 0.1674545550968523" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17276111644008582 0.1674545550968523 C 0.1728441535130443 0.16767672553972826 0.17379825332173104 0.17051915328875733 0.17375756131558773 0.17012060041136376 C 0.17379825332173104 0.17051915328875733 0.17320707544699063 0.17241357206009275 0.1732494205138058 0.17223718962557513" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1732494205138058 0.17223718962557513 C 0.17299863585325148 0.1720965467776704 0.16971361926562076 0.17029267120828281 0.17024000458715405 0.17054947545071805 C 0.16971361926562076 0.17029267120828281 0.1666571959944272 0.16903937732182173 0.16693279665540617 0.16915553871635222" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16693279665540617 0.16915553871635222 C 0.1667814349656278 0.16906266051970395 0.16481084103796287 0.16776272388281224 0.16511645637806568 0.16804100035657285 C 0.16481084103796287 0.16776272388281224 0.16311115892384806 0.1656308227541127 0.16326541257417249 0.165816221031225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16326541257417249 0.165816221031225 C 0.16325613197164338 0.16543037283290862 0.16354573607309164 0.16045394032155924 0.16315404534382322 0.16118604265142839 C 0.16354573607309164 0.16045394032155924 0.16836667265719094 0.15668473894124244 0.16796570132539343 0.1570309930727952" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31299779566216324,0.09020065007890932) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18148015649647106 0.13016232655993948 C 0.18147553236232805 0.13038164708146308 0.1813671065335975 0.1332044962385103 0.18142466688675496 0.1327941728182226 C 0.1813671065335975 0.1332044962385103 0.18073649603956715 0.13527721050215613 0.1807894322585816 0.13508620760339202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1807894322585816 0.13508620760339202 C 0.1806622462676783 0.13518192422694025 0.17899422117560104 0.1363517613488291 0.179263200367742 0.13623480708597085 C 0.17899422117560104 0.1363517613488291 0.17741988875165277 0.13651089639700087 0.1775616819528904 0.13648965875769087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1775616819528904 0.13648965875769087 C 0.17750843185644288 0.13654312431137666 0.17680617056274922 0.13719016130215148 0.17692268079552015 0.13713124540192034 C 0.17680617056274922 0.13719016130215148 0.17604397934955765 0.1371580746304593 0.17616355915963938 0.13719664956046437 C 0.17604397934955765 0.1371580746304593 0.17539711500068944 0.13654261660296105 0.1754877230745395 0.1366683462418594 C 0.17539711500068944 0.13654261660296105 0.17503890429603605 0.13550869870110005 0.1750762622734386 0.13568789389368419 C 0.17503890429603605 0.13550869870110005 0.17506532950462977 0.13433335839172017 0.17503942734570893 0.13451800393084964 C 0.17506532950462977 0.13433335839172017 0.1754160599167205 0.1333849927152373 0.17538708818048884 0.13347214742413055" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17538708818048884 0.13347214742413055 C 0.17538603197067146 0.13325268898499967 0.17542190645207656 0.1304143527743947 0.17537441366268022 0.13083864615456 C 0.17542190645207656 0.1304143527743947 0.17600555065245857 0.12817579192111234 0.17595700165324485 0.12838062686214677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17595700165324485 0.12838062686214677 C 0.1760748007102479 0.12827962898006276 0.17762950196566113 0.12703772805440292 0.1773705903372813 0.12716865227713875 C 0.17762950196566113 0.12703772805440292 0.17920505376517942 0.126779609848665 0.17906394119380264 0.1268095361893168" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31109896377293966,0.09344813593705056) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1074426825075449 0.10260728048883422 C 0.10725458299105614 0.10281871455667363 0.10577954796671585 0.10418509197839254 0.10631408540861231 0.10387588489587068 C 0.10577954796671585 0.10418509197839254 0.10387777810458945 0.1041026467690811 0.10423545785616607 0.10446252298396536 C 0.10387777810458945 0.1041026467690811 0.10429935432234501 0.10084968350298185 0.10416800689915257 0.10171662760656518 C 0.10429935432234501 0.10084968350298185 0.10502354239532076 0.09926085836246534 0.10502354239532076 0.09926085836246534 C 0.10502354239532076 0.09926085836246534 0.10403665947596012 0.10258357171014851 0.10416800689915257 0.10171662760656518 C 0.10403665947596012 0.10258357171014851 0.10396018699109025 0.10500381473697916 0.10423545785616607 0.10446252298396536 C 0.10396018699109025 0.10500381473697916 0.10203664999233049 0.10520855078643669 0.10251638170869759 0.10496437812464798 C 0.10203664999233049 0.10520855078643669 0.10116384853284113 0.10608808909303921 0.10135706755796349 0.1059275589546976" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3092001318837161,0.09669562179519181) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13938203154071174 0.11521981853458556 C 0.13943455045636835 0.1153999045620633 0.14007069967994484 0.11774760369523599 0.140012258528591 0.11738085086431846 C 0.14007069967994484 0.11774760369523599 0.14008924759265498 0.11980751930903569 0.14008332535695775 0.1196208525055959" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008332535695775 0.1196208525055959 C 0.14000434981268098 0.11977579372894688 0.13894666314675927 0.12173874192106711 0.13913561882563655 0.12148014718580766 C 0.13894666314675927 0.12173874192106711 0.13770587707582996 0.12282764284061776 0.13781585721043046 0.12272398932870929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13781585721043046 0.12272398932870929 C 0.13778622829392562 0.12279968322781969 0.1373805815175252 0.12375100142237923 0.13746031021237215 0.12363231611803409 C 0.1373805815175252 0.12375100142237923 0.13675186664889322 0.12418997378513073 0.13685911287226693 0.12414821298085103 C 0.13675186664889322 0.12418997378513073 0.1360673283189315 0.1240870922998228 0.1361733555318877 0.12413344576939055 C 0.1360673283189315 0.1240870922998228 0.13551038802034132 0.12346992397735988 0.13558678631679266 0.12359197134603803 C 0.13551038802034132 0.12346992397735988 0.13523027745636249 0.1225038385713399 0.13525657597447172 0.12266887734525278 C 0.13523027745636249 0.1225038385713399 0.13527242310989956 0.12152339178523588 0.13527120409948204 0.12161150605908334" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13527120409948204 0.12161150605908334 C 0.13521402556617335 0.12143477334411107 0.13451483974698414 0.119118810262991 0.13458506169977755 0.11949071347941605 C 0.13451483974698414 0.119118810262991 0.13441549724647633 0.11695349696052988 0.13442854066596105 0.11714866746198266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13442854066596105 0.11714866746198266 C 0.13449851923737888 0.11699518332603626 0.13544545840041256 0.11504311270985879 0.13526828352297487 0.11530685783062576 C 0.13544545840041256 0.11504311270985879 0.13666183550123326 0.11387346502795832 0.13655463919521338 0.1139837260127789" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3084877295272128,0.10047860950529881) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645980520642277 0.10101608235456618 C 0.10636093758351041 0.10130170686355712 0.10551079656701257 0.10330579218795909 0.10586659946894861 0.10272982940851184 C 0.10551079656701257 0.10330579218795909 0.10394145622525501 0.10439916005173182 0.10432498779480648 0.10447185903124966 C 0.10394145622525501 0.10439916005173182 0.10344985643637755 0.1015128125219442 0.10356541005163979 0.10229363553140484 C 0.10344985643637755 0.1015128125219442 0.10363166610323309 0.0997869209744858 0.10363166610323309 0.0997869209744858 C 0.10363166610323309 0.0997869209744858 0.10368096366690202 0.10307445854086549 0.10356541005163979 0.10229363553140484 C 0.10368096366690202 0.10307445854086549 0.10423980617594346 0.10507726159011721 0.10432498779480648 0.10447185903124966 C 0.10423980617594346 0.10507726159011721 0.1027264438814729 0.10641602037319747 0.1030543203384617 0.10592605088461013 C 0.1027264438814729 0.10641602037319747 0.10224163050527574 0.10765928014246767 0.10235772905287373 0.10741167596277373" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.30777532717070966,0.10426159721540589) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928487422229538 0.11430959349649668 C 0.13937119639072942 0.11442786040679763 0.1404564077751189 0.11599710921464265 0.14032074024350402 0.11572879642010804 C 0.1404564077751189 0.11599710921464265 0.1409622299648547 0.11767939291514576 0.14091288460167387 0.11752934703091208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14091288460167387 0.11752934703091208 C 0.1408844503444628 0.11770136905167897 0.1404769467472478 0.11991305536065672 0.1405716735151412 0.11959361128011461 C 0.1404769467472478 0.11991305536065672 0.13970987087627104 0.12151009805719255 0.13977616338695337 0.12136267599741733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13977616338695337 0.12136267599741733 C 0.13976967823617864 0.12144164740239999 0.1396606515528085 0.12245298702303878 0.13969834157765676 0.12231033285720928 C 0.1396606515528085 0.12245298702303878 0.1392451149381362 0.12316953912058846 0.1393238830887742 0.12307452598737131 C 0.1392451149381362 0.12316953912058846 0.13865438335592595 0.12347240386410402 0.1387531237700009 0.1234504904558151 C 0.13865438335592595 0.12347240386410402 0.13804674285657448 0.12328042889014457 0.1381389981198747 0.12333748688683831 C 0.13804674285657448 0.12328042889014457 0.13758501022117137 0.12264505373794958 0.13764606061039805 0.12276579449549016 C 0.13758501022117137 0.12264505373794958 0.13738642118571745 0.1218154980714231 0.13740639344915442 0.12188859779635133" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13740639344915442 0.12188859779635133 C 0.13731701539540914 0.1217757236232629 0.1361872181154768 0.12026822974789875 0.13633385680421112 0.12053410771929016 C 0.1361872181154768 0.12026822974789875 0.1355894685493536 0.11854505834135148 0.13564672918434265 0.11869806213965446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13564672918434265 0.11869806213965446 C 0.13566806828899047 0.11853232928856203 0.13598655405089055 0.11639225866914629 0.13590279844011663 0.11670926792654518 C 0.13598655405089055 0.11639225866914629 0.13671421301975592 0.11474267464456141 0.13665179651362983 0.11489395105086785" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3080867986957553,0.10777352952700686) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10533786866573912 0.10038005641801928 C 0.10532409669544622 0.10067072807858037 0.1050980652491578 0.10279876066452964 0.10525523684398173 0.10212408638138577 C 0.1050980652491578 0.10279876066452964 0.10406028023751573 0.10458541724689552 0.1043948390967955 0.10442810211688247 C 0.10406028023751573 0.10458541724689552 0.10296638110671914 0.10249171554404668 0.10324788368830312 0.10306797716146406 C 0.10296638110671914 0.10249171554404668 0.10270582360729164 0.10097053241237818 0.10270582360729164 0.10097053241237818 C 0.10270582360729164 0.10097053241237818 0.1035293862698871 0.10364423877888143 0.10324788368830312 0.10306797716146406 C 0.1035293862698871 0.10364423877888143 0.10446852918897014 0.10497381289110118 0.1043948390967955 0.10442810211688247 C 0.10446852918897014 0.10497381289110118 0.10353547719638646 0.1069304444365268 0.10369002424135089 0.10634224180677633 C 0.10353547719638646 0.1069304444365268 0.10343047892461865 0.10822649724348683 0.10346755682700898 0.10795731789538533" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.32022817859904973,0.09578051241637917) rotate(0) scale(1,1) translate(-0.17354151290850753,-0.17151703483688832)"><path d="M 0.17825694952162802 0.16296581962964693 C 0.17812685806697565 0.16312338034613288 0.17657269288422647 0.16506366545263404 0.1766958520657997 0.1648565482274784 C 0.17657269288422647 0.16506366545263404 0.1767859716158283 0.16550078284018452 0.17677903934274916 0.16545122633151482" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17677903934274916 0.16545122633151482 C 0.17657650298937355 0.16616706792466174 0.1738665020296106 0.17552715126877888 0.1743486031022419 0.17404132544927783 C 0.1738665020296106 0.17552715126877888 0.1707142617519179 0.18405112039188143 0.1709938264711736 0.1832811361655273" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1709938264711736 0.1832811361655273 C 0.17066804892324536 0.18414250272650518 0.16612608563369194 0.19568322340811037 0.1670844958960347 0.19361753489726166 C 0.16612608563369194 0.19568322340811037 0.15886027060864621 0.20927372024558266 0.1594929033230607 0.2080693982957118" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1594929033230607 0.2080693982957118 C 0.15985086411507576 0.20699553145639102 0.1643258214673056 0.19282984968935318 0.16378843282724154 0.1951829962238623 C 0.1643258214673056 0.19282984968935318 0.16612099485187848 0.17855236018641418 0.16594156700382948 0.1798316398816025" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16594156700382948 0.1798316398816025 C 0.1660701910510845 0.17934597379893097 0.16785284548191867 0.17306736729678168 0.16748505557088997 0.17400364688954414 C 0.16785284548191867 0.17306736729678168 0.17059421179994744 0.16814567125836183 0.1703550459361738 0.1685962847684528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1703550459361738 0.1685962847684528 C 0.17064738371741156 0.16833483073272174 0.17452159127648154 0.1649896309114463 0.173863099311027 0.16545883633968012 C 0.17452159127648154 0.1649896309114463 0.17862310370584478 0.16275806823714417 0.17825694952162802 0.16296581962964693" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.326045354787445,0.0889358521030243) rotate(0) scale(1,1) translate(-0.18077772561044797,-0.15906515328191137)"><path d="M 0.18329715958685777 0.15369717967131485 C 0.1831949396728612 0.15419002075628693 0.18195574775299886 0.16038204387776153 0.18207052061889914 0.15961127269097972 C 0.18195574775299886 0.16038204387776153 0.18190733224415062 0.16322436401450635 0.18191988519605434 0.16294643391269661" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18191988519605434 0.16294643391269661 C 0.1816068055129301 0.1634537772314641 0.17760720079596168 0.17014644282519545 0.17816292899856345 0.16903455373790646 C 0.17760720079596168 0.17014644282519545 0.17500849824535544 0.176893648728686 0.17525114676483297 0.17628910296016448" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17525114676483297 0.17628910296016448 C 0.17503908919541936 0.17714905112962784 0.1723631168942926 0.18850793793146314 0.17270645593186948 0.1866084809937248 C 0.1723631168942926 0.18850793793146314 0.17099979684574718 0.20012209498129963 0.17113107831391042 0.19908258621302463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17113107831391042 0.19908258621302463 C 0.1711202037987118 0.19795500503701405 0.17099460636300634 0.18368227252458888 0.17100058413152694 0.18555161210089763 C 0.17099460636300634 0.18368227252458888 0.17106424183834126 0.1759087528970215 0.17105934509166323 0.17665051129731965" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17105934509166323 0.17665051129731965 C 0.17113582940637057 0.1761206086770811 0.17214353351979067 0.16926210729283686 0.17197715686815132 0.17029167985445712 C 0.17214353351979067 0.16926210729283686 0.17314575724826758 0.16379597061649495 0.17305586491133557 0.16429564055787665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17305586491133557 0.16429564055787665 C 0.17326845693598503 0.16391647840131976 0.1764604104300893 0.15886248960531363 0.17560696920712912 0.15974569467919378 C 0.1764604104300893 0.15886248960531363 0.1839380087851685 0.1531931367539916 0.18329715958685777 0.15369717967131485" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33039464748499886,0.0868334232239977) rotate(0) scale(1,1) translate(-0.17559229873566568,-0.1581321562364564)"><path d="M 0.17798254197164506 0.1520638004581732 C 0.1780100072801252 0.15236166168166462 0.17829298196394047 0.15634592754457627 0.17831212567340665 0.15563813514007038 C 0.17829298196394047 0.15634592754457627 0.17770620844010457 0.16096724049325842 0.17775281745805088 0.16055730931224396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17775281745805088 0.16055730931224396 C 0.1774517216669352 0.1611481192304833 0.17364116804781551 0.1686127496027647 0.17413966796466288 0.167647028331116 C 0.17364116804781551 0.1686127496027647 0.17157341433015083 0.17252087592543777 0.17177081845588252 0.1721459645720284" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17177081845588252 0.1721459645720284 C 0.1715543230990318 0.17274023064377847 0.16877769347596874 0.18054040598024193 0.16917287417367374 0.17927715743302927 C 0.16877769347596874 0.18054040598024193 0.1668499647425681 0.18797392961404294 0.16702865008342238 0.18730494713858034" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16702865008342238 0.18730494713858034 C 0.16701009710869916 0.1865801068558105 0.16680641158442602 0.17726333391928378 0.16680601438674358 0.17860686374534213 C 0.16680641158442602 0.17726333391928378 0.16705236662801742 0.17056389968259167 0.16703341645561173 0.17118258922588017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16703341645561173 0.17118258922588017 C 0.16714624421530866 0.17054698255604367 0.1686080405686894 0.16261596225714087 0.1683873495719749 0.16355530918784214 C 0.1686080405686894 0.16261596225714087 0.16978957165320308 0.15960668579660003 0.16968170841618552 0.1599104260574648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16968170841618552 0.1599104260574648 C 0.16993957330519283 0.15955539287868747 0.17346782321389484 0.1549961424455292 0.17277608708427322 0.15565002791213683 C 0.17346782321389484 0.1549961424455292 0.17841641321225937 0.1517649481703429 0.17798254197164506 0.1520638004581732" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33999291462540554,0.09482097381962298) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.18072782674225377 0.16131063530584727 C 0.18088008507976128 0.16154311704371857 0.18269550569930304 0.16458611233401219 0.18255492679234372 0.16410041616030271 C 0.18269550569930304 0.16458611233401219 0.18240309419521752 0.16739220382619904 0.1824147736257657 0.16713898939036087" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1824147736257657 0.16713898939036087 C 0.18232932292548865 0.16730757083442532 0.18112171628466847 0.1694423511835937 0.18138936522244126 0.1691619667191344 C 0.18112171628466847 0.1694423511835937 0.1790207881349966 0.17061540598426742 0.17920298637249235 0.17050360296387257" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17920298637249235 0.17050360296387257 C 0.1789293998391049 0.1705414557897133 0.17533784814417175 0.17104107085608627 0.17591994797184318 0.17095783687396152 C 0.17533784814417175 0.17104107085608627 0.17190927514615123 0.1715477919056537 0.17221778844043523 0.17150241074936967" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17221778844043523 0.17150241074936967 C 0.17211844592882203 0.17129819962635412 0.17092171130550285 0.168676768581955 0.17102567830107687 0.16905187727318308 C 0.17092171130550285 0.168676768581955 0.17096556000958604 0.16683020888642022 0.17097018449354687 0.16700110645463276" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17097018449354687 0.16700110645463276 C 0.1711369738218284 0.1668465596768397 0.17333087891327004 0.16488321956700452 0.17297165643292528 0.16514654512111598 C 0.17333087891327004 0.16488321956700452 0.17547328740974735 0.16373242102897695 0.1752808542576841 0.16384119980529532" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1752808542576841 0.16384119980529532 C 0.17553260306398044 0.16364443606950227 0.17875575430695412 0.1612691546008247 0.17830183993323998 0.1614800349757787 C 0.17875575430695412 0.1612691546008247 0.18092999230967158 0.16129651866668632 0.18072782674225377 0.16131063530584727" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3376666685504584,0.09444141786387825) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.17795396905571517 0.1570309930727952 C 0.1783549403875127 0.15737724720434795 0.18315731576655386 0.1619181449812975 0.18276562503728544 0.16118604265142836 C 0.18315731576655386 0.1619181449812975 0.182644977204407 0.1662020692295414 0.18265425780693612 0.165816221031225" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18265425780693612 0.165816221031225 C 0.1825000041566117 0.16600161930833732 0.18049759866294016 0.16831927683033343 0.18080321400304297 0.16804100035657282 C 0.18049759866294016 0.16831927683033343 0.17883551203592404 0.1692484169130005 0.17898687372570243 0.16915553871635222" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17898687372570243 0.16915553871635222 C 0.17871127306472345 0.16927170011088272 0.1751532804724213 0.1708062796931533 0.1756796657939546 0.17054947545071805 C 0.1751532804724213 0.1708062796931533 0.17241946520674845 0.17237783247347988 0.17267024986730276 0.17223718962557513" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17267024986730276 0.17223718962557513 C 0.1726279048004876 0.1720608071910575 0.17220280107166422 0.1697220475339702 0.17216210906552087 0.17012060041136376 C 0.17220280107166422 0.1697220475339702 0.17324159101398126 0.16723238465397633 0.17315855394102278 0.16745455509685228" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17315855394102278 0.16745455509685228 C 0.17326850713553113 0.1672908479906173 0.17469331572627864 0.1651265567339607 0.17447799227512295 0.1654900698220324 C 0.17469331572627864 0.1651265567339607 0.17584780561153845 0.16289259205815537 0.17574243535489112 0.16309239803999206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17574243535489112 0.16309239803999206 C 0.17582935379447942 0.16287705913098074 0.1769697511050195 0.16000321405125653 0.17678545662995082 0.16050833113185628 C 0.1769697511050195 0.16000321405125653 0.17805134509119552 0.15674121490120677 0.17795396905571517 0.1570309930727952" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.361689109995178,0.09020065007890932) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.181480156496471 0.1268095361893168 C 0.18162126906784778 0.12683946252996864 0.1834324189813722 0.12729957649987458 0.18317350735299237 0.12716865227713875 C 0.1834324189813722 0.12729957649987458 0.18470489509403185 0.12848162474423078 0.1845870960370288 0.12838062686214677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1845870960370288 0.12838062686214677 C 0.18463564503624252 0.1285854618031812 0.1852171768169897 0.13126293953472531 0.18516968402759337 0.13083864615456 C 0.1852171768169897 0.13126293953472531 0.18515595329996737 0.13369160586326143 0.18515700950978475 0.13347214742413055" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18515700950978475 0.13347214742413055 C 0.18518598124601643 0.1335593021330238 0.18553057250348554 0.13470264946997912 0.1855046703445647 0.13451800393084964 C 0.18553057250348554 0.13470264946997912 0.1854304774394325 0.13586708908626832 0.18546783541683504 0.13568789389368419 C 0.1854304774394325 0.13586708908626832 0.18496576654188415 0.13679407588075773 0.1850563746157342 0.1366683462418594 C 0.18496576654188415 0.13679407588075773 0.1842609587205525 0.13723522449046946 0.18438053853063424 0.13719664956046437 C 0.1842609587205525 0.13723522449046946 0.18350490666198258 0.1370723295016892 0.1836214168947535 0.13713124540192034 C 0.18350490666198258 0.1370723295016892 0.1829291656409357 0.13643619320400507 0.18298241573738322 0.13648965875769087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18298241573738322 0.13648965875769087 C 0.18284062253614558 0.13646842111838087 0.1810119181303907 0.13611785282311262 0.18128089732253164 0.13623480708597085 C 0.1810119181303907 0.13611785282311262 0.1796274794407887 0.13499049097984378 0.179754665431692 0.13508620760339202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.179754665431692 0.13508620760339202 C 0.17970172921267755 0.1348952047046279 0.1790618704503612 0.13238384939793488 0.17911943080351866 0.1327941728182226 C 0.1790618704503612 0.13238384939793488 0.17905931705965958 0.12994300603841588 0.1790639411938026 0.13016232655993948" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36358794188440163,0.09344813593705056) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10731743919334794 0.1059275589546976 C 0.10712422016822558 0.105767028816356 0.1056783933262467 0.10472020546285928 0.10615812504261381 0.10496437812464798 C 0.1056783933262467 0.10472020546285928 0.10416377803006954 0.10392123123095155 0.10443904889514537 0.10446252298396536 C 0.10416377803006954 0.10392123123095155 0.10437515242896639 0.10084968350298185 0.10450649985215883 0.10171662760656518 C 0.10437515242896639 0.10084968350298185 0.1036509643559907 0.09926085836246534 0.1036509643559907 0.09926085836246534 C 0.1036509643559907 0.09926085836246534 0.10463784727535128 0.10258357171014851 0.10450649985215883 0.10171662760656518 C 0.10463784727535128 0.10258357171014851 0.10408136914356875 0.10482239919884961 0.10443904889514537 0.10446252298396536 C 0.10408136914356875 0.10482239919884961 0.10182588390080263 0.10356667781334883 0.10236042134269911 0.10387588489587068 C 0.10182588390080263 0.10356667781334883 0.10104372472727777 0.10239584642099481 0.10123182424376653 0.10260728048883422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.36548677377362526,0.09669562179519181) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13938203154071185 0.1139837260127789 C 0.13948922784673173 0.11409398699759947 0.14084556209038804 0.11557060295139274 0.14066838721295036 0.11530685783062576 C 0.14084556209038804 0.11557060295139274 0.14157810864138198 0.11730215159792906 0.14150813006996416 0.11714866746198266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14150813006996416 0.11714866746198266 C 0.14149508665047944 0.11734383796343544 0.14128138708335422 0.1198626166958411 0.14135160903614763 0.11949071347941605 C 0.14128138708335422 0.1198626166958411 0.14060828810313453 0.12178823877405562 0.14066546663644322 0.12161150605908334" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14066546663644322 0.12161150605908334 C 0.14066668564686075 0.1216996203329308 0.14065379624334434 0.12283391611916566 0.14068009476145357 0.12266887734525278 C 0.14065379624334434 0.12283391611916566 0.14027348612268123 0.12371401871471617 0.14034988441913257 0.12359197134603803 C 0.14027348612268123 0.12371401871471617 0.13965728799108137 0.12417979923895829 0.13976331520403756 0.12413344576939055 C 0.13965728799108137 0.12417979923895829 0.13897031164028462 0.12410645217657133 0.13907755786365833 0.12414821298085103 C 0.13897031164028462 0.12410645217657133 0.1383966318287061 0.12351363081368895 0.13847636052355305 0.12363231611803409 C 0.1383966318287061 0.12351363081368895 0.13809118460898995 0.12264829542959889 0.1381208135254948 0.12272398932870929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1381208135254948 0.12272398932870929 C 0.1380108333908943 0.12262033581680082 0.13661209623141146 0.1212215524505482 0.13680105191028874 0.12148014718580766 C 0.13661209623141146 0.1212215524505482 0.13577436983469074 0.11946591128224492 0.1358533453789675 0.1196208525055959" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1358533453789675 0.1196208525055959 C 0.13585926761466474 0.11943418570215611 0.1359828533586881 0.11701409803340093 0.13592441220733426 0.11738085086431846 C 0.1359828533586881 0.11701409803340093 0.1366071581108701 0.11503973250710782 0.1365546391952135 0.11521981853458556" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3661991761301285,0.10047860950529881) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10631677769843774 0.10741167596277373 C 0.10620067915083974 0.1071640717830798 0.10529230995586095 0.10543608139602278 0.10562018641284975 0.10592605088461013 C 0.10529230995586095 0.10543608139602278 0.10426433733764195 0.1038664564723821 0.10434951895650496 0.10447185903124966 C 0.10426433733764195 0.1038664564723821 0.1052246503149339 0.1015128125219442 0.10510909669967167 0.10229363553140484 C 0.1052246503149339 0.1015128125219442 0.10504284064807835 0.0997869209744858 0.10504284064807835 0.0997869209744858 C 0.10504284064807835 0.0997869209744858 0.10499354308440943 0.10307445854086549 0.10510909669967167 0.10229363553140484 C 0.10499354308440943 0.10307445854086549 0.10396598738695349 0.1045445580107675 0.10434951895650496 0.10447185903124966 C 0.10396598738695349 0.1045445580107675 0.1024521043804268 0.1021538666290646 0.10280790728236285 0.10272982940851184 C 0.1024521043804268 0.1021538666290646 0.10211583392197635 0.10073045784557523 0.10221470154488871 0.10101608235456618" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3669115784866316,0.10426159721540589) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928487422229546 0.11489395105086785 C 0.13934729072842156 0.11504522745717428 0.1401176279065825 0.11702627718394407 0.14003387229580858 0.11670926792654518 C 0.1401176279065825 0.11702627718394407 0.1403112806562304 0.1188637949907469 0.1402899415515826 0.11869806213965446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1402899415515826 0.11869806213965446 C 0.14023268091659355 0.11885106593795744 0.13945617524297982 0.12079998569068157 0.13960281393171411 0.12053410771929016 C 0.13945617524297982 0.12079998569068157 0.1384408992330256 0.12200147196943976 0.13853027728677086 0.12188859779635133" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13853027728677086 0.12188859779635133 C 0.1385103050233339 0.12196169752127957 0.13822955973630044 0.12288653525303074 0.13829061012552712 0.12276579449549016 C 0.13822955973630044 0.12288653525303074 0.13770541735275027 0.12339454488353205 0.1377976726160505 0.12333748688683831 C 0.13770541735275027 0.12339454488353205 0.1370848065518494 0.12342857704752619 0.13718354696592436 0.1234504904558151 C 0.1370848065518494 0.12342857704752619 0.13653401949651306 0.12297951285415416 0.13661278764715104 0.12307452598737131 C 0.13653401949651306 0.12297951285415416 0.13620063913342023 0.12216767869137979 0.1362383291582685 0.12231033285720928 C 0.13620063913342023 0.12216767869137979 0.13615402219819714 0.12128370459243468 0.13616050734897187 0.12136267599741733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13616050734897187 0.12136267599741733 C 0.13609421483828954 0.12121525393764211 0.1352702704528907 0.11927416719957251 0.13536499722078407 0.11959361128011461 C 0.1352702704528907 0.11927416719957251 0.13499535187704034 0.1173573250101452 0.1350237861342514 0.11752934703091208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1350237861342514 0.11752934703091208 C 0.13507313149743222 0.11737930114667841 0.13575159802403605 0.11546048362557343 0.13561593049242118 0.11572879642010804 C 0.13575159802403605 0.11546048362557343 0.13673811868206392 0.11419132658619573 0.13665179651362988 0.11430959349649668" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36660010696158596,0.10777352952700686) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10520694992430243 0.10795731789538533 C 0.10516987202191212 0.10768813854728383 0.10482993546499615 0.10575403917702586 0.10498448250996056 0.10634224180677633 C 0.10482993546499615 0.10575403917702586 0.10435335774669056 0.10388239134266376 0.10427966765451595 0.10442810211688247 C 0.10435335774669056 0.10388239134266376 0.10570812564459227 0.10249171554404668 0.10542662306300829 0.10306797716146406 C 0.10570812564459227 0.10249171554404668 0.10596868314401979 0.10097053241237818 0.10596868314401979 0.10097053241237818 C 0.10596868314401979 0.10097053241237818 0.10514512048142431 0.10364423877888143 0.10542662306300829 0.10306797716146406 C 0.10514512048142431 0.10364423877888143 0.10394510879523618 0.10427078698686942 0.10427966765451595 0.10442810211688247 C 0.10394510879523618 0.10427078698686942 0.10326209831250575 0.1014494120982419 0.10341926990732969 0.10212408638138577 C 0.10326209831250575 0.1014494120982419 0.1033228661152794 0.1000893847574582 0.1033366380855723 0.10038005641801928" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.35445872705829173,0.09578051241637917) rotate(0) scale(1,1) translate(-0.17354151290850753,-0.17151703483688832)"><path d="M 0.168826076295387 0.16296581962964693 C 0.16919223047960377 0.1631735710221497 0.1738784184714426 0.16592804176791393 0.17321992650598808 0.16545883633968012 C 0.1738784184714426 0.16592804176791393 0.17702031766207899 0.16885773880418384 0.1767279798808412 0.1685962847684528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1767279798808412 0.1685962847684528 C 0.17696714574461486 0.16904689827854374 0.17996576015715388 0.1749399264823066 0.17959797024612517 0.17400364688954414 C 0.17996576015715388 0.1749399264823066 0.18127008286044058 0.18031730596427403 0.18114145881318555 0.1798316398816025" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18114145881318555 0.1798316398816025 C 0.18132088666123455 0.18111091957679082 0.18383198162983752 0.1975361427583714 0.18329459298977346 0.1951829962238623 C 0.18383198162983752 0.1975361427583714 0.18794808328596943 0.2091432651350326 0.18759012249395435 0.2080693982957118" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18759012249395435 0.2080693982957118 C 0.18695748977953985 0.20686507634584095 0.17904011965863761 0.19155184638641296 0.17999852992098034 0.19361753489726166 C 0.17904011965863761 0.19155184638641296 0.1757634217979133 0.18241976960454942 0.17608919934584152 0.1832811361655273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17608919934584152 0.1832811361655273 C 0.17580963462658583 0.18251115193917317 0.17225232164214185 0.1725554996297768 0.17273442271477316 0.17404132544927783 C 0.17225232164214185 0.1725554996297768 0.17010145012089026 0.1647353847383679 0.17030398647426587 0.16545122633151482" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17030398647426587 0.16545122633151482 C 0.170310918747345 0.16540166982284513 0.17026401456964219 0.16464943100232274 0.17038717375121543 0.1648565482274784 C 0.17026401456964219 0.16464943100232274 0.16869598484073464 0.16280825891316097 0.168826076295387 0.16296581962964693" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34864155086989657,0.0889358521030243) rotate(0) scale(1,1) translate(-0.18077772561044797,-0.15906515328191137)"><path d="M 0.17825829163403795 0.15369717967131485 C 0.17889914083234867 0.1542012225886381 0.18680192323672692 0.16062889975307393 0.18594848201376674 0.15974569467919378 C 0.18680192323672692 0.16062889975307393 0.1887121783342097 0.16467480271443355 0.18849958630956024 0.16429564055787665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18849958630956024 0.16429564055787665 C 0.18858947864649225 0.16479531049925836 0.18974467100438383 0.17132125241607737 0.18957829435274448 0.17029167985445712 C 0.18974467100438383 0.17132125241607737 0.1905725904439399 0.1771804139175582 0.19049610612923257 0.17665051129731965" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19049610612923257 0.17665051129731965 C 0.1905010028759106 0.17739226969761782 0.19054888932084824 0.18742095167720638 0.19055486708936883 0.18555161210089763 C 0.19054888932084824 0.18742095167720638 0.19041349839178684 0.20021016738903522 0.19042437290698547 0.19908258621302463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19042437290698547 0.19908258621302463 C 0.1902930914388222 0.19804307744474964 0.18850565625144935 0.18470902405598644 0.18884899528902624 0.1866084809937248 C 0.18850565625144935 0.18470902405598644 0.18609224688664927 0.17542915479070112 0.18630430445606289 0.17628910296016448" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18630430445606289 0.17628910296016448 C 0.18606165593658533 0.17568455719164297 0.18283679401973055 0.16792266465061748 0.18339252222233232 0.16903455373790646 C 0.18283679401973055 0.16792266465061748 0.17932248634171727 0.16243909059392914 0.17963556602484151 0.16294643391269661" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17963556602484151 0.16294643391269661 C 0.17962301307293776 0.16266850381088688 0.17937015773609633 0.1588405015041979 0.17948493060199663 0.15961127269097972 C 0.17937015773609633 0.1588405015041979 0.1781560717200414 0.15320433858634278 0.17825829163403795 0.15369717967131485" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34429225817234266,0.0868334232239977) rotate(0) scale(1,1) translate(-0.17559229873566568,-0.1581321562364564)"><path d="M 0.17320205549968634 0.1520638004581732 C 0.17363592674030068 0.1523626527460035 0.17910024651667986 0.15630391337874447 0.17840851038705824 0.15565002791213683 C 0.17910024651667986 0.15630391337874447 0.1817607539441532 0.1602654592362422 0.1815028890551459 0.15991042605746486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1815028890551459 0.15991042605746486 C 0.18161075229216345 0.16021416631832963 0.183017938896071 0.16449465611854341 0.1827972478993565 0.16355530918784214 C 0.183017938896071 0.16449465611854341 0.18426400877541652 0.17181819589571667 0.1841511810157196 0.17118258922588017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1841511810157196 0.17118258922588017 C 0.18417013118812528 0.17180127876916867 0.18437898028227032 0.17995039357140047 0.18437858308458785 0.17860686374534213 C 0.18437898028227032 0.17995039357140047 0.18413739441318583 0.18802978742135024 0.18415594738790905 0.18730494713858037" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18415594738790905 0.18730494713858037 C 0.18397726204705478 0.18663596466311777 0.18161654259995275 0.1780139088858166 0.18201172329765775 0.17927715743302927 C 0.18161654259995275 0.1780139088858166 0.1791972836585982 0.17155169850027835 0.17941377901544892 0.1721459645720284" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17941377901544892 0.1721459645720284 C 0.17921637488971723 0.17177105321861905 0.17654642958982122 0.1666813070594673 0.17704492950666859 0.167647028331116 C 0.17654642958982122 0.1666813070594673 0.17313068422216493 0.15996649939400462 0.1734317800132806 0.16055730931224396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1734317800132806 0.16055730931224396 C 0.1733851709953343 0.1601473781312295 0.1728533280884586 0.15493034273556447 0.17287247179792478 0.15563813514007035 C 0.1728533280884586 0.15493034273556447 0.17322952080816648 0.15176593923468176 0.17320205549968634 0.1520638004581732" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 61 KiB

View File

@@ -0,0 +1,188 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.18927342293533692 C 0.1821049703296256 0.18927342293533692 0.17832475781272994 0.16894640501170435 0.1779047341997415 0.1705100217750607 C 0.17832475781272994 0.16894640501170435 0.18840532452445186 0.17207363853841703 0.18798530091146345 0.1705100217750607 C 0.18840532452445186 0.17207363853841703 0.1821049703296256 0.18927342293533692 0.18294501755560244 0.18927342293533692 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3161245169216883,0.09443644536726525) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.19306757896543836 0.13338925019278616 C 0.19310211896243698 0.13373570832569925 0.1924378435235996 0.13902908614273374 0.19348205892942175 0.13754674778774315 C 0.1924378435235996 0.13902908614273374 0.1794582386927519 0.15231319067475085 0.18053699409557267 0.15117731045267332" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18053699409557267 0.15117731045267332 C 0.1799811971600932 0.15285959752222492 0.17308171786434906 0.17418651273588787 0.1738674308698189 0.17136475528729256 C 0.17308171786434906 0.17418651273588787 0.17087852195994424 0.18617787021486076 0.1711084380299346 0.18503839983581705" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1711084380299346 0.18503839983581705 C 0.17129752240453502 0.1872682917900947 0.17368082887378197 0.214871439604852 0.17337745052513953 0.2117971032871488 C 0.17368082887378197 0.214871439604852 0.17486327218768588 0.22277488001168125 0.17474897821364385 0.22193043564825568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17474897821364385 0.22193043564825568 C 0.17402442809073937 0.2192460331674581 0.16515761110644808 0.1859080311006466 0.16605437673879023 0.1897176058786847 C 0.16515761110644808 0.1859080311006466 0.16381557511610037 0.17509036601455805 0.16398779062553806 0.17621553831179856" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16398779062553806 0.17621553831179856 C 0.16404697106351834 0.17471059942423917 0.1652890019405457 0.15541406194133806 0.16469795588130134 0.15815627166108567 C 0.1652890019405457 0.15541406194133806 0.1716122089577341 0.14207175084263884 0.17108034333647004 0.14330902167482706" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17108034333647004 0.14330902167482706 C 0.17193690352800448 0.14268800616495106 0.18319133527063058 0.1350301879328117 0.18135906563488322 0.13585683555631511 C 0.18319133527063058 0.1350301879328117 0.1940432884096513 0.13318361807915874 0.19306757896543836 0.13338925019278616" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33592841866712053,0.08133370745682134) rotate(0) scale(1,1) translate(-0.1844895011061321,-0.1624381065878798)"><path d="M 0.18603296755935592 0.15610517103709515 C 0.1860915822484592 0.15645330926575376 0.18672656758461845 0.16180539735755192 0.18673634382859539 0.16028282978099864 C 0.18672656758461845 0.16180539735755192 0.1858472616985524 0.17555041130362908 0.18591565263163262 0.17437598195573442" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18591565263163262 0.17437598195573442 C 0.18507338527539166 0.1741473457198376 0.1744540447056445 0.1718962845602676 0.17580844435674098 0.17163234712497225 C 0.1744540447056445 0.1718962845602676 0.1691507245236194 0.17803580485047077 0.1696628568184749 0.1775432311792786" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1696628568184749 0.1775432311792786 C 0.16938055372183775 0.17866147885267256 0.16581970257718281 0.19387301114349745 0.16627521965882905 0.19096220326000615 C 0.16581970257718281 0.19387301114349745 0.16402343785371093 0.21426548599127135 0.16419665183872 0.21247292578117402" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16419665183872 0.21247292578117402 C 0.16394476318174722 0.21119335772536438 0.1609733941387919 0.19443684804132996 0.16117398795504664 0.1971181091114583 C 0.1609733941387919 0.19443684804132996 0.16184082088438095 0.1788960999253153 0.16178952604366292 0.180297792939634" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16178952604366292 0.180297792939634 C 0.16211283069370858 0.17943339563872177 0.16654521803379493 0.16848633183492825 0.1656691818442109 0.16992502532868733 C 0.16654521803379493 0.16848633183492825 0.17285469185820967 0.16245917482167815 0.17230196031867132 0.163033471014525" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17230196031867132 0.163033471014525 C 0.1728318751171387 0.16269042458147348 0.1798051885036705 0.1583395554864541 0.17866093790028012 0.15891691381790657 C 0.1798051885036705 0.1583395554864541 0.1866473033642789 0.1558708591386942 0.18603296755935592 0.15610517103709515" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.3121041720245217,0.09379935537513909) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.1815367731116825 0.1301182955330785 C 0.18153965515275264 0.13033764707415757 0.18152787023426625 0.13316263669315917 0.18157135760452411 0.13275051402602747 C 0.18152787023426625 0.13316263669315917 0.18096855525726002 0.1352565386647114 0.18101492466858804 0.13506376753865879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18101492466858804 0.13506376753865879 C 0.18089109079764387 0.13516395379971038 0.1792641041003547 0.13639246161068078 0.17952891821725805 0.1362660026712779 C 0.1792641041003547 0.13639246161068078 0.1776961750197886 0.13660754748984483 0.17783715526574778 0.1365812748114935" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17783715526574778 0.1365812748114935 C 0.1777857667627213 0.13663660355084545 0.17710606959282293 0.13730824757204205 0.1772204932294299 0.13724521968371656 C 0.17710606959282293 0.13730824757204205 0.17634324494188697 0.1373033151982183 0.17646407162646421 0.1373376094713994 C 0.17634324494188697 0.1373033151982183 0.17567571869451204 0.1367112610936598 0.17577057301450297 0.13683368840554358 C 0.17567571869451204 0.1367112610936598 0.17528235396960867 0.13569072567755838 0.1753258197865731 0.1358684817287941 C 0.17528235396960867 0.13569072567755838 0.1752685525275458 0.13451516059050592 0.17524898321092977 0.13470061579071518 C 0.1752685525275458 0.13451516059050592 0.1755866239505519 0.13355488628758025 0.1755606515859656 0.13364301932628295" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1755606515859656 0.13364301932628295 C 0.1755520879428322 0.1334237321774046 0.17549083586973477 0.13058584783795735 0.17545788786836478 0.1310115735397428 C 0.17549083586973477 0.13058584783795735 0.17599753924690884 0.1283278723519504 0.17595602760240545 0.1285343109048575" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17595602760240545 0.1285343109048575 C 0.17607029957615047 0.12842918078648416 0.17758156603536118 0.12713268751032067 0.1773272912873457 0.1272727494843773 C 0.17758156603536118 0.12713268751032067 0.17914732735286165 0.12681863536049454 0.1790073245785912 0.12685356721617783" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3103175993148817,0.09711246322226907) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10738673195944394 0.1024976867453224 C 0.1072059805763322 0.10271568853972285 0.10577859038748957 0.10413374628860014 0.10630222366077349 0.10380569751172504 C 0.10577859038748957 0.10413374628860014 0.10387515842997294 0.10411905616701657 0.10424493231974041 0.104465979406573 C 0.10387515842997294 0.10411905616701657 0.10418518798018811 0.10085306599318924 0.10408358032216862 0.10172415807438646 C 0.10418518798018811 0.10085306599318924 0.10485457826785732 0.09923942691938971 0.10485457826785732 0.09923942691938971 C 0.10485457826785732 0.09923942691938971 0.10398197266414913 0.10259525015558368 0.10408358032216862 0.10172415807438646 C 0.10398197266414913 0.10259525015558368 0.10398834772840546 0.1050167413308985 0.10424493231974041 0.104465979406573 C 0.10398834772840546 0.1050167413308985 0.10207298689312218 0.10528983245634203 0.10254407277415883 0.1050287296203395 C 0.10207298689312218 0.10528983245634203 0.10123080774341406 0.10619990755629626 0.10141841703352046 0.10603259642258815" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.30853102660524157,0.10042557106939912) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1394023148542143 0.1151691130731564 C 0.1394609628508986 0.11534721967240534 0.1401770436537192 0.11767084111708491 0.14010609081442557 0.11730639226414366 C 0.1401770436537192 0.11767084111708491 0.1402660537683471 0.11972884156214363 0.14025374892573775 0.11954249930845132" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14025374892573775 0.11954249930845132 C 0.14018012231537674 0.11970015775229809 0.13919023603060535 0.12169956484764581 0.13937022960140577 0.12143440063461254 C 0.13919023603060535 0.12169956484764581 0.1379874591156931 0.12283197563403703 0.13809382607613255 0.12272446986485053" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13809382607613255 0.12272446986485053 C 0.13806680483623332 0.12280117247164554 0.13769395151355515 0.12376635257025365 0.1377695711973419 0.12364490114639064 C 0.13769395151355515 0.12376635257025365 0.13708063769272127 0.12422744038621995 0.13718638987069157 0.12418188695120659 C 0.13708063769272127 0.12422744038621995 0.1363929966002295 0.12414899180659042 0.13650054506169837 0.12419154236655099 C 0.1363929966002295 0.12414899180659042 0.13581528111149532 0.12355202706492426 0.135895808333065 0.12367128023167982 C 0.13581528111149532 0.12355202706492426 0.13550228962518027 0.12259650238166064 0.1355342184028624 0.1227605043654842 C 0.13550228962518027 0.12259650238166064 0.13551086671738094 0.12161515243082316 0.13551266300087952 0.12170325642579709" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13551266300087952 0.12170325642579709 C 0.13544947294804302 0.12152866698324517 0.13467147969849572 0.11923900642223728 0.13475438236684145 0.11960818311517414 C 0.13467147969849572 0.11923900642223728 0.13449811836522158 0.11707854886016979 0.1345178309807308 0.11727313611055473" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1345178309807308 0.11727313611055473 C 0.13458251594858495 0.11711725416751435 0.13546209433672893 0.11513266074104135 0.1352940505949806 0.11540255279407025 C 0.13546209433672893 0.11513266074104135 0.136637714655605 0.11392042136421955 0.1365343558817108 0.11403443147420807" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3079484811905132,0.10423161650521987) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10635001558663826 0.10094244931774941 C 0.10626097993085332 0.10123141961593524 0.10547992024123984 0.10326454995612946 0.10581580165192865 0.10267627110686432 C 0.10547992024123984 0.10326454995612946 0.10394894202425932 0.10441312181850414 0.1043347271225054 0.10447212241334022 C 0.10394894202425932 0.10441312181850414 0.10335889444844315 0.10154603400621877 0.1035010910624522 0.10232226753784777 C 0.10335889444844315 0.10154603400621877 0.10348154743845112 0.09981472122356619 0.10348154743845112 0.09981472122356619 C 0.10348154743845112 0.09981472122356619 0.10364328767646125 0.10309850106947678 0.1035010910624522 0.10232226753784777 C 0.10364328767646125 0.10309850106947678 0.1042703093287021 0.10508018872614507 0.1043347271225054 0.10447212241334022 C 0.1042703093287021 0.10508018872614507 0.10280367033325516 0.10647200914915866 0.10311458429963237 0.1059706654146768 C 0.10280367033325516 0.10647200914915866 0.10236168649501041 0.10773177138782382 0.10246924332424212 0.10748018482023139" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3073659357757849,0.1080376619410407) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13927407624918758 0.1142629014149854 C 0.1393643919609529 0.11437802312678276 0.14050262915105127 0.11590768140556697 0.14035786479037154 0.11564436195655374 C 0.14050262915105127 0.11590768140556697 0.1410656972262588 0.11757093254035993 0.1410112485773444 0.11742273480314407" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1410112485773444 0.11742273480314407 C 0.1409887168311494 0.11759566432006899 0.14065712732946994 0.11982051085552836 0.1407408676230046 0.11949788900624317 C 0.14065712732946994 0.11982051085552836 0.13994515650758885 0.1214438893269266 0.14000636505492853 0.12129419699456634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14000636505492853 0.12129419699456634 C 0.1400025856117051 0.12137335117000371 0.1399282251324611 0.12238795616627302 0.1399610117362471 0.12224404709981479 C 0.1399282251324611 0.12238795616627302 0.1395374562162799 0.12311886526893513 0.13961292580949658 0.12302110579206496 C 0.1395374562162799 0.12311886526893513 0.13895744605155483 0.12344257613665907 0.1390553766176467 0.12341716082225682 C 0.13895744605155483 0.12344257613665907 0.1383436078935257 0.123272350703857 0.13843775901639413 0.1233260895648921 C 0.1383436078935257 0.123272350703857 0.13786041918091982 0.12265380073777955 0.13792556314322568 0.12277229448983551 C 0.13786041918091982 0.12265380073777955 0.13763357049584846 0.12183182037775278 0.13765603146872363 0.12190416454022068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13765603146872363 0.12190416454022068 C 0.13756284622866574 0.12179454107302745 0.13638216305333906 0.12032818740871107 0.136537808588029 0.12058868293390182 C 0.13638216305333906 0.12032818740871107 0.13572582475781225 0.1186273461799341 0.1357882850524443 0.11877821823793162" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1357882850524443 0.11877821823793162 C 0.13580394113231004 0.11861182665384919 0.13604901713035752 0.1164617213034796 0.13597615801083307 0.11678151922894231 C 0.13604901713035752 0.1164617213034796 0.13671979752639635 0.11478723679099888 0.13666259448673762 0.11494064313237914" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3077973672227166,0.11153636618789624) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10520700288260348 0.1003467528675343 C 0.10520318371380127 0.10063773775436541 0.10505009386743473 0.1027725209405879 0.10518408786979026 0.1020926621885209 C 0.10505009386743473 0.1027725209405879 0.1040740658532681 0.10459503529993866 0.10440303886847031 0.10442590537993637 C 0.1040740658532681 0.10459503529993866 0.10290920371123045 0.10254155290094044 0.10321024977857697 0.10310744170853463 C 0.10290920371123045 0.10254155290094044 0.1025967624643912 0.10103057253437124 0.1025967624643912 0.10103057253437124 C 0.1025967624643912 0.10103057253437124 0.10351129584592349 0.10367333051612881 0.10321024977857697 0.10310744170853463 C 0.10351129584592349 0.10367333051612881 0.10449535383964012 0.1049686602826499 0.10440303886847031 0.10442590537993637 C 0.10449535383964012 0.1049686602826499 0.10362981020003317 0.10695731746314616 0.10376413960559584 0.10636397112481577 C 0.10362981020003317 0.10695731746314616 0.10356921624001066 0.10825631879076915 0.10359706243509426 0.10798598340991866" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3121041720245217,0.09379935537513909) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.18076054027111776 0.15850918993701166 C 0.18054103161452356 0.158765967698479 0.17776395612349696 0.162299840940099 0.17812643639198744 0.16159052307461994 C 0.17776395612349696 0.162299840940099 0.17626780543733572 0.16747354442677218 0.176410777049232 0.16702100432276046" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.176410777049232 0.16702100432276046 C 0.17624856514326084 0.16760928282575677 0.17401974717798938 0.17545431530862177 0.17446423417757811 0.17408034635871608 C 0.17401974717798938 0.17545431530862177 0.17079465796054952 0.18429432216853797 0.1710769330541671 0.1835086317216286" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1710769330541671 0.1835086317216286 C 0.1706656868594825 0.18459261994786597 0.165024257936209 0.19829397302356694 0.16614197871795186 0.19651649043647698 C 0.165024257936209 0.19829397302356694 0.1569578090861947 0.20553191712756058 0.15766428367325294 0.204838422766708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15766428367325294 0.204838422766708 C 0.1581158716463752 0.20397725612769743 0.16373106021946124 0.19243361888833688 0.16308333935071995 0.19450442309858115 C 0.16373106021946124 0.19243361888833688 0.16563306699376748 0.17877913467254286 0.16543693409814844 0.17998877224377657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16543693409814844 0.17998877224377657 C 0.1656155986786675 0.17924684061790142 0.1680880985753123 0.16967907887827466 0.16758090906437717 0.1710855927332746 C 0.1680880985753123 0.16967907887827466 0.1718517331597858 0.1624460237546525 0.17152320822936976 0.16311060598377727" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17152320822936976 0.16311060598377727 C 0.17183280350023852 0.162838494780176 0.17600812914994055 0.1594618202033317 0.17523835147979488 0.15984527154056216 C 0.17600812914994055 0.1594618202033317 0.18122072267039468 0.15839784980338245 0.18076054027111776 0.15850918993701166" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3121041720245217,0.09379935537513909) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.13175085633327116 0.11887768801473893 C 0.13144177198864437 0.11950673426418491 0.12756504060824336 0.12781519542954903 0.12804184419774964 0.12642624300809083 C 0.12756504060824336 0.12781519542954903 0.12586149401431634 0.1363050232442496 0.12602921325919583 0.13554511707223738" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12602921325919583 0.13554511707223738 C 0.12635480994228593 0.1348145400939429 0.13108137703109599 0.12536731077015986 0.12993637345627712 0.1267781933327036 C 0.13108137703109599 0.12536731077015986 0.1405886630487508 0.11793422073746335 0.13976925615702207 0.1186145263217126" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13976925615702207 0.1186145263217126 C 0.13923423251816855 0.11946253158232144 0.13255542035338264 0.13042849642406038 0.13334897249077995 0.12879058944901867 C 0.13255542035338264 0.13042849642406038 0.1299881020097106 0.13905931173664587 0.13024663050825439 0.13826941002221302" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13024663050825439 0.13826941002221302 C 0.13033522266886272 0.13771359123253177 0.13155871490408977 0.13055762395803547 0.13130973643555438 0.13159958454603807 C 0.13155871490408977 0.13055762395803547 0.13339475843860613 0.1252797411678606 0.13323437213067907 0.12576588296618194" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13323437213067907 0.12576588296618194 C 0.1329100456066915 0.1262022311676216 0.12870466509824519 0.13257503683530025 0.12934245384282828 0.13100206138345796 C 0.12870466509824519 0.13257503683530025 0.1252674449750864 0.1457782156386919 0.12558090719568193 0.14464158838828928" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12558090719568193 0.14464158838828928 C 0.1255136074816754 0.14378089618807863 0.12483294861437035 0.13276149004664123 0.12477331062760336 0.13431328198576137 C 0.12483294861437035 0.13276149004664123 0.12642350073765937 0.1253289853799381 0.12629656303688583 0.1260200851188476" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12629656303688583 0.1260200851188476 C 0.12604032063674867 0.12650843329789158 0.12261861399782677 0.1332672513188837 0.12322165423523984 0.13188026326737512 C 0.12261861399782677 0.1332672513188837 0.1187132823506531 0.14356258160941507 0.11906008018792899 0.14266394173695046" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11906008018792899 0.14266394173695046 C 0.11910107390894914 0.14183097720959056 0.11965826740074835 0.13142184676665172 0.1195520048401708 0.13266836740863172 C 0.11965826740074835 0.13142184676665172 0.12040049975441704 0.12729213791857033 0.12033523091485963 0.12770569403319043" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12033523091485963 0.12770569403319043 C 0.12011367834919304 0.12785687880771351 0.11740452148655903 0.1293961521917052 0.11767660012686056 0.12951991132746754 C 0.11740452148655903 0.1293961521917052 0.11701976115660644 0.1259456404937567 0.11707028723124137 0.12622058440404216" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11707028723124137 0.12622058440404216 C 0.11719873466698154 0.12629315253384157 0.11927111167787753 0.12669298780582677 0.11861165646012345 0.1270914019616352 C 0.11927111167787753 0.12669298780582677 0.12551475762630432 0.12096863224873294 0.12498374984429039 0.12143961453434081" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12498374984429039 0.12143961453434081 C 0.12473632584797972 0.12191510288601703 0.12168973202829045 0.12812682504247747 0.12201466188856233 0.12714547475445556 C 0.12168973202829045 0.12812682504247747 0.12100708565706658 0.13372167992694947 0.1210845915210278 0.13321581799060378" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1210845915210278 0.13321581799060378 C 0.121360545258504 0.13259445286652957 0.12528489177176244 0.12456459233705774 0.12439603637074217 0.12575943650171315 C 0.12528489177176244 0.12456459233705774 0.13236375799681524 0.11830420897415775 0.13175085633327116 0.11887768801473893" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35856238873565305,0.09443644536726525) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.15092409641635837 0.13338925019278616 C 0.1518998058605713 0.1335948823064136 0.1644648793826609 0.13668348317981852 0.16263260974691354 0.13585683555631511 C 0.1644648793826609 0.13668348317981852 0.1737678922368611 0.14393003718470307 0.17291133204532666 0.14330902167482706" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17291133204532666 0.14330902167482706 C 0.17344319766659072 0.14454629250701528 0.17988476555973965 0.1608984813808333 0.1792937195004953 0.15815627166108567 C 0.17988476555973965 0.1608984813808333 0.18006306519423892 0.17772047719935796 0.18000388475625864 0.17621553831179856" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18000388475625864 0.17621553831179856 C 0.17983166924682095 0.17734071060903908 0.17704053301066436 0.19352718065672278 0.1779372986430065 0.1897176058786847 C 0.17704053301066436 0.19352718065672278 0.16851814704524826 0.22461483812905325 0.16924269716815274 0.22193043564825568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16924269716815274 0.22193043564825568 C 0.16935699114219477 0.2210859912848301 0.17091760320529967 0.20872276696944558 0.17061422485665723 0.2117971032871488 C 0.17091760320529967 0.20872276696944558 0.17307232172646242 0.1828085078815394 0.172883237351862 0.18503839983581705" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.172883237351862 0.18503839983581705 C 0.17265332128187166 0.18389892945677333 0.16933853150650796 0.16854299783869725 0.17012424451197777 0.17136475528729256 C 0.16933853150650796 0.16854299783869725 0.16289888435074462 0.14949502338312173 0.1634546812862241 0.15117731045267332" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1634546812862241 0.15117731045267332 C 0.16237592588340333 0.1500414302305958 0.14946540104655284 0.13606440943275255 0.15050961645237498 0.13754674778774315 C 0.14946540104655284 0.13606440943275255 0.150958636413357 0.13304279205987307 0.15092409641635837 0.13338925019278616" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3387584869902209,0.08133370745682134) rotate(0) scale(1,1) translate(-0.1626884528566317,-0.1624381065878798)"><path d="M 0.16114498640340782 0.15610517103709515 C 0.1617593222083308 0.1563394829354961 0.16966126666587397 0.15949427214935905 0.1685170160624836 0.15891691381790657 C 0.16966126666587397 0.15949427214935905 0.1754059084425597 0.16337651744757653 0.17487599364409231 0.163033471014525" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17487599364409231 0.163033471014525 C 0.17542872518363067 0.16360776720737186 0.1823848083081368 0.17136371882244641 0.18150877211855276 0.16992502532868733 C 0.1823848083081368 0.17136371882244641 0.18571173256914647 0.18116219024054622 0.1853884279191008 0.180297792939634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1853884279191008 0.180297792939634 C 0.18543972275981882 0.1816994859539527 0.18580337219146237 0.19979937018158664 0.18600396600771713 0.1971181091114583 C 0.18580337219146237 0.19979937018158664 0.18272941346707086 0.21375249383698366 0.18298130212404365 0.21247292578117402" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18298130212404365 0.21247292578117402 C 0.18280808813903457 0.2106803655710767 0.1804472172222884 0.18805139537651486 0.18090273430393464 0.19096220326000615 C 0.1804472172222884 0.18805139537651486 0.17723279404765163 0.17642498350588462 0.17751509714428879 0.1775432311792786" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17751509714428879 0.1775432311792786 C 0.1770029648494333 0.1770506575080864 0.17001510995492627 0.1713684096896769 0.17136950960602274 0.17163234712497225 C 0.17001510995492627 0.1713684096896769 0.1604200339748902 0.17460461819163126 0.16126230133113117 0.17437598195573442" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16126230133113117 0.17437598195573442 C 0.16119391039805092 0.17320155260783976 0.1604318338901913 0.15876026220444536 0.16044161013416824 0.16028282978099864 C 0.1604318338901913 0.15876026220444536 0.1612036010925111 0.15575703280843653 0.16114498640340782 0.15610517103709515" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.36258273363281945,0.09379935537513909) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18153677311168245 0.12685356721617783 C 0.1816767758859529 0.12688849907186112 0.18347108115094346 0.12741281145843397 0.18321680640292798 0.12727274948437733 C 0.18347108115094346 0.12741281145843397 0.18470234206161323 0.12863944102323085 0.1845880700878682 0.1285343109048575" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1845880700878682 0.1285343109048575 C 0.1846295817323716 0.12874074945776462 0.1851191578232788 0.13143729924152825 0.18508620982190882 0.1310115735397428 C 0.1851191578232788 0.13143729924152825 0.18497488246117458 0.13386230647516129 0.18498344610430797 0.13364301932628295" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18498344610430797 0.13364301932628295 C 0.1850094184688943 0.13373115236498564 0.1853146837959599 0.13488607099092445 0.18529511447934385 0.13470061579071518 C 0.1853146837959599 0.13488607099092445 0.18517481208673608 0.1360462377800298 0.18521827790370052 0.1358684817287941 C 0.18517481208673608 0.1360462377800298 0.1846786703557798 0.13695611571742736 0.18477352467577074 0.13683368840554358 C 0.1846786703557798 0.13695611571742736 0.18395919937923216 0.13737190374458047 0.1840800260638094 0.1373376094713994 C 0.18395919937923216 0.13737190374458047 0.1832091808242368 0.13718219179539107 0.18332360446084375 0.13724521968371656 C 0.1832091808242368 0.13718219179539107 0.18265555392149935 0.13652594607214158 0.18270694242452584 0.1365812748114935" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18270694242452584 0.1365812748114935 C 0.18256596217856666 0.1365550021331422 0.18075036535611222 0.136139543731875 0.18101517947301557 0.1362660026712779 C 0.18075036535611222 0.136139543731875 0.1794053391507414 0.1349635812776072 0.17952917302168556 0.13506376753865879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17952917302168556 0.13506376753865879 C 0.17948280361035757 0.13487099641260616 0.17892925271549165 0.13233839135889577 0.1789727400857495 0.13275051402602747 C 0.17892925271549165 0.13233839135889577 0.17901020661966127 0.12989894399199944 0.17900732457859114 0.13011829553307852" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36436930634245956,0.0971124632222691) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10725608971779096 0.10603259642258815 C 0.10706848042768456 0.10586528528888005 0.10565934809611591 0.10476762678433697 0.10613043397715256 0.1050287296203395 C 0.10565934809611591 0.10476762678433697 0.10417298984023608 0.1039152174822475 0.10442957443157104 0.104465979406573 C 0.10417298984023608 0.1039152174822475 0.1044893187711233 0.10085306599318924 0.10459092642914279 0.10172415807438646 C 0.1044893187711233 0.10085306599318924 0.10381992848345412 0.09923942691938971 0.10381992848345412 0.09923942691938971 C 0.10381992848345412 0.09923942691938971 0.10469253408716228 0.10259525015558368 0.10459092642914279 0.10172415807438646 C 0.10469253408716228 0.10259525015558368 0.10405980054180357 0.10481290264612943 0.10442957443157104 0.104465979406573 C 0.10405980054180357 0.10481290264612943 0.10184864981725401 0.10347764873484994 0.10237228309053793 0.10380569751172504 C 0.10184864981725401 0.10347764873484994 0.10110702340875576 0.10227968495092196 0.1012877747918675 0.1024976867453224" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3661558790520996,0.10042557106939912) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13940231485421442 0.11403443147420805 C 0.13950567362810862 0.11414844158419657 0.14081066388269298 0.11567244484709914 0.14064262014094464 0.11540255279407025 C 0.14081066388269298 0.11567244484709914 0.14148352472304854 0.11742901805359511 0.1414188397551944 0.11727313611055473" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1414188397551944 0.11727313611055473 C 0.14139912713968517 0.11746772336093968 0.14109938570073804 0.11997735980811099 0.14118228836908375 0.11960818311517413 C 0.14109938570073804 0.11997735980811099 0.14036081768220923 0.121877845868349 0.14042400773504574 0.12170325642579709" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14042400773504574 0.12170325642579709 C 0.14042221145154715 0.12179136042077102 0.14037052355538074 0.12292450634930777 0.14040245233306287 0.1227605043654842 C 0.14037052355538074 0.12292450634930777 0.13996033518129056 0.12379053339843539 0.14004086240286023 0.12367128023167982 C 0.13996033518129056 0.12379053339843539 0.13932857721275801 0.12423409292651155 0.1394361256742269 0.12419154236655099 C 0.13932857721275801 0.12423409292651155 0.13864452868726343 0.12413633351619323 0.13875028086523372 0.12418188695120659 C 0.13864452868726343 0.12413633351619323 0.13809147985479656 0.12352344972252763 0.1381670995385833 0.12364490114639064 C 0.13809147985479656 0.12352344972252763 0.13781582341989349 0.1226477672580555 0.1378428446597927 0.12272446986485051" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1378428446597927 0.12272446986485051 C 0.13773647769935327 0.12261696409566401 0.1363864475637191 0.12116923642157926 0.13656644113451952 0.12143440063461253 C 0.1363864475637191 0.12116923642157926 0.1356092951998265 0.11938484086460453 0.1356829218101875 0.1195424993084513" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1356829218101875 0.1195424993084513 C 0.13569522665279687 0.119356157054759 0.1359015327607933 0.11694194341120243 0.1358305799214997 0.11730639226414366 C 0.1359015327607933 0.11694194341120243 0.13659300387839518 0.11499100647390746 0.13653435588171092 0.1151691130731564" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3667384244668279,0.10423161650521987) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10620526342706933 0.10748018482023139 C 0.10609770659783763 0.10722859825263896 0.10524900848530185 0.10546932168019492 0.10555992245167906 0.10597066541467678 C 0.10524900848530185 0.10546932168019492 0.10427536183500274 0.1038640561005354 0.10433977962880604 0.10447212241334022 C 0.10427536183500274 0.1038640561005354 0.1053156123028683 0.10154603400621877 0.10517341568885925 0.10232226753784777 C 0.1053156123028683 0.10154603400621877 0.10519295931286034 0.09981472122356619 0.10519295931286034 0.09981472122356619 C 0.10519295931286034 0.09981472122356619 0.1050312190748502 0.10309850106947678 0.10517341568885925 0.10232226753784777 C 0.1050312190748502 0.10309850106947678 0.10395399453055996 0.10453112300817631 0.10433977962880604 0.10447212241334022 C 0.10395399453055996 0.10453112300817631 0.102522823688694 0.10208799225759918 0.1028587050993828 0.10267627110686432 C 0.102522823688694 0.10208799225759918 0.1022354555088883 0.10065347901956359 0.10232449116467322 0.10094244931774941" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.36732096988155616,0.1080376619410407) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13927407624918764 0.11494064313237914 C 0.13933127928884634 0.11509404947375941 0.1400333718446166 0.11710131715440501 0.13996051272509216 0.11678151922894231 C 0.1400333718446166 0.11710131715440501 0.14016404176334663 0.11894460982201406 0.1401483856834809 0.11877821823793162" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401483856834809 0.11877821823793162 C 0.14008592538884884 0.11892909029592914 0.1392432166132063 0.12084917845909257 0.13939886214789624 0.12058868293390182 C 0.1392432166132063 0.12084917845909257 0.13818745402714377 0.12201378800741391 0.13828063926720166 0.12190416454022068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13828063926720166 0.12190416454022068 C 0.1382581782943265 0.12197650870268859 0.1379459636303936 0.12289078824189147 0.1380111075926995 0.12277229448983551 C 0.1379459636303936 0.12289078824189147 0.1374047605966627 0.12337982842592721 0.1374989117195311 0.1233260895648921 C 0.1374047605966627 0.12337982842592721 0.13678336355218673 0.12339174550785456 0.1368812941182786 0.12341716082225682 C 0.13678336355218673 0.12339174550785456 0.13624827533321193 0.12292334631519479 0.13632374492642862 0.12302110579206496 C 0.13624827533321193 0.12292334631519479 0.13594287239589217 0.12210013803335656 0.13597565899967817 0.12224404709981479 C 0.13594287239589217 0.12210013803335656 0.1359265262377732 0.12121504281912897 0.13593030568099668 0.12129419699456634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13593030568099668 0.12129419699456634 C 0.13586909713365702 0.12114450466220608 0.13511206281938604 0.11917526715695798 0.13519580311292068 0.11949788900624317 C 0.13511206281938604 0.11917526715695798 0.1349028904123859 0.11724980528621914 0.1349254221585809 0.11742273480314407" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1349254221585809 0.11742273480314407 C 0.1349798708074953 0.1172745370659282 0.13572357030623342 0.11538104250754051 0.1355788059455537 0.11564436195655374 C 0.13572357030623342 0.11538104250754051 0.136752910198503 0.11414777970318803 0.13666259448673768 0.1142629014149854" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3668895384346244,0.11153636618789624) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10507744431621716 0.10798598340991866 C 0.10504959812113357 0.10771564802906818 0.10477603774015294 0.10577062478648538 0.10491036714571561 0.10636397112481577 C 0.10477603774015294 0.10577062478648538 0.10436378285401093 0.10388315047722285 0.10427146788284113 0.10442590537993637 C 0.10436378285401093 0.10388315047722285 0.10576530304008097 0.10254155290094044 0.10546425697273445 0.10310744170853463 C 0.10576530304008097 0.10254155290094044 0.10607774428692023 0.10103057253437124 0.10607774428692023 0.10103057253437124 C 0.10607774428692023 0.10103057253437124 0.10516321090538794 0.10367333051612881 0.10546425697273445 0.10310744170853463 C 0.10516321090538794 0.10367333051612881 0.10394249486763892 0.10425677545993409 0.10427146788284113 0.10442590537993637 C 0.10394249486763892 0.10425677545993409 0.10335642487916563 0.10141280343645388 0.10349041888152116 0.1020926621885209 C 0.10335642487916563 0.10141280343645388 0.1034636846999057 0.1000557679807032 0.10346750386870791 0.1003467528675343" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.36258273363281945,0.09379935537513909) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.16097093293009698 0.15850918993701166 C 0.16143111532937388 0.15862053007064086 0.1672628993915655 0.16022872287779263 0.16649312172141983 0.15984527154056216 C 0.1672628993915655 0.16022872287779263 0.17051786024271376 0.16338271718737854 0.170208264971845 0.16311060598377727" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.170208264971845 0.16311060598377727 C 0.17053678990226104 0.16377518821290205 0.17465775364777267 0.17249210658827452 0.17415056413683755 0.1710855927332746 C 0.17465775364777267 0.17249210658827452 0.17647320368358535 0.18073070386965173 0.17629453910306628 0.17998877224377657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17629453910306628 0.17998877224377657 C 0.17649067199868532 0.1811984098150103 0.179295854719236 0.19657522730882543 0.17864813385049472 0.19450442309858115 C 0.179295854719236 0.19657522730882543 0.18451877750108409 0.20569958940571856 0.18406718952796183 0.204838422766708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18406718952796183 0.204838422766708 C 0.18336071494090359 0.2041449284058554 0.17447177370151998 0.19473900784938702 0.17558949448326283 0.19651649043647698 C 0.17447177370151998 0.19473900784938702 0.17024329395236307 0.18242464349539123 0.17065454014704767 0.1835086317216286" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17065454014704767 0.1835086317216286 C 0.1703722650534301 0.18272294127471922 0.16682275202404784 0.1727063774088104 0.16726723902363658 0.17408034635871608 C 0.16682275202404784 0.1727063774088104 0.16515848424601154 0.16643272581976415 0.1653206961519827 0.16702100432276046" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1653206961519827 0.16702100432276046 C 0.16517772454008642 0.16656846421874874 0.1632425565407368 0.16088120520914087 0.16360503680922728 0.16159052307461994 C 0.1632425565407368 0.16088120520914087 0.16075142427350278 0.1582524121755443 0.16097093293009698 0.15850918993701166" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.36258273363281945,0.09379935537513909) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.10648393038153622 0.11887768801473893 C 0.1070968320450803 0.1194511670553201 0.11472760574508542 0.12695428066636855 0.11383875034406515 0.12575943650171315 C 0.11472760574508542 0.12695428066636855 0.11742614893125569 0.133837183114678 0.11715019519377949 0.13321581799060378" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11715019519377949 0.13321581799060378 C 0.11707268932981828 0.1327099560542581 0.11589519496597309 0.12616412446643366 0.11622012482624497 0.12714547475445556 C 0.11589519496597309 0.12616412446643366 0.11300361287420625 0.12096412618266458 0.11325103687051692 0.12143961453434081" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11325103687051692 0.12143961453434081 C 0.11378204465253083 0.12191059681994867 0.12028258547243795 0.12748981611744364 0.11962313025468387 0.1270914019616352 C 0.12028258547243795 0.12748981611744364 0.1212929469193061 0.12614801627424274 0.12116449948356593 0.12622058440404216" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12116449948356593 0.12622058440404216 C 0.121113973408931 0.12649552831432762 0.12028610794764526 0.1296436704632299 0.12055818658794679 0.12951991132746754 C 0.12028610794764526 0.1296436704632299 0.11767800323428106 0.12755450925866735 0.11789955579994765 0.12770569403319043" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11789955579994765 0.12770569403319043 C 0.11796482463950506 0.12811925014781053 0.11878904443521408 0.13391488805061172 0.11868278187463653 0.13266836740863172 C 0.11878904443521408 0.13391488805061172 0.11921570024789849 0.14349690626431036 0.11917470652687834 0.14266394173695046" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11917470652687834 0.14266394173695046 C 0.11882790868960244 0.14176530186448585 0.11441009224215441 0.13049327521586654 0.11501313247956749 0.13188026326737512 C 0.11441009224215441 0.13049327521586654 0.11168198127778425 0.12553173693980363 0.11193822367792143 0.1260200851188476" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11193822367792143 0.1260200851188476 C 0.11206516137869497 0.1267111848577571 0.1135211140739709 0.1358650739248815 0.11346147608720392 0.13431328198576137 C 0.1135211140739709 0.1358650739248815 0.11258657980511882 0.14550228058849993 0.11265387951912537 0.14464158838828928" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11265387951912537 0.14464158838828928 C 0.11234041729852984 0.14350496113788666 0.10825454412739596 0.12942908593161567 0.10889233287197905 0.13100206138345796 C 0.10825454412739596 0.12942908593161567 0.10467608806014064 0.12532953476474226 0.10500041458412822 0.12576588296618194" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10500041458412822 0.12576588296618194 C 0.10516080089205528 0.12625202476450328 0.10717402874778824 0.13264154513404067 0.10692505027925285 0.13159958454603807 C 0.10717402874778824 0.13264154513404067 0.10807674836716125 0.13882522881189427 0.1079881562065529 0.13826941002221302" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1079881562065529 0.13826941002221302 C 0.1077296277080091 0.13747950830778016 0.10409226208662997 0.12715268247397696 0.10488581422402728 0.12879058944901867 C 0.10409226208662997 0.12715268247397696 0.09793050691893171 0.11776652106110376 0.09846553055778522 0.1186145263217126" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09846553055778522 0.1186145263217126 C 0.09928493744951397 0.11929483190596185 0.10944341683334906 0.12818907589524733 0.1082984132585302 0.1267781933327036 C 0.10944341683334906 0.12818907589524733 0.1125311701387017 0.13627569405053186 0.11220557345561159 0.13554511707223738" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11220557345561159 0.13554511707223738 C 0.1120378542107321 0.13478521090022516 0.10971613892755144 0.12503729058663263 0.11019294251705772 0.12642624300809083 C 0.10971613892755144 0.12503729058663263 0.10617484603690944 0.11824864176529294 0.10648393038153622 0.11887768801473893" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3347665044579903,0.09469060430334211) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.1624443938762119 0.15936321005773862 C 0.16263909100326432 0.15935792123573728 0.16523262003195344 0.1595294720361198 0.16478075940084097 0.1592997441937224 C 0.16523262003195344 0.1595294720361198 0.16812388495362146 0.16235496083090642 0.1678667214495614 0.16211994416650766" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1678667214495614 0.16211994416650766 C 0.1680598752629677 0.16224346329766315 0.17055008391900214 0.16391400822007005 0.17018456721043682 0.16360217374037342 C 0.17055008391900214 0.16391400822007005 0.17242528484750427 0.1660502732714083 0.17225292195234523 0.16586195792286718" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17225292195234523 0.16586195792286718 C 0.17226252911717715 0.16609294284103854 0.1722994822089117 0.1691520605672076 0.17236820793032837 0.1686337769409235 C 0.1722994822089117 0.1691520605672076 0.17134988040909668 0.17236866014638935 0.17142821329534527 0.1720813614382766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17142821329534527 0.1720813614382766 C 0.17112913951185113 0.17205728984899718 0.16727523477084907 0.17175030786018466 0.1678393278934156 0.1717925023669236 C 0.16727523477084907 0.17175030786018466 0.16439407648547438 0.17155690443995011 0.1646590958245468 0.17157502735740962" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1646590958245468 0.17157502735740962 C 0.16447549178144721 0.17144619912745165 0.16217659520921412 0.16968323548271763 0.16245584730735194 0.17002908859791396 C 0.16217659520921412 0.16968323548271763 0.16121242259185473 0.16720776508981516 0.16130807064689298 0.16742478997505353" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16130807064689298 0.16742478997505353 C 0.16127609541145863 0.16708477523782475 0.16101906142412384 0.1626728148018654 0.1609243678216806 0.1633446131283083 C 0.16101906142412384 0.1626728148018654 0.1625710627140895 0.15903142646852447 0.1624443938762119 0.15936321005773862" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33696230500515867,0.09389895795106015) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.16364908444955406 0.15869244215764988 C 0.16394210395504938 0.15872335754562003 0.1676520015776333 0.1593022811217741 0.1671653185154979 0.1590634268132917 C 0.1676520015776333 0.1593022811217741 0.16968294475181872 0.16176663277995124 0.16948928119517867 0.16155869385943897" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16948928119517867 0.16155869385943897 C 0.16960472911172353 0.16176162975739716 0.17113019241628863 0.16446252299572509 0.17087465619371706 0.16399392463493748 C 0.17113019241628863 0.16446252299572509 0.1726958041720643 0.1674475366517197 0.17255571586603757 0.16718187418889027" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17255571586603757 0.16718187418889027 C 0.17265345408508662 0.1674450175850314 0.1738002595003166 0.17082119712465274 0.17372857449462614 0.1703395949425839 C 0.1738002595003166 0.17082119712465274 0.17338988272096445 0.17317955915964406 0.17341593593432303 0.17296110037371634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17341593593432303 0.17296110037371634 C 0.17316430413733808 0.17280163791712988 0.1698713442788349 0.17076462103406384 0.17039635437050377 0.17104755089467877 C 0.1698713442788349 0.17076462103406384 0.1668424365396127 0.1694424746423087 0.16711581483429663 0.16956594204633715" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16711581483429663 0.16956594204633715 C 0.16696328547061143 0.1694589209707862 0.16497003735232207 0.16794324612337178 0.16528546247007408 0.1682816891397256 C 0.16497003735232207 0.16794324612337178 0.16316781766720584 0.16527320390928849 0.16333071342127262 0.16550462585009135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16333071342127262 0.16550462585009135 C 0.16320645240000337 0.16520041970862384 0.16186611208506502 0.16128647017811124 0.16183958116604155 0.16185415215248136 C 0.16186611208506502 0.16128647017811124 0.16379987638984678 0.15842896632474726 0.16364908444955406 0.15869244215764988" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3231917403757077,0.09843056045461346) rotate(0) scale(1,1) translate(-0.1740239204174037,-0.16693920371592752)"><path d="M 0.17998613132484706 0.1500512243110228 C 0.17987128429598642 0.15052487521756736 0.17843547047716193 0.15658298110356153 0.17860796697851944 0.1557350351895576 C 0.17843547047716193 0.15658298110356153 0.17785852383606013 0.16060087028652928 0.177916173308557 0.16022657527906992" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.177916173308557 0.16022657527906992 C 0.1775900088530411 0.16082925716002286 0.17342353723410758 0.16857049088753479 0.17400219984236628 0.16745875785050518 C 0.17342353723410758 0.16857049088753479 0.17071972385670983 0.17407642287950173 0.17097222200945264 0.17356737172342507" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17097222200945264 0.17356737172342507 C 0.17074804546519276 0.1742063097387917 0.16791266390921356 0.18242570076648737 0.1682821034783341 0.18123462790782469 C 0.16791266390921356 0.18242570076648737 0.16639368415514533 0.1884123808706734 0.166538947180006 0.18786024602737736" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.166538947180006 0.18786024602737736 C 0.16650160918534504 0.18862014192648985 0.16625376718160484 0.19965352862257965 0.16609089124407436 0.1969789968167272 C 0.16625376718160484 0.19965352862257965 0.16869367236256314 0.22186926360434667 0.1684934584303717 0.2199546276976067" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1684934584303717 0.2199546276976067 C 0.1681108790527149 0.21834656363828417 0.1634133988536304 0.19839869206664668 0.16390250589849034 0.20065785898573638 C 0.1634133988536304 0.19839869206664668 0.16251764622484932 0.1921935218087631 0.16262417389205247 0.19284462466853028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16262417389205247 0.19284462466853028 C 0.16258391086080143 0.1921006293135003 0.16214132028875258 0.18243686027029865 0.16214101751704 0.18391668040817055 C 0.16214132028875258 0.18243686027029865 0.16266837295556716 0.17435095823122554 0.16262780715260353 0.17508678301406747" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16262780715260353 0.17508678301406747 C 0.16274295821724205 0.1744518878525938 0.16432072116197877 0.16618300993098253 0.16400961992826565 0.16746804107638355 C 0.16432072116197877 0.16618300993098253 0.16655697212623563 0.15901627328532786 0.16636102195716101 0.1596664092692552" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16636102195716101 0.1596664092692552 C 0.1668290117516849 0.15926154290600814 0.17311232527208825 0.1540067474971042 0.17197689949144776 0.15480801291029023 C 0.17311232527208825 0.1540067474971042 0.18065356731096366 0.14965482526108384 0.17998613132484706 0.1500512243110228" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32999469549601246,0.08443790798830217) rotate(0) scale(1,1) translate(-0.17390341090239536,-0.15286408272832677)"><path d="M 0.1761531741775898 0.14831078659221877 C 0.17627230668330476 0.1489085093476148 0.1772429828741997 0.15682005717195366 0.17758276424616945 0.15548345965697102 C 0.1772429828741997 0.15682005717195366 0.1716168838362682 0.16508883153159695 0.1720757977139529 0.16434995677201034" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1720757977139529 0.16434995677201034 C 0.17155605572472113 0.16514257627188497 0.16495803320992555 0.1754623574463087 0.1658388938431718 0.17386139077050605 C 0.16495803320992555 0.1754623574463087 0.16114435147098358 0.1843699040575702 0.16150547011499805 0.1835615568816422" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16150547011499805 0.1835615568816422 C 0.1613917520742534 0.18440027956861835 0.16004105876496277 0.19527103402202203 0.16014085362606226 0.19362622912535601 C 0.16004105876496277 0.19527103402202203 0.16032185496144938 0.20410529785132422 0.16030793178180422 0.20329921564163436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16030793178180422 0.20329921564163436 C 0.16037959221525222 0.2039631925538412 0.16136728461937117 0.21322751146513144 0.1611678569831803 0.2112669385881165 C 0.16136728461937117 0.21322751146513144 0.16282883061883727 0.228122686130622 0.16270106341609442 0.2268260901658139" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16270106341609442 0.2268260901658139 C 0.1624292583574813 0.22521560822584388 0.15904327067966054 0.20511628514698946 0.159439402712737 0.20750030688617366 C 0.15904327067966054 0.20511628514698946 0.1578231520447135 0.1974442894963894 0.15794747901917686 0.19821782929560358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15794747901917686 0.19821782929560358 C 0.15791959815409704 0.19752616690023883 0.1576255861460331 0.1885594569789948 0.15761290863821903 0.18991788055122658 C 0.1576255861460331 0.1885594569789948 0.15814016748583937 0.1812499852519549 0.1580996091129455 0.18191674642882197" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1580996091129455 0.18191674642882197 C 0.15824037231975865 0.18110034785855217 0.16016127457311058 0.1704449697645565 0.15978876759470356 0.17211996358558435 C 0.16016127457311058 0.1704449697645565 0.16280143662542335 0.16095822532572984 0.16256969285382952 0.16181682057648789" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16256969285382952 0.16181682057648789 C 0.16303867673261932 0.16102800109999005 0.1693294561762871 0.1512254840264915 0.1681974993993071 0.15235098685851392 C 0.1693294561762871 0.1512254840264915 0.17681614707578003 0.1479741032366942 0.1761531741775898 0.14831078659221877" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3399204011993512,0.09469060430334211) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.18105844629130935 0.15936321005773862 C 0.18118511512918697 0.15969499364695278 0.18267316594828398 0.1640164114547512 0.18257847234584074 0.1633446131283083 C 0.18267316594828398 0.1640164114547512 0.18216279428519405 0.1677648047122823 0.1821947695206284 0.16742478997505353" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1821947695206284 0.16742478997505353 C 0.18209912146559015 0.1676418148602919 0.1807677407620316 0.1703749417131103 0.1810469928601694 0.17002908859791396 C 0.1807677407620316 0.1703749417131103 0.17866014029987495 0.1717038555873676 0.17884374434297454 0.17157502735740962" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17884374434297454 0.17157502735740962 C 0.17857872500390212 0.17159315027486913 0.17509941915153915 0.1718346968736625 0.17566351227410568 0.1717925023669236 C 0.17509941915153915 0.1718346968736625 0.1717755530886819 0.17210543302755602 0.17207462687217603 0.1720813614382766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17207462687217603 0.1720813614382766 C 0.17199629398592745 0.17179406273016384 0.1710659065157763 0.16811549331463937 0.17113463223719297 0.1686337769409235 C 0.1710659065157763 0.16811549331463937 0.171259525380008 0.16563097300469581 0.17124991821517607 0.16586195792286718" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17124991821517607 0.16586195792286718 C 0.1714222811103351 0.16567364257432604 0.1736837896656498 0.1632903392606768 0.1733182729570845 0.16360217374037342 C 0.1736837896656498 0.1632903392606768 0.17582927253136613 0.16199642503535217 0.17563611871795984 0.16211994416650766" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17563611871795984 0.16211994416650766 C 0.1758932822220199 0.1618849275021089 0.17917394139779275 0.15907001635132498 0.17872208076668028 0.1592997441937224 C 0.17917394139779275 0.15907001635132498 0.18125314341836177 0.15936849887973997 0.18105844629130935 0.15936321005773862" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3377246006521828,0.09389895795106015) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.18227058593155443 0.15869244215764988 C 0.18242137787184715 0.1589559179905525 0.18410662013409046 0.1624218341268515 0.184080089215067 0.16185415215248136 C 0.18410662013409046 0.1624218341268515 0.18246469593856665 0.16580883199155885 0.1825889569598359 0.16550462585009135" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1825889569598359 0.16550462585009135 C 0.18242606120576912 0.1657360477908942 0.18031878279328245 0.16862013215607943 0.18063420791103446 0.1682816891397256 C 0.18031878279328245 0.16862013215607943 0.17865132618312665 0.16967296312188812 0.17880385554681186 0.16956594204633715" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17880385554681186 0.16956594204633715 C 0.17853047725212792 0.16968940945036562 0.17499830591893592 0.1713304807552937 0.17552331601060478 0.17104755089467877 C 0.17499830591893592 0.1713304807552937 0.17225210264980054 0.1731205628303028 0.1725037344467855 0.17296110037371634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1725037344467855 0.17296110037371634 C 0.17247768123342688 0.17271818174511624 0.1722627808921728 0.16956447464844623 0.17219109588648235 0.17004607683051506 C 0.1722627808921728 0.16956447464844623 0.17346169273412002 0.16694319063542154 0.17336395451507097 0.16718187418889027" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17336395451507097 0.16718187418889027 C 0.1735040428210977 0.16691621172606086 0.17530055040996306 0.16352532627414987 0.1750450141873915 0.16399392463493748 C 0.17530055040996306 0.16352532627414987 0.17654583710247473 0.16135575796148077 0.17643038918592988 0.16155869385943897" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17643038918592988 0.16155869385943897 C 0.17662405274256993 0.1613507549389267 0.17924103492774596 0.15882457250480927 0.1787543518656106 0.1590634268132917 C 0.17924103492774596 0.15882457250480927 0.18256360543704975 0.15866152676967973 0.18227058593155443 0.15869244215764988" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3514951652816338,0.09843056045461346) rotate(0) scale(1,1) translate(-0.1740239204174037,-0.16693920371592752)"><path d="M 0.16806170950996024 0.1500512243110228 C 0.16872914549607684 0.15044762336096176 0.17720636712400006 0.15560927832347626 0.17607094134335954 0.15480801291029023 C 0.17720636712400006 0.15560927832347626 0.1821548086721702 0.16007127563250229 0.18168681887764632 0.1596664092692552" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18168681887764632 0.1596664092692552 C 0.18188276904672093 0.16031654525318256 0.1843493221402548 0.16875307222178457 0.18403822090654165 0.16746804107638355 C 0.1843493221402548 0.16875307222178457 0.18553518474684236 0.17572167817554113 0.18542003368220383 0.17508678301406747" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18542003368220383 0.17508678301406747 C 0.18546059948516747 0.1758226077969094 0.18590712608947993 0.18539650054604245 0.18590682331776734 0.18391668040817055 C 0.18590712608947993 0.18539650054604245 0.1853834039115038 0.19358862002356025 0.18542366694275483 0.19284462466853028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18542366694275483 0.19284462466853028 C 0.18531713927555168 0.19349572752829747 0.18365622789145705 0.20291702590482608 0.184145334936317 0.20065785898573638 C 0.18365622789145705 0.20291702590482608 0.17917180302677882 0.22156269175692925 0.1795543824044356 0.2199546276976067" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1795543824044356 0.2199546276976067 C 0.17975459633662705 0.21803999179086675 0.18211982552826345 0.19430446501087476 0.18195694959073297 0.1969789968167272 C 0.18211982552826345 0.19430446501087476 0.18147155566014034 0.18710035012826487 0.1815088936548013 0.18786024602737736" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1815088936548013 0.18786024602737736 C 0.18136363062994063 0.1873081111840813 0.17939629778735272 0.180043555049162 0.17976573735647328 0.18123462790782469 C 0.17939629778735272 0.180043555049162 0.1768514422810948 0.17292843370805844 0.1770756188253547 0.17356737172342507" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1770756188253547 0.17356737172342507 C 0.17682312067261188 0.1730583205673484 0.17346697838418237 0.16634702481347557 0.17404564099244108 0.16745875785050518 C 0.17346697838418237 0.16634702481347557 0.1698055030707344 0.15962389339811697 0.17013166752625028 0.16022657527906992" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17013166752625028 0.16022657527906992 C 0.1700740180537534 0.15985228027161055 0.1692673773549304 0.1548870892755537 0.1694398738562879 0.1557350351895576 C 0.1692673773549304 0.1548870892755537 0.1679468624810996 0.14957757340447825 0.16806170950996024 0.1500512243110228" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34469221016132906,0.08443790798830217) rotate(0) scale(1,1) translate(-0.17390341090239536,-0.15286408272832677)"><path d="M 0.17165364762720095 0.14831078659221877 C 0.17231662052539118 0.14864746994774336 0.1807412791824637 0.15347648969053634 0.17960932240548366 0.15235098685851392 C 0.1807412791824637 0.15347648969053634 0.18570611282975097 0.16260564005298572 0.18523712895096117 0.16181682057648789" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18523712895096117 0.16181682057648789 C 0.185468872722555 0.16267541582724593 0.18839056118849415 0.1737949574066122 0.18801805421008713 0.17211996358558435 C 0.18839056118849415 0.1737949574066122 0.18984797589865843 0.18273314499909177 0.18970721269184526 0.18191674642882197" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18970721269184526 0.18191674642882197 C 0.1897477710647391 0.18258350760568903 0.19020659067438567 0.19127630412345836 0.1901939131665716 0.18991788055122658 C 0.19020659067438567 0.19127630412345836 0.18983146192053404 0.19890949169096833 0.18985934278561387 0.19821782929560358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18985934278561387 0.19821782929560358 C 0.18973501581115051 0.19899136909481777 0.18797128705897728 0.20988432862535786 0.18836741909205373 0.20750030688617366 C 0.18797128705897728 0.20988432862535786 0.18483395333008318 0.2284365721057839 0.1851057583886963 0.2268260901658139" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1851057583886963 0.2268260901658139 C 0.18523352559143916 0.22552949420100576 0.1868383924578013 0.2093063657111015 0.18663896482161044 0.21126693858811646 C 0.1868383924578013 0.2093063657111015 0.1875705504564345 0.2026352387294275 0.1874988900229865 0.20329921564163436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1874988900229865 0.20329921564163436 C 0.18751281320263166 0.2024931334319445 0.18756617331762898 0.19198142422869 0.18766596817872847 0.19362622912535601 C 0.18756617331762898 0.19198142422869 0.18618763364904803 0.18272283419466603 0.18630135168979267 0.1835615568816422" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18630135168979267 0.1835615568816422 C 0.1859402330457782 0.18275320970571418 0.18108706732837265 0.1722604240947034 0.1819679279616189 0.17386139077050605 C 0.18108706732837265 0.1722604240947034 0.17521128210160614 0.1635573372721357 0.17573102409083788 0.16434995677201034" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17573102409083788 0.16434995677201034 C 0.17527211021315314 0.16361108201242372 0.16988427618665147 0.1541468621419884 0.17022405755862122 0.15548345965697102 C 0.16988427618665147 0.1541468621419884 0.17177278013291591 0.14771306383682276 0.17165364762720095 0.14831078659221877" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 63 KiB

View File

@@ -0,0 +1,190 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.1771656262374324 C 0.18214574144411624 0.1771656262374324 0.17854899894242843 0.16901551681725188 0.17814936088668534 0.16964244831111192 C 0.17854899894242843 0.16901551681725188 0.18814031228026268 0.17026937980497195 0.1877406742245196 0.16964244831111192 C 0.18814031228026268 0.17026937980497195 0.18214574144411624 0.1771656262374324 0.18294501755560244 0.1771656262374324 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3129577314292855,0.09061884933651274) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.17925481705303895 0.14316204219110687 C 0.17900585739755417 0.14397200386419928 0.17585558023959355 0.15464767900504547 0.17626730118722164 0.15288158226821574 C 0.17585558023959355 0.15464767900504547 0.17415140438935867 0.165311338096801 0.17431416568150196 0.1643552030330637" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17431416568150196 0.1643552030330637 C 0.174307128633746 0.16548607315197486 0.1741826309257239 0.18016374590219586 0.17422972110843044 0.1779256444599976 C 0.1741826309257239 0.18016374590219586 0.17370903035407276 0.19231965166272988 0.17374908348902335 0.19121242033944277" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17374908348902335 0.19121242033944277 C 0.17375606409466676 0.19237144053219796 0.17403465192327658 0.20698472789108738 0.17383285075674415 0.20512066265250486 C 0.17403465192327658 0.20698472789108738 0.17636551804830136 0.21428624824826017 0.17617069748741235 0.21358120320243285" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17617069748741235 0.21358120320243285 C 0.1756671880739257 0.21192913258786325 0.16949258228273995 0.19169905538006993 0.1701285845255727 0.19375635582759773 C 0.16949258228273995 0.19169905538006993 0.1684061777440731 0.18848836799914107 0.16853867057341923 0.18889359783209927" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16853867057341923 0.18889359783209927 C 0.16836376472925724 0.18763060857245392 0.166405331783732 0.1712789809076184 0.16643980044347526 0.173737726716355 C 0.166405331783732 0.1712789809076184 0.16826548384091927 0.15819289157816857 0.1681250466565005 0.15938864812725984" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1681250466565005 0.15938864812725984 C 0.16851897063736404 0.15855282415218497 0.1737796152932411 0.14800654326501517 0.1728521344268629 0.14935876042636126 C 0.1737796152932411 0.14800654326501517 0.17978837393855363 0.14264564900483567 0.17925481705303895 0.14316204219110687" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33292955934003177,0.07935596154029032) rotate(0) scale(1,1) translate(-0.18233721705154246,-0.14882968924032608)"><path d="M 0.18828821864890796 0.14113418372672246 C 0.18836646102394544 0.14150898248647367 0.18913239098202225 0.14631973628867928 0.18922712714935755 0.14563176884373713 C 0.18913239098202225 0.14631973628867928 0.18697840609851163 0.14970296175121933 0.1871513846408844 0.1493897930660284" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1871513846408844 0.1493897930660284 C 0.18721876009674024 0.1504108899006494 0.18687894329708687 0.16283860183781473 0.18795989011115438 0.1616429550814805 C 0.18687894329708687 0.16283860183781473 0.17303170060215112 0.16391210406375242 0.17418002287207446 0.1637375541420392" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17418002287207446 0.1637375541420392 C 0.17359102955905809 0.1642576837770685 0.16635956998295798 0.17133490449497765 0.16711210311587787 0.1699791097623909 C 0.16635956998295798 0.17133490449497765 0.16498608545713211 0.18084275603063774 0.16514962527703564 0.1800070909330803" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16514962527703564 0.1800070909330803 C 0.1651496179234639 0.18098121284829927 0.16530066389865491 0.1949925073517875 0.16514953703417462 0.1916965539157079 C 0.16530066389865491 0.1949925073517875 0.16711428186885124 0.2218803636868961 0.1669631476507992 0.21955853216603546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1669631476507992 0.21955853216603546 C 0.16653391062426737 0.21751830302071234 0.1612033926067959 0.19116059801135193 0.16181230333241722 0.1950757824221582 C 0.1612033926067959 0.19116059801135193 0.1594765452442537 0.1707013639708772 0.1596562189433432 0.17257631923636035" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1596562189433432 0.17257631923636035 C 0.1598985129525078 0.17123351663642683 0.1634050583180737 0.1542154821064634 0.16256374705331844 0.1564626880371581 C 0.1634050583180737 0.1542154821064634 0.17035097137599706 0.1447054447372627 0.1697519541204064 0.1456098480680239" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1697519541204064 0.1456098480680239 C 0.17053395836359297 0.14520622085288737 0.18068069374935394 0.14039334945794385 0.1791360050386455 0.14076632148638563 C 0.18068069374935394 0.14039334945794385 0.18905090311642983 0.1411648389134172 0.18828821864890796 0.14113418372672246" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3129577314292855,0.09061884933651274) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.13069183421722966 0.12068269020483846 C 0.13036681575967493 0.12122995694988857 0.12621555211079402 0.1284443930246756 0.12679161272657288 0.12724989114543975 C 0.12621555211079402 0.1284443930246756 0.12352806466965921 0.13566394788985472 0.12377910682788335 0.13501671275566896" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12377910682788335 0.13501671275566896 C 0.12414157952411665 0.13446523328075416 0.12913884366769532 0.12739971245496157 0.1281287791826831 0.12839895905669127 C 0.12913884366769532 0.12739971245496157 0.13654747243680893 0.12257798640809778 0.13589988064803002 0.12302575353491266" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13589988064803002 0.12302575353491266 C 0.13539437873566548 0.12371922201263424 0.12904868222953228 0.13255953446903837 0.12983385769965552 0.13134737526757173 C 0.12904868222953228 0.13255953446903837 0.12619810144879237 0.13809035467625744 0.12647777500655108 0.13757166395251239" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12647777500655108 0.13757166395251239 C 0.12664853967736897 0.13704070476204733 0.12889094249315844 0.13036250603737035 0.12852695105636577 0.13120015366693152 C 0.12889094249315844 0.13036250603737035 0.13103889901403795 0.12721320395868213 0.13084567224806318 0.12751989239777825" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13084567224806318 0.12751989239777825 C 0.13051554020458483 0.127901974347292 0.12609418315057258 0.1334645795139699 0.12688408772632306 0.13210487579194338 C 0.12609418315057258 0.1334645795139699 0.1209070448067851 0.14481395883460926 0.12136681733905726 0.1438363370620965" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12136681733905726 0.1438363370620965 C 0.12147369073526561 0.1430053064557728 0.12296816730515658 0.1324358587511487 0.12264929809355749 0.13386396978621223 C 0.12296816730515658 0.1324358587511487 0.12540524369363718 0.12610192421259409 0.12519324787824643 0.12669900464133393" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12519324787824643 0.12669900464133393 C 0.12490144864543648 0.1271461424367952 0.1211003716439178 0.13333632344793278 0.1216916570845271 0.13206465818686924 C 0.1211003716439178 0.13333632344793278 0.11779833638313551 0.14278351523969873 0.11809782259093486 0.14195898777409646" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11809782259093486 0.14195898777409646 C 0.1181333883413351 0.14115480507127032 0.11864561181700574 0.13113536627322506 0.11852461159573772 0.13230879534018286 C 0.11864561181700574 0.13113536627322506 0.11963525971701873 0.12750859260647124 0.11954982524615096 0.1278778389706029" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11954982524615096 0.1278778389706029 C 0.1193347887996369 0.12799927425063642 0.11671458917513124 0.12919612388348212 0.11696938788798222 0.1293350623310053 C 0.11671458917513124 0.12919612388348212 0.11645247842560222 0.12595020387276798 0.11649224069193914 0.1262105776003247" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11649224069193914 0.1262105776003247 C 0.11663230379888526 0.12630411382343923 0.11880804816267304 0.1270270266120247 0.11817299797529258 0.127333012277699 C 0.11880804816267304 0.1270270266120247 0.12460783002093896 0.12213922772344427 0.12411284294050462 0.12253874961223309" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12411284294050462 0.12253874961223309 C 0.12388537181644317 0.12294277731135712 0.12101677222852791 0.12825182971688268 0.12138318945176717 0.12738708200172147 C 0.12101677222852791 0.12825182971688268 0.11957689016245573 0.13337644221020473 0.11971583626163354 0.13291572219416756" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11971583626163354 0.13291572219416756 C 0.1200448038990352 0.13237559387962655 0.12457811440675308 0.12541476308723157 0.1236634479104534 0.12643418241967566 C 0.12457811440675308 0.12541476308723157 0.1312775330761277 0.12020339918693536 0.13069183421722966 0.12068269020483846" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3617291742280557,0.09061884933651274) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.1647368583287578 0.14316204219110687 C 0.1652704152142725 0.14367843537737807 0.17206702182131223 0.15071097758770735 0.17113954095493403 0.14935876042636126 C 0.17206702182131223 0.15071097758770735 0.17626055270615978 0.1602244721023347 0.17586662872529626 0.15938864812725984" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17586662872529626 0.15938864812725984 C 0.17600706590971504 0.1605844046763511 0.17751740627857834 0.17619647252509163 0.17755187493832156 0.173737726716355 C 0.17751740627857834 0.17619647252509163 0.17527809896421562 0.19015658709174463 0.1754530048083776 0.18889359783209927" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1754530048083776 0.18889359783209927 C 0.1753205119790315 0.18929882766505748 0.17322708861339148 0.19581365627512554 0.17386309085622423 0.19375635582759773 C 0.17322708861339148 0.19581365627512554 0.1673174684808978 0.21523327381700244 0.16782097789438444 0.21358120320243285" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16782097789438444 0.21358120320243285 C 0.16801579845527345 0.21287615815660552 0.1703606257915851 0.20325659741392235 0.17015882462505266 0.20512066265250486 C 0.1703606257915851 0.20325659741392235 0.17024957249841688 0.1900534001466876 0.17024259189277346 0.19121242033944277" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17024259189277346 0.19121242033944277 C 0.17020253875782287 0.19010518901615567 0.16971486409065997 0.17568754301779932 0.16976195427336652 0.1779256444599976 C 0.16971486409065997 0.17568754301779932 0.16967047265253885 0.16322433291415253 0.16967750970029483 0.1643552030330637" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16967750970029483 0.1643552030330637 C 0.16951474840815153 0.16339906796932638 0.16731265324694708 0.151115485531386 0.16772437419457517 0.15288158226821574 C 0.16731265324694708 0.151115485531386 0.16448789867327304 0.14235208051801446 0.1647368583287578 0.14316204219110687" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34175734631730964,0.07935596154029032) rotate(0) scale(1,1) translate(-0.17728282351693694,-0.14882968924032608)"><path d="M 0.1713318219195714 0.14113418372672246 C 0.17209450638709325 0.14110352854002772 0.18202872424054223 0.1411392935148274 0.18048403552983378 0.14076632148638563 C 0.18202872424054223 0.1411392935148274 0.19065009069125952 0.14601347528316044 0.18986808644807293 0.1456098480680239" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18986808644807293 0.1456098480680239 C 0.1904671037036636 0.1465142513987851 0.1978976047799161 0.1587098939678528 0.19705629351516085 0.1564626880371581 C 0.1978976047799161 0.1587098939678528 0.20020611563430069 0.17391912183629388 0.1999638216251361 0.17257631923636035" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1999638216251361 0.17257631923636035 C 0.1997841479260466 0.1744512745018435 0.1971988265104408 0.19899096683296447 0.19780773723606213 0.1950757824221582 C 0.1971988265104408 0.19899096683296447 0.19222765589114826 0.22159876131135858 0.1926568929176801 0.21955853216603546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1926568929176801 0.21955853216603546 C 0.19280802713573214 0.21723670064517484 0.194621630398785 0.18840060047962828 0.1944705035343047 0.1916965539157079 C 0.194621630398785 0.18840060047962828 0.1944704079378719 0.1790329690178613 0.19447041529144365 0.1800070909330803" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19447041529144365 0.1800070909330803 C 0.19430687547154013 0.17917142583552284 0.1917554043196815 0.16862331502980413 0.1925079374526014 0.1699791097623909 C 0.1917554043196815 0.16862331502980413 0.18485102438338852 0.16321742450700988 0.1854400176964049 0.1637375541420392" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1854400176964049 0.1637375541420392 C 0.18429169542648155 0.16356300422032596 0.17057920364325746 0.16044730832514625 0.17166015045732497 0.1616429550814805 C 0.17057920364325746 0.16044730832514625 0.17253603138345072 0.1483686962314074 0.1724686559275949 0.1493897930660284" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1724686559275949 0.1493897930660284 C 0.17239744610048335 0.14905476874579787 0.1715194018349212 0.14468153377832008 0.1716141380022565 0.14536950122326223 C 0.1715194018349212 0.14468153377832008 0.17130829557934762 0.1407812406020108 0.1713318219195714 0.14113418372672246" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3617291742280557,0.09061884933651274) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.10754295249757771 0.12068269020483846 C 0.10812865135647573 0.12116198122274156 0.1154860053006536 0.12745360175211976 0.11457133880435393 0.12643418241967566 C 0.1154860053006536 0.12745360175211976 0.11884791809057545 0.13345585050870856 0.11851895045317379 0.13291572219416756" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11851895045317379 0.13291572219416756 C 0.118380004353996 0.1324550021781304 0.11648518003980096 0.12652233428656026 0.11685159726304022 0.12738708200172147 C 0.11648518003980096 0.12652233428656026 0.11389447265024132 0.12213472191310905 0.11412194377430276 0.12253874961223309" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11412194377430276 0.12253874961223309 C 0.11461693085473709 0.1229382715010219 0.12069683892689521 0.1276389979433733 0.12006178873951476 0.127333012277699 C 0.12069683892689521 0.1276389979433733 0.12188260912981433 0.12611704137721017 0.12174254602286821 0.1262105776003247" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12174254602286821 0.1262105776003247 C 0.12170278375653129 0.12647095132788141 0.1210106001139741 0.1294740007785285 0.12126539882682509 0.1293350623310053 C 0.1210106001139741 0.1294740007785285 0.11846992502214237 0.12775640369056937 0.11868496146865642 0.1278778389706029" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11868496146865642 0.1278778389706029 C 0.1187703959395242 0.12824708533473456 0.11983117534033762 0.13348222440714066 0.11971017511906962 0.13230879534018286 C 0.11983117534033762 0.13348222440714066 0.12017252987427268 0.1427631704769226 0.12013696412387245 0.14195898777409646" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12013696412387245 0.14195898777409646 C 0.1198374779160731 0.1411344603084942 0.1159518441896709 0.1307929929258057 0.1165431296302802 0.13206465818686924 C 0.1159518441896709 0.1307929929258057 0.11274973960375095 0.12625186684587267 0.1130415388365609 0.12669900464133393" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1130415388365609 0.12669900464133393 C 0.11325353465195165 0.12729608507007378 0.11590435783284897 0.13529208082127578 0.11558548862124987 0.13386396978621223 C 0.11590435783284897 0.13529208082127578 0.11697484277195845 0.1446673676684202 0.1168679693757501 0.1438363370620965" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1168679693757501 0.1438363370620965 C 0.11640819684347796 0.14285871528958374 0.11056079441273385 0.13074517206991687 0.11135069898848435 0.13210487579194338 C 0.11056079441273385 0.13074517206991687 0.10705898242326585 0.1271378104482645 0.10738911446674419 0.12751989239777825" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10738911446674419 0.12751989239777825 C 0.10758234123271897 0.12782658083687437 0.11007182709523419 0.1320378012964927 0.10970783565844153 0.13120015366693152 C 0.11007182709523419 0.1320378012964927 0.11192777637907414 0.13810262314297744 0.11175701170825625 0.13757166395251239" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11175701170825625 0.13757166395251239 C 0.11147733815049754 0.13705297322876733 0.10761575354502857 0.1301352160661051 0.1084009290151518 0.13134737526757173 C 0.10761575354502857 0.1301352160661051 0.10182940415441287 0.12233228505719107 0.1023349060667774 0.12302575353491266" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1023349060667774 0.12302575353491266 C 0.10298249785555631 0.12347352066172754 0.11111607201713647 0.12939820565842097 0.11010600753212425 0.12839895905669127 C 0.11111607201713647 0.12939820565842097 0.11481815258315732 0.13556819223058375 0.11445567988692401 0.13501671275566896" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11445567988692401 0.13501671275566896 C 0.11420463772869988 0.13436947762148319 0.11086711337245554 0.12605538926620388 0.1114431739882344 0.12724989114543975 C 0.11086711337245554 0.12605538926620388 0.10721793404002299 0.12013542345978835 0.10754295249757771 0.12068269020483846" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3347665044579903,0.09469060430334211) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.1624443938762119 0.15936321005773862 C 0.16263909100326432 0.15935792123573728 0.16523262003195344 0.1595294720361198 0.16478075940084097 0.1592997441937224 C 0.16523262003195344 0.1595294720361198 0.16812388495362146 0.16235496083090642 0.1678667214495614 0.16211994416650766" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1678667214495614 0.16211994416650766 C 0.1680598752629677 0.16224346329766315 0.17055008391900214 0.16391400822007005 0.17018456721043682 0.16360217374037342 C 0.17055008391900214 0.16391400822007005 0.17242528484750427 0.1660502732714083 0.17225292195234523 0.16586195792286718" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17225292195234523 0.16586195792286718 C 0.17226252911717715 0.16609294284103854 0.1722994822089117 0.1691520605672076 0.17236820793032837 0.1686337769409235 C 0.1722994822089117 0.1691520605672076 0.17134988040909668 0.17236866014638935 0.17142821329534527 0.1720813614382766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17142821329534527 0.1720813614382766 C 0.17112913951185113 0.17205728984899718 0.16727523477084907 0.17175030786018466 0.1678393278934156 0.1717925023669236 C 0.16727523477084907 0.17175030786018466 0.16439407648547438 0.17155690443995011 0.1646590958245468 0.17157502735740962" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1646590958245468 0.17157502735740962 C 0.16447549178144721 0.17144619912745165 0.16217659520921412 0.16968323548271763 0.16245584730735194 0.17002908859791396 C 0.16217659520921412 0.16968323548271763 0.16121242259185473 0.16720776508981516 0.16130807064689298 0.16742478997505353" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16130807064689298 0.16742478997505353 C 0.16127609541145863 0.16708477523782475 0.16101906142412384 0.1626728148018654 0.1609243678216806 0.1633446131283083 C 0.16101906142412384 0.1626728148018654 0.1625710627140895 0.15903142646852447 0.1624443938762119 0.15936321005773862" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33696230500515867,0.09389895795106015) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.16364908444955406 0.15869244215764988 C 0.16394210395504938 0.15872335754562003 0.1676520015776333 0.1593022811217741 0.1671653185154979 0.1590634268132917 C 0.1676520015776333 0.1593022811217741 0.16968294475181872 0.16176663277995124 0.16948928119517867 0.16155869385943897" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16948928119517867 0.16155869385943897 C 0.16960472911172353 0.16176162975739716 0.17113019241628863 0.16446252299572509 0.17087465619371706 0.16399392463493748 C 0.17113019241628863 0.16446252299572509 0.1726958041720643 0.1674475366517197 0.17255571586603757 0.16718187418889027" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17255571586603757 0.16718187418889027 C 0.17265345408508662 0.1674450175850314 0.1738002595003166 0.17082119712465274 0.17372857449462614 0.1703395949425839 C 0.1738002595003166 0.17082119712465274 0.17338988272096445 0.17317955915964406 0.17341593593432303 0.17296110037371634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17341593593432303 0.17296110037371634 C 0.17316430413733808 0.17280163791712988 0.1698713442788349 0.17076462103406384 0.17039635437050377 0.17104755089467877 C 0.1698713442788349 0.17076462103406384 0.1668424365396127 0.1694424746423087 0.16711581483429663 0.16956594204633715" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16711581483429663 0.16956594204633715 C 0.16696328547061143 0.1694589209707862 0.16497003735232207 0.16794324612337178 0.16528546247007408 0.1682816891397256 C 0.16497003735232207 0.16794324612337178 0.16316781766720584 0.16527320390928849 0.16333071342127262 0.16550462585009135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16333071342127262 0.16550462585009135 C 0.16320645240000337 0.16520041970862384 0.16186611208506502 0.16128647017811124 0.16183958116604155 0.16185415215248136 C 0.16186611208506502 0.16128647017811124 0.16379987638984678 0.15842896632474726 0.16364908444955406 0.15869244215764988" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.3129577314292855,0.09061884933651274) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18148015649647106 0.13016232655993948 C 0.18147553236232805 0.13038164708146308 0.1813671065335975 0.1332044962385103 0.18142466688675496 0.1327941728182226 C 0.1813671065335975 0.1332044962385103 0.18073649603956715 0.13527721050215613 0.1807894322585816 0.13508620760339202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1807894322585816 0.13508620760339202 C 0.1806622462676783 0.13518192422694025 0.17899422117560104 0.1363517613488291 0.179263200367742 0.13623480708597085 C 0.17899422117560104 0.1363517613488291 0.17741988875165277 0.13651089639700087 0.1775616819528904 0.13648965875769087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1775616819528904 0.13648965875769087 C 0.17750843185644288 0.13654312431137666 0.17680617056274922 0.13719016130215148 0.17692268079552015 0.13713124540192034 C 0.17680617056274922 0.13719016130215148 0.17604397934955765 0.1371580746304593 0.17616355915963938 0.13719664956046437 C 0.17604397934955765 0.1371580746304593 0.17539711500068944 0.13654261660296105 0.1754877230745395 0.1366683462418594 C 0.17539711500068944 0.13654261660296105 0.17503890429603605 0.13550869870110005 0.1750762622734386 0.13568789389368419 C 0.17503890429603605 0.13550869870110005 0.17506532950462977 0.13433335839172017 0.17503942734570893 0.13451800393084964 C 0.17506532950462977 0.13433335839172017 0.1754160599167205 0.1333849927152373 0.17538708818048884 0.13347214742413055" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17538708818048884 0.13347214742413055 C 0.17538603197067146 0.13325268898499967 0.17542190645207656 0.1304143527743947 0.17537441366268022 0.13083864615456 C 0.17542190645207656 0.1304143527743947 0.17600555065245857 0.12817579192111234 0.17595700165324485 0.12838062686214677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17595700165324485 0.12838062686214677 C 0.1760748007102479 0.12827962898006276 0.17762950196566113 0.12703772805440292 0.1773705903372813 0.12716865227713875 C 0.17762950196566113 0.12703772805440292 0.17920505376517942 0.126779609848665 0.17906394119380264 0.1268095361893168" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31105889954006194,0.09386633519465398) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1074426825075449 0.10260728048883422 C 0.10725458299105614 0.10281871455667363 0.10577954796671585 0.10418509197839254 0.10631408540861231 0.10387588489587068 C 0.10577954796671585 0.10418509197839254 0.10387777810458945 0.1041026467690811 0.10423545785616607 0.10446252298396536 C 0.10387777810458945 0.1041026467690811 0.10429935432234501 0.10084968350298185 0.10416800689915257 0.10171662760656518 C 0.10429935432234501 0.10084968350298185 0.10502354239532076 0.09926085836246534 0.10502354239532076 0.09926085836246534 C 0.10502354239532076 0.09926085836246534 0.10403665947596012 0.10258357171014851 0.10416800689915257 0.10171662760656518 C 0.10403665947596012 0.10258357171014851 0.10396018699109025 0.10500381473697916 0.10423545785616607 0.10446252298396536 C 0.10396018699109025 0.10500381473697916 0.10203664999233049 0.10520855078643669 0.10251638170869759 0.10496437812464798 C 0.10203664999233049 0.10520855078643669 0.10116384853284113 0.10608808909303921 0.10135706755796349 0.1059275589546976" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.30916006765083837,0.09711382105279523) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13938203154071174 0.11521981853458556 C 0.13943455045636835 0.1153999045620633 0.14007069967994484 0.11774760369523599 0.140012258528591 0.11738085086431846 C 0.14007069967994484 0.11774760369523599 0.14008924759265498 0.11980751930903569 0.14008332535695775 0.1196208525055959" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008332535695775 0.1196208525055959 C 0.14000434981268098 0.11977579372894688 0.13894666314675927 0.12173874192106711 0.13913561882563655 0.12148014718580766 C 0.13894666314675927 0.12173874192106711 0.13770587707582996 0.12282764284061776 0.13781585721043046 0.12272398932870929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13781585721043046 0.12272398932870929 C 0.13778622829392562 0.12279968322781969 0.1373805815175252 0.12375100142237923 0.13746031021237215 0.12363231611803409 C 0.1373805815175252 0.12375100142237923 0.13675186664889322 0.12418997378513073 0.13685911287226693 0.12414821298085103 C 0.13675186664889322 0.12418997378513073 0.1360673283189315 0.1240870922998228 0.1361733555318877 0.12413344576939055 C 0.1360673283189315 0.1240870922998228 0.13551038802034132 0.12346992397735988 0.13558678631679266 0.12359197134603803 C 0.13551038802034132 0.12346992397735988 0.13523027745636249 0.1225038385713399 0.13525657597447172 0.12266887734525278 C 0.13523027745636249 0.1225038385713399 0.13527242310989956 0.12152339178523588 0.13527120409948204 0.12161150605908334" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13527120409948204 0.12161150605908334 C 0.13521402556617335 0.12143477334411107 0.13451483974698414 0.119118810262991 0.13458506169977755 0.11949071347941605 C 0.13451483974698414 0.119118810262991 0.13441549724647633 0.11695349696052988 0.13442854066596105 0.11714866746198266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13442854066596105 0.11714866746198266 C 0.13449851923737888 0.11699518332603626 0.13544545840041256 0.11504311270985879 0.13526828352297487 0.11530685783062576 C 0.13544545840041256 0.11504311270985879 0.13666183550123326 0.11387346502795832 0.13655463919521338 0.1139837260127789" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3084476652943351,0.10089680876290223) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645980520642277 0.10101608235456618 C 0.10636093758351041 0.10130170686355712 0.10551079656701257 0.10330579218795909 0.10586659946894861 0.10272982940851184 C 0.10551079656701257 0.10330579218795909 0.10394145622525501 0.10439916005173182 0.10432498779480648 0.10447185903124966 C 0.10394145622525501 0.10439916005173182 0.10344985643637755 0.1015128125219442 0.10356541005163979 0.10229363553140484 C 0.10344985643637755 0.1015128125219442 0.10363166610323309 0.0997869209744858 0.10363166610323309 0.0997869209744858 C 0.10363166610323309 0.0997869209744858 0.10368096366690202 0.10307445854086549 0.10356541005163979 0.10229363553140484 C 0.10368096366690202 0.10307445854086549 0.10423980617594346 0.10507726159011721 0.10432498779480648 0.10447185903124966 C 0.10423980617594346 0.10507726159011721 0.1027264438814729 0.10641602037319747 0.1030543203384617 0.10592605088461013 C 0.1027264438814729 0.10641602037319747 0.10224163050527574 0.10765928014246767 0.10235772905287373 0.10741167596277373" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.30773526293783193,0.1046797964730093) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928487422229538 0.11430959349649668 C 0.13937119639072942 0.11442786040679763 0.1404564077751189 0.11599710921464265 0.14032074024350402 0.11572879642010804 C 0.1404564077751189 0.11599710921464265 0.1409622299648547 0.11767939291514576 0.14091288460167387 0.11752934703091208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14091288460167387 0.11752934703091208 C 0.1408844503444628 0.11770136905167897 0.1404769467472478 0.11991305536065672 0.1405716735151412 0.11959361128011461 C 0.1404769467472478 0.11991305536065672 0.13970987087627104 0.12151009805719255 0.13977616338695337 0.12136267599741733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13977616338695337 0.12136267599741733 C 0.13976967823617864 0.12144164740239999 0.1396606515528085 0.12245298702303878 0.13969834157765676 0.12231033285720928 C 0.1396606515528085 0.12245298702303878 0.1392451149381362 0.12316953912058846 0.1393238830887742 0.12307452598737131 C 0.1392451149381362 0.12316953912058846 0.13865438335592595 0.12347240386410402 0.1387531237700009 0.1234504904558151 C 0.13865438335592595 0.12347240386410402 0.13804674285657448 0.12328042889014457 0.1381389981198747 0.12333748688683831 C 0.13804674285657448 0.12328042889014457 0.13758501022117137 0.12264505373794958 0.13764606061039805 0.12276579449549016 C 0.13758501022117137 0.12264505373794958 0.13738642118571745 0.1218154980714231 0.13740639344915442 0.12188859779635133" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13740639344915442 0.12188859779635133 C 0.13731701539540914 0.1217757236232629 0.1361872181154768 0.12026822974789875 0.13633385680421112 0.12053410771929016 C 0.1361872181154768 0.12026822974789875 0.1355894685493536 0.11854505834135148 0.13564672918434265 0.11869806213965446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13564672918434265 0.11869806213965446 C 0.13566806828899047 0.11853232928856203 0.13598655405089055 0.11639225866914629 0.13590279844011663 0.11670926792654518 C 0.13598655405089055 0.11639225866914629 0.13671421301975592 0.11474267464456141 0.13665179651362983 0.11489395105086785" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30804673446287756,0.10819172878461028) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10533786866573912 0.10038005641801928 C 0.10532409669544622 0.10067072807858037 0.1050980652491578 0.10279876066452964 0.10525523684398173 0.10212408638138577 C 0.1050980652491578 0.10279876066452964 0.10406028023751573 0.10458541724689552 0.1043948390967955 0.10442810211688247 C 0.10406028023751573 0.10458541724689552 0.10296638110671914 0.10249171554404668 0.10324788368830312 0.10306797716146406 C 0.10296638110671914 0.10249171554404668 0.10270582360729164 0.10097053241237818 0.10270582360729164 0.10097053241237818 C 0.10270582360729164 0.10097053241237818 0.1035293862698871 0.10364423877888143 0.10324788368830312 0.10306797716146406 C 0.1035293862698871 0.10364423877888143 0.10446852918897014 0.10497381289110118 0.1043948390967955 0.10442810211688247 C 0.10446852918897014 0.10497381289110118 0.10353547719638646 0.1069304444365268 0.10369002424135089 0.10634224180677633 C 0.10353547719638646 0.1069304444365268 0.10343047892461865 0.10822649724348683 0.10346755682700898 0.10795731789538533" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.316461777994791,0.09612716508869268) rotate(0) scale(1,1) translate(-0.17354151290850753,-0.17151703483688832)"><path d="M 0.17816403679157827 0.16313431235160122 C 0.17803650865252096 0.16328876849951413 0.17651296666374616 0.16519082232414029 0.1766336991228906 0.16498778612655607 C 0.17651296666374616 0.16519082232414029 0.17672204296175795 0.16561932677228305 0.17671524728184507 0.16557074672261174" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17671524728184507 0.16557074672261174 C 0.17651670169476968 0.16627248340837483 0.1738600984600251 0.1754481361327324 0.1743327002369404 0.17399158695176875 C 0.1738600984600251 0.1754481361327324 0.17076996976902153 0.18380414938937642 0.17104402595886145 0.18304933689417582" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17104402595886145 0.18304933689417582 C 0.17072466751564191 0.18389373113099364 0.16627219884634148 0.19520705402247998 0.16721172464022713 0.19318206773598973 C 0.16627219884634148 0.19520705402247998 0.15914954908156767 0.20852976438173135 0.15976971643223378 0.2073491723320589" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15976971643223378 0.2073491723320589 C 0.16012062398248872 0.20629646491188364 0.16450740699614408 0.19240990303850072 0.16398060703529313 0.1947166832899556 C 0.16450740699614408 0.19240990303850072 0.16626720837304132 0.1784137364833209 0.1660913159624453 0.1796678093146005" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1660913159624453 0.1796678093146005 C 0.16621740560782816 0.17919171277242665 0.16796493470383259 0.17303681962258904 0.16760439170703945 0.17395465080851444 C 0.16796493470383259 0.17303681962258904 0.17065228527537343 0.16821210043974436 0.17041783192396312 0.1686538350834959" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17041783192396312 0.1686538350834959 C 0.17070440949600288 0.16839753272516728 0.1745022798607416 0.1651182465558943 0.17385676278844034 0.1655782067835522 C 0.1745022798607416 0.1651182465558943 0.17852297629183977 0.16293065448227198 0.17816403679157827 0.16313431235160122" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3231917403757077,0.09843056045461346) rotate(0) scale(1,1) translate(-0.1740239204174037,-0.16693920371592752)"><path d="M 0.17998613132484706 0.1500512243110228 C 0.17987128429598642 0.15052487521756736 0.17843547047716193 0.15658298110356153 0.17860796697851944 0.1557350351895576 C 0.17843547047716193 0.15658298110356153 0.17785852383606013 0.16060087028652928 0.177916173308557 0.16022657527906992" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.177916173308557 0.16022657527906992 C 0.1775900088530411 0.16082925716002286 0.17342353723410758 0.16857049088753479 0.17400219984236628 0.16745875785050518 C 0.17342353723410758 0.16857049088753479 0.17071972385670983 0.17407642287950173 0.17097222200945264 0.17356737172342507" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17097222200945264 0.17356737172342507 C 0.17074804546519276 0.1742063097387917 0.16791266390921356 0.18242570076648737 0.1682821034783341 0.18123462790782469 C 0.16791266390921356 0.18242570076648737 0.16639368415514533 0.1884123808706734 0.166538947180006 0.18786024602737736" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.166538947180006 0.18786024602737736 C 0.16650160918534504 0.18862014192648985 0.16625376718160484 0.19965352862257965 0.16609089124407436 0.1969789968167272 C 0.16625376718160484 0.19965352862257965 0.16869367236256314 0.22186926360434667 0.1684934584303717 0.2199546276976067" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1684934584303717 0.2199546276976067 C 0.1681108790527149 0.21834656363828417 0.1634133988536304 0.19839869206664668 0.16390250589849034 0.20065785898573638 C 0.1634133988536304 0.19839869206664668 0.16251764622484932 0.1921935218087631 0.16262417389205247 0.19284462466853028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16262417389205247 0.19284462466853028 C 0.16258391086080143 0.1921006293135003 0.16214132028875258 0.18243686027029865 0.16214101751704 0.18391668040817055 C 0.16214132028875258 0.18243686027029865 0.16266837295556716 0.17435095823122554 0.16262780715260353 0.17508678301406747" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16262780715260353 0.17508678301406747 C 0.16274295821724205 0.1744518878525938 0.16432072116197877 0.16618300993098253 0.16400961992826565 0.16746804107638355 C 0.16432072116197877 0.16618300993098253 0.16655697212623563 0.15901627328532786 0.16636102195716101 0.1596664092692552" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16636102195716101 0.1596664092692552 C 0.1668290117516849 0.15926154290600814 0.17311232527208825 0.1540067474971042 0.17197689949144776 0.15480801291029023 C 0.17311232527208825 0.1540067474971042 0.18065356731096366 0.14965482526108384 0.17998613132484706 0.1500512243110228" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32999469549601246,0.08443790798830217) rotate(0) scale(1,1) translate(-0.17390341090239536,-0.15286408272832677)"><path d="M 0.1761531741775898 0.14831078659221877 C 0.17627230668330476 0.1489085093476148 0.1772429828741997 0.15682005717195366 0.17758276424616945 0.15548345965697102 C 0.1772429828741997 0.15682005717195366 0.1716168838362682 0.16508883153159695 0.1720757977139529 0.16434995677201034" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1720757977139529 0.16434995677201034 C 0.17155605572472113 0.16514257627188497 0.16495803320992555 0.1754623574463087 0.1658388938431718 0.17386139077050605 C 0.16495803320992555 0.1754623574463087 0.16114435147098358 0.1843699040575702 0.16150547011499805 0.1835615568816422" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16150547011499805 0.1835615568816422 C 0.1613917520742534 0.18440027956861835 0.16005072660835373 0.19527103402202203 0.16014085362606226 0.19362622912535601 C 0.16005072660835373 0.19527103402202203 0.160447536925532 0.20410529785132422 0.16042394590249587 0.20329921564163436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16042394590249587 0.20329921564163436 C 0.1604859384925529 0.2039631925538412 0.1613576167759802 0.21322751146513144 0.1611678569831803 0.2112669385881165 C 0.1613576167759802 0.21322751146513144 0.16282883061883727 0.228122686130622 0.16270106341609442 0.2268260901658139" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16270106341609442 0.2268260901658139 C 0.1624292583574813 0.22521560822584388 0.15904327067966054 0.20511628514698946 0.159439402712737 0.20750030688617366 C 0.15904327067966054 0.20511628514698946 0.1578231520447135 0.1974442894963894 0.15794747901917686 0.19821782929560358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15794747901917686 0.19821782929560358 C 0.15791959815409704 0.19752616690023883 0.1576255861460331 0.1885594569789948 0.15761290863821903 0.18991788055122658 C 0.1576255861460331 0.1885594569789948 0.15814016748583937 0.1812499852519549 0.1580996091129455 0.18191674642882197" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1580996091129455 0.18191674642882197 C 0.15824037231975865 0.18110034785855217 0.16016127457311058 0.1704449697645565 0.15978876759470356 0.17211996358558435 C 0.16016127457311058 0.1704449697645565 0.16280143662542335 0.16095822532572984 0.16256969285382952 0.16181682057648789" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16256969285382952 0.16181682057648789 C 0.16303867673261932 0.16102800109999005 0.1693294561762871 0.1512254840264915 0.1681974993993071 0.15235098685851392 C 0.1693294561762871 0.1512254840264915 0.17681614707578003 0.1479741032366942 0.1761531741775898 0.14831078659221877" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3399204011993512,0.09469060430334211) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.18105844629130935 0.15936321005773862 C 0.18118511512918697 0.15969499364695278 0.18267316594828398 0.1640164114547512 0.18257847234584074 0.1633446131283083 C 0.18267316594828398 0.1640164114547512 0.18216279428519405 0.1677648047122823 0.1821947695206284 0.16742478997505353" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1821947695206284 0.16742478997505353 C 0.18209912146559015 0.1676418148602919 0.1807677407620316 0.1703749417131103 0.1810469928601694 0.17002908859791396 C 0.1807677407620316 0.1703749417131103 0.17866014029987495 0.1717038555873676 0.17884374434297454 0.17157502735740962" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17884374434297454 0.17157502735740962 C 0.17857872500390212 0.17159315027486913 0.17509941915153915 0.1718346968736625 0.17566351227410568 0.1717925023669236 C 0.17509941915153915 0.1718346968736625 0.1717755530886819 0.17210543302755602 0.17207462687217603 0.1720813614382766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17207462687217603 0.1720813614382766 C 0.17199629398592745 0.17179406273016384 0.1710659065157763 0.16811549331463937 0.17113463223719297 0.1686337769409235 C 0.1710659065157763 0.16811549331463937 0.171259525380008 0.16563097300469581 0.17124991821517607 0.16586195792286718" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17124991821517607 0.16586195792286718 C 0.1714222811103351 0.16567364257432604 0.1736837896656498 0.1632903392606768 0.1733182729570845 0.16360217374037342 C 0.1736837896656498 0.1632903392606768 0.17582927253136613 0.16199642503535217 0.17563611871795984 0.16211994416650766" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17563611871795984 0.16211994416650766 C 0.1758932822220199 0.1618849275021089 0.17917394139779275 0.15907001635132498 0.17872208076668028 0.1592997441937224 C 0.17917394139779275 0.15907001635132498 0.18125314341836177 0.15936849887973997 0.18105844629130935 0.15936321005773862" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3377246006521828,0.09389895795106015) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.18227058593155443 0.15869244215764988 C 0.18242137787184715 0.1589559179905525 0.18410662013409046 0.1624218341268515 0.184080089215067 0.16185415215248136 C 0.18410662013409046 0.1624218341268515 0.18246469593856665 0.16580883199155885 0.1825889569598359 0.16550462585009135" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1825889569598359 0.16550462585009135 C 0.18242606120576912 0.1657360477908942 0.18031878279328245 0.16862013215607943 0.18063420791103446 0.1682816891397256 C 0.18031878279328245 0.16862013215607943 0.17865132618312665 0.16967296312188812 0.17880385554681186 0.16956594204633715" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17880385554681186 0.16956594204633715 C 0.17853047725212792 0.16968940945036562 0.17499830591893592 0.1713304807552937 0.17552331601060478 0.17104755089467877 C 0.17499830591893592 0.1713304807552937 0.17225210264980054 0.1731205628303028 0.1725037344467855 0.17296110037371634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1725037344467855 0.17296110037371634 C 0.17247768123342688 0.17271818174511624 0.1722627808921728 0.16956447464844623 0.17219109588648235 0.17004607683051506 C 0.1722627808921728 0.16956447464844623 0.17346169273412002 0.16694319063542154 0.17336395451507097 0.16718187418889027" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17336395451507097 0.16718187418889027 C 0.1735040428210977 0.16691621172606086 0.17530055040996306 0.16352532627414987 0.1750450141873915 0.16399392463493748 C 0.17530055040996306 0.16352532627414987 0.17654583710247473 0.16135575796148077 0.17643038918592988 0.16155869385943897" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17643038918592988 0.16155869385943897 C 0.17662405274256993 0.1613507549389267 0.17924103492774596 0.15882457250480927 0.1787543518656106 0.1590634268132917 C 0.17924103492774596 0.15882457250480927 0.18256360543704975 0.15866152676967973 0.18227058593155443 0.15869244215764988" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.3617291742280557,0.09061884933651274) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.181480156496471 0.1268095361893168 C 0.18162126906784778 0.12683946252996864 0.1834324189813722 0.12729957649987458 0.18317350735299237 0.12716865227713875 C 0.1834324189813722 0.12729957649987458 0.18470489509403185 0.12848162474423078 0.1845870960370288 0.12838062686214677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1845870960370288 0.12838062686214677 C 0.18463564503624252 0.1285854618031812 0.1852171768169897 0.13126293953472531 0.18516968402759337 0.13083864615456 C 0.1852171768169897 0.13126293953472531 0.18515595329996737 0.13369160586326143 0.18515700950978475 0.13347214742413055" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18515700950978475 0.13347214742413055 C 0.18518598124601643 0.1335593021330238 0.18553057250348554 0.13470264946997912 0.1855046703445647 0.13451800393084964 C 0.18553057250348554 0.13470264946997912 0.1854304774394325 0.13586708908626832 0.18546783541683504 0.13568789389368419 C 0.1854304774394325 0.13586708908626832 0.18496576654188415 0.13679407588075773 0.1850563746157342 0.1366683462418594 C 0.18496576654188415 0.13679407588075773 0.1842609587205525 0.13723522449046946 0.18438053853063424 0.13719664956046437 C 0.1842609587205525 0.13723522449046946 0.18350490666198258 0.1370723295016892 0.1836214168947535 0.13713124540192034 C 0.18350490666198258 0.1370723295016892 0.1829291656409357 0.13643619320400507 0.18298241573738322 0.13648965875769087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18298241573738322 0.13648965875769087 C 0.18284062253614558 0.13646842111838087 0.1810119181303907 0.13611785282311262 0.18128089732253164 0.13623480708597085 C 0.1810119181303907 0.13611785282311262 0.1796274794407887 0.13499049097984378 0.179754665431692 0.13508620760339202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.179754665431692 0.13508620760339202 C 0.17970172921267755 0.1348952047046279 0.1790618704503612 0.13238384939793488 0.17911943080351866 0.1327941728182226 C 0.1790618704503612 0.13238384939793488 0.17905931705965958 0.12994300603841588 0.1790639411938026 0.13016232655993948" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36362800611727936,0.09386633519465398) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10731743919334794 0.1059275589546976 C 0.10712422016822558 0.105767028816356 0.1056783933262467 0.10472020546285928 0.10615812504261381 0.10496437812464798 C 0.1056783933262467 0.10472020546285928 0.10416377803006954 0.10392123123095155 0.10443904889514537 0.10446252298396536 C 0.10416377803006954 0.10392123123095155 0.10437515242896639 0.10084968350298185 0.10450649985215883 0.10171662760656518 C 0.10437515242896639 0.10084968350298185 0.1036509643559907 0.09926085836246534 0.1036509643559907 0.09926085836246534 C 0.1036509643559907 0.09926085836246534 0.10463784727535128 0.10258357171014851 0.10450649985215883 0.10171662760656518 C 0.10463784727535128 0.10258357171014851 0.10408136914356875 0.10482239919884961 0.10443904889514537 0.10446252298396536 C 0.10408136914356875 0.10482239919884961 0.10182588390080263 0.10356667781334883 0.10236042134269911 0.10387588489587068 C 0.10182588390080263 0.10356667781334883 0.10104372472727777 0.10239584642099481 0.10123182424376653 0.10260728048883422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.365526838006503,0.09711382105279523) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13938203154071185 0.1139837260127789 C 0.13948922784673173 0.11409398699759947 0.14084556209038804 0.11557060295139274 0.14066838721295036 0.11530685783062576 C 0.14084556209038804 0.11557060295139274 0.14157810864138198 0.11730215159792906 0.14150813006996416 0.11714866746198266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14150813006996416 0.11714866746198266 C 0.14149508665047944 0.11734383796343544 0.14128138708335422 0.1198626166958411 0.14135160903614763 0.11949071347941605 C 0.14128138708335422 0.1198626166958411 0.14060828810313453 0.12178823877405562 0.14066546663644322 0.12161150605908334" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14066546663644322 0.12161150605908334 C 0.14066668564686075 0.1216996203329308 0.14065379624334434 0.12283391611916566 0.14068009476145357 0.12266887734525278 C 0.14065379624334434 0.12283391611916566 0.14027348612268123 0.12371401871471617 0.14034988441913257 0.12359197134603803 C 0.14027348612268123 0.12371401871471617 0.13965728799108137 0.12417979923895829 0.13976331520403756 0.12413344576939055 C 0.13965728799108137 0.12417979923895829 0.13897031164028462 0.12410645217657133 0.13907755786365833 0.12414821298085103 C 0.13897031164028462 0.12410645217657133 0.1383966318287061 0.12351363081368895 0.13847636052355305 0.12363231611803409 C 0.1383966318287061 0.12351363081368895 0.13809118460898995 0.12264829542959889 0.1381208135254948 0.12272398932870929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1381208135254948 0.12272398932870929 C 0.1380108333908943 0.12262033581680082 0.13661209623141146 0.1212215524505482 0.13680105191028874 0.12148014718580766 C 0.13661209623141146 0.1212215524505482 0.13577436983469074 0.11946591128224492 0.1358533453789675 0.1196208525055959" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1358533453789675 0.1196208525055959 C 0.13585926761466474 0.11943418570215611 0.1359828533586881 0.11701409803340093 0.13592441220733426 0.11738085086431846 C 0.1359828533586881 0.11701409803340093 0.1366071581108701 0.11503973250710782 0.1365546391952135 0.11521981853458556" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3662392403630062,0.10089680876290223) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10631677769843774 0.10741167596277373 C 0.10620067915083974 0.1071640717830798 0.10529230995586095 0.10543608139602278 0.10562018641284975 0.10592605088461013 C 0.10529230995586095 0.10543608139602278 0.10426433733764195 0.1038664564723821 0.10434951895650496 0.10447185903124966 C 0.10426433733764195 0.1038664564723821 0.1052246503149339 0.1015128125219442 0.10510909669967167 0.10229363553140484 C 0.1052246503149339 0.1015128125219442 0.10504284064807835 0.0997869209744858 0.10504284064807835 0.0997869209744858 C 0.10504284064807835 0.0997869209744858 0.10499354308440943 0.10307445854086549 0.10510909669967167 0.10229363553140484 C 0.10499354308440943 0.10307445854086549 0.10396598738695349 0.1045445580107675 0.10434951895650496 0.10447185903124966 C 0.10396598738695349 0.1045445580107675 0.1024521043804268 0.1021538666290646 0.10280790728236285 0.10272982940851184 C 0.1024521043804268 0.1021538666290646 0.10211583392197635 0.10073045784557523 0.10221470154488871 0.10101608235456618" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3669516427195093,0.1046797964730093) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928487422229546 0.11489395105086785 C 0.13934729072842156 0.11504522745717428 0.1401176279065825 0.11702627718394407 0.14003387229580858 0.11670926792654518 C 0.1401176279065825 0.11702627718394407 0.1403112806562304 0.1188637949907469 0.1402899415515826 0.11869806213965446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1402899415515826 0.11869806213965446 C 0.14023268091659355 0.11885106593795744 0.13945617524297982 0.12079998569068157 0.13960281393171411 0.12053410771929016 C 0.13945617524297982 0.12079998569068157 0.1384408992330256 0.12200147196943976 0.13853027728677086 0.12188859779635133" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13853027728677086 0.12188859779635133 C 0.1385103050233339 0.12196169752127957 0.13822955973630044 0.12288653525303074 0.13829061012552712 0.12276579449549016 C 0.13822955973630044 0.12288653525303074 0.13770541735275027 0.12339454488353205 0.1377976726160505 0.12333748688683831 C 0.13770541735275027 0.12339454488353205 0.1370848065518494 0.12342857704752619 0.13718354696592436 0.1234504904558151 C 0.1370848065518494 0.12342857704752619 0.13653401949651306 0.12297951285415416 0.13661278764715104 0.12307452598737131 C 0.13653401949651306 0.12297951285415416 0.13620063913342023 0.12216767869137979 0.1362383291582685 0.12231033285720928 C 0.13620063913342023 0.12216767869137979 0.13615402219819714 0.12128370459243468 0.13616050734897187 0.12136267599741733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13616050734897187 0.12136267599741733 C 0.13609421483828954 0.12121525393764211 0.1352702704528907 0.11927416719957251 0.13536499722078407 0.11959361128011461 C 0.1352702704528907 0.11927416719957251 0.13499535187704034 0.1173573250101452 0.1350237861342514 0.11752934703091208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1350237861342514 0.11752934703091208 C 0.13507313149743222 0.11737930114667841 0.13575159802403605 0.11546048362557343 0.13561593049242118 0.11572879642010804 C 0.13575159802403605 0.11546048362557343 0.13673811868206392 0.11419132658619573 0.13665179651362988 0.11430959349649668" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3666401711944637,0.10819172878461028) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10520694992430243 0.10795731789538533 C 0.10516987202191212 0.10768813854728383 0.10482993546499615 0.10575403917702586 0.10498448250996056 0.10634224180677633 C 0.10482993546499615 0.10575403917702586 0.10435335774669056 0.10388239134266376 0.10427966765451595 0.10442810211688247 C 0.10435335774669056 0.10388239134266376 0.10570812564459227 0.10249171554404668 0.10542662306300829 0.10306797716146406 C 0.10570812564459227 0.10249171554404668 0.10596868314401979 0.10097053241237818 0.10596868314401979 0.10097053241237818 C 0.10596868314401979 0.10097053241237818 0.10514512048142431 0.10364423877888143 0.10542662306300829 0.10306797716146406 C 0.10514512048142431 0.10364423877888143 0.10394510879523618 0.10427078698686942 0.10427966765451595 0.10442810211688247 C 0.10394510879523618 0.10427078698686942 0.10326209831250575 0.1014494120982419 0.10341926990732969 0.10212408638138577 C 0.10326209831250575 0.1014494120982419 0.1033228661152794 0.1000893847574582 0.1033366380855723 0.10038005641801928" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.35822512766255044,0.09612716508869268) rotate(0) scale(1,1) translate(-0.17354151290850753,-0.17151703483688832)"><path d="M 0.1689189890254367 0.16313431235160122 C 0.1692779285256982 0.16333797022093047 0.17387178010087598 0.1660381670112101 0.17322626302857472 0.1655782067835522 C 0.17387178010087598 0.1660381670112101 0.1769517714650916 0.16891013744182454 0.17666519389305185 0.1686538350834959" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17666519389305185 0.1686538350834959 C 0.17689964724446217 0.16909556972724746 0.17983917710676878 0.17487248199443983 0.17947863410997564 0.17395465080851444 C 0.17983917710676878 0.17487248199443983 0.18111779949995252 0.18014390585677434 0.1809917098545697 0.1796678093146005" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1809917098545697 0.1796678093146005 C 0.1811676022651657 0.1809218821458801 0.1836292187425728 0.19702346354141045 0.18310241878172184 0.1947166832899556 C 0.1836292187425728 0.19702346354141045 0.18766421693503615 0.20840187975223418 0.18731330938478122 0.2073491723320589" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18731330938478122 0.2073491723320589 C 0.1866931420341151 0.20616858028238647 0.17893177538290228 0.19115708144949947 0.1798713011767879 0.19318206773598973 C 0.17893177538290228 0.19115708144949947 0.17571964141493412 0.182204942657358 0.17603899985815363 0.18304933689417582" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17603899985815363 0.18304933689417582 C 0.17576494366831372 0.18229452439897523 0.1722777238031593 0.1725350377708051 0.1727503255800746 0.17399158695176875 C 0.1722777238031593 0.1725350377708051 0.17016923294809455 0.16486901003684865 0.17036777853516993 0.16557074672261174" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17036777853516993 0.16557074672261174 C 0.1703745742150828 0.16552216667294042 0.17032859423498006 0.16478474992897185 0.1704493266941245 0.16498778612655607 C 0.17032859423498006 0.16478474992897185 0.1687914608863794 0.16297985620368832 0.1689189890254367 0.16313431235160122" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3514951652816338,0.09843056045461346) rotate(0) scale(1,1) translate(-0.1740239204174037,-0.16693920371592752)"><path d="M 0.16806170950996024 0.1500512243110228 C 0.16872914549607684 0.15044762336096176 0.17720636712400006 0.15560927832347626 0.17607094134335954 0.15480801291029023 C 0.17720636712400006 0.15560927832347626 0.1821548086721702 0.16007127563250229 0.18168681887764632 0.1596664092692552" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18168681887764632 0.1596664092692552 C 0.18188276904672093 0.16031654525318256 0.1843493221402548 0.16875307222178457 0.18403822090654165 0.16746804107638355 C 0.1843493221402548 0.16875307222178457 0.18553518474684236 0.17572167817554113 0.18542003368220383 0.17508678301406747" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18542003368220383 0.17508678301406747 C 0.18546059948516747 0.1758226077969094 0.18590712608947993 0.18539650054604245 0.18590682331776734 0.18391668040817055 C 0.18590712608947993 0.18539650054604245 0.1853834039115038 0.19358862002356025 0.18542366694275483 0.19284462466853028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18542366694275483 0.19284462466853028 C 0.18531713927555168 0.19349572752829747 0.18365622789145705 0.20291702590482608 0.184145334936317 0.20065785898573638 C 0.18365622789145705 0.20291702590482608 0.17917180302677882 0.22156269175692925 0.1795543824044356 0.2199546276976067" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1795543824044356 0.2199546276976067 C 0.17975459633662705 0.21803999179086675 0.18211982552826345 0.19430446501087476 0.18195694959073297 0.1969789968167272 C 0.18211982552826345 0.19430446501087476 0.18147155566014034 0.18710035012826487 0.1815088936548013 0.18786024602737736" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1815088936548013 0.18786024602737736 C 0.18136363062994063 0.1873081111840813 0.17939629778735272 0.180043555049162 0.17976573735647328 0.18123462790782469 C 0.17939629778735272 0.180043555049162 0.1768514422810948 0.17292843370805844 0.1770756188253547 0.17356737172342507" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1770756188253547 0.17356737172342507 C 0.17682312067261188 0.1730583205673484 0.17346697838418237 0.16634702481347557 0.17404564099244108 0.16745875785050518 C 0.17346697838418237 0.16634702481347557 0.1698055030707344 0.15962389339811697 0.17013166752625028 0.16022657527906992" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17013166752625028 0.16022657527906992 C 0.1700740180537534 0.15985228027161055 0.1692673773549304 0.1548870892755537 0.1694398738562879 0.1557350351895576 C 0.1692673773549304 0.1548870892755537 0.1679468624810996 0.14957757340447825 0.16806170950996024 0.1500512243110228" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34469221016132906,0.08443790798830217) rotate(0) scale(1,1) translate(-0.17390341090239536,-0.15286408272832677)"><path d="M 0.17165364762720095 0.14831078659221877 C 0.17231662052539118 0.14864746994774336 0.1807412791824637 0.15347648969053634 0.17960932240548366 0.15235098685851392 C 0.1807412791824637 0.15347648969053634 0.18570611282975097 0.16260564005298572 0.18523712895096117 0.16181682057648789" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18523712895096117 0.16181682057648789 C 0.185468872722555 0.16267541582724593 0.18839056118849415 0.1737949574066122 0.18801805421008713 0.17211996358558435 C 0.18839056118849415 0.1737949574066122 0.18984797589865843 0.18273314499909177 0.18970721269184526 0.18191674642882197" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18970721269184526 0.18191674642882197 C 0.1897477710647391 0.18258350760568903 0.19020659067438567 0.19127630412345836 0.1901939131665716 0.18991788055122658 C 0.19020659067438567 0.19127630412345836 0.18983146192053404 0.19890949169096833 0.18985934278561387 0.19821782929560358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18985934278561387 0.19821782929560358 C 0.18973501581115051 0.19899136909481777 0.18797128705897728 0.20988432862535786 0.18836741909205373 0.20750030688617366 C 0.18797128705897728 0.20988432862535786 0.18483395333008318 0.2284365721057839 0.1851057583886963 0.2268260901658139" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1851057583886963 0.2268260901658139 C 0.18523352559143916 0.22552949420100576 0.1868287246144103 0.2093063657111015 0.18663896482161044 0.21126693858811646 C 0.1868287246144103 0.2093063657111015 0.1874448684923519 0.2026352387294275 0.18738287590229485 0.20329921564163436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18738287590229485 0.20329921564163436 C 0.187406466925331 0.2024931334319445 0.18757584116101994 0.19198142422869 0.18766596817872847 0.19362622912535601 C 0.18757584116101994 0.19198142422869 0.18618763364904803 0.18272283419466603 0.18630135168979267 0.1835615568816422" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18630135168979267 0.1835615568816422 C 0.1859402330457782 0.18275320970571418 0.18108706732837265 0.1722604240947034 0.1819679279616189 0.17386139077050605 C 0.18108706732837265 0.1722604240947034 0.17521128210160614 0.1635573372721357 0.17573102409083788 0.16434995677201034" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17573102409083788 0.16434995677201034 C 0.17527211021315314 0.16361108201242372 0.16988427618665147 0.1541468621419884 0.17022405755862122 0.15548345965697102 C 0.16988427618665147 0.1541468621419884 0.17177278013291591 0.14771306383682276 0.17165364762720095 0.14831078659221877" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 63 KiB

View File

@@ -0,0 +1,182 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.1772221034606828 C 0.18214574144411624 0.1772221034606828 0.17854899894242843 0.16899049294630047 0.17814936088668534 0.16962369375509911 C 0.17854899894242843 0.16899049294630047 0.18814031228026268 0.17025689456389775 0.1877406742245196 0.16962369375509911 C 0.18814031228026268 0.17025689456389775 0.18214574144411624 0.1772221034606828 0.18294501755560244 0.1772221034606828 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31295573404675614,0.09073261587990888) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.17925554302357222 0.14287454056693322 C 0.17900655846963204 0.14370086510210828 0.17585596625244973 0.15459221044781998 0.1762677283762902 0.1527904349890341 C 0.17585596625244973 0.15459221044781998 0.17415161996758632 0.16547129699597463 0.17431439753748662 0.1644958460723638" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17431439753748662 0.1644958460723638 C 0.17426293292112063 0.1655929122462405 0.17364972724889888 0.17994395577163183 0.17369682214109466 0.1776606401588841 C 0.17364972724889888 0.17994395577163183 0.17375362855530757 0.1930818828642075 0.17374925883113734 0.19189563342533647" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17374925883113734 0.19189563342533647 C 0.17396549835156255 0.19320544206830947 0.17680792034552442 0.2107012301127105 0.17634413307623995 0.20761333714101235 C 0.17680792034552442 0.2107012301127105 0.1795622538114103 0.23072843341443955 0.17931470606255104 0.22895034908571438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17931470606255104 0.22895034908571438 C 0.17876556934083432 0.22715657155668023 0.1718555688432771 0.2042819984843432 0.17272506540195043 0.20742501873730462 C 0.1718555688432771 0.2042819984843432 0.16856038752151448 0.1898848633262499 0.16888074735847108 0.19123410605017718" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16888074735847108 0.19123410605017718 C 0.16871859537951828 0.18980359018671666 0.16688382938210883 0.17141748657813774 0.16693492361103726 0.17406791568865096 C 0.16688382938210883 0.17141748657813774 0.16837867436135415 0.15820904347696582 0.16826761661132977 0.15942895672401852" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16826761661132977 0.15942895672401852 C 0.16864966689914399 0.15857624741611384 0.17376788059945383 0.14781691034940533 0.1728522200651003 0.14919644502916243 C 0.17376788059945383 0.14781691034940533 0.17978915327011155 0.14234771519508077 0.17925554302357222 0.14287454056693322" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31295573404675614,0.09073261587990888) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18150865314490128 0.1301405630549283 C 0.18150778196568002 0.13035993249725825 0.18144766743633753 0.13318428204739913 0.1814981989942462 0.13277299636288756 C 0.18144766743633753 0.13318428204739913 0.1808526140713096 0.13526790751124862 0.180902274449997 0.135075991269067" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.180902274449997 0.135075991269067 C 0.18077674540039101 0.1351739576321185 0.17912898854435755 0.13637331276614428 0.179395925854725 0.13625158762568523 C 0.17912898854435755 0.13637331276614428 0.1775576184648261 0.13656045173198306 0.17769902672558754 0.13653669295457554" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17769902672558754 0.13653669295457554 C 0.17764669945615397 0.13659109838730532 0.1769556149688432 0.1372505393293406 0.17707109949238445 0.13718955814733289 C 0.1769556149688432 0.1372505393293406 0.17619299088543772 0.13723202698706327 0.17631321244309273 0.13726846713866794 C 0.17619299088543772 0.13723202698706327 0.17553569547804188 0.1366281789520543 0.1756284408005242 0.13675227632807682 C 0.17553569547804188 0.1366281789520543 0.17515985052025598 0.13560079581764553 0.17520026857330473 0.13577929862639782 C 0.17515985052025598 0.13560079581764553 0.17516616336499827 0.1344251640650191 0.17514342416393935 0.1346102426230493 C 0.17516616336499827 0.1344251640650191 0.17550061522118432 0.13347069870561754 0.17547313898601163 0.13355835593003537" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17547313898601163 0.13355835593003537 C 0.17546832832684955 0.13333894971940216 0.17545563759814392 0.13050040712058947 0.17541541107606662 0.13092548140243687 C 0.17545563759814392 0.13050040712058947 0.17600089443217884 0.12825179647665239 0.17595585725093943 0.12845746454786658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17595585725093943 0.12845746454786658 C 0.17607191044177653 0.12835438484810036 0.17760512781552082 0.1270849944128769 0.17734849554098472 0.1272205081506718 C 0.17760512781552082 0.1270849944128769 0.1791760236290714 0.12679886565629941 0.17903544454537243 0.12683129969432805" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3111127510520876,0.0940134124137475) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1074151760160208 0.10255223457341625 C 0.10723072247305253 0.10276698521209862 0.10577928880608341 0.10415941487117819 0.10630845475821118 0.10384073840551045 C 0.10577928880608341 0.10415941487117819 0.10387639807678697 0.10411083980751319 0.10424018030325413 0.1044642933674227 C 0.10387639807678697 0.10411083980751319 0.10424225668281012 0.10085086657783698 0.10412576139940823 0.1017200170460534 C 0.10424225668281012 0.10085086657783698 0.10493915200366545 0.09924939055812425 0.10493915200366545 0.09924939055812425 C 0.10493915200366545 0.09924939055812425 0.10400926611600633 0.1025891675142698 0.10412576139940823 0.1017200170460534 C 0.10400926611600633 0.1025891675142698 0.10397421206679808 0.10501040338129261 0.10424018030325413 0.1044642933674227 C 0.10397421206679808 0.10501040338129261 0.10205447076387766 0.10524935336198257 0.1025299519806719 0.10499667712927285 C 0.10205447076387766 0.10524935336198257 0.10119684983945816 0.10614429636941575 0.1013872930024887 0.10598035076368105" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.30926976805741896,0.09729420894758617) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939239008789442 0.11519455608771707 C 0.13944798201098402 0.1153736796824715 0.14012420001546003 0.11770969575796066 0.14005949316496955 0.11734403922477017 C 0.14012420001546003 0.11770969575796066 0.140177987221181 0.119768967424439 0.1401688722937801 0.11958243448600293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401688722937801 0.11958243448600293 C 0.14009255959366737 0.11973875812844972 0.13906861716692961 0.12172023756109877 0.13925311989242722 0.12145831819536439 C 0.13906861716692961 0.12172023756109877 0.13784664956242393 0.12283106259810325 0.1379548395878088 0.12272546687481564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1379548395878088 0.12272546687481564 C 0.137926510194903 0.12280167673489917 0.1375372008516651 0.12376007184970109 0.13761488687293927 0.12363998519581797 C 0.1375372008516651 0.12376007184970109 0.1369160919090318 0.1242101704912632 0.13702260733251873 0.12416650672141304 C 0.1369160919090318 0.1242101704912632 0.1362298976871014 0.12411949164796743 0.13633670179109628 0.12416395043402005 C 0.1362298976871014 0.12411949164796743 0.13566248337349093 0.12351233264264551 0.13574095808458003 0.12363300128878164 C 0.13566248337349093 0.12351233264264551 0.1353658871753064 0.1225513812404507 0.1353950052580271 0.12271592668038642 C 0.1353658871753064 0.1225513812404507 0.13539125241142358 0.1215703334536502 0.13539154109193155 0.121658456009553" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539154109193155 0.121658456009553 C 0.1353313476311033 0.12148276817268239 0.13459264558883605 0.11917960556879821 0.13466921956199263 0.11955020196710565 C 0.13459264558883605 0.11917960556879821 0.13445627290172432 0.11701639066842681 0.13447265341405265 0.11721129922986365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13447265341405265 0.11721129922986365 C 0.1345399954402054 0.11705659262780542 0.1354533933307171 0.11508796077431363 0.1352807577278856 0.11535482000516499 C 0.1354533933307171 0.11508796077431363 0.13664957422470947 0.11389683583085423 0.1365442806480307 0.11400898845964737" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30862219554337267,0.10108930353183718) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10640522535867998 0.10097877714730853 C 0.10631125940786189 0.10126611831434842 0.10549553481599983 0.10328503363722903 0.10584142965377143 0.10270282414954787 C 0.10549553481599983 0.10328503363722903 0.10394513940390002 0.10440617425544924 0.10432985633205036 0.10447203407339548 C 0.10394513940390002 0.10440617425544924 0.10340423333893958 0.10152901837963707 0.10353312808486934 0.10230766524187047 C 0.10340423333893958 0.10152901837963707 0.1035564878564718 0.09980015289999507 0.1035564878564718 0.09980015289999507 C 0.1035564878564718 0.09980015289999507 0.10366202283079909 0.10308631210410388 0.10353312808486934 0.10230766524187047 C 0.10366202283079909 0.10308631210410388 0.10425504523162425 0.10507886093190144 0.10432985633205036 0.10447203407339548 C 0.10425504523162425 0.10507886093190144 0.10276481761778185 0.10644435850684299 0.10308426148231267 0.1059486263929063 C 0.10276481761778185 0.10644435850684299 0.1023013484219575 0.10769606015103383 0.10241319314486538 0.10744642675701561" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.30797462302932643,0.10488439811608827) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13927967495911284 0.1142861993924627 C 0.13936800735266391 0.114402911479328 0.14047990098669386 0.11595260104787002 0.14033966368172576 0.11568674443484622 C 0.14047990098669386 0.11595260104787002 0.14101442753014712 0.11762562327490668 0.1409625226187301 0.11747647874874818" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1409625226187301 0.11747647874874818 C 0.1409370357352513 0.11764898079049058 0.14056743289350104 0.11986758511689409 0.14065668001698425 0.11954650324965686 C 0.14056743289350104 0.11986758511689409 0.13982779689692731 0.12147804098108968 0.1398915571369317 0.12132946115559484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1398915571369317 0.12132946115559484 C 0.13988642405813984 0.12140853598928504 0.13979471650932893 0.12242166260182936 0.13982996019142954 0.12227835915987718 C 0.13979471650932893 0.12242166260182936 0.13939150233242997 0.1231455034464019 0.13946863295172424 0.12304910245902094 C 0.13939150233242997 0.1231455034464019 0.13880604229056223 0.12345883897454027 0.1389043927598985 0.12343517100844881 C 0.13880604229056223 0.12345883897454027 0.13819520992914466 0.12327771118451976 0.13828842731968907 0.1233331180521185 C 0.13819520992914466 0.12327771118451976 0.13772267728612986 0.12265065312140332 0.1377857840733655 0.12277028859726402 C 0.13772267728612986 0.12265065312140332 0.1375099260228193 0.12182475932050048 0.13753114587286133 0.12189749234178998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13753114587286133 0.12189749234178998 C 0.13743985032120504 0.12178622657533399 0.1362844341180914 0.12029907630530445 0.13643559925298576 0.12056230314431808 C 0.1362844341180914 0.12029907630530445 0.13565729467089097 0.11858680920106882 0.13571716425412902 0.11873877027362645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13571716425412902 0.11873877027362645 C 0.13573566466408785 0.11857268276010624 0.13601748846719192 0.11642726801815684 0.13593916917363497 0.11674572011138389 C 0.13601748846719192 0.11642726801815684 0.1367168146604105 0.11476498057519495 0.13665699577681237 0.11491734515490179" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3083461310977934,0.10839025035359327) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10527257822867676 0.10036282214099662 C 0.10526378131931731 0.10065369471599475 0.10507419179758737 0.1027854272752747 0.10521979677252004 0.10210805759098544 C 0.10507419179758737 0.1027854272752747 0.10406713190458351 0.10459028763510785 0.10439894837908076 0.10442704024673223 C 0.10406713190458351 0.10459028763510785 0.10293757923182321 0.10251637971796333 0.10322889792553655 0.10308754192123916 C 0.10293757923182321 0.10251637971796333 0.10265103621680076 0.10100006702707724 0.10265103621680076 0.10100006702707724 C 0.10265103621680076 0.10100006702707724 0.10352021661924989 0.10365870412451499 0.10322889792553655 0.10308754192123916 C 0.10352021661924989 0.10365870412451499 0.10448196355436626 0.10497135598712207 0.10439894837908076 0.10442704024673223 C 0.10448196355436626 0.10497135598712207 0.10358252874999373 0.10694430083914014 0.10372698897724959 0.10635343636357816 C 0.10358252874999373 0.10694430083914014 0.10349972002192821 0.10824202555619174 0.10353218701554555 0.10797222710010408" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.31295573404675614,0.09073261587990888) rotate(0) scale(1,1) translate(-0.17354151290850753,-0.17151703483688832)"><path d="M 0.18111122677948235 0.15687135354092305 C 0.18081032632726757 0.15739714830712323 0.17709811612909965 0.16406505845480943 0.17750042135290484 0.1631808907353251 C 0.17709811612909965 0.16406505845480943 0.17618215932222958 0.167839739128019 0.17628356409381998 0.16748136617473486" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17628356409381998 0.16748136617473486 C 0.1761457348165565 0.1681234666793023 0.17430955699576015 0.17657753727461198 0.17462961276665812 0.17518657222954437 C 0.17430955699576015 0.17657753727461198 0.17226066834940987 0.1849218112560462 0.17244289484304434 0.18417294671554607" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17244289484304434 0.18417294671554607 C 0.17216224872347338 0.18508589882154677 0.16826058820776904 0.1973610854798396 0.16907514140819282 0.19512837198755462 C 0.16826058820776904 0.1973610854798396 0.162134349357106 0.21228527000925024 0.16266825643795882 0.21096550862296595" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16266825643795882 0.21096550862296595 C 0.1629310268779396 0.20981301618445686 0.1661656274359334 0.19471627789481338 0.1658215017177281 0.1971355993608567 C 0.1661656274359334 0.19471627789481338 0.1668791203346471 0.1806668220029121 0.16679776505642258 0.1819336510304463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16679776505642258 0.1819336510304463 C 0.16693148522760834 0.18130888581387467 0.16868913683101722 0.1734122381923517 0.16840240711065185 0.17443646843158697 C 0.16868913683101722 0.1734122381923517 0.17039153124998654 0.169243423136959 0.17023852170080694 0.1696428881596227" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17023852170080694 0.1696428881596227 C 0.17056112326650819 0.16908467495874607 0.17501579924577815 0.16188003519754487 0.17410974048922187 0.16294432974910317 C 0.17501579924577815 0.16188003519754487 0.1816946839703374 0.15636527219024138 0.18111122677948235 0.15687135354092305" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33292955934003177,0.07935596154029032) rotate(0) scale(1,1) translate(-0.18233721705154246,-0.14882968924032608)"><path d="M 0.18828881380858364 0.1410564513477972 C 0.18836706400864112 0.1414350359536065 0.18913307056737386 0.1462943832285616 0.18922781620927334 0.14559946661750892 C 0.18913307056737386 0.1462943832285616 0.18697887026383286 0.14971178268567276 0.18715186610578982 0.1493954506804294" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18715186610578982 0.1493954506804294 C 0.18721924829986505 0.1502219528238997 0.18687939751513322 0.1605212003983701 0.18796045243469267 0.15931347640207288 C 0.18687939751513322 0.1605212003983701 0.17303076995744168 0.1642693604888229 0.17417920707107637 0.16388813863599597" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17417920707107637 0.16388813863599597 C 0.17359015485283816 0.16441352210572255 0.16635797205845868 0.1715622299015903 0.16711058045221794 0.1701927402727148 C 0.16635797205845868 0.1715622299015903 0.16498435017044402 0.18116612034165092 0.1651479063459651 0.180322014182502" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1651479063459651 0.180322014182502 C 0.1651478989916579 0.1813059757130262 0.1654535444626474 0.19588809034859644 0.16514781809427886 0.19212955254879258 C 0.1654535444626474 0.19588809034859644 0.1691223564890632 0.22819904404942792 0.16881662276638748 0.22542446778014827" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16881662276638748 0.22542446778014827 C 0.16823275842216984 0.2229343383548459 0.16104669462330165 0.19146540579992988 0.16181025063577564 0.19554291467652007 C 0.16104669462330165 0.19146540579992988 0.1594742589484434 0.17490698180977818 0.1596539506166997 0.17649436126106602" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1596539506166997 0.17649436126106602 C 0.1598962688576884 0.17483148024223602 0.16337679431534186 0.15398147877789164 0.16256176950856413 0.15653978903510593 C 0.16337679431534186 0.15398147877789164 0.17000695486382142 0.14489920893611016 0.16943424829803239 0.14579463817449445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16943424829803239 0.14579463817449445 C 0.17016314618393433 0.14551678549277308 0.1797522367214016 0.14206555709161323 0.17818102292885565 0.142460405993838 C 0.1797522367214016 0.14206555709161323 0.18913112971522764 0.1409394551272938 0.18828881380858364 0.1410564513477972" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3617311716105851,0.09073261587990888) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.16473613235822454 0.14287454056693322 C 0.16526974260476388 0.14340136593878566 0.17205511585105016 0.15057597970891953 0.1711394553166966 0.14919644502916243 C 0.17205511585105016 0.15057597970891953 0.17610610905828117 0.1602816660319232 0.17572405877046698 0.15942895672401852" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17572405877046698 0.15942895672401852 C 0.17583511652049136 0.16064886997107122 0.17700565754183117 0.17671834479916418 0.1770567517707596 0.17406791568865096 C 0.17700565754183117 0.17671834479916418 0.17494877604437298 0.1926646219136377 0.17511092802332578 0.19123410605017718" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17511092802332578 0.19123410605017718 C 0.17479056818636918 0.19258334877410446 0.17039711342117314 0.21056803899026605 0.17126660997984647 0.20742501873730462 C 0.17039711342117314 0.21056803899026605 0.16412783259752903 0.23074412661474852 0.16467696931924575 0.22895034908571438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16467696931924575 0.22895034908571438 C 0.16492451706810501 0.2271722647569892 0.16811132957484134 0.2045254441693142 0.16764754230555687 0.20761333714101235 C 0.16811132957484134 0.2045254441693142 0.17045865607108468 0.19058582478236347 0.17024241655065947 0.19189563342533647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17024241655065947 0.19189563342533647 C 0.1702467862748297 0.19070938398646545 0.17024775834850647 0.1753773245461364 0.17029485324070226 0.1776606401588841 C 0.17024775834850647 0.1753773245461364 0.16962581322794412 0.1633987798984871 0.16967727784431014 0.1644958460723638" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16967727784431014 0.1644958460723638 C 0.16951450027440984 0.163520395148753 0.1673121848816662 0.15098865953024823 0.16772394700550666 0.1527904349890341 C 0.1673121848816662 0.15098865953024823 0.16448714780428436 0.14204821603175816 0.16473613235822454 0.14287454056693322" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.3617311716105851,0.09073261587990888) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18150865314490122 0.12683129969432805 C 0.1816492322286002 0.12686373373235668 0.18345223442382505 0.12735602188846668 0.18319560214928896 0.1272205081506718 C 0.18345223442382505 0.12735602188846668 0.18470429363017132 0.1285605442476328 0.18458824043933422 0.12845746454786658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18458824043933422 0.12845746454786658 C 0.18463327762057363 0.12866313261908077 0.1851689131362843 0.13135055568428428 0.185128686614207 0.13092548140243687 C 0.1851689131362843 0.13135055568428428 0.18506614804509988 0.13377776214066858 0.18507095870426196 0.13355835593003537" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18507095870426196 0.13355835593003537 C 0.18509843493943465 0.1336460131544532 0.18542341272739318 0.1347953211810795 0.18540067352633427 0.1346102426230493 C 0.18542341272739318 0.1347953211810795 0.18530341106392018 0.1359578014351501 0.1853438291169689 0.13577929862639782 C 0.18530341106392018 0.1359578014351501 0.18482291156726718 0.13687637370409933 0.1849156568897495 0.13675227632807682 C 0.18482291156726718 0.13687637370409933 0.18411066368952586 0.13730490729027262 0.1842308852471809 0.13726846713866794 C 0.18411066368952586 0.13730490729027262 0.18335751367434797 0.13712857696532518 0.1834729981978892 0.13718955814733289 C 0.18335751367434797 0.13712857696532518 0.18279274369525247 0.1364822875218458 0.18284507096468608 0.13653669295457557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18284507096468608 0.13653669295457557 C 0.18270366270392463 0.13651293417716803 0.18088123452518118 0.13612986248522618 0.18114817183554863 0.13625158762568523 C 0.18088123452518118 0.13612986248522618 0.17951629419067058 0.1349780249060155 0.17964182324027658 0.135075991269067" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17964182324027658 0.135075991269067 C 0.17959216286158916 0.13488407502688537 0.17899536713811873 0.132361710678376 0.1790458986960274 0.13277299636288756 C 0.17899536713811873 0.132361710678376 0.1790345733661511 0.12992119361259835 0.17903544454537237 0.1301405630549283" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3635741546052538,0.0940134124137475) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10728721374882275 0.10598035076368105 C 0.1070967705857922 0.10581640515794635 0.10566907355384528 0.10474400089656313 0.10614455477063951 0.10499667712927285 C 0.10566907355384528 0.10474400089656313 0.10416835821160125 0.1039181833535528 0.10443432644805731 0.1044642933674227 C 0.10416835821160125 0.1039181833535528 0.1044322500685013 0.10085086657783698 0.10454874535190319 0.1017200170460534 C 0.1044322500685013 0.10085086657783698 0.103735354747646 0.09924939055812425 0.103735354747646 0.09924939055812425 C 0.103735354747646 0.09924939055812425 0.10466524063530507 0.1025891675142698 0.10454874535190319 0.1017200170460534 C 0.10466524063530507 0.1025891675142698 0.10407054422159015 0.10481774692733221 0.10443432644805731 0.1044642933674227 C 0.10407054422159015 0.10481774692733221 0.10183688604097246 0.1035220619398427 0.10236605199310024 0.10384073840551045 C 0.10183688604097246 0.1035220619398427 0.10107487719232237 0.10233748393473388 0.10125933073529064 0.10255223457341625" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.36541713759992234,0.09729420894758617) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939239008789453 0.11400898845964737 C 0.1394976836645733 0.1141211410884405 0.14082854861087118 0.11562167923601635 0.14065591300803967 0.11535482000516499 C 0.14082854861087118 0.11562167923601635 0.1415313593480253 0.11736600583192187 0.14146401732187255 0.11721129922986365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14146401732187255 0.11721129922986365 C 0.14144763680954422 0.11740620779130048 0.14119087720077597 0.11992079836541308 0.14126745117393255 0.11955020196710564 C 0.14119087720077597 0.11992079836541308 0.1404849361831655 0.1218341438464236 0.1405451296439937 0.121658456009553" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405451296439937 0.121658456009553 C 0.14054484096348574 0.12174657856545579 0.14051254739517746 0.12288047212032213 0.14054166547789818 0.12271592668038642 C 0.14051254739517746 0.12288047212032213 0.1401172379402561 0.12375366993491778 0.1401957126513452 0.12363300128878164 C 0.1401172379402561 0.12375366993491778 0.13949316484083413 0.12420840922007267 0.139599968944829 0.12416395043402005 C 0.13949316484083413 0.12420840922007267 0.13880754797991962 0.12412284295156287 0.13891406340340653 0.12416650672141304 C 0.13880754797991962 0.12412284295156287 0.13824409784171177 0.12351989854193483 0.13832178386298594 0.12363998519581795 C 0.13824409784171177 0.12351989854193483 0.13795350175521068 0.12264925701473212 0.13798183114811646 0.12272546687481564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13798183114811646 0.12272546687481564 C 0.1378736411227316 0.12261987115152803 0.13649904811800043 0.12119639882963 0.13668355084349804 0.12145831819536439 C 0.13649904811800043 0.12119639882963 0.13569148574203244 0.11942611084355614 0.13576779844214518 0.11958243448600293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13576779844214518 0.11958243448600293 C 0.13577691336954606 0.11939590154756687 0.13594188442144622 0.11697838269157969 0.13587717757095574 0.11734403922477017 C 0.13594188442144622 0.11697838269157969 0.1365998725711204 0.11501543249296264 0.1365442806480308 0.11519455608771707" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36606471011396857,0.10108930353183718) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10626131360644608 0.10744642675701561 C 0.1061494688835382 0.1071967933629974 0.10527080140446793 0.1054528942789696 0.10559024526899877 0.1059486263929063 C 0.10527080140446793 0.1054528942789696 0.10426983931883498 0.10386520721488951 0.10434465041926108 0.10447203407339548 C 0.10426983931883498 0.10386520721488951 0.10527027341237188 0.10152901837963707 0.10514137866644212 0.10230766524187047 C 0.10527027341237188 0.10152901837963707 0.10511801889483964 0.09980015289999507 0.10511801889483964 0.09980015289999507 C 0.10511801889483964 0.09980015289999507 0.10501248392051235 0.10308631210410388 0.10514137866644212 0.10230766524187047 C 0.10501248392051235 0.10308631210410388 0.10395993349111074 0.10453789389134172 0.10434465041926108 0.10447203407339548 C 0.10395993349111074 0.10453789389134172 0.10248718225976843 0.10212061466186671 0.10283307709754003 0.10270282414954787 C 0.10248718225976843 0.10212061466186671 0.10217531544181341 0.10069143598026864 0.1022692813926315 0.10097877714730853" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.36671228262801475,0.10488439811608827) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1392796749591129 0.11491734515490179 C 0.139339493842711 0.11506970973460863 0.1400758208558472 0.11706417220461093 0.13999750156229024 0.11674572011138387 C 0.1400758208558472 0.11706417220461093 0.14023800689175503 0.11890485778714666 0.1402195064817962 0.11873877027362645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1402195064817962 0.11873877027362645 C 0.14015963689855815 0.11889073134618408 0.13934990634804512 0.12082552998333171 0.13950107148293947 0.12056230314431808 C 0.13934990634804512 0.12082552998333171 0.13831422931140763 0.12200875810824598 0.13840552486306393 0.12189749234178998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13840552486306393 0.12189749234178998 C 0.1383843050130219 0.12197022536307948 0.13808777987532403 0.12288992407312473 0.13815088666255967 0.12277028859726402 C 0.13808777987532403 0.12288992407312473 0.13755502602569172 0.12338852491971723 0.13764824341623613 0.1233331180521185 C 0.13755502602569172 0.12338852491971723 0.13693392750669053 0.12341150304235735 0.1370322779760268 0.12343517100844881 C 0.13693392750669053 0.12341150304235735 0.1363909071649067 0.12295270147163997 0.13646803778420097 0.12304910245902094 C 0.1363909071649067 0.12295270147163997 0.13607146686239513 0.122135055717925 0.13610671054449575 0.12227835915987718 C 0.13607146686239513 0.122135055717925 0.13603998052020166 0.12125038632190464 0.13604511359899352 0.12132946115559484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13604511359899352 0.12132946115559484 C 0.13598135335898914 0.12118088133010001 0.13519074359545785 0.11922542138241964 0.13527999071894103 0.11954650324965686 C 0.13519074359545785 0.11922542138241964 0.13494866123371638 0.11730397670700579 0.1349741481171952 0.11747647874874818" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1349741481171952 0.11747647874874818 C 0.1350260530286122 0.11732733422258969 0.13573724435916756 0.11542088782182243 0.13559700705419947 0.11568674443484622 C 0.13573724435916756 0.11542088782182243 0.1367453281703635 0.11416948730559741 0.13665699577681242 0.1142861993924627" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3663407745595478,0.10839025035359327) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10514231973576588 0.10797222710010408 C 0.10510985274214854 0.10770242864401643 0.104803057546806 0.10576257188801619 0.10494751777406186 0.10635343636357816 C 0.104803057546806 0.10576257188801619 0.1043585735475162 0.1038827245063424 0.1042755583722307 0.10442704024673223 C 0.1043585735475162 0.1038827245063424 0.1057369275194882 0.10251637971796333 0.10544560882577486 0.10308754192123916 C 0.1057369275194882 0.10251637971796333 0.10602347053451068 0.10100006702707724 0.10602347053451068 0.10100006702707724 C 0.10602347053451068 0.10100006702707724 0.10515429013206153 0.10365870412451499 0.10544560882577486 0.10308754192123916 C 0.10515429013206153 0.10365870412451499 0.10394374189773345 0.10426379285835662 0.1042755583722307 0.10442704024673223 C 0.10394374189773345 0.10426379285835662 0.10330910500385872 0.10143068790669618 0.10345470997879139 0.10210805759098544 C 0.10330910500385872 0.10143068790669618 0.1033931316132752 0.10007194956599849 0.10340192852263465 0.10036282214099662" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3617311716105851,0.09073261587990888) rotate(0) scale(1,1) translate(-0.17354151290850753,-0.17151703483688832)"><path d="M 0.16597179903753273 0.15687135354092305 C 0.16655525622838777 0.15737743489160472 0.17387934408434938 0.16400862430066146 0.1729732853277931 0.16294432974910317 C 0.17387934408434938 0.16400862430066146 0.17716710568190933 0.17020110136049932 0.17684450411620808 0.1696428881596227" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17684450411620808 0.1696428881596227 C 0.17699751366538768 0.1700423531822864 0.1789673484267285 0.17546069867082226 0.17868061870636315 0.17443646843158697 C 0.1789673484267285 0.17546069867082226 0.18041898093177816 0.1825584162470179 0.1802852607605924 0.1819336510304463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1802852607605924 0.1819336510304463 C 0.18036661603881696 0.18320048005798048 0.1816056498174923 0.19955492082690002 0.181261524099287 0.1971355993608567 C 0.1816056498174923 0.19955492082690002 0.18467753981903692 0.21211800106147505 0.18441476937905615 0.21096550862296595" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18441476937905615 0.21096550862296595 C 0.18388086229820333 0.20964574723668167 0.17719333120839845 0.19289565849526963 0.17800788440882223 0.19512837198755462 C 0.17719333120839845 0.19289565849526963 0.17435948485439975 0.18325999460954537 0.17464013097397071 0.18417294671554607" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17464013097397071 0.18417294671554607 C 0.17445790448033624 0.18342408217504594 0.17213335727945894 0.17379560718447676 0.1724534130503569 0.17518657222954437 C 0.17213335727945894 0.17379560718447676 0.17066163244593158 0.1668392656701674 0.17079946172319507 0.16748136617473486" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17079946172319507 0.16748136617473486 C 0.17069805695160467 0.16712299322145072 0.16918029924030495 0.16229672301584078 0.16958260446411014 0.1631808907353251 C 0.16918029924030495 0.16229672301584078 0.16567089858531794 0.15634555877472286 0.16597179903753273 0.15687135354092305" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34175734631730964,0.07935596154029032) rotate(0) scale(1,1) translate(-0.17728282351693694,-0.14882968924032608)"><path d="M 0.16436201118284827 0.14244370473010448 C 0.16513696630948638 0.14220069261809087 0.1756544635790391 0.13965053377220882 0.1736614727025056 0.1395275593859412 C 0.1756544635790391 0.13965053377220882 0.18949593745114582 0.14428538386359718 0.18827790170125042 0.14391939736531595" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18827790170125042 0.14391939736531595 C 0.18899039204355209 0.14487367289462236 0.19779254589957407 0.15778830342893357 0.19682778580887056 0.15537070371699294 C 0.19779254589957407 0.15778830342893357 0.20010729253809417 0.17439391809123778 0.19985502278969236 0.17293059390860355" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19985502278969236 0.17293059390860355 C 0.1997041224730775 0.17469737806410193 0.19734468193653834 0.1981064703527419 0.19804421899031424 0.19413200377458406 C 0.19734468193653834 0.1981064703527419 0.19091194140722043 0.22283187526915718 0.1914605781443815 0.2206241928464977" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1914605781443815 0.2206241928464977 C 0.19171154850519975 0.2182496394883556 0.19472318548071146 0.18877103766012626 0.1944722224742004 0.19212955254879258 C 0.19472318548071146 0.18877103766012626 0.194472126868207 0.17933805265197778 0.1944721342225142 0.180322014182502" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1944721342225142 0.180322014182502 C 0.1941563902530648 0.17928848017077834 0.18888287611443408 0.1662710423070552 0.1906832065891216 0.16791960604181808 C 0.18888287611443408 0.1662710423070552 0.17138358202102572 0.15992421964230816 0.17286816852626385 0.1605392493653474" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17286816852626385 0.1605392493653474 C 0.17227060567630642 0.16029108241117754 0.16503271173080566 0.15665075062391756 0.16569741432677448 0.15756124591530934 C 0.16503271173080566 0.15665075062391756 0.16482459762862658 0.14895097753142392 0.16489173737463797 0.14961330586864588" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16489173737463797 0.14961330586864588 C 0.16479212120165562 0.149299391942451 0.16365219944953396 0.1452488719927623 0.16369634329884977 0.14584633875430741 C 0.16365219944953396 0.1452488719927623 0.1644174835065148 0.14216015189475423 0.16436201118284827 0.14244370473010448" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.336009105406829,0.09452972510769928) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.18543274860885722 0.15871959514088915 C 0.1856189518005373 0.15907145163725075 0.18780638650460993 0.163654315222421 0.18766718690901835 0.1629418730972283 C 0.18780638650460993 0.163654315222421 0.18705614015986774 0.16762948627203272 0.18710314375595624 0.1672689006432016" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18710314375595624 0.1672689006432016 C 0.18696254111505 0.16749905553399688 0.18500541148081892 0.17039753656141074 0.1854159120650815 0.17003075933274503 C 0.18500541148081892 0.17039753656141074 0.18190723880144866 0.1718068497250606 0.18217713674480504 0.17167022738719018" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18217713674480504 0.17167022738719018 C 0.1817875583163686 0.171689446741156 0.176672978713395 0.17194560690917643 0.1775021956035678 0.1719008596347798 C 0.176672978713395 0.17194560690917643 0.17178689560099492 0.17223272260038042 0.17222653406273128 0.1722071946799496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17222653406273128 0.1722071946799496 C 0.17211138471994586 0.17190251439999601 0.1707437151388237 0.16800139153483232 0.17084474194930618 0.1685510313205066 C 0.1707437151388237 0.16800139153483232 0.17102833486924424 0.16536655774613723 0.1710142123369413 0.16561151725185796" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1710142123369413 0.16561151725185796 C 0.17126758579282508 0.16541180882473008 0.1745920033691377 0.16288431566060502 0.17405469380754668 0.1632150161263233 C 0.1745920033691377 0.16288431566060502 0.1777458631817407 0.1615121196246483 0.17746192707603348 0.16164311166323866" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17746192707603348 0.16164311166323866 C 0.17783995742700173 0.16139387649064377 0.18266252641538783 0.15840866321523744 0.18199829128765252 0.1586522895920999 C 0.18266252641538783 0.15840866321523744 0.18571895338562427 0.1587252039366216 0.18543274860885722 0.15871959514088915" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3327812786024914,0.09369018415110425) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.18664663877982457 0.15800476439646588 C 0.18686830293205486 0.15828418051725912 0.18934560905755246 0.1619597845798042 0.189306608606588 0.1613577578459847 C 0.18934560905755246 0.1619597845798042 0.1869319804901325 0.1655516958153263 0.18711464419139828 0.16522908520230004" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18711464419139828 0.16522908520230004 C 0.18687518743292011 0.16547450817052148 0.18377748816656467 0.16853307963980046 0.18424116308966013 0.16817416082095724 C 0.18377748816656467 0.16853307963980046 0.18132632694963566 0.16964960687904052 0.18155054511425292 0.16953611102841873" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18155054511425292 0.16953611102841873 C 0.18114867902106757 0.16966704821039091 0.17595638716127535 0.17140740432926715 0.17672815199602857 0.171107357212085 C 0.17595638716127535 0.17140740432926715 0.17191946835564634 0.17330578636981436 0.1722893670972142 0.17313667643460443" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1722893670972142 0.17313667643460443 C 0.17225106887357708 0.172879061228974 0.1719351653719335 0.16953455485295543 0.17182978841356855 0.17004529396703943 C 0.1719351653719335 0.16953455485295543 0.17369756577959597 0.16675468315714276 0.17355389059759385 0.16700780706559634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17355389059759385 0.16700780706559634 C 0.1737598204074531 0.16672607202376577 0.17640068656308522 0.16313003800201417 0.176025048315905 0.16362698656362942 C 0.17640068656308522 0.16313003800201417 0.17823125800107742 0.1608292108064286 0.17806154956375647 0.16104442432621327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17806154956375647 0.16104442432621327 C 0.17834623499201735 0.16082390510101 0.1821931988042261 0.15814488862962847 0.1814777747028871 0.15839819362377408 C 0.1821931988042261 0.15814488862962847 0.1870773774529027 0.15797197862752352 0.18664663877982457 0.15800476439646588" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3299315385665266,0.0948583526504837) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.16337509649696677 0.16033129199878499 C 0.16355032391131397 0.16032648445958575 0.16588450003713417 0.16048242413713346 0.16547782546913295 0.1602736015283942 C 0.16588450003713417 0.16048242413713346 0.1684866384666354 0.1630507934515945 0.16825519131298136 0.16283716330365602" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16825519131298136 0.16283716330365602 C 0.168429029745047 0.16294944219387636 0.17067021753547798 0.16446796752834425 0.17034125249776919 0.16418450998630002 C 0.17067021753547798 0.16446796752834425 0.1723578983711299 0.16640983246001073 0.17220277176548676 0.16623865380818684" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17220277176548676 0.16623865380818684 C 0.1722114182138355 0.1664486190988046 0.1722446759963966 0.16922935711189233 0.17230652914567157 0.16875823729560005 C 0.1722446759963966 0.16922935711189233 0.17139003437656308 0.17215324612936853 0.1714605339741868 0.17189209160369404" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1714605339741868 0.17189209160369404 C 0.17119136756904207 0.17187021052903906 0.1677228533021402 0.17159116390120846 0.1682305371124501 0.17162951870783413 C 0.1677228533021402 0.17159116390120846 0.16512981084530304 0.1714153601922152 0.16536832825046818 0.1714318339241859" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16536832825046818 0.1714318339241859 C 0.16520308461167857 0.17131472906315412 0.16313407769666877 0.16971219511009092 0.16338540458499282 0.1700265755918044 C 0.16313407769666877 0.16971219511009092 0.1622663223410453 0.16746199252294258 0.16235240559057973 0.16765926814362425" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16235240559057973 0.16765926814362425 C 0.16232362787868881 0.1673501947474833 0.16209229729008753 0.16333972271119626 0.1620070730478886 0.16395038738993287 C 0.16209229729008753 0.16333972271119626 0.1634890984510566 0.16002970071618933 0.16337509649696677 0.16033129199878499" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3319077590589781,0.09413874611625936) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.16458015952365407 0.1597268004430671 C 0.16484387707859985 0.15975490253073196 0.16818278493892536 0.16028114406145597 0.16774477018300352 0.16006402549504545 C 0.16818278493892536 0.16028114406145597 0.17001063379569228 0.16252123971873902 0.16983633659471623 0.16233222323999336" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16983633659471623 0.16233222323999336 C 0.16994023971960662 0.16251669197123736 0.17131315669371522 0.16497180392487742 0.1710831740934008 0.1645458480149215 C 0.17131315669371522 0.16497180392487742 0.1727222072739133 0.1676851813381765 0.17259612779848926 0.16744369415946458" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17259612779848926 0.16744369415946458 C 0.1726840921956334 0.16766065750956766 0.17371621706934037 0.17048503074420213 0.17365170056421897 0.17004725436070156 C 0.17371621706934037 0.17048503074420213 0.1733468779679234 0.17291782379486897 0.17337032585994613 0.17269701076147148" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17337032585994613 0.17269701076147148 C 0.17314385724265968 0.17255205938843438 0.17018019337000684 0.1707004110417274 0.17065270245250883 0.17095759428502635 C 0.17018019337000684 0.1707004110417274 0.16745417640470686 0.16949857997162193 0.1677002168699224 0.1696108118418838" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1677002168699224 0.1696108118418838 C 0.1675629404426057 0.169513529684208 0.1657690171361453 0.16813578124790826 0.16605289974212212 0.16844342594977388 C 0.1657690171361453 0.16813578124790826 0.16414701941954069 0.16570871287530659 0.1642936255982008 0.16591907541949638" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1642936255982008 0.16591907541949638 C 0.16418179067905847 0.16564255203690242 0.16297548439561393 0.16208477191366646 0.16295160656849283 0.1626007948283689 C 0.16297548439561393 0.16208477191366646 0.16471587226991752 0.15948730091095864 0.16458015952365407 0.1597268004430671" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3256369105007465,0.08553865170011232) rotate(0) scale(1,1) translate(-0.17390341090239536,-0.15286408272832677)"><path d="M 0.17826169240020062 0.1541465717590146 C 0.17817018836180948 0.15440401967396233 0.17682888316073297 0.1580953884786423 0.1771636439395069 0.15723594673838737 C 0.17682888316073297 0.1580953884786423 0.1740013063145309 0.1650618664673808 0.17424456305491368 0.16445987264207362" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17424456305491368 0.16445987264207362 C 0.17386695070804434 0.1651784817786926 0.16900525165720157 0.17453911626079435 0.16971321489248153 0.17308318228150119 C 0.16900525165720157 0.17453911626079435 0.16541865334314332 0.18266840523626574 0.16574900423155395 0.18193108039359154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16574900423155395 0.18193108039359154 C 0.1657245827767534 0.18263358386349543 0.16543696731110108 0.19168853868496863 0.16545594677394723 0.19036112203243832 C 0.16543696731110108 0.19168853868496863 0.16552669266935466 0.19848499340658177 0.16552125067740023 0.19786008022395535" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16552125067740023 0.19786008022395535 C 0.16556290677596458 0.19852216344392823 0.16616178811244925 0.20758264689551492 0.16602112386017234 0.20580507886362998 C 0.16616178811244925 0.20758264689551492 0.16730822985843552 0.22030638141848657 0.16720922170472297 0.21919089660657454" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16720922170472297 0.21919089660657454 C 0.1670076580862723 0.21796229045785528 0.16448296352975367 0.20248157774239023 0.16479045828331482 0.20444762282194354 C 0.16448296352975367 0.20248157774239023 0.16341335352687889 0.19486091672110067 0.16351928466198934 0.19559835565193473" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16351928466198934 0.19559835565193473 C 0.16345499762908122 0.1949436227025087 0.16264845562221655 0.18649667892237917 0.16274784026709177 0.18774156025882227 C 0.16264845562221655 0.18649667892237917 0.16229157131151975 0.18006963122760064 0.16232666892348682 0.18065977961461768" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16232666892348682 0.18065977961461768 C 0.16234959008211963 0.17992716602288003 0.16278644909266712 0.1702967854176424 0.1626017228270806 0.1718684165137659 C 0.16278644909266712 0.1702967854176424 0.1647051892174787 0.16096118895674996 0.164543384110525 0.1618002064611358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.164543384110525 0.1618002064611358 C 0.1653234133250864 0.16040393754931526 0.17249840636322578 0.14967335082880634 0.17078361782701632 0.1506300551665715 C 0.17249840636322578 0.14967335082880634 0.17919645172184867 0.15458613633307 0.17826169240020062 0.1541465717590146" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31295573404675614,0.09073261587990888) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.13023271168011705 0.11953255881101033 C 0.12995289885221706 0.12011823133995933 0.12639840042073885 0.12782686549280742 0.1268749577453171 0.12656062915839847 C 0.12639840042073885 0.12782686549280742 0.12431727928850005 0.13540795862937774 0.12451402378517828 0.1347273948239178" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12451402378517828 0.1347273948239178 C 0.12483116157567338 0.13413404425592976 0.12917104814329317 0.1264652654081637 0.12831967727111945 0.12760718800806145 C 0.12917104814329317 0.1264652654081637 0.13526470733294135 0.12047575159323486 0.13473047425126275 0.12102432362514459" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13473047425126275 0.12102432362514459 C 0.134360428763905 0.12180972131754282 0.1296791960350778 0.1317870116507764 0.1302899284029696 0.1304490959339234 C 0.1296791960350778 0.1317870116507764 0.127160998956027 0.13763183025183529 0.12740168583656106 0.1370793122273805" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12740168583656106 0.1370793122273805 C 0.1275317233595644 0.1365242019786183 0.1292601365240736 0.12953366257228233 0.12896213611260113 0.13041798924223422 C 0.1292601365240736 0.12953366257228233 0.13114565366269954 0.12613817576676803 0.13097769077423044 0.12646739218795774" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13097769077423044 0.12646739218795774 C 0.13067847382524503 0.12688564785968856 0.1267096080318562 0.132939987050404 0.12738708738640564 0.13148646024872768 C 0.1267096080318562 0.132939987050404 0.12246967611407325 0.1449449849380192 0.12284793851963728 0.14390971380807369" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12284793851963728 0.14390971380807369 C 0.12288374716369277 0.14305542904002344 0.12347523401201801 0.13217796217926717 0.12327764224830315 0.13365829659147074 C 0.12347523401201801 0.13217796217926717 0.12538082280387508 0.12551965121747746 0.1252190396842157 0.1261457008616308" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1252190396842157 0.1261457008616308 C 0.12496401094122116 0.12662659784867153 0.12167347799641613 0.1332625043882238 0.12215869476828135 0.13191646470611967 C 0.12167347799641613 0.1332625043882238 0.1191662503929624 0.1431633197419435 0.11939643842183309 0.1422981770468801" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11939643842183309 0.1422981770468801 C 0.11936281070516289 0.14147764490870054 0.11901337429366118 0.13124823917190329 0.11899290582179065 0.13245179138872534 C 0.11901337429366118 0.13124823917190329 0.11969615627282036 0.1274725303663728 0.11964206008427962 0.1278555504450153" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11964206008427962 0.1278555504450153 C 0.11943616023292042 0.1279984682273636 0.1169028758233429 0.1294524644923298 0.11717126186796917 0.12957056383319504 C 0.1169028758233429 0.1294524644923298 0.11635894135549733 0.12617734123141885 0.1164214275487644 0.1264383583546324" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1164214275487644 0.1264383583546324 C 0.11657044099439505 0.12652071937495155 0.11882220047749395 0.1270581214216688 0.11820958889633223 0.127426690598462 C 0.11882220047749395 0.1270581214216688 0.12423636465823597 0.12156459803600168 0.12377276652270491 0.12201552823311401" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12377276652270491 0.12201552823311401 C 0.12357874719905396 0.12244677794413078 0.12115046854905655 0.12810261377379142 0.12144453463889339 0.12719052476531523 C 0.12115046854905655 0.12810261377379142 0.12014392667847695 0.1334414356322878 0.12024397344466284 0.13296059633482837" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12024397344466284 0.13296059633482837 C 0.12052837634359352 0.13238182060092687 0.12448920308478548 0.12489628440102542 0.12365680823183096 0.12601528752801025 C 0.12448920308478548 0.12489628440102542 0.13078070363414088 0.118992331417927 0.13023271168011705 0.11953255881101033" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3490764884642936,0.09923301026529399) rotate(0) scale(1,1) translate(-0.1740239204174037,-0.16693920371592752)"><path d="M 0.16921680764116542 0.1484103965877463 C 0.1699157243148126 0.14890876320786028 0.17877912922550518 0.15537246755097023 0.17760380772493184 0.15439079602911415 C 0.17877912922550518 0.15537246755097023 0.18379707047497168 0.16067375975176143 0.18332066564804553 0.16019045485001934" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18332066564804553 0.16019045485001934 C 0.18346841832889893 0.16089971864016533 0.18530106904509558 0.17009435394159916 0.18509369781828638 0.16870162033177138 C 0.18530106904509558 0.17009435394159916 0.18586873891571146 0.17758672798763436 0.1858091203697557 0.1769032581679526" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1858091203697557 0.1769032581679526 C 0.18580605219967233 0.17768174276520213 0.18572701822402327 0.18778652981730892 0.18577230232875552 0.1862450733349468 C 0.18572701822402327 0.18778652981730892 0.18522349517831957 0.19616370784141052 0.1852657111129685 0.19540073595629792" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1852657111129685 0.19540073595629792 C 0.1851801188385618 0.19619141769624263 0.18385309293481594 0.20705805865884 0.1842386038200884 0.20488891683563432 C 0.18385309293481594 0.20705805865884 0.1803396618788332 0.22280889791802727 0.180639580489699 0.22143043783476626" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.180639580489699 0.22143043783476626 C 0.1807055909918212 0.21972682562051832 0.18138581901720474 0.19827177472250315 0.18143170651516555 0.20098709126379102 C 0.18138581901720474 0.19827177472250315 0.17997703251408623 0.18783493501227183 0.18008893051416924 0.18884663933931176" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18008893051416924 0.18884663933931176 C 0.1799774372859019 0.18830562171475124 0.17846871078994364 0.18114195534365396 0.17875101177496108 0.1823544278445857 C 0.17846871078994364 0.18114195534365396 0.17653051093720987 0.17362551445175956 0.17670131869395997 0.1742969693281308" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17670131869395997 0.1742969693281308 C 0.17647555401233736 0.17372970399727627 0.17346883996416637 0.16624764167351272 0.17399214251448877 0.16748978535787643 C 0.17346883996416637 0.16624764167351272 0.1701241502213914 0.15871636676225703 0.1704216880900912 0.15939124511576622" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1704216880900912 0.15939124511576622 C 0.17039791423146594 0.15898954487218006 0.17003599508251097 0.15365577148206402 0.17013640178658812 0.15457084219273234 C 0.17003599508251097 0.15365577148206402 0.16914017479571353 0.14789702612066413 0.16921680764116542 0.1484103965877463" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3430236645809364,0.08365674066559942) rotate(0) scale(1,1) translate(-0.17390341090239536,-0.15286408272832677)"><path d="M 0.16817882484189153 0.15302599802439426 C 0.169041011443031 0.1525871345907849 0.17723151168984422 0.1510201838765871 0.1750763176510072 0.14951509055551937 C 0.17723151168984422 0.1510201838765871 0.18671338459028525 0.1670107013476134 0.1854203771525877 0.16506674459293627" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1854203771525877 0.16506674459293627 C 0.18559482141152295 0.16588376411942546 0.18779474287643985 0.17673254502128954 0.18751370825981092 0.1748709789108064 C 0.18779474287643985 0.17673254502128954 0.18889938290982858 0.1884500845027279 0.1887927925521349 0.18740553791873393" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1887927925521349 0.18740553791873393 C 0.18879387022788843 0.1880355234028337 0.18878674154208955 0.19625184371565085 0.18880572466117712 0.19496536372793094 C 0.18878674154208955 0.19625184371565085 0.1885449343282429 0.2034997922749931 0.188564995123084 0.20284329777137294" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.188564995123084 0.20284329777137294 C 0.18853154384564372 0.20373926466543785 0.18795231795480638 0.21556345908126964 0.18816357979380058 0.21359490050015187 C 0.18795231795480638 0.21556345908126964 0.18585204249359988 0.22753859243183908 0.18602985305515377 0.2264660007447862" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18602985305515377 0.2264660007447862 C 0.18605086997954232 0.2255040154112967 0.1862667294181411 0.21315384801225104 0.1862820561478163 0.21492217674291197 C 0.1862667294181411 0.21315384801225104 0.18580958864498776 0.20443971257968346 0.1858459322990515 0.20524605597685489" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1858459322990515 0.20524605597685489 C 0.18577898548995503 0.20449475199983153 0.18485495102109387 0.1945789849492222 0.185042570589894 0.19623040825257446 C 0.18485495102109387 0.1945789849492222 0.18347382471374618 0.18452885701029895 0.18359449747344986 0.18542897633662783" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18359449747344986 0.18542897633662783 C 0.18332627697834714 0.1846415494516542 0.1796344764528577 0.17429393693121298 0.18037585153221722 0.17597985371694416 C 0.1796344764528577 0.17429393693121298 0.17422484193687907 0.1642994850070959 0.17469799652113585 0.16519797490785346" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17469799652113585 0.16519797490785346 C 0.17427999451602438 0.1644059771745939 0.16913870815319454 0.15467967070178376 0.16968197245979824 0.15569400210873868 C 0.16913870815319454 0.15467967070178376 0.1680535625403993 0.1528036643506989 0.16817882484189153 0.15302599802439426" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3617311716105851,0.09073261587990888) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.10800207503469031 0.11953255881101033 C 0.10855006698871415 0.12007278620409365 0.11541037333593088 0.1271342906549951 0.11457797848297636 0.12601528752801025 C 0.11541037333593088 0.1271342906549951 0.11827521616907516 0.13353937206872987 0.11799081327014448 0.13296059633482837" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11799081327014448 0.13296059633482837 C 0.1178907665039586 0.13247975703736894 0.11649618598607714 0.12627843575683903 0.11679025207591398 0.12719052476531523 C 0.11649618598607714 0.12627843575683903 0.1142680008684515 0.12158427852209724 0.11446202019210246 0.12201552823311401" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11446202019210246 0.12201552823311401 C 0.11492561832763351 0.12246645843022634 0.1206378093996368 0.12779525977525522 0.1200251978184751 0.127426690598462 C 0.1206378093996368 0.12779525977525522 0.12196237261167359 0.12635599733431327 0.12181335916604294 0.1264383583546324" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12181335916604294 0.1264383583546324 C 0.12175087297277587 0.12669937547784596 0.12079513880221189 0.12968866317406028 0.12106352484683816 0.12957056383319504 C 0.12079513880221189 0.12968866317406028 0.11838682677916855 0.12771263266266697 0.11859272663052775 0.1278555504450153" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11859272663052775 0.1278555504450153 C 0.11864682281906849 0.12823857052365778 0.11926234936488722 0.1336553436055474 0.11924188089301668 0.13245179138872534 C 0.11926234936488722 0.1336553436055474 0.11880472057630402 0.14311870918505967 0.11883834829297422 0.1422981770468801" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11883834829297422 0.1422981770468801 C 0.11860816026410353 0.14143303435181673 0.11559087517466073 0.13057042502401553 0.11607609194652595 0.13191646470611965 C 0.11559087517466073 0.13057042502401553 0.11276071828759711 0.12566480387459006 0.11301574703059164 0.1261457008616308" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11301574703059164 0.1261457008616308 C 0.11317753015025102 0.12677175050578413 0.11515473623021906 0.13513863100367432 0.1149571444665042 0.13365829659147074 C 0.11515473623021906 0.13513863100367432 0.11542265683922558 0.14476399857612393 0.11538684819517009 0.14390971380807369" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11538684819517009 0.14390971380807369 C 0.11500858578960606 0.14287444267812818 0.11017021997385233 0.13003293344705136 0.11084769932840176 0.13148646024872768 C 0.11017021997385233 0.13003293344705136 0.10695787899159151 0.12604913651622693 0.10725709594057692 0.12646739218795774" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10725709594057692 0.12646739218795774 C 0.10742505882904602 0.12679660860914746 0.10956661497115922 0.1313023159121861 0.10927265060220616 0.13041798924223422 C 0.10956661497115922 0.1313023159121861 0.11091066984849762 0.13763442247614271 0.11078466836801366 0.1370793122273805" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11078466836801366 0.1370793122273805 C 0.110548017529999 0.13652679420292574 0.1072594018018783 0.1291459504178185 0.10794485831183773 0.1304490959339234 C 0.1072594018018783 0.1291459504178185 0.10211038457655584 0.12069093854247177 0.1025591902485006 0.1214415660341219" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1025591902485006 0.1214415660341219 C 0.10317218351476622 0.12195536786528353 0.1108452405004486 0.1287143404072111 0.10991510944368789 0.12760718800806145 C 0.1108452405004486 0.1287143404072111 0.11403790072012417 0.13532074539190586 0.11372076292962907 0.13472739482391782" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11372076292962907 0.13472739482391782 C 0.11352401843295083 0.13404683101845788 0.11088327164491198 0.12529439282398952 0.1113598289694902 0.12656062915839847 C 0.11088327164491198 0.12529439282398952 0.10772226220679032 0.11894688628206132 0.10800207503469031 0.11953255881101033" fill="none" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 61 KiB

View File

@@ -0,0 +1,173 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.32903146512973636,0.08614296108930872) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17571206163545214 0.15783077163527406 C 0.17575330022983285 0.15808540550270697 0.17606835362662546 0.16226825181357624 0.17620692476802075 0.16088637804446895 C 0.17606835362662546 0.16226825181357624 0.1738693982029327 0.1755404967662358 0.1740492079387087 0.1744132568645614" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1740492079387087 0.1744132568645614 C 0.17389963948861756 0.17499954138210647 0.17190476957669465 0.18263131516980788 0.17225438653761496 0.18144867107510196 C 0.17190476957669465 0.18263131516980788 0.1696537558968358 0.18920134557819326 0.16985380440766495 0.1886049860010324" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16985380440766495 0.1886049860010324 C 0.16950611751872874 0.18919768227965653 0.16471915632930803 0.19730945660530094 0.16568156174043028 0.1957173413445219 C 0.16471915632930803 0.19730945660530094 0.15769022095201207 0.20870978811253577 0.15830493947419808 0.20771036913038085" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15830493947419808 0.20771036913038085 C 0.1585742534566063 0.2067023831687864 0.1619477189973209 0.19397324400070104 0.16153670726309702 0.19561453759124742 C 0.1619477189973209 0.19397324400070104 0.1633787780367006 0.18738153841487246 0.16323708028488493 0.18801484604382437" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16323708028488493 0.18801484604382437 C 0.1634531254439459 0.18704220055831305 0.1663417286379429 0.17436432121927423 0.16582962219361672 0.17634310021768843 C 0.1663417286379429 0.17436432121927423 0.16967841890206437 0.16326336454995113 0.16938235761679915 0.164269498062854" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16938235761679915 0.164269498062854 C 0.16964067837857455 0.16393112588095754 0.17300968209299156 0.15967247134446458 0.1724822067581038 0.16020903188009625 C 0.17300968209299156 0.15967247134446458 0.1759812162085645 0.1576325832815389 0.17571206163545214 0.15783077163527406" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31372004356907446,0.08988072749507184) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.18029596383584076 0.14194559745658142 C 0.18001129619285194 0.14284538110194034 0.17640917852614832 0.154628287901017 0.17687995211997495 0.1527430012008886 C 0.17640917852614832 0.154628287901017 0.1744605747590833 0.1655545409128915 0.17464668070992112 0.16456903785812205" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17464668070992112 0.16456903785812205 C 0.17455765569614531 0.16560617571668307 0.1734855461092183 0.17916987761012332 0.1735783805446115 0.1770146921608544 C 0.1734855461092183 0.17916987761012332 0.17352885806358528 0.19154931084005708 0.17353266748520269 0.19043126324934917" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17353266748520269 0.19043126324934917 C 0.17356742208673417 0.1914607452217292 0.17417413833753537 0.20662415877512605 0.1739497227035806 0.2027850469179096 C 0.17417413833753537 0.20662415877512605 0.176415316125083 0.23931023542078292 0.17622565509265972 0.2365006055359465" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17622565509265972 0.2365006055359465 C 0.17587850137761557 0.2348370433911803 0.1713556323101117 0.21275803667228424 0.17205981051213004 0.2165378597987521 C 0.1713556323101117 0.21275803667228424 0.16741849218146548 0.18902646703663062 0.16777551666843968 0.19114272801833226" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16777551666843968 0.19114272801833226 C 0.1676448415597058 0.18987771909409576 0.1661482112456913 0.1734010673399964 0.16620741536363312 0.17596262092749423 C 0.1661482112456913 0.1734010673399964 0.1671365382439299 0.1591075403050971 0.16706506725313786 0.16040408496835842" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16706506725313786 0.16040408496835842 C 0.16753528294170486 0.15938677309779595 0.1738102302311673 0.14665813522896054 0.17270765551594205 0.14819634252160863 C 0.1738102302311673 0.14665813522896054 0.180928322862499 0.1414247020344958 0.18029596383584076 0.14194559745658142" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31372004356907446,0.08988072749507184) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.1814220679881812 0.13020431515749606 C 0.1814099433126202 0.13042333745119242 0.1812050086738161 0.13324060693941403 0.1812765718814493 0.13283258268185244 C 0.1812050086738161 0.13324060693941403 0.18050387096451048 0.13528960821210032 0.1805633094965827 0.13510060624823508" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1805633094965827 0.13510060624823508 C 0.18043292634225866 0.13519173661831818 0.17872589508702846 0.13630147778479207 0.1789987116446944 0.13619417068923234 C 0.17872589508702846 0.13630147778479207 0.17714707740124924 0.13640446812042825 0.17728951080459118 0.13638829139495165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17728951080459118 0.13638829139495165 C 0.1772344639917626 0.13643982862342988 0.176510494171485 0.13706147026887813 0.17662894905064827 0.1370067381366905 C 0.176510494171485 0.13706147026887813 0.17574986500862455 0.13700226839198426 0.17586805225463203 0.13704507698120316 C 0.17574986500862455 0.13700226839198426 0.17512445066283028 0.13636415628234871 0.1752107020985586 0.1364930350660638 C 0.17512445066283028 0.13636415628234871 0.17480183040299238 0.13531811556442877 0.17483303502589212 0.1354985315766221 C 0.17480183040299238 0.13531811556442877 0.17486845006719656 0.13414443200384113 0.17483624662376163 0.13432804291974385 C 0.17486845006719656 0.13414443200384113 0.17525141215739057 0.13320913039129328 0.1752194763471114 0.13329520058578948" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1752194763471114 0.13329520058578948 C 0.175225928857439 0.1330758382327092 0.17535888618581713 0.13024050822640704 0.17529690647104262 0.13066285234882585 C 0.17535888618581713 0.13024050822640704 0.17601876012885237 0.128024089347425 0.17596323292440547 0.12822707111676354" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17596323292440547 0.12822707111676354 C 0.17608441554466112 0.1281303285213307 0.17768065743228056 0.12694453301115222 0.17741742436747332 0.12706615997156917 C 0.17768065743228056 0.12694453301115222 0.1792640801466441 0.1267426632267762 0.1791220297020925 0.12676754759176026" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31171126593443177,0.09305863480294305) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10749484956860335 0.10271879936495153 C 0.10729963108902389 0.10292340810638717 0.10577874833215135 0.10423644048053367 0.10632353869112661 0.1039464518135654 C 0.10577874833215135 0.10423644048053367 0.10388095757904703 0.10408634063028219 0.10422610741475184 0.1044587313667611 C 0.10388095757904703 0.10408634063028219 0.10441356683866049 0.10085036750657016 0.10425263967689773 0.1017121073946919 C 0.10441356683866049 0.10085036750657016 0.10519167038532845 0.09928829203803065 0.10519167038532845 0.09928829203803065 C 0.10519167038532845 0.09928829203803065 0.10409171251513497 0.10257384728281364 0.10425263967689773 0.1017121073946919 C 0.10409171251513497 0.10257384728281364 0.10393248565108201 0.10498989346784175 0.10422610741475184 0.1044587313667611 C 0.10393248565108201 0.10498989346784175 0.10200311602238062 0.10512602500197418 0.10249090909487876 0.10489908000117576 C 0.10200311602238062 0.10512602500197418 0.10110075562724365 0.10597395493328096 0.10129934897976295 0.10582040137155165" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.30970248829978897,0.0962365421108142) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393600258561859 0.11526977100184854 C 0.13940635170460602 0.11545161705047073 0.13996179429910074 0.11782053356237808 0.13991593603722746 0.1174519235853148 C 0.13996179429910074 0.11782053356237808 0.13990985741211853 0.11987985465504902 0.13991032499866538 0.11969309072660793" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13991032499866538 0.11969309072660793 C 0.1398260967400083 0.11984512595744934 0.13870189832121457 0.12176922369633897 0.13889958589478035 0.12151751349670478 C 0.13870189832121457 0.12176922369633897 0.13742461480096718 0.1228132880910109 0.13753807411587587 0.12271361312221812" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13753807411587587 0.12271361312221812 C 0.13750587362103617 0.1227882060922876 0.13706792760902545 0.12372450334811785 0.13715166817779922 0.12360872876305184 C 0.13706792760902545 0.12372450334811785 0.13642457768481672 0.12414082543744906 0.13653318729059066 0.12410290814301027 C 0.13642457768481672 0.12414082543744906 0.13574397612189507 0.12401363639170482 0.13584835290851183 0.1240637362963173 C 0.13574397612189507 0.12401363639170482 0.13520848955941264 0.12337701641297862 0.13528066585118967 0.12350170928766056 C 0.13520848955941264 0.12337701641297862 0.13496160118934447 0.12240154731045544 0.13498223740718746 0.12256742180013391 C 0.13496160118934447 0.12240154731045544 0.1350372640562312 0.12142319821246754 0.135033031237074 0.1215112154115188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.135033031237074 0.1215112154115188 C 0.13498193388652824 0.12133255474571576 0.1343624073479165 0.1189931107887511 0.13441986303052497 0.11936728742188245 C 0.1343624073479165 0.1189931107887511 0.13433720471370933 0.11682557984661443 0.13434356304577208 0.11702109581394274" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13434356304577208 0.11702109581394274 C 0.13441874996264366 0.11687019648186753 0.13543189620106177 0.11495302697333803 0.1352458060482312 0.11521030382904027 C 0.13543189620106177 0.11495302697333803 0.13668754811569822 0.1138273960218889 0.13657664487973922 0.11393377354551593" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30886109695404507,0.09999186310740726) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10656700882375554 0.10109357915380976 C 0.10645842968868488 0.10137550988413871 0.10554024311117707 0.1033481085234863 0.10591553401333159 0.10278516353578343 C 0.10554024311117707 0.1033481085234863 0.10393445264411057 0.1043849402883355 0.10431526341082845 0.10447124908002696 C 0.10393445264411057 0.1043849402883355 0.10354189958078944 0.10148284961090291 0.10363066941302433 0.10226731078563472 C 0.10354189958078944 0.10148284961090291 0.1037826444174191 0.09976448203163607 0.1037826444174191 0.09976448203163607 C 0.1037826444174191 0.09976448203163607 0.10371943924525923 0.10305177196036654 0.10363066941302433 0.10226731078563472 C 0.10371943924525923 0.10305177196036654 0.10420942174758709 0.10507325029519436 0.10431526341082845 0.10447124908002696 C 0.10420942174758709 0.10507325029519436 0.10265117995293312 0.10635731636698413 0.10299561943357614 0.10587931807663913 C 0.10265117995293312 0.10635731636698413 0.10212412770920264 0.10758255894633993 0.10224862652697028 0.10733923882209696" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.30801970560830116,0.10374718410400041) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13929406819560644 0.11435664155284128 C 0.1393762916504439 0.11447790957163323 0.1404071550662166 0.11608483702059094 0.14028074965365586 0.11581185777834466 C 0.1404071550662166 0.11608483702059094 0.1408551151040584 0.11778410368325107 0.14081093314633514 0.11763239245979673" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14081093314633514 0.11763239245979673 C 0.14077663102087046 0.11780329740207122 0.140293709808482 0.11999912888548407 0.14039930764075895 0.1196832517670906 C 0.140293709808482 0.11999912888548407 0.13947246345219932 0.1215678900566373 0.1395437591590116 0.12142291788051833" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1395437591590116 0.12142291788051833 C 0.13953457620184287 0.12150161030055392 0.139391016146566 0.12250845238401936 0.13943356367298695 0.12236722692094545 C 0.139391016146566 0.12250845238401936 0.13895121810075906 0.12320977446810216 0.1390331888419601 0.1231176234374052 C 0.13895121810075906 0.12320977446810216 0.13835048481650133 0.1234914240933721 0.13844991477857463 0.12347303928930903 C 0.13835048481650133 0.1234914240933721 0.1377497822921761 0.12327793347018952 0.13784002929708067 0.12333824108616204 C 0.1377497822921761 0.12327793347018952 0.13731006828406755 0.12262650723862792 0.13736695071971988 0.12274934789763875 C 0.13731006828406755 0.12262650723862792 0.1371399808483805 0.12179038695139816 0.13715744006925276 0.12186415317803205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13715744006925276 0.12186415317803205 C 0.13707197809521096 0.1217481658188414 0.13599444319462659 0.12020136838150496 0.13613189638075102 0.12047230486774424 C 0.13599444319462659 0.12020136838150496 0.1354560106236771 0.11845796621611204 0.1355080018357597 0.11861291534316068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1355080018357597 0.11861291534316068 C 0.13553499796677765 0.11844804314500812 0.1359265054666885 0.11632061460294342 0.13583195540797524 0.11663444896532987 C 0.1359265054666885 0.11632061460294342 0.1367101564680141 0.11469794083028934 0.1366426025403188 0.11484690299452323" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3082108377313859,0.10726806573179681) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10546751535327674 0.10041799863056247 C 0.10544380736051755 0.10070800292620968 0.1051451096988071 0.10282669223197805 0.10532526739672157 0.10215802440444573 C 0.1051451096988071 0.10282669223197805 0.10404683207086776 0.10457531427152678 0.1043865691657899 0.10443000559575635 C 0.10404683207086776 0.10457531427152678 0.10302522869890086 0.10244394411784219 0.10328684482718879 0.10302987645906825 C 0.10302522869890086 0.10244394411784219 0.10281687239606234 0.10091441154840004 0.10281687239606234 0.10091441154840004 C 0.10281687239606234 0.10091441154840004 0.10354846095547672 0.1036158088002943 0.10328684482718879 0.10302987645906825 C 0.10354846095547672 0.1036158088002943 0.10444154459894311 0.10497800737696217 0.1043865691657899 0.10443000559575635 C 0.10444154459894311 0.10497800737696217 0.10344212103351005 0.10690022943317504 0.10361669742610807 0.10631788714630315 C 0.10344212103351005 0.10690022943317504 0.10329284637421736 0.10819175467876845 0.10333911081020175 0.10792405931698769" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.31372004356907446,0.08988072749507184) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.1774933664073078 0.1579721617991305 C 0.1775038709224134 0.15823775922375202 0.1775568071417097 0.16179211336211277 0.17761942058857502 0.16115933089458864 C 0.1775568071417097 0.16179211336211277 0.17666888708295314 0.1659327364523226 0.17674200504492404 0.16556555140941998" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17674200504492404 0.16556555140941998 C 0.17654345945784866 0.16626728809518304 0.17388685622310407 0.1754429408195406 0.17435945800001937 0.17398639163857693 C 0.17388685622310407 0.1754429408195406 0.1707967275321005 0.18379895407618466 0.17107078372194043 0.18304414158098406" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17107078372194043 0.18304414158098406 C 0.1706715116368371 0.18432569150618902 0.16532546315374524 0.20055145882819517 0.16627951870070065 0.19842274068344357 C 0.16532546315374524 0.20055145882819517 0.1590673336966233 0.20943592753755 0.1596221171584754 0.20858875931800336" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1596221171584754 0.20858875931800336 C 0.159929435449521 0.20758050840851153 0.16376582094240374 0.1939511694949476 0.1633099366510227 0.19648974840410133 C 0.16376582094240374 0.1939511694949476 0.16524129465538337 0.17659548440849676 0.16509272865504793 0.17812581240815864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16509272865504793 0.17812581240815864 C 0.16526154101170062 0.17746717628315078 0.16759352486035262 0.16901748708853095 0.16711847693488022 0.17022217890806426 C 0.16759352486035262 0.16901748708853095 0.17109953932953648 0.1631234548792336 0.17079330376071677 0.16366951057375903" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17079330376071677 0.16366951057375903 C 0.17102902719701232 0.1634132082154304 0.1741803235501459 0.16011910320926298 0.1736219849962633 0.16059388227381535 C 0.1741803235501459 0.16011910320926298 0.17781598152489486 0.15775368509290677 0.1774933664073078 0.1579721617991305" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32037244554725947,0.08617840466414575) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.1740240022166592 0.15549410507982758 C 0.17389451163266978 0.15591237990831952 0.17221934045949042 0.16130635881075528 0.17247011520878613 0.1605134030217308 C 0.17221934045949042 0.16130635881075528 0.17089342105980415 0.1653842555086538 0.17101470522511045 0.16500957454812126" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17101470522511045 0.16500957454812126 C 0.1708139017073519 0.16568086776423313 0.1682457135296391 0.17485114961835754 0.16860506301200776 0.17306509314146354 C 0.1682457135296391 0.17485114961835754 0.16654396547207656 0.18755701553163162 0.16670251143668666 0.18644225227084946" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16670251143668666 0.18644225227084946 C 0.16655295525129082 0.1878127008759551 0.16475342451568586 0.20592262166034858 0.16490783721193664 0.20288763553211736 C 0.16475342451568586 0.20592262166034858 0.1648447025708223 0.2245266233327497 0.16484955908167723 0.22286208580962413" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16484955908167723 0.22286208580962413 C 0.164596891043415 0.22116911213763274 0.16139149667620903 0.1993635226090328 0.16181754262253034 0.20254640174572755 C 0.16139149667620903 0.1993635226090328 0.15956362981776234 0.18317763070458393 0.15973700772582142 0.18466753616928727" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15973700772582142 0.18466753616928727 C 0.15984437532251286 0.18354344422645041 0.1614813938647741 0.169384925999139 0.16102541888611888 0.17117843285524484 C 0.1614813938647741 0.169384925999139 0.16555731485164757 0.16247603898274848 0.16520870746968383 0.16314545389601742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16520870746968383 0.16314545389601742 C 0.1655837469814255 0.1627652852077558 0.1704437895061652 0.1579458172355288 0.16970918161058393 0.15858342963687797 C 0.1704437895061652 0.1579458172355288 0.1743835706004988 0.15523666136674005 0.1740240022166592 0.15549410507982758" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3246377517109019,0.08729794428345364) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.17800749452749945 0.15760979986434112 C 0.17795244613286992 0.15783504921829822 0.17704564754382013 0.16110994511345922 0.17734691379194523 0.16031279211182625 C 0.17704564754382013 0.16110994511345922 0.1741460816965028 0.16774753953161245 0.17439229954999838 0.16717563588393658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17439229954999838 0.16717563588393658 C 0.17417790812130915 0.16777212570019806 0.17137598487842604 0.1757327926006968 0.17181960240572758 0.17433351367907418 C 0.17137598487842604 0.1757327926006968 0.16883966312376758 0.18476977204876896 0.1690688892223799 0.18396698294340783" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1690688892223799 0.18396698294340783 C 0.1688374020854456 0.18537014197938662 0.16597617294388153 0.2036221938538455 0.16629104357916827 0.20080489137515348 C 0.16597617294388153 0.2036221938538455 0.1652070581005867 0.2191887561304252 0.16529044159893913 0.217774612687712" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16529044159893913 0.217774612687712 C 0.16517480369758822 0.21634394279983565 0.16380548897054206 0.19768751955681965 0.1639027867827282 0.2006065740331959 C 0.16380548897054206 0.19768751955681965 0.16414120794187007 0.18125757438269707 0.1641228678527053 0.18274595897119697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1641228678527053 0.18274595897119697 C 0.1643604987138606 0.1816793735687885 0.16755286191277013 0.16830107947762038 0.16697443818656885 0.16994693414229514 C 0.16755286191277013 0.16830107947762038 0.1714047454321669 0.1624164337328337 0.1710639525671209 0.16299570299509997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1710639525671209 0.16299570299509997 C 0.17137483763964945 0.1626709285567656 0.17537320193416164 0.1586495844741909 0.17479457343746344 0.15909840973508746 C 0.17537320193416164 0.1586495844741909 0.1782752379516691 0.15748574904177892 0.17800749452749945 0.15760979986434112" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3342465685718323,0.08728601113623197) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17557761189137963 0.15585134178088156 C 0.17560800615053695 0.15598295714828875 0.17597541611429202 0.15786479537662956 0.17594234300126738 0.1574307261897678 C 0.17597541611429202 0.15786479537662956 0.17597716810154257 0.16136262584267727 0.17597448924767525 0.1610601720232227" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17597448924767525 0.1610601720232227 C 0.17594004659369047 0.1617079562236686 0.1755110880953929 0.17089144868798428 0.1755611773998579 0.16883358242857338 C 0.1755110880953929 0.17089144868798428 0.17535777094361496 0.18716464919511852 0.1753734175940952 0.18575456713615351" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1753734175940952 0.18575456713615351 C 0.1756788740998305 0.18691058389752666 0.18004745981126924 0.2024275389169692 0.17903889566291878 0.19962676827263123 C 0.18004745981126924 0.2024275389169692 0.18817929501691577 0.22100856875117414 0.1874761873743006 0.2193638148682093" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1874761873743006 0.2193638148682093 C 0.18643517373464433 0.2179182847003222 0.17343264575498799 0.1995104638454427 0.17498402369842517 0.20201745285356426 C 0.17343264575498799 0.1995104638454427 0.1683492877492735 0.188218487930516 0.1688596520530544 0.18927994677075047" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1688596520530544 0.18927994677075047 C 0.16871851689176126 0.1884953165340992 0.16710251293950198 0.1782837200232166 0.1671660301175369 0.17986438393093523 C 0.16710251293950198 0.1782837200232166 0.16817506389989378 0.16951594620705965 0.16809744591663556 0.170311979878127" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16809744591663556 0.170311979878127 C 0.16844319690564938 0.16924223918547385 0.17286980494936355 0.15627003839151882 0.17224645778480155 0.15747509156628928 C 0.17286980494936355 0.15627003839151882 0.1758552080669278 0.15571602929876424 0.17557761189137963 0.15585134178088156" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34040825155875043,0.08728601113623197) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.1736908416003717 0.15585134178088156 C 0.17387854703692818 0.15592342722558242 0.17634639886063122 0.1571010958068157 0.1759433068390495 0.15671636711729192 C 0.17634639886063122 0.1571010958068157 0.17874333244437782 0.16078072929998954 0.17852794585935255 0.16046808605516666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17852794585935255 0.16046808605516666 C 0.1787370539684961 0.16137430347989073 0.18137798947437359 0.1739101900665731 0.18103724316907507 0.17134269515185568 C 0.18137798947437359 0.1739101900665731 0.18274853971908955 0.19293930252176913 0.18261690152293458 0.1912780250317758" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18261690152293458 0.1912780250317758 C 0.18279645332822606 0.19248677460671487 0.18510064351408292 0.20888919602080241 0.1847715231864322 0.2057830199310448 C 0.18510064351408292 0.20888919602080241 0.18671591397710244 0.23044956462368546 0.18656634545474318 0.22855213810886696" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18656634545474318 0.22855213810886696 C 0.18569826979752133 0.22608724484728454 0.1749429481088797 0.19520851847604273 0.17614943756808105 0.198973418969878 C 0.1749429481088797 0.19520851847604273 0.1717500581423476 0.18207332495059086 0.17208847194432708 0.1833733321828437" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17208847194432708 0.1833733321828437 C 0.17202345139820063 0.18247886183910395 0.17130872263657715 0.17089353499792034 0.17130822539080987 0.17263968805796634 C 0.17130872263657715 0.17089353499792034 0.1721599566854281 0.16156781274598545 0.1720944388935344 0.16241949546229167" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1720944388935344 0.16241949546229167 C 0.1721859714770715 0.1620264200802325 0.1733258634548825 0.15715524473746412 0.17319282989597937 0.15770259087758162 C 0.1733258634548825 0.15715524473746412 0.17373234257573775 0.1556970710228232 0.1736908416003717 0.15585134178088156" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36093477656150813,0.08988072749507184) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.16369571154595608 0.14194559745658142 C 0.1643280705726143 0.14246649287866703 0.17238659458108002 0.1497345498142567 0.1712840198658548 0.14819634252160863 C 0.17238659458108002 0.1497345498142567 0.17739682381722607 0.1614213968389209 0.17692660812865904 0.16040408496835842" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17692660812865904 0.16040408496835842 C 0.1769980791194511 0.16170062963161974 0.17772505590022186 0.17852417451499206 0.1777842600181637 0.17596262092749423 C 0.17772505590022186 0.17852417451499206 0.17608548360462326 0.19240773694256877 0.17621615871335713 0.19114272801833226" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17621615871335713 0.19114272801833226 C 0.17585913422638294 0.1932589890000339 0.17122768666764848 0.22031768292521994 0.17193186486966683 0.2165378597987521 C 0.17122768666764848 0.22031768292521994 0.16741886657409297 0.23816416768071272 0.16776602028913712 0.2365006055359465" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16776602028913712 0.2365006055359465 C 0.16795568132156038 0.2336909756511101 0.17026636831217098 0.19894593506069316 0.17004195267821623 0.2027850469179096 C 0.17026636831217098 0.19894593506069316 0.17049376249812564 0.18940178127696913 0.17045900789659416 0.19043126324934917" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17045900789659416 0.19043126324934917 C 0.17045519847497675 0.18931321565864126 0.17032046040179213 0.17485950671158546 0.17041329483718534 0.1770146921608544 C 0.17032046040179213 0.17485950671158546 0.16925596965809991 0.16353189999956103 0.16934499467187572 0.16456903785812205" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16934499467187572 0.16456903785812205 C 0.1691588887210379 0.16358353480335258 0.16664094966799528 0.15085771450076021 0.16711172326182192 0.1527430012008886 C 0.16664094966799528 0.15085771450076021 0.16341104390296726 0.1410458138112225 0.16369571154595608 0.14194559745658142" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34562335500084634,0.08614296108930872) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17032377590118067 0.15772734231838678 C 0.17062292546405425 0.1579055306956464 0.1744923469452619 0.16041078249087434 0.1739135706556635 0.15986560284550208 C 0.1744923469452619 0.16041078249087434 0.17754871810308617 0.16463648933096667 0.17726909137636135 0.164269498062854" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17726909137636135 0.164269498062854 C 0.1774807676498064 0.16481288735525207 0.18027477310801848 0.17241537463084314 0.1798092066577017 0.17079016957163065 C 0.18027477310801848 0.17241537463084314 0.1831097789570345 0.18485377454021837 0.18285588878016276 0.18377195877340394" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18285588878016276 0.18377195877340394 C 0.18298627904573406 0.18533685498582006 0.18443965591465858 0.20689430795660477 0.1844205719670184 0.2025507133223975 C 0.18443965591465858 0.20689430795660477 0.182973589833914 0.2386737928056823 0.18308489615184512 0.23589509438389117" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18308489615184512 0.23589509438389117 C 0.18272435534079604 0.2342864448662162 0.17813695703782448 0.21368249644163265 0.17875840641925628 0.21659130017179143 C 0.17813695703782448 0.21368249644163265 0.17536659500428087 0.19968929540950192 0.17562750357466358 0.20098944962198573" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17562750357466358 0.20098944962198573 C 0.17534524327177642 0.19944791807117046 0.17182313847067032 0.17965743783062282 0.17224037994001748 0.1824910710122024 C 0.17182313847067032 0.17965743783062282 0.1704856247760378 0.16569374981226653 0.17062060594249776 0.16698585144303082" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17062060594249776 0.16698585144303082 C 0.1705930774704393 0.16645789585543266 0.17026552844101994 0.15987884196479918 0.17029026427779637 0.16065038439185286 C 0.17026552844101994 0.15987884196479918 0.1703265685364627 0.1574837554789313 0.17032377590118067 0.15772734231838678" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.36093477656150813,0.08988072749507184) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18142206798818114 0.12676754759176026 C 0.18156411843273274 0.12679243195674433 0.1833899063876076 0.12718778693198612 0.18312667332280036 0.12706615997156917 C 0.1833899063876076 0.12718778693198612 0.18470204738612384 0.1283238137121964 0.18458086476586819 0.12822707111676354" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18458086476586819 0.12822707111676354 C 0.1846363919703151 0.12843005288610207 0.18530917093400548 0.13108519647124467 0.18524719121923097 0.13066285234882585 C 0.18530917093400548 0.13108519647124467 0.18533107385348976 0.13351456293886976 0.18532462134316216 0.13329520058578948" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18532462134316216 0.13329520058578948 C 0.18535655715344132 0.13338127078028567 0.18574005450994693 0.13451165383564656 0.185707851066512 0.13432804291974385 C 0.18574005450994693 0.13451165383564656 0.18567985804148177 0.13567894758881538 0.1857110626643815 0.13549853157662206 C 0.18567985804148177 0.13567894758881538 0.18524714415598678 0.1366219138497789 0.1853333955917151 0.1364930350660638 C 0.18524714415598678 0.1366219138497789 0.1845578581896341 0.13708788557042206 0.1846760454356416 0.13704507698120316 C 0.1845578581896341 0.13708788557042206 0.18379669376046212 0.13695200600450286 0.18391514863962538 0.13700673813669048 C 0.18379669376046212 0.13695200600450286 0.18319954007285386 0.13633675416647342 0.18325458688568244 0.13638829139495165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18325458688568244 0.13638829139495165 C 0.1831121534823405 0.13637211466947505 0.18127256948791326 0.1360868635936726 0.1815453860455792 0.13619417068923234 C 0.18127256948791326 0.1360868635936726 0.17985040503936686 0.13500947587815199 0.1799807881936909 0.13510060624823508" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1799807881936909 0.13510060624823508 C 0.17992134966161868 0.13491160428436985 0.17919596260119108 0.13242455842429085 0.1792675258088243 0.13283258268185244 C 0.17919596260119108 0.13242455842429085 0.17910990502653146 0.1299852928637997 0.17912202970209246 0.13020431515749606" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3629435541961509,0.09305863480294305) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10737515777154849 0.10582040137155165 C 0.10717656441902917 0.10566684780982233 0.10569580458393449 0.10467213500037734 0.10618359765643264 0.10489908000117576 C 0.10569580458393449 0.10467213500037734 0.10415477757288977 0.10392756926568046 0.1044483993365596 0.1044587313667611 C 0.10415477757288977 0.10392756926568046 0.10426093991265092 0.10085036750657016 0.10442186707441369 0.1017121073946919 C 0.10426093991265092 0.10085036750657016 0.103482836365983 0.09928829203803065 0.103482836365983 0.09928829203803065 C 0.103482836365983 0.09928829203803065 0.10458279423617645 0.10257384728281364 0.10442186707441369 0.1017121073946919 C 0.10458279423617645 0.10257384728281364 0.10410324950085478 0.10483112210324003 0.1044483993365596 0.1044587313667611 C 0.10410324950085478 0.10483112210324003 0.10180617770120955 0.10365646314659714 0.1023509680601848 0.1039464518135654 C 0.10180617770120955 0.10365646314659714 0.10098443870312863 0.10251419062351588 0.10117965718270809 0.10271879936495153" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3649523318307937,0.0962365421108142) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139360025856186 0.11393377354551593 C 0.139470929092145 0.11404015106914295 0.14087695484052462 0.1154675806847425 0.14069086468769404 0.11521030382904027 C 0.14087695484052462 0.1154675806847425 0.14166829460702468 0.11717199514601796 0.1415931076901531 0.11702109581394275" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1415931076901531 0.11702109581394275 C 0.14158674935809035 0.11721661178127106 0.14145935202279175 0.11974146405501379 0.14151680770540023 0.11936728742188245 C 0.14145935202279175 0.11974146405501379 0.14085254214830556 0.12168987607732183 0.1409036394988513 0.1215112154115188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1409036394988513 0.1215112154115188 C 0.1409078723180085 0.12159923261057005 0.14093379711089482 0.12273329628981239 0.1409544333287378 0.12256742180013391 C 0.14093379711089482 0.12273329628981239 0.14058382859295854 0.12362640216234251 0.14065600488473556 0.12350170928766056 C 0.14058382859295854 0.12362640216234251 0.1399839410407967 0.12411383620092978 0.14008831782741343 0.1240637362963173 C 0.1399839410407967 0.12411383620092978 0.13929487383956063 0.12406499084857148 0.1394034834453346 0.12410290814301027 C 0.13929487383956063 0.12406499084857148 0.1387012619893522 0.12349295417798584 0.13878500255812598 0.12360872876305184 C 0.1387012619893522 0.12349295417798584 0.13836639612520968 0.12263902015214864 0.13839859662004939 0.12271361312221812" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13839859662004939 0.12271361312221812 C 0.1382851373051407 0.12261393815342535 0.13683939726757913 0.1212658032970706 0.1370370848411449 0.12151751349670478 C 0.13683939726757913 0.1212658032970706 0.1359421174786028 0.11954105549576652 0.13602634573725988 0.11969309072660793" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13602634573725988 0.11969309072660793 C 0.13602587815071304 0.11950632679816683 0.13606659296057108 0.11708331360825151 0.1360207346986978 0.1174519235853148 C 0.13606659296057108 0.11708331360825151 0.13662297072815946 0.11508792495322635 0.13657664487973933 0.11526977100184854" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3657937231765376,0.09999186310740726) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10642588022434118 0.10733923882209696 C 0.10630138140657354 0.107095918697854 0.10533444783709225 0.10540131978629412 0.1056788873177353 0.10587931807663913 C 0.10533444783709225 0.10540131978629412 0.10425340167724162 0.10386924786485956 0.10435924334048298 0.10447124908002696 C 0.10425340167724162 0.10386924786485956 0.10513260717052202 0.10148284961090291 0.10504383733828712 0.10226731078563472 C 0.10513260717052202 0.10148284961090291 0.10489186233389233 0.09976448203163608 0.10489186233389233 0.09976448203163608 C 0.10489186233389233 0.09976448203163608 0.10495506750605223 0.10305177196036654 0.10504383733828712 0.10226731078563472 C 0.10495506750605223 0.10305177196036654 0.1039784325737651 0.10455755787171842 0.10435924334048298 0.10447124908002696 C 0.1039784325737651 0.10455755787171842 0.10238368183582536 0.10222221854808056 0.10275897273797986 0.10278516353578343 C 0.10238368183582536 0.10222221854808056 0.1019989187924853 0.10081164842348081 0.10210749792755594 0.10109357915380976" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.36663511452228137,0.10374718410400043) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1392940681956065 0.11484690299452323 C 0.13936162212330178 0.11499586515875712 0.14019926538666325 0.11694828332771633 0.14010471532795 0.11663444896532987 C 0.14019926538666325 0.11694828332771633 0.1404556650311835 0.11877778754131324 0.14042866890016553 0.11861291534316068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14042866890016553 0.11861291534316068 C 0.14037667768808293 0.11876786447020932 0.13966732116904976 0.12074324135398352 0.1398047743551742 0.12047230486774424 C 0.13966732116904976 0.12074324135398352 0.1386937686926307 0.1219801405372227 0.1387792306666725 0.12186415317803205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1387792306666725 0.12186415317803205 C 0.13876177144580024 0.12193791940466595 0.13851283758055297 0.12287218855664958 0.1385697200162053 0.12274934789763875 C 0.13851283758055297 0.12287218855664958 0.13800639443393997 0.12339854870213456 0.13809664143884454 0.12333824108616204 C 0.13800639443393997 0.12339854870213456 0.13738732599527734 0.12345465448524595 0.13748675595735063 0.12347303928930903 C 0.13738732599527734 0.12345465448524595 0.13682151115276409 0.12302547240670825 0.13690348189396512 0.1231176234374052 C 0.13682151115276409 0.12302547240670825 0.13646055953651734 0.12222600145787155 0.1365031070629383 0.12236722692094545 C 0.13646055953651734 0.12222600145787155 0.13638372861974488 0.12134422546048274 0.1363929115769136 0.12142291788051833" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1363929115769136 0.12142291788051833 C 0.13632161587010133 0.12127794570439936 0.1354317652628894 0.11936737464869714 0.13553736309516634 0.1196832517670906 C 0.1354317652628894 0.11936737464869714 0.13509143546412547 0.11746148751752224 0.13512573758959015 0.11763239245979673" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13512573758959015 0.11763239245979673 C 0.13516991954731342 0.1174806812363424 0.13578232649483007 0.11553887853609837 0.13565592108226934 0.11581185777834466 C 0.13578232649483007 0.11553887853609837 0.1367248259951563 0.11423537353404933 0.13664260254031885 0.11435664155284128" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3664439823991965,0.10726806573179683) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10533539594110967 0.10792405931698769 C 0.1052891315051253 0.10765636395520693 0.10488323293260536 0.10573554485943126 0.10505780932520338 0.10631788714630315 C 0.10488323293260536 0.10573554485943126 0.10434291301867477 0.10388200381455054 0.10428793758552156 0.10443000559575635 C 0.10434291301867477 0.10388200381455054 0.10564927805241056 0.10244394411784219 0.10538766192412263 0.10302987645906825 C 0.10564927805241056 0.10244394411784219 0.1058576343552491 0.10091441154840004 0.1058576343552491 0.10091441154840004 C 0.1058576343552491 0.10091441154840004 0.1051260457958347 0.1036158088002943 0.10538766192412263 0.10302987645906825 C 0.1051260457958347 0.1036158088002943 0.10394820049059943 0.10428469691998593 0.10428793758552156 0.10443000559575635 C 0.10394820049059943 0.10428469691998593 0.10316908165667535 0.10148935657691341 0.10334923935458984 0.10215802440444573 C 0.10316908165667535 0.10148935657691341 0.10318328340527547 0.10012799433491526 0.10320699139803466 0.10041799863056247" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.36093477656150813,0.08988072749507184) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.16423810679390707 0.1579721617991305 C 0.16456072191149412 0.15819063850535425 0.16866782675883416 0.16106866133836772 0.16810948820495156 0.16059388227381535 C 0.16866782675883416 0.16106866133836772 0.17117389287679366 0.16392581293208766 0.1709381694404981 0.16366951057375903" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1709381694404981 0.16366951057375903 C 0.1712444050093178 0.16421556626828446 0.17508804419180704 0.17142687072759757 0.17461299626633464 0.17022217890806426 C 0.17508804419180704 0.17142687072759757 0.17680755690281966 0.1787844485331665 0.17663874454616696 0.17812581240815864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17663874454616696 0.17812581240815864 C 0.17678731054650237 0.17965614040782052 0.17887742084157315 0.19902832731325507 0.1784215365501921 0.19648974840410133 C 0.17887742084157315 0.19902832731325507 0.1824166743337851 0.2095970102274952 0.1821093560427395 0.20858875931800336" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1821093560427395 0.20858875931800336 C 0.1815545725808874 0.20774159109845672 0.17449789895355877 0.19629402253869196 0.17545195450051418 0.19842274068344357 C 0.17449789895355877 0.19629402253869196 0.17026141739417117 0.1817625916557791 0.17066068947927449 0.18304414158098406" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17066068947927449 0.18304414158098406 C 0.17038663328943457 0.18228932908578346 0.16689941342428016 0.17252984245761327 0.16737201520119546 0.17398639163857693 C 0.16689941342428016 0.17252984245761327 0.1647909225692154 0.1648638147236569 0.16498946815629079 0.16556555140941998" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16498946815629079 0.16556555140941998 C 0.16491635019431988 0.16519836636651736 0.1640494391657745 0.1605265484270645 0.1641120526126398 0.16115933089458864 C 0.1640494391657745 0.1605265484270645 0.1642486113090127 0.157706564374509 0.16423810679390707 0.1579721617991305" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35428237458332323,0.08617840466414575) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.1642921121001132 0.15549410507982758 C 0.16466507110438194 0.1557515487929151 0.1695156186673482 0.15922104203822712 0.1687676201513378 0.15858342963687797 C 0.1695156186673482 0.15922104203822712 0.17364313380397958 0.16352562258427905 0.1732680942922379 0.16314545389601742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1732680942922379 0.16314545389601742 C 0.17361670167420165 0.16381486880928636 0.17796289143550167 0.17284733506276934 0.17745138287580287 0.17117843285524484 C 0.17796289143550167 0.17284733506276934 0.17956909818635858 0.184171767680567 0.17940619700862354 0.18317228038631145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17940619700862354 0.18317228038631145 C 0.1792605552517086 0.18506351045510216 0.1770346121271206 0.21126504944495325 0.17765849592564414 0.2058670412118001 C 0.1770346121271206 0.21126504944495325 0.17144134938473235 0.2514551573485117 0.17191959142634095 0.24794837918414928" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17191959142634095 0.24794837918414928 C 0.1720570391866446 0.24370479384598479 0.17355685612489294 0.1918998445500672 0.1735689645499851 0.19702535512617553 C 0.17355685612489294 0.1918998445500672 0.17162473413983922 0.18556032703290562 0.17177429032523506 0.18644225227084946" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17177429032523506 0.18644225227084946 C 0.17161574436062496 0.1853274890100673 0.16951238926754533 0.17127903666456953 0.169871738749914 0.17306509314146354 C 0.16951238926754533 0.17127903666456953 0.16726129301905274 0.1643382813320094 0.1674620965368113 0.16500957454812126" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1674620965368113 0.16500957454812126 C 0.167340812371505 0.16463489358758873 0.16574252118341076 0.15972044723270634 0.1660066865531356 0.1605134030217308 C 0.16574252118341076 0.15972044723270634 0.1641492308956947 0.15507583025133564 0.1642921121001132 0.15549410507982758" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35001706841968083,0.08729794428345364) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.16917045943526432 0.15747322946352155 C 0.16943820285943398 0.1576086611528187 0.17303975603545957 0.15967189281597474 0.1723833805253003 0.15909840973508746 C 0.17303975603545957 0.15967189281597474 0.1774355976431649 0.16479307782575903 0.17704696555717533 0.1643550264341689" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17704696555717533 0.1643550264341689 C 0.17744653146215916 0.1653675800426384 0.18238355560927572 0.1787918206291343 0.18184175641698114 0.1765056697358029 C 0.18238355560927572 0.1787918206291343 0.1836907891520212 0.19306243443900759 0.18354855586471042 0.19178883715414569" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18354855586471042 0.19178883715414569 C 0.18347346228589995 0.19346459395983664 0.1824175423317163 0.216274971436828 0.18264743291898475 0.21189791882243733 C 0.1824175423317163 0.216274971436828 0.18063507180903102 0.2470147643355336 0.18078986881748899 0.2443134685268339" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18078986881748899 0.2443134685268339 C 0.18057124902958238 0.24084548118196744 0.177830940281738 0.19782401369721878 0.17816643136260957 0.20269762038843658 C 0.177830940281738 0.19782401369721878 0.17664710455406515 0.18442456888586886 0.1767639758470301 0.18583018823222022" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1767639758470301 0.18583018823222022 C 0.1765902270888556 0.1849389968876993 0.17422436961320314 0.17337492145590466 0.17467899074893609 0.17513589209796915 C 0.17422436961320314 0.17337492145590466 0.17102764984067634 0.163828761229903 0.17130852221823478 0.16469854052744656" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17130852221823478 0.16469854052744656 C 0.17117396856995595 0.16431213896810395 0.16951570654030795 0.1594596125600081 0.16969387843888883 0.16006172181533518 C 0.16951570654030795 0.1594596125600081 0.16912684118496227 0.15725752176753707 0.16917045943526432 0.15747322946352155" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.17194642410187813,-0.15955296299577326)"><path d="M 0.17182496869167133 0.15526516449806516 C 0.171962454290636 0.15531572454490908 0.1736605556751854 0.15620004181616362 0.17347479587924744 0.15587188506019212 C 0.1736605556751854 0.15620004181616362 0.1741023604399003 0.15948064227885075 0.174054086242927 0.15920304556972317" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.174054086242927 0.15920304556972317 C 0.17403348629875928 0.16016986570150846 0.17388248205061763 0.17318904600403612 0.1738068869129144 0.1708048871511465 C 0.17388248205061763 0.17318904600403612 0.17505742297723667 0.1892302905255029 0.17496122789536572 0.18781295180439855" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17496122789536572 0.18781295180439855 C 0.17521144708686956 0.1889308212326282 0.17870094794220434 0.20414846069976253 0.17796385819341176 0.20122738494315434 C 0.17870094794220434 0.20414846069976253 0.18429317543816529 0.22466906721207536 0.18380630488087654 0.2228658608836968" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18380630488087654 0.2228658608836968 C 0.18287510061632808 0.22105934672381058 0.17131333392415182 0.19828463659611636 0.17263185370629516 0.20118769096506203 C 0.17131333392415182 0.19828463659611636 0.16759675197756158 0.18693266824728935 0.16798406749515646 0.1880292084563488" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16798406749515646 0.1880292084563488 C 0.16792463191813523 0.18691474088174928 0.16737598116844113 0.1722754693578513 0.1672708405709018 0.17465559756115473 C 0.16737598116844113 0.1722754693578513 0.16941033084018894 0.15820200938800374 0.16924575466562838 0.15946767001670767" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16924575466562838 0.15946767001670767 C 0.16933810460813392 0.15914278290649997 0.17056888847786525 0.155218815900995 0.170353953975695 0.1555690246942152 C 0.17056888847786525 0.155218815900995 0.171947553251336 0.15523984281505265 0.17182496869167133 0.15526516449806516" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31372004356907446,0.08988072749507184) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.1284371755817753 0.11800414139083779 C 0.12829941139542578 0.11863723369496838 0.12658068412993237 0.12700996031264367 0.1267840053455809 0.12560124904040496 C 0.12658068412993237 0.12700996031264367 0.1259317639646938 0.1356842956258103 0.1259973209939928 0.1349086766577022" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1259973209939928 0.1349086766577022 C 0.12628941341392996 0.13413294503468376 0.13024343269668318 0.12402856798334337 0.12950243003323886 0.12559989718148082 C 0.13024343269668318 0.12402856798334337 0.13533826319883166 0.11525712870493392 0.13488935295532453 0.1160527262800529" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13488935295532453 0.1160527262800529 C 0.13472209634070403 0.11685947777636425 0.13248837695908647 0.1273059347571553 0.1328822735798787 0.12573374423578906 C 0.13248837695908647 0.1273059347571553 0.1299359534996462 0.1356844515615026 0.13016259350581794 0.13491901253644772" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13016259350581794 0.13491901253644772 C 0.13024645826130143 0.13436808070662232 0.13128350287113635 0.12736982411969772 0.1311689705716199 0.1283078305785427 C 0.13128350287113635 0.12736982411969772 0.13156764864404843 0.12327586040128836 0.13153698110001547 0.12366293503030792" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13153698110001547 0.12366293503030792 C 0.1313385673322539 0.12418354589966085 0.12856710043924852 0.13142598558837745 0.12915601588687667 0.12991026546254306 C 0.12856710043924852 0.13142598558837745 0.12407949404861117 0.14284668579680207 0.12446999572847775 0.1418515765403206" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12446999572847775 0.1418515765403206 C 0.12446196284614847 0.14108800051671375 0.1244264818504268 0.13132292973258572 0.1243736011405264 0.13268866425703835 C 0.1244264818504268 0.13132292973258572 0.12516547783951226 0.12486060374604332 0.12510456424728258 0.1254627622468891" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12510456424728258 0.1254627622468891 C 0.12492755341683189 0.12593872173076315 0.12261699224348152 0.13264037390893352 0.12298043428187416 0.1311742760533777 C 0.12261699224348152 0.13264037390893352 0.12055682857862897 0.1440460748852407 0.12074325978657091 0.14305593651355894" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12074325978657091 0.14305593651355894 C 0.12065279494092677 0.1421654666428593 0.11957559509397772 0.13109670326573114 0.11965768163884129 0.13237029806516337 C 0.11957559509397772 0.13109670326573114 0.11976659954898872 0.12738967399163967 0.11975822124820815 0.12777279892037227" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11975822124820815 0.12777279892037227 C 0.11957076458082466 0.1279388390624768 0.11722838350728897 0.12968258095365892 0.11750874123960625 0.12976528062562664 C 0.11722838350728897 0.12968258095365892 0.11630102739546691 0.1265316630426873 0.11639392846040071 0.12678040285675954" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11639392846040071 0.12678040285675954 C 0.11655125383496176 0.12685932588651244 0.11883490288360059 0.12716874923999932 0.11828183295513334 0.12772747921379454 C 0.11883490288360059 0.12716874923999932 0.12342651215591399 0.11943799016766866 0.12303076760200779 0.12007564317121681" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12303076760200779 0.12007564317121681 C 0.12291174431978201 0.12062497385437984 0.12144631362467063 0.12771669959509904 0.12160248821529841 0.1266676113691732 C 0.12144631362467063 0.12771669959509904 0.12111952120607253 0.1331644594250895 0.12115667251447453 0.1326647018823267" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12115667251447453 0.1326647018823267 C 0.12137692277709705 0.13206775798901446 0.12440638425488652 0.124279661788289 0.1237996756659448 0.12550137516257975 C 0.12440638425488652 0.124279661788289 0.1288236339080945 0.11737937190985928 0.1284371755817753 0.11800414139083779" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.36093477656150813,0.08988072749507184) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.10964696665320454 0.11770823885572881 C 0.11008085009354351 0.1183695219508153 0.11547283023286622 0.12689000791564992 0.11485356793727221 0.12564363599676676 C 0.11547283023286622 0.12689000791564992 0.11726349305558788 0.13324979070612336 0.11707811420033283 0.1326647018823267" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11707811420033283 0.1326647018823267 C 0.11705793364351634 0.13214834724224211 0.11665745522719198 0.1255369602649802 0.11683594751853493 0.12646844620131145 C 0.11665745522719198 0.1255369602649802 0.11477789496969087 0.12107173935010526 0.11493620670421734 0.12148687064635189" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11493620670421734 0.12148687064635189 C 0.11535426895883873 0.12198321122127427 0.12052834138885647 0.12788408522962108 0.11995295375967403 0.12744295754542045 C 0.12052834138885647 0.12788408522962108 0.12199818362896765 0.1267251899660378 0.1218408582544066 0.12678040285675954" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1218408582544066 0.12678040285675954 C 0.12174795718947282 0.1270291426708318 0.12044568774288385 0.12984798029759437 0.12072604547520113 0.12976528062562664 C 0.12044568774288385 0.12984798029759437 0.11828910879921571 0.12760675877826774 0.11847656546659921 0.12777279892037227" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11847656546659921 0.12777279892037227 C 0.11848494376737978 0.12815592384910487 0.1185463957379572 0.13354691839595811 0.11857710507596601 0.13237029806516337 C 0.1185463957379572 0.13354691839595811 0.11806896577170399 0.14268573829197134 0.11810805341049338 0.1418922428899092" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11810805341049338 0.1418922428899092 C 0.11791674020552 0.14109984707774736 0.1153974757055654 0.13101436975704894 0.11581229495081279 0.13238349314396727 C 0.1153974757055654 0.13101436975704894 0.11290671642725073 0.12488603467213258 0.11313022246752473 0.1254627622468891" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11313022246752473 0.1254627622468891 C 0.1131388289487032 0.12619532651240628 0.11313457409149374 0.1356545960647045 0.1132335002416664 0.13425353343309543 C 0.11313457409149374 0.1356545960647045 0.11183557603410171 0.14294401219228983 0.11194310866545285 0.14227551382619796" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11194310866545285 0.14227551382619796 C 0.11175672095671053 0.1413458445534425 0.10922843178834554 0.12958360880912173 0.10970645616054513 0.1311194825531326 C 0.10922843178834554 0.12958360880912173 0.10591517953560058 0.1232388244268119 0.10620681619905785 0.12384502889806734" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10620681619905785 0.12384502889806734 C 0.10618476806933186 0.12425631228465146 0.10592891762533159 0.12976854197643967 0.10594223864234598 0.12878042953707677 C 0.10592891762533159 0.12976854197643967 0.10605569110759688 0.1362792072232009 0.10604696399488528 0.1357023781704221" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10604696399488528 0.1357023781704221 C 0.10589982228702817 0.13468197756362002 0.10405613598098308 0.12182009989793288 0.10428126350059995 0.12345757088879698 C 0.10405613598098308 0.12182009989793288 0.10326744794772308 0.1154356558959909 0.10334543375948284 0.1160527262800529" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10334543375948284 0.1160527262800529 C 0.10387571062018075 0.11694909194605436 0.11044975875130206 0.12838044347020783 0.10970875608785775 0.1268091142720704 C 0.11044975875130206 0.12838044347020783 0.11244819152356088 0.13558364018983818 0.11223746572081449 0.1349086766577022" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11223746572081449 0.1349086766577022 C 0.11217190869151548 0.13409156494628954 0.11123490644692567 0.12366996630391924 0.1114507813692265 0.12510333612075036 C 0.11123490644692567 0.12366996630391924 0.10949664876020271 0.11709198075031035 0.10964696665320454 0.11770823885572881" fill="none" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 57 KiB

View File

@@ -0,0 +1,188 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.1771656262374324 C 0.18215373420523112 0.1771656262374324 0.17859295912856016 0.16901551681725188 0.1781973174533745 0.16964244831111192 C 0.17859295912856016 0.16901551681725188 0.1880883593330161 0.17026937980497195 0.18769271765783044 0.16964244831111192 C 0.1880883593330161 0.17026937980497195 0.18215373420523112 0.1771656262374324 0.18294501755560244 0.1771656262374324 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3131554722996889,0.09061997573793251) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.17918294597024548 0.14416829787571472 C 0.1789364512618447 0.14492098953151777 0.17581736496683423 0.15484181895533441 0.17622500946943628 0.15320059774535122 C 0.17581736496683423 0.15484181895533441 0.17413006214481946 0.16475148194969308 0.17429121193902075 0.16386295239551293" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17429121193902075 0.16386295239551293 C 0.17428424456500494 0.16491386200096572 0.1741609795075573 0.17855371950622165 0.1742076034508311 0.1764738676609465 C 0.1741609795075573 0.17855371950622165 0.173692068050477 0.18985011677863714 0.173731724619735 0.18882117453881478" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.173731724619735 0.18882117453881478 C 0.17374082522603293 0.19012465144500262 0.1740505376263576 0.2071248699265355 0.17384093189531025 0.20446289741306906 C 0.1740505376263576 0.2071248699265355 0.1764474985170527 0.22212334030769068 0.17624699339230326 0.2207648447004121" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17624699339230326 0.2207648447004121 C 0.175719148573203 0.21944054960172646 0.16921350166561328 0.20214526006040384 0.16991285556310007 0.20487330351618446 C 0.16921350166561328 0.20214526006040384 0.16768323754407535 0.1866245748739498 0.16785474662246186 0.18802832323104476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16785474662246186 0.18802832323104476 C 0.16769434694086996 0.18649976272995228 0.16596746312666438 0.16728720095189809 0.1659299504433591 0.16968559721793477 C 0.16596746312666438 0.16728720095189809 0.16850281118702265 0.15837773227366014 0.16830489882212546 0.15924756803860435" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16830489882212546 0.15924756803860435 C 0.16868312860706153 0.15847084272843376 0.17375016017036832 0.14867025846964976 0.1728436562413583 0.14992686431655725 C 0.17375016017036832 0.14867025846964976 0.17971122011431942 0.14368841733897786 0.17918294597024548 0.14416829787571472" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31295573404675614,0.09073261587990888) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18148015649647106 0.13016232655993948 C 0.18147553236232805 0.13038164708146308 0.1813671065335975 0.1332044962385103 0.18142466688675496 0.1327941728182226 C 0.1813671065335975 0.1332044962385103 0.18073649603956715 0.13527721050215613 0.1807894322585816 0.13508620760339202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1807894322585816 0.13508620760339202 C 0.1806622462676783 0.13518192422694025 0.17899422117560104 0.1363517613488291 0.179263200367742 0.13623480708597085 C 0.17899422117560104 0.1363517613488291 0.17741988875165277 0.13651089639700087 0.1775616819528904 0.13648965875769087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1775616819528904 0.13648965875769087 C 0.17750843185644288 0.13654312431137666 0.17680617056274922 0.13719016130215148 0.17692268079552015 0.13713124540192034 C 0.17680617056274922 0.13719016130215148 0.17604397934955765 0.1371580746304593 0.17616355915963938 0.13719664956046437 C 0.17604397934955765 0.1371580746304593 0.17539711500068944 0.13654261660296105 0.1754877230745395 0.1366683462418594 C 0.17539711500068944 0.13654261660296105 0.17503890429603605 0.13550869870110005 0.1750762622734386 0.13568789389368419 C 0.17503890429603605 0.13550869870110005 0.17506532950462977 0.13433335839172017 0.17503942734570893 0.13451800393084964 C 0.17506532950462977 0.13433335839172017 0.1754160599167205 0.1333849927152373 0.17538708818048884 0.13347214742413055" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17538708818048884 0.13347214742413055 C 0.17538603197067146 0.13325268898499967 0.17542190645207656 0.1304143527743947 0.17537441366268022 0.13083864615456 C 0.17542190645207656 0.1304143527743947 0.17600555065245857 0.12817579192111234 0.17595700165324485 0.12838062686214677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17595700165324485 0.12838062686214677 C 0.1760748007102479 0.12827962898006276 0.17762950196566113 0.12703772805440292 0.1773705903372813 0.12716865227713875 C 0.17762950196566113 0.12703772805440292 0.17920505376517942 0.126779609848665 0.17906394119380264 0.1268095361893168" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31105690215753257,0.09398010173805013) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1074426825075449 0.10260728048883422 C 0.10725458299105614 0.10281871455667363 0.10577954796671585 0.10418509197839254 0.10631408540861231 0.10387588489587068 C 0.10577954796671585 0.10418509197839254 0.10387777810458945 0.1041026467690811 0.10423545785616607 0.10446252298396536 C 0.10387777810458945 0.1041026467690811 0.10429935432234501 0.10084968350298185 0.10416800689915257 0.10171662760656518 C 0.10429935432234501 0.10084968350298185 0.10502354239532076 0.09926085836246534 0.10502354239532076 0.09926085836246534 C 0.10502354239532076 0.09926085836246534 0.10403665947596012 0.10258357171014851 0.10416800689915257 0.10171662760656518 C 0.10403665947596012 0.10258357171014851 0.10396018699109025 0.10500381473697916 0.10423545785616607 0.10446252298396536 C 0.10396018699109025 0.10500381473697916 0.10203664999233049 0.10520855078643669 0.10251638170869759 0.10496437812464798 C 0.10203664999233049 0.10520855078643669 0.10116384853284113 0.10608808909303921 0.10135706755796349 0.1059275589546976" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.309158070268309,0.09722758759619138) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13938203154071174 0.11521981853458556 C 0.13943455045636835 0.1153999045620633 0.14007069967994484 0.11774760369523599 0.140012258528591 0.11738085086431846 C 0.14007069967994484 0.11774760369523599 0.14008924759265498 0.11980751930903569 0.14008332535695775 0.1196208525055959" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008332535695775 0.1196208525055959 C 0.14000434981268098 0.11977579372894688 0.13894666314675927 0.12173874192106711 0.13913561882563655 0.12148014718580766 C 0.13894666314675927 0.12173874192106711 0.13770587707582996 0.12282764284061776 0.13781585721043046 0.12272398932870929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13781585721043046 0.12272398932870929 C 0.13778622829392562 0.12279968322781969 0.1373805815175252 0.12375100142237923 0.13746031021237215 0.12363231611803409 C 0.1373805815175252 0.12375100142237923 0.13675186664889322 0.12418997378513073 0.13685911287226693 0.12414821298085103 C 0.13675186664889322 0.12418997378513073 0.1360673283189315 0.1240870922998228 0.1361733555318877 0.12413344576939055 C 0.1360673283189315 0.1240870922998228 0.13551038802034132 0.12346992397735988 0.13558678631679266 0.12359197134603803 C 0.13551038802034132 0.12346992397735988 0.13523027745636249 0.1225038385713399 0.13525657597447172 0.12266887734525278 C 0.13523027745636249 0.1225038385713399 0.13527242310989956 0.12152339178523588 0.13527120409948204 0.12161150605908334" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13527120409948204 0.12161150605908334 C 0.13521402556617335 0.12143477334411107 0.13451483974698414 0.119118810262991 0.13458506169977755 0.11949071347941605 C 0.13451483974698414 0.119118810262991 0.13441549724647633 0.11695349696052988 0.13442854066596105 0.11714866746198266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13442854066596105 0.11714866746198266 C 0.13449851923737888 0.11699518332603626 0.13544545840041256 0.11504311270985879 0.13526828352297487 0.11530685783062576 C 0.13544545840041256 0.11504311270985879 0.13666183550123326 0.11387346502795832 0.13655463919521338 0.1139837260127789" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3084456679118057,0.10101057530629838) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645980520642277 0.10101608235456618 C 0.10636093758351041 0.10130170686355712 0.10551079656701257 0.10330579218795909 0.10586659946894861 0.10272982940851184 C 0.10551079656701257 0.10330579218795909 0.10394145622525501 0.10439916005173182 0.10432498779480648 0.10447185903124966 C 0.10394145622525501 0.10439916005173182 0.10344985643637755 0.1015128125219442 0.10356541005163979 0.10229363553140484 C 0.10344985643637755 0.1015128125219442 0.10363166610323309 0.0997869209744858 0.10363166610323309 0.0997869209744858 C 0.10363166610323309 0.0997869209744858 0.10368096366690202 0.10307445854086549 0.10356541005163979 0.10229363553140484 C 0.10368096366690202 0.10307445854086549 0.10423980617594346 0.10507726159011721 0.10432498779480648 0.10447185903124966 C 0.10423980617594346 0.10507726159011721 0.1027264438814729 0.10641602037319747 0.1030543203384617 0.10592605088461013 C 0.1027264438814729 0.10641602037319747 0.10224163050527574 0.10765928014246767 0.10235772905287373 0.10741167596277373" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.30773326555530256,0.10479356301640545) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928487422229538 0.11430959349649668 C 0.13937119639072942 0.11442786040679763 0.1404564077751189 0.11599710921464265 0.14032074024350402 0.11572879642010804 C 0.1404564077751189 0.11599710921464265 0.1409622299648547 0.11767939291514576 0.14091288460167387 0.11752934703091208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14091288460167387 0.11752934703091208 C 0.1408844503444628 0.11770136905167897 0.1404769467472478 0.11991305536065672 0.1405716735151412 0.11959361128011461 C 0.1404769467472478 0.11991305536065672 0.13970987087627104 0.12151009805719255 0.13977616338695337 0.12136267599741733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13977616338695337 0.12136267599741733 C 0.13976967823617864 0.12144164740239999 0.1396606515528085 0.12245298702303878 0.13969834157765676 0.12231033285720928 C 0.1396606515528085 0.12245298702303878 0.1392451149381362 0.12316953912058846 0.1393238830887742 0.12307452598737131 C 0.1392451149381362 0.12316953912058846 0.13865438335592595 0.12347240386410402 0.1387531237700009 0.1234504904558151 C 0.13865438335592595 0.12347240386410402 0.13804674285657448 0.12328042889014457 0.1381389981198747 0.12333748688683831 C 0.13804674285657448 0.12328042889014457 0.13758501022117137 0.12264505373794958 0.13764606061039805 0.12276579449549016 C 0.13758501022117137 0.12264505373794958 0.13738642118571745 0.1218154980714231 0.13740639344915442 0.12188859779635133" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13740639344915442 0.12188859779635133 C 0.13731701539540914 0.1217757236232629 0.1361872181154768 0.12026822974789875 0.13633385680421112 0.12053410771929016 C 0.1361872181154768 0.12026822974789875 0.1355894685493536 0.11854505834135148 0.13564672918434265 0.11869806213965446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13564672918434265 0.11869806213965446 C 0.13566806828899047 0.11853232928856203 0.13598655405089055 0.11639225866914629 0.13590279844011663 0.11670926792654518 C 0.13598655405089055 0.11639225866914629 0.13671421301975592 0.11474267464456141 0.13665179651362983 0.11489395105086785" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3080447370803482,0.10830549532800643) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10533786866573912 0.10038005641801928 C 0.10532409669544622 0.10067072807858037 0.1050980652491578 0.10279876066452964 0.10525523684398173 0.10212408638138577 C 0.1050980652491578 0.10279876066452964 0.10406028023751573 0.10458541724689552 0.1043948390967955 0.10442810211688247 C 0.10406028023751573 0.10458541724689552 0.10296638110671914 0.10249171554404668 0.10324788368830312 0.10306797716146406 C 0.10296638110671914 0.10249171554404668 0.10270582360729164 0.10097053241237818 0.10270582360729164 0.10097053241237818 C 0.10270582360729164 0.10097053241237818 0.1035293862698871 0.10364423877888143 0.10324788368830312 0.10306797716146406 C 0.1035293862698871 0.10364423877888143 0.10446852918897014 0.10497381289110118 0.1043948390967955 0.10442810211688247 C 0.10446852918897014 0.10497381289110118 0.10353547719638646 0.1069304444365268 0.10369002424135089 0.10634224180677633 C 0.10353547719638646 0.1069304444365268 0.10343047892461865 0.10822649724348683 0.10346755682700898 0.10795731789538533" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.31295573404675614,0.09073261587990888) rotate(0) scale(1,1) translate(-0.17115841836591697,-0.1716896655664302)"><path d="M 0.17787451414932504 0.15811208033755697 C 0.17786019601404016 0.15837496866844736 0.1776142844459678 0.16189306839459688 0.1777026965259066 0.1612667403082415 C 0.1776142844459678 0.16189306839459688 0.17673947524540576 0.16599145712928642 0.17681356919005967 0.16562801737382143" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17681356919005967 0.16562801737382143 C 0.17661237340528255 0.16632259634538973 0.17392030968062813 0.1754046574119589 0.17439921977273423 0.17396296503264105 C 0.17392030968062813 0.1754046574119589 0.17078893377745752 0.18367543933338515 0.1710666480847865 0.1829283259256356" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1710666480847865 0.1829283259256356 C 0.17066204649335726 0.1842803899478089 0.1652184099458377 0.2014179839008895 0.16621142898763552 0.1991530941917152 C 0.1652184099458377 0.2014179839008895 0.1585620021328441 0.21101982812272815 0.1591504195832127 0.21010700243572716" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1591504195832127 0.21010700243572716 C 0.1595142973912655 0.2089604385189247 0.16401086512356566 0.19435929367227164 0.16351695327984617 0.19634823543409768 C 0.16401086512356566 0.19435929367227164 0.16520739574351348 0.18539732344879115 0.16507736170784676 0.18623970129381473" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16507736170784676 0.18623970129381473 C 0.1651851998624246 0.18521736462807162 0.166776294394629 0.17225525862056987 0.16637141956278084 0.17397166130489744 C 0.166776294394629 0.17225525862056987 0.17023289636729466 0.1649488030632993 0.16993585969002437 0.16564286908188375" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16993585969002437 0.16564286908188375 C 0.17028086125350744 0.16525168982384425 0.17473743299009634 0.16032115225671587 0.1740758784518213 0.16094871798540977 C 0.17473743299009634 0.16032115225671587 0.178191067124117 0.15787569386690256 0.17787451414932504 0.15811208033755697" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33292955934003177,0.07935596154029032) rotate(0) scale(1,1) translate(-0.18233721705154246,-0.14882968924032608)"><path d="M 0.18822929784101325 0.14113341409920838 C 0.18830676553907014 0.14150825034258394 0.18906511203221552 0.14631948526828206 0.189158910217696 0.14563144901971506 C 0.18906511203221552 0.14631948526828206 0.18693245373170997 0.149703049087204 0.18710371961524735 0.14938984908201255" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18710371961524735 0.14938984908201255 C 0.18717042798738184 0.15020816803594353 0.18683397571049734 0.16040544286215186 0.1879042200808612 0.15920967652918433 C 0.18683397571049734 0.16040544286215186 0.17312383442838272 0.16411649245665952 0.17426078717088106 0.16373904507762296" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17426078717088106 0.16373904507762296 C 0.17367762547482524 0.16425922673081758 0.1665177645083895 0.17133715524157778 0.16726284681821119 0.16998122491595846 C 0.1665177645083895 0.17133715524157778 0.165157878839255 0.18084595765747943 0.16531979945302086 0.18001020898505474" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16531979945302086 0.18001020898505474 C 0.16557842218248586 0.18197328761432374 0.16863822025630285 0.20815689293774475 0.16842327220660072 0.2035671525362827 C 0.16863822025630285 0.20815689293774475 0.16785550136968352 0.2377137555747928 0.16789917604944637 0.2350870938025997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16789917604944637 0.2350870938025997 C 0.16746193555024935 0.2321929071367732 0.16197958802495843 0.19511168694609318 0.16265229005908213 0.2003568538126819 C 0.16197958802495843 0.19511168694609318 0.15959129010503517 0.1697941112027728 0.15982675163996185 0.17214509140353504" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15982675163996185 0.17214509140353504 C 0.16007114933529787 0.17083828807102175 0.16359700807100386 0.15425215430072295 0.16275952398399393 0.15646345141337545 C 0.16359700807100386 0.15425215430072295 0.1704696470757549 0.14470503227156584 0.169876560684081 0.14560952605170505" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.169876560684081 0.14560952605170505 C 0.17065082231099843 0.14520585846981032 0.18069709497016773 0.14039250573959375 0.17916770020709002 0.14076551506896848 C 0.18069709497016773 0.14039250573959375 0.18898443097717352 0.14116407235172837 0.18822929784101325 0.14113341409920838" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33292955934003177,0.07935596154029032) rotate(0) scale(1,1) translate(-0.18233721705154246,-0.14882968924032608)"><path d="M 0.18828821864890793 0.1410564513477972 C 0.18836646102394541 0.1414350359536065 0.18913239098202228 0.1462943832285616 0.18922712714935758 0.14559946661750892 C 0.18913239098202228 0.1462943832285616 0.18697840609851163 0.14971178268567276 0.1871513846408844 0.1493954506804294" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1871513846408844 0.1493954506804294 C 0.18721876009674024 0.1502219528238997 0.18687894329708685 0.1605212003983701 0.18795989011115435 0.15931347640207288 C 0.18687894329708685 0.1605212003983701 0.17303170060215112 0.1642693604888229 0.17418002287207443 0.16388813863599597" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17418002287207443 0.16388813863599597 C 0.17381271382563632 0.16426126965146406 0.16925378124106313 0.1694306955419717 0.1697723143148171 0.16836571082161314 C 0.16925378124106313 0.1694306955419717 0.1678064019597111 0.1773598089851893 0.16795762598702696 0.17666795528029883" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16795762598702696 0.17666795528029883 C 0.16749168335745512 0.17786278160887498 0.16208461500741267 0.19411872216251727 0.1623663144321649 0.19100587122321266 C 0.16208461500741267 0.19411872216251727 0.16476147609481984 0.2159401911626827 0.16457723289000023 0.21402216655195425" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16457723289000023 0.21402216655195425 C 0.16396552522616953 0.2122364428512561 0.15676608743014678 0.18941769333325065 0.15723674092403178 0.1925934821435763 C 0.15676608743014678 0.18941769333325065 0.1590704451333258 0.17452263571841897 0.1589293909633801 0.17591270082804647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1589293909633801 0.17591270082804647 C 0.15923225397087495 0.1742982915119681 0.16346562731640393 0.15401184100108697 0.1625637470533184 0.15653978903510593 C 0.16346562731640393 0.15401184100108697 0.17035097137599706 0.14466378570187827 0.1697519541204064 0.14557732441981885" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1697519541204064 0.14557732441981885 C 0.17053395836359297 0.1451696201621052 0.18068069374935394 0.1403081339045864 0.1791360050386455 0.14068487332725488 C 0.18068069374935394 0.1403081339045864 0.1890509031164298 0.1410874161828424 0.18828821864890793 0.1410564513477972" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3236347640265609,0.09936354964349076) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.19078601059682362 0.1609124730788321 C 0.19013301746417066 0.16113448317224058 0.1818817150418124 0.16404749354255255 0.18295009300498807 0.16357659419973375 C 0.1818817150418124 0.16404749354255255 0.17755009020819257 0.166812154442068 0.1779654750387153 0.16656326519265768" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1779654750387153 0.16656326519265768 C 0.17762772565315474 0.16692164047851746 0.1732005749247713 0.17176382747091892 0.1739124824119885 0.170863768622975 C 0.1732005749247713 0.17176382747091892 0.16904842709045223 0.17790565493006888 0.16942258519210887 0.17736397136798474" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16942258519210887 0.17736397136798474 C 0.16927644450179333 0.17791222048584177 0.1673463587878591 0.18562712288519403 0.16766889690832243 0.18394296078226918 C 0.1673463587878591 0.18562712288519403 0.16537573031640143 0.1987098295881507 0.1655521277465492 0.19757391660308288" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1655521277465492 0.19757391660308288 C 0.16551026414628478 0.19653336196161603 0.16507803709984664 0.18329883578283343 0.1650497645433761 0.18508726090548067 C 0.16507803709984664 0.18329883578283343 0.16596153458093044 0.17536494465013577 0.16589139842419548 0.17611281513131616" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16589139842419548 0.17611281513131616 C 0.16611239055996174 0.17549890347180452 0.16929048829516583 0.16747776137103987 0.16854330405339074 0.1687458752171767 C 0.16929048829516583 0.16747776137103987 0.1753838014315053 0.16024124679104887 0.1748576093254965 0.16089544897767408" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1748576093254965 0.16089544897767408 C 0.1754346724119912 0.16072488477629374 0.18310973313604376 0.15885009723620663 0.18178236636343317 0.15884867856111012 C 0.18310973313604376 0.15885009723620663 0.1915363142829395 0.16108445595530893 0.19078601059682362 0.1609124730788321" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3615314333576523,0.09061997573793251) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.1648087294115513 0.14416829787571472 C 0.16533700355562525 0.1446481784124516 0.17205452306944866 0.15118347016346473 0.17114801914043865 0.14992686431655725 C 0.17205452306944866 0.15118347016346473 0.1760650063446074 0.16002429334877494 0.17568677655967133 0.15924756803860435" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17568677655967133 0.15924756803860435 C 0.17588468892456854 0.16011740380354855 0.1780992376217431 0.17208399348397146 0.17806172493843778 0.16968559721793477 C 0.1780992376217431 0.17208399348397146 0.17597652907774314 0.18955688373213725 0.17613692875933504 0.18802832323104476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17613692875933504 0.18802832323104476 C 0.17592685469411268 0.1895304022767298 0.17291668607918004 0.20878131523504578 0.17361603997666683 0.20605327177926516 C 0.17291668607918004 0.20878131523504578 0.16725540215722912 0.22199080911050767 0.16774468198949355 0.2207648447004121" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16774468198949355 0.2207648447004121 C 0.16794518711424297 0.21940634909313353 0.17036034921753396 0.2018009248996026 0.1701507434864866 0.20446289741306906 C 0.17036034921753396 0.2018009248996026 0.1702690513683598 0.18751769763262693 0.17025995076206185 0.18882117453881478" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17025995076206185 0.18882117453881478 C 0.17022029419280385 0.18779223229899242 0.16973744798769203 0.17439401581567135 0.16978407193096584 0.1764738676609465 C 0.16973744798769203 0.17439401581567135 0.16969349606876025 0.16281204279006015 0.16970046344277606 0.16386295239551293" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16970046344277606 0.16386295239551293 C 0.16953931364857477 0.1629744228413328 0.1673590214097585 0.15155937653536802 0.16776666591236056 0.15320059774535122 C 0.1673590214097585 0.15155937653536802 0.16456223470315054 0.14341560621991167 0.1648087294115513 0.14416829787571472" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.3617311716105851,0.09073261587990888) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.181480156496471 0.1268095361893168 C 0.18162126906784778 0.12683946252996864 0.1834324189813722 0.12729957649987458 0.18317350735299237 0.12716865227713875 C 0.1834324189813722 0.12729957649987458 0.18470489509403185 0.12848162474423078 0.1845870960370288 0.12838062686214677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1845870960370288 0.12838062686214677 C 0.18463564503624252 0.1285854618031812 0.1852171768169897 0.13126293953472531 0.18516968402759337 0.13083864615456 C 0.1852171768169897 0.13126293953472531 0.18515595329996737 0.13369160586326143 0.18515700950978475 0.13347214742413055" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18515700950978475 0.13347214742413055 C 0.18518598124601643 0.1335593021330238 0.18553057250348554 0.13470264946997912 0.1855046703445647 0.13451800393084964 C 0.18553057250348554 0.13470264946997912 0.1854304774394325 0.13586708908626832 0.18546783541683504 0.13568789389368419 C 0.1854304774394325 0.13586708908626832 0.18496576654188415 0.13679407588075773 0.1850563746157342 0.1366683462418594 C 0.18496576654188415 0.13679407588075773 0.1842609587205525 0.13723522449046946 0.18438053853063424 0.13719664956046437 C 0.1842609587205525 0.13723522449046946 0.18350490666198258 0.1370723295016892 0.1836214168947535 0.13713124540192034 C 0.18350490666198258 0.1370723295016892 0.1829291656409357 0.13643619320400507 0.18298241573738322 0.13648965875769087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18298241573738322 0.13648965875769087 C 0.18284062253614558 0.13646842111838087 0.1810119181303907 0.13611785282311262 0.18128089732253164 0.13623480708597085 C 0.1810119181303907 0.13611785282311262 0.1796274794407887 0.13499049097984378 0.179754665431692 0.13508620760339202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.179754665431692 0.13508620760339202 C 0.17970172921267755 0.1348952047046279 0.1790618704503612 0.13238384939793488 0.17911943080351866 0.1327941728182226 C 0.1790618704503612 0.13238384939793488 0.17905931705965958 0.12994300603841588 0.1790639411938026 0.13016232655993948" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36363000349980873,0.09398010173805013) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10731743919334794 0.1059275589546976 C 0.10712422016822558 0.105767028816356 0.1056783933262467 0.10472020546285928 0.10615812504261381 0.10496437812464798 C 0.1056783933262467 0.10472020546285928 0.10416377803006954 0.10392123123095155 0.10443904889514537 0.10446252298396536 C 0.10416377803006954 0.10392123123095155 0.10437515242896639 0.10084968350298185 0.10450649985215883 0.10171662760656518 C 0.10437515242896639 0.10084968350298185 0.1036509643559907 0.09926085836246534 0.1036509643559907 0.09926085836246534 C 0.1036509643559907 0.09926085836246534 0.10463784727535128 0.10258357171014851 0.10450649985215883 0.10171662760656518 C 0.10463784727535128 0.10258357171014851 0.10408136914356875 0.10482239919884961 0.10443904889514537 0.10446252298396536 C 0.10408136914356875 0.10482239919884961 0.10182588390080263 0.10356667781334883 0.10236042134269911 0.10387588489587068 C 0.10182588390080263 0.10356667781334883 0.10104372472727777 0.10239584642099481 0.10123182424376653 0.10260728048883422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.36552883538903236,0.09722758759619138) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13938203154071185 0.1139837260127789 C 0.13948922784673173 0.11409398699759947 0.14084556209038804 0.11557060295139274 0.14066838721295036 0.11530685783062576 C 0.14084556209038804 0.11557060295139274 0.14157810864138198 0.11730215159792906 0.14150813006996416 0.11714866746198266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14150813006996416 0.11714866746198266 C 0.14149508665047944 0.11734383796343544 0.14128138708335422 0.1198626166958411 0.14135160903614763 0.11949071347941605 C 0.14128138708335422 0.1198626166958411 0.14060828810313453 0.12178823877405562 0.14066546663644322 0.12161150605908334" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14066546663644322 0.12161150605908334 C 0.14066668564686075 0.1216996203329308 0.14065379624334434 0.12283391611916566 0.14068009476145357 0.12266887734525278 C 0.14065379624334434 0.12283391611916566 0.14027348612268123 0.12371401871471617 0.14034988441913257 0.12359197134603803 C 0.14027348612268123 0.12371401871471617 0.13965728799108137 0.12417979923895829 0.13976331520403756 0.12413344576939055 C 0.13965728799108137 0.12417979923895829 0.13897031164028462 0.12410645217657133 0.13907755786365833 0.12414821298085103 C 0.13897031164028462 0.12410645217657133 0.1383966318287061 0.12351363081368895 0.13847636052355305 0.12363231611803409 C 0.1383966318287061 0.12351363081368895 0.13809118460898995 0.12264829542959889 0.1381208135254948 0.12272398932870929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1381208135254948 0.12272398932870929 C 0.1380108333908943 0.12262033581680082 0.13661209623141146 0.1212215524505482 0.13680105191028874 0.12148014718580766 C 0.13661209623141146 0.1212215524505482 0.13577436983469074 0.11946591128224492 0.1358533453789675 0.1196208525055959" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1358533453789675 0.1196208525055959 C 0.13585926761466474 0.11943418570215611 0.1359828533586881 0.11701409803340093 0.13592441220733426 0.11738085086431846 C 0.1359828533586881 0.11701409803340093 0.1366071581108701 0.11503973250710782 0.1365546391952135 0.11521981853458556" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3662412377455356,0.10101057530629838) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10631677769843774 0.10741167596277373 C 0.10620067915083974 0.1071640717830798 0.10529230995586095 0.10543608139602278 0.10562018641284975 0.10592605088461013 C 0.10529230995586095 0.10543608139602278 0.10426433733764195 0.1038664564723821 0.10434951895650496 0.10447185903124966 C 0.10426433733764195 0.1038664564723821 0.1052246503149339 0.1015128125219442 0.10510909669967167 0.10229363553140484 C 0.1052246503149339 0.1015128125219442 0.10504284064807835 0.0997869209744858 0.10504284064807835 0.0997869209744858 C 0.10504284064807835 0.0997869209744858 0.10499354308440943 0.10307445854086549 0.10510909669967167 0.10229363553140484 C 0.10499354308440943 0.10307445854086549 0.10396598738695349 0.1045445580107675 0.10434951895650496 0.10447185903124966 C 0.10396598738695349 0.1045445580107675 0.1024521043804268 0.1021538666290646 0.10280790728236285 0.10272982940851184 C 0.1024521043804268 0.1021538666290646 0.10211583392197635 0.10073045784557523 0.10221470154488871 0.10101608235456618" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3669536401020387,0.10479356301640545) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928487422229546 0.11489395105086785 C 0.13934729072842156 0.11504522745717428 0.1401176279065825 0.11702627718394407 0.14003387229580858 0.11670926792654518 C 0.1401176279065825 0.11702627718394407 0.1403112806562304 0.1188637949907469 0.1402899415515826 0.11869806213965446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1402899415515826 0.11869806213965446 C 0.14023268091659355 0.11885106593795744 0.13945617524297982 0.12079998569068157 0.13960281393171411 0.12053410771929016 C 0.13945617524297982 0.12079998569068157 0.1384408992330256 0.12200147196943976 0.13853027728677086 0.12188859779635133" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13853027728677086 0.12188859779635133 C 0.1385103050233339 0.12196169752127957 0.13822955973630044 0.12288653525303074 0.13829061012552712 0.12276579449549016 C 0.13822955973630044 0.12288653525303074 0.13770541735275027 0.12339454488353205 0.1377976726160505 0.12333748688683831 C 0.13770541735275027 0.12339454488353205 0.1370848065518494 0.12342857704752619 0.13718354696592436 0.1234504904558151 C 0.1370848065518494 0.12342857704752619 0.13653401949651306 0.12297951285415416 0.13661278764715104 0.12307452598737131 C 0.13653401949651306 0.12297951285415416 0.13620063913342023 0.12216767869137979 0.1362383291582685 0.12231033285720928 C 0.13620063913342023 0.12216767869137979 0.13615402219819714 0.12128370459243468 0.13616050734897187 0.12136267599741733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13616050734897187 0.12136267599741733 C 0.13609421483828954 0.12121525393764211 0.1352702704528907 0.11927416719957251 0.13536499722078407 0.11959361128011461 C 0.1352702704528907 0.11927416719957251 0.13499535187704034 0.1173573250101452 0.1350237861342514 0.11752934703091208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1350237861342514 0.11752934703091208 C 0.13507313149743222 0.11737930114667841 0.13575159802403605 0.11546048362557343 0.13561593049242118 0.11572879642010804 C 0.13575159802403605 0.11546048362557343 0.13673811868206392 0.11419132658619573 0.13665179651362988 0.11430959349649668" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36664216857699305,0.10830549532800643) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10520694992430243 0.10795731789538533 C 0.10516987202191212 0.10768813854728383 0.10482993546499615 0.10575403917702586 0.10498448250996056 0.10634224180677633 C 0.10482993546499615 0.10575403917702586 0.10435335774669056 0.10388239134266376 0.10427966765451595 0.10442810211688247 C 0.10435335774669056 0.10388239134266376 0.10570812564459227 0.10249171554404668 0.10542662306300829 0.10306797716146406 C 0.10570812564459227 0.10249171554404668 0.10596868314401979 0.10097053241237818 0.10596868314401979 0.10097053241237818 C 0.10596868314401979 0.10097053241237818 0.10514512048142431 0.10364423877888143 0.10542662306300829 0.10306797716146406 C 0.10514512048142431 0.10364423877888143 0.10394510879523618 0.10427078698686942 0.10427966765451595 0.10442810211688247 C 0.10394510879523618 0.10427078698686942 0.10326209831250575 0.1014494120982419 0.10341926990732969 0.10212408638138577 C 0.10326209831250575 0.1014494120982419 0.1033228661152794 0.1000893847574582 0.1033366380855723 0.10038005641801928" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3617311716105851,0.09073261587990888) rotate(0) scale(1,1) translate(-0.17057305483529786,-0.1716896655664302)"><path d="M 0.16385695905188985 0.15811208033755697 C 0.16417351202668184 0.15834846680821138 0.1683171492876687 0.16157628371410368 0.16765559474939362 0.16094871798540977 C 0.1683171492876687 0.16157628371410368 0.17214061507467365 0.16603404833992325 0.17179561351119058 0.16564286908188375" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17179561351119058 0.16564286908188375 C 0.17209265018846087 0.1663369351004682 0.17576492847028224 0.175688063989225 0.17536005363843413 0.17397166130489744 C 0.17576492847028224 0.175688063989225 0.17676194964794595 0.18726203795955784 0.17665411149336813 0.18623970129381473" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17665411149336813 0.18623970129381473 C 0.17678414552903485 0.18708207913883831 0.17870843176508816 0.19833717719592373 0.17821451992136864 0.19634823543409768 C 0.17870843176508816 0.19833717719592373 0.1829449314260551 0.21125356635252962 0.1825810536180023 0.21010700243572716" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1825810536180023 0.21010700243572716 C 0.18199263616763373 0.20919417674872617 0.17452702517178154 0.1968882044825409 0.17552004421357936 0.1991530941917152 C 0.17452702517178154 0.1968882044825409 0.1702602235249992 0.1815762619034623 0.17066482511642844 0.1829283259256356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17066482511642844 0.1829283259256356 C 0.17038711080909946 0.18218121251788605 0.1668533433363745 0.1725212726533232 0.1673322534284806 0.17396296503264105 C 0.1668533433363745 0.1725212726533232 0.1647167082263781 0.16493343840225314 0.16491790401115522 0.16562801737382143" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16491790401115522 0.16562801737382143 C 0.1648438100665013 0.16526457761835645 0.16394036459536956 0.16064041222188613 0.16402877667530835 0.1612667403082415 C 0.16394036459536956 0.16064041222188613 0.16384264091660497 0.15784919200666658 0.16385695905188985 0.15811208033755697" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34175734631730964,0.07935596154029032) rotate(0) scale(1,1) translate(-0.17728282351693694,-0.14882968924032608)"><path d="M 0.17139074272746607 0.14113341409920838 C 0.17214587586362634 0.14110275584668838 0.18198173512446691 0.1411385243983432 0.18045234036138924 0.14076551506896848 C 0.18198173512446691 0.1411385243983432 0.19051774151131573 0.14601319363359977 0.1897434798843983 0.14560952605170505" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1897434798843983 0.14560952605170505 C 0.1903365662760722 0.14651401983184426 0.1976980006714953 0.15867474852602795 0.19686051658448536 0.15646345141337545 C 0.1976980006714953 0.15867474852602795 0.2000376866238534 0.17345189473604833 0.19979328892851742 0.17214509140353504" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.19979328892851742 0.17214509140353504 C 0.19955782739359074 0.17449607160429728 0.1962950484752735 0.2056020206792706 0.1969677505093972 0.2003568538126819 C 0.1962950484752735 0.2056020206792706 0.19128362401983587 0.2379812804684262 0.1917208645190329 0.2350870938025997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1917208645190329 0.2350870938025997 C 0.19167718983927 0.23246043203040662 0.19141171641158064 0.19897741213482062 0.19119676836187852 0.2035671525362827 C 0.19141171641158064 0.19897741213482062 0.19455886384492344 0.17804713035578573 0.19430024111545843 0.18001020898505474" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19430024111545843 0.18001020898505474 C 0.19413832050169258 0.17917446031263004 0.1916121114404464 0.16862529459033915 0.19235719375026808 0.16998122491595846 C 0.1916121114404464 0.16862529459033915 0.18477609170154244 0.16321886342442835 0.18535925339759826 0.16373904507762296" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18535925339759826 0.16373904507762296 C 0.18422230065509992 0.1633615976985864 0.17064557611725428 0.1580139101962168 0.17171582048761813 0.15920967652918433 C 0.17064557611725428 0.1580139101962168 0.17258302932536643 0.14857153012808158 0.17251632095323194 0.14938984908201255" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17251632095323194 0.14938984908201255 C 0.17234505506969455 0.1490766490768211 0.17036733216530273 0.14494341277114806 0.17046113035078322 0.14563144901971506 C 0.17036733216530273 0.14494341277114806 0.171468210425523 0.14075857785583282 0.17139074272746607 0.14113341409920838" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34175734631730964,0.07935596154029032) rotate(0) scale(1,1) translate(-0.17728282351693694,-0.14882968924032608)"><path d="M 0.17133182191957136 0.14086765642570429 C 0.17209450638709323 0.1408524245008335 0.18202872424054226 0.14107734566009775 0.1804840355298338 0.14068487332725488 C 0.18202872424054226 0.14107734566009775 0.1906500906912595 0.14598502867753252 0.1898680864480729 0.14557732441981885" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1898680864480729 0.14557732441981885 C 0.19046710370366357 0.14649086313775944 0.19795817377824637 0.1590677370691249 0.19705629351516085 0.15653978903510593 C 0.19795817377824637 0.1590677370691249 0.20099351261259402 0.17752711014412484 0.20069064960509916 0.17591270082804647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20069064960509916 0.17591270082804647 C 0.20083170377504486 0.17730276593767397 0.20191264615056256 0.19576927095390195 0.20238329964444757 0.1925934821435763 C 0.20191264615056256 0.19576927095390195 0.19443110001464833 0.2158078902526524 0.19504280767847904 0.21402216655195425" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19504280767847904 0.21402216655195425 C 0.19522705088329864 0.2121041419412258 0.19697202671156214 0.18789302028390806 0.19725372613631437 0.19100587122321266 C 0.19697202671156214 0.18789302028390806 0.1911964719518805 0.17547312895172268 0.19166241458145233 0.17666795528029883" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19166241458145233 0.17666795528029883 C 0.19151119055413648 0.17597610157540836 0.18932919317990823 0.16730072610125457 0.1898477262536622 0.16836571082161314 C 0.18932919317990823 0.16730072610125457 0.18507270864996678 0.16351500762052787 0.1854400176964049 0.16388813863599597" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1854400176964049 0.16388813863599597 C 0.1841872485871345 0.1630002405961286 0.1692374634762607 0.15177396622666023 0.17040678838516032 0.15323336215758765 C 0.1692374634762607 0.15177396622666023 0.17149156298998017 0.14580388957380672 0.1714081187896094 0.14637538746486678" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1714081187896094 0.14637538746486678 C 0.17137922332305386 0.14612373957236 0.1710550151184397 0.1428966351681884 0.1710613731909429 0.14335561275478528 C 0.1710550151184397 0.1428966351681884 0.17135435931362372 0.14066032673161422 0.17133182191957136 0.14086765642570429" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3325199604667841,0.09098420653617714) rotate(0) scale(1,1) translate(-0.17957128075024645,-0.15773806393568968)"><path d="M 0.1846642857679967 0.1541545114475079 C 0.18452953955372323 0.15446737895657894 0.18273916849249972 0.15855690545360704 0.1830473311967151 0.15790892155636013 C 0.18273916849249972 0.15855690545360704 0.18079291682747037 0.16226543460264664 0.18096633331741227 0.16193031821447076" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18096633331741227 0.16193031821447076 C 0.18066293814826592 0.1621936610227715 0.17666058553057729 0.16570572487634935 0.177325591287656 0.1650904319140795 C 0.17666058553057729 0.16570572487634935 0.17262465364453536 0.16966578391567827 0.1729862642324677 0.16931383376170914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1729862642324677 0.16931383376170914 C 0.17260343120253493 0.16976436953379292 0.16714552569148183 0.17603324691164401 0.1683922678732743 0.1747202630267145 C 0.16714552569148183 0.17603324691164401 0.15716144889909844 0.18593208849370912 0.15802535805095813 0.18506964038086338" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15802535805095813 0.18506964038086338 C 0.1585825256174745 0.18420030698466994 0.1654140166817769 0.17339486419220115 0.16471136884915438 0.17463763962654216 C 0.1654140166817769 0.17339486419220115 0.1666026123085348 0.16978289313062364 0.1664571320424286 0.1701563351687712" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1664571320424286 0.1701563351687712 C 0.1667431682999061 0.16948821950155504 0.17060887103816472 0.1610838546179515 0.16988956713215853 0.16213894716217706 C 0.17060887103816472 0.1610838546179515 0.17552204656303153 0.15710824776105528 0.17508877891450284 0.15749522463806465" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17508877891450284 0.15749522463806465 C 0.17541368478290292 0.15733115677089837 0.17978560823976164 0.15524801746618974 0.1789876493353038 0.15552641023206948 C 0.17978560823976164 0.15524801746618974 0.18513733880405445 0.15404018654879445 0.1846642857679967 0.1541545114475079" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31295573404675614,0.09073261587990888) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.13069183421722966 0.12062048861218319 C 0.13036681575967493 0.121173283304153 0.12621555211079402 0.12846059247060462 0.12679161272657288 0.1272540249158209 C 0.12621555211079402 0.12846059247060462 0.12352806466965921 0.13575307213240168 0.12377910682788335 0.13509929926958777" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12377910682788335 0.13509929926958777 C 0.12414157952411665 0.13454224929492636 0.12913884366769532 0.12740535957190358 0.1281287791826831 0.12841469957365073 C 0.12913884366769532 0.12740535957190358 0.13654747243680893 0.1225349292215361 0.13589988064803002 0.12298721924862184" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13589988064803002 0.12298721924862184 C 0.13539437873566548 0.12368769245844162 0.12904868222953228 0.13261730100026395 0.12983385769965552 0.13139289776645927 C 0.12904868222953228 0.13261730100026395 0.12619810144879237 0.13820398807826295 0.12647777500655108 0.13768005805427805" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12647777500655108 0.13768005805427805 C 0.12664853967736897 0.13714373563966686 0.12889094249315844 0.13039808036221542 0.12852695105636577 0.1312441890789439 C 0.12889094249315844 0.13039808036221542 0.13103889901403795 0.1272169671514192 0.13084567224806318 0.12752675345353648" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13084567224806318 0.12752675345353648 C 0.13051554020458483 0.1279126948166817 0.12609418315057258 0.13353148791433614 0.12688408772632306 0.13215804981127904 C 0.12609418315057258 0.13353148791433614 0.1209070448067851 0.14499550743013356 0.12136681733905726 0.14400801069022168" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12136681733905726 0.14400801069022168 C 0.12147369073526561 0.14316858583534925 0.12296816730515658 0.13249237603269862 0.12264929809355749 0.1339349124317527 C 0.12296816730515658 0.13249237603269862 0.12540524369363718 0.12609446235739089 0.12519324787824643 0.12669757390157257" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12519324787824643 0.12669757390157257 C 0.12490144864543648 0.12714922824042235 0.1211003716439178 0.13340193633248051 0.1216916570845271 0.13211742596776987 C 0.1211003716439178 0.13340193633248051 0.11779833638313551 0.1429445543039612 0.11809782259093486 0.14211169827810033" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11809782259093486 0.14211169827810033 C 0.1181333883413351 0.1412993925176699 0.11864561181700574 0.13117874726711914 0.11852461159573772 0.1323640291529351 C 0.11864561181700574 0.13117874726711914 0.11963525971701873 0.1275153395229234 0.11954982524615096 0.1278883156483089" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11954982524615096 0.1278883156483089 C 0.1193347887996369 0.12801097754733268 0.11671458917513124 0.12921991657040913 0.11696938788798222 0.12936025843659416 C 0.11671458917513124 0.12921991657040913 0.11645247842560222 0.12594120948887966 0.11649224069193914 0.12620421325408845" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11649224069193914 0.12620421325408845 C 0.11663230379888526 0.12629869428753748 0.11880804816267304 0.12702890922550264 0.11817299797529258 0.1273379856554767 C 0.11880804816267304 0.12702890922550264 0.12460783002093896 0.12209173863097694 0.12411284294050462 0.1224952960944" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12411284294050462 0.1224952960944 C 0.12388537181644317 0.12290340488139398 0.12101677222852791 0.1282660840788946 0.12138318945176717 0.1273926015383277 C 0.12101677222852791 0.1282660840788946 0.11957689016245573 0.1334424603347754 0.11971583626163354 0.1329770865812025" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11971583626163354 0.1329770865812025 C 0.1200448038990352 0.1324315024251005 0.12457811440675308 0.12540036021056014 0.1236634479104534 0.12643007670797843 C 0.12457811440675308 0.12540036021056014 0.1312775330761277 0.12013635627086693 0.13069183421722966 0.12062048861218319" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3617311716105851,0.09073261587990888) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.10754295249757771 0.12062048861218319 C 0.10812865135647573 0.12110462095349946 0.1154860053006536 0.12745979320539672 0.11457133880435393 0.12643007670797843 C 0.1154860053006536 0.12745979320539672 0.11884791809057545 0.1335226707373045 0.11851895045317379 0.1329770865812025" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11851895045317379 0.1329770865812025 C 0.118380004353996 0.1325117128276296 0.11648518003980096 0.12651911899776083 0.11685159726304022 0.1273926015383277 C 0.11648518003980096 0.12651911899776083 0.11389447265024132 0.12208718730740603 0.11412194377430276 0.1224952960944" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11412194377430276 0.1224952960944 C 0.11461693085473709 0.12289885355782307 0.12069683892689521 0.12764706208545074 0.12006178873951476 0.1273379856554767 C 0.12069683892689521 0.12764706208545074 0.12188260912981433 0.12610973222063943 0.12174254602286821 0.12620421325408845" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12174254602286821 0.12620421325408845 C 0.12170278375653129 0.12646721701929725 0.1210106001139741 0.12950060030277918 0.12126539882682509 0.12936025843659416 C 0.1210106001139741 0.12950060030277918 0.11846992502214237 0.12776565374928514 0.11868496146865642 0.1278883156483089" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11868496146865642 0.1278883156483089 C 0.1187703959395242 0.1282612917736944 0.11983117534033762 0.13354931103875106 0.11971017511906962 0.1323640291529351 C 0.11983117534033762 0.13354931103875106 0.12017252987427268 0.14292400403853076 0.12013696412387245 0.14211169827810033" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12013696412387245 0.14211169827810033 C 0.1198374779160731 0.14127884225223947 0.1159518441896709 0.13083291560305924 0.1165431296302802 0.13211742596776987 C 0.1159518441896709 0.13083291560305924 0.11274973960375095 0.1262459195627228 0.1130415388365609 0.12669757390157257" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1130415388365609 0.12669757390157257 C 0.11325353465195165 0.12730068544575426 0.11590435783284897 0.1353774488308068 0.11558548862124987 0.1339349124317527 C 0.11590435783284897 0.1353774488308068 0.11697484277195845 0.1448474355450941 0.1168679693757501 0.14400801069022168" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1168679693757501 0.14400801069022168 C 0.11640819684347796 0.1430205139503098 0.11056079441273385 0.13078461170822195 0.11135069898848435 0.13215804981127904 C 0.11056079441273385 0.13078461170822195 0.10705898242326585 0.12714081209039127 0.10738911446674419 0.12752675345353648" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10738911446674419 0.12752675345353648 C 0.10758234123271897 0.12783653975565376 0.11007182709523419 0.13209029779567236 0.10970783565844153 0.1312441890789439 C 0.11007182709523419 0.13209029779567236 0.11192777637907414 0.13821638046888923 0.11175701170825625 0.13768005805427805" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11175701170825625 0.13768005805427805 C 0.11147733815049754 0.13715612803029315 0.10761575354502857 0.13016849453265458 0.1084009290151518 0.13139289776645927 C 0.10761575354502857 0.13016849453265458 0.10182940415441287 0.12228674603880206 0.1023349060667774 0.12298721924862184" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1023349060667774 0.12298721924862184 C 0.10298249785555631 0.12343950927570758 0.11111607201713647 0.1294240395753979 0.11010600753212425 0.12841469957365073 C 0.11111607201713647 0.1294240395753979 0.11481815258315732 0.13565634924424919 0.11445567988692401 0.13509929926958777" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11445567988692401 0.13509929926958777 C 0.11420463772869988 0.13444552640677387 0.11086711337245554 0.1260474573610372 0.1114431739882344 0.1272540249158209 C 0.11086711337245554 0.1260474573610372 0.10721793404002299 0.12006769392021338 0.10754295249757771 0.12062048861218319" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3374524822854862,0.0943581241006341) rotate(0) scale(1,1) translate(-0.17175142008376063,-0.17000147314616015)"><path d="M 0.18096537602923388 0.15936321005773862 C 0.1810907781787327 0.15969499364695278 0.18256394848963872 0.1640164114547512 0.1824702018232199 0.1633446131283083 C 0.18256394848963872 0.1640164114547512 0.18205868054317972 0.1677648047122823 0.18209033602625974 0.16742478997505353" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18209033602625974 0.16742478997505353 C 0.18199564445177185 0.1676418148602919 0.18067757755524885 0.1703749417131103 0.1809540371324053 0.17002908859791396 C 0.18067757755524885 0.1703749417131103 0.1785910530977138 0.1717038555873676 0.1787728211003824 0.17157502735740962" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1787728211003824 0.17157502735740962 C 0.17851045195470072 0.17159315027486913 0.17506593916086133 0.1718346968736625 0.1756243913522022 0.1717925023669236 C 0.17506593916086133 0.1718346968736625 0.17177531175863264 0.17210543302755602 0.17207139480429184 0.1720813614382766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17207139480429184 0.1720813614382766 C 0.17199384524690575 0.17179406273016384 0.17107276165145616 0.16811549331463937 0.17114080011565866 0.1686337769409235 C 0.17107276165145616 0.16811549331463937 0.17126444432704546 0.16563097300469581 0.17125493323386187 0.16586195792286718" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17125493323386187 0.16586195792286718 C 0.17142557250006932 0.16567364257432604 0.1736644659698309 0.1632903392606768 0.17330260442835124 0.16360217374037342 C 0.1736644659698309 0.1632903392606768 0.17578849400689006 0.16199642503535217 0.17559727173161785 0.16211994416650766" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17559727173161785 0.16211994416650766 C 0.1758518636006373 0.1618849275021089 0.17909971618465242 0.15907001635132498 0.17865237415985108 0.1592997441937224 C 0.17909971618465242 0.15907001635132498 0.18115812618501578 0.15936849887973997 0.18096537602923388 0.15936321005773862" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33527863974378946,0.09356647774835214) rotate(0) scale(1,1) translate(-0.17295983519055422,-0.17005901672267412)"><path d="M 0.1795485617349807 0.1577831522390402 C 0.17991692214663413 0.15812240223182694 0.18421422867541873 0.16249760828673562 0.18396888667482186 0.16185415215248136 C 0.18421422867541873 0.16249760828673562 0.18236964733108654 0.16580883199155885 0.1824926657421431 0.16550462585009135" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1824926657421431 0.16550462585009135 C 0.18233139894561698 0.1657360477908942 0.18024519331725514 0.16862013215607943 0.18055746418382962 0.1682816891397256 C 0.18024519331725514 0.16862013215607943 0.17859441127320091 0.16967296312188812 0.17874541534324928 0.16956594204633715" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17874541534324928 0.16956594204633715 C 0.1784747708315122 0.16968940945036562 0.1749779212116521 0.1713304807552937 0.17549768120240428 0.17104755089467877 C 0.1749779212116521 0.1713304807552937 0.17225917997520807 0.1731205628303028 0.17250829545422317 0.17296110037371634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17250829545422317 0.17296110037371634 C 0.17248250277299815 0.17271818174511624 0.1722697514351566 0.16956447464844623 0.17219878327952307 0.17004607683051506 C 0.1722697514351566 0.16956447464844623 0.17345667415868435 0.16694319063542154 0.1733599133218258 0.16718187418889027" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1733599133218258 0.16718187418889027 C 0.17347566895491237 0.16698370967857631 0.1750019617792107 0.16433530170433502 0.17474898091886484 0.16480390006512263 C 0.1750019617792107 0.16433530170433502 0.17653290887323542 0.16128826000896532 0.17639568364597613 0.16155869385943897" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17639568364597613 0.16155869385943897 C 0.17646218515163983 0.16133546840321705 0.1774564415546908 0.15856535991640947 0.17719370171394044 0.15887998838477604 C 0.1774564415546908 0.15856535991640947 0.1797448000700674 0.15769174922689552 0.1795485617349807 0.1577831522390402" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3487216790752048,0.0985345121516085) rotate(0) scale(1,1) translate(-0.1740239204174037,-0.16693920371592752)"><path d="M 0.1677303663121975 0.15183939790995385 C 0.1681292969576768 0.15198897313386253 0.17348862782213922 0.15424116920419187 0.17251753405794923 0.15363430059685795 C 0.17348862782213922 0.15424116920419187 0.179955654601188 0.15957911458138593 0.17938349148247734 0.1591218211979607" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17938349148247734 0.1591218211979607 C 0.17966586271067286 0.15985168857748913 0.18318354099999584 0.16972045333010263 0.1827719462208236 0.16788022975230185 C 0.18318354099999584 0.16972045333010263 0.18445185238352085 0.18231486032984245 0.18432262883254413 0.1812045041315701" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18432262883254413 0.1812045041315701 C 0.1843693775529429 0.181780512966472 0.18510771826407357 0.1893834811811586 0.18488361347732912 0.18811661015039288 C 0.18510771826407357 0.1893834811811586 0.18718924233982337 0.19709781869662255 0.18701188627347765 0.19640695650075873" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18701188627347765 0.19640695650075873 C 0.18716286959953632 0.1971482903306785 0.1889010798872511 0.20665968536564513 0.18882368618618156 0.2053029624597959 C 0.1889010798872511 0.20665968536564513 0.18786702106132308 0.21330302044687888 0.18794061068631218 0.21268763137094943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18794061068631218 0.21268763137094943 C 0.18785975518015716 0.21202707525066164 0.18667279701142475 0.2037172801182656 0.18697034461245193 0.2047609579274961 C 0.18667279701142475 0.2037172801182656 0.1841533473791139 0.1997803759712405 0.18437003947398606 0.20016349766018324" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18437003947398606 0.20016349766018324 C 0.18397891403469127 0.199459572095945 0.17902322609733048 0.18978421333320689 0.17967653420244853 0.19171639088932438 C 0.17902322609733048 0.18978421333320689 0.17626815954674632 0.17574911499489393 0.17653034221256958 0.1769773669867732" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17653034221256958 0.1769773669867732 C 0.1762420285670041 0.17616979992046075 0.17232665777868478 0.16577566255525666 0.1730705784657838 0.1672865621910239 C 0.17232665777868478 0.16577566255525666 0.16714768692584756 0.15814323878811173 0.1676032939673811 0.15884657135756652" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1676032939673811 0.15884657135756652 C 0.16752616212433888 0.15855629203873314 0.1666883012129423 0.15477928841093147 0.1666777118508743 0.15536321953156587 C 0.1666883012129423 0.15477928841093147 0.16781808751730778 0.15154574610815286 0.1677303663121975 0.15183939790995385" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34151683421504625,0.08410542778559416) rotate(0) scale(1,1) translate(-0.17390341090239536,-0.15286408272832677)"><path d="M 0.17152325233477353 0.14817011585696088 C 0.17215809750496278 0.14851315723159855 0.18014380372741012 0.15316829741696766 0.17914139437704443 0.15228661235261298 C 0.18014380372741012 0.15316829741696766 0.18391972871933823 0.15928898031893404 0.1835521645391618 0.15875033662921703" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1835521645391618 0.15875033662921703 C 0.18361205693028287 0.15942991940384676 0.18440671160643288 0.1685555432781136 0.18427087323261496 0.16690532992477397 C 0.18440671160643288 0.1685555432781136 0.18525817100767367 0.17952352744800246 0.18518222502497683 0.17855289686929257" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18518222502497683 0.17855289686929257 C 0.18533446751711077 0.17931387061037476 0.18742973136828542 0.18919797832878787 0.18700913493058424 0.1876845817622789 C 0.18742973136828542 0.18919797832878787 0.19049773622295818 0.19746607849282705 0.19022938227739095 0.19671365566740026" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19022938227739095 0.19671365566740026 C 0.19062469553306902 0.19765334741080365 0.19527825575609534 0.2098823470704191 0.19497314134552787 0.20798995658824096 C 0.19527825575609534 0.2098823470704191 0.19380055635909005 0.2203750401923128 0.19389075520420065 0.21942234145353803" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19389075520420065 0.21942234145353803 C 0.19379298714184878 0.2185828841594852 0.19213981602342456 0.20772314949796844 0.19271753845597836 0.2093488539249042 C 0.19213981602342456 0.20772314949796844 0.18647813164335325 0.19912764119742582 0.18695808601355518 0.19991388833030876" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18695808601355518 0.19991388833030876 C 0.18654342282842432 0.19934129379826346 0.18112337731211764 0.19163260344771613 0.18198212779198467 0.19304275394576523 C 0.18112337731211764 0.19163260344771613 0.17620899296041467 0.18215452638771565 0.17665308025515084 0.18299208235371947" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17665308025515084 0.18299208235371947 C 0.17640657183961694 0.18218520789138903 0.1733464393814275 0.17178147531849336 0.17369497926874405 0.17330958880575406 C 0.1733464393814275 0.17178147531849336 0.17236857013556936 0.16393348148166084 0.17247060160735203 0.16465472050659108" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17247060160735203 0.16465472050659108 C 0.17240851542849245 0.16385281492326872 0.17164662168832207 0.153658136452587 0.17172556746103693 0.15503185350672286 C 0.17164662168832207 0.153658136452587 0.17150639274091825 0.14759830438614738 0.17152325233477353 0.14817011585696088" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 63 KiB

View File

@@ -0,0 +1,197 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3342374873417403,0.08725506471853706) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17511973339381318 0.15572338599532592 C 0.1752855640422901 0.15589600621529842 0.17729826245716035 0.1586797336338903 0.17710970117553612 0.1577948286349958 C 0.17729826245716035 0.1586797336338903 0.17740519940645108 0.16705453076098167 0.17738246877330377 0.16634224598205968" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17738246877330377 0.16634224598205968 C 0.17731404928876696 0.16711039146215048 0.17626265986486883 0.17703388560825833 0.17656143495886215 0.17555999174314926 C 0.17626265986486883 0.17703388560825833 0.1735668120359276 0.1847347207483868 0.1737971676453841 0.18402897236336851" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1737971676453841 0.18402897236336851 C 0.17342090943291205 0.1845208808644317 0.1683259371704632 0.19092268901909615 0.16928206909571927 0.1899318743761265 C 0.1683259371704632 0.19092268901909615 0.1617437108295273 0.19641765422091098 0.1623235845423113 0.19591874807900447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1623235845423113 0.19591874807900447 C 0.16265360231563858 0.19525357011305033 0.1667594752642264 0.18687552416451475 0.16628379782223873 0.18793661248755472 C 0.1667594752642264 0.18687552416451475 0.16817737351482392 0.182789777845439 0.16803171384616353 0.18318568820252484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16803171384616353 0.18318568820252484 C 0.16806032231518594 0.18219620463262287 0.16859747074861078 0.16939787694635347 0.16837501547443248 0.17131188536370123 C 0.16859747074861078 0.16939787694635347 0.170895023941459 0.15929306234690604 0.17070117713630312 0.16021758719435183" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17070117713630312 0.16021758719435183 C 0.1709122475706153 0.15991186846625785 0.1736022353695085 0.15617444569063868 0.17323402234804933 0.15654896245722416 C 0.1736022353695085 0.15617444569063868 0.17527687598096017 0.1556545879568344 0.17511973339381318 0.15572338599532592" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3245316117246389,0.08726723893944002) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.17875710654455831 0.15677888207485643 C 0.1787623260173592 0.15700231082014307 0.17862776566480504 0.1600694956160538 0.1788197402181688 0.1594600270182961 C 0.17862776566480504 0.1600694956160538 0.17625621787802853 0.16447854510042004 0.17645341190419317 0.16409250524794897" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17645341190419317 0.16409250524794897 C 0.17632162510732582 0.16475594792735973 0.17457870338035836 0.17340062128367328 0.1748719703417849 0.17205381740087805 C 0.17457870338035836 0.17340062128367328 0.17277272820251552 0.18093751304487632 0.1729342083670747 0.18025415184149185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1729342083670747 0.18025415184149185 C 0.17268612422215307 0.18095460162774207 0.16912889406516962 0.18996570513498615 0.16995719862801503 0.18865954927649448 C 0.16912889406516962 0.18996570513498615 0.1624143331950059 0.19653372821563325 0.16299455361292967 0.1959280221433918" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16299455361292967 0.1959280221433918 C 0.16317298251028273 0.1954777988742823 0.16543493195250525 0.18948213586484589 0.16513570038116626 0.1905253429140776 C 0.16543493195250525 0.18948213586484589 0.1667061351429834 0.18281655377248912 0.16658533246899748 0.1834095375526113" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16658533246899748 0.1834095375526113 C 0.16669633194132344 0.18240729667938618 0.16828841903699318 0.1696642387044797 0.16791732613690905 0.1713826470739098 C 0.16828841903699318 0.1696642387044797 0.17129854069776534 0.16207246962324523 0.17103844727000717 0.16278863711945019" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17103844727000717 0.16278863711945019 C 0.17130881071580997 0.16246986708570585 0.17492603022585332 0.1584625837941354 0.1742828086196407 0.1589633967145182 C 0.17492603022585332 0.1584625837941354 0.17912996470496811 0.15659683918821796 0.17875710654455831 0.15677888207485643" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31371037634157345,0.08922777735511794) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.17911829720577516 0.14325387719037572 C 0.17902185731255846 0.14385652607889696 0.17759061512852956 0.1522740074861724 0.1779610184871748 0.15048566385263054 C 0.17759061512852956 0.1522740074861724 0.1743994934366038 0.16589969553789866 0.17467345690203234 0.16471400079287804" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17467345690203234 0.16471400079287804 C 0.1747293784140905 0.16581832632864862 0.17537247580275928 0.18030050510853338 0.17534451504673018 0.17796590722212505 C 0.17537247580275928 0.18030050510853338 0.1749810252183523 0.1939594477804156 0.17500898597438136 0.19272917542977785" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17500898597438136 0.19272917542977785 C 0.17493469951528953 0.19396677951703628 0.17420831347039073 0.21042328294558502 0.17411754846527952 0.207580424476879 C 0.17420831347039073 0.21042328294558502 0.1762632174999189 0.22844873143569777 0.17609816603571588 0.22684347705425018" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17609816603571588 0.22684347705425018 C 0.17567269862921292 0.2252624432141232 0.1702954505849676 0.20495282564975104 0.17099255715768039 0.2078710709727263 C 0.1702954505849676 0.20495282564975104 0.16746124799695256 0.19048732169569862 0.1677328871631624 0.19182453317854692" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1677328871631624 0.19182453317854692 C 0.16758471704043748 0.19076491535838136 0.16587795592014415 0.17659156381046878 0.1659548456904635 0.17910911933656024 C 0.16587795592014415 0.17659156381046878 0.16688149027173568 0.1601559291595237 0.16681020991933013 0.1616138668654496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16681020991933013 0.1616138668654496 C 0.1672289096343352 0.16064088060282777 0.17286028043992818 0.14840803257439839 0.17183460649939108 0.14993803171398787 C 0.17286028043992818 0.14840803257439839 0.17972527143130718 0.14269686431340803 0.17911829720577516 0.14325387719037572" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32896970608709797,0.08608892275147395) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17646780662902153 0.1572258196713113 C 0.17648931470615076 0.1574475763950051 0.1767275069001533 0.16060030466121494 0.17672590355457238 0.1598869003556369 C 0.1767275069001533 0.16060030466121494 0.17646714204444433 0.16627831892013187 0.17648704677599264 0.16578667133824765" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17648704677599264 0.16578667133824765 C 0.17637170592349258 0.16662376266589732 0.1747773403299918 0.17731529060631046 0.17510295654599176 0.17583176727004368 C 0.1747773403299918 0.17731529060631046 0.17236937682049325 0.18423538338206596 0.17257965218399313 0.18358895137344886" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17257965218399313 0.18358895137344886 C 0.17213120222683523 0.18429485877948104 0.1659711990632227 0.19358579864089914 0.16719825269809835 0.19205984024583525 C 0.1659711990632227 0.19358579864089914 0.15707640488776745 0.20272050310324743 0.1578550085654852 0.20190045211421573" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1578550085654852 0.20190045211421573 C 0.15832329627757508 0.20081328734289092 0.16411236354408584 0.187194285754685 0.16347446111056355 0.18885447485831788 C 0.16411236354408584 0.187194285754685 0.16567945248918522 0.18140515853831302 0.1655098377677528 0.1819781828706211" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1655098377677528 0.1819781828706211 C 0.16567867390825422 0.18122120883874912 0.16791799149309491 0.17141444570659292 0.16753587145377 0.17289449448815736 C 0.16791799149309491 0.17141444570659292 0.17030856213847534 0.16349452274215542 0.17009527823965184 0.1642175974918479" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17009527823965184 0.1642175974918479 C 0.170364885821412 0.163800466583781 0.17386161325322108 0.15862937844333386 0.1733305692207736 0.15921202659504524 C 0.17386161325322108 0.15862937844333386 0.17672924307970886 0.1570603024276668 0.17646780662902153 0.1572258196713113" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31371037634157345,0.08922777735511794) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18139249382264386 0.13022452745990784 C 0.18137662384532421 0.13044330053742642 0.18112352109335308 0.1332564924495373 0.18120205409480816 0.13284980439013075 C 0.18112352109335308 0.1332564924495373 0.18038743478104752 0.13529269915467443 0.18045009780518295 0.13510478417278646" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18045009780518295 0.13510478417278646 C 0.18031817540262246 0.13519357942592494 0.17859241810193827 0.13627276095493096 0.17886702897445705 0.13617032721044833 C 0.17859241810193827 0.13627276095493096 0.17701207886499923 0.13634762759792193 0.17715476733495752 0.13633398910657782" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17715476733495752 0.13633398910657782 C 0.17709884718005903 0.13638453847627902 0.17636435225220784 0.13699319646332922 0.17648372547617563 0.13694058154299224 C 0.17636435225220784 0.13699319646332922 0.17560485179364888 0.1369204619702028 0.1757222886473439 0.13696536815062146 C 0.17560485179364888 0.1369204619702028 0.17499044985852225 0.1362713126715722 0.17507448323183528 0.13640170737796817 C 0.17499044985852225 0.1362713126715722 0.17468577494917303 0.13521968759777253 0.17471388816758757 0.13540063167386973 C 0.17468577494917303 0.13521968759777253 0.17477246446151568 0.13404736883806892 0.17473712461086088 0.13423037846480187 C 0.17477246446151568 0.13404736883806892 0.17517136985582696 0.1331190276270971 0.17513796637544496 0.13320451615307438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17513796637544496 0.13320451615307438 C 0.17514817086934395 0.13298530208527357 0.17532961626220867 0.1301527709793474 0.17526042030223282 0.13057394733946465 C 0.17532961626220867 0.1301527709793474 0.17602730936123198 0.12794843753935128 0.17596831789515513 0.1281503998316677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17596831789515513 0.1281503998316677 C 0.17609113718183134 0.12805582940900223 0.17770742316630905 0.1268986327144886 0.1774421493352695 0.12701555475968185 C 0.17770742316630905 0.1268986327144886 0.17929405841199322 0.12672498366682067 0.17915160386762985 0.12674733528934845" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3116475353466057,0.0923694379827169) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10751949424754556 0.1027752383559209 C 0.10732080494690102 0.10297634042085627 0.10577768978053088 0.10426209623420925 0.10632735844367835 0.10398185074553314 C 0.10577768978053088 0.10426209623420925 0.10388275605720342 0.10407823249692323 0.10422148226866071 0.10445671128797757 C 0.10388275605720342 0.10407823249692323 0.10447064692520219 0.10085223437665947 0.10429500117493458 0.10171097799920714 C 0.10447064692520219 0.10085223437665947 0.10527535677026638 0.09930424955269156 0.10527535677026638 0.09930424955269156 C 0.10527535677026638 0.09930424955269156 0.10411935542466697 0.10256972162175482 0.10429500117493458 0.10171097799920714 C 0.10411935542466697 0.10256972162175482 0.10391881782487813 0.10498256508357127 0.10422148226866071 0.10445671128797757 C 0.10391881782487813 0.10498256508357127 0.10198741303874999 0.10508432693121095 0.10247901451223916 0.10486610077276938 C 0.10198741303874999 0.10508432693121095 0.1010706832469734 0.10591606281626992 0.10127187342772564 0.10576606823862698" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.30958469435163793,0.09551109861031584) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393483854219874 0.11529444580623759 C 0.13939159309707233 0.11547708890716142 0.1399064224274058 0.11785553327710084 0.1398668775230064 0.11748616301732355 C 0.1399064224274058 0.11785553327710084 0.1398192615040949 0.11991361608241854 0.1398229242747804 0.11972688892356509" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1398229242747804 0.11972688892356509 C 0.13973610774593473 0.1198774014661862 0.13857916207357718 0.12178119182659848 0.13878112592863212 0.12153303943501838 C 0.13857916207357718 0.12178119182659848 0.13728421068791194 0.12280235747148532 0.13739935801412118 0.12270471762252633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13739935801412118 0.12270471762252633 C 0.13736588624787333 0.12277872595988165 0.13691198827207487 0.12370708377274844 0.136997696819147 0.1235928176707903 C 0.13691198827207487 0.12370708377274844 0.1362616136762678 0.12411188876696264 0.1363708554492557 0.12407591084602397 C 0.1362616136762678 0.12411188876696264 0.13558329178924014 0.1239726022071127 0.135686795543292 0.12402455272205436 C 0.13558329178924014 0.1239726022071127 0.13505877841282932 0.1233265458144271 0.13512881040063332 0.12345250466672408 C 0.13505877841282932 0.1233265458144271 0.13482861648266406 0.1223468298775908 0.13484641168964379 0.12251304649449057 C 0.13482861648266406 0.1223468298775908 0.13492100593581263 0.12136997682804639 0.13491526791687658 0.1214579052639267" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13491526791687658 0.1214579052639267 C 0.13486723496918707 0.12127836211266708 0.13428782722308613 0.11892824490959598 0.13433887254460242 0.11930338744881124 C 0.13428782722308613 0.11892824490959598 0.13429971168485424 0.11676059540538802 0.13430272405868102 0.11695619479334365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13430272405868102 0.11695619479334365 C 0.13438048118922882 0.11680665701167153 0.1354262730631928 0.11490781674226012 0.13523580962525475 0.11516174141327819 C 0.1354262730631928 0.11490781674226012 0.13670099162132796 0.1138047118517809 0.1365882853139377 0.11390909874112684" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.308679183150406,0.09925086819508794) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10661959993808517 0.10113374713951993 C 0.10650621392117117 0.10141370187439658 0.10555441893462626 0.10336965341831772 0.10593928383660114 0.10281347554877984 C 0.10555441893462626 0.10336965341831772 0.10393113437496981 0.10437773906013433 0.10431041052623588 0.10447081435674717 C 0.10393113437496981 0.10437773906013433 0.10358829159052993 0.10146910168454745 0.10366362692900478 0.10225502376910281 C 0.10358829159052993 0.10146910168454745 0.10385839849538679 0.099755281849415 0.10385839849538679 0.099755281849415 C 0.10385839849538679 0.099755281849415 0.10373896226747964 0.10304094585365817 0.10366362692900478 0.10225502376910281 C 0.10373896226747964 0.10304094585365817 0.10419428563030272 0.10507083956393508 0.10431041052623588 0.10447081435674717 C 0.10419428563030272 0.10507083956393508 0.102614312686824 0.10632696837622524 0.10296687755340585 0.1058551750122303 C 0.102614312686824 0.10632696837622524 0.10206637862230128 0.10754264112879795 0.1021950213267448 0.10730157454071686" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3077736719491741,0.10299063777986012) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13929806010516163 0.11438028117385819 C 0.13937819632002738 0.11450299456353877 0.14038141057174147 0.11612802993702709 0.14025969468355048 0.11585284185002513 C 0.14038141057174147 0.11612802993702709 0.14080023043677878 0.11783501291520297 0.14075865076345354 0.1176825382178816" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14075865076345354 0.1176825382178816 C 0.14072142993087697 0.11785280644291214 0.14020101483171596 0.12003970594771927 0.1403120007725348 0.1197257569182481 C 0.14020101483171596 0.12003970594771927 0.13935305436538512 0.12159360737597631 0.1394268194736274 0.12144992657153568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1394268194736274 0.12144992657153568 C 0.1394162916038255 0.12152844352031325 0.13925552783040063 0.12253257642850429 0.13930048503600462 0.1223921299568666 C 0.13925552783040063 0.12253257642850429 0.13880379818149943 0.12322596188535268 0.13888733300637965 0.12313528423118793 C 0.13880379818149943 0.12322596188535268 0.13819833778215201 0.1234968736393303 0.13829806713744194 0.1234802618068435 C 0.13819833778215201 0.1234968736393303 0.13760137925741256 0.12327272110473877 0.13769058074290058 0.12333462622102954 C 0.13760137925741256 0.12327272110473877 0.13717287716189971 0.12261356577220334 0.13722764931158565 0.12273740041135422 C 0.13717287716189971 0.12261356577220334 0.13701712041625952 0.12177454472954104 0.13703331494666923 0.12184861055121897" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13703331494666923 0.12184861055121897 C 0.13694985036154406 0.12173111936086518 0.13589894299749938 0.12016537393913675 0.13603173992516704 0.1204387162669735 C 0.13589894299749938 0.12016537393913675 0.13539041947211494 0.11841265147969494 0.13543975181465742 0.11856850261717791" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13543975181465742 0.11856850261717791 C 0.13546956455417147 0.11840413614737422 0.13589740959016822 0.11628400170922765 0.13579750468882604 0.11659610497953361 C 0.13589740959016822 0.11628400170922765 0.13670870279259173 0.11467552657300403 0.1366386106307636 0.1148232633735063" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30790453787026695,0.10651438592370757) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10553183211211507 0.1004386950085175 C 0.10550316618443172 0.1007282330569737 0.10516826636669087 0.1028412819019455 0.10535983654601494 0.10217592329925476 C 0.10516826636669087 0.1028412819019455 0.10404023966772938 0.10457008476183455 0.10438241103617062 0.1044308466246619 C 0.10404023966772938 0.10457008476183455 0.10305525649064001 0.10242085141719362 0.10330680833536755 0.10301135212229062 C 0.10305525649064001 0.10242085141719362 0.10287309996780533 0.10088784239407984 0.10287309996780533 0.10088784239407984 C 0.10287309996780533 0.10088784239407984 0.1035583601800951 0.10360185282738762 0.10330680833536755 0.10301135212229062 C 0.1035583601800951 0.10360185282738762 0.10442800259407972 0.10497974368116302 0.10438241103617062 0.1044308466246619 C 0.10442800259407972 0.10497974368116302 0.10339584486143247 0.10688388003621935 0.10358035768282223 0.10630473446129733 C 0.10339584486143247 0.10688388003621935 0.10322449684533372 0.10817255100967675 0.10327533410783207 0.10790572007419398" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.31371037634157345,0.08922777735511794) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.1775596427053748 0.15783498676145755 C 0.17757025226563147 0.15810324016032526 0.17762371784712072 0.1616931378400696 0.1776869574284547 0.16105402754787024 C 0.17762371784712072 0.1616931378400696 0.1767269185877766 0.1658751671611815 0.1768007677293672 0.16550431026784987" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1768007677293672 0.16550431026784987 C 0.17660023668642105 0.1662130643204706 0.17391706741932902 0.1754804735720717 0.17439439521401348 0.1740093588992984 C 0.17391706741932902 0.1754804735720717 0.17079603744141544 0.18392004696128217 0.17107283419315375 0.18315768634112958" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17107283419315375 0.18315768634112958 C 0.1706695693871994 0.1844520517655866 0.1652700604192766 0.20084007676081286 0.16623365652170158 0.19869007143461373 C 0.1652700604192766 0.20084007676081286 0.15894934966758345 0.2098133901572612 0.15950968096405407 0.20895775025551908" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15950968096405407 0.20895775025551908 C 0.15982007243801014 0.20793941683693232 0.16365572549557802 0.1948425668205003 0.16323437865152685 0.19673774923247808 C 0.16365572549557802 0.1948425668205003 0.16467679846276317 0.18533871231839458 0.16456584309266808 0.18621556131178563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16456584309266808 0.18621556131178563 C 0.16467340240383613 0.1853418156788072 0.16623732906056252 0.17407901885986093 0.1658565548266846 0.17573061371604456 C 0.16623732906056252 0.17407901885986093 0.1694083488219129 0.16561857381437692 0.16913513389920304 0.16639642303758212" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16913513389920304 0.16639642303758212 C 0.16942803465938902 0.16601690844111347 0.17335198542194924 0.16112879485694795 0.17264994302143494 0.16184224787995832 C 0.17335198542194924 0.16112879485694795 0.17796878434570312 0.15750104833491582 0.1775596427053748 0.15783498676145755" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32022322166035355,0.08612508235812594) rotate(0) scale(1,1) translate(-0.17622383096689268,-0.1693422041235609)"><path d="M 0.18117672955490477 0.15596083298921185 C 0.18098569827442773 0.15635732439456834 0.1785505561854273 0.16153481163748468 0.17888435418918047 0.16071872985348998 C 0.1785505561854273 0.16153481163748468 0.1770283867865908 0.1661734047757866 0.17717115350986692 0.1657538143971484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17717115350986692 0.1657538143971484 C 0.17703482063997603 0.16650735670539246 0.17528513269940113 0.17628994098230982 0.17553515907117614 0.174796322096077 C 0.17528513269940113 0.17628994098230982 0.17405714354668259 0.18441731760993083 0.1741708370485667 0.18367724103194208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1741708370485667 0.18367724103194208 C 0.17399462370031005 0.18532047820385197 0.17193758442570367 0.2067138667388681 0.17205627686948702 0.20339608709486073 C 0.17193758442570367 0.2067138667388681 0.17280404862763965 0.22516513923212805 0.17274652772316637 0.22349059676003058" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17274652772316637 0.22349059676003058 C 0.172428881011504 0.22178704367141341 0.168441991271496 0.1998244020430072 0.16893476718321804 0.20304795969662473 C 0.168441991271496 0.1998244020430072 0.1666580875824425 0.18328790035161968 0.16683321678250215 0.18480790491662008" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16683321678250215 0.18480790491662008 C 0.1669552594430334 0.1836611040456451 0.1688218542376653 0.16914223939590442 0.16829772870887713 0.17104629446492006 C 0.1688218542376653 0.16914223939590442 0.1735248059962172 0.16120198989039186 0.17312272312796026 0.16195924408843249" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17312272312796026 0.16195924408843249 C 0.17357216890688934 0.16154727163381472 0.1791872396773547 0.1565157070414175 0.1785160724751093 0.15701557463301924 C 0.1791872396773547 0.1565157070414175 0.18139845097822105 0.1558729378522279 0.18117672955490477 0.15596083298921185" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31371037634157345,0.08922777735511794) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12781625376207265)"><path d="M 0.12856274607802265 0.11727009236291501 C 0.12840714969736988 0.11790298302505935 0.12651919270682693 0.12611850351377132 0.1266955895101894 0.12486478030864709 C 0.12651919270682693 0.12611850351377132 0.12642518401496347 0.13293560336738583 0.12644598443767316 0.13231477082440593" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12644598443767316 0.13231477082440593 C 0.1267042466745839 0.1315758573558939 0.13030079391654534 0.12198208698477568 0.12954513128060205 0.12344780920226127 C 0.13030079391654534 0.12198208698477568 0.13601133646802502 0.11399929546560528 0.13551393606899248 0.11472610421457881" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13551393606899248 0.11472610421457881 C 0.13532657725596903 0.11533748818066825 0.13286247260331155 0.12368425390383625 0.13326563031271105 0.12206271180765214 C 0.13286247260331155 0.12368425390383625 0.13046024465982237 0.13519476749888282 0.1306760435561984 0.13418460936878815" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1306760435561984 0.13418460936878815 C 0.13069605057856226 0.1336321212827391 0.1309585958681607 0.12664117707842612 0.13091612782456463 0.12755475233619945 C 0.1309585958681607 0.12664117707842612 0.13120812110058333 0.12286061910378408 0.13118566007935112 0.12322170627550834" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13118566007935112 0.12322170627550834 C 0.1310011619032605 0.12370217063383651 0.1284459887395751 0.13034138261685593 0.1289716819662638 0.12898727857544645 C 0.1284459887395751 0.13034138261685593 0.12453614630848892 0.1403445944555034 0.12487734135908699 0.1394709547724221" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12487734135908699 0.1394709547724221 C 0.12487912571472372 0.13886614757306967 0.12490986664599069 0.13099706572577188 0.12489875362672778 0.1322132683801929 C 0.12490986664599069 0.13099706572577188 0.12502002625386796 0.1242651274643012 0.1250106975902418 0.12487652291936979" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1250106975902418 0.12487652291936979 C 0.12483707995059766 0.12527758032993308 0.12242048841828371 0.1311220693735394 0.122927285914512 0.1296892118461292 C 0.12242048841828371 0.1311220693735394 0.11859594777891803 0.14310261336513908 0.11892912763550219 0.14207081324829215" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11892912763550219 0.14207081324829215 C 0.1190003699103819 0.14125801136281219 0.1198634083654289 0.1311181197855162 0.11978403493405879 0.13231719062253236 C 0.1198634083654289 0.1311181197855162 0.11988973996843395 0.12729569425256232 0.11988160881194355 0.12768196320409847" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11988160881194355 0.12768196320409847 C 0.11970902252380652 0.12786590406097736 0.11752422437428836 0.1298312606622803 0.11781057335429923 0.1298892534866451 C 0.11752422437428836 0.1298312606622803 0.11633165835993932 0.1267441156304771 0.11644542105181316 0.1269860493117208" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11644542105181316 0.1269860493117208 C 0.11657867011186192 0.12707316083950013 0.11857999751504743 0.1275357422353002 0.11804440977239833 0.1280313876450727 C 0.11857999751504743 0.1275357422353002 0.1232748126462026 0.12045554745689906 0.12287247396360228 0.12103830439445087" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12287247396360228 0.12103830439445087 C 0.12275898865730904 0.12150553259733407 0.12133653706771275 0.1275432240416236 0.1215106502880835 0.12664504282904915 C 0.12133653706771275 0.1275432240416236 0.12072248740507563 0.13224743195503574 0.12078311531915316 0.13181647894534446" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12078311531915316 0.13181647894534446 C 0.12098281140310581 0.1312662364028764 0.1238277708898241 0.12400136955385875 0.12317946832658497 0.12521356843572787 C 0.1238277708898241 0.12400136955385875 0.1290113525573091 0.11660813602351394 0.12856274607802265 0.11727009236291501" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32956729517697136,0.07111735885398104) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.18026847009856942 0.1470968054834332 C 0.1798790871608978 0.14774277010705578 0.17485947339424718 0.15623931353559745 0.17559587484650976 0.1548483809669039 C 0.17485947339424718 0.15623931353559745 0.17108463415682762 0.16453296425282674 0.17143165267141855 0.16378799630775576" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17143165267141855 0.16378799630775576 C 0.1711320058041512 0.16477202744163502 0.16731685299922977 0.1776554271405879 0.16783589026421014 0.17559636991430697 C 0.16731685299922977 0.1776554271405879 0.1649838150939412 0.18957170911552876 0.16520320549165418 0.18849668302312708" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16520320549165418 0.18849668302312708 C 0.16514076547267678 0.18972595575927556 0.16454146400799013 0.20584983685344277 0.1644539252639253 0.20324795585690872 C 0.16454146400799013 0.20584983685344277 0.1664036491834743 0.22109186324192143 0.16625367042043207 0.21971925498153583" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16625367042043207 0.21971925498153583 C 0.16572274156857578 0.21794695644791712 0.1592724467218789 0.19506579914813743 0.15988252419815643 0.1984516725781112 C 0.1592724467218789 0.19506579914813743 0.15885359208068042 0.17747519892549576 0.15893274070510166 0.1790887738218508" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15893274070510166 0.1790887738218508 C 0.15918631770746833 0.17807214123519965 0.1626242772107329 0.16503072888061737 0.1619756647335015 0.16688918278203702 C 0.1626242772107329 0.16503072888061737 0.16711112590674312 0.15594550569004645 0.16671609043187838 0.15678732700481496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16671609043187838 0.15678732700481496 C 0.16725826749912454 0.15618803828877545 0.17435158021105662 0.14878831895222566 0.17322221523883236 0.1495958624123408 C 0.17435158021105662 0.14878831895222566 0.1808556580035475 0.14688855073935758 0.18026847009856942 0.1470968054834332" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33228939826345716,0.07125699688108886) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17331747500747385 0.16170602175434337 C 0.17303372491139643 0.16203397629633187 0.16930373761047576 0.1664683853715534 0.16991247385454486 0.16564147625820538 C 0.16930373761047576 0.1664683853715534 0.16568765393065307 0.172127885685879 0.16601264007864475 0.1716289311145195" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16601264007864475 0.1716289311145195 C 0.16558424331451205 0.1726489338376011 0.16010494053423002 0.18653885347962607 0.1608718789090522 0.18386896379149884 C 0.16010494053423002 0.18653885347962607 0.15647083797008918 0.20531749433709182 0.15680937958077865 0.2036676073720462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15680937958077865 0.2036676073720462 C 0.15676765495126058 0.20509011775999766 0.1564825409180048 0.22390946361719194 0.15630868402656192 0.2207377320274638 C 0.1564825409180048 0.22390946361719194 0.15911124379905384 0.24347760765056037 0.15889566227809293 0.24172838644878372" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15889566227809293 0.24172838644878372 C 0.15835029099681303 0.2398789448932922 0.15174322231046003 0.2157413507069498 0.15235120690273402 0.2195350877828853 C 0.15174322231046003 0.2157413507069498 0.151537233859811 0.1942592460171138 0.15159984717080507 0.19620354153755776" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15159984717080507 0.19620354153755776 C 0.15200093359264893 0.1947035353262734 0.15744230734486012 0.17569886723375175 0.15641288423293137 0.17820346700214543 C 0.15744230734486012 0.17569886723375175 0.16458126120403505 0.1651437507597242 0.16395292451395016 0.16614834431683353" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16395292451395016 0.16614834431683353 C 0.16435777402792312 0.16579255552416772 0.16959149788941938 0.16150868525796955 0.16881111868162574 0.16187887880484372 C 0.16959149788941938 0.16150868525796955 0.17369300470129453 0.161691617000135 0.17331747500747385 0.16170602175434337" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34046140955074844,0.08725506471853706) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.1741487200979382 0.15572338599532592 C 0.1743058626850852 0.15579218403381745 0.17640264416516127 0.15692347922380964 0.1760344311437021 0.15654896245722416 C 0.17640264416516127 0.15692347922380964 0.17877834678976048 0.16052330592244582 0.1785672763554483 0.16021758719435183" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1785672763554483 0.16021758719435183 C 0.1787611231606042 0.16114211204179762 0.18111589329149713 0.173225893781049 0.18089343801731883 0.17131188536370123 C 0.18111589329149713 0.173225893781049 0.1812653481146103 0.18417517177242682 0.18123673964558787 0.18318568820252484" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18123673964558787 0.18318568820252484 C 0.18138239931424827 0.18358159855961068 0.1834603331115003 0.1889977008105947 0.18298465566951264 0.18793661248755472 C 0.1834603331115003 0.1889977008105947 0.18727488672276735 0.1965839260449586 0.18694486894944007 0.19591874807900447" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18694486894944007 0.19591874807900447 C 0.18636499523665606 0.19541984193709797 0.17903025247077597 0.18894105973315684 0.17998638439603204 0.1899318743761265 C 0.17903025247077597 0.18894105973315684 0.17509502763389517 0.18353706386230534 0.17547128584636723 0.18402897236336851" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17547128584636723 0.18402897236336851 C 0.17524093023691073 0.18332322397835024 0.17240824343889596 0.1740860978780402 0.17270701853288925 0.17555999174314926 C 0.17240824343889596 0.1740860978780402 0.17181756523391084 0.16557410050196888 0.17188598471844765 0.16634224598205968" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17188598471844765 0.16634224598205968 C 0.17190871535159497 0.1656299612031377 0.17234731359783945 0.15690992363610132 0.17215875231621525 0.1577948286349958 C 0.17234731359783945 0.15690992363610132 0.1743145507464151 0.15555076577535343 0.1741487200979382 0.15572338599532592" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3501672851678498,0.08726723893944002) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.16842084741820545 0.15677888207485643 C 0.16879370557861526 0.1569609249614949 0.17353836694933572 0.15946420963490102 0.17289514534312314 0.1589633967145182 C 0.17353836694933572 0.15946420963490102 0.17640987013855935 0.16310740715319452 0.17613950669275658 0.16278863711945019" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17613950669275658 0.16278863711945019 C 0.17639960012051475 0.16350480461565514 0.17963172072593878 0.1731010554433399 0.17926062782585464 0.1713826470739098 C 0.17963172072593878 0.1731010554433399 0.18070362096609222 0.18441177842583642 0.18059262149376626 0.1834095375526113" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18059262149376626 0.1834095375526113 C 0.1807134241677522 0.18400252133273348 0.18234148515293658 0.19156854996330933 0.1820422535815976 0.1905253429140776 C 0.18234148515293658 0.19156854996330933 0.1843618292471871 0.19637824541250132 0.18418340034983408 0.1959280221433918" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18418340034983408 0.1959280221433918 C 0.1836031799319103 0.19532231607115036 0.17639245077190338 0.1873533934180028 0.1772207553347488 0.18865954927649448 C 0.17639245077190338 0.1873533934180028 0.17399566145076745 0.17955370205524163 0.1742437455956891 0.18025415184149185" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1742437455956891 0.18025415184149185 C 0.1740822654311299 0.17957079063810738 0.17201271665955237 0.17070701351808282 0.1723059836209789 0.17205381740087805 C 0.17201271665955237 0.17070701351808282 0.17059275526170325 0.1634290625685382 0.1707245420585706 0.16409250524794897" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1707245420585706 0.16409250524794897 C 0.17052734803240596 0.1637064653954779 0.16816623919123128 0.15885055842053838 0.16835821374459503 0.1594600270182961 C 0.16816623919123128 0.15885055842053838 0.1684260668910063 0.1565554533295698 0.16842084741820545 0.15677888207485643" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3609885205509151,0.08922777735511794) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.16487337817602168 0.14325387719037572 C 0.16548035240155368 0.1438108900673434 0.1731827428229428 0.15146803085357735 0.1721570688824057 0.14993803171398787 C 0.1731827428229428 0.15146803085357735 0.17760016517747182 0.16258685312807142 0.17718146546246674 0.1616138668654496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17718146546246674 0.1616138668654496 C 0.1772527458148723 0.1630718045713755 0.17795993992101394 0.1816266748626517 0.1780368296913333 0.17910911933656024 C 0.17795993992101394 0.1816266748626517 0.1761106180959096 0.19288415099871248 0.1762587882186345 0.19182453317854692" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1762587882186345 0.19182453317854692 C 0.17598714905242466 0.1931617446613952 0.17230201165140363 0.21078931629570158 0.17299911822411643 0.2078710709727263 C 0.17230201165140363 0.21078931629570158 0.16746804193957804 0.22842451089437715 0.167893509346081 0.22684347705425018" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.167893509346081 0.22684347705425018 C 0.16805856081028403 0.22523822267280258 0.16996489192162853 0.20473756600817297 0.16987412691651732 0.207580424476879 C 0.16996489192162853 0.20473756600817297 0.1689084029483236 0.19149157134251943 0.16898268940741543 0.19272917542977785" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16898268940741543 0.19272917542977785 C 0.16895472865138636 0.1914989030791401 0.1686751210910958 0.17563130933571672 0.16864716033506671 0.17796590722212505 C 0.1686751210910958 0.17563130933571672 0.16937413999182266 0.16360967525710746 0.1693182184797645 0.16471400079287804" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1693182184797645 0.16471400079287804 C 0.16904425501433595 0.16352830604785742 0.1656602535359768 0.14869732021908869 0.16603065689462204 0.15048566385263054 C 0.1656602535359768 0.14869732021908869 0.16477693828280499 0.14265122830185448 0.16487337817602168 0.14325387719037572" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3457291908053908,0.08608892275147395) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17018364236413894 0.1572258196713113 C 0.17044507881482626 0.1573913369149558 0.17385192380483436 0.15979467474675663 0.1733208797723869 0.15921202659504524 C 0.17385192380483436 0.15979467474675663 0.17682577833526875 0.16463472839991478 0.1765561707535086 0.1642175974918479" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1765561707535086 0.1642175974918479 C 0.17676945465233207 0.16494067224154035 0.1794976975787153 0.1743745432697218 0.1791155775393904 0.17289449448815736 C 0.1794976975787153 0.1743745432697218 0.1813104473659091 0.18273515690249306 0.18114161122540764 0.1819781828706211" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18114161122540764 0.1819781828706211 C 0.18131122594684007 0.18255120720292917 0.1838148903161192 0.19051466396195077 0.1831769878825969 0.18885447485831788 C 0.1838148903161192 0.19051466396195077 0.18926472813976503 0.20298761688554054 0.18879644042767518 0.20190045211421573" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18879644042767518 0.20190045211421573 C 0.18801783674995742 0.20108040112518402 0.17822614266018638 0.19053388185077136 0.17945319629506204 0.19205984024583525 C 0.17822614266018638 0.19053388185077136 0.17362334685200942 0.18288304396741667 0.17407179680916732 0.18358895137344886" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17407179680916732 0.18358895137344886 C 0.17386152144566744 0.18294251936483175 0.1712228762311687 0.1743482439337769 0.17154849244716866 0.17583176727004368 C 0.1712228762311687 0.1743482439337769 0.1700490613646677 0.16494958001059798 0.17016440221716775 0.16578667133824765" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17016440221716775 0.16578667133824765 C 0.17014449748561944 0.16529502375636343 0.16992714878416904 0.15917349605005887 0.1699255454385881 0.1598869003556369 C 0.16992714878416904 0.15917349605005887 0.17020515044126816 0.1570040629476175 0.17018364236413894 0.1572258196713113" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.3609885205509151,0.08922777735511794) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.1813924938226438 0.12674733528934845 C 0.18153494836700718 0.12676968691187623 0.18336722218604373 0.1271324768048751 0.18310194835500418 0.12701555475968185 C 0.18336722218604373 0.1271324768048751 0.18469859908179473 0.12824497025433318 0.18457577979511852 0.1281503998316677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18457577979511852 0.1281503998316677 C 0.18463477126119537 0.12835236212398413 0.18535287334801662 0.13099512369958188 0.18528367738804077 0.13057394733946465 C 0.18535287334801662 0.13099512369958188 0.18541633580872763 0.1334237302208752 0.18540613131482864 0.13320451615307438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18540613131482864 0.13320451615307438 C 0.18543953479521064 0.13329000467905167 0.18584231293006753 0.13441338809153483 0.18580697307941274 0.13423037846480187 C 0.18584231293006753 0.13441338809153483 0.18580209630427152 0.13558157574996693 0.18583020952268606 0.13540063167386973 C 0.18580209630427152 0.13558157574996693 0.1853855810851254 0.13653210208436412 0.18546961445843843 0.13640170737796814 C 0.1853855810851254 0.13653210208436412 0.1847043721892347 0.13701027433104013 0.18482180904292972 0.13696536815062146 C 0.1847043721892347 0.13701027433104013 0.18394099899013022 0.13688796662265523 0.18406037221409802 0.1369405815429922 C 0.18394099899013022 0.13688796662265523 0.1833334102004176 0.13628343973687662 0.1833893303553161 0.13633398910657782" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1833893303553161 0.13633398910657782 C 0.1832466418853578 0.1363203506152337 0.18140245784329778 0.1360678934659657 0.18167706871581657 0.1361703272104483 C 0.18140245784329778 0.1360678934659657 0.17996207748253015 0.13501598891964797 0.18009399988509064 0.13510478417278646" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18009399988509064 0.13510478417278646 C 0.1800313368609552 0.1349168691908985 0.17926351059401038 0.1324431163307242 0.17934204359546546 0.13284980439013075 C 0.17926351059401038 0.1324431163307242 0.17913573389031015 0.13000575438238926 0.1791516038676298 0.13022452745990784" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3630513615458829,0.0923694379827169) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10740263332358578 0.10576606823862698 C 0.10720144314283353 0.10561607366098405 0.10570389076558306 0.10464787461432781 0.10619549223907224 0.10486610077276938 C 0.10570389076558306 0.10464787461432781 0.10415036003886818 0.10393085749238386 0.10445302448265074 0.10445671128797757 C 0.10415036003886818 0.10393085749238386 0.10420385982610922 0.1008522343766595 0.10437950557637683 0.10171097799920716 C 0.10420385982610922 0.1008522343766595 0.10339914998104507 0.09930424955269156 0.10339914998104507 0.09930424955269156 C 0.10339914998104507 0.09930424955269156 0.10455515132664445 0.10256972162175482 0.10437950557637683 0.10171097799920716 C 0.10455515132664445 0.10256972162175482 0.10411429827119345 0.1048351900790319 0.10445302448265074 0.10445671128797757 C 0.10411429827119345 0.1048351900790319 0.10179747964448559 0.10370160525685702 0.10234714830763306 0.10398185074553314 C 0.10179747964448559 0.10370160525685702 0.10095632320312137 0.10257413629098552 0.10115501250376589 0.1027752383559209" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3651142025408507,0.09551109861031584) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13934838542198752 0.11390909874112684 C 0.13946109172937776 0.11401348563047278 0.14089132454860853 0.11541566608429625 0.14070086111067048 0.11516174141327819 C 0.14089132454860853 0.11541566608429625 0.141711703807792 0.11710573257501579 0.1416339466772442 0.11695619479334367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1416339466772442 0.11695619479334367 C 0.1416309343034174 0.1171517941812993 0.14154675286980647 0.11967852998802649 0.14159779819132276 0.11930338744881124 C 0.14154675286980647 0.11967852998802649 0.1409733698713592 0.12163744841518633 0.1410214028190487 0.1214579052639267" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1410214028190487 0.1214579052639267 C 0.14102714083798476 0.12154583369980702 0.14107246383930175 0.12267926311139035 0.14109025904628147 0.12251304649449057 C 0.14107246383930175 0.12267926311139035 0.14073782834748788 0.12357846351902106 0.1408078603352919 0.12345250466672408 C 0.14073782834748788 0.12357846351902106 0.1401463714385814 0.12407650323699601 0.14024987519263327 0.12402455272205436 C 0.1401463714385814 0.12407650323699601 0.13945657351368165 0.1240399329250853 0.1395658152866696 0.12407591084602397 C 0.13945657351368165 0.1240399329250853 0.13885326536970605 0.12347855156883218 0.13893897391677817 0.12359281767079032 C 0.13885326536970605 0.12347855156883218 0.13850384095555623 0.12263070928517099 0.13853731272180408 0.12270471762252633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13853731272180408 0.12270471762252633 C 0.13842216539559485 0.12260707777356733 0.13695358095223822 0.12128488704343827 0.13715554480729317 0.12153303943501838 C 0.13695358095223822 0.12128488704343827 0.1360269299322992 0.11957637638094398 0.13611374646114488 0.11972688892356509" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13611374646114488 0.11972688892356509 C 0.13611008369045938 0.11954016176471163 0.13610933811731835 0.11711679275754626 0.13606979321291893 0.11748616301732355 C 0.13610933811731835 0.11711679275754626 0.13663149298902272 0.11511180270531379 0.13658828531393782 0.11529444580623761" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3660197137420826,0.09925086819508794) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10647948542456667 0.10730157454071686 C 0.10635084272012316 0.10706050795263576 0.10535506433132374 0.10538338164823535 0.1057076291979056 0.1058551750122303 C 0.10535506433132374 0.10538338164823535 0.10424797132914239 0.10387078914955926 0.10436409622507554 0.10447081435674717 C 0.10424797132914239 0.10387078914955926 0.10508621516078152 0.10146910168454747 0.10501087982230667 0.10225502376910282 C 0.10508621516078152 0.10146910168454747 0.10481610825592465 0.099755281849415 0.10481610825592465 0.099755281849415 C 0.10481610825592465 0.099755281849415 0.10493554448383181 0.10304094585365818 0.10501087982230667 0.10225502376910282 C 0.10493554448383181 0.10304094585365818 0.10398482007380949 0.10456388965336 0.10436409622507554 0.10447081435674717 C 0.10398482007380949 0.10456388965336 0.10235035801273544 0.10225729767924197 0.10273522291471031 0.10281347554877984 C 0.10235035801273544 0.10225729767924197 0.1019415207963123 0.10085379240464329 0.1020549068132263 0.10113374713951993" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3669252249433144,0.10299063777986012) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1392980601051617 0.1148232633735063 C 0.13936815226698981 0.11497100017400858 0.14023907094844137 0.11690820824983958 0.1401391660470992 0.11659610497953361 C 0.14023907094844137 0.11690820824983958 0.14052673166078186 0.11873286908698162 0.1404969189212678 0.11856850261717793" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1404969189212678 0.11856850261717793 C 0.14044758657872533 0.1187243537546609 0.13977213388309054 0.12071205859481027 0.1399049308107582 0.12043871626697351 C 0.13977213388309054 0.12071205859481027 0.13881989120413085 0.12196610174157275 0.13890335578925603 0.12184861055121897" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13890335578925603 0.12184861055121897 C 0.13888716125884631 0.1219226763728969 0.13865424927465358 0.12286123505050511 0.13870902142433952 0.12273740041135422 C 0.13865424927465358 0.12286123505050511 0.13815688850753663 0.12339653133732031 0.13824608999302465 0.12333462622102954 C 0.13815688850753663 0.12339653133732031 0.13753887424319342 0.1234636499743567 0.13763860359848334 0.1234802618068435 C 0.13753887424319342 0.1234636499743567 0.13696580290466534 0.12304460657702318 0.13704933772954556 0.12313528423118793 C 0.13696580290466534 0.12304460657702318 0.13659122849431665 0.12225168348522891 0.13663618569992064 0.1223921299568666 C 0.13659122849431665 0.12225168348522891 0.13649932339249593 0.12137140962275811 0.13650985126229784 0.12144992657153568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13650985126229784 0.12144992657153568 C 0.13643608615405556 0.12130624576709505 0.13551368402257163 0.11941180788877695 0.13562466996339048 0.11972575691824812 C 0.13551368402257163 0.11941180788877695 0.13514079913989516 0.11751226999285107 0.13517801997247172 0.1176825382178816" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13517801997247172 0.1176825382178816 C 0.13521959964579697 0.11753006352056024 0.1357986919405657 0.11557765376302317 0.13567697605237472 0.11585284185002513 C 0.1357986919405657 0.11557765376302317 0.1367187468456294 0.11425756778417762 0.13663861063076366 0.11438028117385819" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36679435902222157,0.10651438592370757) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10539917264347934 0.10790572007419398 C 0.10534833538098098 0.10763888913871121 0.10490963624709945 0.10572558888637532 0.10509414906848921 0.10630473446129733 C 0.10490963624709945 0.10572558888637532 0.10433768727304993 0.10388194956816078 0.10429209571514082 0.1044308466246619 C 0.10433768727304993 0.10388194956816078 0.10561925026067141 0.10242085141719362 0.10536769841594387 0.10301135212229062 C 0.10561925026067141 0.10242085141719362 0.1058014067835061 0.10088784239407984 0.1058014067835061 0.10088784239407984 C 0.1058014067835061 0.10088784239407984 0.10511614657121633 0.10360185282738762 0.10536769841594387 0.10301135212229062 C 0.10511614657121633 0.10360185282738762 0.10394992434669958 0.10429160848748925 0.10429209571514082 0.1044308466246619 C 0.10394992434669958 0.10429160848748925 0.1031231000259724 0.10151056469656403 0.10331467020529649 0.10217592329925476 C 0.1031231000259724 0.10151056469656403 0.10311400871151297 0.1001491569600613 0.10314267463919632 0.1004386950085175" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3609885205509151,0.08922777735511794) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.16417183049584005 0.15783498676145755 C 0.16458097213616837 0.15816892518799927 0.1697835725802942 0.1625557009029687 0.1690815301797799 0.16184224787995832 C 0.1697835725802942 0.1625557009029687 0.17288924006219786 0.16677593763405077 0.17259633930201185 0.16639642303758212" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17259633930201185 0.16639642303758212 C 0.17286955422472172 0.16717427226078732 0.1762556926084082 0.1773822085722282 0.1758749183745303 0.17573061371604456 C 0.1762556926084082 0.1773822085722282 0.1772731894197148 0.18708930694476406 0.17716563010854675 0.18621556131178563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17716563010854675 0.18621556131178563 C 0.17727658547864183 0.18709241030517668 0.1789184413937391 0.19863293164445586 0.17849709454968793 0.19673774923247808 C 0.1789184413937391 0.19863293164445586 0.18253218371111687 0.20997608367410583 0.1822217922371608 0.20895775025551908" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1822217922371608 0.20895775025551908 C 0.1816614609406902 0.20810211035377696 0.17453422057708826 0.1965400661084146 0.17549781667951322 0.19869007143461373 C 0.17453422057708826 0.1965400661084146 0.1702553742021068 0.18186332091667257 0.17065863900806114 0.18315768634112958" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17065863900806114 0.18315768634112958 C 0.17038184225632283 0.182395325720977 0.16685975019251686 0.17253824422652508 0.16733707798720132 0.1740093588992984 C 0.16685975019251686 0.17253824422652508 0.16473017442890145 0.16479555621522915 0.1649307054718476 0.16550431026784987" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1649307054718476 0.16550431026784987 C 0.16485685633025698 0.16513345337451824 0.16398127619142613 0.16041491725567086 0.1640445157727601 0.16105402754787024 C 0.16398127619142613 0.16041491725567086 0.16418244005609672 0.15756673336258983 0.16417183049584005 0.15783498676145755" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3544756752321351,0.08612508235812594) rotate(0) scale(1,1) translate(-0.17622383096689268,-0.1693422041235609)"><path d="M 0.1712709323788805 0.15596083298921185 C 0.17149265380219678 0.1560487281261958 0.1746027566609213 0.15751544222462097 0.1739315894586759 0.15701557463301924 C 0.1746027566609213 0.15751544222462097 0.17977438458475417 0.16237121654305026 0.17932493880582506 0.16195924408843249" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17932493880582506 0.16195924408843249 C 0.17972702167408197 0.1627164982864731 0.18467405875369627 0.1729503495339357 0.1841499332249081 0.17104629446492006 C 0.18467405875369627 0.1729503495339357 0.1857364878118144 0.18595470578759507 0.18561444515128314 0.18480790491662008" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18561444515128314 0.18480790491662008 C 0.18543931595122348 0.18632790948162048 0.18302011883884522 0.20627151735024227 0.18351289475056726 0.20304795969662473 C 0.18302011883884522 0.20627151735024227 0.17938348749895652 0.22519414984864775 0.1797011342106189 0.22349059676003058" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1797011342106189 0.22349059676003058 C 0.17975865511509218 0.2218160542879331 0.18027269262051496 0.20007830745085337 0.1803913850642983 0.20339608709486073 C 0.18027269262051496 0.20007830745085337 0.17810061153696194 0.18203400386003218 0.1782768248852186 0.18367724103194208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1782768248852186 0.18367724103194208 C 0.17816313138333448 0.18293716445395333 0.17666247649083416 0.1733027032098442 0.17691250286260918 0.174796322096077 C 0.17666247649083416 0.1733027032098442 0.17514017555402753 0.16500027208890433 0.17527650842391843 0.1657538143971484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17527650842391843 0.1657538143971484 C 0.17513374170064228 0.1653342240185102 0.17322950974085163 0.15990264806949528 0.1735633077446048 0.16071872985348998 C 0.17322950974085163 0.15990264806949528 0.1710799010984035 0.15556434158385535 0.1712709323788805 0.15596083298921185" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3609885205509151,0.08922777735511794) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12781625376207265)"><path d="M 0.10967204063678468 0.11727009236291501 C 0.11012064711607115 0.11793204870231608 0.11570362095146149 0.126425767317597 0.11505531838822236 0.12521356843572787 C 0.11570362095146149 0.126425767317597 0.11765136747960687 0.1323667214878125 0.11745167139565423 0.13181647894534446" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11745167139565423 0.13181647894534446 C 0.1173910434815767 0.13138552593565317 0.11655002320635303 0.1257468616164747 0.1167241364267238 0.12664504282904915 C 0.11655002320635303 0.1257468616164747 0.1152488274449118 0.12057107619156768 0.11536231275120504 0.12103830439445087" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11536231275120504 0.12103830439445087 C 0.11576465143380538 0.12162106133200269 0.12072596468505813 0.12852703305484517 0.12019037694240903 0.1280313876450727 C 0.12072596468505813 0.12852703305484517 0.12192261472304292 0.12689893778394148 0.12178936566299416 0.1269860493117208" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12178936566299416 0.1269860493117208 C 0.12167560297112032 0.1272279829929645 0.12013786438049727 0.1299472463110099 0.12042421336050814 0.1298892534866451 C 0.12013786438049727 0.1299472463110099 0.11818059161472674 0.12749802234721958 0.11835317790286377 0.12768196320409847" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11835317790286377 0.12768196320409847 C 0.11836130905935417 0.12806823215563462 0.11853012521211861 0.1335162614595485 0.1184507517807485 0.13231719062253236 C 0.11853012521211861 0.1335162614595485 0.11937690135418495 0.14288361513377212 0.11930565907930522 0.14207081324829215" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11930565907930522 0.14207081324829215 C 0.11897247922272107 0.14103901313144523 0.11480070330406705 0.12825635431871898 0.11530750080029536 0.1296892118461292 C 0.11480070330406705 0.12825635431871898 0.11305047148492135 0.1244754655088065 0.11322408912456551 0.12487652291936979" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11322408912456551 0.12487652291936979 C 0.11323341778819168 0.12548791837443837 0.11334714610734242 0.13342947103461392 0.11333603308807952 0.1322132683801929 C 0.11334714610734242 0.13342947103461392 0.11335922971135706 0.14007576197177454 0.11335744535572033 0.1394709547724221" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11335744535572033 0.1394709547724221 C 0.11301625030512226 0.1385973150893408 0.1087374115218548 0.12763317453403697 0.10926310474854348 0.12898727857544645 C 0.1087374115218548 0.12763317453403697 0.10686462845936558 0.12274124191718017 0.10704912663545618 0.12322170627550834" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10704912663545618 0.12322170627550834 C 0.10707158765668841 0.1235827934472326 0.10736112693383891 0.12846832759397278 0.10731865889024284 0.12755475233619945 C 0.10736112693383891 0.12846832759397278 0.10757875018097293 0.1347370974548372 0.10755874315860908 0.13418460936878815" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10755874315860908 0.13418460936878815 C 0.10734294426223302 0.13317445123869348 0.10456599869269681 0.12044116971146804 0.10496915640209634 0.12206271180765214 C 0.10456599869269681 0.12044116971146804 0.1025334918327914 0.11411472024848937 0.10272085064581485 0.11472610421457881" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10272085064581485 0.11472610421457881 C 0.10321825104484739 0.11545291296355234 0.10944531807014858 0.12491353141974686 0.1086896554342053 0.12344780920226127 C 0.10944531807014858 0.12491353141974686 0.1120470645140449 0.13305368429291797 0.11178880227713417 0.13231477082440593" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11178880227713417 0.13231477082440593 C 0.1117680018544245 0.13169393828142603 0.11136280040125557 0.12361105710352284 0.11153919720461802 0.12486478030864709 C 0.11136280040125557 0.12361105710352284 0.1095164442561319 0.11663720170077067 0.10967204063678468 0.11727009236291501" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.17198073323872295,-0.1598289683774766)"><path d="M 0.172054304517104 0.15527807517575243 C 0.17217812730464407 0.1553110535690813 0.17372172678270262 0.156035440632403 0.17354017796758514 0.15567381589569873 C 0.17372172678270262 0.156035440632403 0.17429061632609125 0.15994621835957892 0.17423289029851385 0.15961757201620352" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17423289029851385 0.15961757201620352 C 0.17431419362968767 0.16022375770926334 0.1754221599089984 0.16851968001313572 0.17520853027259956 0.1668918003329213 C 0.1754221599089984 0.16851968001313572 0.17692877224052503 0.1801738221659312 0.1767964459353 0.1791521281787766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1767964459353 0.1791521281787766 C 0.1768999886967492 0.17963210951964043 0.1784060183171814 0.1862886242928267 0.17803895907269018 0.18491190426914256 C 0.1784060183171814 0.1862886242928267 0.18146467335223634 0.19656950714580645 0.18120115686919433 0.19567276846298615" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18120115686919433 0.19567276846298615 C 0.18060720809422456 0.19504897136423416 0.17315899914412763 0.18703428505564196 0.17407377156955725 0.18818720327796215 C 0.17315899914412763 0.18703428505564196 0.16990306411357906 0.18130862867157563 0.1702238877640389 0.18183774979514383" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1702238877640389 0.18183774979514383 C 0.17007355358671253 0.18107627048295166 0.16835476959363152 0.17083580557394984 0.16841987763612226 0.1726999980488379 C 0.16835476959363152 0.17083580557394984 0.16952781738898562 0.15836472693379133 0.16944259125414998 0.15946744009648722" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16944259125414998 0.15946744009648722 C 0.1695267694943276 0.15913549482524128 0.1706703729081943 0.15513498309814122 0.17045273013628148 0.15548409684153577 C 0.1706703729081943 0.15513498309814122 0.1721877690488392 0.15526090670360382 0.172054304517104 0.15527807517575243" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3451316017155175,0.07111735885398104) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.17847436625482904 0.1470968054834332 C 0.17906155415980712 0.14730506022750883 0.18664998608679031 0.15040340587245593 0.18552062111456608 0.1495958624123408 C 0.18664998608679031 0.15040340587245593 0.1925689229887662 0.15738661572085447 0.19202674592152005 0.15678732700481496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19202674592152005 0.15678732700481496 C 0.1924217813963848 0.15762914831958347 0.19741578409712826 0.16874763668345666 0.19676717161989687 0.16688918278203702 C 0.19741578409712826 0.16874763668345666 0.20006367265066338 0.18010540640850192 0.19981009564829671 0.1790887738218508" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19981009564829671 0.1790887738218508 C 0.19973094702387548 0.1807023487182058 0.19825023467896447 0.20183754600808496 0.198860312155242 0.1984516725781112 C 0.19825023467896447 0.20183754600808496 0.19195823708111012 0.22149155351515454 0.19248916593296642 0.21971925498153583" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19248916593296642 0.21971925498153583 C 0.19263914469600865 0.21834664672115023 0.194376449833538 0.20064607486037467 0.1942889110894732 0.20324795585690872 C 0.194376449833538 0.20064607486037467 0.19347719084276682 0.1872674102869786 0.19353963086174422 0.18849668302312708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19353963086174422 0.18849668302312708 C 0.19332024046403123 0.1874216569307254 0.19038790882420795 0.17353731268802602 0.19090694608918832 0.17559636991430697 C 0.19038790882420795 0.17353731268802602 0.18701153681471244 0.1628039651738765 0.18731118368197983 0.16378799630775576" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18731118368197983 0.16378799630775576 C 0.1869641651673889 0.16304302836268478 0.18241056005462603 0.15345744839821035 0.18314696150688858 0.1548483809669039 C 0.18241056005462603 0.15345744839821035 0.1780849833171574 0.14645084085981064 0.17847436625482904 0.1470968054834332" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3424094986290316,0.07125699688108886) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17019031394131792 0.16170602175434337 C 0.1705658436351386 0.16172042650855173 0.17547704947495973 0.1622490723517179 0.1746966702671661 0.16187887880484372 C 0.17547704947495973 0.1622490723517179 0.17995971394881466 0.16650413310949935 0.1795548644348417 0.16614834431683353" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1795548644348417 0.16614834431683353 C 0.1801832011249266 0.16715293787394286 0.18812432782778926 0.1807080667705391 0.18709490471586052 0.17820346700214543 C 0.18812432782778926 0.1807080667705391 0.19230902819983065 0.1977035477488421 0.19190794177798678 0.19620354153755776" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19190794177798678 0.19620354153755776 C 0.1918453284669927 0.1981478370580017 0.19054859745378383 0.2233288248588208 0.19115658204605782 0.2195350877828853 C 0.19054859745378383 0.2233288248588208 0.18406675538941897 0.24357782800427524 0.18461212667069887 0.24172838644878372" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18461212667069887 0.24172838644878372 C 0.1848277081916598 0.23997916524700708 0.18737296181367283 0.21756600043773566 0.18719910492222996 0.2207377320274638 C 0.18737296181367283 0.21756600043773566 0.18665668473849517 0.20224509698409474 0.18669840936801324 0.2036676073720462" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18669840936801324 0.2036676073720462 C 0.18635986775732377 0.20201772040700058 0.18186897166491742 0.1811990741033716 0.1826359100397396 0.18386896379149884 C 0.18186897166491742 0.1811990741033716 0.1770667521060143 0.17060892839143788 0.17749514887014703 0.1716289311145195" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17749514887014703 0.1716289311145195 C 0.17717016272215536 0.17112997654315998 0.17298657885017782 0.16481456714485737 0.17359531509424692 0.16564147625820538 C 0.17298657885017782 0.16481456714485737 0.1699065638452405 0.16137806721235487 0.17019031394131792 0.16170602175434337" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 66 KiB

View File

@@ -0,0 +1,197 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3331344687915756,0.08767004086829941) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17558666654926788 0.15511194585830043 C 0.17564135741192455 0.15523786914177867 0.1762657347002776 0.15691440538056511 0.17624295690114794 0.15662302526003918 C 0.1762657347002776 0.15691440538056511 0.17582808707529668 0.15877396414165929 0.1758600001388237 0.1586085073046116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1758600001388237 0.1586085073046116 C 0.1758134130157565 0.15977720612976448 0.17533622976478175 0.1748681939056227 0.17530095466201756 0.17263289320644612 C 0.17533622976478175 0.1748681939056227 0.17636516359782525 0.18649871756875414 0.17628330137199388 0.18543211569473045" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17628330137199388 0.18543211569473045 C 0.1762102843216978 0.18581216456193161 0.1750243714804904 0.19118400559225657 0.17540709676844096 0.18999270210114447 C 0.1750243714804904 0.19118400559225657 0.17138088967893267 0.20053901221198672 0.17169059791658714 0.1997277575880758" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17169059791658714 0.1997277575880758 C 0.17164969723322865 0.19893423557386974 0.1708697839464339 0.18876371386991211 0.17119978971628513 0.19020549341760332 C 0.1708697839464339 0.18876371386991211 0.16744142359187952 0.1817781454822962 0.16773052867837226 0.18242640301578136" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16773052867837226 0.18242640301578136 C 0.16764565315323432 0.18142127592850338 0.16689432858596653 0.1684848629667774 0.1667120223767169 0.17036487796844565 C 0.16689432858596653 0.1684848629667774 0.17018538492375554 0.15899133508137195 0.16991820318936796 0.15986622299576222" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16991820318936796 0.15986622299576222 C 0.17020106809328606 0.15954426610520572 0.1737849539830436 0.1556065505476291 0.17331258203638528 0.15600274030908423 C 0.1737849539830436 0.1556065505476291 0.1757761735920081 0.1550377129874018 0.17558666654926788 0.15511194585830043" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32343342602503145,0.08768232950410915) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.1785365928741599 0.15663025954268958 C 0.17855997143982344 0.15683590405130463 0.1787181738507043 0.15972246892849354 0.17881713566212237 0.15909799364606997 C 0.1787181738507043 0.15972246892849354 0.1772267107600614 0.1645427937055811 0.17734905113714303 0.16412396293177253" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17734905113714303 0.16412396293177253 C 0.17703978574299603 0.16477412991063714 0.17340180166898628 0.17333892560941777 0.17363786640737905 0.17192596667814775 C 0.17340180166898628 0.17333892560941777 0.17458947493218419 0.18184226205941809 0.17451627427642993 0.18107947010701267" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17451627427642993 0.18107947010701267 C 0.1742832137992879 0.18177478799353136 0.17127104264400375 0.19068747415796233 0.17171954855072574 0.18942328474523715 C 0.17127104264400375 0.19068747415796233 0.16891875796618594 0.1968186145859212 0.16913420339576593 0.19624974305971474" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16913420339576593 0.19624974305971474 C 0.16898324161747724 0.19556159579680749 0.16718862403454626 0.1867623959615001 0.16732266205630167 0.18799197590482764 C 0.16718862403454626 0.1867623959615001 0.16754267089123415 0.18095335105936397 0.1675257471347009 0.18149478373978425" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1675257471347009 0.18149478373978425 C 0.16747451416612924 0.180534064201613 0.16727853781548924 0.16840890404353884 0.16691095151184102 0.16996614928172912 C 0.16727853781548924 0.16840890404353884 0.17235560205069927 0.16221131518148166 0.1719367827784794 0.1628078408815007" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1719367827784794 0.1628078408815007 C 0.17221137410254905 0.16245650344017612 0.17578186284195507 0.15807699314070486 0.17523187866731504 0.1585917915856058 C 0.17578186284195507 0.15807699314070486 0.1788119857247303 0.15646679853911322 0.1785365928741599 0.15663025954268958" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31241092917350344,0.09034205385627028) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.1810569937338512 0.14135419197573382 C 0.18082494662088255 0.1424375292035823 0.1777403558699083 0.1563066227957859 0.1782724283782276 0.15435423870991558 C 0.1777403558699083 0.1563066227957859 0.17437209823866903 0.1656518478641993 0.17467212363401968 0.16478280100617745" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17467212363401968 0.16478280100617745 C 0.17457850638069258 0.1658683422678178 0.17373551878049998 0.18020471871096858 0.17354871659409443 0.1778092961458615 C 0.17373551878049998 0.18020471871096858 0.1771941693106188 0.19483775309092927 0.17691374987088615 0.1935278717874625" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17691374987088615 0.1935278717874625 C 0.17668064504839387 0.19473822321345685 0.17387355392307374 0.21068473021525067 0.17411649200097867 0.2080520888993947 C 0.17387355392307374 0.21068473021525067 0.17398865968061444 0.22654185746759578 0.17399849293602707 0.22511956757773416" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17399849293602707 0.22511956757773416 C 0.17374803991815485 0.2237217258569817 0.1706524436527315 0.20561333560838393 0.1709930567215605 0.20834546692870448 C 0.1706524436527315 0.20561333560838393 0.16982097605912216 0.1909997021343197 0.16991113611007896 0.19233399173388774" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16991113611007896 0.19233399173388774 C 0.16963190859490276 0.19079548772182542 0.16647690455255673 0.17097849214105146 0.1665604059279645 0.17387194358913993 C 0.16647690455255673 0.17097849214105146 0.16910484574495427 0.1562576269208 0.16890911960518581 0.15761257435682616" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16890911960518581 0.15761257435682616 C 0.16936085529825068 0.15694319540188786 0.17534227076601946 0.14822516169914216 0.17432994792196402 0.14958002689756653 C 0.17534227076601946 0.14822516169914216 0.1816175808848418 0.14066870573224777 0.1810569937338512 0.14135419197573382" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31241092917350344,0.09034205385627028) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18148015649647106 0.13016232655993948 C 0.18147553236232805 0.13038164708146308 0.1813671065335975 0.1332044962385103 0.18142466688675496 0.1327941728182226 C 0.1813671065335975 0.1332044962385103 0.18073649603956715 0.13527721050215613 0.1807894322585816 0.13508620760339202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1807894322585816 0.13508620760339202 C 0.1806622462676783 0.13518192422694025 0.17899422117560104 0.1363517613488291 0.179263200367742 0.13623480708597085 C 0.17899422117560104 0.1363517613488291 0.17741988875165277 0.13651089639700087 0.1775616819528904 0.13648965875769087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1775616819528904 0.13648965875769087 C 0.17750843185644288 0.13654312431137666 0.17680617056274922 0.13719016130215148 0.17692268079552015 0.13713124540192034 C 0.17680617056274922 0.13719016130215148 0.17604397934955765 0.1371580746304593 0.17616355915963938 0.13719664956046437 C 0.17604397934955765 0.1371580746304593 0.17539711500068944 0.13654261660296105 0.1754877230745395 0.1366683462418594 C 0.17539711500068944 0.13654261660296105 0.17503890429603605 0.13550869870110005 0.1750762622734386 0.13568789389368419 C 0.17503890429603605 0.13550869870110005 0.17506532950462977 0.13433335839172017 0.17503942734570893 0.13451800393084964 C 0.17506532950462977 0.13433335839172017 0.1754160599167205 0.1333849927152373 0.17538708818048884 0.13347214742413055" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17538708818048884 0.13347214742413055 C 0.17538603197067146 0.13325268898499967 0.17542190645207656 0.1304143527743947 0.17537441366268022 0.13083864615456 C 0.17542190645207656 0.1304143527743947 0.17600555065245857 0.12817579192111234 0.17595700165324485 0.12838062686214677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17595700165324485 0.12838062686214677 C 0.1760748007102479 0.12827962898006276 0.17762950196566113 0.12703772805440292 0.1773705903372813 0.12716865227713875 C 0.17762950196566113 0.12703772805440292 0.17920505376517942 0.126779609848665 0.17906394119380264 0.1268095361893168" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31051209728427986,0.09358953971441153) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1074426825075449 0.10260728048883422 C 0.10725458299105614 0.10281871455667363 0.10577954796671585 0.10418509197839254 0.10631408540861231 0.10387588489587068 C 0.10577954796671585 0.10418509197839254 0.10387777810458945 0.1041026467690811 0.10423545785616607 0.10446252298396536 C 0.10387777810458945 0.1041026467690811 0.10429935432234501 0.10084968350298185 0.10416800689915257 0.10171662760656518 C 0.10429935432234501 0.10084968350298185 0.10502354239532076 0.09926085836246534 0.10502354239532076 0.09926085836246534 C 0.10502354239532076 0.09926085836246534 0.10403665947596012 0.10258357171014851 0.10416800689915257 0.10171662760656518 C 0.10403665947596012 0.10258357171014851 0.10396018699109025 0.10500381473697916 0.10423545785616607 0.10446252298396536 C 0.10396018699109025 0.10500381473697916 0.10203664999233049 0.10520855078643669 0.10251638170869759 0.10496437812464798 C 0.10203664999233049 0.10520855078643669 0.10116384853284113 0.10608808909303921 0.10135706755796349 0.1059275589546976" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3086132653950563,0.09683702557255278) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13938203154071174 0.11521981853458556 C 0.13943455045636835 0.1153999045620633 0.14007069967994484 0.11774760369523599 0.140012258528591 0.11738085086431846 C 0.14007069967994484 0.11774760369523599 0.14008924759265498 0.11980751930903569 0.14008332535695775 0.1196208525055959" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14008332535695775 0.1196208525055959 C 0.14000434981268098 0.11977579372894688 0.13894666314675927 0.12173874192106711 0.13913561882563655 0.12148014718580766 C 0.13894666314675927 0.12173874192106711 0.13770587707582996 0.12282764284061776 0.13781585721043046 0.12272398932870929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13781585721043046 0.12272398932870929 C 0.13778622829392562 0.12279968322781969 0.1373805815175252 0.12375100142237923 0.13746031021237215 0.12363231611803409 C 0.1373805815175252 0.12375100142237923 0.13675186664889322 0.12418997378513073 0.13685911287226693 0.12414821298085103 C 0.13675186664889322 0.12418997378513073 0.1360673283189315 0.1240870922998228 0.1361733555318877 0.12413344576939055 C 0.1360673283189315 0.1240870922998228 0.13551038802034132 0.12346992397735988 0.13558678631679266 0.12359197134603803 C 0.13551038802034132 0.12346992397735988 0.13523027745636249 0.1225038385713399 0.13525657597447172 0.12266887734525278 C 0.13523027745636249 0.1225038385713399 0.13527242310989956 0.12152339178523588 0.13527120409948204 0.12161150605908334" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13527120409948204 0.12161150605908334 C 0.13521402556617335 0.12143477334411107 0.13451483974698414 0.119118810262991 0.13458506169977755 0.11949071347941605 C 0.13451483974698414 0.119118810262991 0.13441549724647633 0.11695349696052988 0.13442854066596105 0.11714866746198266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13442854066596105 0.11714866746198266 C 0.13449851923737888 0.11699518332603626 0.13544545840041256 0.11504311270985879 0.13526828352297487 0.11530685783062576 C 0.13544545840041256 0.11504311270985879 0.13666183550123326 0.11387346502795832 0.13655463919521338 0.1139837260127789" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.307900863038553,0.10062001328265978) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10645980520642277 0.10101608235456618 C 0.10636093758351041 0.10130170686355712 0.10551079656701257 0.10330579218795909 0.10586659946894861 0.10272982940851184 C 0.10551079656701257 0.10330579218795909 0.10394145622525501 0.10439916005173182 0.10432498779480648 0.10447185903124966 C 0.10394145622525501 0.10439916005173182 0.10344985643637755 0.1015128125219442 0.10356541005163979 0.10229363553140484 C 0.10344985643637755 0.1015128125219442 0.10363166610323309 0.0997869209744858 0.10363166610323309 0.0997869209744858 C 0.10363166610323309 0.0997869209744858 0.10368096366690202 0.10307445854086549 0.10356541005163979 0.10229363553140484 C 0.10368096366690202 0.10307445854086549 0.10423980617594346 0.10507726159011721 0.10432498779480648 0.10447185903124966 C 0.10423980617594346 0.10507726159011721 0.1027264438814729 0.10641602037319747 0.1030543203384617 0.10592605088461013 C 0.1027264438814729 0.10641602037319747 0.10224163050527574 0.10765928014246767 0.10235772905287373 0.10741167596277373" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.30718846068204986,0.10440300099276685) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928487422229538 0.11430959349649668 C 0.13937119639072942 0.11442786040679763 0.1404564077751189 0.11599710921464265 0.14032074024350402 0.11572879642010804 C 0.1404564077751189 0.11599710921464265 0.1409622299648547 0.11767939291514576 0.14091288460167387 0.11752934703091208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14091288460167387 0.11752934703091208 C 0.1408844503444628 0.11770136905167897 0.1404769467472478 0.11991305536065672 0.1405716735151412 0.11959361128011461 C 0.1404769467472478 0.11991305536065672 0.13970987087627104 0.12151009805719255 0.13977616338695337 0.12136267599741733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13977616338695337 0.12136267599741733 C 0.13976967823617864 0.12144164740239999 0.1396606515528085 0.12245298702303878 0.13969834157765676 0.12231033285720928 C 0.1396606515528085 0.12245298702303878 0.1392451149381362 0.12316953912058846 0.1393238830887742 0.12307452598737131 C 0.1392451149381362 0.12316953912058846 0.13865438335592595 0.12347240386410402 0.1387531237700009 0.1234504904558151 C 0.13865438335592595 0.12347240386410402 0.13804674285657448 0.12328042889014457 0.1381389981198747 0.12333748688683831 C 0.13804674285657448 0.12328042889014457 0.13758501022117137 0.12264505373794958 0.13764606061039805 0.12276579449549016 C 0.13758501022117137 0.12264505373794958 0.13738642118571745 0.1218154980714231 0.13740639344915442 0.12188859779635133" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13740639344915442 0.12188859779635133 C 0.13731701539540914 0.1217757236232629 0.1361872181154768 0.12026822974789875 0.13633385680421112 0.12053410771929016 C 0.1361872181154768 0.12026822974789875 0.1355894685493536 0.11854505834135148 0.13564672918434265 0.11869806213965446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13564672918434265 0.11869806213965446 C 0.13566806828899047 0.11853232928856203 0.13598655405089055 0.11639225866914629 0.13590279844011663 0.11670926792654518 C 0.13598655405089055 0.11639225866914629 0.13671421301975592 0.11474267464456141 0.13665179651362983 0.11489395105086785" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3074999322070955,0.10791493330436783) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10533786866573912 0.10038005641801928 C 0.10532409669544622 0.10067072807858037 0.1050980652491578 0.10279876066452964 0.10525523684398173 0.10212408638138577 C 0.1050980652491578 0.10279876066452964 0.10406028023751573 0.10458541724689552 0.1043948390967955 0.10442810211688247 C 0.10406028023751573 0.10458541724689552 0.10296638110671914 0.10249171554404668 0.10324788368830312 0.10306797716146406 C 0.10296638110671914 0.10249171554404668 0.10270582360729164 0.10097053241237818 0.10270582360729164 0.10097053241237818 C 0.10270582360729164 0.10097053241237818 0.1035293862698871 0.10364423877888143 0.10324788368830312 0.10306797716146406 C 0.1035293862698871 0.10364423877888143 0.10446852918897014 0.10497381289110118 0.1043948390967955 0.10442810211688247 C 0.10446852918897014 0.10497381289110118 0.10353547719638646 0.1069304444365268 0.10369002424135089 0.10634224180677633 C 0.10353547719638646 0.1069304444365268 0.10343047892461865 0.10822649724348683 0.10346755682700898 0.10795731789538533" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.31241092917350344,0.09034205385627028) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.1771567623446851 0.15908741129064596 C 0.17716673335647753 0.1593269141401348 0.1772169810510682 0.16253205796049738 0.1772764144861941 0.16196144548451205 C 0.1772169810510682 0.16253205796049738 0.17637415667625575 0.16626587062896633 0.17644356112317408 0.16593476100246984" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17644356112317408 0.16593476100246984 C 0.17625509926937508 0.1665869260453811 0.17378071188626631 0.1750189889489132 0.17418201887758605 0.17376074151740498 C 0.17378071188626631 0.1750189889489132 0.17141503208981634 0.1816398125691657 0.17162787722733708 0.18103373018056873" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17162787722733708 0.18103373018056873 C 0.17125206111546648 0.1823970774696751 0.1662354748132096 0.19976258444045017 0.16711808388488975 0.19739389764984497 C 0.1662354748132096 0.19976258444045017 0.16052977540736596 0.21046331116933006 0.16103656836717548 0.2094579716678312" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16103656836717548 0.2094579716678312 C 0.16128435095891414 0.20837002160906998 0.16434353463742904 0.19423598982347712 0.16400995946803956 0.1964025709626964 C 0.16434353463742904 0.19423598982347712 0.16512526297750008 0.18238036691674173 0.16503947039984926 0.18345899799719978" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16503947039984926 0.18345899799719978 C 0.16516937607038631 0.18272570088680534 0.16701663245450435 0.17306247568853533 0.16659833844629385 0.17465943267246642 C 0.16701663245450435 0.17306247568853533 0.17034738683604872 0.1634318543164901 0.17005899849837527 0.16429551419002675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17005899849837527 0.16429551419002675 C 0.1703793907722591 0.16409256650784504 0.17449518610550707 0.16142613342889775 0.17390370578498124 0.16186014200384616 C 0.17449518610550707 0.16142613342889775 0.1774278503913271 0.1588563503978793 0.1771567623446851 0.15908741129064596" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32786931052537616,0.08649293934779043) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17573496581886183 0.157143011943484 C 0.17577660022333738 0.15740523135665418 0.17623227041558076 0.16090998882676977 0.1762345786725683 0.160289644901526 C 0.17623227041558076 0.16090998882676977 0.17566332407354798 0.16494526355848282 0.17570726673501108 0.16458713904640923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17570726673501108 0.16458713904640923 C 0.17563530598952623 0.16515408040400947 0.17478368196198116 0.1730552291597648 0.17484373778919282 0.17139043533761208 C 0.17478368196198116 0.1730552291597648 0.1749985017267444 0.18566251737679432 0.1749865968084712 0.18456466491224183" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1749865968084712 0.18456466491224183 C 0.1747342147985128 0.18537150056572393 0.17170589523549937 0.19561954949918842 0.17195801268897054 0.19424669275402723 C 0.17170589523549937 0.19561954949918842 0.17196145192330434 0.20160496694585514 0.17196118736681712 0.20103894585417606" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17196118736681712 0.20103894585417606 C 0.17175257647705602 0.2003397681767149 0.16916449103384873 0.19136269908174017 0.16945785668968386 0.19264881372464202 C 0.16916449103384873 0.19136269908174017 0.16835604473072158 0.18501863317391323 0.1684407994967956 0.18560557013935391" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1684407994967956 0.18560557013935391 C 0.1683480277797291 0.18449175979030352 0.16743149881742492 0.1704105756962652 0.16732753889199753 0.17223984595074926 C 0.16743149881742492 0.1704105756962652 0.16988505024441805 0.16293886718011139 0.16968831860192415 0.16365432708554506" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16968831860192415 0.16365432708554506 C 0.16989451118080542 0.16336981518984328 0.17266651681657744 0.1596975747419519 0.17216262954849929 0.16024018433712364 C 0.17266651681657744 0.1596975747419519 0.1760326605080587 0.15688491424401405 0.17573496581886183 0.157143011943484" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3191271812391471,0.08652943878711525) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.17406993465802825 0.15486384556077773 C 0.17390931540756507 0.15532331541273836 0.17182247008440227 0.16111458105690907 0.17214250365247014 0.16037748378430514 C 0.17182247008440227 0.16111458105690907 0.17007011752360895 0.16398664025266824 0.17022953184121367 0.1637090128320249" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17022953184121367 0.1637090128320249 C 0.17016840833157904 0.1645963671252253 0.16917202391094133 0.17651227660361563 0.169496049725598 0.1743572643504297 C 0.16917202391094133 0.17651227660361563 0.16607831976031154 0.19083681783024167 0.16634122206533358 0.18956915987025613" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16634122206533358 0.18956915987025613 C 0.1663024094730014 0.19044517738571742 0.16589724856703006 0.20265195428235575 0.16587547095734725 0.2000813700557915 C 0.16589724856703006 0.20265195428235575 0.16666314358354228 0.2221107373001301 0.16660255338152727 0.22041617058902713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16660255338152727 0.22041617058902713 C 0.1662819668968712 0.218692320615868 0.1621757871903868 0.19679019248997626 0.1627555155656543 0.19972997091111747 C 0.1621757871903868 0.19679019248997626 0.15938667098770615 0.18392290108735074 0.15964581287831756 0.18513882953533278" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15964581287831756 0.18513882953533278 C 0.1597448665620582 0.18404929757476263 0.16129480853254907 0.17014442731807972 0.1608344570832053 0.17206444600849077 C 0.16129480853254907 0.17014442731807972 0.1655313280360459 0.16126811852055922 0.16517003027044277 0.16209860525040012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16517003027044277 0.16209860525040012 C 0.16560473602534345 0.16180942635498569 0.1711281580282164 0.15802556186462516 0.17038649932925096 0.15862845850542703 C 0.1711281580282164 0.15802556186462516 0.17437688760209302 0.1545501278153903 0.17406993465802825 0.15486384556077773" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31241092917350344,0.09034205385627028) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.12860496606697341 0.12005010485135269 C 0.12844798606567007 0.12050498819699408 0.12656520875002197 0.12650472654647144 0.12672120605133333 0.12550870499904937 C 0.12656520875002197 0.12650472654647144 0.126733981151229 0.13254350162219825 0.12673299845123703 0.13200236342041757" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12673299845123703 0.13200236342041757 C 0.12688436718759663 0.13145592301043874 0.12915912376004615 0.12429183281959791 0.1285494232875523 0.1254450785006717 C 0.12915912376004615 0.12429183281959791 0.13450773585729744 0.11755660997643735 0.1340494041211632 0.11816341524753231" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1340494041211632 0.11816341524753231 C 0.1340242076014897 0.11861490534973952 0.13378844869985468 0.12472414927362506 0.133747045885081 0.12358129647401891 C 0.13378844869985468 0.12472414927362506 0.13461283723289452 0.13256901154020495 0.13454623789844733 0.13187764884280603" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13454623789844733 0.13187764884280603 C 0.13439674415148628 0.1315050227523934 0.1325271129012103 0.1267470461024011 0.13275231293491457 0.12740613575785426 C 0.1325271129012103 0.1267470461024011 0.13176813120725278 0.12368210941232761 0.131843837493996 0.12396857297736813" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.131843837493996 0.12396857297736813 C 0.1316467371980325 0.12433335675213991 0.1290941295542944 0.12940204961218274 0.12947863394243375 0.12834597827462946 C 0.1290941295542944 0.12940204961218274 0.12704238074414767 0.13733271659078897 0.12722978483632352 0.13664142902800747" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12722978483632352 0.13664142902800747 C 0.12703633600977965 0.136135094364483 0.12472426265342865 0.12963834209265176 0.12490839891779687 0.13056541306571412 C 0.12472426265342865 0.12963834209265176 0.12502946222608047 0.1250958410417214 0.12502014966390482 0.1255165773512593" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12502014966390482 0.1255165773512593 C 0.12488318366979129 0.12585709891012586 0.12310721099350526 0.13057884349889773 0.12337655773454244 0.12960283605765802 C 0.12310721099350526 0.13057884349889773 0.12165560802453504 0.13786415252850887 0.12178798877145869 0.13722866664613573" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12178798877145869 0.13722866664613573 C 0.12165047856126295 0.13667930639031242 0.11997572818535078 0.12982116574264438 0.12013786624910984 0.1306363435762561 C 0.11997572818535078 0.12982116574264438 0.11981770415278664 0.12718071506500667 0.11984233200634996 0.1274465326427951" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11984233200634996 0.1274465326427951 C 0.11966812153022259 0.12757309190236693 0.11746269978408282 0.1289253000330576 0.1177518062928216 0.12896524375765708 C 0.11746269978408282 0.1289253000330576 0.11625815786887318 0.1268007049634302 0.1163730539014846 0.1269672079476015" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1163730539014846 0.1269672079476015 C 0.11651851234102442 0.12699679733340855 0.11865919625401766 0.12698126383939773 0.1181185551759625 0.12732228057728606 C 0.11865919625401766 0.12698126383939773 0.12325592947666204 0.12250440096924628 0.1228607468381467 0.12287500709294165" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1228607468381467 0.12287500709294165 C 0.12274625335010858 0.12319652048326678 0.12138766987487683 0.12738921615931537 0.12148682498168938 0.12673316777684326 C 0.12138766987487683 0.12738921615931537 0.12168622393762166 0.1310821226747537 0.1216708855563961 0.13074758768260675" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1216708855563961 0.13074758768260675 C 0.1218068525304155 0.13033098103233307 0.1238803292871769 0.12485685097671817 0.12330248924462879 0.12574830787932267 C 0.1238803292871769 0.12485685097671817 0.12904683913550213 0.11957525459902185 0.12860496606697341 0.12005010485135269" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32801649240252173,0.07145654151837846) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.1801930721507112 0.14678120074001888 C 0.1798496334188897 0.14749719928388752 0.17542796819878517 0.15693050887202112 0.1760718073688534 0.15537318326644256 C 0.17542796819878517 0.15693050887202112 0.1721666016716459 0.16631043506867157 0.17246700210989263 0.16546910800696166" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17246700210989263 0.16546910800696166 C 0.1722190280135635 0.16654894813896717 0.16907366218850697 0.18068272344793673 0.16949131295394312 0.1784271895910278 C 0.16907366218850697 0.18068272344793673 0.1672855162555518 0.19371120801477218 0.16745519292465882 0.19253551428986876" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16745519292465882 0.19253551428986876 C 0.16750435853967138 0.19392537758521872 0.16830561480442738 0.21147873244795257 0.16804518030480964 0.20921387383406828 C 0.16830561480442738 0.21147873244795257 0.17079167580467697 0.22058881297501443 0.1705804069200718 0.2197138176564801" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1705804069200718 0.2197138176564801 C 0.16991981346406385 0.2181347610538641 0.16189397534806038 0.19751844903483307 0.1626532854479764 0.20076513842508806 C 0.16189397534806038 0.19751844903483307 0.16136996907717177 0.17908591218578113 0.1614686857210798 0.1807535449734201" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1614686857210798 0.1807535449734201 C 0.16176778165805217 0.17982016589144567 0.1655863728513538 0.16764087553492432 0.16505783696474824 0.16955299598972673 C 0.1655863728513538 0.16764087553492432 0.16804055630997974 0.15682935814296337 0.16781111636034654 0.1578080995157913" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16781111636034654 0.1578080995157913 C 0.168299378552425 0.15713713246091562 0.17470209231448502 0.14883758662596863 0.17367026266528796 0.149756494857283 C 0.17470209231448502 0.14883758662596863 0.18073663960782982 0.1465332595635802 0.1801930721507112 0.14678120074001888" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33054867708776625,0.07173069344093944) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.1719687040507564 0.16237006733059525 C 0.1718161425755952 0.16262862681366155 0.16969932325906964 0.16624157452967808 0.17013796634882197 0.16547278112739094 C 0.16969932325906964 0.16624157452967808 0.16641890535913725 0.17210582207726166 0.16670498697372838 0.17159558815804082" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16670498697372838 0.17159558815804082 C 0.16633927783967278 0.17264953993567203 0.16156534291330754 0.18694753780932072 0.16231647736506127 0.1842430094896152 C 0.16156534291330754 0.18694753780932072 0.15730594823498548 0.20570050453658126 0.15769137355268362 0.20404992799450694" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15769137355268362 0.20404992799450694 C 0.15782038865358614 0.20548293831246567 0.15977581085660653 0.22424796641937952 0.15923955476351395 0.22124605181001178 C 0.15977581085660653 0.22424796641937952 0.1645336876619844 0.2416418075983288 0.16412644666979437 0.2400729033069198" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16412644666979437 0.2400729033069198 C 0.1634098028575302 0.2384157142590063 0.15469073192452698 0.2165889700654309 0.1555267209226245 0.2201866347319577 C 0.15469073192452698 0.2165889700654309 0.1539752335067908 0.19496045168998483 0.15409457869262416 0.19690092730859812" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15409457869262416 0.19690092730859812 C 0.15441981771716007 0.1953877141492763 0.15887454765668846 0.17618341409465083 0.15799744698705498 0.17874236939673635 C 0.15887454765668846 0.17618341409465083 0.16517164837332352 0.16514772154080812 0.16461978672822594 0.16619346368357182" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16461978672822594 0.16619346368357182 C 0.16498453725675444 0.1658234092077211 0.1696092028474453 0.16143419361061515 0.16899679307056775 0.1617528099733632 C 0.1696092028474453 0.16143419361061515 0.17221636329910545 0.16242150544369793 0.1719687040507564 0.16237006733059525" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3415524871779959,0.08767004086829941) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17368178694248348 0.15511194585830043 C 0.1738712939852237 0.15518617872919907 0.17642824340202443 0.15639893007053937 0.1759558714553661 0.15600274030908423 C 0.17642824340202443 0.15639893007053937 0.17963311520630154 0.16018817988631873 0.17935025030238344 0.15986622299576222" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17935025030238344 0.15986622299576222 C 0.17961743203677102 0.1607411109101525 0.18273873732428414 0.17224489297011392 0.1825564311150345 0.17036487796844565 C 0.18273873732428414 0.17224489297011392 0.18145304928824113 0.18343153010305935 0.18153792481337908 0.18242640301578136" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18153792481337908 0.18242640301578136 C 0.18124881972688633 0.18307466054926652 0.17773865800561506 0.19164727296529452 0.1780686637754663 0.19020549341760332 C 0.17773865800561506 0.19164727296529452 0.17753695489180576 0.20052127960228183 0.17757785557516426 0.1997277575880758" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17757785557516426 0.1997277575880758 C 0.17726814733750978 0.19891650296416485 0.1734786314353599 0.18880139861003237 0.17386135672331046 0.18999270210114447 C 0.1734786314353599 0.18880139861003237 0.17291213506946143 0.18505206682752928 0.1729851521197575 0.18543211569473045" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1729851521197575 0.18543211569473045 C 0.17306701434558888 0.18436551382070676 0.17400277393249802 0.17039759250726955 0.17396749882973384 0.17263289320644612 C 0.17400277393249802 0.17039759250726955 0.17336186622986052 0.1574398084794587 0.1734084533529277 0.1586085073046116" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1734084533529277 0.1586085073046116 C 0.1733765402894007 0.1584430504675639 0.17304827438973305 0.15633164513951325 0.1730254965906034 0.15662302526003918 C 0.17304827438973305 0.15633164513951325 0.17373647780514015 0.1549860225748222 0.17368178694248348 0.15511194585830043" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35125352994454007,0.08768232950410915) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.16864136108860386 0.15663025954268958 C 0.16891675393917427 0.15679372054626595 0.17249605947008878 0.15910659003050673 0.17194607529544875 0.1585917915856058 C 0.17249605947008878 0.15910659003050673 0.17551576250835396 0.16315917832282525 0.17524117118428434 0.1628078408815007" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17524117118428434 0.1628078408815007 C 0.1756599904565042 0.16340436658151972 0.18063458875457097 0.1715233945199194 0.18026700245092275 0.16996614928172912 C 0.18063458875457097 0.1715233945199194 0.1796009738594912 0.1824555032779555 0.17965220682806285 0.18149478373978425" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17965220682806285 0.18149478373978425 C 0.1796691305845961 0.18203621642020454 0.17972125388470667 0.18922155584815517 0.17985529190646207 0.18799197590482764 C 0.17972125388470667 0.18922155584815517 0.17789278878870926 0.196937890322622 0.17804375056699795 0.19624974305971474" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17804375056699795 0.19624974305971474 C 0.17782830513741796 0.19568087153350827 0.17500989950531598 0.18815909533251196 0.175458405412038 0.18942328474523715 C 0.17500989950531598 0.18815909533251196 0.17242861920919178 0.18038415222049398 0.1726616796863338 0.18107947010701267" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1726616796863338 0.18107947010701267 C 0.17273488034208806 0.18031667815460725 0.17330402281699198 0.17051300774687772 0.17354008755538472 0.17192596667814775 C 0.17330402281699198 0.17051300774687772 0.16951963743147375 0.16347379595290792 0.16982890282562074 0.16412396293177253" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16982890282562074 0.16412396293177253 C 0.16970656244853913 0.16370513215796398 0.16826185648922334 0.1584735183636464 0.16836081830064142 0.15909799364606997 C 0.16826185648922334 0.1584735183636464 0.1686647396542674 0.15642461503407454 0.16864136108860386 0.15663025954268958" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36227602679606796,0.09034205385627028) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.16293468164794567 0.14135419197573382 C 0.16349526879893628 0.14203967821921987 0.1706740503038883 0.1509348920959909 0.16966172745983285 0.14958002689756653 C 0.1706740503038883 0.1509348920959909 0.17553429146967592 0.15828195331176445 0.17508255577661105 0.15761257435682616" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17508255577661105 0.15761257435682616 C 0.1752782819163795 0.1589675217928523 0.17734776807842456 0.1767653950372284 0.17743126945383234 0.17387194358913993 C 0.17734776807842456 0.1767653950372284 0.17380131175654168 0.19387249574595006 0.17408053927171788 0.19233399173388774" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17408053927171788 0.19233399173388774 C 0.17399037922076108 0.1936682813334558 0.17265800559140737 0.21107759824902503 0.1729986186602364 0.20834546692870448 C 0.17265800559140737 0.21107759824902503 0.16974272942789764 0.22651740929848663 0.16999318244576986 0.22511956757773416" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16999318244576986 0.22511956757773416 C 0.1699833491903572 0.22369727768787254 0.16963224530291326 0.20541944758353872 0.1698751833808182 0.2080520888993947 C 0.16963224530291326 0.20541944758353872 0.16684482068841847 0.19231752036146815 0.16707792551091075 0.1935278717874625" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16707792551091075 0.1935278717874625 C 0.1673583449506434 0.19221799048399574 0.17062976097410798 0.17541387358075441 0.17044295878770244 0.1778092961458615 C 0.17062976097410798 0.17541387358075441 0.16922593449445011 0.1636972597445371 0.1693195517477772 0.16478280100617745" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1693195517477772 0.16478280100617745 C 0.16901952635242656 0.16391375414815562 0.16518717449524997 0.15240185462404526 0.16571924700356927 0.15435423870991558 C 0.16518717449524997 0.15240185462404526 0.16270263453497702 0.14027085474788534 0.16293468164794567 0.14135419197573382" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.36227602679606796,0.09034205385627028) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.181480156496471 0.1268095361893168 C 0.18162126906784778 0.12683946252996864 0.1834324189813722 0.12729957649987458 0.18317350735299237 0.12716865227713875 C 0.1834324189813722 0.12729957649987458 0.18470489509403185 0.12848162474423078 0.1845870960370288 0.12838062686214677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1845870960370288 0.12838062686214677 C 0.18463564503624252 0.1285854618031812 0.1852171768169897 0.13126293953472531 0.18516968402759337 0.13083864615456 C 0.1852171768169897 0.13126293953472531 0.18515595329996737 0.13369160586326143 0.18515700950978475 0.13347214742413055" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18515700950978475 0.13347214742413055 C 0.18518598124601643 0.1335593021330238 0.18553057250348554 0.13470264946997912 0.1855046703445647 0.13451800393084964 C 0.18553057250348554 0.13470264946997912 0.1854304774394325 0.13586708908626832 0.18546783541683504 0.13568789389368419 C 0.1854304774394325 0.13586708908626832 0.18496576654188415 0.13679407588075773 0.1850563746157342 0.1366683462418594 C 0.18496576654188415 0.13679407588075773 0.1842609587205525 0.13723522449046946 0.18438053853063424 0.13719664956046437 C 0.1842609587205525 0.13723522449046946 0.18350490666198258 0.1370723295016892 0.1836214168947535 0.13713124540192034 C 0.18350490666198258 0.1370723295016892 0.1829291656409357 0.13643619320400507 0.18298241573738322 0.13648965875769087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18298241573738322 0.13648965875769087 C 0.18284062253614558 0.13646842111838087 0.1810119181303907 0.13611785282311262 0.18128089732253164 0.13623480708597085 C 0.1810119181303907 0.13611785282311262 0.1796274794407887 0.13499049097984378 0.179754665431692 0.13508620760339202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.179754665431692 0.13508620760339202 C 0.17970172921267755 0.1348952047046279 0.1790618704503612 0.13238384939793488 0.17911943080351866 0.1327941728182226 C 0.1790618704503612 0.13238384939793488 0.17905931705965958 0.12994300603841588 0.1790639411938026 0.13016232655993948" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3641748586852916,0.09358953971441153) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10731743919334794 0.1059275589546976 C 0.10712422016822558 0.105767028816356 0.1056783933262467 0.10472020546285928 0.10615812504261381 0.10496437812464798 C 0.1056783933262467 0.10472020546285928 0.10416377803006954 0.10392123123095155 0.10443904889514537 0.10446252298396536 C 0.10416377803006954 0.10392123123095155 0.10437515242896639 0.10084968350298185 0.10450649985215883 0.10171662760656518 C 0.10437515242896639 0.10084968350298185 0.1036509643559907 0.09926085836246534 0.1036509643559907 0.09926085836246534 C 0.1036509643559907 0.09926085836246534 0.10463784727535128 0.10258357171014851 0.10450649985215883 0.10171662760656518 C 0.10463784727535128 0.10258357171014851 0.10408136914356875 0.10482239919884961 0.10443904889514537 0.10446252298396536 C 0.10408136914356875 0.10482239919884961 0.10182588390080263 0.10356667781334883 0.10236042134269911 0.10387588489587068 C 0.10182588390080263 0.10356667781334883 0.10104372472727777 0.10239584642099481 0.10123182424376653 0.10260728048883422" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3660736905745152,0.09683702557255278) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13938203154071185 0.1139837260127789 C 0.13948922784673173 0.11409398699759947 0.14084556209038804 0.11557060295139274 0.14066838721295036 0.11530685783062576 C 0.14084556209038804 0.11557060295139274 0.14157810864138198 0.11730215159792906 0.14150813006996416 0.11714866746198266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14150813006996416 0.11714866746198266 C 0.14149508665047944 0.11734383796343544 0.14128138708335422 0.1198626166958411 0.14135160903614763 0.11949071347941605 C 0.14128138708335422 0.1198626166958411 0.14060828810313453 0.12178823877405562 0.14066546663644322 0.12161150605908334" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14066546663644322 0.12161150605908334 C 0.14066668564686075 0.1216996203329308 0.14065379624334434 0.12283391611916566 0.14068009476145357 0.12266887734525278 C 0.14065379624334434 0.12283391611916566 0.14027348612268123 0.12371401871471617 0.14034988441913257 0.12359197134603803 C 0.14027348612268123 0.12371401871471617 0.13965728799108137 0.12417979923895829 0.13976331520403756 0.12413344576939055 C 0.13965728799108137 0.12417979923895829 0.13897031164028462 0.12410645217657133 0.13907755786365833 0.12414821298085103 C 0.13897031164028462 0.12410645217657133 0.1383966318287061 0.12351363081368895 0.13847636052355305 0.12363231611803409 C 0.1383966318287061 0.12351363081368895 0.13809118460898995 0.12264829542959889 0.1381208135254948 0.12272398932870929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1381208135254948 0.12272398932870929 C 0.1380108333908943 0.12262033581680082 0.13661209623141146 0.1212215524505482 0.13680105191028874 0.12148014718580766 C 0.13661209623141146 0.1212215524505482 0.13577436983469074 0.11946591128224492 0.1358533453789675 0.1196208525055959" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1358533453789675 0.1196208525055959 C 0.13585926761466474 0.11943418570215611 0.1359828533586881 0.11701409803340093 0.13592441220733426 0.11738085086431846 C 0.1359828533586881 0.11701409803340093 0.1366071581108701 0.11503973250710782 0.1365546391952135 0.11521981853458556" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36678609293101844,0.10062001328265978) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10631677769843774 0.10741167596277373 C 0.10620067915083974 0.1071640717830798 0.10529230995586095 0.10543608139602278 0.10562018641284975 0.10592605088461013 C 0.10529230995586095 0.10543608139602278 0.10426433733764195 0.1038664564723821 0.10434951895650496 0.10447185903124966 C 0.10426433733764195 0.1038664564723821 0.1052246503149339 0.1015128125219442 0.10510909669967167 0.10229363553140484 C 0.1052246503149339 0.1015128125219442 0.10504284064807835 0.0997869209744858 0.10504284064807835 0.0997869209744858 C 0.10504284064807835 0.0997869209744858 0.10499354308440943 0.10307445854086549 0.10510909669967167 0.10229363553140484 C 0.10499354308440943 0.10307445854086549 0.10396598738695349 0.1045445580107675 0.10434951895650496 0.10447185903124966 C 0.10396598738695349 0.1045445580107675 0.1024521043804268 0.1021538666290646 0.10280790728236285 0.10272982940851184 C 0.1024521043804268 0.1021538666290646 0.10211583392197635 0.10073045784557523 0.10221470154488871 0.10101608235456618" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.36749849528752154,0.10440300099276685) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928487422229546 0.11489395105086785 C 0.13934729072842156 0.11504522745717428 0.1401176279065825 0.11702627718394407 0.14003387229580858 0.11670926792654518 C 0.1401176279065825 0.11702627718394407 0.1403112806562304 0.1188637949907469 0.1402899415515826 0.11869806213965446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1402899415515826 0.11869806213965446 C 0.14023268091659355 0.11885106593795744 0.13945617524297982 0.12079998569068157 0.13960281393171411 0.12053410771929016 C 0.13945617524297982 0.12079998569068157 0.1384408992330256 0.12200147196943976 0.13853027728677086 0.12188859779635133" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13853027728677086 0.12188859779635133 C 0.1385103050233339 0.12196169752127957 0.13822955973630044 0.12288653525303074 0.13829061012552712 0.12276579449549016 C 0.13822955973630044 0.12288653525303074 0.13770541735275027 0.12339454488353205 0.1377976726160505 0.12333748688683831 C 0.13770541735275027 0.12339454488353205 0.1370848065518494 0.12342857704752619 0.13718354696592436 0.1234504904558151 C 0.1370848065518494 0.12342857704752619 0.13653401949651306 0.12297951285415416 0.13661278764715104 0.12307452598737131 C 0.13653401949651306 0.12297951285415416 0.13620063913342023 0.12216767869137979 0.1362383291582685 0.12231033285720928 C 0.13620063913342023 0.12216767869137979 0.13615402219819714 0.12128370459243468 0.13616050734897187 0.12136267599741733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13616050734897187 0.12136267599741733 C 0.13609421483828954 0.12121525393764211 0.1352702704528907 0.11927416719957251 0.13536499722078407 0.11959361128011461 C 0.1352702704528907 0.11927416719957251 0.13499535187704034 0.1173573250101452 0.1350237861342514 0.11752934703091208" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1350237861342514 0.11752934703091208 C 0.13507313149743222 0.11737930114667841 0.13575159802403605 0.11546048362557343 0.13561593049242118 0.11572879642010804 C 0.13575159802403605 0.11546048362557343 0.13673811868206392 0.11419132658619573 0.13665179651362988 0.11430959349649668" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3671870237624759,0.10791493330436783) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10520694992430243 0.10795731789538533 C 0.10516987202191212 0.10768813854728383 0.10482993546499615 0.10575403917702586 0.10498448250996056 0.10634224180677633 C 0.10482993546499615 0.10575403917702586 0.10435335774669056 0.10388239134266376 0.10427966765451595 0.10442810211688247 C 0.10435335774669056 0.10388239134266376 0.10570812564459227 0.10249171554404668 0.10542662306300829 0.10306797716146406 C 0.10570812564459227 0.10249171554404668 0.10596868314401979 0.10097053241237818 0.10596868314401979 0.10097053241237818 C 0.10596868314401979 0.10097053241237818 0.10514512048142431 0.10364423877888143 0.10542662306300829 0.10306797716146406 C 0.10514512048142431 0.10364423877888143 0.10394510879523618 0.10427078698686942 0.10427966765451595 0.10442810211688247 C 0.10394510879523618 0.10427078698686942 0.10326209831250575 0.1014494120982419 0.10341926990732969 0.10212408638138577 C 0.10326209831250575 0.1014494120982419 0.1033228661152794 0.1000893847574582 0.1033366380855723 0.10038005641801928" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.36227602679606796,0.09034205385627028) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.1645747108565298 0.15908741129064596 C 0.1648457989031718 0.15931847218341263 0.16841924773675945 0.16229415057879457 0.16782776741623365 0.16186014200384616 C 0.16841924773675945 0.16229415057879457 0.1719928669767234 0.16449846187220846 0.17167247470283956 0.16429551419002675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17167247470283956 0.16429551419002675 C 0.171960863040513 0.1651591740635634 0.17555142876313154 0.1762563896563975 0.17513313475492104 0.17465943267246642 C 0.17555142876313154 0.1762563896563975 0.17682190847190268 0.18419229510759422 0.17669200280136563 0.18345899799719978" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17669200280136563 0.18345899799719978 C 0.17677779537901644 0.18453762907765783 0.17805508890256477 0.19856915210191567 0.1777215137331753 0.1964025709626964 C 0.17805508890256477 0.19856915210191567 0.18094268742577807 0.21054592172659242 0.18069490483403938 0.2094579716678312" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18069490483403938 0.2094579716678312 C 0.18018811187422987 0.20845263216633234 0.173730780244645 0.19502521085923977 0.17461338931632514 0.19739389764984497 C 0.173730780244645 0.19502521085923977 0.1697277798620072 0.17967038289146237 0.1701035959738778 0.18103373018056873" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1701035959738778 0.18103373018056873 C 0.16989075083635705 0.18042764779197176 0.167148147332309 0.17250249408589674 0.16754945432362878 0.17376074151740498 C 0.167148147332309 0.17250249408589674 0.16509945022424174 0.16528259595955858 0.16528791207804075 0.16593476100246984" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16528791207804075 0.16593476100246984 C 0.16521850763112242 0.16560365137597335 0.16439562527989482 0.16139083300852672 0.16445505871502072 0.16196144548451205 C 0.16439562527989482 0.16139083300852672 0.16458468186832223 0.15884790844115712 0.1645747108565298 0.15908741129064596" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3468176454441953,0.08649293934779043) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17091648317429867 0.157143011943484 C 0.17121417786349555 0.15740110964295398 0.1749927067127393 0.1607827939322954 0.1744888194446612 0.16024018433712364 C 0.1749927067127393 0.1607827939322954 0.1771693229701176 0.16393883898124684 0.17696313039123632 0.16365432708554506" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17696313039123632 0.16365432708554506 C 0.17715986203373021 0.16436978699097873 0.17942787002659036 0.17406911620523333 0.17932391010116297 0.17223984595074926 C 0.17942787002659036 0.17406911620523333 0.1781178777792984 0.1867193804884043 0.17821064949636492 0.18560557013935391" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17821064949636492 0.18560557013935391 C 0.1781258947302909 0.1861925071047946 0.17690022664764155 0.19393492836754386 0.17719359230347667 0.19264881372464202 C 0.17690022664764155 0.19393492836754386 0.17448165073658228 0.20173812353163723 0.17469026162634338 0.20103894585417606" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17469026162634338 0.20103894585417606 C 0.1746905261828306 0.20047292476249698 0.17444131885071887 0.19287383600886604 0.17469343630419004 0.19424669275402723 C 0.17444131885071887 0.19287383600886604 0.17141247017473088 0.18375782925875972 0.17166485218468927 0.18456466491224183" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17166485218468927 0.18456466491224183 C 0.17167675710296249 0.18346681244768934 0.17174765537675604 0.16972564151545938 0.1718077112039677 0.17139043533761208 C 0.17174765537675604 0.16972564151545938 0.1708722215126645 0.164020197688809 0.17094418225814936 0.16458713904640923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17094418225814936 0.16458713904640923 C 0.17090023959668627 0.16422901453433564 0.17041456206360459 0.15966930097628224 0.17041687032059213 0.160289644901526 C 0.17041456206360459 0.15966930097628224 0.17095811757877422 0.15688079253031384 0.17091648317429867 0.157143011943484" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35555977473042444,0.08652943878711525) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.16440686710389346 0.15486384556077773 C 0.16471382004795823 0.15517756330616517 0.16883196113163623 0.1592313551462289 0.16809030243267079 0.15862845850542703 C 0.16883196113163623 0.1592313551462289 0.17374147724637964 0.16238778414581456 0.17330677149147897 0.16209860525040012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17330677149147897 0.16209860525040012 C 0.17366806925708209 0.16292909198024103 0.17810269612806023 0.17398446469890183 0.17764234467871645 0.17206444600849077 C 0.17810269612806023 0.17398446469890183 0.17893004256734482 0.18622836149590294 0.17883098888360419 0.18513882953533278" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17883098888360419 0.18513882953533278 C 0.17857184699299278 0.18635475798331483 0.17514155782099997 0.20266974933225868 0.17572128619626745 0.19972997091111747 C 0.17514155782099997 0.20266974933225868 0.17155366189573842 0.22214002056218626 0.1718742483803945 0.22041617058902713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1718742483803945 0.22041617058902713 C 0.1719348385824095 0.21872160387792416 0.1726231084142573 0.19751078582922724 0.1726013308045745 0.2000813700557915 C 0.1726231084142573 0.19751078582922724 0.172096767104256 0.18869314235479484 0.1721355796965882 0.18956915987025613" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1721355796965882 0.18956915987025613 C 0.17187267739156614 0.1883015019102706 0.16865672622166708 0.17220225209724377 0.16898075203632376 0.1743572643504297 C 0.16865672622166708 0.17220225209724377 0.16818614641107343 0.16282165853882452 0.16824726992070807 0.1637090128320249" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16824726992070807 0.1637090128320249 C 0.16808785560310335 0.16343138541138158 0.16601426454138368 0.1596403865117012 0.16633429810945158 0.16037748378430514 C 0.16601426454138368 0.1596403865117012 0.16424624785343028 0.1544043757088171 0.16440686710389346 0.15486384556077773" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36227602679606796,0.09034205385627028) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.10962982064783398 0.12005010485135269 C 0.11007169371636269 0.12052495510368352 0.11551013751272658 0.12663976478192718 0.11493229747017847 0.12574830787932267 C 0.11551013751272658 0.12663976478192718 0.1166998681324308 0.13116419433288043 0.11656390115841139 0.13074758768260675" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11656390115841139 0.13074758768260675 C 0.11657923953963693 0.1304130526904598 0.11664880662630533 0.12607711939437116 0.1167479617331179 0.12673316777684326 C 0.11664880662630533 0.12607711939437116 0.11525954638862257 0.12255349370261652 0.11537403987666067 0.12287500709294165" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11537403987666067 0.12287500709294165 C 0.11576922251517602 0.12324561321663702 0.12065687261690003 0.1276632973151744 0.12011623153884486 0.12732228057728606 C 0.12065687261690003 0.1276632973151744 0.12200719125286244 0.12693761856179445 0.12186173281332263 0.1269672079476015" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12186173281332263 0.1269672079476015 C 0.12174683678071123 0.12713371093177278 0.120193873913247 0.12900518748225656 0.12048298042198577 0.12896524375765708 C 0.120193873913247 0.12900518748225656 0.11821824423233004 0.12731997338322326 0.11839245470845741 0.1274465326427951" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11839245470845741 0.1274465326427951 C 0.11836782685489408 0.12771235022058353 0.11793478240193847 0.1314515214098678 0.11809692046569752 0.1306363435762561 C 0.11793478240193847 0.1314515214098678 0.11630928773315305 0.13777802690195903 0.11644679794334878 0.13722866664613573" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11644679794334878 0.13722866664613573 C 0.11631441719642512 0.1365931807637626 0.1145888822392277 0.1286268286164183 0.11485822898026489 0.12960283605765802 C 0.1145888822392277 0.1286268286164183 0.1130776710567889 0.12517605579239272 0.11321463705090244 0.1255165773512593" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11321463705090244 0.1255165773512593 C 0.1132239496130781 0.1259373136607972 0.11314225153264229 0.13149248403877647 0.1133263877970105 0.13056541306571412 C 0.11314225153264229 0.13149248403877647 0.11081155305193996 0.13714776369153192 0.11100500187848385 0.13664142902800747" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11100500187848385 0.13664142902800747 C 0.110817597786308 0.13595014146522597 0.10837164838423423 0.12728990693707617 0.10875615277237362 0.12834597827462946 C 0.10837164838423423 0.12728990693707617 0.10619384892484765 0.12360378920259635 0.10639094922081119 0.12396857297736813" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10639094922081119 0.12396857297736813 C 0.106315242934068 0.12425503654240865 0.10525727374618868 0.12806522541330742 0.10548247377989292 0.12740613575785426 C 0.10525727374618868 0.12806522541330742 0.1035390550693992 0.13225027493321867 0.10368854881636025 0.13187764884280603" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10368854881636025 0.13187764884280603 C 0.10375514815080743 0.13118628614540712 0.10452914364450003 0.12243844367441277 0.10448774082972637 0.12358129647401891 C 0.10452914364450003 0.12243844367441277 0.10416018607397065 0.1177119251453251 0.10418538259364417 0.11816341524753231" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10418538259364417 0.11816341524753231 C 0.10464371432977843 0.11877022051862726 0.11029506389974904 0.12659832418174546 0.1096853634272552 0.1254450785006717 C 0.11029506389974904 0.12659832418174546 0.1116531569999299 0.1325488038303964 0.11150178826357031 0.13200236342041757" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11150178826357031 0.13200236342041757 C 0.11150277096356229 0.1314612252186369 0.11135758336216274 0.12451268345162729 0.1115135806634741 0.12550870499904937 C 0.11135758336216274 0.12451268345162729 0.10947284064653064 0.1195952215057113 0.10962982064783398 0.12005010485135269" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.17197072520625506,-0.15955296299577326)"><path d="M 0.17211812604264365 0.15489930315137812 C 0.17224188717505326 0.15494651472454754 0.17387751095570636 0.1557779173781635 0.17360325963155895 0.1554658420294111 C 0.17387751095570636 0.1557779173781635 0.17555963212415024 0.1589090711119896 0.17540914193241244 0.15864420733640663" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17540914193241244 0.15864420733640663 C 0.17553107682368718 0.15981774536403207 0.1768420879451161 0.17476549742205025 0.17687236062770936 0.17272666366791195 C 0.1768420879451161 0.17476549742205025 0.17489366216742525 0.18397550811257918 0.17504586974129324 0.1831102123860663" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17504586974129324 0.1831102123860663 C 0.17494110248966133 0.1839548976848651 0.1733531863242083 0.1951645572540279 0.1737886627217103 0.19324643597165164 C 0.1733531863242083 0.1951645572540279 0.1694894438253988 0.20720110375815892 0.1698201529712689 0.20612766777458144" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1698201529712689 0.20612766777458144 C 0.16980609343724026 0.20511428207507848 0.16950722673070912 0.19204891809816968 0.1696514385629254 0.19396703938054594 C 0.16950722673070912 0.19204891809816968 0.16795945868648585 0.18220547680319302 0.1680896109846735 0.1831102123860663" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1680896109846735 0.1831102123860663 C 0.16794437655668837 0.18208424747960195 0.16638512861001492 0.16873732983311515 0.16634679784885165 0.17079863350849386 C 0.16638512861001492 0.16873732983311515 0.16873314530778116 0.15733922951260754 0.16854958011863275 0.15837456828152188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16854958011863275 0.15837456828152188 C 0.16870815375300238 0.15811636450599909 0.17074984255806913 0.15498651754773618 0.17045246373106823 0.15527612297524815 C 0.17074984255806913 0.15498651754773618 0.17225693123527494 0.15486790149938895 0.17211812604264365 0.15489930315137812" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34667046356704984,0.07145654151837846) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.17854976420268728 0.14678120074001888 C 0.1790933316598059 0.14702914191645755 0.18610440333730754 0.1506754030885974 0.1850725736881105 0.149756494857283 C 0.18610440333730754 0.1506754030885974 0.1914199821851303 0.15847906657066696 0.19093171999305183 0.15780809951579128" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19093171999305183 0.15780809951579128 C 0.19116115994268504 0.15878684088861922 0.19421353527525573 0.17146511644452914 0.19368499938865016 0.16955299598972673 C 0.19421353527525573 0.17146511644452914 0.19757324656929093 0.18168692405539455 0.19727415063231857 0.1807535449734201" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19727415063231857 0.1807535449734201 C 0.19717543398841053 0.1824211777610591 0.19533024080550618 0.20401182781534305 0.19608955090542216 0.20076513842508806 C 0.19533024080550618 0.20401182781534305 0.1875018359773188 0.2212928742590961 0.18816242943332673 0.2197138176564801" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18816242943332673 0.2197138176564801 C 0.1883736983179319 0.21883882233794577 0.1909580905482066 0.206949015220184 0.19069765604858885 0.20921387383406828 C 0.1909580905482066 0.206949015220184 0.19133680904375217 0.1911456509945188 0.1912876434287396 0.19253551428986876" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1912876434287396 0.19253551428986876 C 0.19111796675963258 0.19135982056496534 0.1888338726340192 0.17617165573411886 0.18925152339945536 0.1784271895910278 C 0.1888338726340192 0.17617165573411886 0.18602786014717668 0.16438926787495614 0.1862758342435058 0.16546910800696166" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1862758342435058 0.16546910800696166 C 0.18597543380525908 0.16462778094525174 0.18202718981447677 0.15381585766086397 0.182671028984545 0.15537318326644253 C 0.18202718981447677 0.15381585766086397 0.17820632547086582 0.14606520219615024 0.17854976420268728 0.14678120074001888" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34413827888180526,0.07173069344093944) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17153908489803538 0.16237006733059525 C 0.17178674414638445 0.16231862921749257 0.17512340565510165 0.16207142633611124 0.1745109958782241 0.1617528099733632 C 0.17512340565510165 0.16207142633611124 0.17925275274909444 0.16656351815942255 0.17888800222056594 0.16619346368357182" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17888800222056594 0.16619346368357182 C 0.17943986386566352 0.16723920582633553 0.18638744263137044 0.18130132469882188 0.18551034196173696 0.17874236939673635 C 0.18638744263137044 0.18130132469882188 0.1897384492807036 0.19841414046791994 0.1894132102561677 0.19690092730859812" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1894132102561677 0.19690092730859812 C 0.18929386507033433 0.19884140292721142 0.1871450790280697 0.22378429939848452 0.18798106802616724 0.2201866347319577 C 0.1871450790280697 0.22378429939848452 0.17866469846673325 0.2417300923548333 0.1793813422789974 0.2400729033069198" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1793813422789974 0.2400729033069198 C 0.17978858327118746 0.2385039990155108 0.1848044902783705 0.21824413720064403 0.18426823418527793 0.22124605181001178 C 0.1848044902783705 0.21824413720064403 0.1859454304970108 0.2026169176765482 0.18581641539610827 0.20404992799450694" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18581641539610827 0.20404992799450694 C 0.18543099007841013 0.20239935145243262 0.1804401771319768 0.18153848116990967 0.18119131158373053 0.1842430094896152 C 0.1804401771319768 0.18153848116990967 0.17643709284100786 0.17054163638040962 0.17680280197506346 0.17159558815804082" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17680280197506346 0.17159558815804082 C 0.1765167203604723 0.17108535423882 0.17293117951021744 0.1647039877251038 0.17336982259996978 0.16547278112739094 C 0.17293117951021744 0.1647039877251038 0.17138652342287417 0.16211150784752895 0.17153908489803538 0.16237006733059525" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 66 KiB

View File

@@ -0,0 +1,186 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3342465685718323,0.08728601113623197) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17557761189137963 0.15585134178088156 C 0.17557468600191078 0.1559603017576376 0.17552004074973448 0.15761558607946696 0.17554250121775344 0.15715886150195404 C 0.17552004074973448 0.15761558607946696 0.1752885516966019 0.16167980131179335 0.17530808627515201 0.1613320367110365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17530808627515201 0.1613320367110365 C 0.1753069637697934 0.1622743409899473 0.1751954948548147 0.1755239555886596 0.1752946162108486 0.17263968805796637 C 0.1751954948548147 0.1755239555886596 0.17402063115206984 0.19788521033113776 0.17411863000274513 0.19594324707935534" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17411863000274513 0.19594324707935534 C 0.1739039244351701 0.1959482700117577 0.17108841014002255 0.19600698669563338 0.17154216319184487 0.19600352226818366 C 0.17108841014002255 0.19600698669563338 0.1684345458966299 0.19598326170379937 0.1686735933808772 0.19598482020875202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1686735933808772 0.19598482020875202 C 0.1685946512447618 0.19414587999975721 0.16789853060178608 0.1709578098546824 0.16772628774749263 0.1739175377008145 C 0.16789853060178608 0.1709578098546824 0.1709916926228077 0.15934729841802933 0.17074050763239884 0.16046808605516666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17074050763239884 0.16046808605516666 C 0.1709558942174241 0.16015544281034377 0.17372823867428364 0.15633163842776815 0.1733251466527019 0.15671636711729192 C 0.17372823867428364 0.15633163842776815 0.1757653173279361 0.1557792563361807 0.17557761189137963 0.15585134178088156" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3246377517109019,0.08729794428345364) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.17848955686294743 0.157336659062702 C 0.17851271317318523 0.15753635463791482 0.17859536681013571 0.16031109703942556 0.1787674325858009 0.15973300596525594 C 0.17859536681013571 0.16031109703942556 0.1762295454690621 0.16465214745169432 0.17642476755496508 0.16427375195273752" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17642476755496508 0.16427375195273752 C 0.17624069184452906 0.16515186274308763 0.1738717418513816 0.17744630326263525 0.174215859029733 0.17481108143693874 C 0.1738717418513816 0.17744630326263525 0.1721353199468331 0.19765352489644186 0.17229536141474847 0.19589641386109546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17229536141474847 0.19589641386109546 C 0.17207796572452222 0.19589161062322008 0.1692401658832951 0.19582800926813365 0.1696866131320334 0.19583877500659078 C 0.1692401658832951 0.19582800926813365 0.16670894287137672 0.1957612624990284 0.16693799442988877 0.1957672249996101" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16693799442988877 0.1957672249996101 C 0.1669717356795959 0.1941137486659174 0.1676867192711436 0.1731945488282551 0.16734288942637424 0.17592550899529763 C 0.1676867192711436 0.1731945488282551 0.17137404116218313 0.16191821916175017 0.1710639525671209 0.16299570299509997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1710639525671209 0.16299570299509997 C 0.17139715534036462 0.1626436144766017 0.1756811862040312 0.15829905377875406 0.17506238584604566 0.15877064077312056 C 0.1756811862040312 0.15829905377875406 0.17877515444768924 0.1572171605868338 0.17848955686294743 0.157336659062702" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31372004356907446,0.08988072749507184) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.18029596383584076 0.14194559745658142 C 0.18001129619285194 0.14284538110194034 0.17640917852614832 0.154628287901017 0.17687995211997495 0.1527430012008886 C 0.17640917852614832 0.154628287901017 0.1744605747590833 0.1655545409128915 0.17464668070992112 0.16456903785812205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17464668070992112 0.16456903785812205 C 0.17470204300685868 0.16565149556150113 0.17523644222918222 0.18177240861153815 0.17531102827317188 0.17755853029867114 C 0.17523644222918222 0.18177240861153815 0.1736216998411179 0.2182669982220142 0.1737516481820451 0.21513557761252627" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1737516481820451 0.21513557761252627 C 0.17364519071505882 0.21505300654224851 0.17228341744276124 0.21399100432974988 0.17247415857820966 0.21414472476919313 C 0.17228341744276124 0.21399100432974988 0.17137847088820202 0.21321978297004182 0.17146275455666415 0.21329093233920732" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17146275455666415 0.21329093233920732 C 0.17102499346017763 0.21003666703804455 0.16589883423479748 0.16975299883422185 0.166209621398826 0.174239748725254 C 0.16589883423479748 0.16975299883422185 0.16786028252077975 0.15821744905695215 0.16773330858832178 0.15944993364682153" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16773330858832178 0.15944993364682153 C 0.1681701122101296 0.15852349333069113 0.17402183998730886 0.14687395517073676 0.17297495205001562 0.14833264985325675 C 0.17402183998730886 0.14687395517073676 0.1809060481513262 0.1414133430901918 0.18029596383584076 0.14194559745658142" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31372004356907446,0.08988072749507184) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18145129184674708 0.13018357941873762 C 0.18144291616623837 0.1304027842122994 0.1812862120656775 0.13322327310905416 0.18135078368064256 0.132814036941479 C 0.1812862120656775 0.13322327310905416 0.1806202365327101 0.13528444480365281 0.18067643246716644 0.13509441342963943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18067643246716644 0.13509441342963943 C 0.18054762827705076 0.13518785115747362 0.1788598430455313 0.13632781392350576 0.17913078218577813 0.13621566616364977 C 0.1788598430455313 0.13632781392350576 0.17728302783407338 0.13645889657993326 0.1774251627842045 0.13644018654791146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1774251627842045 0.13644018654791146 C 0.1773710060812383 0.13649269593642768 0.1766577818967548 0.1371271318822067 0.17677528234860984 0.1370702992101061 C 0.1766577818967548 0.1371271318822067 0.1758962557246042 0.13708148065501063 0.1760151573619441 0.13712217861311876 C 0.1758962557246042 0.13708148065501063 0.17526001947541053 0.13645460010950033 0.1753484627005313 0.13658192371280853 C 0.17526001947541053 0.13645460010950033 0.17491955213834037 0.13541446238159582 0.1749538386604949 0.13559429537342027 C 0.17491955213834037 0.13541446238159582 0.17496608166141106 0.13423977153550648 0.1749370244346768 0.1344239278109153 C 0.17496608166141106 0.13423977153550648 0.17533298379352527 0.13329779442331438 0.17530252538130617 0.13338442006851445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17530252538130617 0.13338442006851445 C 0.17530522394256523 0.1331649762500524 0.17538965270636647 0.13032771101236051 0.17533490811641483 0.13075109424696993 C 0.17538965270636647 0.13032771101236051 0.1760115064894183 0.12809988183705423 0.17595946046072572 0.12830382125320158" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17595946046072572 0.12830382125320158 C 0.17607896950116078 0.12820493595373308 0.17765468106117988 0.12699090283268932 0.17739356894594646 0.12711719765957957 C 0.17765468106117988 0.12699090283268932 0.17923440891832498 0.12676087380309695 0.17909280584352663 0.1267882833305187" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31176594118788375,0.09309391346186419) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10746924305527247 0.10266280772405723 C 0.10727755486219809 0.10287086081618842 0.105779367790444 0.10421076978874765 0.10631911389682619 0.10391112627684436 C 0.105779367790444 0.10421076978874765 0.10387929809301054 0.10409447954739917 0.10423076641697937 0.10446066879547691 C 0.10387929809301054 0.10409447954739917 0.1043564635062987 0.10084951712899984 0.10421030395301319 0.10171399078837787 C 0.1043564635062987 0.10084951712899984 0.10510772373669244 0.0992738268392087 0.10510772373669244 0.0992738268392087 C 0.10510772373669244 0.0992738268392087 0.10406414439972768 0.1025784644477559 0.10421030395301319 0.10171399078837787 C 0.10406414439972768 0.1025784644477559 0.10394627677345587 0.10499697740492303 0.10423076641697937 0.10446066879547691 C 0.10394627677345587 0.10499697740492303 0.10201953000686034 0.10516743715856411 0.10250336609187223 0.10493184244505455 C 0.10201953000686034 0.10516743715856411 0.10113181387608071 0.10603130284844758 0.10132774990690807 0.10587423707653429" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.309811838806693,0.09630709942865656) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13937124236798004 0.11524489271857583 C 0.1394206722784332 0.11542588632282838 0.1400165589438942 0.11778455338178594 0.13996440129341783 0.11741681596960649 C 0.1400165589438942 0.11778455338178594 0.1399998619137196 0.11984448547265619 0.13999713417369639 0.1196577416647293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13999713417369639 0.1196577416647293 C 0.13991551984197143 0.11981125327238688 0.13882441111847021 0.12175507229094347 0.1390177621929969 0.12149988095662038 C 0.13882441111847021 0.12175507229094347 0.13756518453657424 0.12282171740327175 0.13767692127937597 0.12272003767660626" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13767692127937597 0.12272003767660626 C 0.13764600186452705 0.1227951925576486 0.13722414121890184 0.12373914405122813 0.13730588830118878 0.12362189624911439 C 0.13722414121890184 0.12373914405122813 0.1365880119369107 0.12416685641993487 0.13669595629193262 0.12412701130197117 C 0.1365880119369107 0.12416685641993487 0.13590533801592422 0.12405180363131182 0.13601055604092555 0.12410003766467885 C 0.13590533801592422 0.12405180363131182 0.1353590413817645 0.12342481398715757 0.13543333999191687 0.12354820290156693 C 0.1353590413817645 0.12342481398715757 0.1350955017763826 0.12245388885628578 0.13511897271909695 0.12261937069176654 C 0.1350955017763826 0.12245388885628578 0.13515441500936526 0.12147434172446711 0.13515168867934463 0.12156242087579784" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13515168867934463 0.12156242087579784 C 0.13509754249069061 0.12138469711722093 0.13443808587335312 0.1190566390236547 0.1345019344154963 0.11942973577287494 C 0.13443808587335312 0.1190566390236547 0.1343758038201373 0.11688988689451163 0.13438550617362646 0.11708525988515496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13438550617362646 0.11708525988515496 C 0.1344580999741586 0.11693304496807501 0.13543829196287208 0.11499813020883172 0.13525663178001218 0.11525868088019559 C 0.13543829196287208 0.11499813020883172 0.1366744947502728 0.1138503160745047 0.13656542836794505 0.11395865182878862" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30903482361239176,0.10007682792991643) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1065137385043163 0.10105435357599486 C 0.10640999932534535 0.10133817442294452 0.10552570084540083 0.10332681928506399 0.10589130343049066 0.10275727865769275 C 0.10552570084540083 0.10332681928506399 0.10393789361025617 0.10439208134394626 0.10432012299377733 0.10447159734022227 C 0.10393789361025617 0.10439208134394626 0.10349574984351964 0.10149742136960146 0.10359792712936375 0.10228018268003666 C 0.10349574984351964 0.10149742136960146 0.10370705927871272 0.0997750294776111 0.10370705927871272 0.0997750294776111 C 0.10370705927871272 0.0997750294776111 0.10370010441520786 0.10306294399047186 0.10359792712936375 0.10228018268003666 C 0.10370010441520786 0.10306294399047186 0.10422459680362368 0.10507539118796728 0.10432012299377733 0.10447159734022227 C 0.10422459680362368 0.10507539118796728 0.10268856081334014 0.10638700338029214 0.10302476998844189 0.1059029457665068 C 0.10268856081334014 0.10638700338029214 0.10218255093562104 0.10762144256567222 0.10230286794316687 0.1073759430229343" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3082578084180906,0.10384655643117637) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1392896724549893 0.11433307660101658 C 0.1393739581037376 0.11445286230950662 0.1404321566725862 0.11604119234826615 0.14030110023996895 0.11577050510289713 C 0.1404321566725862 0.11604119234826615 0.14090912043026557 0.11773222508232384 0.1408623496463966 0.11758132354544486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1408623496463966 0.11758132354544486 C 0.1408309766768035 0.11775281314566229 0.140385696453667 0.11995690773613951 0.1404858740112794 0.11963919874805398 C 0.140385696453667 0.11995690773613951 0.13959141436702832 0.12154005079033932 0.13966021895504763 0.12139383140247122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13966021895504763 0.12139383140247122 C 0.13965238370772978 0.12147267532329138 0.13952607110038434 0.12248191988817914 0.13956619598723358 0.12233995845231314 C 0.13952607110038434 0.12248191988817914 0.13909833862441687 0.12319096496999565 0.13917872031285686 0.12309736863286311 C 0.13909833862441687 0.12319096496999565 0.13850251544442665 0.12348326667335362 0.13860161572595364 0.12346311449790369 C 0.13850251544442665 0.12348326667335362 0.1378982519003237 0.12328050299289194 0.13798951693453287 0.12333919473826217 C 0.1378982519003237 0.12328050299289194 0.13744745992076593 0.12263700429304482 0.1375064353154437 0.12275881355346088 C 0.13744745992076593 0.12263700429304482 0.1372630936053126 0.12180403945158681 0.1372818121983996 0.12187748361326943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1372818121983996 0.12187748361326943 C 0.13719437886798636 0.12176303541611512 0.13609054465843134 0.1202356571326542 0.13623261223344052 0.12050410524741768 C 0.13609054465843134 0.1202356571326542 0.13552236705369378 0.11850210631849849 0.13557700129828967 0.11865610623610766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13557700129828967 0.11865610623610766 C 0.13560117259752852 0.11849077853127493 0.1359562233043764 0.11635670392063488 0.13586705688915587 0.11667217377811485 C 0.1359562233043764 0.11635670392063488 0.1367119933969176 0.11472032579370069 0.13664699828093593 0.11487046794634793" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3085091485224711,0.10736349904827033) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10540285430569092 0.10039845044887453 C 0.10538411146954015 0.10068883265359496 0.10512170695006141 0.10281251704687318 0.10529039728878628 0.10214074367719708 C 0.10512170695006141 0.10281251704687318 0.10405351293914894 0.10458042561886906 0.10439071227334175 0.10442909066693114 C 0.10405351293914894 0.10458042561886906 0.10299560056258814 0.10246756789213672 0.10326720128362943 0.10304875338882462 C 0.10299560056258814 0.10246756789213672 0.10276110794709399 0.10094197768680377 0.10276110794709399 0.10094197768680377 C 0.10276110794709399 0.10094197768680377 0.10353880200467072 0.10362993888551252 0.10326720128362943 0.10304875338882462 C 0.10353880200467072 0.10362993888551252 0.10445505483568956 0.10497603024619048 0.10439071227334175 0.10442909066693114 C 0.10445505483568956 0.10497603024619048 0.10348866987157038 0.10691575247610062 0.10365325665771633 0.1063303908643807 C 0.10348866987157038 0.10691575247610062 0.10336151403959103 0.10820973858272893 0.10340319155646607 0.10794126033725061" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.31372004356907446,0.08988072749507184) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.1776174561793849 0.1579721617991305 C 0.17761761988015073 0.15823775922375202 0.17754646632736995 0.16179211336211277 0.17761942058857502 0.16115933089458864 C 0.17754646632736995 0.16179211336211277 0.17666888708295314 0.1659327364523226 0.17674200504492404 0.16556555140941998" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17674200504492404 0.16556555140941998 C 0.17654345945784866 0.16626728809518304 0.17388685622310407 0.1754429408195406 0.17435945800001937 0.17398639163857693 C 0.17388685622310407 0.1754429408195406 0.1707967275321005 0.18379895407618466 0.17107078372194043 0.18304414158098406" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17107078372194043 0.18304414158098406 C 0.1706715116368371 0.18432569150618902 0.16532546315374524 0.20055145882819517 0.16627951870070065 0.19842274068344357 C 0.16532546315374524 0.20055145882819517 0.1590673336966233 0.20943592753755 0.1596221171584754 0.20858875931800336" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1596221171584754 0.20858875931800336 C 0.159929435449521 0.20758050840851153 0.16376243604299764 0.19407923629438512 0.1633099366510227 0.19648974840410133 C 0.16376243604299764 0.19407923629438512 0.16519729096310412 0.17826035280118432 0.16505210986217478 0.1796626140014087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16505210986217478 0.1796626140014087 C 0.16524523519989875 0.17889014072134526 0.16784804673974088 0.16906017602167672 0.16736961391486238 0.17039293464064753 C 0.16784804673974088 0.16906017602167672 0.1710786112478713 0.16310922523485166 0.17079330376071677 0.16366951057375903" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17079330376071677 0.16366951057375903 C 0.17102902719701232 0.1634132082154304 0.17419066436448566 0.16011910320926298 0.1736219849962633 0.16059388227381535 C 0.17419066436448566 0.16011910320926298 0.1779504121113117 0.15775368509290677 0.1776174561793849 0.1579721617991305" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32903146512973636,0.08614296108930872) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17571206163545214 0.15783077163527406 C 0.17575330022983285 0.15808540550270697 0.1762046384551784 0.16148877651265875 0.17620692476802075 0.16088637804446895 C 0.1762046384551784 0.16148877651265875 0.17564110097412086 0.1654073178543085 0.17568462588134393 0.16505955325355162" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17568462588134393 0.16505955325355162 C 0.17558894334434175 0.1659525359661517 0.17427671150202748 0.178451647657202 0.17453643543731784 0.1757753458047524 C 0.17427671150202748 0.178451647657202 0.17240389725957134 0.19895849462279658 0.17256793865785952 0.19717517548294702" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17256793865785952 0.19717517548294702 C 0.17236239910144302 0.19717821496445978 0.16968455693388543 0.19721178433746228 0.17010146398086134 0.19721164926110024 C 0.16968455693388543 0.19721178433746228 0.16735368660358896 0.19717389199414076 0.16756505409414837 0.19717679639929148" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16756505409414837 0.19717679639929148 C 0.16751635161986025 0.1954183881054289 0.1671604447868761 0.1733239743313008 0.1669806244026908 0.17607589687294045 C 0.1671604447868761 0.1733239743313008 0.16995142156284554 0.16316021165183883 0.1697228987043721 0.16415372589961588" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1697228987043721 0.16415372589961588 C 0.1699271310509592 0.16387744443190394 0.17267278377434045 0.16031143543171078 0.1721736868634171 0.1608383482870726 C 0.17267278377434045 0.16031143543171078 0.1760069261997884 0.15758014024762418 0.17571206163545214 0.15783077163527406" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32037244554725947,0.08617840466414575) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.1740240022166592 0.15549410507982758 C 0.17380937636077654 0.15589308454777984 0.17097371256944302 0.16145895899880874 0.17144849194606726 0.16028185869525458 C 0.17097371256944302 0.16145895899880874 0.16806649617642666 0.1703974295580797 0.16832664969716823 0.16961930872247777" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16832664969716823 0.16961930872247777 C 0.1682378626128386 0.17132624189955098 0.16718054337948088 0.19515327979669075 0.1672612046852126 0.1901025068473562 C 0.16718054337948088 0.19515327979669075 0.16736683980698527 0.23357242388675398 0.16735871402838737 0.2302285841144926" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16735871402838737 0.2302285841144926 C 0.1672581122307081 0.23015766146240904 0.16595398449396498 0.22923566698532277 0.16615149245623614 0.22937751228948988 C 0.16595398449396498 0.22923566698532277 0.16489171231654132 0.2284555178124037 0.16498861848113322 0.22852644046448725" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16498861848113322 0.22852644046448725 C 0.16461566678369216 0.22457459202720834 0.1605315388608865 0.1756558436697678 0.16051319811184062 0.1811042592171403 C 0.1605315388608865 0.1756558436697678 0.16559999991617078 0.16164888678592385 0.16520870746968383 0.16314545389601742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16520870746968383 0.16314545389601742 C 0.1655837469814255 0.1627652852077558 0.1704437895061652 0.1579458172355288 0.16970918161058393 0.15858342963687797 C 0.1704437895061652 0.1579458172355288 0.1743835706004988 0.15523666136674005 0.1740240022166592 0.15549410507982758" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31372004356907446,0.08988072749507184) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.12835189396947216 0.117240216903252 C 0.12820715127856 0.11786942509424908 0.1264845337599482 0.1261982823467652 0.1266149816785263 0.12479071519521706 C 0.1264845337599482 0.1261982823467652 0.12680081371886903 0.13490938168238079 0.12678651894653498 0.13413102272182972" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12678651894653498 0.13413102272182972 C 0.12692297372411998 0.13334235101460037 0.1289998751640399 0.12302524401178705 0.1284239762775552 0.12466696223507759 C 0.1289998751640399 0.12302524401178705 0.1341367496932511 0.11357735752628212 0.13369730558435142 0.11443040404234331" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13369730558435142 0.11443040404234331 C 0.133682990121224 0.11505240797421688 0.1334456823702436 0.123509741042435 0.1335255200268226 0.12189445122482613 C 0.1334456823702436 0.123509741042435 0.1326737315119515 0.13480716773938506 0.13273925370540313 0.13381388185364976" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13273925370540313 0.13381388185364976 C 0.13265627956851295 0.1332805299907393 0.13165281175575314 0.12646959153840362 0.13174356406272114 0.12741365949872416 C 0.13165281175575314 0.12646959153840362 0.13164244785170906 0.12207435023239306 0.13165022602178691 0.12248506632980315" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13165022602178691 0.12248506632980315 C 0.13146400938094455 0.12301324836014668 0.12906083337440022 0.13034908872345882 0.12941562633167852 0.12882325069392556 C 0.12906083337440022 0.13034908872345882 0.12722413421801146 0.1417927786833921 0.1273927105344474 0.14079512268420236" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1273927105344474 0.14079512268420236 C 0.12718866519011832 0.14007021859120256 0.12473898613418755 0.13076601577561153 0.12494416640249859 0.1320962735682046 C 0.12473898613418755 0.13076601577561153 0.12492941239073298 0.12422667547349212 0.12493054731471495 0.12483202917308539" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12493054731471495 0.12483202917308539 C 0.12480328693978625 0.12532425210013784 0.1231607043652021 0.13214734768276798 0.12340342281557048 0.13073870429771475 C 0.1231607043652021 0.13214734768276798 0.12190246783485459 0.14265217025172483 0.12201792591029427 0.14173574979372405" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12201792591029427 0.14173574979372405 C 0.12186821975623059 0.14094797122116454 0.12004081209132154 0.13111270902492944 0.12022145206153018 0.1322824069230097 C 0.12004081209132154 0.13111270902492944 0.11981931245164565 0.12731745569124045 0.11985024626779062 0.12769937501676115" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11985024626779062 0.12769937501676115 C 0.11968083385163071 0.12788448998408647 0.11752999953604308 0.12986839641229134 0.11781729727387172 0.12992075462466512 C 0.11752999953604308 0.12986839641229134 0.11628478809217818 0.1268336032885767 0.11640267341384691 0.1270710764682758" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11640267341384691 0.1270710764682758 C 0.11654745548700296 0.12711107351651318 0.11866708300362888 0.12705098888978428 0.1181400582917194 0.12755104104712445 C 0.11866708300362888 0.12705098888978428 0.12310921259551404 0.12053040137461629 0.1227269699567606 0.12107045058019385" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1227269699567606 0.12107045058019385 C 0.12262149711921469 0.12153493584908874 0.12137924878982703 0.12758968570069373 0.12146129590620963 0.12664427380693252 C 0.12137924878982703 0.12758968570069373 0.12176583028133278 0.1328963199301946 0.12174240456016946 0.13241539330532828" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12174240456016946 0.13241539330532828 C 0.1218668025253529 0.1318137467605639 0.12378597092647928 0.12393103673464924 0.12323518014237071 0.1251956347681556 C 0.12378597092647928 0.12393103673464924 0.12877828678839728 0.11657726541451002 0.12835189396947216 0.117240216903252" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33026976113827167,0.07069168978524057) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.18027780869557877 0.1469279103048763 C 0.1798843721571639 0.14776213065393687 0.17481250260802592 0.15873485139678017 0.17555657023460025 0.15693855449360297 C 0.17481250260802592 0.15873485139678017 0.1709983660885273 0.16944554969711928 0.17134899717668678 0.16848347314300263" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17134899717668678 0.16848347314300263 C 0.1710462308898292 0.16975428390565345 0.16719136112571567 0.18639233775707778 0.16771580173439588 0.18373320229481224 C 0.16719136112571567 0.18639233775707778 0.16483403555070172 0.20178142338980387 0.16505570987252435 0.20039309869018912" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16505570987252435 0.20039309869018912 C 0.16506247332724502 0.20204605019063093 0.16541741848867558 0.2233923903968941 0.1651368713291725 0.22022851669549098 C 0.16541741848867558 0.2233923903968941 0.16869605949134373 0.2398705053079877 0.16842227578656133 0.23835958310702643" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16842227578656133 0.23835958310702643 C 0.16769372268663363 0.2362670599819238 0.15889473395505818 0.20889596257955775 0.15967963858742906 0.21324930560579491 C 0.15889473395505818 0.20889596257955775 0.15894706866566757 0.18385864689104583 0.15900342019811076 0.1861194667921804" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15900342019811076 0.1861194667921804 C 0.15923601596362313 0.18498354866102112 0.1624263130700973 0.1702653748476326 0.16179456938425943 0.17248844921826906 C 0.1624263130700973 0.1702653748476326 0.1669834923484906 0.1583554181050656 0.16658434442816514 0.1594425743445428" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16658434442816514 0.1594425743445428 C 0.16713216573184317 0.158668632825766 0.17429932209458612 0.14911238744924885 0.17315820007230165 0.15015527611922105 C 0.17429932209458612 0.14911238744924885 0.1808711094141852 0.14665896315368093 0.18027780869557877 0.1469279103048763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33299213646228987,0.07085759635210137) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17198669428013527 0.16260280523216358 C 0.17181382723129623 0.16290286464371373 0.16941440399537114 0.16709639489482195 0.16991228969406683 0.16620351817076545 C 0.16941440399537114 0.16709639489482195 0.16568704724593028 0.173910143233348 0.16601206589578693 0.17331732592084165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16601206589578693 0.17331732592084165 C 0.1655836262876934 0.17452921034430496 0.16010377552233482 0.19103208516651285 0.16087079059866463 0.1878599390024013 C 0.16010377552233482 0.19103208516651285 0.15646930951159288 0.21334334163082852 0.15680788497982917 0.21138307989018026" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15680788497982917 0.21138307989018026 C 0.15676615617743087 0.2130731912422018 0.15665030143483358 0.23523652752485938 0.15630713935104956 0.23166441611443886 C 0.15665030143483358 0.23523652752485938 0.16131072087141957 0.2561304168736256 0.16092582998523725 0.2542484168152266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16092582998523725 0.2542484168152266 C 0.16021111635646168 0.25224734306924557 0.15157193323820362 0.22592440403377773 0.15234926643993055 0.23023553186345452 C 0.15157193323820362 0.22592440403377773 0.15153521199156272 0.20020482877540915 0.1515978315645141 0.20251488285910496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1515978315645141 0.20251488285910496 C 0.1519989580990114 0.2007326972615394 0.157440876043017 0.17815289358725622 0.15641134997848177 0.18112865568831804 C 0.157440876043017 0.17815289358725622 0.16458054386897453 0.1656121611428671 0.16395214433893662 0.1668057376463633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16395214433893662 0.1668057376463633 C 0.16435703434190987 0.16638301828874055 0.16948037020304899 0.16138286098704027 0.16881082437461575 0.16173310535489024 C 0.16948037020304899 0.16138286098704027 0.17225135010559522 0.16267528022193636 0.17198669428013527 0.16260280523216358" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34040825155875043,0.08728601113623197) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17369084160037174 0.15585134178088156 C 0.17387854703692823 0.15592342722558242 0.17634639886063125 0.1571010958068157 0.17594330683904952 0.15671636711729192 C 0.17634639886063125 0.1571010958068157 0.1787433324443778 0.16078072929998954 0.17852794585935253 0.16046808605516666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17852794585935253 0.16046808605516666 C 0.17877913084976138 0.16158887369230399 0.18171440859855226 0.1768772655469466 0.18154216574425877 0.1739175377008145 C 0.18171440859855226 0.1768772655469466 0.1805159179747588 0.19782376041774682 0.1805948601108742 0.19598482020875202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1805948601108742 0.19598482020875202 C 0.1803558126266269 0.19598637871370467 0.17727253724808423 0.19600005784073393 0.17772629029990655 0.19600352226818366 C 0.17727253724808423 0.19600005784073393 0.1749351179214312 0.19593822414695297 0.17514982348900623 0.19594324707935534" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17514982348900623 0.19594324707935534 C 0.17505182463833094 0.19400128382757292 0.17387471592486892 0.16975542052727313 0.17397383728090282 0.17263968805796637 C 0.17387471592486892 0.16975542052727313 0.1739592447112407 0.16038973243212568 0.17396036721659933 0.1613320367110365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17396036721659933 0.1613320367110365 C 0.17394083263804921 0.16098427211027963 0.173703491805979 0.15670213692444113 0.17372595227399795 0.15715886150195404 C 0.173703491805979 0.15670213692444113 0.1736879157109029 0.15574238180412553 0.17369084160037174 0.15585134178088156" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35001706841968083,0.08729794428345364) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.16868839709981637 0.157336659062702 C 0.16897399468455818 0.1574561575385702 0.17273436847470358 0.15924222776748706 0.17211556811671805 0.15877064077312056 C 0.17273436847470358 0.15924222776748706 0.17644720416888654 0.16334779151359824 0.17611400139564282 0.16299570299509997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17611400139564282 0.16299570299509997 C 0.17642408999070505 0.16407318682844976 0.1801788943811589 0.17865646916234015 0.17983506453638953 0.17592550899529763 C 0.1801788943811589 0.17865646916234015 0.18027370078258212 0.1974207013333028 0.180239959532875 0.1957672249996101" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.180239959532875 0.1957672249996101 C 0.18001090797436295 0.19577318750019182 0.177044893581992 0.1958495407450479 0.17749134083073032 0.19583877500659078 C 0.177044893581992 0.1958495407450479 0.174665196857789 0.19590121709897085 0.17488259254801525 0.19589641386109546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17488259254801525 0.19589641386109546 C 0.17472255108009987 0.19413930282574907 0.1726179777546794 0.17217585961124224 0.1729620949330308 0.17481108143693874 C 0.1726179777546794 0.17217585961124224 0.17056911069736266 0.16339564116238742 0.17075318640779868 0.16427375195273752" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17075318640779868 0.16427375195273752 C 0.1705579643218957 0.16389535645378073 0.1682384556012977 0.15915491489108632 0.16841052137696289 0.15973300596525594 C 0.1682384556012977 0.15915491489108632 0.16871155341005417 0.15713696348748918 0.16868839709981637 0.157336659062702" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36093477656150813,0.08988072749507184) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.16369571154595602 0.14194559745658142 C 0.16430579586144145 0.14247785182297104 0.1720636112690745 0.14979134453577675 0.17101672333178125 0.14833264985325675 C 0.1720636112690745 0.14979134453577675 0.17669517041528282 0.16037637396295193 0.176258366793475 0.15944993364682153" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.176258366793475 0.15944993364682153 C 0.17638534072593298 0.1606824182366909 0.17747126681894235 0.17872649861628614 0.17778205398297087 0.174239748725254 C 0.17747126681894235 0.17872649861628614 0.17209115972864614 0.21654519764037009 0.17252892082513266 0.21329093233920732" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17252892082513266 0.21329093233920732 C 0.17244463715667052 0.2133620817083728 0.17132677566813875 0.2142984452086364 0.17151751680358718 0.21414472476919313 C 0.17132677566813875 0.2142984452086364 0.17013356973276544 0.21521814868280403 0.17024002719975173 0.21513557761252627" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17024002719975173 0.21513557761252627 C 0.1701100788588245 0.21200415700303835 0.16860606106463535 0.17334465198580412 0.16868064710862501 0.17755853029867114 C 0.16860606106463535 0.17334465198580412 0.16940035696881325 0.16348658015474296 0.1693449946718757 0.16456903785812205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1693449946718757 0.16456903785812205 C 0.16915888872103788 0.16358353480335258 0.1666409496679953 0.15085771450076021 0.16711172326182194 0.1527430012008886 C 0.1666409496679953 0.15085771450076021 0.1634110439029672 0.1410458138112225 0.16369571154595602 0.14194559745658142" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.36093477656150813,0.08988072749507184) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18145129184674702 0.1267882833305187 C 0.18159289492154537 0.12681569285794045 0.18341164085956063 0.12724349248646982 0.18315052874432722 0.12711719765957957 C 0.18341164085956063 0.12724349248646982 0.184704146269983 0.12840270655267008 0.18458463722954793 0.12830382125320158" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18458463722954793 0.12830382125320158 C 0.1846366832582405 0.12850776066934894 0.18526393416381037 0.13117447748157934 0.18520918957385873 0.13075109424696993 C 0.18526393416381037 0.13117447748157934 0.1852442708702265 0.13360386388697648 0.18524157230896743 0.13338442006851445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18524157230896743 0.13338442006851445 C 0.18527203072118653 0.13347104571371451 0.1856361304823311 0.13460808408632413 0.18560707325559683 0.1344239278109153 C 0.1856361304823311 0.13460808408632413 0.18555597250762418 0.13577412836524472 0.18559025902977871 0.13559429537342027 C 0.18555597250762418 0.13577412836524472 0.18510719176462162 0.13670924731611672 0.1851956349897424 0.13658192371280853 C 0.18510719176462162 0.13670924731611672 0.18441003869098965 0.1371628765712269 0.18452894032832953 0.13712217861311876 C 0.18441003869098965 0.1371628765712269 0.18365131488980876 0.1370134665380055 0.1837688153416638 0.1370702992101061 C 0.18365131488980876 0.1370134665380055 0.1830647782031029 0.13638767715939523 0.18311893490606912 0.13644018654791146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18311893490606912 0.13644018654791146 C 0.182976799955938 0.13642147651588965 0.18114237636424865 0.13610351840379376 0.1814133155044955 0.13621566616364975 C 0.18114237636424865 0.13610351840379376 0.17973886103299147 0.13500097570180525 0.17986766522310715 0.13509441342963943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17986766522310715 0.13509441342963943 C 0.17981146928865083 0.13490438205562605 0.17912874239466603 0.13240480077390385 0.17919331400963107 0.132814036941479 C 0.17912874239466603 0.13240480077390385 0.17908443016301787 0.12996437462517585 0.17909280584352658 0.13018357941873762" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36288887894269883,0.09309391346186419) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10734675684440337 0.10587423707653429 C 0.107150820813576 0.105717171304621 0.1056873045744273 0.10469624773154498 0.10617114065943918 0.10493184244505455 C 0.1056873045744273 0.10469624773154498 0.10415925069080859 0.1039243601860308 0.10444374033433208 0.10446066879547691 C 0.10415925069080859 0.1039243601860308 0.1043180432450127 0.10084951712899984 0.10446420279829823 0.10171399078837787 C 0.1043180432450127 0.10084951712899984 0.103566783014619 0.0992738268392087 0.103566783014619 0.0992738268392087 C 0.103566783014619 0.0992738268392087 0.10461036235158375 0.1025784644477559 0.10446420279829823 0.10171399078837787 C 0.10461036235158375 0.1025784644477559 0.10409227201036325 0.10482685804355465 0.10444374033433208 0.10446066879547691 C 0.10409227201036325 0.10482685804355465 0.10181564674810303 0.10361148276494107 0.10235539285448522 0.10391112627684436 C 0.10181564674810303 0.10361148276494107 0.1010135755029646 0.10245475463192603 0.10120526369603897 0.10266280772405723" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.36484298132388965,0.09630709942865656) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13937124236798015 0.11395865182878862 C 0.1394803087503079 0.11406698758307253 0.14086169913877297 0.11551923155155945 0.14068003895591308 0.11525868088019559 C 0.14086169913877297 0.11551923155155945 0.1416237583628309 0.11723747480223491 0.14155116456229874 0.11708525988515496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14155116456229874 0.11708525988515496 C 0.1415414622088096 0.11728063287579829 0.14137088777828571 0.11980283252209518 0.14143473632042888 0.11942973577287494 C 0.14137088777828571 0.11980283252209518 0.14073083586792665 0.12174014463437476 0.14078498205658066 0.12156242087579784" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14078498205658066 0.12156242087579784 C 0.1407877083866013 0.12165050002712857 0.140794227074114 0.1227848525272473 0.14081769801682834 0.12261937069176654 C 0.140794227074114 0.1227848525272473 0.140429032133856 0.12367159181597628 0.14050333074400836 0.12354820290156693 C 0.140429032133856 0.12367159181597628 0.13982089666999842 0.12414827169804588 0.13992611469499971 0.12410003766467885 C 0.13982089666999842 0.12414827169804588 0.13913277008897074 0.12408716618400746 0.13924071444399266 0.12412701130197117 C 0.13913277008897074 0.12408716618400746 0.13854903535244947 0.12350464844700065 0.13863078243473642 0.12362189624911439 C 0.13854903535244947 0.12350464844700065 0.13822883004170033 0.12264488279556392 0.13825974945654926 0.12272003767660626" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13825974945654926 0.12272003767660626 C 0.13814801271374752 0.12261835794994078 0.13672555746840165 0.1212446896222973 0.13691890854292835 0.12149988095662038 C 0.13672555746840165 0.1212446896222973 0.13585792223050394 0.11950423005707171 0.1359395365622289 0.1196577416647293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1359395365622289 0.1196577416647293 C 0.13594226430225212 0.1194709978568024 0.1360244270929838 0.11704907855742704 0.13597226944250743 0.11741681596960649 C 0.1360244270929838 0.11704907855742704 0.1366148582783983 0.11506389911432328 0.13656542836794516 0.11524489271857584" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3656199965181909,0.10007682792991643) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10637163880814458 0.1073759430229343 C 0.10625132180059875 0.10713044348019637 0.10531352758776781 0.10541888815272146 0.10564973676286955 0.1059029457665068 C 0.10531352758776781 0.10541888815272146 0.10425885756738047 0.10386780349247725 0.10435438375753411 0.10447159734022227 C 0.10425885756738047 0.10386780349247725 0.10517875690779181 0.10149742136960146 0.1050765796219477 0.10228018268003666 C 0.10517875690779181 0.10149742136960146 0.10496744747259873 0.0997750294776111 0.10496744747259873 0.0997750294776111 C 0.10496744747259873 0.0997750294776111 0.1049744023361036 0.10306294399047186 0.1050765796219477 0.10228018268003666 C 0.1049744023361036 0.10306294399047186 0.10397215437401296 0.10455111333649827 0.10435438375753411 0.10447159734022227 C 0.10397215437401296 0.10455111333649827 0.10241760073573097 0.10218773803032152 0.10278320332082079 0.10275727865769275 C 0.10241760073573097 0.10218773803032152 0.10205702906802423 0.10077053272904521 0.10216076824699517 0.10105435357599486" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.36639701171249195,0.10384655643117637) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13928967245498936 0.11487046794634793 C 0.13935466757097104 0.11502061009899518 0.14015878026198988 0.11698764363559483 0.14006961384676936 0.11667217377811485 C 0.14015878026198988 0.11698764363559483 0.1403838407368744 0.11882143394094039 0.14035966943763556 0.11865610623610766" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14035966943763556 0.11865610623610766 C 0.14030503519303966 0.11881010615371683 0.13956199092747554 0.12077255336218118 0.13970405850248468 0.1205041052474177 C 0.13956199092747554 0.12077255336218118 0.1385674252071124 0.12199193181042374 0.13865485853752565 0.12187748361326943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13865485853752565 0.12187748361326943 C 0.13863613994443863 0.12195092777495205 0.13837126002580372 0.12288062281387695 0.1384302354204815 0.12275881355346088 C 0.13837126002580372 0.12288062281387695 0.1378558887671832 0.12339788648363241 0.13794715380139236 0.12333919473826217 C 0.1378558887671832 0.12339788648363241 0.13723595472844463 0.12344296232245376 0.13733505500997162 0.12346311449790369 C 0.13723595472844463 0.12344296232245376 0.13667756873462836 0.12300377229573056 0.13675795042306835 0.12309736863286311 C 0.13667756873462836 0.12300377229573056 0.13633034986184245 0.12219799701644715 0.13637047474869168 0.12233995845231314 C 0.13633034986184245 0.12219799701644715 0.13626861653355973 0.12131498748165105 0.13627645178087758 0.12139383140247122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13627645178087758 0.12139383140247122 C 0.13620764719285827 0.12124761201460311 0.13535061916703345 0.11932148975996845 0.13545079672464586 0.11963919874805398 C 0.13535061916703345 0.11932148975996845 0.13504294811993559 0.11740983394522743 0.1350743210895287 0.11758132354544486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1350743210895287 0.11758132354544486 C 0.13512109187339766 0.11743042200856588 0.13576662692857352 0.11549981785752811 0.13563557049595626 0.11577050510289713 C 0.13576662692857352 0.11549981785752811 0.1367312839296843 0.11421329089252653 0.136646998280936 0.11433307660101658" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3661456716081114,0.10736349904827033) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10527131519484535 0.10794126033725061 C 0.10522963767797032 0.10767278209177229 0.1048566633074492 0.10574502925266079 0.10502125009359513 0.1063303908643807 C 0.1048566633074492 0.10574502925266079 0.10434813704031752 0.10388215108767179 0.1042837944779697 0.10442909066693114 C 0.10434813704031752 0.10388215108767179 0.10567890618872329 0.10246756789213672 0.105407305467682 0.10304875338882462 C 0.10567890618872329 0.10246756789213672 0.10591339880421745 0.10094197768680377 0.10591339880421745 0.10094197768680377 C 0.10591339880421745 0.10094197768680377 0.1051357047466407 0.10362993888551252 0.105407305467682 0.10304875338882462 C 0.1051357047466407 0.10362993888551252 0.1039465951437769 0.10427775571499322 0.1042837944779697 0.10442909066693114 C 0.1039465951437769 0.10427775571499322 0.10321541912380028 0.10146897030752099 0.10338410946252514 0.10214074367719708 C 0.10321541912380028 0.10146897030752099 0.1032529096094697 0.10010806824415411 0.10327165244562048 0.10039845044887453" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.36093477656150813,0.08988072749507184) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.16411401702182998 0.1579721617991305 C 0.1644469729537568 0.15819063850535425 0.1686781675731739 0.16106866133836772 0.16810948820495156 0.16059388227381535 C 0.1686781675731739 0.16106866133836772 0.17117389287679366 0.16392581293208766 0.1709381694404981 0.16366951057375903" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1709381694404981 0.16366951057375903 C 0.17122347692765263 0.1642297959126664 0.17484029211123098 0.17172569325961834 0.17436185928635248 0.17039293464064753 C 0.17484029211123098 0.17172569325961834 0.17687248867676406 0.18043508728147215 0.17667936333904008 0.1796626140014087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17667936333904008 0.1796626140014087 C 0.17682454443996942 0.18106487520163309 0.17887403594216705 0.19890026051381754 0.1784215365501921 0.19648974840410133 C 0.17887403594216705 0.19890026051381754 0.1824166743337851 0.2095970102274952 0.1821093560427395 0.20858875931800336" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1821093560427395 0.20858875931800336 C 0.1815545725808874 0.20774159109845672 0.17449789895355877 0.19629402253869196 0.17545195450051418 0.19842274068344357 C 0.17449789895355877 0.19629402253869196 0.17026141739417117 0.1817625916557791 0.17066068947927449 0.18304414158098406" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17066068947927449 0.18304414158098406 C 0.17038663328943457 0.18228932908578346 0.16689941342428016 0.17252984245761327 0.16737201520119546 0.17398639163857693 C 0.16689941342428016 0.17252984245761327 0.1647909225692154 0.1648638147236569 0.16498946815629079 0.16556555140941998" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16498946815629079 0.16556555140941998 C 0.16491635019431988 0.16519836636651736 0.16403909835143474 0.1605265484270645 0.1641120526126398 0.16115933089458864 C 0.16403909835143474 0.1605265484270645 0.16411418072259584 0.157706564374509 0.16411401702182998 0.1579721617991305" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34562335500084634,0.08614296108930872) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17093938735770825 0.15783077163527406 C 0.1712342519220445 0.15808140302292395 0.17497685904066665 0.16136526114243444 0.1744777621297433 0.1608383482870726 C 0.17497685904066665 0.16136526114243444 0.1771327826353754 0.16443000736732782 0.17692855028878832 0.16415372589961588" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17692855028878832 0.16415372589961588 C 0.17715707314726176 0.16514724014739293 0.17985064497465503 0.1788278194145801 0.1796708245904697 0.17607589687294045 C 0.17985064497465503 0.1788278194145801 0.17903769242472395 0.19893520469315407 0.1790863948990121 0.19717679639929148" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1790863948990121 0.19717679639929148 C 0.17887502740845268 0.1971797008044422 0.17613307796532318 0.1972115141847382 0.17654998501229913 0.19721164926110024 C 0.17613307796532318 0.1972115141847382 0.17387797077888437 0.19717213600143427 0.1740835103353009 0.19717517548294702" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1740835103353009 0.19717517548294702 C 0.1739194689370127 0.19539185634309747 0.1718552896205523 0.1730990439523028 0.17211501355584266 0.1757753458047524 C 0.1718552896205523 0.1730990439523028 0.1708711405748144 0.16416657054095155 0.17096682311181657 0.16505955325355162" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17096682311181657 0.16505955325355162 C 0.1709232982045935 0.16471178865279473 0.17044223791229743 0.16028397957627916 0.17044452422513978 0.16088637804446895 C 0.17044223791229743 0.16028397957627916 0.17098062595208896 0.15757613776784116 0.17093938735770825 0.15783077163527406" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35428237458332323,0.08617840466414575) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.16445279954526254 0.15549410507982758 C 0.16481236792910214 0.1557515487929151 0.1695022280469191 0.15922104203822712 0.16876762015133784 0.15858342963687797 C 0.1695022280469191 0.15922104203822712 0.1736431338039796 0.16352562258427905 0.17326809429223794 0.16314545389601742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17326809429223794 0.16314545389601742 C 0.17365938673872486 0.164642021006111 0.17798194439912696 0.1865526747645128 0.17796360365008107 0.1811042592171403 C 0.17798194439912696 0.1865526747645128 0.17311523158334755 0.23247828890176617 0.17348818328078858 0.22852644046448725" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17348818328078858 0.22852644046448725 C 0.17339127711619667 0.2285973631165708 0.1721278013434144 0.229519357593657 0.1723253093056856 0.22937751228948988 C 0.1721278013434144 0.229519357593657 0.17101748593585503 0.23029950676657615 0.1711180877335343 0.2302285841144926" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1711180877335343 0.2302285841144926 C 0.1711262135121322 0.22688474434223121 0.1711349357709774 0.18505173389802163 0.17121559707670914 0.1901025068473562 C 0.1711349357709774 0.18505173389802163 0.17006136498042382 0.16791237554540456 0.17015015206475345 0.16961930872247777" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17015015206475345 0.16961930872247777 C 0.16988999854401188 0.16884118788687583 0.1665535304392302 0.1591047583917004 0.16702830981585445 0.16028185869525458 C 0.1665535304392302 0.1591047583917004 0.16423817368937987 0.15509512561187533 0.16445279954526254 0.15549410507982758" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36093477656150813,0.08988072749507184) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12684064787770738)"><path d="M 0.10988289274533518 0.117240216903252 C 0.1103092855642603 0.11790316839199397 0.11555039735654518 0.12646023280166196 0.11499960657243662 0.1251956347681556 C 0.11555039735654518 0.12646023280166196 0.11661678011982134 0.13301703985009267 0.11649238215463789 0.13241539330532828" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11649238215463789 0.13241539330532828 C 0.11651580787580121 0.13193446668046196 0.11669144369221507 0.1256988619131713 0.11677349080859767 0.12664427380693252 C 0.11669144369221507 0.1256988619131713 0.11540234392050078 0.12060596531129895 0.1155078167580467 0.12107045058019385" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1155078167580467 0.12107045058019385 C 0.11589005939680014 0.1216104997857714 0.12062175313499744 0.12805109320446462 0.12009472842308797 0.12755104104712445 C 0.12062175313499744 0.12805109320446462 0.12197689537411643 0.12703107942003844 0.1218321133009604 0.1270710764682758" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1218321133009604 0.1270710764682758 C 0.12171422797929167 0.12730854964797492 0.12013019170310703 0.1299731128370389 0.12041748944093567 0.12992075462466512 C 0.12013019170310703 0.1299731128370389 0.11821512803085683 0.12751426004943583 0.11838454044701674 0.12769937501676115" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11838454044701674 0.12769937501676115 C 0.11835360663087177 0.12808129434228185 0.1178326946830685 0.13345210482108993 0.11801333465327714 0.1322824069230097 C 0.1178326946830685 0.13345210482108993 0.11606715465044945 0.14252352836628357 0.11621686080451311 0.14173574979372405" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11621686080451311 0.14173574979372405 C 0.11610140272907343 0.14081932933572328 0.1145886454488685 0.12933006091266153 0.1148313638992369 0.13073870429771475 C 0.1145886454488685 0.12933006091266153 0.11317697902516365 0.12433980624603294 0.11330423940009236 0.12483202917308539" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11330423940009236 0.12483202917308539 C 0.11330310447611039 0.12543738287267867 0.11308544004399768 0.13342653136079768 0.1132906203123087 0.1320962735682046 C 0.11308544004399768 0.13342653136079768 0.11063803083603092 0.14152002677720216 0.11084207618035999 0.14079512268420236" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11084207618035999 0.14079512268420236 C 0.11067349986392405 0.1397974666850126 0.10846436742585046 0.1272974126643923 0.10881916038312876 0.12882325069392556 C 0.10846436742585046 0.1272974126643923 0.10639834405217803 0.12195688429945961 0.1065845606930204 0.12248506632980315" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1065845606930204 0.12248506632980315 C 0.10657678252294256 0.12289578242721323 0.1064004703451183 0.1283577274590447 0.1064912226520863 0.12741365949872416 C 0.1064004703451183 0.1283577274590447 0.10541255887251431 0.1343472337165602 0.10549553300940447 0.13381388185364976" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10549553300940447 0.13381388185364976 C 0.10543001081595282 0.13282059596791446 0.10462942903140576 0.12027916140721726 0.1047092666879848 0.12189445122482613 C 0.10462942903140576 0.12027916140721726 0.10452316566732853 0.11380840011046973 0.10453748113045594 0.11443040404234331" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10453748113045594 0.11443040404234331 C 0.10497692523935562 0.1152834505584045 0.11038670932373686 0.12630868045836813 0.10981081043725216 0.12466696223507759 C 0.11038670932373686 0.12630868045836813 0.11158472254585736 0.13491969442905907 0.11144826776827234 0.13413102272182972" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11144826776827234 0.13413102272182972 C 0.11146256254060641 0.13335266376127866 0.111489357117703 0.12338314804366891 0.11161980503628109 0.12479071519521706 C 0.111489357117703 0.12338314804366891 0.10973815005442301 0.11661100871225491 0.10988289274533518 0.117240216903252" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.17197072520625506,-0.15955296299577326)"><path d="M 0.17182472568062757 0.15526516449806516 C 0.17196221127959224 0.15530310536299335 0.17375622186893994 0.156163296885905 0.17347455286820368 0.15572045487720362 C 0.17375622186893994 0.156163296885905 0.17534893709123409 0.16098416974625468 0.1752047536894625 0.16057926860248153" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1752047536894625 0.16057926860248153 C 0.17533983769399017 0.1615761806708825 0.1768295494832042 0.17547046996870105 0.17682576174379433 0.17254221342329307 C 0.1768295494832042 0.17547046996870105 0.17511891029726334 0.19764969162438437 0.1752502065623811 0.19571834714737735" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1752502065623811 0.19571834714737735 C 0.17497928668699902 0.19571834714737735 0.1714515003728891 0.19571834714737735 0.17199916805779614 0.19571834714737735 C 0.1714515003728891 0.19571834714737735 0.16840144653397146 0.19571834714737735 0.16867819434349643 0.19571834714737735" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16867819434349643 0.19571834714737735 C 0.1685479855372647 0.19378700267037033 0.16712056386701146 0.16961395687788508 0.16711568866871557 0.17254221342329307 C 0.16712056386701146 0.16961395687788508 0.16887178072757497 0.15958235653408057 0.16873669672304734 0.16057926860248153" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16873669672304734 0.16057926860248153 C 0.16887040983306797 0.16017754428507722 0.17059858978976014 0.1553157347849284 0.17034125404329511 0.15575857679362978 C 0.17059858978976014 0.1553157347849284 0.17194834831707193 0.1552240468067681 0.17182472568062757 0.15526516449806516" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3443850589923112,0.07069168978524057) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.17846502765781974 0.1469279103048763 C 0.17905832837642616 0.1471968574560717 0.18672575830338123 0.15119816478919326 0.18558463628109678 0.15015527611922105 C 0.18672575830338123 0.15119816478919326 0.19270631322891127 0.1602165158633196 0.19215849192523324 0.1594425743445428" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19215849192523324 0.1594425743445428 C 0.1925576398455587 0.16052973058401998 0.19758001065497685 0.17471152358890552 0.19694826696913897 0.17248844921826906 C 0.19758001065497685 0.17471152358890552 0.1999720119208 0.18725538492333965 0.19973941615528762 0.1861194667921804" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19973941615528762 0.1861194667921804 C 0.19968306462284444 0.18838028669331494 0.19827829313359854 0.21760264863203208 0.19906319776596942 0.21324930560579491 C 0.19827829313359854 0.21760264863203208 0.18959200746690946 0.24045210623212906 0.19032056056683716 0.23835958310702643" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19032056056683716 0.23835958310702643 C 0.19059434427161956 0.23684866090606516 0.19388651218372902 0.21706464299408787 0.19360596502422595 0.22022851669549098 C 0.19388651218372902 0.21706464299408787 0.19369388993559475 0.1987401471897473 0.19368712648087408 0.20039309869018912" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19368712648087408 0.20039309869018912 C 0.19346545215905145 0.19900477399057437 0.19050259401032235 0.1810740668325467 0.19102703461900256 0.18373320229481224 C 0.19050259401032235 0.1810740668325467 0.18709107288985402 0.16721266238035182 0.1873938391767116 0.16848347314300263" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1873938391767116 0.16848347314300263 C 0.18704320808855213 0.16752139658888598 0.18244219849222382 0.15514225759042577 0.18318626611879812 0.15693855449360297 C 0.18244219849222382 0.15514225759042577 0.17807159111940488 0.14609368995581576 0.17846502765781974 0.1469279103048763" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3416626836682929,0.07085759635210137) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17152109466865653 0.16260280523216358 C 0.17178575049411648 0.1625303302423908 0.1753665104026093 0.16208334972274022 0.17469696457417608 0.16173310535489024 C 0.1753665104026093 0.16208334972274022 0.17996053461282852 0.16722845700398606 0.17955564460985526 0.1668057376463633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17955564460985526 0.1668057376463633 C 0.18018404413989317 0.16799931414985952 0.1881259650348453 0.18410441778937986 0.18709643897031009 0.18112865568831804 C 0.1881259650348453 0.18410441778937986 0.19231108391877508 0.20429706845667053 0.19190995738427777 0.20251488285910496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19190995738427777 0.20251488285910496 C 0.1918473378113264 0.20482493694280077 0.19038118930713432 0.23454665969313132 0.19115852250886126 0.23023553186345452 C 0.19038118930713432 0.23454665969313132 0.181867245334779 0.2562494905612076 0.18258195896355456 0.2542484168152266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18258195896355456 0.2542484168152266 C 0.18296684984973688 0.2523664167568276 0.18754381168152628 0.22809230470401834 0.18720064959774227 0.23166441611443886 C 0.18754381168152628 0.22809230470401834 0.18665817516656438 0.20969296853815872 0.1866999039689627 0.21138307989018026" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1866999039689627 0.21138307989018026 C 0.1863613285007264 0.209422818149532 0.1818699832737974 0.18468779283828976 0.1826369983501272 0.1878599390024013 C 0.1818699832737974 0.18468779283828976 0.17706728344491138 0.17210544149737833 0.1774957230530049 0.17331732592084165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1774957230530049 0.17331732592084165 C 0.17717070440314825 0.1727245086083353 0.17309761355602926 0.16531064144670896 0.17359549925472495 0.16620351817076545 C 0.17309761355602926 0.16531064144670896 0.1713482276198175 0.16230274582061344 0.17152109466865653 0.16260280523216358" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 62 KiB

View File

@@ -0,0 +1,174 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.1771656262374324 C 0.18214574144411624 0.1771656262374324 0.17854899894242843 0.16798807745923464 0.17814936088668534 0.16869404274986524 C 0.17854899894242843 0.16798807745923464 0.18814031228026268 0.16940000804049585 0.1877406742245196 0.16869404274986524 C 0.18814031228026268 0.16940000804049585 0.18214574144411624 0.1771656262374324 0.18294501755560244 0.1771656262374324 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32005273796499967,0.09003142429914945) rotate(0) scale(1,1) translate(-0.16895446178938286,-0.16818102281450667)"><path d="M 0.1703838757820286 0.16719258683829744 C 0.17050115794388665 0.1674615105523577 0.17191125847532712 0.17120444573519922 0.17179126172432518 0.1704196714070206 C 0.17191125847532712 0.17120444573519922 0.17182655138319575 0.17712572939055915 0.17182383679405186 0.1766098787764408" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17182383679405186 0.1766098787764408 C 0.17168027003315472 0.17712464030806568 0.16975087813169606 0.1837897943675281 0.1701010356632861 0.18278701715593954 C 0.16975087813169606 0.1837897943675281 0.16741535564427856 0.18913122099546734 0.16762194641497144 0.18864320531550366" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16762194641497144 0.18864320531550366 C 0.1671887176788635 0.1892290366431356 0.1616507674996393 0.1964940408006899 0.1624232015816763 0.19567318124708694 C 0.1616507674996393 0.1964940408006899 0.15801353208459845 0.19872854818471042 0.15835273743052752 0.19849351995873937" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15835273743052752 0.19849351995873937 C 0.1586469508504536 0.19768708977123112 0.16237446397998426 0.18710402746304228 0.16188329846964064 0.18881635770864014 C 0.16237446397998426 0.18710402746304228 0.16444367564506845 0.17703965695347554 0.16424672355465092 0.17794555701156511" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16424672355465092 0.17794555701156511 C 0.16437948553063667 0.17741481831816447 0.16612805021404478 0.17074647881289123 0.1658398672664799 0.17157669269075754 C 0.16612805021404478 0.17074647881289123 0.16786033989700877 0.1676835152927039 0.16770491892542963 0.16798299047716955" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16770491892542963 0.16798299047716955 C 0.16782014266016607 0.16782739040882738 0.16931085014698338 0.16604992268715765 0.1690876037422668 0.16611578965706367 C 0.16931085014698338 0.16604992268715765 0.17049189845200874 0.1672823199367336 0.1703838757820286 0.16719258683829744" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31351212806116596,0.09022458201683031) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.18101352277264982 0.1419341965608009 C 0.18066909925661764 0.14283097667832376 0.17634989250093755 0.15458789527539707 0.17688044058026386 0.15269555797107526 C 0.17634989250093755 0.15458789527539707 0.17446082125743995 0.16563780139946147 0.1746469458207341 0.16464224421266252" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1746469458207341 0.16464224421266252 C 0.17453522114119754 0.165795892353251 0.1732061569553708 0.18094810405428866 0.1733062496662955 0.1784860218997244 C 0.1732061569553708 0.18094810405428866 0.17345746525824987 0.19549566408140928 0.173445833289638 0.19418723006743352" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.173445833289638 0.19418723006743352 C 0.17350005896782728 0.1952623352688987 0.1743141843973888 0.2097211055248068 0.1740965414279094 0.20708849248501554 C 0.1743141843973888 0.2097211055248068 0.17622096621468103 0.22733609438325483 0.1760575489233909 0.22577858654492874" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1760575489233909 0.22577858654492874 C 0.17563629406546719 0.22424506183889667 0.17031228610086782 0.20451866119089795 0.17100249062830622 0.2073762900725439 C 0.17031228610086782 0.20451866119089795 0.16750614492461535 0.19016293578956342 0.16777509459413004 0.1914870399651773" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16777509459413004 0.1914870399651773 C 0.16764429965877337 0.19018351786891513 0.16615231530443506 0.1733495577174298 0.16620555536984993 0.17584477481003113 C 0.16615231530443506 0.1733495577174298 0.16721376867909338 0.1603527398576221 0.16713621380915158 0.16154443485396125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16713621380915158 0.16154443485396125 C 0.16748552574952835 0.1606923283395436 0.17248439950729758 0.1496849701565194 0.1713279570936727 0.15131915668094945 C 0.17248439950729758 0.1496849701565194 0.1818206532458979 0.14115211655078852 0.18101352277264982 0.1419341965608009" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.31351212806116596,0.09022458201683031) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.1814220679881812 0.13020431515749606 C 0.1814099433126202 0.13042333745119242 0.1812050086738161 0.13324060693941403 0.1812765718814493 0.13283258268185244 C 0.1812050086738161 0.13324060693941403 0.18050387096451048 0.13528960821210032 0.1805633094965827 0.13510060624823508" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1805633094965827 0.13510060624823508 C 0.18043292634225866 0.13519173661831818 0.17872589508702846 0.13630147778479207 0.1789987116446944 0.13619417068923234 C 0.17872589508702846 0.13630147778479207 0.17714707740124924 0.13640446812042825 0.17728951080459118 0.13638829139495165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17728951080459118 0.13638829139495165 C 0.1772344639917626 0.13643982862342988 0.176510494171485 0.13706147026887813 0.17662894905064827 0.1370067381366905 C 0.176510494171485 0.13706147026887813 0.17574986500862455 0.13700226839198426 0.17586805225463203 0.13704507698120316 C 0.17574986500862455 0.13700226839198426 0.17512445066283028 0.13636415628234871 0.1752107020985586 0.1364930350660638 C 0.17512445066283028 0.13636415628234871 0.17480183040299238 0.13531811556442877 0.17483303502589212 0.1354985315766221 C 0.17480183040299238 0.13531811556442877 0.17486845006719656 0.13414443200384113 0.17483624662376163 0.13432804291974385 C 0.17486845006719656 0.13414443200384113 0.17525141215739057 0.13320913039129328 0.1752194763471114 0.13329520058578948" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1752194763471114 0.13329520058578948 C 0.175225928857439 0.1330758382327092 0.17535888618581713 0.13024050822640704 0.17529690647104262 0.13066285234882585 C 0.17535888618581713 0.13024050822640704 0.17601876012885237 0.128024089347425 0.17596323292440547 0.12822707111676354" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17596323292440547 0.12822707111676354 C 0.17608441554466112 0.1281303285213307 0.17768065743228056 0.12694453301115222 0.17741742436747332 0.12706615997156917 C 0.17768065743228056 0.12694453301115222 0.1792640801466441 0.1267426632267762 0.1791220297020925 0.12676754759176026" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3115033504265232,0.09340248932470152) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10749484956860335 0.10271879936495153 C 0.10729963108902389 0.10292340810638717 0.10577874833215135 0.10423644048053367 0.10632353869112661 0.1039464518135654 C 0.10577874833215135 0.10423644048053367 0.10388095757904703 0.10408634063028219 0.10422610741475184 0.1044587313667611 C 0.10388095757904703 0.10408634063028219 0.10441356683866049 0.10085036750657016 0.10425263967689773 0.1017121073946919 C 0.10441356683866049 0.10085036750657016 0.10519167038532845 0.09928829203803065 0.10519167038532845 0.09928829203803065 C 0.10519167038532845 0.09928829203803065 0.10409171251513497 0.10257384728281364 0.10425263967689773 0.1017121073946919 C 0.10409171251513497 0.10257384728281364 0.10393248565108201 0.10498989346784175 0.10422610741475184 0.1044587313667611 C 0.10393248565108201 0.10498989346784175 0.10200311602238062 0.10512602500197418 0.10249090909487876 0.10489908000117576 C 0.10200311602238062 0.10512602500197418 0.10110075562724365 0.10597395493328096 0.10129934897976295 0.10582040137155165" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3094945727918805,0.09658039663257267) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393600258561859 0.11526977100184854 C 0.13940635170460602 0.11545161705047073 0.13996179429910074 0.11782053356237808 0.13991593603722746 0.1174519235853148 C 0.13996179429910074 0.11782053356237808 0.13990985741211853 0.11987985465504902 0.13991032499866538 0.11969309072660793" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13991032499866538 0.11969309072660793 C 0.1398260967400083 0.11984512595744934 0.13870189832121457 0.12176922369633897 0.13889958589478035 0.12151751349670478 C 0.13870189832121457 0.12176922369633897 0.13742461480096718 0.1228132880910109 0.13753807411587587 0.12271361312221812" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13753807411587587 0.12271361312221812 C 0.13750587362103617 0.1227882060922876 0.13706792760902545 0.12372450334811785 0.13715166817779922 0.12360872876305184 C 0.13706792760902545 0.12372450334811785 0.13642457768481672 0.12414082543744906 0.13653318729059066 0.12410290814301027 C 0.13642457768481672 0.12414082543744906 0.13574397612189507 0.12401363639170482 0.13584835290851183 0.1240637362963173 C 0.13574397612189507 0.12401363639170482 0.13520848955941264 0.12337701641297862 0.13528066585118967 0.12350170928766056 C 0.13520848955941264 0.12337701641297862 0.13496160118934447 0.12240154731045544 0.13498223740718746 0.12256742180013391 C 0.13496160118934447 0.12240154731045544 0.1350372640562312 0.12142319821246754 0.135033031237074 0.1215112154115188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.135033031237074 0.1215112154115188 C 0.13498193388652824 0.12133255474571576 0.1343624073479165 0.1189931107887511 0.13441986303052497 0.11936728742188245 C 0.1343624073479165 0.1189931107887511 0.13433720471370933 0.11682557984661443 0.13434356304577208 0.11702109581394274" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13434356304577208 0.11702109581394274 C 0.13441874996264366 0.11687019648186753 0.13543189620106177 0.11495302697333803 0.1352458060482312 0.11521030382904027 C 0.13543189620106177 0.11495302697333803 0.13668754811569822 0.1138273960218889 0.13657664487973922 0.11393377354551593" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3086531814461365,0.10033571762916574) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10656700882375554 0.10109357915380976 C 0.10645842968868488 0.10137550988413871 0.10554024311117707 0.1033481085234863 0.10591553401333159 0.10278516353578343 C 0.10554024311117707 0.1033481085234863 0.10393445264411057 0.1043849402883355 0.10431526341082845 0.10447124908002696 C 0.10393445264411057 0.1043849402883355 0.10354189958078944 0.10148284961090291 0.10363066941302433 0.10226731078563472 C 0.10354189958078944 0.10148284961090291 0.1037826444174191 0.09976448203163607 0.1037826444174191 0.09976448203163607 C 0.1037826444174191 0.09976448203163607 0.10371943924525923 0.10305177196036654 0.10363066941302433 0.10226731078563472 C 0.10371943924525923 0.10305177196036654 0.10420942174758709 0.10507325029519436 0.10431526341082845 0.10447124908002696 C 0.10420942174758709 0.10507325029519436 0.10265117995293312 0.10635731636698413 0.10299561943357614 0.10587931807663913 C 0.10265117995293312 0.10635731636698413 0.10212412770920264 0.10758255894633993 0.10224862652697028 0.10733923882209696" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3078117901003927,0.10409103862575889) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13929406819560644 0.11435664155284128 C 0.1393762916504439 0.11447790957163323 0.1404071550662166 0.11608483702059094 0.14028074965365586 0.11581185777834466 C 0.1404071550662166 0.11608483702059094 0.1408551151040584 0.11778410368325107 0.14081093314633514 0.11763239245979673" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14081093314633514 0.11763239245979673 C 0.14077663102087046 0.11780329740207122 0.140293709808482 0.11999912888548407 0.14039930764075895 0.1196832517670906 C 0.140293709808482 0.11999912888548407 0.13947246345219932 0.1215678900566373 0.1395437591590116 0.12142291788051833" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1395437591590116 0.12142291788051833 C 0.13953457620184287 0.12150161030055392 0.139391016146566 0.12250845238401936 0.13943356367298695 0.12236722692094545 C 0.139391016146566 0.12250845238401936 0.13895121810075906 0.12320977446810216 0.1390331888419601 0.1231176234374052 C 0.13895121810075906 0.12320977446810216 0.13835048481650133 0.1234914240933721 0.13844991477857463 0.12347303928930903 C 0.13835048481650133 0.1234914240933721 0.1377497822921761 0.12327793347018952 0.13784002929708067 0.12333824108616204 C 0.1377497822921761 0.12327793347018952 0.13731006828406755 0.12262650723862792 0.13736695071971988 0.12274934789763875 C 0.13731006828406755 0.12262650723862792 0.1371399808483805 0.12179038695139816 0.13715744006925276 0.12186415317803205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13715744006925276 0.12186415317803205 C 0.13707197809521096 0.1217481658188414 0.13599444319462659 0.12020136838150496 0.13613189638075102 0.12047230486774424 C 0.13599444319462659 0.12020136838150496 0.1354560106236771 0.11845796621611204 0.1355080018357597 0.11861291534316068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1355080018357597 0.11861291534316068 C 0.13553499796677765 0.11844804314500812 0.1359265054666885 0.11632061460294342 0.13583195540797524 0.11663444896532987 C 0.1359265054666885 0.11632061460294342 0.1367101564680141 0.11469794083028934 0.1366426025403188 0.11484690299452323" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30800292222347747,0.10761192025355529) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10546751535327674 0.10041799863056247 C 0.10544380736051755 0.10070800292620968 0.1051451096988071 0.10282669223197805 0.10532526739672157 0.10215802440444573 C 0.1051451096988071 0.10282669223197805 0.10404683207086776 0.10457531427152678 0.1043865691657899 0.10443000559575635 C 0.10404683207086776 0.10457531427152678 0.10302522869890086 0.10244394411784219 0.10328684482718879 0.10302987645906825 C 0.10302522869890086 0.10244394411784219 0.10281687239606234 0.10091441154840004 0.10281687239606234 0.10091441154840004 C 0.10281687239606234 0.10091441154840004 0.10354846095547672 0.1036158088002943 0.10328684482718879 0.10302987645906825 C 0.10354846095547672 0.1036158088002943 0.10444154459894311 0.10497800737696217 0.1043865691657899 0.10443000559575635 C 0.10444154459894311 0.10497800737696217 0.10344212103351005 0.10690022943317504 0.10361669742610807 0.10631788714630315 C 0.10344212103351005 0.10690022943317504 0.10329284637421736 0.10819175467876845 0.10333911081020175 0.10792405931698769" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.31351212806116596,0.09022458201683031) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.1774933664073078 0.1579721617991305 C 0.1775038709224134 0.15823775922375202 0.1775568071417097 0.16179211336211277 0.17761942058857502 0.16115933089458864 C 0.1775568071417097 0.16179211336211277 0.17666888708295314 0.1659327364523226 0.17674200504492404 0.16556555140941998" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17674200504492404 0.16556555140941998 C 0.17654345945784866 0.16626728809518304 0.17388685622310407 0.1754429408195406 0.17435945800001937 0.17398639163857693 C 0.17388685622310407 0.1754429408195406 0.1707967275321005 0.18379895407618466 0.17107078372194043 0.18304414158098406" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17107078372194043 0.18304414158098406 C 0.1706715116368371 0.18432569150618902 0.16532546315374524 0.20055145882819517 0.16627951870070065 0.19842274068344357 C 0.16532546315374524 0.20055145882819517 0.1590673336966233 0.20943592753755 0.1596221171584754 0.20858875931800336" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1596221171584754 0.20858875931800336 C 0.159929435449521 0.20758050840851153 0.16379803585902514 0.19399073867465405 0.1633099366510227 0.19648974840410133 C 0.16379803585902514 0.19399073867465405 0.16566008857146153 0.1771098837446806 0.1654793076545047 0.17860064256463604" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1654793076545047 0.17860064256463604 C 0.16565611566961908 0.17785766849114962 0.1680438368447284 0.16844069268355938 0.1676010038358774 0.16968495368279912 C 0.1680438368447284 0.16844069268355938 0.1710593287544534 0.16316822364800568 0.17079330376071677 0.16366951057375903" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17079330376071677 0.16366951057375903 C 0.17102902719701232 0.1634132082154304 0.1741803235501459 0.16011910320926298 0.1736219849962633 0.16059388227381535 C 0.1741803235501459 0.16011910320926298 0.17781598152489486 0.15775368509290677 0.1774933664073078 0.1579721617991305" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36117477759617533,0.09022458201683031) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.16312149837738402 0.14208039433503813 C 0.1639166833699457 0.14285029119719742 0.1738082152210626 0.15294116005752637 0.17266371828812416 0.15131915668094945 C 0.1738082152210626 0.15294116005752637 0.17720477351302202 0.1623965413683789 0.17685546157264526 0.16154443485396125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17685546157264526 0.16154443485396125 C 0.17693301644258705 0.1627361298503004 0.17773287994653203 0.17833999190263247 0.1777861200119469 0.17584477481003113 C 0.17773287994653203 0.17833999190263247 0.17608578585231022 0.19279056206143946 0.1762165807876669 0.1914870399651773" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1762165807876669 0.1914870399651773 C 0.1759476311181522 0.19281114414079117 0.17229898022605217 0.21023391895418986 0.17298918475349057 0.2073762900725439 C 0.17229898022605217 0.21023391895418986 0.16751287160048223 0.22731211125096082 0.16793412645840594 0.22577858654492874" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16793412645840594 0.22577858654492874 C 0.16809754374969607 0.22422107870660266 0.17011277692336685 0.20445587944522428 0.16989513395388744 0.20708849248501554 C 0.17011277692336685 0.20445587944522428 0.17060006777034814 0.19311212486596835 0.17054584209215887 0.19418723006743352" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17054584209215887 0.19418723006743352 C 0.17055747406077074 0.19287879605345776 0.17058533300457668 0.17602393974516015 0.17068542571550135 0.1784860218997244 C 0.17058533300457668 0.17602393974516015 0.16923300488152626 0.16348859607207403 0.1693447295610628 0.16464224421266252" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1693447295610628 0.16464224421266252 C 0.16915860499776866 0.16364668702586357 0.16659263220289305 0.15081540381460656 0.16711123480153295 0.15269555797107526 C 0.16659263220289305 0.15081540381460656 0.16278902034203827 0.1411957973653684 0.16312149837738402 0.14208039433503813" fill="none" stroke="none" stroke-width="0"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.36117477759617533,0.09022458201683031) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18142206798818114 0.12676754759176026 C 0.18156411843273274 0.12679243195674433 0.1833899063876076 0.12718778693198612 0.18312667332280036 0.12706615997156917 C 0.1833899063876076 0.12718778693198612 0.18470204738612384 0.1283238137121964 0.18458086476586819 0.12822707111676354" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18458086476586819 0.12822707111676354 C 0.1846363919703151 0.12843005288610207 0.18530917093400548 0.13108519647124467 0.18524719121923097 0.13066285234882585 C 0.18530917093400548 0.13108519647124467 0.18533107385348976 0.13351456293886976 0.18532462134316216 0.13329520058578948" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18532462134316216 0.13329520058578948 C 0.18535655715344132 0.13338127078028567 0.18574005450994693 0.13451165383564656 0.185707851066512 0.13432804291974385 C 0.18574005450994693 0.13451165383564656 0.18567985804148177 0.13567894758881538 0.1857110626643815 0.13549853157662206 C 0.18567985804148177 0.13567894758881538 0.18524714415598678 0.1366219138497789 0.1853333955917151 0.1364930350660638 C 0.18524714415598678 0.1366219138497789 0.1845578581896341 0.13708788557042206 0.1846760454356416 0.13704507698120316 C 0.1845578581896341 0.13708788557042206 0.18379669376046212 0.13695200600450286 0.18391514863962538 0.13700673813669048 C 0.18379669376046212 0.13695200600450286 0.18319954007285386 0.13633675416647342 0.18325458688568244 0.13638829139495165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18325458688568244 0.13638829139495165 C 0.1831121534823405 0.13637211466947505 0.18127256948791326 0.1360868635936726 0.1815453860455792 0.13619417068923234 C 0.18127256948791326 0.1360868635936726 0.17985040503936686 0.13500947587815199 0.1799807881936909 0.13510060624823508" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1799807881936909 0.13510060624823508 C 0.17992134966161868 0.13491160428436985 0.17919596260119108 0.13242455842429085 0.1792675258088243 0.13283258268185244 C 0.17919596260119108 0.13242455842429085 0.17910990502653146 0.1299852928637997 0.17912202970209246 0.13020431515749606" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36318355523081813,0.09340248932470152) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10737515777154849 0.10582040137155165 C 0.10717656441902917 0.10566684780982233 0.10569580458393449 0.10467213500037734 0.10618359765643264 0.10489908000117576 C 0.10569580458393449 0.10467213500037734 0.10415477757288977 0.10392756926568046 0.1044483993365596 0.1044587313667611 C 0.10415477757288977 0.10392756926568046 0.10426093991265092 0.10085036750657016 0.10442186707441369 0.1017121073946919 C 0.10426093991265092 0.10085036750657016 0.103482836365983 0.09928829203803065 0.103482836365983 0.09928829203803065 C 0.103482836365983 0.09928829203803065 0.10458279423617645 0.10257384728281364 0.10442186707441369 0.1017121073946919 C 0.10458279423617645 0.10257384728281364 0.10410324950085478 0.10483112210324003 0.1044483993365596 0.1044587313667611 C 0.10410324950085478 0.10483112210324003 0.10180617770120955 0.10365646314659714 0.1023509680601848 0.1039464518135654 C 0.10180617770120955 0.10365646314659714 0.10098443870312863 0.10251419062351588 0.10117965718270809 0.10271879936495153" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3651923328654609,0.09658039663257267) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.139360025856186 0.11393377354551593 C 0.139470929092145 0.11404015106914295 0.14087695484052462 0.1154675806847425 0.14069086468769404 0.11521030382904027 C 0.14087695484052462 0.1154675806847425 0.14166829460702468 0.11717199514601796 0.1415931076901531 0.11702109581394275" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1415931076901531 0.11702109581394275 C 0.14158674935809035 0.11721661178127106 0.14145935202279175 0.11974146405501379 0.14151680770540023 0.11936728742188245 C 0.14145935202279175 0.11974146405501379 0.14085254214830556 0.12168987607732183 0.1409036394988513 0.1215112154115188" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1409036394988513 0.1215112154115188 C 0.1409078723180085 0.12159923261057005 0.14093379711089482 0.12273329628981239 0.1409544333287378 0.12256742180013391 C 0.14093379711089482 0.12273329628981239 0.14058382859295854 0.12362640216234251 0.14065600488473556 0.12350170928766056 C 0.14058382859295854 0.12362640216234251 0.1399839410407967 0.12411383620092978 0.14008831782741343 0.1240637362963173 C 0.1399839410407967 0.12411383620092978 0.13929487383956063 0.12406499084857148 0.1394034834453346 0.12410290814301027 C 0.13929487383956063 0.12406499084857148 0.1387012619893522 0.12349295417798584 0.13878500255812598 0.12360872876305184 C 0.1387012619893522 0.12349295417798584 0.13836639612520968 0.12263902015214864 0.13839859662004939 0.12271361312221812" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13839859662004939 0.12271361312221812 C 0.1382851373051407 0.12261393815342535 0.13683939726757913 0.1212658032970706 0.1370370848411449 0.12151751349670478 C 0.13683939726757913 0.1212658032970706 0.1359421174786028 0.11954105549576652 0.13602634573725988 0.11969309072660793" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13602634573725988 0.11969309072660793 C 0.13602587815071304 0.11950632679816683 0.13606659296057108 0.11708331360825151 0.1360207346986978 0.1174519235853148 C 0.13606659296057108 0.11708331360825151 0.13662297072815946 0.11508792495322635 0.13657664487973933 0.11526977100184854" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3660337242112047,0.10033571762916574) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10642588022434118 0.10733923882209696 C 0.10630138140657354 0.107095918697854 0.10533444783709225 0.10540131978629412 0.1056788873177353 0.10587931807663913 C 0.10533444783709225 0.10540131978629412 0.10425340167724162 0.10386924786485956 0.10435924334048298 0.10447124908002696 C 0.10425340167724162 0.10386924786485956 0.10513260717052202 0.10148284961090291 0.10504383733828712 0.10226731078563472 C 0.10513260717052202 0.10148284961090291 0.10489186233389233 0.09976448203163608 0.10489186233389233 0.09976448203163608 C 0.10489186233389233 0.09976448203163608 0.10495506750605223 0.10305177196036654 0.10504383733828712 0.10226731078563472 C 0.10495506750605223 0.10305177196036654 0.1039784325737651 0.10455755787171842 0.10435924334048298 0.10447124908002696 C 0.1039784325737651 0.10455755787171842 0.10238368183582536 0.10222221854808056 0.10275897273797986 0.10278516353578343 C 0.10238368183582536 0.10222221854808056 0.1019989187924853 0.10081164842348081 0.10210749792755594 0.10109357915380976" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.36687511555694857,0.1040910386257589) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1392940681956065 0.11484690299452323 C 0.13936162212330178 0.11499586515875712 0.14019926538666325 0.11694828332771633 0.14010471532795 0.11663444896532987 C 0.14019926538666325 0.11694828332771633 0.1404556650311835 0.11877778754131324 0.14042866890016553 0.11861291534316068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14042866890016553 0.11861291534316068 C 0.14037667768808293 0.11876786447020932 0.13966732116904976 0.12074324135398352 0.1398047743551742 0.12047230486774424 C 0.13966732116904976 0.12074324135398352 0.1386937686926307 0.1219801405372227 0.1387792306666725 0.12186415317803205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1387792306666725 0.12186415317803205 C 0.13876177144580024 0.12193791940466595 0.13851283758055297 0.12287218855664958 0.1385697200162053 0.12274934789763875 C 0.13851283758055297 0.12287218855664958 0.13800639443393997 0.12339854870213456 0.13809664143884454 0.12333824108616204 C 0.13800639443393997 0.12339854870213456 0.13738732599527734 0.12345465448524595 0.13748675595735063 0.12347303928930903 C 0.13738732599527734 0.12345465448524595 0.13682151115276409 0.12302547240670825 0.13690348189396512 0.1231176234374052 C 0.13682151115276409 0.12302547240670825 0.13646055953651734 0.12222600145787155 0.1365031070629383 0.12236722692094545 C 0.13646055953651734 0.12222600145787155 0.13638372861974488 0.12134422546048274 0.1363929115769136 0.12142291788051833" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1363929115769136 0.12142291788051833 C 0.13632161587010133 0.12127794570439936 0.1354317652628894 0.11936737464869714 0.13553736309516634 0.1196832517670906 C 0.1354317652628894 0.11936737464869714 0.13509143546412547 0.11746148751752224 0.13512573758959015 0.11763239245979673" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13512573758959015 0.11763239245979673 C 0.13516991954731342 0.1174806812363424 0.13578232649483007 0.11553887853609837 0.13565592108226934 0.11581185777834466 C 0.13578232649483007 0.11553887853609837 0.1367248259951563 0.11423537353404933 0.13664260254031885 0.11435664155284128" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36668398343386377,0.1076119202535553) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10533539594110967 0.10792405931698769 C 0.1052891315051253 0.10765636395520693 0.10488323293260536 0.10573554485943126 0.10505780932520338 0.10631788714630315 C 0.10488323293260536 0.10573554485943126 0.10434291301867477 0.10388200381455054 0.10428793758552156 0.10443000559575635 C 0.10434291301867477 0.10388200381455054 0.10564927805241056 0.10244394411784219 0.10538766192412263 0.10302987645906825 C 0.10564927805241056 0.10244394411784219 0.1058576343552491 0.10091441154840004 0.1058576343552491 0.10091441154840004 C 0.1058576343552491 0.10091441154840004 0.1051260457958347 0.1036158088002943 0.10538766192412263 0.10302987645906825 C 0.1051260457958347 0.1036158088002943 0.10394820049059943 0.10428469691998593 0.10428793758552156 0.10443000559575635 C 0.10394820049059943 0.10428469691998593 0.10316908165667535 0.10148935657691341 0.10334923935458984 0.10215802440444573 C 0.10316908165667535 0.10148935657691341 0.10318328340527547 0.10012799433491526 0.10320699139803466 0.10041799863056247" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.36117477759617533,0.09022458201683031) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.16423810679390707 0.1579721617991305 C 0.16456072191149412 0.15819063850535425 0.16866782675883416 0.16106866133836772 0.16810948820495156 0.16059388227381535 C 0.16866782675883416 0.16106866133836772 0.17117389287679366 0.16392581293208766 0.1709381694404981 0.16366951057375903" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1709381694404981 0.16366951057375903 C 0.17120419443423474 0.16417079749951238 0.17457330237418847 0.17092921468203887 0.17413046936533746 0.16968495368279912 C 0.17457330237418847 0.17092921468203887 0.17642897356182455 0.17934361663812246 0.17625216554671017 0.17860064256463604" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17625216554671017 0.17860064256463604 C 0.176432946463667 0.18009140138459148 0.17890963575819455 0.1989887581335486 0.1784215365501921 0.19648974840410133 C 0.17890963575819455 0.1989887581335486 0.1824166743337851 0.2095970102274952 0.1821093560427395 0.20858875931800336" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1821093560427395 0.20858875931800336 C 0.1815545725808874 0.20774159109845672 0.17449789895355877 0.19629402253869196 0.17545195450051418 0.19842274068344357 C 0.17449789895355877 0.19629402253869196 0.17026141739417117 0.1817625916557791 0.17066068947927449 0.18304414158098406" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17066068947927449 0.18304414158098406 C 0.17038663328943457 0.18228932908578346 0.16689941342428016 0.17252984245761327 0.16737201520119546 0.17398639163857693 C 0.16689941342428016 0.17252984245761327 0.1647909225692154 0.1648638147236569 0.16498946815629079 0.16556555140941998" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16498946815629079 0.16556555140941998 C 0.16491635019431988 0.16519836636651736 0.1640494391657745 0.1605265484270645 0.1641120526126398 0.16115933089458864 C 0.1640494391657745 0.1605265484270645 0.1642486113090127 0.157706564374509 0.16423810679390707 0.1579721617991305" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35452171031126195,0.08648448797618777) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.16380726498020157 0.1557233726774684 C 0.16422062398756448 0.1559529849694857 0.16954947447441943 0.1590723857533391 0.1687675730685566 0.1584787201816759 C 0.16954947447441943 0.1590723857533391 0.1735586242490552 0.163211412817073 0.1731900818505553 0.16284735953742707" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1731900818505553 0.16284735953742707 C 0.17356784236766892 0.16366644027134258 0.17820458296589378 0.17457530602058519 0.17772320805591885 0.1726763283444131 C 0.17820458296589378 0.17457530602058519 0.1790701951631159 0.18671498859374863 0.1789665807702546 0.18563509165149206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1789665807702546 0.18563509165149206 C 0.17877436581435283 0.1870730176692207 0.17622302693844144 0.20602108588261253 0.17666000129943327 0.20289020386423562 C 0.17622302693844144 0.20602108588261253 0.1734781290332627 0.22489863187266315 0.17372288843835276 0.22320567587201487" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17372288843835276 0.22320567587201487 C 0.1737100975392952 0.2215414461266849 0.17337334788979158 0.19994355897276347 0.17356939764966203 0.20323491892805495 C 0.17337334788979158 0.19994355897276347 0.17118703245909447 0.18208222619855563 0.17137029131990736 0.18370935640851713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17137029131990736 0.18370935640851713 C 0.17124541721741798 0.18282592054582303 0.1695461043874269 0.1715465484236485 0.16987180209003483 0.1731081260561881 C 0.1695461043874269 0.1715465484236485 0.1672610952884935 0.16429228304819632 0.16746191888861206 0.16497042481804183" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16746191888861206 0.16497042481804183 C 0.16734062259367627 0.1645919213509956 0.16570180885701488 0.1596577955351058 0.16600636334938243 0.16042838321348693 C 0.16570180885701488 0.1596577955351058 0.16362400678276984 0.15533128846613353 0.16380726498020157 0.1557233726774684" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33496426930377954,0.0831324859432136) rotate(0) scale(1,1) translate(-0.17032379724492444,-0.1724012457115211)"><path d="M 0.15440980832739573 0.1690082196195475 C 0.15461608236326024 0.1687838418428014 0.15770592741916012 0.16589159026012665 0.15688509675776977 0.1663156862985943 C 0.15770592741916012 0.16589159026012665 0.1648743328896059 0.1637193488962142 0.16425977626408003 0.16391906715793575" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16425977626408003 0.16391906715793575 C 0.16505078347864255 0.16398604330158337 0.17515729087039592 0.16510053951363704 0.17375186283883037 0.16472278088170705 C 0.17515729087039592 0.16510053951363704 0.1817393334598696 0.16876295322937798 0.18112491264286656 0.1684521707410956" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18112491264286656 0.1684521707410956 C 0.18185083086683337 0.16939322001643098 0.19087103313098036 0.18188654691062844 0.1898359313304684 0.17974476204512 C 0.19087103313098036 0.18188654691062844 0.19385531782555554 0.19535432471736996 0.19354613424901038 0.19415358912719688" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.19354613424901038 0.19415358912719688 C 0.19289247195153658 0.19310635601534526 0.18452484888214737 0.18002021176357436 0.18570218667932498 0.18158679178497739 C 0.18452484888214737 0.18002021176357436 0.17889440518317537 0.17483528196080902 0.17941808068287918 0.17535462887036044" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17941808068287918 0.17535462887036044 C 0.17870328282700879 0.1750292677682939 0.16943998776008468 0.17098423834897375 0.1708405064124344 0.171450295645562 C 0.16943998776008468 0.17098423834897375 0.1619261360582031 0.16962124511677984 0.16261185685468244 0.16976194131130154" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16261185685468244 0.16976194131130154 C 0.16208712657183205 0.16982286357542817 0.15563158941653735 0.17043019833984144 0.1563150934604779 0.17049300848082094 C 0.15563158941653735 0.17043019833984144 0.15425103456630554 0.16888448721444138 0.15440980832739573 0.1690082196195475" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33244318350281316,0.08965158017567468) rotate(0) scale(1,1) translate(-0.16980773937849808,-0.17338622996962003)"><path d="M 0.15523160273477687 0.1683847534687967 C 0.15539918787371076 0.16819642986711347 0.15793861163731832 0.1657408975526488 0.15724262440198372 0.16612487024859787 C 0.15793861163731832 0.1657408975526488 0.1641118516551927 0.16358143202314204 0.163583449558792 0.16377708111740788" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.163583449558792 0.16377708111740788 C 0.16432817021349222 0.1638094631816477 0.1739445780096736 0.16447354248007517 0.17252009741519472 0.16416566588828596 C 0.1739445780096736 0.16447354248007517 0.1813569766323172 0.16774709474642788 0.18067721669253856 0.1674716002188785" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18067721669253856 0.1674716002188785 C 0.18148247659900327 0.1683302043883365 0.1916305318238535 0.17979646354098316 0.19034033557011504 0.17777485025237452 C 0.1916305318238535 0.17979646354098316 0.1966445080846741 0.19289396880133272 0.1961595717374003 0.1917309596821821" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1961595717374003 0.1917309596821821 C 0.1956110562053625 0.19109251275820358 0.1882764339000788 0.1829031733956837 0.18957738535294683 0.18406959659443972 C 0.1882764339000788 0.1829031733956837 0.17979571838215402 0.1772059050223326 0.18054815430298424 0.17773388129711007" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18054815430298424 0.17773388129711007 C 0.17951629573869557 0.17747861323171893 0.16656746958566424 0.17419998914317011 0.1681658515315202 0.1746706645124165 C 0.16656746958566424 0.17419998914317011 0.16080104757114555 0.17187036956229812 0.16136757095271284 0.17208577686615337" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16136757095271284 0.17208577686615337 C 0.16093560297942072 0.171888309972358 0.15567262458837933 0.1694077555241626 0.15618395527320733 0.169716174140609 C 0.15567262458837933 0.1694077555241626 0.15515224002324102 0.16827380174614567 0.15523160273477687 0.1683847534687967" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32005273796499967,0.09003142429914945) rotate(0) scale(1,1) translate(-0.16192350778479767,-0.15879886039430496)"><path d="M 0.1596056753420607 0.15849133326051743 C 0.15979282787956764 0.1583004159243948 0.16235238999044194 0.15593080043369859 0.16185150579214405 0.1562003252270462 C 0.16235238999044194 0.15593080043369859 0.1659300173824263 0.15517842828312134 0.16561628572163536 0.15525703574034633" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16561628572163536 0.15525703574034633 C 0.16654578881384696 0.15530664972364333 0.17869900197088714 0.15633350812894453 0.17677032282817437 0.15585240353991037 C 0.17869900197088714 0.15633350812894453 0.18975961148468973 0.16146178141449333 0.18876043543418855 0.16103029080875617" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18876043543418855 0.16103029080875617 C 0.1895500828505638 0.16198849287838252 0.199303224778554 0.1744428197712401 0.19823620443069148 0.1725287156442725 C 0.199303224778554 0.1744428197712401 0.20184205254002585 0.1849554423897085 0.2015646796085386 0.1839995403323673" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.2015646796085386 0.1839995403323673 C 0.20090012903360624 0.18330859538203353 0.1919975593848428 0.17476789503137355 0.19359007270935014 0.17570820092836212 C 0.1919975593848428 0.17476789503137355 0.1815265569648756 0.17246650862184953 0.18245451971445056 0.17271586956850435" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18245451971445056 0.17271586956850435 C 0.18135545503495282 0.17237329707658805 0.1675842941711039 0.16780708698182573 0.1692657435604777 0.16860499966550865 C 0.1675842941711039 0.16780708698182573 0.1616947423320892 0.16268557717254242 0.16227712704196523 0.16314091736430905" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16227712704196523 0.16314091736430905 C 0.16213521914278106 0.1629440191174651 0.16035161127676303 0.16039067306019883 0.16057423225175507 0.16077813840218147 C 0.16035161127676303 0.16039067306019883 0.15952496226625282 0.15830076616537875 0.1596056753420607 0.15849133326051743" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32016519534607946,0.08648448797618777) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.17459786389760157 0.15535787824187544 C 0.17442057844051304 0.15578042032284306 0.17217185666051496 0.1612294287615008 0.17247043841253928 0.16042838321348693 C 0.17217185666051496 0.1612294287615008 0.1708935865783739 0.16534892828508807 0.17101488287330968 0.16497042481804183" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17101488287330968 0.16497042481804183 C 0.1708140592731911 0.16564856658788735 0.16827930196927893 0.17466970368872772 0.16860499967188686 0.1731081260561881 C 0.16827930196927893 0.17466970368872772 0.16698163633952504 0.18459279227121123 0.1671065104420144 0.18370935640851713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1671065104420144 0.18370935640851713 C 0.16692325158120153 0.18533648661847862 0.16471135435238932 0.20652627888334643 0.16490740411225976 0.20323491892805495 C 0.16471135435238932 0.20652627888334643 0.1647411224245114 0.22486990561734485 0.16475391332356895 0.22320567587201487" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16475391332356895 0.22320567587201487 C 0.16450915391847892 0.2215127198713666 0.16139864580981464 0.19969214233818294 0.1618168004624885 0.20289020386423562 C 0.16139864580981464 0.19969214233818294 0.15956266224389862 0.1833238320339782 0.15973605749148245 0.18482893755938262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15973605749148245 0.18482893755938262 C 0.15982251298158687 0.1839067688477609 0.16122954395344882 0.1719511087525196 0.16077352337273554 0.17376291301992192 C 0.16122954395344882 0.1719511087525196 0.16557786955065057 0.16219765079477425 0.16520830446004173 0.16308728635055483" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16520830446004173 0.16308728635055483 C 0.16558338147948534 0.1627032391698149 0.17049169197982847 0.15783460283928594 0.16970922869336516 0.1584787201816759 C 0.17049169197982847 0.15783460283928594 0.17500525016462126 0.1550978080802254 0.17459786389760157 0.15535787824187544" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3380835179062388,0.0785920271366192) rotate(0) scale(1,1) translate(-0.17032379724492444,-0.1724012457115211)"><path d="M 0.15379431201515012 0.170263704061233 C 0.15416889124309147 0.16993263374588768 0.15944687117339285 0.16574912349070856 0.15828926275044625 0.16629086027708917 C 0.15944687117339285 0.16574912349070856 0.16846864228551447 0.16355219615363042 0.16768561309050922 0.16376286262466572" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16768561309050922 0.16376286262466572 C 0.16864845143764173 0.16394464175004417 0.1808167693952474 0.1666573916804685 0.17923967325609935 0.165944212129207 C 0.1808167693952474 0.1666573916804685 0.18722502455230136 0.17285241766568646 0.18661076676028582 0.17232101723980342" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18661076676028582 0.17232101723980342 C 0.18710340684599325 0.1736124375267991 0.1929081497566231 0.19164318341593617 0.19252244778877492 0.18781806068375187 C 0.1929081497566231 0.19164318341593617 0.19113225225660474 0.22075619247120373 0.191239190374464 0.21822249002601513" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.191239190374464 0.21822249002601513 C 0.19099995911247827 0.21596751961401686 0.1874623655312719 0.18777478711154688 0.18836841523063527 0.19116284508203596 C 0.1874623655312719 0.18777478711154688 0.179699775544726 0.17643270682165546 0.18036659398210364 0.17756579438014627" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18036659398210364 0.17756579438014627 C 0.17961331669815814 0.17708008834385322 0.16984770514747255 0.17108700085555925 0.17132726657475764 0.17173732194462965 C 0.16984770514747255 0.17108700085555925 0.16188557271134282 0.1695973262585242 0.16261185685468244 0.16976194131130154" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16261185685468244 0.16976194131130154 C 0.16223074237802268 0.16976532053851756 0.15730368773147113 0.16984430560038816 0.15803848313476548 0.16980249203789388 C 0.15730368773147113 0.16984430560038816 0.1534406310885155 0.17030213839651126 0.15379431201515012 0.170263704061233" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3421649608740355,0.0772527350557205) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.12735079409777778 0.1428824330448791 C 0.12681780420255354 0.142497455251424 0.11978684986937696 0.1376264991755668 0.12095491535508701 0.13826269952341788 C 0.11978684986937696 0.1376264991755668 0.11269893267877135 0.13499680631627006 0.11333400826925717 0.13524802887066606" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11333400826925717 0.13524802887066606 C 0.1139271180228449 0.13564730569613026 0.12170695974019971 0.14122828319113773 0.12045132531230993 0.14003935077623633 C 0.12170695974019971 0.14122828319113773 0.12906414607823657 0.1503048734389199 0.12840162140393452 0.1495152178494827" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12840162140393452 0.1495152178494827 C 0.1272299208764408 0.14894961959721975 0.11239637631238952 0.14187341882319748 0.1143412150740099 0.14272803882232726 C 0.11239637631238952 0.14187341882319748 0.10429041803036318 0.13897075611305848 0.10506355626448985 0.1392597778599253" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10506355626448985 0.1392597778599253 C 0.10579007879977927 0.1393656465123922 0.11511305369559424 0.1408659734518812 0.1137818266879628 0.14053020168952818 C 0.11511305369559424 0.1408659734518812 0.12164298482840909 0.14351894211804778 0.12103828035606706 0.14328903900816164" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12103828035606706 0.14328903900816164 C 0.12052873148347895 0.14284154776364366 0.11370022351521923 0.13706075838930679 0.11492369388500964 0.13791914407394587 C 0.11370022351521923 0.13706075838930679 0.1056427144213799 0.13257751635237164 0.10635663591858219 0.13298841079249274" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10635663591858219 0.13298841079249274 C 0.10718085347073701 0.1331087516013041 0.11748042104803343 0.13468090717254994 0.11624724654444013 0.13443250049822886 C 0.11748042104803343 0.13468090717254994 0.12156368691314012 0.13609735674985526 0.12115472996170167 0.13596929088434553" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12115472996170167 0.13596929088434553 C 0.12055614603395293 0.1355283005470406 0.11277179376766977 0.13001345117689442 0.11397172282871683 0.13067740683668624 C 0.11277179376766977 0.13001345117689442 0.10615423609583854 0.12777885764435673 0.10675558122913688 0.12800182296684362" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10675558122913688 0.12800182296684362 C 0.10742905216156036 0.12805775949282688 0.11602885609744588 0.12892817469072568 0.11483723241821862 0.1286730612786427 C 0.11602885609744588 0.12892817469072568 0.1215732181266678 0.1312623607979391 0.12105506537986402 0.13106318391183938" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12105506537986402 0.13106318391183938 C 0.12083673658449468 0.13084879186359594 0.11788540707162533 0.12808443650341336 0.11843511983543187 0.128490479332918 C 0.11788540707162533 0.12808443650341336 0.11412712824574828 0.12599901917652284 0.11445851221418547 0.126190669957784" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11445851221418547 0.126190669957784 C 0.11503913756116432 0.12647375189380292 0.12233848163361914 0.1304382992314811 0.12142601637793175 0.12958765319001095 C 0.12233848163361914 0.1304382992314811 0.1257399351911427 0.13696598656087705 0.12540809528243418 0.1363984224554258" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12540809528243418 0.1363984224554258 C 0.1250244186467278 0.13611440793254787 0.11999702792865585 0.13246588543457327 0.12080397565395755 0.13299024818089056 C 0.11999702792865585 0.13246588543457327 0.11530145148921857 0.12986572127617918 0.11572472257881387 0.1301060694996185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11572472257881387 0.1301060694996185 C 0.11625378872771593 0.13050417273435294 0.12304235565888542 0.1359480052785368 0.12207351636563843 0.13488330831643175 C 0.12304235565888542 0.1359480052785368 0.12779056724212273 0.1435490267722497 0.12735079409777778 0.1428824330448791" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3285365406769344,0.07217006215586225) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.18028705757842445 0.14705264825063474 C 0.17988960638145432 0.14774783187485188 0.17476598306140678 0.15689176582722125 0.1755176432147829 0.15539485174124026 C 0.17476598306140678 0.15689176582722125 0.1709129267815052 0.1658173477441705 0.17126713573791116 0.16501561728240663" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17126713573791116 0.16501561728240663 C 0.17096127999914687 0.1660746262512823 0.1670670748292771 0.17993967112746923 0.16759686687273975 0.1777237249089146 C 0.1670670748292771 0.17993967112746923 0.1646856949116609 0.19276390915474098 0.1649096312163593 0.19160697190506204" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1649096312163593 0.19160697190506204 C 0.16484589740092864 0.1929299085561043 0.16423417803307455 0.2102823419333829 0.1641448254311915 0.20748221171756923 C 0.16423417803307455 0.2102823419333829 0.1661349488562696 0.22668572805959755 0.16598186243895588 0.22520853449482614" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16598186243895588 0.22520853449482614 C 0.16543993240746022 0.22330119642592955 0.1588559833958272 0.1986766190477766 0.15947870206100792 0.2023204776680669 C 0.1588559833958272 0.1986766190477766 0.15842844982310242 0.1797457104999487 0.15850923845678747 0.1814822310513424" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15850923845678747 0.1814822310513424 C 0.15876806973408322 0.1803881365758246 0.16227726591992028 0.16635303933671317 0.16161521378433655 0.16835309734512863 C 0.16227726591992028 0.16635303933671317 0.16685708494208035 0.15657557141745915 0.16645386408379237 0.1574815349503568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16645386408379237 0.1574815349503568 C 0.16700727540077326 0.15683658368470946 0.17424756601211558 0.1488730458709452 0.1730947998875629 0.1497421197625887 C 0.17424756601211558 0.1488730458709452 0.18088641238599623 0.14682852562463858 0.18028705757842445 0.14705264825063474" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33123169224771243,0.07230831762824619) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17330199401209684 0.1617154054971286 C 0.1730210533229113 0.16204011296444393 0.16932799658932648 0.1664306169993167 0.16993070574187014 0.16561189510491273 C 0.16932799658932648 0.1664306169993167 0.1657477157182149 0.17203408265706485 0.166069484181573 0.17154006822997622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.166069484181573 0.17154006822997622 C 0.1656453289695604 0.17254997191619564 0.16022027671185543 0.18630236760136884 0.16097962163742194 0.18365891246460922 C 0.16022027671185543 0.18630236760136884 0.15662215536122093 0.20489508132163192 0.15695734507477485 0.20326152987109172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15695734507477485 0.20326152987109172 C 0.15691603356040054 0.20466995599777635 0.1566337424383651 0.2233029716979687 0.15646160690228306 0.22016264339130717 C 0.1566337424383651 0.2233029716979687 0.15923641855821563 0.2426773717310068 0.1590229715077593 0.2409454695510299" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1590229715077593 0.2409454695510299 C 0.15848299994213563 0.239114339298068 0.1519413477774297 0.21521573119277848 0.15254331272027524 0.2189719065154869 C 0.1519413477774297 0.21521573119277848 0.15173739881639103 0.19394632060878245 0.1517993921936129 0.19587136567852895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1517993921936129 0.19587136567852895 C 0.15219650746276525 0.19438621101389097 0.1575840062273308 0.17556970795198834 0.15656477542344094 0.17804950970287317 C 0.1575840062273308 0.17556970795198834 0.16465227737502872 0.16511909758166401 0.1640301618402912 0.16611374466791087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1640301618402912 0.16611374466791087 C 0.16443100294323473 0.1657614785365586 0.16961290775659738 0.16152002282745154 0.16884025507561357 0.1618865510916834 C 0.16961290775659738 0.16152002282745154 0.17367380559013712 0.16170114336424904 0.17330199401209684 0.1617154054971286" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3460557119605149,0.07217006215586225) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.17845577877497404 0.14705264825063474 C 0.17905513358254582 0.1472767708766309 0.1868008025903882 0.1506111936542322 0.18564803646583553 0.1497421197625887 C 0.1868008025903882 0.1506111936542322 0.19284238358658695 0.15812648621600414 0.19228897226960606 0.1574815349503568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19228897226960606 0.1574815349503568 C 0.19269219312789404 0.15838749848325445 0.19778967470464556 0.1703531553535441 0.19712762256906183 0.16835309734512863 C 0.19778967470464556 0.1703531553535441 0.2004924291739067 0.1825763255268602 0.20023359789661094 0.1814822310513424" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20023359789661094 0.1814822310513424 C 0.2001528092629259 0.1832187516027361 0.19864141562720986 0.20596433628835722 0.19926413429239054 0.2023204776680669 C 0.19864141562720986 0.20596433628835722 0.19221904388294694 0.22711587256372273 0.1927609739144426 0.22520853449482614" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1927609739144426 0.22520853449482614 C 0.19291406033175632 0.22373134093005473 0.19468736352409005 0.20468208150175554 0.194598010922207 0.20748221171756923 C 0.19468736352409005 0.20468208150175554 0.1937694713216085 0.19028403525401977 0.19383320513703914 0.19160697190506204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19383320513703914 0.19160697190506204 C 0.19360926883234078 0.1904500346553831 0.19061617743719605 0.17550777869036 0.1911459694806587 0.1777237249089146 C 0.19061617743719605 0.17550777869036 0.18716984487672295 0.16395660831353095 0.18747570061548724 0.16501561728240663" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18747570061548724 0.16501561728240663 C 0.18712149165908126 0.16421388682064275 0.18247353298523938 0.15389793765525928 0.1832251931386155 0.15539485174124026 C 0.18247353298523938 0.15389793765525928 0.1780583275780039 0.1463574646264176 0.17845577877497404 0.14705264825063474" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3433605603897368,0.07230831762824619) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17020579493669494 0.1617154054971286 C 0.17057760651473522 0.16172966763000815 0.17544018655416208 0.16225307935591526 0.17466753387317827 0.1618865510916834 C 0.17544018655416208 0.16225307935591526 0.17987846821144418 0.16646601079926315 0.17947762710850065 0.16611374466791087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17947762710850065 0.16611374466791087 C 0.1800997426432382 0.16710839175415773 0.18796224432924083 0.180529311453758 0.18694301352535098 0.17804950970287317 C 0.18796224432924083 0.180529311453758 0.1921055120243313 0.19735652034316692 0.19170839675517895 0.19587136567852895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19170839675517895 0.19587136567852895 C 0.19164640337795708 0.19779641074827545 0.19036251128567108 0.2227280818381953 0.19096447622851662 0.2189719065154869 C 0.19036251128567108 0.2227280818381953 0.18394484587540882 0.24277659980399183 0.1844848174410325 0.2409454695510299" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1844848174410325 0.2409454695510299 C 0.18469826449148888 0.239213567371053 0.1872183175825909 0.21702231508464565 0.18704618204650883 0.22016264339130717 C 0.1872183175825909 0.21702231508464565 0.18650913235964273 0.2018531037444071 0.18655044387401704 0.20326152987109172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18655044387401704 0.20326152987109172 C 0.1862152541604631 0.20162797842055152 0.18176882238580339 0.1810154573278496 0.1825281673113699 0.18365891246460922 C 0.18176882238580339 0.1810154573278496 0.17701414955520622 0.1705301645437568 0.1774383047672188 0.17154006822997622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1774383047672188 0.17154006822997622 C 0.1771165363038607 0.1710460538028876 0.17297437405437802 0.16479317321050876 0.17357708320692167 0.16561189510491273 C 0.17297437405437802 0.16479317321050876 0.1699248542475094 0.16139069802981326 0.17020579493669494 0.1617154054971286" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 58 KiB

View File

@@ -0,0 +1,192 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.17716506146519984 C 0.18212967599427538 0.17716506146519984 0.17846063896830366 0.16798843044188 0.17805296818764013 0.16869432513598154 C 0.17846063896830366 0.16798843044188 0.18824473770422837 0.16940021983008308 0.18783706692356483 0.16869432513598154 C 0.18824473770422837 0.16940021983008308 0.18212967599427538 0.17716506146519984 0.18294501755560244 0.17716506146519984 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3348974281446895,0.08735966945830426) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17473173091616476 0.15515504134074748 C 0.17492356543594856 0.15537839045035504 0.17723397535986488 0.1595939708659947 0.1770337451535704 0.15783523065603827 C 0.17723397535986488 0.1595939708659947 0.17714288907820908 0.1777953149605734 0.1771344933916984 0.17625992386022454" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1771344933916984 0.17625992386022454 C 0.17688592305901651 0.17685620844610433 0.17348654092682572 0.18449291220391797 0.17415164939951588 0.183415338890782 C 0.17348654092682572 0.18449291220391797 0.16873665357940815 0.18967209234511268 0.16915319171941642 0.18919080361785648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16915319171941642 0.18919080361785648 C 0.16862398988272517 0.18950515780045457 0.1616113389116018 0.19353070435823463 0.1628027696791214 0.1929630538090337 C 0.1616113389116018 0.19353070435823463 0.1541937935783527 0.19625590657487058 0.15485602250918107 0.19600261020826773" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15485602250918107 0.19600261020826773 C 0.15555075538483426 0.1953346550567061 0.16420031449198436 0.18691999723199085 0.16319281701701946 0.18798714838952835 C 0.16420031449198436 0.18691999723199085 0.1672587568080716 0.18279760031184183 0.16694599220875989 0.1831967963178177" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16694599220875989 0.1831967963178177 C 0.1670598614715064 0.18220767081281444 0.1686315195320091 0.16933784439751992 0.16831242336171806 0.17132729025777846 C 0.1686315195320091 0.16933784439751992 0.1709803731597971 0.1583231256394601 0.17077514625225257 0.15932344599471537" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17077514625225257 0.15932344599471537 C 0.17098544244708264 0.15907692169304127 0.17362841597887285 0.15601778732012878 0.17329870059021352 0.15636515437462611 C 0.17362841597887285 0.15601778732012878 0.17485115010999402 0.15505419858792427 0.17473173091616476 0.15515504134074748" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32509449377141697,0.08737172314236655) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.1782992728829517 0.15683637556144928 C 0.17835644576458753 0.15698143808647286 0.1788339127434543 0.15918935528164002 0.17898534746258185 0.1585771258617322 C 0.1788339127434543 0.15918935528164002 0.1762734486526579 0.16465029549522747 0.17648205625342128 0.16418312860034323" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17648205625342128 0.16418312860034323 C 0.17634895158858527 0.16484000254035389 0.17458860064434814 0.1733990850713574 0.17488480027538894 0.17206561588047103 C 0.17458860064434814 0.1733990850713574 0.17276456571472687 0.1808613541418554 0.17292766068093166 0.18018475889097968" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17292766068093166 0.18018475889097968 C 0.17254953282563082 0.18091043074903312 0.16750767481180198 0.1906280543790184 0.1683901264173216 0.18889282118762085 C 0.16750767481180198 0.1906280543790184 0.1618339176644776 0.20201711852109422 0.16233824141469638 0.20100755718775012" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16233824141469638 0.20100755718775012 C 0.16258892619176357 0.19998039693540332 0.16567902761657471 0.18703298737694934 0.16534645873950254 0.18868163415958852 C 0.16567902761657471 0.18703298737694934 0.16641095203956752 0.18060230926578763 0.1663290679395625 0.18122379579608" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1663290679395625 0.18122379579608 C 0.16645669641363767 0.18040523704676206 0.16825093246457523 0.16987345532603104 0.16786060962846433 0.1714010908042648 C 0.16825093246457523 0.16987345532603104 0.1712756363349292 0.16218309332835926 0.17101294197289343 0.16289217005727508" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17101294197289343 0.16289217005727508 C 0.1713183027083009 0.1625294115586457 0.17528446504028777 0.15803441853240366 0.17467727079778292 0.15853906807372248 C 0.17528446504028777 0.15803441853240366 0.17860110639004909 0.15669448451875984 0.1782992728829517 0.15683637556144928" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3139562258691485,0.089980595073294) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.1804636431519002 0.14178955932394385 C 0.18017322464743685 0.1426984316929933 0.17649833692686034 0.15460035775266662 0.17697862109834006 0.15269602775253693 C 0.17649833692686034 0.15460035775266662 0.1745103674271274 0.1656369769565803 0.17470023309414376 0.16464151932550006" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17470023309414376 0.16464151932550006 C 0.1747567138213225 0.1657349109450749 0.1754062421838779 0.18007370181624793 0.17537800182028854 0.1777622187603981 C 0.1754062421838779 0.18007370181624793 0.17501087709362684 0.19359740743197293 0.1750391174572162 0.19237931599569794" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1750391174572162 0.19237931599569794 C 0.17496408813353345 0.19360466657714193 0.17423043822818562 0.2098249565821728 0.1741387655730233 0.20708352297302576 C 0.17423043822818562 0.2098249565821728 0.17630589129800903 0.2267926023331653 0.17613918931916397 0.22527651930546227" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17613918931916397 0.22527651930546227 C 0.17570946723859598 0.22378441701174004 0.17027844671390818 0.20455521772187682 0.1709825243523481 0.20737129178079539 C 0.17027844671390818 0.20455521772187682 0.16741590210001306 0.19015965883324326 0.16769025765788498 0.1914836305984396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16769025765788498 0.1914836305984396 C 0.16748895608208086 0.1903706102837444 0.16521423858750722 0.17553995895593805 0.16527463874823575 0.17812738682209744 C 0.16521423858750722 0.17553995895593805 0.16710635714421826 0.15896008865306246 0.16696545572914268 0.16043449620452668" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16696545572914268 0.16043449620452668 C 0.16744517072454942 0.15940690845648375 0.17384688462592016 0.14654969848796312 0.1727220356740237 0.1481034432280117 C 0.17384688462592016 0.14654969848796312 0.1811087771083899 0.1412634023319382 0.1804636431519002 0.14178955932394385" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32957696907750067,0.08620507345131107) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17610016930267594 0.1568835375346352 C 0.17618000753732183 0.15702747783577467 0.17709366215479438 0.15923818205377083 0.17705822811842659 0.15861082114830893 C 0.17709366215479438 0.15923818205377083 0.17648097354081152 0.16489528900450018 0.1765253777390896 0.16441186840017777" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1765253777390896 0.16441186840017777 C 0.1763960123165988 0.16538414410877364 0.17457232921871002 0.17777198905968034 0.1749729926691998 0.1760791769033281 C 0.17457232921871002 0.17777198905968034 0.17144611830521336 0.18544615072416085 0.17171741633321233 0.1847256142764045" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17171741633321233 0.1847256142764045 C 0.1713516808583231 0.1852207653163008 0.16634810202268563 0.1917248537843652 0.16732859063454159 0.19066742675516019 C 0.16634810202268563 0.1917248537843652 0.15933679985397398 0.19797701461617365 0.15995155299094072 0.19741473862686493" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15995155299094072 0.19741473862686493 C 0.1602087497655002 0.19684041175679604 0.16351024580990822 0.18928373286528052 0.16303791428565453 0.19052281618603825 C 0.16351024580990822 0.18928373286528052 0.1658346660316792 0.18188098232708347 0.165619531281985 0.1825457387777723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.165619531281985 0.1825457387777723 C 0.16576605689177407 0.18175437855931853 0.16770365206458163 0.17161333936129805 0.1673778385994537 0.173049416156327 C 0.16770365206458163 0.17161333936129805 0.16970858071885897 0.16466810066084978 0.16952929286352011 0.16531281723742494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16952929286352011 0.16531281723742494 C 0.169813811013243 0.1648352238736305 0.17349108369679095 0.15887925689665933 0.17294351066019462 0.1595816968718918 C 0.17349108369679095 0.15887925689665933 0.1763632241895494 0.15665869092319715 0.17610016930267594 0.1568835375346352" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.3139562258691485,0.089980595073294) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18137348365384812 0.13022662738116514 C 0.18135367710446937 0.13044290002989778 0.18104947139920546 0.1332230748662845 0.18113580506130303 0.13282189916595685 C 0.18104947139920546 0.1332230748662845 0.1802709525959585 0.13522563883669197 0.1803374797086773 0.13504073578509695" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1803374797086773 0.13504073578509695 C 0.18020272402806256 0.13512630454251354 0.17844132678767846 0.1361641147732797 0.1787204115413005 0.136067560874096 C 0.17844132678767846 0.1361641147732797 0.1768441335922057 0.13621036771706835 0.17698846266521298 0.13619938257530123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17698846266521298 0.13619938257530123 C 0.17693111843743398 0.13624843322726674 0.17617887417326783 0.1368379672635446 0.1763003319318651 0.13678799039888742 C 0.17617887417326783 0.1368379672635446 0.17541315236617688 0.1367525847593541 0.175530969562046 0.13679910495118736 C 0.17541315236617688 0.1367525847593541 0.17480391797078246 0.13609919589639785 0.1748865255814358 0.13622974809688812 C 0.17480391797078246 0.13609919589639785 0.1745144148513315 0.13505287569284835 0.17453967823420585 0.13523247854530415 C 0.1745144148513315 0.13505287569284835 0.1746222151348875 0.13389398480227116 0.17458336498694357 0.13407451386741862 C 0.1746222151348875 0.13389398480227116 0.1750410895947485 0.1329820977548778 0.17500588000953274 0.13306612976353477" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17500588000953274 0.13306612976353477 C 0.17501997291230625 0.13284932074582 0.17525214988150647 0.13004874005057557 0.17517499484281485 0.1304644215509577 C 0.17525214988150647 0.13004874005057557 0.17599480260975048 0.12787907927628178 0.17593174047383237 0.12807795175894915" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17593174047383237 0.12807795175894915 C 0.17605740320039615 0.12798650601054623 0.17770959932281366 0.1268695430788758 0.17743969319259756 0.12698060277811396 C 0.17770959932281366 0.1268695430788758 0.1793148574400779 0.12672562141725596 0.1791706140364256 0.12674523536809118" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31181878711526656,0.09305400747068895) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10757522874718545 0.1028456604331691 C 0.10737110815217132 0.10304121922265913 0.10579058184885139 0.1042867259455536 0.10635050517710072 0.10401901317010923 C 0.10579058184885139 0.1042867259455536 0.10388016737568571 0.10407133004408499 0.10421568877768941 0.10445193708583533 C 0.10388016737568571 0.10407133004408499 0.10452959070880768 0.10088844000201329 0.10433737676507852 0.10173537091960715 C 0.10452959070880768 0.10088844000201329 0.10536897244006437 0.0993703515802722 0.10536897244006437 0.0993703515802722 C 0.10536897244006437 0.0993703515802722 0.10414516282134936 0.102582301837201 0.10433737676507852 0.10173537091960715 C 0.10414516282134936 0.102582301837201 0.10390095769902191 0.10496711854268244 0.10421568877768941 0.10445193708583533 C 0.10390095769902191 0.10496711854268244 0.10194877756388533 0.10503380609454979 0.10244899029307356 0.10482645966068976 C 0.10194877756388533 0.10503380609454979 0.10100864942080784 0.10584094169371312 0.10121441240256009 0.1056960156889955" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3096813483613846,0.09612741986808382) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393500045036057 0.1153117382421398 C 0.13939048160728176 0.11549328891532376 0.1398692814438944 0.11785666416879187 0.13983572974771818 0.11749034632034719 C 0.1398692814438944 0.11785666416879187 0.13974569945022064 0.1198923195987367 0.13975262485772044 0.11970755242347597" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13975262485772044 0.11970755242347597 C 0.13966235272030306 0.11985500699023002 0.13846111880615047 0.12171908102848927 0.13866935920871182 0.12147700722452466 C 0.13846111880615047 0.12171908102848927 0.1371357717618405 0.12270705730826179 0.13725374002698446 0.12261243807105124" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13725374002698446 0.12261243807105124 C 0.1372186598567344 0.12268510522042608 0.13674425106208998 0.12359603944771518 0.1368327779839839 0.12348444386354938 C 0.13674425106208998 0.12359603944771518 0.13608047789351665 0.12398527239337395 0.13619141696425724 0.1239515850810408 C 0.13608047789351665 0.12398527239337395 0.13539788394992372 0.12383544416391294 0.13550150913509695 0.12388869161154727 C 0.13539788394992372 0.12383544416391294 0.13487936972725517 0.12318670111241979 0.13494791474217838 0.12331261570942895 C 0.13487936972725517 0.12318670111241979 0.1346638706927393 0.12221287341563725 0.1346789689560186 0.12237771644743735 C 0.1346638706927393 0.12221287341563725 0.1347740494683942 0.12124756456786019 0.13476673558282684 0.12133449932782767" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13476673558282684 0.12133449932782767 C 0.1347213321301594 0.12115593209115592 0.13417682854517787 0.11881945825625163 0.1342218941508178 0.1191916924877668 C 0.13417682854517787 0.11881945825625163 0.13422628616217525 0.11667402155480229 0.13422594831514775 0.11686768854964572" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13422594831514775 0.11686768854964572 C 0.13430705501038306 0.1167210391758397 0.135395955151069 0.11485990587693848 0.13519922865797138 0.11510789606397356 C 0.135395955151069 0.11485990587693848 0.1367022860301817 0.11379046549199558 0.13658666623231935 0.11389180630522465" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30870229957985607,0.0998132680809624) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10669483825206118 0.10120497084771027 C 0.1065754983081802 0.10148008537558541 0.10558053370387524 0.10339940693582503 0.10597879858877525 0.10285565801496109 C 0.10558053370387524 0.10339940693582503 0.10392384667799039 0.10436864905749563 0.10430524894266108 0.10446746437289389 C 0.10392384667799039 0.10436864905749563 0.10362788832494181 0.10148349396362191 0.10369038500075113 0.10226276612257149 C 0.10362788832494181 0.10148349396362191 0.10393026888780514 0.09979183141919647 0.10393026888780514 0.09979183141919647 C 0.10393026888780514 0.09979183141919647 0.10375288167656045 0.10304203828152106 0.10369038500075113 0.10226276612257149 C 0.10375288167656045 0.10304203828152106 0.1041776124592458 0.10505935213435445 0.10430524894266108 0.10446746437289389 C 0.1041776124592458 0.10505935213435445 0.10256037741383406 0.10627488296890257 0.10292456610025946 0.10581409269133486 C 0.10256037741383406 0.10627488296890257 0.10198604194475018 0.10746855826279433 0.10212011682410865 0.10723220603830012" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3077232507983275,0.10349911629384105) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13931498008367765 0.11440596610331448 C 0.1393937848939506 0.11452884627038762 0.14037879698781555 0.11615506808392465 0.14026063780695308 0.11588052810819215 C 0.14037879698781555 0.11615506808392465 0.14077224462461665 0.11785210562076387 0.14073289025402716 0.11770044581210451" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14073289025402716 0.11770044581210451 C 0.14069236077014627 0.11786832965811597 0.1401290328030688 0.12002385801978901 0.1402465364474565 0.11971505196424213 C 0.1401290328030688 0.12002385801978901 0.13924587236086802 0.12154704068820243 0.13932284652137483 0.12140611847866703" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13932284652137483 0.12140611847866703 C 0.13931085825007544 0.12148365286355842 0.13913116054349173 0.12247475954922088 0.13917898726578226 0.12233653109736367 C 0.13913116054349173 0.12247475954922088 0.13866300165621556 0.12315314479073085 0.13874892585388854 0.1230648599009536 C 0.13866300165621556 0.12315314479073085 0.13804689854002805 0.12341063523746815 0.13814789689370668 0.12339594977469057 C 0.13804689854002805 0.12341063523746815 0.13744793552736578 0.12317823653217078 0.13753694560974503 0.12324108545428458 C 0.13744793552736578 0.12317823653217078 0.1370266042737677 0.12251821972024528 0.1370797759051558 0.1226417627093249 C 0.1370266042737677 0.12251821972024528 0.13688381187708215 0.1216849701583294 0.1368988860330878 0.12175856958532905" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368988860330878 0.12175856958532905 C 0.13681662984327955 0.12164079994509248 0.1357824305352286 0.1200724256448442 0.1359118117553887 0.12034533390249032 C 0.1357824305352286 0.1200724256448442 0.13529918636081495 0.11832853187616617 0.13534631139116676 0.11848367049357572" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13534631139116676 0.11848367049357572 C 0.13537925786059526 0.11832149792647823 0.13584795062939872 0.11623042535094523 0.13574166902430865 0.1165375996884057 C 0.13584795062939872 0.11623042535094523 0.1366950257879091 0.11465257667368707 0.13662169065224752 0.11479757844405004" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30779451625296184,0.10698940217299886) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10560837030684858 0.10049780194875636 C 0.10557441902485344 0.1007838957178755 0.10519970906521048 0.10286959279961269 0.10540466261487777 0.10221436456347112 C 0.10519970906521048 0.10286959279961269 0.10403070258146556 0.10456096529904238 0.10437864900884485 0.10442917136560581 C 0.10403070258146556 0.10456096529904238 0.10307315900520324 0.10241618785932494 0.10331698405060205 0.1030051281640905 C 0.10307315900520324 0.10241618785932494 0.10291569873645197 0.10089552953701242 0.10291569873645197 0.10089552953701242 C 0.10291569873645197 0.10089552953701242 0.10356080909600086 0.10359406846885608 0.10331698405060205 0.1030051281640905 C 0.10356080909600086 0.10359406846885608 0.10441520474183001 0.10497330024671718 0.10437864900884485 0.10442917136560581 C 0.10441520474183001 0.10497330024671718 0.1033399814722665 0.10683991617588219 0.10353631844851306 0.1062699014507587 C 0.1033399814722665 0.10683991617588219 0.10314467860184087 0.10811248609394483 0.10320062715136546 0.10784925971634682" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3139562258691485,0.089980595073294) rotate(0) scale(1,1) translate(-0.17115841836591697,-0.1716896655664302)"><path d="M 0.17791926353173207 0.15797353354950727 C 0.1779048499946346 0.15823910441438632 0.17765729991645857 0.1617931031173332 0.17774630108656256 0.16116038392805582 C 0.17765729991645857 0.1617931031173332 0.17677666185747767 0.16593331214523402 0.1768512494904842 0.1655661638208357" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1768512494904842 0.1655661638208357 C 0.1766487131371086 0.1662678303329302 0.17393871217734563 0.17544256549201523 0.17442081324997694 0.17398616196596967 C 0.17393871217734563 0.17544256549201523 0.17078647189965293 0.18379774314733363 0.17106603661890862 0.18304300613338256" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17106603661890862 0.18304300613338256 C 0.17065873916489474 0.18432442790359502 0.1652052351072927 0.20054857264886905 0.16617846717074192 0.1984200673759319 C 0.1652052351072927 0.20054857264886905 0.15882131724808266 0.20943215291135286 0.15938725185751798 0.20858506940862817" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15938725185751798 0.20858506940862817 C 0.1597007472462136 0.20757691932422728 0.16361079862471592 0.19420914056713284 0.16314919652186544 0.1964872683958176 C 0.16361079862471592 0.19420914056713284 0.16507458380587858 0.1799775577201273 0.16492647709172373 0.18124753546441116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16492647709172373 0.18124753546441116 C 0.16508784071166047 0.18045626182741567 0.16727961025456894 0.1704007488730963 0.16686284053096453 0.17175225182046527 C 0.16727961025456894 0.1704007488730963 0.17018311987864448 0.16446927078561 0.16992771377497679 0.16502950009598347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16992771377497679 0.16502950009598347 C 0.17019223920861368 0.1647354681593705 0.17376798145834918 0.1609131196444217 0.17310201897861957 0.16150111685662805 C 0.17376798145834918 0.1609131196444217 0.1783207005778248 0.15767956827391388 0.17791926353173207 0.15797353354950727" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3207430198064888,0.08624087504205558) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.17412068103152176 0.15535922715600506 C 0.17385697775019343 0.15585137493911028 0.17056106303991028 0.16210465930580756 0.17095624165558176 0.16126500055326756 C 0.17056106303991028 0.16210465930580756 0.16924706230912098 0.16578264315591992 0.1693785376434641 0.16543513218648512" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1693785376434641 0.16543513218648512 C 0.16925882831165356 0.16598164889127848 0.16774911914513163 0.17351606080970083 0.1679420256617377 0.17199333264400543 C 0.16774911914513163 0.17351606080970083 0.16699046225939607 0.18468408163573208 0.16706365944419158 0.18370787017483003" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16706365944419158 0.18370787017483003 C 0.16687671708027635 0.18533483767177053 0.16469806151732355 0.20651641047871733 0.16482035107720888 0.20323148013811598 C 0.16469806151732355 0.20651641047871733 0.16566083752959737 0.2247849971057072 0.16559618472556747 0.22312703426204633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16559618472556747 0.22312703426204633 C 0.16526880485627662 0.22144034803569274 0.1611633659327261 0.19969515830459753 0.16166762629407722 0.20288679954580302 C 0.1611633659327261 0.19969515830459753 0.15936817989729365 0.18332238435272866 0.15954506038935393 0.18482733936758053" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15954506038935393 0.18482733936758053 C 0.1596545970284028 0.1836918929606746 0.16132468665232583 0.16939035939773375 0.16085950005794022 0.17120198248470933 C 0.16132468665232583 0.16939035939773375 0.16548294947731798 0.16241168564380395 0.16512729952198124 0.1630878623238736" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16512729952198124 0.1630878623238736 C 0.16550991558951567 0.16270385354785175 0.17046814079152287 0.15783570408095582 0.16971869233239448 0.15847975701161154 C 0.17046814079152287 0.15783570408095582 0.1744875134231157 0.15509918300137118 0.17412068103152176 0.15535922715600506" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3139562258691485,0.089980595073294) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.12865719960522884 0.11732678678733874 C 0.12850004726076955 0.11795334854286163 0.12659321070032115 0.12608671382668646 0.12677137147171724 0.12484552785361347 C 0.12659321070032115 0.12608671382668646 0.12649826192153907 0.13283564268176484 0.12651927034847585 0.13222101846421475" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12651927034847585 0.13222101846421475 C 0.1267801152077557 0.1314894941303878 0.13041262792213676 0.12199166146298077 0.12964940865983404 0.1234427264582915 C 0.13041262792213676 0.12199166146298077 0.13618027589913123 0.11408869785900208 0.13567790149610837 0.11480823852048588" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13567790149610837 0.11480823852048588 C 0.1354886690949547 0.11541350864691444 0.13299992339577063 0.12367680671285078 0.13340711268226413 0.12207148003762851 C 0.13299992339577063 0.12367680671285078 0.13057367317284654 0.13507221517194687 0.13079163005818636 0.13407215862315314" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13079163005818636 0.13407215862315314 C 0.13081183715077385 0.13352519541796457 0.13107700789326826 0.12660416065569477 0.13103411516923624 0.12750860016089036 C 0.13107700789326826 0.12660416065569477 0.13132902837801513 0.12286140826079911 0.1313063427465706 0.12321888456080612" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1313063427465706 0.12321888456080612 C 0.1311199995887191 0.12369454427555102 0.12859278037396937 0.13029410895397692 0.1290702248523524 0.1289268011377448 C 0.12859278037396937 0.13029410895397692 0.12528590768544276 0.1405182264570789 0.12557700900597427 0.13962657835559167" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12557700900597427 0.13962657835559167 C 0.12552530552459484 0.13900107441299603 0.12491428569830403 0.1308897456013303 0.12495656722942103 0.13212053104444385 C 0.12491428569830403 0.1308897456013303 0.1250790525828326 0.124251871537711 0.12506963063257018 0.12485715303822892" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12506963063257018 0.12485715303822892 C 0.12489427681652959 0.12525419987468658 0.12254269550318006 0.13103132908944462 0.12296538484008308 0.12962171507572076 C 0.12254269550318006 0.13103132908944462 0.11975002306887148 0.14278508838018134 0.11999735858973391 0.14177252120291514" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11999735858973391 0.14177252120291514 C 0.11998013715307486 0.1409767622747022 0.11978169238122159 0.1310452488741262 0.11979070134982533 0.13222341406435992 C 0.11978169238122159 0.1310452488741262 0.11989746343454424 0.12725213265808957 0.11988925096648895 0.12763453892011037" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11988925096648895 0.12763453892011037 C 0.11971493881547055 0.12781664036842047 0.1175082926844572 0.12976234340371032 0.11779750515426818 0.12981975629983147 C 0.1175082926844572 0.12976234340371032 0.11630380100996467 0.12670606982222524 0.11641870132875724 0.1269455841666565" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11641870132875724 0.1269455841666565 C 0.1165532828794065 0.12703182457915801 0.11857462355662386 0.12748978016100002 0.11803367993654827 0.1279804691166748 C 0.11857462355662386 0.12748978016100002 0.12331638683909059 0.12048038733038294 0.12291002476966426 0.12105731669855924" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12291002476966426 0.12105731669855924 C 0.12279540461030809 0.12151987261941359 0.12135872850481583 0.12749718714926025 0.1215345828573903 0.12660798774881155 C 0.12135872850481583 0.12749718714926025 0.12073853834555234 0.13215435298353825 0.12079977253877065 0.13172770950394389" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12079977253877065 0.13172770950394389 C 0.12100146558356283 0.13118296938690052 0.1238748746651483 0.12399075120637298 0.12322008907627678 0.12519082809942342 C 0.1238748746651483 0.12399075120637298 0.12911029214930816 0.11667145001133168 0.12865719960522884 0.11732678678733874" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3270720921545617,0.07157066382368385) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.1788614753557673 0.14853270047867245 C 0.17859234225920848 0.14912091409470757 0.1750241091529848 0.1569991249025359 0.17563187819706141 0.15559126387109398 C 0.1750241091529848 0.1569991249025359 0.1712296108793301 0.16624668027138206 0.1715682468268479 0.1654270328559753" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1715682468268479 0.1654270328559753 C 0.1712959946930483 0.16650097372412886 0.16785060861528572 0.18055557294525887 0.16830122122125274 0.17831432327381805 C 0.16785060861528572 0.18055557294525887 0.1659825350830763 0.19348933771655255 0.16616089555524372 0.19232202891326527" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16616089555524372 0.19232202891326527 C 0.16624398797796314 0.19369709483400238 0.16760912772337458 0.21144022585780203 0.16715800462787686 0.20882281996211072 C 0.16760912772337458 0.21144022585780203 0.17194240337399447 0.22497323963651522 0.1715743727012162 0.22373089966156104" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1715743727012162 0.22373089966156104 C 0.17068333736853236 0.22202937211904178 0.15982585496168836 0.1997328641146177 0.16088194870901026 0.20331256915133003 C 0.15982585496168836 0.1997328641146177 0.15873618931871533 0.1788962617268198 0.1589012477333534 0.18077443922101288" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1589012477333534 0.18077443922101288 C 0.15910308960334202 0.1798165651636751 0.16191105344357723 0.16739570696505518 0.16132335017321695 0.16927995053295966 C 0.16191105344357723 0.16739570696505518 0.16633954837804857 0.1572371468955922 0.1659536869776769 0.15816351640615894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1659536869776769 0.15816351640615894 C 0.1664598144006734 0.15763054486840714 0.1731028650851424 0.15096528995918002 0.17202721605363486 0.15176785795313721 C 0.1731028650851424 0.15096528995918002 0.17943099696427833 0.14826310402246706 0.1788614753557673 0.14853270047867245" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.329991644806809,0.07156341768740282) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17213101588165122 0.16254676574067364 C 0.17194898412489637 0.1628100215656182 0.16944410392533396 0.1664797263896893 0.16994663480059308 0.16570583564000826 C 0.16944410392533396 0.1664797263896893 0.16578014626003743 0.1723440896615827 0.16610064537854172 0.17183345473684622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16610064537854172 0.17183345473684622 C 0.16569787857378346 0.1728647401666286 0.1605923101462532 0.18688938533186192 0.1612674437214426 0.1842088798942346 C 0.1605923101462532 0.18688938533186192 0.1577266757058374 0.2056487399962189 0.15799904247626856 0.20399951998837396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15799904247626856 0.20399951998837396 C 0.15803182017783848 0.20540810241163482 0.1589230476413542 0.22385657655231453 0.15839237489510755 0.22090250906750428 C 0.1589230476413542 0.22385657655231453 0.16486501047590535 0.24099381486764643 0.1643671154312286 0.23944832980609704" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1643671154312286 0.23944832980609704 C 0.1635109758020416 0.23782136583391636 0.15306451234540294 0.21637892567127384 0.15409343988098478 0.2199247621399289 C 0.15306451234540294 0.21637892567127384 0.15184719709785158 0.19497941968576213 0.15201998500424643 0.1968982921822365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15201998500424643 0.1968982921822365 C 0.15236741515831864 0.19539391229942474 0.15742016544597165 0.1761164915432431 0.15618914685311283 0.1788457335884954 C 0.15742016544597165 0.1761164915432431 0.16767579655733883 0.1629225254767683 0.16679220811855222 0.16414738763920886" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16679220811855222 0.16414738763920886 C 0.16714728572366255 0.1639762196230902 0.17149804002680116 0.16195998628757363 0.17105313937987623 0.1620933714457849 C 0.17149804002680116 0.16195998628757363 0.1722208389234658 0.16258454859858104 0.17213101588165122 0.16254676574067364" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33978947751265187,0.08735966945830426) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17453672257558664 0.15515504134074748 C 0.1746561417694159 0.1552558840935707 0.17629946829019716 0.15671252142912345 0.17596975290153782 0.15636515437462611 C 0.17629946829019716 0.15671252142912345 0.17870360343432884 0.15956997029638947 0.17849330723949877 0.15932344599471537" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17849330723949877 0.15932344599471537 C 0.17869853414704331 0.16032376634997064 0.1812751263003243 0.173316736118037 0.18095603013003325 0.17132729025777846 C 0.1812751263003243 0.173316736118037 0.18243633054573796 0.18418592182282098 0.18232246128299145 0.1831967963178177" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18232246128299145 0.1831967963178177 C 0.18263522588230316 0.1835959923237936 0.1870831339496969 0.18905429954706585 0.18607563647473196 0.18798714838952835 C 0.1870831339496969 0.18905429954706585 0.19510716385822358 0.19667056535982935 0.19441243098257038 0.19600261020826773" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.19441243098257038 0.19600261020826773 C 0.193750202051742 0.19574931384166488 0.18527425304511033 0.19239540325983276 0.18646568381262996 0.1929630538090337 C 0.18527425304511033 0.19239540325983276 0.17958605993564375 0.1888764494352584 0.180115261772335 0.18919080361785648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.180115261772335 0.18919080361785648 C 0.1796987236323267 0.18870951489060028 0.17445169561954527 0.182337765577646 0.17511680409223543 0.183415338890782 C 0.17445169561954527 0.182337765577646 0.17188538976737117 0.17566363927434475 0.17213396010005302 0.17625992386022454" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17213396010005302 0.17625992386022454 C 0.17214235578656367 0.17472453275987568 0.17243493854447542 0.15607649044608185 0.17223470833818094 0.15783523065603827 C 0.17243493854447542 0.15607649044608185 0.17472855709537044 0.15493169223113992 0.17453672257558664 0.15515504134074748" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34959241188592416,0.08737172314236655) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.16887868107981205 0.15683637556144928 C 0.16918051458690944 0.15697826660413872 0.17310787740748573 0.1590437176150413 0.17250068316498088 0.15853906807372248 C 0.17310787740748573 0.1590437176150413 0.1764703727252778 0.16325492855590445 0.17616501198987033 0.16289217005727508" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17616501198987033 0.16289217005727508 C 0.17642770635190608 0.1636012467861909 0.17970766717041028 0.17292872628249856 0.17931734433429938 0.1714010908042648 C 0.17970766717041028 0.17292872628249856 0.1809765144972764 0.18204235454539794 0.18084888602320123 0.18122379579608" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18084888602320123 0.18122379579608 C 0.18093077012320624 0.18184528232637237 0.18216406410033345 0.1903302809422277 0.18183149522326128 0.18868163415958852 C 0.18216406410033345 0.1903302809422277 0.18509039732513452 0.20203471744009693 0.18483971254806736 0.20100755718775012" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18483971254806736 0.20100755718775012 C 0.18433538879784858 0.19999799585440603 0.1779053759399225 0.1871575879962233 0.1787878275454421 0.18889282118762085 C 0.1779053759399225 0.1871575879962233 0.17387216542653133 0.17945908703292623 0.17425029328183217 0.18018475889097968" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17425029328183217 0.18018475889097968 C 0.17408719831562738 0.17950816364010397 0.17199695405633408 0.17073214668958467 0.17229315368737488 0.17206561588047103 C 0.17199695405633408 0.17073214668958467 0.17056279304450644 0.16352625466033258 0.1706958977093425 0.16418312860034323" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1706958977093425 0.16418312860034323 C 0.1704872901085791 0.163715961705459 0.1680411717810544 0.15796489644182438 0.16819260650018195 0.1585771258617322 C 0.1680411717810544 0.15796489644182438 0.1689358539614479 0.1566913130364257 0.16887868107981205 0.15683637556144928" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3607306797881925,0.089980595073294) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.1635280322298966 0.14178955932394385 C 0.1641731661863863 0.1423157163159495 0.17239448865966955 0.14965718796806027 0.1712696397077731 0.1481034432280117 C 0.17239448865966955 0.14965718796806027 0.17750593464806086 0.1614620839525696 0.1770262196526541 0.16043449620452668" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1770262196526541 0.16043449620452668 C 0.1771671210677297 0.1619089037559909 0.17865663647283256 0.18071481468825684 0.1787170366335611 0.17812738682209744 C 0.17865663647283256 0.18071481468825684 0.17610011614810772 0.19259665091313477 0.17630141772391184 0.1914836305984396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17630141772391184 0.1914836305984396 C 0.17602706216603992 0.19280760236363592 0.1723050733910088 0.21018736583971395 0.17300915102944872 0.20737129178079539 C 0.1723050733910088 0.21018736583971395 0.16742276398206482 0.2267686215991845 0.1678524860626328 0.22527651930546227" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1678524860626328 0.22527651930546227 C 0.16801918804147786 0.22376043627775924 0.1699445824639358 0.20434208936387874 0.1698529098087735 0.20708352297302576 C 0.1699445824639358 0.20434208936387874 0.16887752860089783 0.19115396541425395 0.16895255792458058 0.19237931599569794" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16895255792458058 0.19237931599569794 C 0.16892431756099122 0.19116122455942294 0.16864191392509764 0.17545073570454828 0.16861367356150828 0.1777622187603981 C 0.16864191392509764 0.17545073570454828 0.16934792301483176 0.16354812770592522 0.16929144228765303 0.16464151932550006" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16929144228765303 0.16464151932550006 C 0.16910157662063666 0.1636460616944198 0.16653277011197704 0.15079169775240725 0.16701305428345672 0.15269602775253693 C 0.16653277011197704 0.15079169775240725 0.16323761372543324 0.14088068695489442 0.1635280322298966 0.14178955932394385" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34510993657984057,0.08620507345131107) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.1705512796904845 0.1568835375346352 C 0.17081433457735795 0.15710838414607323 0.17425551136956208 0.16028413684712428 0.17370793833296577 0.1595816968718918 C 0.17425551136956208 0.16028413684712428 0.17740667427936316 0.16579041060121938 0.17712215612964027 0.16531281723742494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17712215612964027 0.16531281723742494 C 0.17730144398497916 0.1659575338140001 0.17959942385883468 0.17448549295135593 0.17927361039370676 0.173049416156327 C 0.17959942385883468 0.17448549295135593 0.18117844332096447 0.18333709899622608 0.1810319177111754 0.1825457387777723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1810319177111754 0.1825457387777723 C 0.1812470524608696 0.18321049522846114 0.1840858662317596 0.19176189950679598 0.1836135347075059 0.19052281618603825 C 0.1840858662317596 0.19176189950679598 0.1869570927767792 0.19798906549693382 0.1866998960022197 0.19741473862686493" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1866998960022197 0.19741473862686493 C 0.18608514286525296 0.1968524626375562 0.1783423697467629 0.18960999972595516 0.17932285835861886 0.19066742675516019 C 0.1783423697467629 0.18960999972595516 0.17456829718505884 0.18423046323650819 0.17493403265994809 0.1847256142764045" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17493403265994809 0.1847256142764045 C 0.17466273463194912 0.18400507782864814 0.17127779287347078 0.17438636474697589 0.17167845632396056 0.1760791769033281 C 0.17127779287347078 0.17438636474697589 0.16999670583157991 0.1634395926915819 0.17012607125407073 0.16441186840017777" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17012607125407073 0.16441186840017777 C 0.17008166705579264 0.16392844779585536 0.16962865491110163 0.15798346024284704 0.1695932208747338 0.15861082114830893 C 0.16962865491110163 0.15798346024284704 0.1706311179251304 0.1567395972334957 0.1705512796904845 0.1568835375346352" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.3607306797881925,0.089980595073294) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18137348365384806 0.12674523536809118 C 0.1815177270575004 0.1267648493189264 0.18337431062789222 0.1270916624773521 0.18310440449767612 0.12698060277811393 C 0.18337431062789222 0.1270916624773521 0.18473801994300504 0.1281693975073521 0.1846123572164413 0.12807795175894915" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1846123572164413 0.12807795175894915 C 0.1846754193523594 0.12827682424161652 0.18544625788615038 0.13088010305133982 0.18536910284745875 0.1304644215509577 C 0.18544625788615038 0.13088010305133982 0.18555231058351437 0.13328293878124953 0.18553821768074086 0.13306612976353477" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18553821768074086 0.13306612976353477 C 0.18557342726595663 0.13315016177219174 0.18599958285127396 0.13425504293256607 0.18596073270333005 0.13407451386741862 C 0.18599958285127396 0.13425504293256607 0.1859791560731934 0.13541208139775993 0.18600441945606774 0.13523247854530412 C 0.1859791560731934 0.13541208139775993 0.18557496449818456 0.1363603002973784 0.1856575721088379 0.13622974809688812 C 0.18557496449818456 0.1363603002973784 0.1848953109323585 0.13684562514302062 0.18501312812822762 0.13679910495118736 C 0.1848953109323585 0.13684562514302062 0.1841223079998113 0.13673801353423023 0.18424376575840856 0.13678799039888742 C 0.1841223079998113 0.13673801353423023 0.18349829079728164 0.13615033192333573 0.18355563502506064 0.13619938257530123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18355563502506064 0.13619938257530123 C 0.18341130595205335 0.13618839743353411 0.18154460139535109 0.1359710069749123 0.18182368614897312 0.136067560874096 C 0.18154460139535109 0.1359710069749123 0.18007186230098154 0.13495516702768035 0.1802066179815963 0.13504073578509693" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1802066179815963 0.13504073578509693 C 0.18014009086887747 0.13485583273350193 0.17932195896687303 0.1324207234656292 0.1794082926289706 0.13282189916595685 C 0.17932195896687303 0.1324207234656292 0.1791508074870468 0.13001035473243247 0.17917061403642554 0.1302266273811651" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3628681185420745,0.09305400747068895) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10746009434875135 0.1056960156889955 C 0.1072543313669991 0.10555108968427789 0.10572530372904965 0.10461911322682975 0.10622551645823786 0.10482645966068978 C 0.10572530372904965 0.10461911322682975 0.10414408689495455 0.10393675562898823 0.10445881797362205 0.10445193708583533 C 0.10414408689495455 0.10393675562898823 0.10414491604250373 0.10088844000201329 0.10433712998623289 0.10173537091960715 C 0.10414491604250373 0.10088844000201329 0.10330553431124709 0.0993703515802722 0.10330553431124709 0.0993703515802722 C 0.10330553431124709 0.0993703515802722 0.10452934392996205 0.102582301837201 0.10433712998623289 0.10173537091960715 C 0.10452934392996205 0.102582301837201 0.10412329657161835 0.10483254412758568 0.10445881797362205 0.10445193708583533 C 0.10412329657161835 0.10483254412758568 0.10176407824596136 0.10375130039466487 0.1023240015742107 0.10401901317010924 C 0.10176407824596136 0.10375130039466487 0.10089515740911187 0.1026501016436791 0.10109927800412599 0.10284566043316912" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3650055572959565,0.09612741986808382) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13935000450360585 0.11389180630522465 C 0.1394656243014682 0.11399314711845372 0.1409341685710515 0.11535588625100865 0.14073744207795388 0.11510789606397356 C 0.1409341685710515 0.11535588625100865 0.1417918291160127 0.11701433792345174 0.14171072242077742 0.11686768854964573" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14171072242077742 0.11686768854964573 C 0.14171106026780492 0.11706135554448915 0.14166971097946746 0.11956392671928198 0.14171477658510737 0.11919169248776681 C 0.14166971097946746 0.11956392671928198 0.14112453170043102 0.12151306656449941 0.14116993515309842 0.12133449932782767" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14116993515309842 0.12133449932782767 C 0.14117724903866577 0.12142143408779514 0.14124260351662737 0.12254255947923745 0.14125770177990668 0.12237771644743735 C 0.14124260351662737 0.12254255947923745 0.14092021097882365 0.12343853030643812 0.14098875599374686 0.12331261570942896 C 0.14092021097882365 0.12343853030643812 0.14033153641565504 0.12394193905918159 0.14043516160082828 0.12388869161154727 C 0.14033153641565504 0.12394193905918159 0.13963431470092746 0.12391789776870765 0.13974525377166805 0.1239515850810408 C 0.13963431470092746 0.12391789776870765 0.13901536583004737 0.1233728482793836 0.1391038927519413 0.1234844438635494 C 0.13901536583004737 0.1233728482793836 0.13864785053869072 0.12253977092167641 0.13868293070894078 0.12261243807105125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13868293070894078 0.12261243807105125 C 0.13856496244379685 0.1225178188338407 0.1370590711246521 0.12123493342056006 0.13726731152721344 0.12147700722452467 C 0.1370590711246521 0.12123493342056006 0.1360937737407874 0.11956009785672192 0.1361840458782048 0.11970755242347597" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1361840458782048 0.11970755242347597 C 0.136177120470705 0.11952278524821525 0.1361344926843833 0.11712402847190251 0.13610094098820708 0.11749034632034719 C 0.1361344926843833 0.11712402847190251 0.13662714333599552 0.11513018756895588 0.1365866662323195 0.11531173824213982" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.365984606077485,0.0998132680809624) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10655438992720283 0.10723220603830012 C 0.10642031504784435 0.10699585381380591 0.10538575196462659 0.10535330241376716 0.10574994065105199 0.10581409269133486 C 0.10538575196462659 0.10535330241376716 0.1042416213252351 0.10387557661143333 0.10436925780865038 0.10446746437289389 C 0.1042416213252351 0.10387557661143333 0.10504661842636963 0.10148349396362193 0.10498412175056031 0.1022627661225715 C 0.10504661842636963 0.10148349396362193 0.10474423786350631 0.09979183141919647 0.10474423786350631 0.09979183141919647 C 0.10474423786350631 0.09979183141919647 0.10492162507475099 0.10304203828152107 0.10498412175056031 0.1022627661225715 C 0.10492162507475099 0.10304203828152107 0.1039878555439797 0.10456627968829216 0.10436925780865038 0.10446746437289389 C 0.1039878555439797 0.10456627968829216 0.10229744327763621 0.10231190909409715 0.10269570816253622 0.10285565801496109 C 0.10229744327763621 0.10231190909409715 0.10186032855536933 0.10092985631983513 0.10197966849925032 0.10120497084771027" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3669636548590135,0.10349911629384105) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13931498008367774 0.11479757844405006 C 0.1393883152193393 0.11494258021441303 0.14030128331670663 0.11684477402586617 0.14019500171161658 0.1165375996884057 C 0.14030128331670663 0.11684477402586617 0.1406233058141869 0.11864584306067325 0.14059035934475841 0.11848367049357574" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14059035934475841 0.11848367049357574 C 0.1405432343144066 0.11863880911098529 0.13989547776037647 0.12061824216013643 0.14002485898053654 0.12034533390249032 C 0.13989547776037647 0.12061824216013643 0.13895552851302923 0.12187633922556561 0.13903778470283748 0.12175856958532905" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13903778470283748 0.12175856958532905 C 0.1390227105468318 0.1218321690123287 0.1388037231993813 0.12276530569840453 0.1388568948307694 0.1226417627093249 C 0.1388037231993813 0.12276530569840453 0.13831071504380094 0.12330393437639839 0.13839972512618018 0.12324108545428458 C 0.13831071504380094 0.12330393437639839 0.13768777548853994 0.12338126431191299 0.13778877384221858 0.12339594977469057 C 0.13768777548853994 0.12338126431191299 0.13710182068436366 0.12297657501117636 0.13718774488203664 0.1230648599009536 C 0.13710182068436366 0.12297657501117636 0.1367098567478525 0.12219830264550646 0.13675768347014303 0.12233653109736367 C 0.1367098567478525 0.12219830264550646 0.13660183594325098 0.12132858409377564 0.13661382421455037 0.12140611847866703" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13661382421455037 0.12140611847866703 C 0.13653685005404356 0.12126519626913163 0.1355726306440811 0.11940624590869525 0.1356901342884688 0.11971505196424213 C 0.1355726306440811 0.11940624590869525 0.1351632509980172 0.11753256196609305 0.1352037804818981 0.11770044581210451" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1352037804818981 0.11770044581210451 C 0.1352431348524876 0.11754878600344515 0.13579419210983462 0.11560598813245965 0.13567603292897215 0.11588052810819215 C 0.13579419210983462 0.11560598813245965 0.13670049546252055 0.11428308593624134 0.1366216906522476 0.11440596610331448" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36689238940437907,0.10698940217299886) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10547387959994596 0.10784925971634682 C 0.10541793105042137 0.1075860333387488 0.10494185132655183 0.1056998867256352 0.10513818830279839 0.1062699014507587 C 0.10494185132655183 0.1056998867256352 0.10433241347545177 0.10388504248449446 0.10429585774246661 0.10442917136560581 C 0.10433241347545177 0.10388504248449446 0.1056013477461082 0.10241618785932495 0.10535752270070939 0.10300512816409052 C 0.1056013477461082 0.10241618785932495 0.10575880801485948 0.10089552953701242 0.10575880801485948 0.10089552953701242 C 0.10575880801485948 0.10089552953701242 0.10511369765531058 0.10359406846885609 0.10535752270070939 0.10300512816409052 C 0.10511369765531058 0.10359406846885609 0.10394791131508732 0.10429737743216924 0.10429585774246661 0.10442917136560581 C 0.10394791131508732 0.10429737743216924 0.10306489058676636 0.10155913632732955 0.10326984413643366 0.10221436456347112 C 0.10306489058676636 0.10155913632732955 0.1030321851624677 0.10021170817963723 0.10306613644446284 0.10049780194875636" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3607306797881925,0.089980595073294) rotate(0) scale(1,1) translate(-0.17057305483529786,-0.1716896655664302)"><path d="M 0.16381220966948284 0.15797353354950727 C 0.16421364671557556 0.15826749882510066 0.16929541670232495 0.1620891140688344 0.16862945422259534 0.16150111685662805 C 0.16929541670232495 0.1620891140688344 0.17206828485987502 0.16532353203259642 0.17180375942623813 0.16502950009598347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17180375942623813 0.16502950009598347 C 0.17205916552990583 0.16558972940635694 0.1752854023938548 0.17310375476783424 0.17486863267025038 0.17175225182046527 C 0.1752854023938548 0.17310375476783424 0.1769663597294279 0.18203880910140666 0.17680499610949116 0.18124753546441116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17680499610949116 0.18124753546441116 C 0.176953102823646 0.18251751320869503 0.17904387878219988 0.19876539622450234 0.1785822766793494 0.1964872683958176 C 0.17904387878219988 0.19876539622450234 0.18265771673239262 0.20959321949302906 0.182344221343697 0.20858506940862817" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.182344221343697 0.20858506940862817 C 0.18177828673426166 0.20773798590590348 0.17457977396702373 0.19629156210299475 0.17555300603047294 0.1984200673759319 C 0.17457977396702373 0.19629156210299475 0.17025813912829244 0.1817615843631701 0.17066543658230632 0.18304300613338256" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17066543658230632 0.18304300613338256 C 0.17038587186305063 0.1822882691194315 0.16682855887860662 0.1725297584399241 0.16731065995123792 0.17398616196596967 C 0.16682855887860662 0.1725297584399241 0.16467768735735505 0.1648644973087412 0.16488022371073066 0.1655661638208357" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16488022371073066 0.1655661638208357 C 0.16480563607772414 0.16519901549643737 0.1638961709445483 0.16052766473877844 0.1639851721146523 0.16116038392805582 C 0.1638961709445483 0.16052766473877844 0.16379779613238538 0.15770796268462822 0.16381220966948284 0.15797353354950727" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35394388585085235,0.08624087504205558) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.16435612073039998 0.15535922715600506 C 0.16472295312199392 0.15561927131063893 0.16950755788865562 0.15912380994226727 0.16875810942952726 0.15847975701161154 C 0.16950755788865562 0.15912380994226727 0.1737321183074749 0.16347187109989544 0.17334950223994047 0.1630878623238736" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17334950223994047 0.1630878623238736 C 0.1737051521952772 0.16376403900394323 0.17808248829836712 0.1730136055716849 0.17761730170398152 0.17120198248470933 C 0.17808248829836712 0.1730136055716849 0.17904127801161665 0.18596278577448647 0.1789317413725678 0.18482733936758053" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1789317413725678 0.18482733936758053 C 0.17875486088050752 0.1863322943824324 0.1763049151064934 0.20607844078700852 0.17680917546784453 0.20288679954580302 C 0.1763049151064934 0.20607844078700852 0.17255323716706342 0.22481372048839993 0.17288061703635427 0.22312703426204633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17288061703635427 0.22312703426204633 C 0.17294526984038416 0.22146907141838545 0.17353416112482753 0.19994654979751464 0.17365645068471286 0.20323148013811598 C 0.17353416112482753 0.19994654979751464 0.17122619995381494 0.18208090267788954 0.17141314231773017 0.18370787017483003" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17141314231773017 0.18370787017483003 C 0.17133994513293466 0.182731658713928 0.170341869583578 0.17047060447831003 0.17053477610018405 0.17199333264400543 C 0.170341869583578 0.17047060447831003 0.16897855478664708 0.16488861548169176 0.16909826411845763 0.16543513218648512" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16909826411845763 0.16543513218648512 C 0.1689667887841145 0.1650876212170503 0.1671253814906685 0.16042534180072757 0.16752056010633998 0.16126500055326756 C 0.1671253814906685 0.16042534180072757 0.16409241744907166 0.15486707937289984 0.16435612073039998 0.15535922715600506" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3607306797881925,0.089980595073294) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.10957758710957849 0.11732678678733874 C 0.11003067965365783 0.1179821235633458 0.11566948322740207 0.12639090499247385 0.11501469763853055 0.12519082809942342 C 0.11566948322740207 0.12639090499247385 0.11763670722082892 0.13227244962098725 0.11743501417603673 0.13172770950394389" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11743501417603673 0.13172770950394389 C 0.11737377998281842 0.13130106602434952 0.11652434950484253 0.12571878834836284 0.116700203857417 0.12660798774881155 C 0.11652434950484253 0.12571878834836284 0.11521014178578688 0.12059476077770488 0.11532476194514305 0.12105731669855924" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11532476194514305 0.12105731669855924 C 0.11573112401456938 0.12163424606673554 0.12074205039833467 0.12847115807234957 0.12020110677825908 0.1279804691166748 C 0.12074205039833467 0.12847115807234957 0.1219506669366993 0.12685934375415497 0.12181608538605006 0.1269455841666565" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12181608538605006 0.1269455841666565 C 0.12170118506725748 0.12718509851108775 0.1201480690907282 0.12987716919595263 0.12043728156053918 0.12981975629983147 C 0.1201480690907282 0.12987716919595263 0.11817122359729997 0.12745243747180027 0.11834553574831837 0.12763453892011037" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11834553574831837 0.12763453892011037 C 0.11835374821637366 0.12801694518213116 0.11843507639637821 0.13340157925459364 0.11844408536498195 0.13222341406435992 C 0.11843507639637821 0.13340157925459364 0.11822020668841444 0.14256828013112807 0.11823742812507348 0.14177252120291514" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11823742812507348 0.14177252120291514 C 0.11799009260421105 0.14075995402564895 0.11484671253782125 0.1282121010619969 0.11526940187472427 0.12962171507572076 C 0.11484671253782125 0.1282121010619969 0.11298980226619652 0.12446010620177127 0.11316515608223712 0.12485715303822892" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11316515608223712 0.12485715303822892 C 0.11317457803249956 0.12546243453874684 0.11323593795426927 0.1333513164875574 0.11327821948538627 0.13212053104444385 C 0.11323593795426927 0.1333513164875574 0.11260607422745361 0.1402520822981873 0.11265777770883305 0.13962657835559167" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11265777770883305 0.13962657835559167 C 0.11236667638830153 0.13873493025410444 0.10868711738407183 0.12755949332151267 0.10916456186245486 0.1289268011377448 C 0.10868711738407183 0.12755949332151267 0.10674210081038518 0.12274322484606123 0.1069284439682367 0.12321888456080612" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1069284439682367 0.12321888456080612 C 0.10695112959968124 0.12357636086081314 0.10724356426960326 0.12841303966608594 0.10720067154557122 0.12750860016089036 C 0.10724356426960326 0.12841303966608594 0.10746336374920862 0.1346191218283417 0.10744315665662113 0.13407215862315314" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10744315665662113 0.13407215862315314 C 0.10722519977128131 0.1330721020743594 0.10442048474604974 0.12046615336240624 0.10482767403254326 0.12207148003762851 C 0.10442048474604974 0.12046615336240624 0.10236765281754527 0.11420296839405733 0.10255688521869896 0.11480823852048588" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10255688521869896 0.11480823852048588 C 0.10305925962172183 0.11552777918196969 0.10934859731727602 0.12489379145360224 0.10858537805497331 0.1234427264582915 C 0.10934859731727602 0.12489379145360224 0.11197636122561132 0.1329525427980417 0.11171551636633147 0.13222101846421475" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11171551636633147 0.13222101846421475 C 0.11169450793939469 0.13160639424666465 0.11128525447169409 0.12360434188054047 0.11146341524309017 0.12484552785361347 C 0.11128525447169409 0.12360434188054047 0.10942043476511919 0.11670022503181585 0.10957758710957849 0.11732678678733874" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34761481350277945,0.07157066382368385) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.17988136099763122 0.14853270047867245 C 0.18045088260614225 0.14880229693487784 0.1877912693312711 0.1525704259470944 0.18671562029976357 0.15176785795313721 C 0.1877912693312711 0.1525704259470944 0.193295276798718 0.15869648794391075 0.1927891493757215 0.15816351640615894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1927891493757215 0.15816351640615894 C 0.19317501077609317 0.15908988591672568 0.19800718945054174 0.17116419410086414 0.19741948618018146 0.16927995053295966 C 0.19800718945054174 0.17116419410086414 0.20004343049003362 0.18173231327835065 0.199841588620045 0.18077443922101288" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.199841588620045 0.18077443922101288 C 0.19967653020540693 0.18265261671520597 0.19680479389706637 0.20689227418804237 0.19786088764438825 0.20331256915133003 C 0.19680479389706637 0.20689227418804237 0.18627742831949848 0.2254324272040803 0.18716846365218232 0.22373089966156104" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18716846365218232 0.22373089966156104 C 0.18753649432496058 0.22248855968660686 0.19203595482101934 0.2062054140664194 0.19158483172552165 0.20882281996211072 C 0.19203595482101934 0.2062054140664194 0.19266503322087417 0.19094696299252817 0.19258194079815474 0.19232202891326527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19258194079815474 0.19232202891326527 C 0.19240358032598734 0.191154720109978 0.18999100252617876 0.17607307360237723 0.19044161513214578 0.17831432327381805 C 0.18999100252617876 0.17607307360237723 0.1869023373927509 0.16435309198782172 0.1871745895265505 0.1654270328559753" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1871745895265505 0.1654270328559753 C 0.1868359535790327 0.16460738544056852 0.18250318911226038 0.15418340283965204 0.183110958156337 0.15559126387109395 C 0.18250318911226038 0.15418340283965204 0.1796122279010724 0.14794448686263734 0.17988136099763122 0.14853270047867245" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34469526085053215,0.07156341768740282) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17137677306714055 0.16254676574067364 C 0.17146659610895515 0.16250898288276625 0.17289955021584047 0.16222675660399616 0.17245464956891554 0.1620933714457849 C 0.17289955021584047 0.16222675660399616 0.17707065843534997 0.16431855565532752 0.17671558083023964 0.16414738763920886" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17671558083023964 0.16414738763920886 C 0.17759916926902625 0.1653722498016494 0.1885496606885378 0.1815749756337477 0.18731864209567897 0.1788457335884954 C 0.1885496606885378 0.1815749756337477 0.19183523409861752 0.1984026720650483 0.19148780394454532 0.19689829218223653" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19148780394454532 0.19689829218223653 C 0.19131501603815046 0.1988171646787109 0.18838542153222512 0.22347059860858393 0.18941434906780696 0.2199247621399289 C 0.18838542153222512 0.22347059860858393 0.17828453388837617 0.24107529377827772 0.17914067351756316 0.23944832980609704" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17914067351756316 0.23944832980609704 C 0.17963856856223992 0.23790284474454765 0.1856460867999309 0.21794844158269402 0.1851154140536842 0.22090250906750428 C 0.1856460867999309 0.21794844158269402 0.18554152417409323 0.2025909375651131 0.1855087464725233 0.20399951998837396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1855087464725233 0.20399951998837396 C 0.1852363797020921 0.202350299980529 0.18156521165215966 0.18152837445660727 0.1822403452273491 0.1842088798942346 C 0.18156521165215966 0.18152837445660727 0.17700437676549177 0.17080216930706385 0.17740714357025003 0.17183345473684622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17740714357025003 0.17183345473684622 C 0.17708664445174577 0.17132281981210973 0.1730586232729396 0.16493194489032723 0.17356115414819873 0.16570583564000826 C 0.1730586232729396 0.16493194489032723 0.1711947413103857 0.1622835099157291 0.17137677306714055 0.16254676574067364" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 64 KiB

View File

@@ -0,0 +1,204 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.17716506146519984 C 0.18212967599427538 0.17716506146519984 0.17846063896830366 0.16798843044188 0.17805296818764013 0.16869432513598154 C 0.17846063896830366 0.16798843044188 0.18824473770422837 0.16940021983008308 0.18783706692356483 0.16869432513598154 C 0.18824473770422837 0.16940021983008308 0.18212967599427538 0.17716506146519984 0.18294501755560244 0.17716506146519984 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3348974281446895,0.08735966945830426) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17431434899700624 0.15571314008393572 C 0.1745409653433866 0.15589261523960038 0.1772687571864614 0.15957907393326906 0.1770337451535704 0.15786684195191167 C 0.1772687571864614 0.15957907393326906 0.17714288907820908 0.17779268068591728 0.1771344933916984 0.17625992386022454" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1771344933916984 0.17625992386022454 C 0.17688592305901651 0.17685620844610433 0.17348654092682572 0.18449291220391797 0.17415164939951588 0.183415338890782 C 0.17348654092682572 0.18449291220391797 0.16873665357940815 0.18967209234511268 0.16915319171941642 0.18919080361785648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16915319171941642 0.18919080361785648 C 0.16862398988272517 0.18950515780045457 0.1616113389116018 0.19353070435823463 0.1628027696791214 0.1929630538090337 C 0.1616113389116018 0.19353070435823463 0.1541937935783527 0.19625590657487058 0.15485602250918107 0.19600261020826773" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15485602250918107 0.19600261020826773 C 0.15555075538483426 0.1953346550567061 0.16420031449198436 0.18691999723199085 0.16319281701701946 0.18798714838952835 C 0.16420031449198436 0.18691999723199085 0.1672587568080716 0.18279760031184183 0.16694599220875989 0.1831967963178177" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16694599220875989 0.1831967963178177 C 0.1670598614715064 0.18220767081281444 0.1686315195320091 0.16933784439751992 0.16831242336171806 0.17132729025777846 C 0.1686315195320091 0.16933784439751992 0.1709803731597971 0.1583231256394601 0.17077514625225257 0.15932344599471537" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17077514625225257 0.15932344599471537 C 0.17098544244708264 0.1590853541203622 0.17359363415227633 0.15616548467657915 0.17329870059021352 0.15646634350247746 C 0.17359363415227633 0.15616548467657915 0.17439898636423895 0.15565037313239058 0.17431434899700624 0.15571314008393572" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32509449377141697,0.08737172314236655) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.17737040839376966 0.15716411174651995 C 0.177504986649504 0.15728186292278765 0.17891131811755281 0.15916204393288413 0.17898534746258185 0.1585771258617322 C 0.17891131811755281 0.15916204393288413 0.1762734486526579 0.16465029549522747 0.17648205625342128 0.16418312860034323" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17648205625342128 0.16418312860034323 C 0.17634895158858527 0.16484000254035389 0.17458860064434814 0.1733990850713574 0.17488480027538894 0.17206561588047103 C 0.17458860064434814 0.1733990850713574 0.17276456571472687 0.1808613541418554 0.17292766068093166 0.18018475889097968" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17292766068093166 0.18018475889097968 C 0.17254953282563082 0.18091043074903312 0.16750767481180198 0.1906280543790184 0.1683901264173216 0.18889282118762085 C 0.16750767481180198 0.1906280543790184 0.1618339176644776 0.20201711852109422 0.16233824141469638 0.20100755718775012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16233824141469638 0.20100755718775012 C 0.16258892619176357 0.19998039693540332 0.16567902761657471 0.18703298737694934 0.16534645873950254 0.18868163415958852 C 0.16567902761657471 0.18703298737694934 0.16641095203956752 0.18060230926578763 0.1663290679395625 0.18122379579608" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1663290679395625 0.18122379579608 C 0.16645669641363767 0.18040523704676206 0.16825093246457523 0.16987345532603104 0.16786060962846433 0.1714010908042648 C 0.16825093246457523 0.16987345532603104 0.1712756363349292 0.16218309332835926 0.17101294197289343 0.16289217005727508" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17101294197289343 0.16289217005727508 C 0.17130008967910124 0.1625612747988609 0.17498850331579352 0.15844408876374205 0.17445871444738717 0.15892142695630498 C 0.17498850331579352 0.15844408876374205 0.1776130495559682 0.1570176688123712 0.17737040839376966 0.15716411174651995" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3139562258691485,0.089980595073294) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.1804636431519002 0.14178955932394385 C 0.18017322464743685 0.1426984316929933 0.17649833692686034 0.15460035775266662 0.17697862109834006 0.15269602775253693 C 0.17649833692686034 0.15460035775266662 0.1745103674271274 0.1656369769565803 0.17470023309414376 0.16464151932550006" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17470023309414376 0.16464151932550006 C 0.1747567138213225 0.1657349109450749 0.1754062421838779 0.18007370181624793 0.17537800182028854 0.1777622187603981 C 0.1754062421838779 0.18007370181624793 0.17501087709362684 0.19359740743197293 0.1750391174572162 0.19237931599569794" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1750391174572162 0.19237931599569794 C 0.17496408813353345 0.19360466657714193 0.17423043822818562 0.2098249565821728 0.1741387655730233 0.20708352297302576 C 0.17423043822818562 0.2098249565821728 0.17630589129800903 0.2267926023331654 0.17613918931916397 0.22527651930546236" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17613918931916397 0.22527651930546236 C 0.17570946723859598 0.22378441701174012 0.17027844671390818 0.20455521772187682 0.1709825243523481 0.20737129178079539 C 0.17027844671390818 0.20455521772187682 0.16741590210001306 0.19015965883324326 0.16769025765788498 0.1914836305984396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16769025765788498 0.1914836305984396 C 0.16748895608208086 0.1903706102837444 0.16521423858750722 0.17553995895593805 0.16527463874823575 0.17812738682209744 C 0.16521423858750722 0.17553995895593805 0.16710635714421826 0.15896008865306246 0.16696545572914268 0.16043449620452668" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16696545572914268 0.16043449620452668 C 0.16744517072454942 0.15940690845648375 0.17384688462592016 0.14654969848796312 0.1727220356740237 0.1481034432280117 C 0.17384688462592016 0.14654969848796312 0.1811087771083899 0.1412634023319382 0.1804636431519002 0.14178955932394385" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32957696907750067,0.08620507345131107) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17580675060100773 0.15734345611486986 C 0.17591104039412597 0.15744906986765644 0.17711811371326674 0.15919985550541793 0.17705822811842659 0.15861082114830893 C 0.17711811371326674 0.15919985550541793 0.17648097354081152 0.16489528900450018 0.1765253777390896 0.16441186840017777" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1765253777390896 0.16441186840017777 C 0.1763960123165988 0.16538414410877364 0.17457232921871002 0.17777198905968034 0.1749729926691998 0.1760791769033281 C 0.17457232921871002 0.17777198905968034 0.17144611830521336 0.18544615072416085 0.17171741633321233 0.1847256142764045" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17171741633321233 0.1847256142764045 C 0.1713516808583231 0.1852207653163008 0.16634810202268563 0.1917248537843652 0.16732859063454159 0.19066742675516019 C 0.16634810202268563 0.1917248537843652 0.15933679985397398 0.19797701461617365 0.15995155299094072 0.19741473862686493" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15995155299094072 0.19741473862686493 C 0.1602087497655002 0.19684041175679604 0.16351024580990822 0.18928373286528052 0.16303791428565453 0.19052281618603825 C 0.16351024580990822 0.18928373286528052 0.1658346660316792 0.18188098232708347 0.165619531281985 0.1825457387777723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.165619531281985 0.1825457387777723 C 0.16576605689177407 0.18175437855931853 0.16770365206458163 0.17161333936129805 0.1673778385994537 0.173049416156327 C 0.16770365206458163 0.17161333936129805 0.16970858071885897 0.16466810066084978 0.16952929286352011 0.16531281723742494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16952929286352011 0.16531281723742494 C 0.169813811013243 0.1648352238736305 0.1734666321383186 0.15891758344501222 0.17294351066019462 0.1595816968718918 C 0.1734666321383186 0.15891758344501222 0.17604535392940882 0.15715693605178468 0.17580675060100773 0.15734345611486986" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.3139562258691485,0.089980595073294) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18137348365384812 0.13022662738116514 C 0.18135367710446937 0.13044290002989778 0.18104947139920546 0.1332230748662845 0.18113580506130303 0.13282189916595685 C 0.18104947139920546 0.1332230748662845 0.1802709525959585 0.13522563883669197 0.1803374797086773 0.13504073578509695" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1803374797086773 0.13504073578509695 C 0.18020272402806256 0.13512630454251354 0.17844132678767846 0.1361641147732797 0.1787204115413005 0.136067560874096 C 0.17844132678767846 0.1361641147732797 0.1768441335922057 0.13621036771706835 0.17698846266521298 0.13619938257530123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17698846266521298 0.13619938257530123 C 0.17693111843743398 0.13624843322726674 0.17617887417326783 0.1368379672635446 0.1763003319318651 0.13678799039888742 C 0.17617887417326783 0.1368379672635446 0.17541315236617688 0.1367525847593541 0.175530969562046 0.13679910495118736 C 0.17541315236617688 0.1367525847593541 0.17480391797078246 0.13609919589639785 0.1748865255814358 0.13622974809688812 C 0.17480391797078246 0.13609919589639785 0.1745144148513315 0.13505287569284835 0.17453967823420585 0.13523247854530415 C 0.1745144148513315 0.13505287569284835 0.1746222151348875 0.13389398480227116 0.17458336498694357 0.13407451386741862 C 0.1746222151348875 0.13389398480227116 0.1750410895947485 0.1329820977548778 0.17500588000953274 0.13306612976353477" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17500588000953274 0.13306612976353477 C 0.17501997291230625 0.13284932074582 0.17525214988150647 0.13004874005057557 0.17517499484281485 0.1304644215509577 C 0.17525214988150647 0.13004874005057557 0.17599480260975048 0.12787907927628178 0.17593174047383237 0.12807795175894915" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17593174047383237 0.12807795175894915 C 0.17605740320039615 0.12798650601054623 0.17770959932281366 0.1268695430788758 0.17743969319259756 0.12698060277811396 C 0.17770959932281366 0.1268695430788758 0.1793148574400779 0.12672562141725596 0.1791706140364256 0.12674523536809118" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31181878711526656,0.09305400747068895) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10757522874718545 0.1028456604331691 C 0.10737110815217132 0.10304121922265913 0.10579058184885139 0.1042867259455536 0.10635050517710072 0.10401901317010923 C 0.10579058184885139 0.1042867259455536 0.10388016737568571 0.10407133004408499 0.10421568877768941 0.10445193708583533 C 0.10388016737568571 0.10407133004408499 0.10452959070880768 0.10088844000201329 0.10433737676507852 0.10173537091960715 C 0.10452959070880768 0.10088844000201329 0.10536897244006437 0.0993703515802722 0.10536897244006437 0.0993703515802722 C 0.10536897244006437 0.0993703515802722 0.10414516282134936 0.102582301837201 0.10433737676507852 0.10173537091960715 C 0.10414516282134936 0.102582301837201 0.10390095769902191 0.10496711854268244 0.10421568877768941 0.10445193708583533 C 0.10390095769902191 0.10496711854268244 0.10194877756388533 0.10503380609454979 0.10244899029307356 0.10482645966068976 C 0.10194877756388533 0.10503380609454979 0.10100864942080784 0.10584094169371312 0.10121441240256009 0.1056960156889955" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3096813483613846,0.09612741986808382) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1393500045036057 0.1153117382421398 C 0.13939048160728176 0.11549328891532376 0.1398692814438944 0.11785666416879187 0.13983572974771818 0.11749034632034719 C 0.1398692814438944 0.11785666416879187 0.13974569945022064 0.1198923195987367 0.13975262485772044 0.11970755242347597" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13975262485772044 0.11970755242347597 C 0.13966235272030306 0.11985500699023002 0.13846111880615047 0.12171908102848927 0.13866935920871182 0.12147700722452466 C 0.13846111880615047 0.12171908102848927 0.1371357717618405 0.12270705730826179 0.13725374002698446 0.12261243807105124" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13725374002698446 0.12261243807105124 C 0.1372186598567344 0.12268510522042608 0.13674425106208998 0.12359603944771518 0.1368327779839839 0.12348444386354938 C 0.13674425106208998 0.12359603944771518 0.13608047789351665 0.12398527239337395 0.13619141696425724 0.1239515850810408 C 0.13608047789351665 0.12398527239337395 0.13539788394992372 0.12383544416391294 0.13550150913509695 0.12388869161154727 C 0.13539788394992372 0.12383544416391294 0.13487936972725517 0.12318670111241979 0.13494791474217838 0.12331261570942895 C 0.13487936972725517 0.12318670111241979 0.1346638706927393 0.12221287341563725 0.1346789689560186 0.12237771644743735 C 0.1346638706927393 0.12221287341563725 0.1347740494683942 0.12124756456786019 0.13476673558282684 0.12133449932782767" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13476673558282684 0.12133449932782767 C 0.1347213321301594 0.12115593209115592 0.13417682854517787 0.11881945825625163 0.1342218941508178 0.1191916924877668 C 0.13417682854517787 0.11881945825625163 0.13422628616217525 0.11667402155480229 0.13422594831514775 0.11686768854964572" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13422594831514775 0.11686768854964572 C 0.13430705501038306 0.1167210391758397 0.135395955151069 0.11485990587693848 0.13519922865797138 0.11510789606397356 C 0.135395955151069 0.11485990587693848 0.1367022860301817 0.11379046549199558 0.13658666623231935 0.11389180630522465" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30870229957985607,0.0998132680809624) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10669483825206118 0.10120497084771027 C 0.1065754983081802 0.10148008537558541 0.10558053370387524 0.10339940693582503 0.10597879858877525 0.10285565801496109 C 0.10558053370387524 0.10339940693582503 0.10392384667799039 0.10436864905749563 0.10430524894266108 0.10446746437289389 C 0.10392384667799039 0.10436864905749563 0.10362788832494181 0.10148349396362191 0.10369038500075113 0.10226276612257149 C 0.10362788832494181 0.10148349396362191 0.10393026888780514 0.09979183141919647 0.10393026888780514 0.09979183141919647 C 0.10393026888780514 0.09979183141919647 0.10375288167656045 0.10304203828152106 0.10369038500075113 0.10226276612257149 C 0.10375288167656045 0.10304203828152106 0.1041776124592458 0.10505935213435445 0.10430524894266108 0.10446746437289389 C 0.1041776124592458 0.10505935213435445 0.10256037741383406 0.10627488296890257 0.10292456610025946 0.10581409269133486 C 0.10256037741383406 0.10627488296890257 0.10198604194475018 0.10746855826279433 0.10212011682410865 0.10723220603830012" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3077232507983275,0.10349911629384105) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13931498008367765 0.11440596610331448 C 0.1393937848939506 0.11452884627038762 0.14037879698781555 0.11615506808392465 0.14026063780695308 0.11588052810819215 C 0.14037879698781555 0.11615506808392465 0.14077224462461665 0.11785210562076387 0.14073289025402716 0.11770044581210451" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14073289025402716 0.11770044581210451 C 0.14069236077014627 0.11786832965811597 0.1401290328030688 0.12002385801978901 0.1402465364474565 0.11971505196424213 C 0.1401290328030688 0.12002385801978901 0.13924587236086802 0.12154704068820243 0.13932284652137483 0.12140611847866703" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13932284652137483 0.12140611847866703 C 0.13931085825007544 0.12148365286355842 0.13913116054349173 0.12247475954922088 0.13917898726578226 0.12233653109736367 C 0.13913116054349173 0.12247475954922088 0.13866300165621556 0.12315314479073085 0.13874892585388854 0.1230648599009536 C 0.13866300165621556 0.12315314479073085 0.13804689854002805 0.12341063523746815 0.13814789689370668 0.12339594977469057 C 0.13804689854002805 0.12341063523746815 0.13744793552736578 0.12317823653217078 0.13753694560974503 0.12324108545428458 C 0.13744793552736578 0.12317823653217078 0.1370266042737677 0.12251821972024528 0.1370797759051558 0.1226417627093249 C 0.1370266042737677 0.12251821972024528 0.13688381187708215 0.1216849701583294 0.1368988860330878 0.12175856958532905" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1368988860330878 0.12175856958532905 C 0.13681662984327955 0.12164079994509248 0.1357824305352286 0.1200724256448442 0.1359118117553887 0.12034533390249032 C 0.1357824305352286 0.1200724256448442 0.13529918636081495 0.11832853187616617 0.13534631139116676 0.11848367049357572" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13534631139116676 0.11848367049357572 C 0.13537925786059526 0.11832149792647823 0.13584795062939872 0.11623042535094523 0.13574166902430865 0.1165375996884057 C 0.13584795062939872 0.11623042535094523 0.1366950257879091 0.11465257667368707 0.13662169065224752 0.11479757844405004" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30779451625296184,0.10698940217299886) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10560837030684858 0.10049780194875636 C 0.10557441902485344 0.1007838957178755 0.10519970906521048 0.10286959279961269 0.10540466261487777 0.10221436456347112 C 0.10519970906521048 0.10286959279961269 0.10403070258146556 0.10456096529904238 0.10437864900884485 0.10442917136560581 C 0.10403070258146556 0.10456096529904238 0.10307315900520324 0.10241618785932494 0.10331698405060205 0.1030051281640905 C 0.10307315900520324 0.10241618785932494 0.10291569873645197 0.10089552953701242 0.10291569873645197 0.10089552953701242 C 0.10291569873645197 0.10089552953701242 0.10356080909600086 0.10359406846885608 0.10331698405060205 0.1030051281640905 C 0.10356080909600086 0.10359406846885608 0.10441520474183001 0.10497330024671718 0.10437864900884485 0.10442917136560581 C 0.10441520474183001 0.10497330024671718 0.1033399814722665 0.10683991617588219 0.10353631844851306 0.1062699014507587 C 0.1033399814722665 0.10683991617588219 0.10314467860184087 0.10811248609394483 0.10320062715136546 0.10784925971634682" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3139562258691485,0.089980595073294) rotate(0) scale(1,1) translate(-0.17115841836591697,-0.1716896655664302)"><path d="M 0.17791926353173207 0.15797353354950727 C 0.1779048499946346 0.15823910441438632 0.17765729991645857 0.1617931031173332 0.17774630108656256 0.16116038392805582 C 0.17765729991645857 0.1617931031173332 0.17677666185747767 0.16593331214523402 0.1768512494904842 0.1655661638208357" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1768512494904842 0.1655661638208357 C 0.1766487131371086 0.1662678303329302 0.17393871217734563 0.17544256549201523 0.17442081324997694 0.17398616196596967 C 0.17393871217734563 0.17544256549201523 0.17078647189965293 0.18379774314733363 0.17106603661890862 0.18304300613338256" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17106603661890862 0.18304300613338256 C 0.17065873916489474 0.18432442790359502 0.1652052351072927 0.20054857264886905 0.16617846717074192 0.1984200673759319 C 0.1652052351072927 0.20054857264886905 0.15882131724808266 0.20943215291135286 0.15938725185751798 0.20858506940862817" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15938725185751798 0.20858506940862817 C 0.1597007472462136 0.20757691932422728 0.16361079862471592 0.19420914056713284 0.16314919652186544 0.1964872683958176 C 0.16361079862471592 0.19420914056713284 0.16507458380587858 0.1799775577201273 0.16492647709172373 0.18124753546441116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16492647709172373 0.18124753546441116 C 0.16508784071166047 0.18045626182741567 0.16727961025456894 0.1704007488730963 0.16686284053096453 0.17175225182046527 C 0.16727961025456894 0.1704007488730963 0.17018311987864448 0.16446927078561 0.16992771377497679 0.16502950009598347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16992771377497679 0.16502950009598347 C 0.17019223920861368 0.1647354681593705 0.17376798145834918 0.1609131196444217 0.17310201897861957 0.16150111685662805 C 0.17376798145834918 0.1609131196444217 0.1783207005778248 0.15767956827391388 0.17791926353173207 0.15797353354950727" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3207430198064888,0.08624087504205558) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.17412068103152176 0.15535922715600506 C 0.17385697775019343 0.15585137493911028 0.17056106303991028 0.16210465930580756 0.17095624165558176 0.16126500055326756 C 0.17056106303991028 0.16210465930580756 0.16924706230912098 0.16578264315591992 0.1693785376434641 0.16543513218648512" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1693785376434641 0.16543513218648512 C 0.16925882831165356 0.16598164889127848 0.16774911914513163 0.17351606080970083 0.1679420256617377 0.17199333264400543 C 0.16774911914513163 0.17351606080970083 0.16699046225939607 0.18468408163573208 0.16706365944419158 0.18370787017483003" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16706365944419158 0.18370787017483003 C 0.16687671708027635 0.18533483767177053 0.16469806151732355 0.20651641047871733 0.16482035107720888 0.20323148013811598 C 0.16469806151732355 0.20651641047871733 0.16566083752959737 0.2247849971057072 0.16559618472556747 0.22312703426204633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16559618472556747 0.22312703426204633 C 0.16526880485627662 0.22144034803569274 0.1611633659327261 0.19969515830459753 0.16166762629407722 0.20288679954580302 C 0.1611633659327261 0.19969515830459753 0.15936817989729365 0.18332238435272866 0.15954506038935393 0.18482733936758053" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15954506038935393 0.18482733936758053 C 0.15968858691201632 0.1836918929606746 0.16173256525568838 0.16939035939773375 0.16126737866130278 0.17120198248470933 C 0.16173256525568838 0.16939035939773375 0.16544895959370445 0.16241168564380395 0.16512729952198124 0.1630878623238736" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16512729952198124 0.1630878623238736 C 0.16550991558951567 0.16270385354785175 0.17046814079152287 0.15783570408095582 0.16971869233239448 0.15847975701161154 C 0.17046814079152287 0.15783570408095582 0.1744875134231157 0.15509918300137118 0.17412068103152176 0.15535922715600506" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3139562258691485,0.089980595073294) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.12865719960522884 0.11732678678733874 C 0.12850004726076955 0.11795334854286163 0.12659321070032115 0.12608671382668646 0.12677137147171724 0.12484552785361347 C 0.12659321070032115 0.12608671382668646 0.12649826192153907 0.13283564268176484 0.12651927034847585 0.13222101846421475" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12651927034847585 0.13222101846421475 C 0.1267801152077557 0.1314894941303878 0.13041262792213676 0.12199166146298077 0.12964940865983404 0.1234427264582915 C 0.13041262792213676 0.12199166146298077 0.13618027589913123 0.11408869785900208 0.13567790149610837 0.11480823852048588" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13567790149610837 0.11480823852048588 C 0.1354886690949547 0.11541350864691444 0.13299992339577063 0.12367680671285078 0.13340711268226413 0.12207148003762851 C 0.13299992339577063 0.12367680671285078 0.13057367317284654 0.13507221517194687 0.13079163005818636 0.13407215862315314" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13079163005818636 0.13407215862315314 C 0.13081183715077385 0.13352519541796457 0.13107700789326826 0.12660416065569477 0.13103411516923624 0.12750860016089036 C 0.13107700789326826 0.12660416065569477 0.13132902837801513 0.12286140826079911 0.1313063427465706 0.12321888456080612" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1313063427465706 0.12321888456080612 C 0.1311199995887191 0.12369454427555102 0.12859278037396937 0.13029410895397692 0.1290702248523524 0.1289268011377448 C 0.12859278037396937 0.13029410895397692 0.12528590768544276 0.1405182264570789 0.12557700900597427 0.13962657835559167" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12557700900597427 0.13962657835559167 C 0.12552530552459484 0.13900107441299603 0.12491428569830403 0.1308897456013303 0.12495656722942103 0.13212053104444385 C 0.12491428569830403 0.1308897456013303 0.1250790525828326 0.124251871537711 0.12506963063257018 0.12485715303822892" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12506963063257018 0.12485715303822892 C 0.12489427681652959 0.12525419987468658 0.12254269550318006 0.13103132908944462 0.12296538484008308 0.12962171507572076 C 0.12254269550318006 0.13103132908944462 0.11975002306887148 0.14278508838018134 0.11999735858973391 0.14177252120291514" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11999735858973391 0.14177252120291514 C 0.11998013715307486 0.1409767622747022 0.11978169238122159 0.1310452488741262 0.11979070134982533 0.13222341406435992 C 0.11978169238122159 0.1310452488741262 0.11989746343454424 0.12725213265808957 0.11988925096648895 0.12763453892011037" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11988925096648895 0.12763453892011037 C 0.11971493881547055 0.12781664036842047 0.1175082926844572 0.12976234340371032 0.11779750515426818 0.12981975629983147 C 0.1175082926844572 0.12976234340371032 0.11630380100996467 0.12670606982222524 0.11641870132875724 0.1269455841666565" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11641870132875724 0.1269455841666565 C 0.1165532828794065 0.12703182457915801 0.11857462355662386 0.12748978016100002 0.11803367993654827 0.1279804691166748 C 0.11857462355662386 0.12748978016100002 0.12331638683909059 0.12048038733038294 0.12291002476966426 0.12105731669855924" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12291002476966426 0.12105731669855924 C 0.12279540461030809 0.12151987261941359 0.12135872850481583 0.12749718714926025 0.1215345828573903 0.12660798774881155 C 0.12135872850481583 0.12749718714926025 0.12073853834555234 0.13215435298353825 0.12079977253877065 0.13172770950394389" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12079977253877065 0.13172770950394389 C 0.12100146558356283 0.13118296938690052 0.1238748746651483 0.12399075120637298 0.12322008907627678 0.12519082809942342 C 0.1238748746651483 0.12399075120637298 0.12911029214930816 0.11667145001133168 0.12865719960522884 0.11732678678733874" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3270720921545617,0.07157066382368385) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.1788614753557673 0.14853270047867245 C 0.17859234225920848 0.14912091409470757 0.1750241091529848 0.1569991249025359 0.17563187819706141 0.15559126387109398 C 0.1750241091529848 0.1569991249025359 0.1712296108793301 0.16624668027138206 0.1715682468268479 0.1654270328559753" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1715682468268479 0.1654270328559753 C 0.1712959946930483 0.16650097372412886 0.16785060861528572 0.18055557294525887 0.16830122122125274 0.17831432327381805 C 0.16785060861528572 0.18055557294525887 0.1659825350830763 0.19348933771655255 0.16616089555524372 0.19232202891326527" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16616089555524372 0.19232202891326527 C 0.16624398797796314 0.19369709483400238 0.16760912772337458 0.21144022585780203 0.16715800462787686 0.20882281996211072 C 0.16760912772337458 0.21144022585780203 0.17194240337399447 0.22497323963651522 0.1715743727012162 0.22373089966156104" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1715743727012162 0.22373089966156104 C 0.17068333736853236 0.22202937211904178 0.15982585496168836 0.1997328641146177 0.16088194870901026 0.20331256915133003 C 0.15982585496168836 0.1997328641146177 0.15873618931871533 0.1788962617268198 0.1589012477333534 0.18077443922101288" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1589012477333534 0.18077443922101288 C 0.15910308960334202 0.1798165651636751 0.16191105344357723 0.16739570696505518 0.16132335017321695 0.16927995053295966 C 0.16191105344357723 0.16739570696505518 0.16633954837804857 0.1572371468955922 0.1659536869776769 0.15816351640615894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1659536869776769 0.15816351640615894 C 0.1664598144006734 0.15763054486840714 0.1731028650851424 0.15096528995918002 0.17202721605363486 0.15176785795313721 C 0.1731028650851424 0.15096528995918002 0.17943099696427833 0.14826310402246706 0.1788614753557673 0.14853270047867245" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.329991644806809,0.07156341768740282) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17213101588165122 0.16254676574067364 C 0.17194898412489637 0.1628100215656182 0.16944410392533396 0.1664797263896893 0.16994663480059308 0.16570583564000826 C 0.16944410392533396 0.1664797263896893 0.16578014626003743 0.1723440896615827 0.16610064537854172 0.17183345473684622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16610064537854172 0.17183345473684622 C 0.16569787857378346 0.1728647401666286 0.1605923101462532 0.18688938533186192 0.1612674437214426 0.1842088798942346 C 0.1605923101462532 0.18688938533186192 0.1577266757058374 0.2056487399962189 0.15799904247626856 0.20399951998837396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15799904247626856 0.20399951998837396 C 0.15803182017783848 0.20540810241163482 0.1589230476413542 0.22385657655231453 0.15839237489510755 0.22090250906750428 C 0.1589230476413542 0.22385657655231453 0.16486501047590535 0.24099381486764643 0.1643671154312286 0.23944832980609704" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1643671154312286 0.23944832980609704 C 0.1635109758020416 0.23782136583391636 0.15306451234540294 0.21637892567127384 0.15409343988098478 0.2199247621399289 C 0.15306451234540294 0.21637892567127384 0.15184719709785158 0.19497941968576213 0.15201998500424643 0.1968982921822365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15201998500424643 0.1968982921822365 C 0.15236741515831864 0.19539391229942474 0.15742016544597165 0.1761164915432431 0.15618914685311283 0.1788457335884954 C 0.15742016544597165 0.1761164915432431 0.16767579655733883 0.1629225254767683 0.16679220811855222 0.16414738763920886" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16679220811855222 0.16414738763920886 C 0.16714728572366255 0.1639762196230902 0.17149804002680116 0.16195998628757363 0.17105313937987623 0.1620933714457849 C 0.17149804002680116 0.16195998628757363 0.1722208389234658 0.16258454859858104 0.17213101588165122 0.16254676574067364" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33978947751265187,0.08735966945830426) rotate(0) scale(1,1) translate(-0.1746342267458757,-0.17286777966550146)"><path d="M 0.17495410449474516 0.15571314008393572 C 0.17503874186197788 0.15577590703548086 0.17626468646360063 0.15676720232837577 0.17596975290153782 0.15646634350247746 C 0.17626468646360063 0.15676720232837577 0.17870360343432884 0.15956153786906854 0.17849330723949877 0.15932344599471537" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17849330723949877 0.15932344599471537 C 0.17869853414704331 0.16032376634997064 0.1812751263003243 0.173316736118037 0.18095603013003325 0.17132729025777846 C 0.1812751263003243 0.173316736118037 0.18243633054573796 0.18418592182282098 0.18232246128299145 0.1831967963178177" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18232246128299145 0.1831967963178177 C 0.18263522588230316 0.1835959923237936 0.1870831339496969 0.18905429954706585 0.18607563647473196 0.18798714838952835 C 0.1870831339496969 0.18905429954706585 0.19510716385822358 0.19667056535982935 0.19441243098257038 0.19600261020826773" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.19441243098257038 0.19600261020826773 C 0.193750202051742 0.19574931384166488 0.18527425304511033 0.19239540325983276 0.18646568381262996 0.1929630538090337 C 0.18527425304511033 0.19239540325983276 0.17958605993564375 0.1888764494352584 0.180115261772335 0.18919080361785648" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.180115261772335 0.18919080361785648 C 0.1796987236323267 0.18870951489060028 0.17445169561954527 0.182337765577646 0.17511680409223543 0.183415338890782 C 0.17445169561954527 0.182337765577646 0.17188538976737117 0.17566363927434475 0.17213396010005302 0.17625992386022454" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17213396010005302 0.17625992386022454 C 0.17214235578656367 0.1747271670345318 0.17246972037107194 0.15615460997055428 0.17223470833818094 0.15786684195191167 C 0.17246972037107194 0.15615460997055428 0.17518072084112551 0.15553366492827106 0.17495410449474516 0.15571314008393572" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34959241188592416,0.08737172314236655) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.16980754556899413 0.15716411174651995 C 0.17005018673119268 0.1573105546806687 0.173249028383783 0.15939876514886792 0.17271923951537665 0.15892142695630498 C 0.173249028383783 0.15939876514886792 0.17645215969607814 0.16322306531568925 0.17616501198987033 0.16289217005727508" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17616501198987033 0.16289217005727508 C 0.17642770635190608 0.1636012467861909 0.17970766717041028 0.17292872628249856 0.17931734433429938 0.1714010908042648 C 0.17970766717041028 0.17292872628249856 0.1809765144972764 0.18204235454539794 0.18084888602320123 0.18122379579608" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18084888602320123 0.18122379579608 C 0.18093077012320624 0.18184528232637237 0.18216406410033345 0.1903302809422277 0.18183149522326128 0.18868163415958852 C 0.18216406410033345 0.1903302809422277 0.18509039732513452 0.20203471744009693 0.18483971254806736 0.20100755718775012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18483971254806736 0.20100755718775012 C 0.18433538879784858 0.19999799585440603 0.1779053759399225 0.1871575879962233 0.1787878275454421 0.18889282118762085 C 0.1779053759399225 0.1871575879962233 0.17387216542653133 0.17945908703292623 0.17425029328183217 0.18018475889097968" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17425029328183217 0.18018475889097968 C 0.17408719831562738 0.17950816364010397 0.17199695405633408 0.17073214668958467 0.17229315368737488 0.17206561588047103 C 0.17199695405633408 0.17073214668958467 0.17056279304450644 0.16352625466033258 0.1706958977093425 0.16418312860034323" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1706958977093425 0.16418312860034323 C 0.1704872901085791 0.163715961705459 0.1681185771551529 0.15799220779058026 0.16819260650018195 0.1585771258617322 C 0.1681185771551529 0.15799220779058026 0.16994212382472848 0.15704636057025226 0.16980754556899413 0.15716411174651995" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3607306797881925,0.089980595073294) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.1635280322298966 0.14178955932394385 C 0.1641731661863863 0.1423157163159495 0.17239448865966955 0.14965718796806027 0.1712696397077731 0.1481034432280117 C 0.17239448865966955 0.14965718796806027 0.17750593464806086 0.1614620839525696 0.1770262196526541 0.16043449620452668" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1770262196526541 0.16043449620452668 C 0.1771671210677297 0.1619089037559909 0.17865663647283256 0.18071481468825684 0.1787170366335611 0.17812738682209744 C 0.17865663647283256 0.18071481468825684 0.17610011614810772 0.19259665091313477 0.17630141772391184 0.1914836305984396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17630141772391184 0.1914836305984396 C 0.17602706216603992 0.19280760236363592 0.1723050733910088 0.21018736583971395 0.17300915102944872 0.20737129178079539 C 0.1723050733910088 0.21018736583971395 0.16742276398206482 0.2267686215991846 0.1678524860626328 0.22527651930546236" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1678524860626328 0.22527651930546236 C 0.16801918804147786 0.22376043627775932 0.1699445824639358 0.20434208936387874 0.1698529098087735 0.20708352297302576 C 0.1699445824639358 0.20434208936387874 0.16887752860089783 0.19115396541425395 0.16895255792458058 0.19237931599569794" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16895255792458058 0.19237931599569794 C 0.16892431756099122 0.19116122455942294 0.16864191392509764 0.17545073570454828 0.16861367356150828 0.1777622187603981 C 0.16864191392509764 0.17545073570454828 0.16934792301483176 0.16354812770592522 0.16929144228765303 0.16464151932550006" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16929144228765303 0.16464151932550006 C 0.16910157662063666 0.1636460616944198 0.16653277011197704 0.15079169775240725 0.16701305428345672 0.15269602775253693 C 0.16653277011197704 0.15079169775240725 0.16323761372543324 0.14088068695489442 0.1635280322298966 0.14178955932394385" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34510993657984057,0.08620507345131107) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.17084469839215274 0.15734345611486986 C 0.17108330172055383 0.15752997617795503 0.17423105981108974 0.16024581029877139 0.17370793833296577 0.1595816968718918 C 0.17423105981108974 0.16024581029877139 0.17740667427936316 0.16579041060121938 0.17712215612964027 0.16531281723742494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17712215612964027 0.16531281723742494 C 0.17730144398497916 0.1659575338140001 0.17959942385883468 0.17448549295135593 0.17927361039370676 0.173049416156327 C 0.17959942385883468 0.17448549295135593 0.18117844332096447 0.18333709899622608 0.1810319177111754 0.1825457387777723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1810319177111754 0.1825457387777723 C 0.1812470524608696 0.18321049522846114 0.1840858662317596 0.19176189950679598 0.1836135347075059 0.19052281618603825 C 0.1840858662317596 0.19176189950679598 0.1869570927767792 0.19798906549693382 0.1866998960022197 0.19741473862686493" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1866998960022197 0.19741473862686493 C 0.18608514286525296 0.1968524626375562 0.1783423697467629 0.18960999972595516 0.17932285835861886 0.19066742675516019 C 0.1783423697467629 0.18960999972595516 0.17456829718505884 0.18423046323650819 0.17493403265994809 0.1847256142764045" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17493403265994809 0.1847256142764045 C 0.17466273463194912 0.18400507782864814 0.17127779287347078 0.17438636474697589 0.17167845632396056 0.1760791769033281 C 0.17127779287347078 0.17438636474697589 0.16999670583157991 0.1634395926915819 0.17012607125407073 0.16441186840017777" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17012607125407073 0.16441186840017777 C 0.17008166705579264 0.16392844779585536 0.16965310646957396 0.15802178679119994 0.1695932208747338 0.15861082114830893 C 0.16965310646957396 0.15802178679119994 0.170948988185271 0.15723784236208327 0.17084469839215274 0.15734345611486986" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.3607306797881925,0.089980595073294) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18137348365384806 0.12674523536809118 C 0.1815177270575004 0.1267648493189264 0.18337431062789222 0.1270916624773521 0.18310440449767612 0.12698060277811393 C 0.18337431062789222 0.1270916624773521 0.18473801994300504 0.1281693975073521 0.1846123572164413 0.12807795175894915" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1846123572164413 0.12807795175894915 C 0.1846754193523594 0.12827682424161652 0.18544625788615038 0.13088010305133982 0.18536910284745875 0.1304644215509577 C 0.18544625788615038 0.13088010305133982 0.18555231058351437 0.13328293878124953 0.18553821768074086 0.13306612976353477" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18553821768074086 0.13306612976353477 C 0.18557342726595663 0.13315016177219174 0.18599958285127396 0.13425504293256607 0.18596073270333005 0.13407451386741862 C 0.18599958285127396 0.13425504293256607 0.1859791560731934 0.13541208139775993 0.18600441945606774 0.13523247854530412 C 0.1859791560731934 0.13541208139775993 0.18557496449818456 0.1363603002973784 0.1856575721088379 0.13622974809688812 C 0.18557496449818456 0.1363603002973784 0.1848953109323585 0.13684562514302062 0.18501312812822762 0.13679910495118736 C 0.1848953109323585 0.13684562514302062 0.1841223079998113 0.13673801353423023 0.18424376575840856 0.13678799039888742 C 0.1841223079998113 0.13673801353423023 0.18349829079728164 0.13615033192333573 0.18355563502506064 0.13619938257530123" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18355563502506064 0.13619938257530123 C 0.18341130595205335 0.13618839743353411 0.18154460139535109 0.1359710069749123 0.18182368614897312 0.136067560874096 C 0.18154460139535109 0.1359710069749123 0.18007186230098154 0.13495516702768035 0.1802066179815963 0.13504073578509693" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1802066179815963 0.13504073578509693 C 0.18014009086887747 0.13485583273350193 0.17932195896687303 0.1324207234656292 0.1794082926289706 0.13282189916595685 C 0.17932195896687303 0.1324207234656292 0.1791508074870468 0.13001035473243247 0.17917061403642554 0.1302266273811651" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3628681185420745,0.09305400747068895) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10746009434875135 0.1056960156889955 C 0.1072543313669991 0.10555108968427789 0.10572530372904965 0.10461911322682975 0.10622551645823786 0.10482645966068978 C 0.10572530372904965 0.10461911322682975 0.10414408689495455 0.10393675562898823 0.10445881797362205 0.10445193708583533 C 0.10414408689495455 0.10393675562898823 0.10414491604250373 0.10088844000201329 0.10433712998623289 0.10173537091960715 C 0.10414491604250373 0.10088844000201329 0.10330553431124709 0.0993703515802722 0.10330553431124709 0.0993703515802722 C 0.10330553431124709 0.0993703515802722 0.10452934392996205 0.102582301837201 0.10433712998623289 0.10173537091960715 C 0.10452934392996205 0.102582301837201 0.10412329657161835 0.10483254412758568 0.10445881797362205 0.10445193708583533 C 0.10412329657161835 0.10483254412758568 0.10176407824596136 0.10375130039466487 0.1023240015742107 0.10401901317010924 C 0.10176407824596136 0.10375130039466487 0.10089515740911187 0.1026501016436791 0.10109927800412599 0.10284566043316912" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3650055572959565,0.09612741986808382) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13935000450360585 0.11389180630522465 C 0.1394656243014682 0.11399314711845372 0.1409341685710515 0.11535588625100865 0.14073744207795388 0.11510789606397356 C 0.1409341685710515 0.11535588625100865 0.1417918291160127 0.11701433792345174 0.14171072242077742 0.11686768854964573" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14171072242077742 0.11686768854964573 C 0.14171106026780492 0.11706135554448915 0.14166971097946746 0.11956392671928198 0.14171477658510737 0.11919169248776681 C 0.14166971097946746 0.11956392671928198 0.14112453170043102 0.12151306656449941 0.14116993515309842 0.12133449932782767" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14116993515309842 0.12133449932782767 C 0.14117724903866577 0.12142143408779514 0.14124260351662737 0.12254255947923745 0.14125770177990668 0.12237771644743735 C 0.14124260351662737 0.12254255947923745 0.14092021097882365 0.12343853030643812 0.14098875599374686 0.12331261570942896 C 0.14092021097882365 0.12343853030643812 0.14033153641565504 0.12394193905918159 0.14043516160082828 0.12388869161154727 C 0.14033153641565504 0.12394193905918159 0.13963431470092746 0.12391789776870765 0.13974525377166805 0.1239515850810408 C 0.13963431470092746 0.12391789776870765 0.13901536583004737 0.1233728482793836 0.1391038927519413 0.1234844438635494 C 0.13901536583004737 0.1233728482793836 0.13864785053869072 0.12253977092167641 0.13868293070894078 0.12261243807105125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13868293070894078 0.12261243807105125 C 0.13856496244379685 0.1225178188338407 0.1370590711246521 0.12123493342056006 0.13726731152721344 0.12147700722452467 C 0.1370590711246521 0.12123493342056006 0.1360937737407874 0.11956009785672192 0.1361840458782048 0.11970755242347597" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1361840458782048 0.11970755242347597 C 0.136177120470705 0.11952278524821525 0.1361344926843833 0.11712402847190251 0.13610094098820708 0.11749034632034719 C 0.1361344926843833 0.11712402847190251 0.13662714333599552 0.11513018756895588 0.1365866662323195 0.11531173824213982" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.365984606077485,0.0998132680809624) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10655438992720283 0.10723220603830012 C 0.10642031504784435 0.10699585381380591 0.10538575196462659 0.10535330241376716 0.10574994065105199 0.10581409269133486 C 0.10538575196462659 0.10535330241376716 0.1042416213252351 0.10387557661143333 0.10436925780865038 0.10446746437289389 C 0.1042416213252351 0.10387557661143333 0.10504661842636963 0.10148349396362193 0.10498412175056031 0.1022627661225715 C 0.10504661842636963 0.10148349396362193 0.10474423786350631 0.09979183141919647 0.10474423786350631 0.09979183141919647 C 0.10474423786350631 0.09979183141919647 0.10492162507475099 0.10304203828152107 0.10498412175056031 0.1022627661225715 C 0.10492162507475099 0.10304203828152107 0.1039878555439797 0.10456627968829216 0.10436925780865038 0.10446746437289389 C 0.1039878555439797 0.10456627968829216 0.10229744327763621 0.10231190909409715 0.10269570816253622 0.10285565801496109 C 0.10229744327763621 0.10231190909409715 0.10186032855536933 0.10092985631983513 0.10197966849925032 0.10120497084771027" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3669636548590135,0.10349911629384105) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13931498008367774 0.11479757844405006 C 0.1393883152193393 0.11494258021441303 0.14030128331670663 0.11684477402586617 0.14019500171161658 0.1165375996884057 C 0.14030128331670663 0.11684477402586617 0.1406233058141869 0.11864584306067325 0.14059035934475841 0.11848367049357574" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14059035934475841 0.11848367049357574 C 0.1405432343144066 0.11863880911098529 0.13989547776037647 0.12061824216013643 0.14002485898053654 0.12034533390249032 C 0.13989547776037647 0.12061824216013643 0.13895552851302923 0.12187633922556561 0.13903778470283748 0.12175856958532905" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13903778470283748 0.12175856958532905 C 0.1390227105468318 0.1218321690123287 0.1388037231993813 0.12276530569840453 0.1388568948307694 0.1226417627093249 C 0.1388037231993813 0.12276530569840453 0.13831071504380094 0.12330393437639839 0.13839972512618018 0.12324108545428458 C 0.13831071504380094 0.12330393437639839 0.13768777548853994 0.12338126431191299 0.13778877384221858 0.12339594977469057 C 0.13768777548853994 0.12338126431191299 0.13710182068436366 0.12297657501117636 0.13718774488203664 0.1230648599009536 C 0.13710182068436366 0.12297657501117636 0.1367098567478525 0.12219830264550646 0.13675768347014303 0.12233653109736367 C 0.1367098567478525 0.12219830264550646 0.13660183594325098 0.12132858409377564 0.13661382421455037 0.12140611847866703" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13661382421455037 0.12140611847866703 C 0.13653685005404356 0.12126519626913163 0.1355726306440811 0.11940624590869525 0.1356901342884688 0.11971505196424213 C 0.1355726306440811 0.11940624590869525 0.1351632509980172 0.11753256196609305 0.1352037804818981 0.11770044581210451" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1352037804818981 0.11770044581210451 C 0.1352431348524876 0.11754878600344515 0.13579419210983462 0.11560598813245965 0.13567603292897215 0.11588052810819215 C 0.13579419210983462 0.11560598813245965 0.13670049546252055 0.11428308593624134 0.1366216906522476 0.11440596610331448" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36689238940437907,0.10698940217299886) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10547387959994596 0.10784925971634682 C 0.10541793105042137 0.1075860333387488 0.10494185132655183 0.1056998867256352 0.10513818830279839 0.1062699014507587 C 0.10494185132655183 0.1056998867256352 0.10433241347545177 0.10388504248449446 0.10429585774246661 0.10442917136560581 C 0.10433241347545177 0.10388504248449446 0.1056013477461082 0.10241618785932495 0.10535752270070939 0.10300512816409052 C 0.1056013477461082 0.10241618785932495 0.10575880801485948 0.10089552953701242 0.10575880801485948 0.10089552953701242 C 0.10575880801485948 0.10089552953701242 0.10511369765531058 0.10359406846885609 0.10535752270070939 0.10300512816409052 C 0.10511369765531058 0.10359406846885609 0.10394791131508732 0.10429737743216924 0.10429585774246661 0.10442917136560581 C 0.10394791131508732 0.10429737743216924 0.10306489058676636 0.10155913632732955 0.10326984413643366 0.10221436456347112 C 0.10306489058676636 0.10155913632732955 0.1030321851624677 0.10021170817963723 0.10306613644446284 0.10049780194875636" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3607306797881925,0.089980595073294) rotate(0) scale(1,1) translate(-0.17057305483529786,-0.1716896655664302)"><path d="M 0.16381220966948284 0.15797353354950727 C 0.16421364671557556 0.15826749882510066 0.16929541670232495 0.1620891140688344 0.16862945422259534 0.16150111685662805 C 0.16929541670232495 0.1620891140688344 0.17206828485987502 0.16532353203259642 0.17180375942623813 0.16502950009598347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17180375942623813 0.16502950009598347 C 0.17205916552990583 0.16558972940635694 0.1752854023938548 0.17310375476783424 0.17486863267025038 0.17175225182046527 C 0.1752854023938548 0.17310375476783424 0.1769663597294279 0.18203880910140666 0.17680499610949116 0.18124753546441116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17680499610949116 0.18124753546441116 C 0.176953102823646 0.18251751320869503 0.17904387878219988 0.19876539622450234 0.1785822766793494 0.1964872683958176 C 0.17904387878219988 0.19876539622450234 0.18265771673239262 0.20959321949302906 0.182344221343697 0.20858506940862817" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.182344221343697 0.20858506940862817 C 0.18177828673426166 0.20773798590590348 0.17457977396702373 0.19629156210299475 0.17555300603047294 0.1984200673759319 C 0.17457977396702373 0.19629156210299475 0.17025813912829244 0.1817615843631701 0.17066543658230632 0.18304300613338256" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17066543658230632 0.18304300613338256 C 0.17038587186305063 0.1822882691194315 0.16682855887860662 0.1725297584399241 0.16731065995123792 0.17398616196596967 C 0.16682855887860662 0.1725297584399241 0.16467768735735505 0.1648644973087412 0.16488022371073066 0.1655661638208357" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16488022371073066 0.1655661638208357 C 0.16480563607772414 0.16519901549643737 0.1638961709445483 0.16052766473877844 0.1639851721146523 0.16116038392805582 C 0.1638961709445483 0.16052766473877844 0.16379779613238538 0.15770796268462822 0.16381220966948284 0.15797353354950727" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35394388585085235,0.08624087504205558) rotate(0) scale(1,1) translate(-0.16923840088096093,-0.16884701953825593)"><path d="M 0.16435612073039998 0.15535922715600506 C 0.16472295312199392 0.15561927131063893 0.16950755788865562 0.15912380994226727 0.16875810942952726 0.15847975701161154 C 0.16950755788865562 0.15912380994226727 0.1737321183074749 0.16347187109989544 0.17334950223994047 0.1630878623238736" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17334950223994047 0.1630878623238736 C 0.17367116231166368 0.16376403900394323 0.17767460969500457 0.1730136055716849 0.17720942310061896 0.17120198248470933 C 0.17767460969500457 0.1730136055716849 0.17907526789523018 0.18596278577448647 0.1789317413725678 0.18482733936758053" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1789317413725678 0.18482733936758053 C 0.17875486088050752 0.1863322943824324 0.1763049151064934 0.20607844078700852 0.17680917546784453 0.20288679954580302 C 0.1763049151064934 0.20607844078700852 0.17255323716706342 0.22481372048839993 0.17288061703635427 0.22312703426204633" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17288061703635427 0.22312703426204633 C 0.17294526984038416 0.22146907141838545 0.17353416112482753 0.19994654979751464 0.17365645068471286 0.20323148013811598 C 0.17353416112482753 0.19994654979751464 0.17122619995381494 0.18208090267788954 0.17141314231773017 0.18370787017483003" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17141314231773017 0.18370787017483003 C 0.17133994513293466 0.182731658713928 0.170341869583578 0.17047060447831003 0.17053477610018405 0.17199333264400543 C 0.170341869583578 0.17047060447831003 0.16897855478664708 0.16488861548169176 0.16909826411845763 0.16543513218648512" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16909826411845763 0.16543513218648512 C 0.1689667887841145 0.1650876212170503 0.1671253814906685 0.16042534180072757 0.16752056010633998 0.16126500055326756 C 0.1671253814906685 0.16042534180072757 0.16409241744907166 0.15486707937289984 0.16435612073039998 0.15535922715600506" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3607306797881925,0.089980595073294) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.10957758710957849 0.11732678678733874 C 0.11003067965365783 0.1179821235633458 0.11566948322740207 0.12639090499247385 0.11501469763853055 0.12519082809942342 C 0.11566948322740207 0.12639090499247385 0.11763670722082892 0.13227244962098725 0.11743501417603673 0.13172770950394389" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11743501417603673 0.13172770950394389 C 0.11737377998281842 0.13130106602434952 0.11652434950484253 0.12571878834836284 0.116700203857417 0.12660798774881155 C 0.11652434950484253 0.12571878834836284 0.11521014178578688 0.12059476077770488 0.11532476194514305 0.12105731669855924" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11532476194514305 0.12105731669855924 C 0.11573112401456938 0.12163424606673554 0.12074205039833467 0.12847115807234957 0.12020110677825908 0.1279804691166748 C 0.12074205039833467 0.12847115807234957 0.1219506669366993 0.12685934375415497 0.12181608538605006 0.1269455841666565" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12181608538605006 0.1269455841666565 C 0.12170118506725748 0.12718509851108775 0.1201480690907282 0.12987716919595263 0.12043728156053918 0.12981975629983147 C 0.1201480690907282 0.12987716919595263 0.11817122359729997 0.12745243747180027 0.11834553574831837 0.12763453892011037" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11834553574831837 0.12763453892011037 C 0.11835374821637366 0.12801694518213116 0.11843507639637821 0.13340157925459364 0.11844408536498195 0.13222341406435992 C 0.11843507639637821 0.13340157925459364 0.11822020668841444 0.14256828013112807 0.11823742812507348 0.14177252120291514" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11823742812507348 0.14177252120291514 C 0.11799009260421105 0.14075995402564895 0.11484671253782125 0.1282121010619969 0.11526940187472427 0.12962171507572076 C 0.11484671253782125 0.1282121010619969 0.11298980226619652 0.12446010620177127 0.11316515608223712 0.12485715303822892" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11316515608223712 0.12485715303822892 C 0.11317457803249956 0.12546243453874684 0.11323593795426927 0.1333513164875574 0.11327821948538627 0.13212053104444385 C 0.11323593795426927 0.1333513164875574 0.11260607422745361 0.1402520822981873 0.11265777770883305 0.13962657835559167" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11265777770883305 0.13962657835559167 C 0.11236667638830153 0.13873493025410444 0.10868711738407183 0.12755949332151267 0.10916456186245486 0.1289268011377448 C 0.10868711738407183 0.12755949332151267 0.10674210081038518 0.12274322484606123 0.1069284439682367 0.12321888456080612" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1069284439682367 0.12321888456080612 C 0.10695112959968124 0.12357636086081314 0.10724356426960326 0.12841303966608594 0.10720067154557122 0.12750860016089036 C 0.10724356426960326 0.12841303966608594 0.10746336374920862 0.1346191218283417 0.10744315665662113 0.13407215862315314" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10744315665662113 0.13407215862315314 C 0.10722519977128131 0.1330721020743594 0.10442048474604974 0.12046615336240624 0.10482767403254326 0.12207148003762851 C 0.10442048474604974 0.12046615336240624 0.10236765281754527 0.11420296839405733 0.10255688521869896 0.11480823852048588" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10255688521869896 0.11480823852048588 C 0.10305925962172183 0.11552777918196969 0.10934859731727602 0.12489379145360224 0.10858537805497331 0.1234427264582915 C 0.10934859731727602 0.12489379145360224 0.11197636122561132 0.1329525427980417 0.11171551636633147 0.13222101846421475" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11171551636633147 0.13222101846421475 C 0.11169450793939469 0.13160639424666465 0.11128525447169409 0.12360434188054047 0.11146341524309017 0.12484552785361347 C 0.11128525447169409 0.12360434188054047 0.10942043476511919 0.11670022503181585 0.10957758710957849 0.11732678678733874" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33734345282867073,0.07071608401144233) rotate(0) scale(1,1) translate(-0.17197072520625506,-0.15562765289634525)"><path d="M 0.17195664534611171 0.1546161171584606 C 0.17234262024715252 0.15478826031050347 0.17707876706765693 0.1574869382128322 0.17658834415860142 0.15668183498297503 C 0.17707876706765693 0.1574869382128322 0.1779461682627925 0.16491031599456069 0.1778417202547778 0.16427735591674641" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1778417202547778 0.16427735591674641 C 0.1778142964335967 0.16495398754712526 0.17735210377644453 0.17403495475279804 0.17751263440060466 0.17239693548129262 C 0.17735210377644453 0.17403495475279804 0.17578224596187728 0.18489497481593797 0.17591535276485631 0.1839335871748114" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17591535276485631 0.1839335871748114 C 0.17581736157750377 0.1846257992706742 0.1746379150508238 0.19376976062901932 0.17473945851662576 0.1922401323251651 C 0.1746379150508238 0.19376976062901932 0.17469327889678343 0.20312654302905345 0.17469683117523285 0.20228912682106204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17469683117523285 0.20228912682106204 C 0.17443829634593386 0.20148300970618319 0.17113751383390283 0.1910792951836082 0.17159441322364488 0.19261572144251576 C 0.17113751383390283 0.1910792951836082 0.16901567393788505 0.1831217025701424 0.1692140384983281 0.18385201171417112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1692140384983281 0.18385201171417112 C 0.1690805713605104 0.1829262236072676 0.16753571387331084 0.17103750783618327 0.1676124328445157 0.17274255443132894 C 0.16753571387331084 0.17103750783618327 0.1683501590104824 0.16261219408418087 0.16829341084386956 0.16339145257242302" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16829341084386956 0.16339145257242302 C 0.16848771495949513 0.16282414618084337 0.1709303297732298 0.1558524979223036 0.1706250602313763 0.15658377587346714 C 0.1709303297732298 0.1558524979223036 0.17206761077233967 0.1544521455988767 0.17195664534611171 0.1546161171584606" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33478469324303095,0.087967509323014) rotate(0) scale(1,1) translate(-0.1733257244965802,-0.17311386908515122)"><path d="M 0.1757807992331282 0.1548701878278088 C 0.17584152021668828 0.15507809865186867 0.17648579087668814 0.15814272603124824 0.1765094510358493 0.15736511771652723 C 0.17648579087668814 0.15814272603124824 0.17541249618047294 0.16477118509512195 0.1754968773231942 0.16420148760446082" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1754968773231942 0.16420148760446082 C 0.1753792376804526 0.16518203153261582 0.1739918754506884 0.17775524797913778 0.17408520161029517 0.1759680147423207 C 0.1739918754506884 0.17775524797913778 0.17440127689104767 0.18645497575492767 0.17437696340791287 0.1856482864462656" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17437696340791287 0.1856482864462656 C 0.17444564913538801 0.18611789946466778 0.17535805941019775 0.19241644685953818 0.1752011921376146 0.1912836426670917 C 0.17535805941019775 0.19241644685953818 0.1763475522240188 0.19990512792966764 0.1762593706789108 0.19924193675562332" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1762593706789108 0.19924193675562332 C 0.17587611140706486 0.19850358644234548 0.17102992711769333 0.18896512916981278 0.1716602594167595 0.19038173299628913 C 0.17102992711769333 0.18896512916981278 0.1684483100628966 0.18156443732470873 0.1686953830901168 0.18224269083790723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1686953830901168 0.18224269083790723 C 0.1685726200818281 0.18147675591667706 0.1671786668973159 0.1715378663677687 0.16722222699065245 0.17305147178314503 C 0.1671786668973159 0.1715378663677687 0.16825186488503013 0.1633317553592451 0.168172661970078 0.16407942585339125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.168172661970078 0.16407942585339125 C 0.16845211780193403 0.1634693575373203 0.17216014339093788 0.1559911695584082 0.17152613195235036 0.15675860606054007 C 0.17216014339093788 0.1559911695584082 0.17613535483985968 0.15471281964174785 0.1757807992331282 0.1548701878278088" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34761481350277945,0.07157066382368385) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.17988136099763122 0.14853270047867245 C 0.18045088260614225 0.14880229693487784 0.1877912693312711 0.1525704259470944 0.18671562029976357 0.15176785795313721 C 0.1877912693312711 0.1525704259470944 0.193295276798718 0.15869648794391075 0.1927891493757215 0.15816351640615894" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1927891493757215 0.15816351640615894 C 0.19317501077609317 0.15908988591672568 0.19800718945054174 0.17116419410086414 0.19741948618018146 0.16927995053295966 C 0.19800718945054174 0.17116419410086414 0.20004343049003362 0.18173231327835065 0.199841588620045 0.18077443922101288" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.199841588620045 0.18077443922101288 C 0.19967653020540693 0.18265261671520597 0.19680479389706637 0.20689227418804237 0.19786088764438825 0.20331256915133003 C 0.19680479389706637 0.20689227418804237 0.18627742831949848 0.2254324272040803 0.18716846365218232 0.22373089966156104" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18716846365218232 0.22373089966156104 C 0.18753649432496058 0.22248855968660686 0.19203595482101934 0.2062054140664194 0.19158483172552165 0.20882281996211072 C 0.19203595482101934 0.2062054140664194 0.19266503322087417 0.19094696299252817 0.19258194079815474 0.19232202891326527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19258194079815474 0.19232202891326527 C 0.19240358032598734 0.191154720109978 0.18999100252617876 0.17607307360237723 0.19044161513214578 0.17831432327381805 C 0.18999100252617876 0.17607307360237723 0.1869023373927509 0.16435309198782172 0.1871745895265505 0.1654270328559753" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1871745895265505 0.1654270328559753 C 0.1868359535790327 0.16460738544056852 0.18250318911226038 0.15418340283965204 0.183110958156337 0.15559126387109395 C 0.18250318911226038 0.15418340283965204 0.1796122279010724 0.14794448686263734 0.17988136099763122 0.14853270047867245" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34469526085053215,0.07156341768740282) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17137677306714055 0.16254676574067364 C 0.17146659610895515 0.16250898288276625 0.17289955021584047 0.16222675660399616 0.17245464956891554 0.1620933714457849 C 0.17289955021584047 0.16222675660399616 0.17707065843534997 0.16431855565532752 0.17671558083023964 0.16414738763920886" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17671558083023964 0.16414738763920886 C 0.17759916926902625 0.1653722498016494 0.1885496606885378 0.1815749756337477 0.18731864209567897 0.1788457335884954 C 0.1885496606885378 0.1815749756337477 0.19183523409861752 0.1984026720650483 0.19148780394454532 0.19689829218223653" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19148780394454532 0.19689829218223653 C 0.19131501603815046 0.1988171646787109 0.18838542153222512 0.22347059860858393 0.18941434906780696 0.2199247621399289 C 0.18838542153222512 0.22347059860858393 0.17828453388837617 0.24107529377827772 0.17914067351756316 0.23944832980609704" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17914067351756316 0.23944832980609704 C 0.17963856856223992 0.23790284474454765 0.1856460867999309 0.21794844158269402 0.1851154140536842 0.22090250906750428 C 0.1856460867999309 0.21794844158269402 0.18554152417409323 0.2025909375651131 0.1855087464725233 0.20399951998837396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1855087464725233 0.20399951998837396 C 0.1852363797020921 0.202350299980529 0.18156521165215966 0.18152837445660727 0.1822403452273491 0.1842088798942346 C 0.18156521165215966 0.18152837445660727 0.17700437676549177 0.17080216930706385 0.17740714357025003 0.17183345473684622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17740714357025003 0.17183345473684622 C 0.17708664445174577 0.17132281981210973 0.1730586232729396 0.16493194489032723 0.17356115414819873 0.16570583564000826 C 0.1730586232729396 0.16493194489032723 0.1711947413103857 0.1622835099157291 0.17137677306714055 0.16254676574067364" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 69 KiB

View File

@@ -0,0 +1,180 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.1771656262374324 C 0.18214574144411624 0.1771656262374324 0.17854899894242843 0.16798807745923464 0.17814936088668534 0.16869404274986524 C 0.17854899894242843 0.16798807745923464 0.18814031228026268 0.16940000804049585 0.1877406742245196 0.16869404274986524 C 0.18814031228026268 0.16940000804049585 0.18214574144411624 0.1771656262374324 0.18294501755560244 0.1771656262374324 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33599709637716435,0.07877447199930587) rotate(0) scale(1,1) translate(-0.1796864743156008,-0.1609457706712427)"><path d="M 0.18129552589172349 0.15747501836743638 C 0.18127616110115263 0.15781414124650564 0.1810414163344225 0.16285332670627972 0.18106314840487314 0.1615444929162674 C 0.1810414163344225 0.16285332670627972 0.1810323737664359 0.1741507347585271 0.1810347410463157 0.17318102384758405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1810347410463157 0.17318102384758405 C 0.1808478398119521 0.17357378497987028 0.17827577136145403 0.17878335961617492 0.17879192623395251 0.1778941574350187 C 0.17827577136145403 0.17878335961617492 0.17451162893819888 0.18434789107032834 0.1748408825763338 0.18385145002145836" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1748408825763338 0.18385145002145836 C 0.17422398785932966 0.18439634261948126 0.165920094459573 0.19156457689481335 0.16743814597228415 0.19039016119773303 C 0.165920094459573 0.19156457689481335 0.15572310762809308 0.19857396148547957 0.1566242644238001 0.19794443838642214" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1566242644238001 0.19794443838642214 C 0.15707494896681534 0.19702729686248985 0.16270160281258034 0.18541000489679016 0.16203247893998307 0.18693874009923445 C 0.16270160281258034 0.18541000489679016 0.16487219022454924 0.17898802227857874 0.16465375089496723 0.17959961595709073" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16465375089496723 0.17959961595709073 C 0.16485696984339912 0.17889522667759378 0.16754342163883043 0.1698251289102219 0.16709237827614998 0.1711469446031273 C 0.16754342163883043 0.1698251289102219 0.17031409566138128 0.16312040122881746 0.17006627124713272 0.1637378276422259" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17006627124713272 0.1637378276422259 C 0.17041754231534734 0.16338752173233678 0.17521729528609065 0.15901225595065713 0.17428152406570807 0.15953415672355625 C 0.17521729528609065 0.15901225595065713 0.18188002604389145 0.1573034235044264 0.18129552589172349 0.15747501836743638" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.325196187487318,0.09058713353659362) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.18572902378204342 0.1570702695294224 C 0.1857315852738392 0.1573394109992669 0.18551664272480012 0.16129081030887843 0.18575976168359282 0.16029996716755646 C 0.18551664272480012 0.16129081030887843 0.18256591582594273 0.16968208889676345 0.1828115962765312 0.168960387225286" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1828115962765312 0.168960387225286 C 0.1824890303120549 0.1695587919974845 0.17821379334520254 0.17729184850288365 0.17894080470281548 0.17614124449166796 C 0.17821379334520254 0.17729184850288365 0.17368301459203947 0.1833198345988916 0.17408745998517608 0.1827676353598744" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17408745998517608 0.1827676353598744 C 0.17369515642500727 0.18327523925980674 0.16855885927823985 0.1901426386434911 0.1693798172631504 0.18885888215906266 C 0.16855885927823985 0.1901426386434911 0.16380730974150762 0.1989488657575118 0.16423596416624936 0.1981727131730157" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16423596416624936 0.1981727131730157 C 0.16437277026248562 0.19710508630255655 0.1660927083462227 0.1837820674185821 0.1658776373210844 0.1853611907275056 C 0.1660927083462227 0.1837820674185821 0.1668950813968108 0.1787117370274697 0.16681681646790877 0.179223233465934" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16681681646790877 0.179223233465934 C 0.16699740616802453 0.17850046055912763 0.16952129179814257 0.16925204539331437 0.16898389286929774 0.17054995858425778 C 0.16952129179814257 0.16925204539331437 0.17362241284277563 0.16307313489047612 0.17326560361404655 0.16364827517461317" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17326560361404655 0.16364827517461317 C 0.17364630787764654 0.16338831095266532 0.1788726731245793 0.1599805373741397 0.17783405477724623 0.16052870451123893 C 0.1788726731245793 0.1599805373741397 0.18638693786577654 0.15678206661427102 0.18572902378204342 0.1570702695294224" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3159029302706433,0.09212286312454832) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.19311043584347384 0.136116547796998 C 0.1931398943785938 0.13638302386149198 0.19237510258754378 0.14062284412545945 0.19346393826491318 0.13931426057092583 C 0.19237510258754378 0.14062284412545945 0.17892611350255166 0.1528616579414411 0.18004440771504102 0.15181955045140147" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18004440771504102 0.15181955045140147 C 0.17952066475302683 0.15332802457926445 0.17316071160912624 0.17341962881860884 0.17375949217087092 0.1699212399857572 C 0.17316071160912624 0.17341962881860884 0.17278400337437458 0.19579013115060986 0.17285904097410507 0.1938002164456212" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17285904097410507 0.1938002164456212 C 0.1729296228647493 0.19527577220807657 0.17382969560211284 0.21402046389232582 0.173706023661836 0.21150688559508554 C 0.17382969560211284 0.21402046389232582 0.17439619430705985 0.22500117854728952 0.17434310425742724 0.2239631560125046" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17434310425742724 0.2239631560125046 C 0.17406554757755266 0.22295124895030596 0.17013049218847856 0.20806067268198342 0.17101242409893228 0.21182027126612105 C 0.17013049218847856 0.20806067268198342 0.16315554610140365 0.17610028148091397 0.16375992133198278 0.178847973002853" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16375992133198278 0.178847973002853 C 0.1638703952217712 0.17706553820654042 0.16581050592401392 0.15449317506706428 0.16508560800944377 0.15745875544710228 C 0.16581050592401392 0.15449317506706428 0.17307312033160627 0.14207786285867158 0.17245869630682453 0.143261008442397" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17245869630682453 0.143261008442397 C 0.17351805664010528 0.1426360066140794 0.18689199860091443 0.13516561478213596 0.18517102030619365 0.13576098650258586 C 0.18689199860091443 0.13516561478213596 0.19377205380491386 0.1361461779048657 0.19311043584347384 0.136116547796998" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3216484205469137,0.08877742401709843) rotate(0) scale(1,1) translate(-0.17622383096689268,-0.1693422041235609)"><path d="M 0.19126241445256004 0.1533118016726512 C 0.19131556268902683 0.15366565315053998 0.19127588805962598 0.15837239955311821 0.1919001932901614 0.15755801940731634 C 0.19127588805962598 0.15837239955311821 0.18309329821913273 0.16354489209018686 0.18377075168613494 0.16308436342227373" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18377075168613494 0.16308436342227373 C 0.18323497931333124 0.16385403216438932 0.17633956189026223 0.174753001115783 0.17734148321249063 0.17232038832766086 C 0.17633956189026223 0.174753001115783 0.17128154686996952 0.19393866092574627 0.17174769581939422 0.1922757168797397" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17174769581939422 0.1922757168797397 C 0.17172236284645917 0.1933038398825351 0.17156680487547885 0.20756746479483104 0.17144370014417357 0.2046131929132843 C 0.17156680487547885 0.20756746479483104 0.17337339029929802 0.22965312833705184 0.17322495259505769 0.2277269794583005" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17322495259505769 0.2277269794583005 C 0.17285346979361776 0.22603190590115763 0.1681994214648185 0.20398316791140408 0.16876715897777875 0.20738609677258604 C 0.1681994214648185 0.20398316791140408 0.16621584772801454 0.18518397782007792 0.16641210243953486 0.186891833124117" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16641210243953486 0.186891833124117 C 0.16659304152602697 0.18561789923083435 0.16930690789155775 0.16941029415278291 0.16858337147744018 0.17160462640472518 C 0.16930690789155775 0.16941029415278291 0.17563713673657108 0.15963944774215003 0.17509453940894562 0.16055984610080964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17509453940894562 0.16055984610080964 C 0.17585230145257283 0.16013100401185162 0.18553500685277335 0.15480973733096698 0.18418768393247215 0.1554137410333135 C 0.18553500685277335 0.15480973733096698 0.19185197532923404 0.1531366400592627 0.19126241445256004 0.1533118016726512" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.3121144470848839,0.09155159690748185) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18150865314490128 0.1301405630549283 C 0.18150778196568002 0.13035993249725825 0.18144766743633753 0.13318428204739913 0.1814981989942462 0.13277299636288756 C 0.18144766743633753 0.13318428204739913 0.1808526140713096 0.13526790751124862 0.180902274449997 0.135075991269067" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.180902274449997 0.135075991269067 C 0.18077674540039101 0.1351739576321185 0.17912898854435755 0.13637331276614428 0.179395925854725 0.13625158762568523 C 0.17912898854435755 0.13637331276614428 0.1775576184648261 0.13656045173198306 0.17769902672558754 0.13653669295457554" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17769902672558754 0.13653669295457554 C 0.17764669945615397 0.13659109838730532 0.1769556149688432 0.1372505393293406 0.17707109949238445 0.13718955814733289 C 0.1769556149688432 0.1372505393293406 0.17619299088543772 0.13723202698706327 0.17631321244309273 0.13726846713866794 C 0.17619299088543772 0.13723202698706327 0.17553569547804188 0.1366281789520543 0.1756284408005242 0.13675227632807682 C 0.17553569547804188 0.1366281789520543 0.17515985052025598 0.13560079581764553 0.17520026857330473 0.13577929862639782 C 0.17515985052025598 0.13560079581764553 0.17516616336499827 0.1344251640650191 0.17514342416393935 0.1346102426230493 C 0.17516616336499827 0.1344251640650191 0.17550061522118432 0.13347069870561754 0.17547313898601163 0.13355835593003537" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17547313898601163 0.13355835593003537 C 0.17546832832684955 0.13333894971940216 0.17545563759814392 0.13050040712058947 0.17541541107606662 0.13092548140243687 C 0.17545563759814392 0.13050040712058947 0.17600089443217884 0.12825179647665239 0.17595585725093943 0.12845746454786658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17595585725093943 0.12845746454786658 C 0.17607191044177653 0.12835438484810036 0.17760512781552082 0.1270849944128769 0.17734849554098472 0.1272205081506718 C 0.17760512781552082 0.1270849944128769 0.1791760236290714 0.12679886565629941 0.17903544454537243 0.12683129969432805" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31027146409021533,0.09483239344132047) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1074151760160208 0.10255223457341625 C 0.10723072247305253 0.10276698521209862 0.10577928880608341 0.10415941487117819 0.10630845475821118 0.10384073840551045 C 0.10577928880608341 0.10415941487117819 0.10387639807678697 0.10411083980751319 0.10424018030325413 0.1044642933674227 C 0.10387639807678697 0.10411083980751319 0.10424225668281012 0.10085086657783698 0.10412576139940823 0.1017200170460534 C 0.10424225668281012 0.10085086657783698 0.10493915200366545 0.09924939055812425 0.10493915200366545 0.09924939055812425 C 0.10493915200366545 0.09924939055812425 0.10400926611600633 0.1025891675142698 0.10412576139940823 0.1017200170460534 C 0.10400926611600633 0.1025891675142698 0.10397421206679808 0.10501040338129261 0.10424018030325413 0.1044642933674227 C 0.10397421206679808 0.10501040338129261 0.10205447076387766 0.10524935336198257 0.1025299519806719 0.10499667712927285 C 0.10205447076387766 0.10524935336198257 0.10119684983945816 0.10614429636941575 0.1013872930024887 0.10598035076368105" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3084284810955467,0.09811318997515914) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939239008789442 0.11519455608771707 C 0.13944798201098402 0.1153736796824715 0.14012420001546003 0.11770969575796066 0.14005949316496955 0.11734403922477017 C 0.14012420001546003 0.11770969575796066 0.140177987221181 0.119768967424439 0.1401688722937801 0.11958243448600293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401688722937801 0.11958243448600293 C 0.14009255959366737 0.11973875812844972 0.13906861716692961 0.12172023756109877 0.13925311989242722 0.12145831819536439 C 0.13906861716692961 0.12172023756109877 0.13784664956242393 0.12283106259810325 0.1379548395878088 0.12272546687481564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1379548395878088 0.12272546687481564 C 0.137926510194903 0.12280167673489917 0.1375372008516651 0.12376007184970109 0.13761488687293927 0.12363998519581797 C 0.1375372008516651 0.12376007184970109 0.1369160919090318 0.1242101704912632 0.13702260733251873 0.12416650672141304 C 0.1369160919090318 0.1242101704912632 0.1362298976871014 0.12411949164796743 0.13633670179109628 0.12416395043402005 C 0.1362298976871014 0.12411949164796743 0.13566248337349093 0.12351233264264551 0.13574095808458003 0.12363300128878164 C 0.13566248337349093 0.12351233264264551 0.1353658871753064 0.1225513812404507 0.1353950052580271 0.12271592668038642 C 0.1353658871753064 0.1225513812404507 0.13539125241142358 0.1215703334536502 0.13539154109193155 0.121658456009553" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539154109193155 0.121658456009553 C 0.1353313476311033 0.12148276817268239 0.13459264558883605 0.11917960556879821 0.13466921956199263 0.11955020196710565 C 0.13459264558883605 0.11917960556879821 0.13445627290172432 0.11701639066842681 0.13447265341405265 0.11721129922986365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13447265341405265 0.11721129922986365 C 0.1345399954402054 0.11705659262780542 0.1354533933307171 0.11508796077431363 0.1352807577278856 0.11535482000516499 C 0.1354533933307171 0.11508796077431363 0.13664957422470947 0.11389683583085423 0.1365442806480307 0.11400898845964737" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3077809085815004,0.10190828455941014) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10640522535867998 0.10097877714730853 C 0.10631125940786189 0.10126611831434842 0.10549553481599983 0.10328503363722903 0.10584142965377143 0.10270282414954787 C 0.10549553481599983 0.10328503363722903 0.10394513940390002 0.10440617425544924 0.10432985633205036 0.10447203407339548 C 0.10394513940390002 0.10440617425544924 0.10340423333893958 0.10152901837963707 0.10353312808486934 0.10230766524187047 C 0.10340423333893958 0.10152901837963707 0.1035564878564718 0.09980015289999507 0.1035564878564718 0.09980015289999507 C 0.1035564878564718 0.09980015289999507 0.10366202283079909 0.10308631210410388 0.10353312808486934 0.10230766524187047 C 0.10366202283079909 0.10308631210410388 0.10425504523162425 0.10507886093190144 0.10432985633205036 0.10447203407339548 C 0.10425504523162425 0.10507886093190144 0.10276481761778185 0.10644435850684299 0.10308426148231267 0.1059486263929063 C 0.10276481761778185 0.10644435850684299 0.1023013484219575 0.10769606015103383 0.10241319314486538 0.10744642675701561" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3071333360674542,0.10570337914366124) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13927967495911284 0.1142861993924627 C 0.13936800735266391 0.114402911479328 0.14047990098669386 0.11595260104787002 0.14033966368172576 0.11568674443484622 C 0.14047990098669386 0.11595260104787002 0.14101442753014712 0.11762562327490668 0.1409625226187301 0.11747647874874818" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1409625226187301 0.11747647874874818 C 0.1409370357352513 0.11764898079049058 0.14056743289350104 0.11986758511689409 0.14065668001698425 0.11954650324965686 C 0.14056743289350104 0.11986758511689409 0.13982779689692731 0.12147804098108968 0.1398915571369317 0.12132946115559484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1398915571369317 0.12132946115559484 C 0.13988642405813984 0.12140853598928504 0.13979471650932893 0.12242166260182936 0.13982996019142954 0.12227835915987718 C 0.13979471650932893 0.12242166260182936 0.13939150233242997 0.1231455034464019 0.13946863295172424 0.12304910245902094 C 0.13939150233242997 0.1231455034464019 0.13880604229056223 0.12345883897454027 0.1389043927598985 0.12343517100844881 C 0.13880604229056223 0.12345883897454027 0.13819520992914466 0.12327771118451976 0.13828842731968907 0.1233331180521185 C 0.13819520992914466 0.12327771118451976 0.13772267728612986 0.12265065312140332 0.1377857840733655 0.12277028859726402 C 0.13772267728612986 0.12265065312140332 0.1375099260228193 0.12182475932050048 0.13753114587286133 0.12189749234178998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13753114587286133 0.12189749234178998 C 0.13743985032120504 0.12178622657533399 0.1362844341180914 0.12029907630530445 0.13643559925298576 0.12056230314431808 C 0.1362844341180914 0.12029907630530445 0.13565729467089097 0.11858680920106882 0.13571716425412902 0.11873877027362645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13571716425412902 0.11873877027362645 C 0.13573566466408785 0.11857268276010624 0.13601748846719192 0.11642726801815684 0.13593916917363497 0.11674572011138389 C 0.13601748846719192 0.11642726801815684 0.1367168146604105 0.11476498057519495 0.13665699577681237 0.11491734515490179" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30750484413592116,0.10920923138116624) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10527257822867676 0.10036282214099662 C 0.10526378131931731 0.10065369471599475 0.10507419179758737 0.1027854272752747 0.10521979677252004 0.10210805759098544 C 0.10507419179758737 0.1027854272752747 0.10406713190458351 0.10459028763510785 0.10439894837908076 0.10442704024673223 C 0.10406713190458351 0.10459028763510785 0.10293757923182321 0.10251637971796333 0.10322889792553655 0.10308754192123916 C 0.10293757923182321 0.10251637971796333 0.10265103621680076 0.10100006702707724 0.10265103621680076 0.10100006702707724 C 0.10265103621680076 0.10100006702707724 0.10352021661924989 0.10365870412451499 0.10322889792553655 0.10308754192123916 C 0.10352021661924989 0.10365870412451499 0.10448196355436626 0.10497135598712207 0.10439894837908076 0.10442704024673223 C 0.10448196355436626 0.10497135598712207 0.10358252874999373 0.10694430083914014 0.10372698897724959 0.10635343636357816 C 0.10358252874999373 0.10694430083914014 0.10349972002192821 0.10824202555619174 0.10353218701554555 0.10797222710010408" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3121144470848839,0.09155159690748185) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.18047243678233799 0.15939599797724413 C 0.18025931948143797 0.15963549923141201 0.1775631031124528 0.1629316066069173 0.17791502917153768 0.16227001302725866 C 0.1775631031124528 0.1629316066069173 0.17611051531513475 0.16775721325863877 0.17624932407331959 0.16733512093314798" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17624932407331959 0.16733512093314798 C 0.1760918352338779 0.1678838189140887 0.17392791297073779 0.17520102235062074 0.17435945800001937 0.1739194967044367 C 0.17392791297073779 0.17520102235062074 0.1707967275321005 0.18344625635259953 0.17107078372194043 0.18271342868735624" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17107078372194043 0.18271342868735624 C 0.1706715116368371 0.1837244840770578 0.1651943421985034 0.1965039834646813 0.16627951870070065 0.19484609336377492 C 0.1651943421985034 0.1965039834646813 0.15736276127847937 0.20325494460943727 0.15804866569557333 0.20260810989823247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15804866569557333 0.20260810989823247 C 0.15848710494186077 0.20180488422591583 0.16393879806097594 0.19103792535577452 0.1633099366510227 0.19296940183043293 C 0.16393879806097594 0.19103792535577452 0.165785424778678 0.17830214139998987 0.1655950026150122 0.17943039220233165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1655950026150122 0.17943039220233165 C 0.16576846508231274 0.17872713182607278 0.1681530487555238 0.16972063752724859 0.16767655222261882 0.17099126768722517 C 0.1681530487555238 0.16972063752724859 0.17161599507547665 0.1636154604988948 0.1713129610098722 0.16418283028261252" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1713129610098722 0.16418283028261252 C 0.17162946722599348 0.16388777654334796 0.17587432525103297 0.16024328271932364 0.1751110356033275 0.16064218541143768 C 0.17587432525103297 0.16024328271932364 0.1809192202139222 0.15929214902439467 0.18047243678233799 0.15939599797724413" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3121144470848839,0.09155159690748185) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.13102106757438675 0.11968410375763905 C 0.13072983789721626 0.12026513361532909 0.12707705105110767 0.12793939288129935 0.127526311448341 0.12665646204991954 C 0.12707705105110767 0.12793939288129935 0.12547191208752387 0.13578117470788645 0.12562994280758671 0.13507927373419668" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12562994280758671 0.13507927373419668 C 0.12593673096607014 0.13440446319665048 0.13039026163279102 0.12567836028387233 0.12931140070938782 0.12698154728364242 C 0.13039026163279102 0.12567836028387233 0.13934834665334497 0.11881265327473191 0.1385762738884252 0.11944102973695579" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1385762738884252 0.11944102973695579 C 0.1380721566002784 0.12022430501492765 0.1317791548858712 0.13035321524536145 0.13252686643066394 0.12884033307261797 C 0.1317791548858712 0.13035321524536145 0.12936014109426605 0.13832522270464934 0.12960373535091205 0.1375956158098777" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12960373535091205 0.1375956158098777 C 0.12968720986776264 0.1370822238096005 0.13084002544991705 0.13047248620954816 0.130605429553119 0.1314349118065515 C 0.13084002544991705 0.13047248620954816 0.13257000749243608 0.12559747504911148 0.13241888611248862 0.12604650864583763" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13241888611248862 0.12604650864583763 C 0.13211329474068112 0.12644954949316656 0.12815084361966866 0.13233590581980978 0.1287517896507987 0.13088299881378476 C 0.12815084361966866 0.13233590581980978 0.12491217907960572 0.14453125887683388 0.12520753373892826 0.14348139271813778" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12520753373892826 0.14348139271813778 C 0.1251441216822372 0.1426863989207123 0.12450278197793152 0.13250812667470985 0.12444658905863559 0.13394146714903205 C 0.12450278197793152 0.13250812667470985 0.12600145374646635 0.12564296034937464 0.12588184877047937 0.12628130702627136" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12588184877047937 0.12628130702627136 C 0.1256404085527309 0.1267323785861495 0.12241636133989478 0.1329752821506307 0.1229845661574978 0.1316941657448091 C 0.12241636133989478 0.1329752821506307 0.1187366263593886 0.142484748742074 0.11906339095924315 0.14165470389613055" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11906339095924315 0.14165470389613055 C 0.11910201662355213 0.14088532126135764 0.11962702309366018 0.1312707411167906 0.11952689893095088 0.13242211227885572 C 0.11962702309366018 0.1312707411167906 0.12032637941015502 0.127456261424057 0.1202648809117547 0.1278382499513492" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1202648809117547 0.1278382499513492 C 0.12005612662414017 0.12797789448162566 0.1175034678039021 0.12939967196783494 0.11775982946038027 0.12951398431466665 C 0.1175034678039021 0.12939967196783494 0.117140933665153 0.12621254491226064 0.11718854103401664 0.1264665017893688" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11718854103401664 0.1264665017893688 C 0.11730956853312584 0.1265335306448263 0.1192622319350445 0.1269028456695732 0.118640871023327 0.12727084805485878 C 0.1192622319350445 0.1269028456695732 0.12514520538723492 0.12161544192519877 0.12464487197462662 0.12205047316594185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12464487197462662 0.12205047316594185 C 0.12441174075390177 0.1224896665154786 0.12154113747035786 0.12822723516604595 0.12184729732592832 0.12732079336038282 C 0.12154113747035786 0.12822723516604595 0.12089792507293551 0.13339502329002584 0.1209709537077811 0.13292777483389945" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1209709537077811 0.13292777483389945 C 0.12123096661130173 0.13235383978551093 0.12492861803891231 0.12493691499688239 0.1240911085500285 0.12604055425323743 C 0.12492861803891231 0.12493691499688239 0.13159856415974994 0.11915439954967252 0.13102106757438675 0.11968410375763905" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3289727270591859,0.07398795388008708) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.18029630646127018 0.14705264825063474 C 0.1798948406057448 0.14774783187485188 0.17471946351478768 0.15689176582722125 0.17547871619496558 0.15539485174124026 C 0.17471946351478768 0.15689176582722125 0.170827487474483 0.1658173477441705 0.17118527429913552 0.16501561728240663" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17118527429913552 0.16501561728240663 C 0.17087632910846454 0.1660746262512823 0.16694278853283848 0.17993967112746923 0.16747793201108357 0.1777237249089146 C 0.16694278853283848 0.17993967112746923 0.16453735427262015 0.19276390915474098 0.16476355256019426 0.19160697190506204" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16476355256019426 0.19160697190506204 C 0.16468173926516644 0.1926364955855936 0.16386333032143569 0.2060927368900165 0.16378179301986034 0.20396125607144083 C 0.16386333032143569 0.2060927368900165 0.16590535077570168 0.21828669886601426 0.1657420001790985 0.21718474172797014" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1657420001790985 0.21718474172797014 C 0.16528884884962605 0.21594605305631154 0.15968389332456343 0.1993452684450146 0.16030418422542933 0.2023204776680669 C 0.15968389332456343 0.1993452684450146 0.1581313697973141 0.1797457104999487 0.15829850936870757 0.1814822310513424" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15829850936870757 0.1814822310513424 C 0.15855995510334975 0.1803881365758246 0.1621045977153064 0.16635303933671317 0.16143585818441372 0.16835309734512863 C 0.1621045977153064 0.16635303933671317 0.16673067753567003 0.15657557141745915 0.16632338373941954 0.1574815349503568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16632338373941954 0.1574815349503568 C 0.16688238506970327 0.15683658368470946 0.174195809929645 0.1488730458709452 0.17303139970282413 0.1497421197625887 C 0.174195809929645 0.1488730458709452 0.18090171535780736 0.14682852562463858 0.18029630646127018 0.14705264825063474" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3316951023832041,0.07412620935247102) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17198669428013527 0.1626113009894111 C 0.17181382723129623 0.16286135049903622 0.16941440399537114 0.16635595904162648 0.16991228969406683 0.16561189510491273 C 0.16941440399537114 0.16635595904162648 0.16568704724593028 0.17203408265706485 0.16601206589578693 0.17154006822997622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16601206589578693 0.17154006822997622 C 0.1655836262876934 0.17254997191619564 0.16010377552233482 0.18630236760136884 0.16087079059866463 0.18365891246460922 C 0.16010377552233482 0.18630236760136884 0.15646930951159288 0.20489508132163192 0.15680788497982917 0.20326152987109172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15680788497982917 0.20326152987109172 C 0.15687948825137515 0.20466995599777635 0.15810253407250782 0.22276060226763073 0.15766712423838103 0.22016264339130717 C 0.15810253407250782 0.22276060226763073 0.16239660955193153 0.23562656913661328 0.16203280298935072 0.23443703638697436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16203280298935072 0.23443703638697436 C 0.1613327602238618 0.2331264663912867 0.152762708851414 0.2154963905463521 0.1536322898034837 0.21871019643872255 C 0.152762708851414 0.2154963905463521 0.1514282933779333 0.19396812978184613 0.1515978315645141 0.19587136567852895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1515978315645141 0.19587136567852895 C 0.1519989580990114 0.19438621101389097 0.157440876043017 0.17556970795198834 0.15641134997848177 0.17804950970287317 C 0.157440876043017 0.17556970795198834 0.16458054386897453 0.16511909758166401 0.16395214433893662 0.16611374466791087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16395214433893662 0.16611374466791087 C 0.16435703434190987 0.1657614785365586 0.16948037020304899 0.16159468078514175 0.16881082437461575 0.1618865510916834 C 0.16948037020304899 0.16159468078514175 0.17225135010559522 0.16267169681422172 0.17198669428013527 0.1626113009894111" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33868980928017706,0.07877447199930587) rotate(0) scale(1,1) translate(-0.1796864743156008,-0.1609457706712427)"><path d="M 0.17807742273947813 0.15747501836743638 C 0.17866192289164606 0.15764661323044638 0.18602719578587606 0.16005605749645538 0.1850914245654935 0.15953415672355625 C 0.18602719578587606 0.16005605749645538 0.18965794845228354 0.16408813355211505 0.18930667738406892 0.1637378276422259" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18930667738406892 0.1637378276422259 C 0.18955450179831748 0.16435525405563436 0.19273161371773212 0.1724687602960327 0.19228057035505167 0.1711469446031273 C 0.19273161371773212 0.1724687602960327 0.1949224166846663 0.18030400523658768 0.19471919773623442 0.17959961595709073" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.19471919773623442 0.17959961595709073 C 0.19493763706581643 0.18021120963560272 0.19800959356381578 0.18846747530167873 0.19734046969121852 0.18693874009923445 C 0.19800959356381578 0.18846747530167873 0.20319936875041675 0.19886157991035444 0.2027486842074015 0.19794443838642214" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.2027486842074015 0.19794443838642214 C 0.20184752741169448 0.19731491528736472 0.1904167511462063 0.1892157455006527 0.19193480265891744 0.19039016119773303 C 0.1904167511462063 0.1892157455006527 0.18391517133786373 0.18330655742343546 0.18453206605486785 0.18385145002145836" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18453206605486785 0.18385145002145836 C 0.18420281241673298 0.18335500897258838 0.18006486752475062 0.1770049552538625 0.18058102239724913 0.1778941574350187 C 0.18006486752475062 0.1770049552538625 0.1781513063505223 0.17278826271529782 0.1783382075848859 0.17318102384758405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1783382075848859 0.17318102384758405 C 0.1783358403050061 0.172211312936641 0.17828806815587783 0.1602356591262551 0.17830980022632847 0.1615444929162674 C 0.17828806815587783 0.1602356591262551 0.17805805794890728 0.15713589548836712 0.17807742273947813 0.15747501836743638" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3494907181700234,0.09058713353659362) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.16144893018072032 0.1570702695294224 C 0.16210684426445343 0.1573584724445738 0.17038251753285058 0.16107687164833817 0.1693438991855175 0.16052870451123893 C 0.17038251753285058 0.16107687164833817 0.1742930546123171 0.16390823939656102 0.17391235034871713 0.16364827517461317" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17391235034871713 0.16364827517461317 C 0.1742691595774462 0.16422341545875022 0.1787314600223108 0.1718478717752012 0.17819406109346597 0.17054995858425778 C 0.1787314600223108 0.1718478717752012 0.1805417271949707 0.17994600637274036 0.18036113749485494 0.179223233465934" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18036113749485494 0.179223233465934 C 0.18043940242375697 0.1797347299043983 0.18151538766681763 0.18694031403642908 0.18130031664167934 0.1853611907275056 C 0.18151538766681763 0.18694031403642908 0.1830787958927506 0.19924034004347488 0.18294198979651435 0.1981727131730157" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18294198979651435 0.1981727131730157 C 0.1825133353717726 0.19739656058851962 0.17697717871470278 0.18757512567463422 0.17779813669961333 0.18885888215906266 C 0.17697717871470278 0.18757512567463422 0.17269819041741893 0.18226003145994205 0.17309049397758774 0.1827676353598744" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17309049397758774 0.1827676353598744 C 0.1726860485844511 0.1822154361208572 0.1675101379023353 0.17499064048045226 0.16823714925994823 0.17614124449166796 C 0.1675101379023353 0.17499064048045226 0.16404379172175626 0.1683619824530875 0.16436635768623256 0.168960387225286" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16436635768623256 0.168960387225286 C 0.16412067723564408 0.16823868555380855 0.1611750733203782 0.15930912402623448 0.1614181922791709 0.16029996716755646 C 0.1611750733203782 0.15930912402623448 0.1614514916725161 0.1568011280595779 0.16144893018072032 0.1570702695294224" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.358783975386698,0.09212286312454832) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.150881239538323 0.136116547796998 C 0.151542857499763 0.1360869176891303 0.16054163337032407 0.13635635822303577 0.15882065507560328 0.13576098650258586 C 0.16054163337032407 0.13635635822303577 0.17259233940825305 0.1438860102707146 0.1715329790749723 0.143261008442397" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1715329790749723 0.143261008442397 C 0.17214740309975404 0.14444415402612243 0.17963096528692318 0.16042433582714027 0.17890606737235304 0.15745875544710228 C 0.17963096528692318 0.16042433582714027 0.1803422279396025 0.18063040779916556 0.1802317540498141 0.178847973002853" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1802317540498141 0.178847973002853 C 0.17962737881923496 0.181595664524792 0.17209731937241085 0.21557986985025868 0.17297925128286457 0.21182027126612105 C 0.17209731937241085 0.21557986985025868 0.16937101444449496 0.22497506307470325 0.16964857112436954 0.2239631560125046" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16964857112436954 0.2239631560125046 C 0.16970166117400215 0.2229251334777197 0.17040932366023775 0.20899330729784527 0.1702856517199609 0.21150688559508554 C 0.17040932366023775 0.20899330729784527 0.17120321629833596 0.19232466068316584 0.17113263440769172 0.1938002164456212" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17113263440769172 0.1938002164456212 C 0.17105759680796123 0.19181030174063254 0.16963340264918128 0.16642285115290556 0.17023218321092592 0.1699212399857572 C 0.16963340264918128 0.16642285115290556 0.1634235247047417 0.1503110763235385 0.16394726766675588 0.15181955045140147" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16394726766675588 0.15181955045140147 C 0.16282897345426653 0.15077744296136183 0.14943890143951433 0.13800567701639221 0.15052773711688372 0.13931426057092583 C 0.14943890143951433 0.13800567701639221 0.15091069807344293 0.13585007173250402 0.150881239538323 0.136116547796998" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3530384851104277,0.08877742401709843) rotate(0) scale(1,1) translate(-0.17622383096689268,-0.1693422041235609)"><path d="M 0.16118524748122526 0.1533118016726512 C 0.16177480835789926 0.15348696328603972 0.16960730092161438 0.15601774473566005 0.16825997800131318 0.1554137410333135 C 0.16960730092161438 0.15601774473566005 0.1781108845684669 0.16098868818976766 0.1773531225248397 0.16055984610080964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1773531225248397 0.16055984610080964 C 0.17789571985246516 0.16148024445946926 0.1845878268704627 0.17379895865666745 0.18386429045634514 0.17160462640472518 C 0.1845878268704627 0.17379895865666745 0.1862164985807425 0.18816576701739965 0.18603555949425038 0.186891833124117" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18603555949425038 0.186891833124117 C 0.18583930478273006 0.18859968842815608 0.18311276544304628 0.210789025633768 0.18368050295600652 0.20738609677258604 C 0.18311276544304628 0.210789025633768 0.17885122653728766 0.22942205301544338 0.17922270933872758 0.2277269794583005" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17922270933872758 0.2277269794583005 C 0.17937114704296792 0.22580083057954917 0.18112706652091703 0.20165892103173758 0.18100396178961176 0.2046131929132843 C 0.18112706652091703 0.20165892103173758 0.18067463314145601 0.19124759387694432 0.18069996611439107 0.1922757168797397" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18069996611439107 0.1922757168797397 C 0.18023381716496636 0.19061277283373315 0.17410425739906626 0.1698877755395387 0.17510617872129466 0.17232038832766086 C 0.17410425739906626 0.1698877755395387 0.16814113787484666 0.16231469468015813 0.16867691024765036 0.16308436342227373" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16867691024765036 0.16308436342227373 C 0.16799945678064815 0.1626238347543606 0.15992316341308843 0.15674363926151447 0.16054746864362385 0.15755801940731634 C 0.15992316341308843 0.15674363926151447 0.16123839571769205 0.15295795019476244 0.16118524748122526 0.1533118016726512" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.3625724585724573,0.09155159690748185) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18150865314490122 0.12683129969432805 C 0.1816492322286002 0.12686373373235668 0.18345223442382505 0.12735602188846668 0.18319560214928896 0.1272205081506718 C 0.18345223442382505 0.12735602188846668 0.18470429363017132 0.1285605442476328 0.18458824043933422 0.12845746454786658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18458824043933422 0.12845746454786658 C 0.18463327762057363 0.12866313261908077 0.1851689131362843 0.13135055568428428 0.185128686614207 0.13092548140243687 C 0.1851689131362843 0.13135055568428428 0.18506614804509988 0.13377776214066858 0.18507095870426196 0.13355835593003537" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18507095870426196 0.13355835593003537 C 0.18509843493943465 0.1336460131544532 0.18542341272739318 0.1347953211810795 0.18540067352633427 0.1346102426230493 C 0.18542341272739318 0.1347953211810795 0.18530341106392018 0.1359578014351501 0.1853438291169689 0.13577929862639782 C 0.18530341106392018 0.1359578014351501 0.18482291156726718 0.13687637370409933 0.1849156568897495 0.13675227632807682 C 0.18482291156726718 0.13687637370409933 0.18411066368952586 0.13730490729027262 0.1842308852471809 0.13726846713866794 C 0.18411066368952586 0.13730490729027262 0.18335751367434797 0.13712857696532518 0.1834729981978892 0.13718955814733289 C 0.18335751367434797 0.13712857696532518 0.18279274369525247 0.1364822875218458 0.18284507096468608 0.13653669295457557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18284507096468608 0.13653669295457557 C 0.18270366270392463 0.13651293417716803 0.18088123452518118 0.13612986248522618 0.18114817183554863 0.13625158762568523 C 0.18088123452518118 0.13612986248522618 0.17951629419067058 0.1349780249060155 0.17964182324027658 0.135075991269067" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17964182324027658 0.135075991269067 C 0.17959216286158916 0.13488407502688537 0.17899536713811873 0.132361710678376 0.1790458986960274 0.13277299636288756 C 0.17899536713811873 0.132361710678376 0.1790345733661511 0.12992119361259835 0.17903544454537237 0.1301405630549283" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3644154415671259,0.09483239344132047) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10728721374882275 0.10598035076368105 C 0.1070967705857922 0.10581640515794635 0.10566907355384528 0.10474400089656313 0.10614455477063951 0.10499667712927285 C 0.10566907355384528 0.10474400089656313 0.10416835821160125 0.1039181833535528 0.10443432644805731 0.1044642933674227 C 0.10416835821160125 0.1039181833535528 0.1044322500685013 0.10085086657783698 0.10454874535190319 0.1017200170460534 C 0.1044322500685013 0.10085086657783698 0.103735354747646 0.09924939055812425 0.103735354747646 0.09924939055812425 C 0.103735354747646 0.09924939055812425 0.10466524063530507 0.1025891675142698 0.10454874535190319 0.1017200170460534 C 0.10466524063530507 0.1025891675142698 0.10407054422159015 0.10481774692733221 0.10443432644805731 0.1044642933674227 C 0.10407054422159015 0.10481774692733221 0.10183688604097246 0.1035220619398427 0.10236605199310024 0.10384073840551045 C 0.10183688604097246 0.1035220619398427 0.10107487719232237 0.10233748393473388 0.10125933073529064 0.10255223457341625" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3662584245617945,0.09811318997515914) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939239008789453 0.11400898845964737 C 0.1394976836645733 0.1141211410884405 0.14082854861087118 0.11562167923601635 0.14065591300803967 0.11535482000516499 C 0.14082854861087118 0.11562167923601635 0.1415313593480253 0.11736600583192187 0.14146401732187255 0.11721129922986365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14146401732187255 0.11721129922986365 C 0.14144763680954422 0.11740620779130048 0.14119087720077597 0.11992079836541308 0.14126745117393255 0.11955020196710564 C 0.14119087720077597 0.11992079836541308 0.1404849361831655 0.1218341438464236 0.1405451296439937 0.121658456009553" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405451296439937 0.121658456009553 C 0.14054484096348574 0.12174657856545579 0.14051254739517746 0.12288047212032213 0.14054166547789818 0.12271592668038642 C 0.14051254739517746 0.12288047212032213 0.1401172379402561 0.12375366993491778 0.1401957126513452 0.12363300128878164 C 0.1401172379402561 0.12375366993491778 0.13949316484083413 0.12420840922007267 0.139599968944829 0.12416395043402005 C 0.13949316484083413 0.12420840922007267 0.13880754797991962 0.12412284295156287 0.13891406340340653 0.12416650672141304 C 0.13880754797991962 0.12412284295156287 0.13824409784171177 0.12351989854193483 0.13832178386298594 0.12363998519581795 C 0.13824409784171177 0.12351989854193483 0.13795350175521068 0.12264925701473212 0.13798183114811646 0.12272546687481564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13798183114811646 0.12272546687481564 C 0.1378736411227316 0.12261987115152803 0.13649904811800043 0.12119639882963 0.13668355084349804 0.12145831819536439 C 0.13649904811800043 0.12119639882963 0.13569148574203244 0.11942611084355614 0.13576779844214518 0.11958243448600293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13576779844214518 0.11958243448600293 C 0.13577691336954606 0.11939590154756687 0.13594188442144622 0.11697838269157969 0.13587717757095574 0.11734403922477017 C 0.13594188442144622 0.11697838269157969 0.1365998725711204 0.11501543249296264 0.1365442806480308 0.11519455608771707" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3669059970758408,0.10190828455941014) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10626131360644608 0.10744642675701561 C 0.1061494688835382 0.1071967933629974 0.10527080140446793 0.1054528942789696 0.10559024526899877 0.1059486263929063 C 0.10527080140446793 0.1054528942789696 0.10426983931883498 0.10386520721488951 0.10434465041926108 0.10447203407339548 C 0.10426983931883498 0.10386520721488951 0.10527027341237188 0.10152901837963707 0.10514137866644212 0.10230766524187047 C 0.10527027341237188 0.10152901837963707 0.10511801889483964 0.09980015289999507 0.10511801889483964 0.09980015289999507 C 0.10511801889483964 0.09980015289999507 0.10501248392051235 0.10308631210410388 0.10514137866644212 0.10230766524187047 C 0.10501248392051235 0.10308631210410388 0.10395993349111074 0.10453789389134172 0.10434465041926108 0.10447203407339548 C 0.10395993349111074 0.10453789389134172 0.10248718225976843 0.10212061466186671 0.10283307709754003 0.10270282414954787 C 0.10248718225976843 0.10212061466186671 0.10217531544181341 0.10069143598026864 0.1022692813926315 0.10097877714730853" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.36755356958988694,0.10570337914366124) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1392796749591129 0.11491734515490179 C 0.139339493842711 0.11506970973460863 0.1400758208558472 0.11706417220461093 0.13999750156229024 0.11674572011138387 C 0.1400758208558472 0.11706417220461093 0.14023800689175503 0.11890485778714666 0.1402195064817962 0.11873877027362645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1402195064817962 0.11873877027362645 C 0.14015963689855815 0.11889073134618408 0.13934990634804512 0.12082552998333171 0.13950107148293947 0.12056230314431808 C 0.13934990634804512 0.12082552998333171 0.13831422931140763 0.12200875810824598 0.13840552486306393 0.12189749234178998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13840552486306393 0.12189749234178998 C 0.1383843050130219 0.12197022536307948 0.13808777987532403 0.12288992407312473 0.13815088666255967 0.12277028859726402 C 0.13808777987532403 0.12288992407312473 0.13755502602569172 0.12338852491971723 0.13764824341623613 0.1233331180521185 C 0.13755502602569172 0.12338852491971723 0.13693392750669053 0.12341150304235735 0.1370322779760268 0.12343517100844881 C 0.13693392750669053 0.12341150304235735 0.1363909071649067 0.12295270147163997 0.13646803778420097 0.12304910245902094 C 0.1363909071649067 0.12295270147163997 0.13607146686239513 0.122135055717925 0.13610671054449575 0.12227835915987718 C 0.13607146686239513 0.122135055717925 0.13603998052020166 0.12125038632190464 0.13604511359899352 0.12132946115559484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13604511359899352 0.12132946115559484 C 0.13598135335898914 0.12118088133010001 0.13519074359545785 0.11922542138241964 0.13527999071894103 0.11954650324965686 C 0.13519074359545785 0.11922542138241964 0.13494866123371638 0.11730397670700579 0.1349741481171952 0.11747647874874818" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1349741481171952 0.11747647874874818 C 0.1350260530286122 0.11732733422258969 0.13573724435916756 0.11542088782182243 0.13559700705419947 0.11568674443484622 C 0.13573724435916756 0.11542088782182243 0.1367453281703635 0.11416948730559741 0.13665699577681242 0.1142861993924627" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36718206152141997,0.10920923138116624) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10514231973576588 0.10797222710010408 C 0.10510985274214854 0.10770242864401643 0.104803057546806 0.10576257188801619 0.10494751777406186 0.10635343636357816 C 0.104803057546806 0.10576257188801619 0.1043585735475162 0.1038827245063424 0.1042755583722307 0.10442704024673223 C 0.1043585735475162 0.1038827245063424 0.1057369275194882 0.10251637971796333 0.10544560882577486 0.10308754192123916 C 0.1057369275194882 0.10251637971796333 0.10602347053451068 0.10100006702707724 0.10602347053451068 0.10100006702707724 C 0.10602347053451068 0.10100006702707724 0.10515429013206153 0.10365870412451499 0.10544560882577486 0.10308754192123916 C 0.10515429013206153 0.10365870412451499 0.10394374189773345 0.10426379285835662 0.1042755583722307 0.10442704024673223 C 0.10394374189773345 0.10426379285835662 0.10330910500385872 0.10143068790669618 0.10345470997879139 0.10210805759098544 C 0.10330910500385872 0.10143068790669618 0.1033931316132752 0.10007194956599849 0.10340192852263465 0.10036282214099662" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3625724585724573,0.09155159690748185) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.1612590364188769 0.15939599797724413 C 0.16170581985046112 0.1594998469300936 0.16738372724559283 0.16104108810355172 0.16662043759788736 0.16064218541143768 C 0.16738372724559283 0.16104108810355172 0.17073501840746397 0.16447788402187707 0.17041851219134269 0.16418283028261252" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17041851219134269 0.16418283028261252 C 0.17072154625694713 0.16475020006633023 0.17453141751150103 0.17226189784720175 0.17405492097859604 0.17099126768722517 C 0.17453141751150103 0.17226189784720175 0.1763099330535032 0.18013365257859051 0.17613647058620266 0.17943039220233165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17613647058620266 0.17943039220233165 C 0.17632689274986846 0.18055864300467342 0.17905039796014535 0.19490087830509134 0.1784215365501921 0.19296940183043293 C 0.17905039796014535 0.19490087830509134 0.18412124675192904 0.2034113355705491 0.1836828075056416 0.20260810989823247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1836828075056416 0.20260810989823247 C 0.18299690308854763 0.20196127518702767 0.17436677799831693 0.19318820326286856 0.17545195450051418 0.19484609336377492 C 0.17436677799831693 0.19318820326286856 0.17026141739417117 0.18170237329765468 0.17066068947927449 0.18271342868735624" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17066068947927449 0.18271342868735624 C 0.17038663328943457 0.18198060102211294 0.16694047017191385 0.17263797105825268 0.16737201520119546 0.1739194967044367 C 0.16694047017191385 0.17263797105825268 0.16532466028845355 0.16678642295220725 0.16548214912789524 0.16733512093314798" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16548214912789524 0.16733512093314798 C 0.1653433403697104 0.1669130286076572 0.16346451797059233 0.16160841944760002 0.16381644402967718 0.16227001302725866 C 0.16346451797059233 0.16160841944760002 0.1610459191179769 0.15915649672307625 0.1612590364188769 0.15939599797724413" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3625724585724573,0.09155159690748185) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.10721371914042067 0.11968410375763905 C 0.10779121572578386 0.12021380796560557 0.11498118765366266 0.12714419350959247 0.11414367816477887 0.12604055425323743 C 0.11498118765366266 0.12714419350959247 0.11752384591054683 0.13350170988228796 0.11726383300702622 0.13292777483389945" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11726383300702622 0.13292777483389945 C 0.11719080437218063 0.13246052637777306 0.11608132953330857 0.1264143515547197 0.11638748938887902 0.12732079336038282 C 0.11608132953330857 0.1264143515547197 0.11335678351945591 0.1216112798164051 0.11358991474018076 0.12205047316594185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11358991474018076 0.12205047316594185 C 0.11409024815278906 0.12248550440668493 0.12021527660319782 0.12763885044014436 0.11959391569148033 0.12727084805485878 C 0.12021527660319782 0.12763885044014436 0.12116727317989989 0.1263994729339113 0.1210462456807907 0.1264665017893688" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1210462456807907 0.1264665017893688 C 0.12099863831192707 0.12672045866647696 0.12021859559794895 0.12962829666149836 0.12047495725442713 0.12951398431466665 C 0.12021859559794895 0.12962829666149836 0.1177611515154381 0.12769860542107275 0.11796990580305264 0.1278382499513492" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11796990580305264 0.1278382499513492 C 0.11803140430145295 0.12822023847864142 0.11880801194656579 0.13357348344092085 0.11870788778385649 0.13242211227885572 C 0.11880801194656579 0.13357348344092085 0.11921002141987319 0.14242408653090347 0.11917139575556421 0.14165470389613055" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11917139575556421 0.14165470389613055 C 0.11884463115570966 0.1408246590501871 0.11468201573970656 0.1304130493389875 0.11525022055730959 0.1316941657448091 C 0.11468201573970656 0.1304130493389875 0.11211149772657945 0.12583023546639321 0.11235293794432792 0.12628130702627136" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11235293794432792 0.12628130702627136 C 0.1124725429203149 0.12691965370316807 0.11384439057546766 0.13537480762335424 0.11378819765617174 0.13394146714903205 C 0.11384439057546766 0.13537480762335424 0.11296384091918801 0.14427638651556327 0.11302725297587907 0.14348139271813778" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11302725297587907 0.14348139271813778 C 0.11273189831655653 0.1424315265594417 0.10888205103287862 0.12943009180775975 0.10948299706400866 0.13088299881378476 C 0.10888205103287862 0.12943009180775975 0.10551030923051118 0.1256434677985087 0.10581590060231867 0.12604650864583763" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10581590060231867 0.12604650864583763 C 0.10596702198226614 0.1264955422425638 0.10786395305848637 0.13239733740355486 0.10762935716168831 0.1314349118065515 C 0.10786395305848637 0.13239733740355486 0.1087145258807459 0.1381090078101549 0.10863105136389531 0.1375956158098777" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10863105136389531 0.1375956158098777 C 0.10838745710724931 0.13686600891510606 0.1049602087393506 0.1273274508998745 0.10570792028414336 0.12884033307261797 C 0.1049602087393506 0.1273274508998745 0.09915439553823537 0.11865775445898394 0.09965851282638213 0.11944102973695579" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09965851282638213 0.11944102973695579 C 0.10043058559130191 0.12006940619917968 0.11000224692882275 0.1282847342834125 0.10892338600541954 0.12698154728364242 C 0.11000224692882275 0.1282847342834125 0.11291163206570415 0.13575408427174288 0.11260484390722071 0.13507927373419668" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11260484390722071 0.13507927373419668 C 0.11244681318715785 0.1343773727605069 0.11025921486923305 0.12537353121853972 0.11070847526646639 0.12665646204991954 C 0.11025921486923305 0.12537353121853972 0.1069224894632502 0.11910307389994901 0.10721371914042067 0.11968410375763905" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3457141785981557,0.07398795388008708) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.1784465298921283 0.14705264825063474 C 0.1790519387886655 0.1472767708766309 0.18687584687739517 0.1506111936542322 0.1857114366505743 0.1497421197625887 C 0.18687584687739517 0.1506111936542322 0.19297845394426258 0.15812648621600414 0.19241945261397886 0.1574815349503568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19241945261397886 0.1574815349503568 C 0.19282674641022934 0.15838749848325445 0.19797571769987737 0.1703531553535441 0.1973069781689847 0.16835309734512863 C 0.19797571769987737 0.1703531553535441 0.20070577271933301 0.1825763255268602 0.20044432698469083 0.1814822310513424" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20044432698469083 0.1814822310513424 C 0.20027718741329736 0.1832187516027361 0.19781836122710325 0.2052956868911192 0.19843865212796916 0.2023204776680669 C 0.19781836122710325 0.2052956868911192 0.19254768484482757 0.21842343039962875 0.1930008361743 0.21718474172797014" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1930008361743 0.21718474172797014 C 0.1931641867709032 0.21608278458992602 0.1950425806351135 0.20182977525286516 0.19496104333353817 0.20396125607144083 C 0.1950425806351135 0.20182977525286516 0.19389747049817635 0.1905774482245305 0.19397928379320417 0.19160697190506204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19397928379320417 0.19160697190506204 C 0.19375308550563006 0.1904500346553831 0.1907297608640698 0.17550777869036 0.19126490434231488 0.1777237249089146 C 0.1907297608640698 0.17550777869036 0.18724861686359184 0.16395660831353095 0.18755756205426286 0.16501561728240663" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18755756205426286 0.16501561728240663 C 0.18719977522961034 0.16421388682064275 0.18250486747825492 0.15389793765525928 0.1832641201584328 0.15539485174124026 C 0.18250486747825492 0.15389793765525928 0.17804506403660295 0.1463574646264176 0.1784465298921283 0.14705264825063474" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34299180327413736,0.07412620935247102) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17152109466865653 0.1626113009894111 C 0.17178575049411648 0.16255090516460047 0.1753665104026093 0.16217842139822505 0.17469696457417608 0.1618865510916834 C 0.1753665104026093 0.16217842139822505 0.17996053461282852 0.16646601079926315 0.17955564460985526 0.16611374466791087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17955564460985526 0.16611374466791087 C 0.18018404413989317 0.16710839175415773 0.1881259650348453 0.180529311453758 0.18709643897031009 0.17804950970287317 C 0.1881259650348453 0.180529311453758 0.19231108391877508 0.19735652034316692 0.19190995738427777 0.19587136567852895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19190995738427777 0.19587136567852895 C 0.19174041919769697 0.19777460157521176 0.1890059181932384 0.221924002331093 0.18987549914530813 0.21871019643872255 C 0.1890059181932384 0.221924002331093 0.18077494319395213 0.235747606382662 0.18147498595944106 0.23443703638697436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18147498595944106 0.23443703638697436 C 0.18183879252202187 0.23324750363733543 0.18627607454453762 0.21756468451498362 0.18584066471041083 0.22016264339130717 C 0.18627607454453762 0.21756468451498362 0.18677150724050867 0.2018531037444071 0.1866999039689627 0.20326152987109172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1866999039689627 0.20326152987109172 C 0.1863613285007264 0.20162797842055152 0.1818699832737974 0.1810154573278496 0.1826369983501272 0.18365891246460922 C 0.1818699832737974 0.1810154573278496 0.17706728344491138 0.1705301645437568 0.1774957230530049 0.17154006822997622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1774957230530049 0.17154006822997622 C 0.17717070440314825 0.1710460538028876 0.17309761355602926 0.16486783116819897 0.17359549925472495 0.16561189510491273 C 0.17309761355602926 0.16486783116819897 0.1713482276198175 0.16236125147978597 0.17152109466865653 0.1626113009894111" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 60 KiB

View File

@@ -0,0 +1,192 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.07439478626293816) rotate(0) scale(1,1) translate(-0.18294501755560244,-0.17151790391238764)"><path d="M 0.18294501755560244 0.1771656262374324 C 0.18214574144411624 0.1771656262374324 0.17854899894242843 0.16798807745923464 0.17814936088668534 0.16869404274986524 C 0.17854899894242843 0.16798807745923464 0.18814031228026268 0.16940000804049585 0.1877406742245196 0.16869404274986524 C 0.18814031228026268 0.16940000804049585 0.18214574144411624 0.1771656262374324 0.18294501755560244 0.1771656262374324 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33599709637716435,0.07877447199930587) rotate(0) scale(1,1) translate(-0.1796864743156008,-0.1609457706712427)"><path d="M 0.18129552589172349 0.15747501836743638 C 0.18127616110115263 0.15781414124650564 0.18089714865844683 0.16275995738909438 0.18106314840487314 0.1615444929162674 C 0.18089714865844683 0.16275995738909438 0.17915689397875217 0.17293693363511786 0.17930352893460763 0.17206059204136012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17930352893460763 0.17206059204136012 C 0.179129261969073 0.1725521035291674 0.1767605966455788 0.17891165627167988 0.1772123253481922 0.17795872989504716 C 0.1767605966455788 0.17891165627167988 0.17360532276616808 0.18395712344977808 0.17388278450324685 0.18349570856095263" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17388278450324685 0.18349570856095263 C 0.1733528591999086 0.18404116738326606 0.16608547085656716 0.1912452752475029 0.16752368086318772 0.19004121442871377 C 0.16608547085656716 0.1912452752475029 0.1557159797205178 0.19860304038289783 0.1566242644238001 0.19794443838642214" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1566242644238001 0.19794443838642214 C 0.15707494896681534 0.19702729686248985 0.16270160281258034 0.18541000489679016 0.16203247893998307 0.18693874009923445 C 0.16270160281258034 0.18541000489679016 0.16487219022454924 0.17898802227857874 0.16465375089496723 0.17959961595709073" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16465375089496723 0.17959961595709073 C 0.16485696984339912 0.17889522667759378 0.16754342163883043 0.1698251289102219 0.16709237827614998 0.1711469446031273 C 0.16754342163883043 0.1698251289102219 0.17031409566138128 0.16312040122881746 0.17006627124713272 0.1637378276422259" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17006627124713272 0.1637378276422259 C 0.17041754231534734 0.16338752173233678 0.17521729528609065 0.15901225595065713 0.17428152406570807 0.15953415672355625 C 0.17521729528609065 0.15901225595065713 0.18188002604389145 0.1573034235044264 0.18129552589172349 0.15747501836743638" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.325196187487318,0.09058713353659362) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.18145227923686613 0.1588150033745185 C 0.1818112361074267 0.15880789531888945 0.1858801660111402 0.15942249114975465 0.18575976168359282 0.15872970670696993 C 0.1858801660111402 0.15942249114975465 0.18265857862442156 0.16782830918634895 0.18289713116743472 0.16712841668793518" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18289713116743472 0.16712841668793518 C 0.1824709995570524 0.16769466252590084 0.1770137730397822 0.17497946433812958 0.1777835518428469 0.17392336674352327 C 0.1770137730397822 0.17497946433812958 0.173316138337976 0.1802914395798517 0.17365978553065836 0.17980158782321104" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17365978553065836 0.17980158782321104 C 0.17333087815069684 0.18032262152112705 0.16904162504529072 0.18725778171473131 0.16971289697112008 0.18605399219820312 C 0.16904162504529072 0.18725778171473131 0.1652621578748383 0.19492981784016153 0.16560452242070614 0.19424706202154934" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16560452242070614 0.19424706202154934 C 0.16562728199573767 0.1935065727470457 0.16597866182501797 0.18410920501453765 0.1658776373210844 0.1853611907275056 C 0.16597866182501797 0.18410920501453765 0.1668950813968108 0.1787117370274697 0.16681681646790877 0.179223233465934" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16681681646790877 0.179223233465934 C 0.16699740616802453 0.17850046055912763 0.16952129179814257 0.16925204539331437 0.16898389286929774 0.17054995858425778 C 0.16952129179814257 0.16925204539331437 0.17362241284277563 0.16307313489047612 0.17326560361404655 0.16364827517461317" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17326560361404655 0.16364827517461317 C 0.17364630787764654 0.16338831095266532 0.17851627774581452 0.16012593186123106 0.17783405477724623 0.16052870451123893 C 0.17851627774581452 0.16012593186123106 0.18175379794183447 0.15867219494645848 0.18145227923686613 0.1588150033745185" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3159029302706433,0.09212286312454832) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.19311043584347384 0.136116547796998 C 0.1931398943785938 0.13638302386149198 0.19237510258754378 0.14062284412545945 0.19346393826491318 0.13931426057092583 C 0.19237510258754378 0.14062284412545945 0.17892611350255166 0.1528616579414411 0.18004440771504102 0.15181955045140147" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18004440771504102 0.15181955045140147 C 0.17952066475302683 0.15332802457926445 0.17316071160912624 0.17341962881860884 0.17375949217087092 0.1699212399857572 C 0.17316071160912624 0.17341962881860884 0.17278400337437458 0.19579013115060986 0.17285904097410507 0.1938002164456212" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17285904097410507 0.1938002164456212 C 0.1729296228647493 0.19527577220807657 0.17382969560211284 0.21402502971040135 0.173706023661836 0.21150688559508554 C 0.17382969560211284 0.21402502971040135 0.17439619430705985 0.22506053418227134 0.17434310425742724 0.2240179458294109" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17434310425742724 0.2240179458294109 C 0.17406554757755266 0.22300147294913675 0.17013049218847856 0.20805610686390788 0.17101242409893228 0.21182027126612105 C 0.17013049218847856 0.20805610686390788 0.16315554610140365 0.17610028148091397 0.16375992133198278 0.178847973002853" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16375992133198278 0.178847973002853 C 0.1638703952217712 0.17706553820654042 0.16581050592401392 0.15449317506706428 0.16508560800944377 0.15745875544710228 C 0.16581050592401392 0.15449317506706428 0.17307312033160627 0.14207786285867158 0.17245869630682453 0.143261008442397" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17245869630682453 0.143261008442397 C 0.17351805664010528 0.1426360066140794 0.18689199860091443 0.13516561478213596 0.18517102030619365 0.13576098650258586 C 0.18689199860091443 0.13516561478213596 0.19377205380491386 0.1361461779048657 0.19311043584347384 0.136116547796998" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3216484205469137,0.08877742401709843) rotate(0) scale(1,1) translate(-0.17622383096689268,-0.1693422041235609)"><path d="M 0.19126241445256004 0.1533118016726512 C 0.19131556268902683 0.15366565315053998 0.19127588805962598 0.15837239955311821 0.1919001932901614 0.15755801940731634 C 0.19127588805962598 0.15837239955311821 0.18309329821913273 0.16354489209018686 0.18377075168613494 0.16308436342227373" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18377075168613494 0.16308436342227373 C 0.18323497931333124 0.16385403216438932 0.17633956189026223 0.174753001115783 0.17734148321249063 0.17232038832766086 C 0.17633956189026223 0.174753001115783 0.17128154686996952 0.19393866092574627 0.17174769581939422 0.1922757168797397" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17174769581939422 0.1922757168797397 C 0.17172236284645917 0.1933038398825351 0.17156680487547885 0.20756746479483104 0.17144370014417357 0.2046131929132843 C 0.17156680487547885 0.20756746479483104 0.17337339029929802 0.22965312833705184 0.17322495259505769 0.2277269794583005" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17322495259505769 0.2277269794583005 C 0.17285346979361776 0.22603190590115763 0.1681994214648185 0.20398316791140408 0.16876715897777875 0.20738609677258604 C 0.1681994214648185 0.20398316791140408 0.16621584772801454 0.18518397782007792 0.16641210243953486 0.186891833124117" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16641210243953486 0.186891833124117 C 0.16659304152602697 0.18561789923083435 0.16930690789155775 0.16941029415278291 0.16858337147744018 0.17160462640472518 C 0.16930690789155775 0.16941029415278291 0.17563713673657108 0.15963944774215003 0.17509453940894562 0.16055984610080964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17509453940894562 0.16055984610080964 C 0.17585230145257283 0.16013100401185162 0.18553500685277335 0.15480973733096698 0.18418768393247215 0.1554137410333135 C 0.18553500685277335 0.15480973733096698 0.19185197532923404 0.1531366400592627 0.19126241445256004 0.1533118016726512" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み左">
<g id="編節1">
<g transform="translate(0.3121144470848839,0.09155159690748185) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18150865314490128 0.1301405630549283 C 0.18150778196568002 0.13035993249725825 0.18144766743633753 0.13318428204739913 0.1814981989942462 0.13277299636288756 C 0.18144766743633753 0.13318428204739913 0.1808526140713096 0.13526790751124862 0.180902274449997 0.135075991269067" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.180902274449997 0.135075991269067 C 0.18077674540039101 0.1351739576321185 0.17912898854435755 0.13637331276614428 0.179395925854725 0.13625158762568523 C 0.17912898854435755 0.13637331276614428 0.1775576184648261 0.13656045173198306 0.17769902672558754 0.13653669295457554" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17769902672558754 0.13653669295457554 C 0.17764669945615397 0.13659109838730532 0.1769556149688432 0.1372505393293406 0.17707109949238445 0.13718955814733289 C 0.1769556149688432 0.1372505393293406 0.17619299088543772 0.13723202698706327 0.17631321244309273 0.13726846713866794 C 0.17619299088543772 0.13723202698706327 0.17553569547804188 0.1366281789520543 0.1756284408005242 0.13675227632807682 C 0.17553569547804188 0.1366281789520543 0.17515985052025598 0.13560079581764553 0.17520026857330473 0.13577929862639782 C 0.17515985052025598 0.13560079581764553 0.17516616336499827 0.1344251640650191 0.17514342416393935 0.1346102426230493 C 0.17516616336499827 0.1344251640650191 0.17550061522118432 0.13347069870561754 0.17547313898601163 0.13355835593003537" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17547313898601163 0.13355835593003537 C 0.17546832832684955 0.13333894971940216 0.17545563759814392 0.13050040712058947 0.17541541107606662 0.13092548140243687 C 0.17545563759814392 0.13050040712058947 0.17600089443217884 0.12825179647665239 0.17595585725093943 0.12845746454786658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17595585725093943 0.12845746454786658 C 0.17607191044177653 0.12835438484810036 0.17760512781552082 0.1270849944128769 0.17734849554098472 0.1272205081506718 C 0.17760512781552082 0.1270849944128769 0.1791760236290714 0.12679886565629941 0.17903544454537243 0.12683129969432805" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31027146409021533,0.09483239344132047) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.1074151760160208 0.10255223457341625 C 0.10723072247305253 0.10276698521209862 0.10577928880608341 0.10415941487117819 0.10630845475821118 0.10384073840551045 C 0.10577928880608341 0.10415941487117819 0.10387639807678697 0.10411083980751319 0.10424018030325413 0.1044642933674227 C 0.10387639807678697 0.10411083980751319 0.10424225668281012 0.10085086657783698 0.10412576139940823 0.1017200170460534 C 0.10424225668281012 0.10085086657783698 0.10493915200366545 0.09924939055812425 0.10493915200366545 0.09924939055812425 C 0.10493915200366545 0.09924939055812425 0.10400926611600633 0.1025891675142698 0.10412576139940823 0.1017200170460534 C 0.10400926611600633 0.1025891675142698 0.10397421206679808 0.10501040338129261 0.10424018030325413 0.1044642933674227 C 0.10397421206679808 0.10501040338129261 0.10205447076387766 0.10524935336198257 0.1025299519806719 0.10499667712927285 C 0.10205447076387766 0.10524935336198257 0.10119684983945816 0.10614429636941575 0.1013872930024887 0.10598035076368105" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3084284810955467,0.09811318997515914) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939239008789442 0.11519455608771707 C 0.13944798201098402 0.1153736796824715 0.14012420001546003 0.11770969575796066 0.14005949316496955 0.11734403922477017 C 0.14012420001546003 0.11770969575796066 0.140177987221181 0.119768967424439 0.1401688722937801 0.11958243448600293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1401688722937801 0.11958243448600293 C 0.14009255959366737 0.11973875812844972 0.13906861716692961 0.12172023756109877 0.13925311989242722 0.12145831819536439 C 0.13906861716692961 0.12172023756109877 0.13784664956242393 0.12283106259810325 0.1379548395878088 0.12272546687481564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1379548395878088 0.12272546687481564 C 0.137926510194903 0.12280167673489917 0.1375372008516651 0.12376007184970109 0.13761488687293927 0.12363998519581797 C 0.1375372008516651 0.12376007184970109 0.1369160919090318 0.1242101704912632 0.13702260733251873 0.12416650672141304 C 0.1369160919090318 0.1242101704912632 0.1362298976871014 0.12411949164796743 0.13633670179109628 0.12416395043402005 C 0.1362298976871014 0.12411949164796743 0.13566248337349093 0.12351233264264551 0.13574095808458003 0.12363300128878164 C 0.13566248337349093 0.12351233264264551 0.1353658871753064 0.1225513812404507 0.1353950052580271 0.12271592668038642 C 0.1353658871753064 0.1225513812404507 0.13539125241142358 0.1215703334536502 0.13539154109193155 0.121658456009553" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13539154109193155 0.121658456009553 C 0.1353313476311033 0.12148276817268239 0.13459264558883605 0.11917960556879821 0.13466921956199263 0.11955020196710565 C 0.13459264558883605 0.11917960556879821 0.13445627290172432 0.11701639066842681 0.13447265341405265 0.11721129922986365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13447265341405265 0.11721129922986365 C 0.1345399954402054 0.11705659262780542 0.1354533933307171 0.11508796077431363 0.1352807577278856 0.11535482000516499 C 0.1354533933307171 0.11508796077431363 0.13664957422470947 0.11389683583085423 0.1365442806480307 0.11400898845964737" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3077809085815004,0.10190828455941014) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10640522535867998 0.10097877714730853 C 0.10631125940786189 0.10126611831434842 0.10549553481599983 0.10328503363722903 0.10584142965377143 0.10270282414954787 C 0.10549553481599983 0.10328503363722903 0.10394513940390002 0.10440617425544924 0.10432985633205036 0.10447203407339548 C 0.10394513940390002 0.10440617425544924 0.10340423333893958 0.10152901837963707 0.10353312808486934 0.10230766524187047 C 0.10340423333893958 0.10152901837963707 0.1035564878564718 0.09980015289999507 0.1035564878564718 0.09980015289999507 C 0.1035564878564718 0.09980015289999507 0.10366202283079909 0.10308631210410388 0.10353312808486934 0.10230766524187047 C 0.10366202283079909 0.10308631210410388 0.10425504523162425 0.10507886093190144 0.10432985633205036 0.10447203407339548 C 0.10425504523162425 0.10507886093190144 0.10276481761778185 0.10644435850684299 0.10308426148231267 0.1059486263929063 C 0.10276481761778185 0.10644435850684299 0.1023013484219575 0.10769606015103383 0.10241319314486538 0.10744642675701561" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.3071333360674542,0.10570337914366124) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13927967495911284 0.1142861993924627 C 0.13936800735266391 0.114402911479328 0.14047990098669386 0.11595260104787002 0.14033966368172576 0.11568674443484622 C 0.14047990098669386 0.11595260104787002 0.14101442753014712 0.11762562327490668 0.1409625226187301 0.11747647874874818" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1409625226187301 0.11747647874874818 C 0.1409370357352513 0.11764898079049058 0.14056743289350104 0.11986758511689409 0.14065668001698425 0.11954650324965686 C 0.14056743289350104 0.11986758511689409 0.13982779689692731 0.12147804098108968 0.1398915571369317 0.12132946115559484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1398915571369317 0.12132946115559484 C 0.13988642405813984 0.12140853598928504 0.13979471650932893 0.12242166260182936 0.13982996019142954 0.12227835915987718 C 0.13979471650932893 0.12242166260182936 0.13939150233242997 0.1231455034464019 0.13946863295172424 0.12304910245902094 C 0.13939150233242997 0.1231455034464019 0.13880604229056223 0.12345883897454027 0.1389043927598985 0.12343517100844881 C 0.13880604229056223 0.12345883897454027 0.13819520992914466 0.12327771118451976 0.13828842731968907 0.1233331180521185 C 0.13819520992914466 0.12327771118451976 0.13772267728612986 0.12265065312140332 0.1377857840733655 0.12277028859726402 C 0.13772267728612986 0.12265065312140332 0.1375099260228193 0.12182475932050048 0.13753114587286133 0.12189749234178998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13753114587286133 0.12189749234178998 C 0.13743985032120504 0.12178622657533399 0.1362844341180914 0.12029907630530445 0.13643559925298576 0.12056230314431808 C 0.1362844341180914 0.12029907630530445 0.13565729467089097 0.11858680920106882 0.13571716425412902 0.11873877027362645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13571716425412902 0.11873877027362645 C 0.13573566466408785 0.11857268276010624 0.13601748846719192 0.11642726801815684 0.13593916917363497 0.11674572011138389 C 0.13601748846719192 0.11642726801815684 0.1367168146604105 0.11476498057519495 0.13665699577681237 0.11491734515490179" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30750484413592116,0.10920923138116624) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10527257822867676 0.10036282214099662 C 0.10526378131931731 0.10065369471599475 0.10507419179758737 0.1027854272752747 0.10521979677252004 0.10210805759098544 C 0.10507419179758737 0.1027854272752747 0.10406713190458351 0.10459028763510785 0.10439894837908076 0.10442704024673223 C 0.10406713190458351 0.10459028763510785 0.10293757923182321 0.10251637971796333 0.10322889792553655 0.10308754192123916 C 0.10293757923182321 0.10251637971796333 0.10265103621680076 0.10100006702707724 0.10265103621680076 0.10100006702707724 C 0.10265103621680076 0.10100006702707724 0.10352021661924989 0.10365870412451499 0.10322889792553655 0.10308754192123916 C 0.10352021661924989 0.10365870412451499 0.10448196355436626 0.10497135598712207 0.10439894837908076 0.10442704024673223 C 0.10448196355436626 0.10497135598712207 0.10358252874999373 0.10694430083914014 0.10372698897724959 0.10635343636357816 C 0.10358252874999373 0.10694430083914014 0.10349972002192821 0.10824202555619174 0.10353218701554555 0.10797222710010408" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3121144470848839,0.09155159690748185) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.18047243678233799 0.15939599797724413 C 0.18025931948143797 0.15963549923141201 0.1775631031124528 0.1629316066069173 0.17791502917153768 0.16227001302725866 C 0.1775631031124528 0.1629316066069173 0.17611051531513475 0.16775721325863877 0.17624932407331959 0.16733512093314798" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17624932407331959 0.16733512093314798 C 0.1760918352338779 0.1678838189140887 0.17392791297073779 0.17520102235062074 0.17435945800001937 0.1739194967044367 C 0.17392791297073779 0.17520102235062074 0.1707967275321005 0.18344625635259953 0.17107078372194043 0.18271342868735624" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17107078372194043 0.18271342868735624 C 0.1706715116368371 0.1837244840770578 0.1651943421985034 0.1965039834646813 0.16627951870070065 0.19484609336377492 C 0.1651943421985034 0.1965039834646813 0.15736276127847937 0.20325494460943727 0.15804866569557333 0.20260810989823247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15804866569557333 0.20260810989823247 C 0.15848710494186077 0.20180488422591583 0.16393879806097594 0.19103792535577452 0.1633099366510227 0.19296940183043293 C 0.16393879806097594 0.19103792535577452 0.165785424778678 0.17830214139998987 0.1655950026150122 0.17943039220233165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1655950026150122 0.17943039220233165 C 0.16576846508231274 0.17872713182607278 0.1681530487555238 0.16972063752724859 0.16767655222261882 0.17099126768722517 C 0.1681530487555238 0.16972063752724859 0.17161599507547665 0.1636154604988948 0.1713129610098722 0.16418283028261252" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1713129610098722 0.16418283028261252 C 0.17162946722599348 0.16388777654334796 0.17587432525103297 0.16024328271932364 0.1751110356033275 0.16064218541143768 C 0.17587432525103297 0.16024328271932364 0.1809192202139222 0.15929214902439467 0.18047243678233799 0.15939599797724413" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3121144470848839,0.09155159690748185) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.13102106757438675 0.11968410375763905 C 0.13072983789721626 0.12026513361532909 0.12707705105110767 0.12793939288129935 0.127526311448341 0.12665646204991954 C 0.12707705105110767 0.12793939288129935 0.12547191208752387 0.13578117470788645 0.12562994280758671 0.13507927373419668" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12562994280758671 0.13507927373419668 C 0.12593673096607014 0.13440446319665048 0.13039026163279102 0.12567836028387233 0.12931140070938782 0.12698154728364242 C 0.13039026163279102 0.12567836028387233 0.13934834665334497 0.11881265327473191 0.1385762738884252 0.11944102973695579" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1385762738884252 0.11944102973695579 C 0.1380721566002784 0.12022430501492765 0.1317791548858712 0.13035321524536145 0.13252686643066394 0.12884033307261797 C 0.1317791548858712 0.13035321524536145 0.12936014109426605 0.13832522270464934 0.12960373535091205 0.1375956158098777" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12960373535091205 0.1375956158098777 C 0.12968720986776264 0.1370822238096005 0.13084002544991705 0.13047248620954816 0.130605429553119 0.1314349118065515 C 0.13084002544991705 0.13047248620954816 0.13257000749243608 0.12559747504911148 0.13241888611248862 0.12604650864583763" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.13241888611248862 0.12604650864583763 C 0.13211329474068112 0.12644954949316656 0.12815084361966866 0.13233590581980978 0.1287517896507987 0.13088299881378476 C 0.12815084361966866 0.13233590581980978 0.12491217907960572 0.14453125887683388 0.12520753373892826 0.14348139271813778" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12520753373892826 0.14348139271813778 C 0.1251441216822372 0.1426863989207123 0.12450278197793152 0.13250812667470985 0.12444658905863559 0.13394146714903205 C 0.12450278197793152 0.13250812667470985 0.12600145374646635 0.12564296034937464 0.12588184877047937 0.12628130702627136" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12588184877047937 0.12628130702627136 C 0.1256404085527309 0.1267323785861495 0.12241636133989478 0.1329752821506307 0.1229845661574978 0.1316941657448091 C 0.12241636133989478 0.1329752821506307 0.1187366263593886 0.142484748742074 0.11906339095924315 0.14165470389613055" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11906339095924315 0.14165470389613055 C 0.11910201662355213 0.14088532126135764 0.11962702309366018 0.1312707411167906 0.11952689893095088 0.13242211227885572 C 0.11962702309366018 0.1312707411167906 0.12032637941015502 0.127456261424057 0.1202648809117547 0.1278382499513492" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1202648809117547 0.1278382499513492 C 0.12005612662414017 0.12797789448162566 0.1175034678039021 0.12939967196783494 0.11775982946038027 0.12951398431466665 C 0.1175034678039021 0.12939967196783494 0.117140933665153 0.12621254491226064 0.11718854103401664 0.1264665017893688" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11718854103401664 0.1264665017893688 C 0.11730956853312584 0.1265335306448263 0.1192622319350445 0.1269028456695732 0.118640871023327 0.12727084805485878 C 0.1192622319350445 0.1269028456695732 0.12514520538723492 0.12161544192519877 0.12464487197462662 0.12205047316594185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.12464487197462662 0.12205047316594185 C 0.12441174075390177 0.1224896665154786 0.12154113747035786 0.12822723516604595 0.12184729732592832 0.12732079336038282 C 0.12154113747035786 0.12822723516604595 0.12089792507293551 0.13339502329002584 0.1209709537077811 0.13292777483389945" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1209709537077811 0.13292777483389945 C 0.12123096661130173 0.13235383978551093 0.12492861803891231 0.12493691499688239 0.1240911085500285 0.12604055425323743 C 0.12492861803891231 0.12493691499688239 0.13159856415974994 0.11915439954967252 0.13102106757438675 0.11968410375763905" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3289727270591859,0.07398795388008708) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.18029630646127018 0.14705264825063474 C 0.1798948406057448 0.14774783187485188 0.17471946351478768 0.15689176582722125 0.17547871619496558 0.15539485174124026 C 0.17471946351478768 0.15689176582722125 0.170827487474483 0.1658173477441705 0.17118527429913552 0.16501561728240663" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17118527429913552 0.16501561728240663 C 0.17087632910846454 0.1660746262512823 0.16694278853283848 0.17993967112746923 0.16747793201108357 0.1777237249089146 C 0.16694278853283848 0.17993967112746923 0.16453735427262015 0.19276390915474098 0.16476355256019426 0.19160697190506204" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16476355256019426 0.19160697190506204 C 0.16468173926516644 0.1926364955855936 0.16386333032143569 0.2060927368900165 0.16378179301986034 0.20396125607144083 C 0.16386333032143569 0.2060927368900165 0.16590535077570168 0.21828669886601426 0.1657420001790985 0.21718474172797014" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1657420001790985 0.21718474172797014 C 0.16528884884962605 0.21594605305631154 0.15968389332456343 0.1993452684450146 0.16030418422542933 0.2023204776680669 C 0.15968389332456343 0.1993452684450146 0.1581313697973141 0.1797457104999487 0.15829850936870757 0.1814822310513424" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15829850936870757 0.1814822310513424 C 0.15855995510334975 0.1803881365758246 0.1621045977153064 0.16635303933671317 0.16143585818441372 0.16835309734512863 C 0.1621045977153064 0.16635303933671317 0.16673067753567003 0.15657557141745915 0.16632338373941954 0.1574815349503568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16632338373941954 0.1574815349503568 C 0.16688238506970327 0.15683658368470946 0.174195809929645 0.1488730458709452 0.17303139970282413 0.1497421197625887 C 0.174195809929645 0.1488730458709452 0.18090171535780736 0.14682852562463858 0.18029630646127018 0.14705264825063474" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3316951023832041,0.07412620935247102) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17198669428013527 0.1626113009894111 C 0.17181382723129623 0.16286135049903622 0.16941440399537114 0.16635595904162648 0.16991228969406683 0.16561189510491273 C 0.16941440399537114 0.16635595904162648 0.16568704724593028 0.17203408265706485 0.16601206589578693 0.17154006822997622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16601206589578693 0.17154006822997622 C 0.1655836262876934 0.17254997191619564 0.16010377552233482 0.18630236760136884 0.16087079059866463 0.18365891246460922 C 0.16010377552233482 0.18630236760136884 0.15646930951159288 0.20489508132163192 0.15680788497982917 0.20326152987109172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15680788497982917 0.20326152987109172 C 0.15687948825137515 0.20466995599777635 0.15810253407250782 0.22276060226763073 0.15766712423838103 0.22016264339130717 C 0.15810253407250782 0.22276060226763073 0.16239660955193153 0.23562656913661328 0.16203280298935072 0.23443703638697436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16203280298935072 0.23443703638697436 C 0.1613327602238618 0.2331264663912867 0.152762708851414 0.2154963905463521 0.1536322898034837 0.21871019643872255 C 0.152762708851414 0.2154963905463521 0.1514282933779333 0.19396812978184613 0.1515978315645141 0.19587136567852895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1515978315645141 0.19587136567852895 C 0.1519989580990114 0.19438621101389097 0.157440876043017 0.17556970795198834 0.15641134997848177 0.17804950970287317 C 0.157440876043017 0.17556970795198834 0.16458054386897453 0.16511909758166401 0.16395214433893662 0.16611374466791087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16395214433893662 0.16611374466791087 C 0.16435703434190987 0.1657614785365586 0.16948037020304899 0.16159468078514175 0.16881082437461575 0.1618865510916834 C 0.16948037020304899 0.16159468078514175 0.17225135010559522 0.16267169681422172 0.17198669428013527 0.1626113009894111" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33868980928017706,0.07877447199930587) rotate(0) scale(1,1) translate(-0.1775046802252479,-0.1609457706712427)"><path d="M 0.1758956286491253 0.15747501836743638 C 0.17648012880129327 0.15764661323044638 0.18384540169552327 0.16005605749645538 0.18290963047514072 0.15953415672355625 C 0.18384540169552327 0.16005605749645538 0.18747615436193066 0.16408813355211505 0.18712488329371604 0.1637378276422259" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18712488329371604 0.1637378276422259 C 0.1873727077079646 0.16435525405563436 0.19054981962737927 0.1724687602960327 0.19009877626469882 0.1711469446031273 C 0.19054981962737927 0.1724687602960327 0.19274062259431346 0.18030400523658768 0.19253740364588157 0.17959961595709073" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.19253740364588157 0.17959961595709073 C 0.19275584297546358 0.18021120963560272 0.19582779947346296 0.18846747530167873 0.1951586756008657 0.18693874009923445 C 0.19582779947346296 0.18846747530167873 0.20101757466006395 0.19886157991035444 0.2005668901170487 0.19794443838642214" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.2005668901170487 0.19794443838642214 C 0.1996586054137664 0.19728583638994646 0.18822926367104048 0.18883715360992465 0.18966747367766104 0.19004121442871377 C 0.18822926367104048 0.18883715360992465 0.1827784447342637 0.1829502497386392 0.18330837003760195 0.18349570856095263" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18330837003760195 0.18349570856095263 C 0.18303090830052315 0.18303429367212717 0.1795271004900432 0.17700580351841444 0.1799788291926566 0.17795872989504716 C 0.1795271004900432 0.17700580351841444 0.1777133586407065 0.17156908055355286 0.17788762560624113 0.17206059204136012" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17788762560624113 0.17206059204136012 C 0.17774099065038568 0.17118425044760238 0.1759620063895493 0.16032902844344044 0.17612800613597562 0.1615444929162674 C 0.1759620063895493 0.16032902844344044 0.17587626385855445 0.15713589548836712 0.1758956286491253 0.15747501836743638" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3494907181700234,0.09058713353659362) rotate(0) scale(1,1) translate(-0.1735889769813819,-0.17324546383976883)"><path d="M 0.1657256747258977 0.1588150033745185 C 0.16602719343086603 0.15895781180257854 0.17002612215408583 0.1609314771612468 0.16934389918551754 0.16052870451123893 C 0.17002612215408583 0.1609314771612468 0.1742930546123172 0.16390823939656102 0.17391235034871722 0.16364827517461317" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17391235034871722 0.16364827517461317 C 0.1742691595774463 0.16422341545875022 0.17873146002231083 0.1718478717752012 0.17819406109346603 0.17054995858425778 C 0.17873146002231083 0.1718478717752012 0.18054172719497075 0.17994600637274036 0.180361137494855 0.179223233465934" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.180361137494855 0.179223233465934 C 0.18043940242375703 0.1797347299043983 0.18140134114561296 0.18661317644047354 0.1813003166416794 0.1853611907275056 C 0.18140134114561296 0.18661317644047354 0.18159619111708913 0.194987551296053 0.18157343154205763 0.19424706202154934" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18157343154205763 0.19424706202154934 C 0.1812310669961898 0.19356430620293716 0.1767937850658144 0.18485020268167493 0.17746505699164375 0.18605399219820312 C 0.1767937850658144 0.18485020268167493 0.1731892610521439 0.17928055412529503 0.17351816843210544 0.17980158782321104" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17351816843210544 0.17980158782321104 C 0.17317452123942306 0.1793117360665704 0.1686246233168522 0.17286726914891695 0.1693944021199169 0.17392336674352327 C 0.1686246233168522 0.17286726914891695 0.16385469118494675 0.16656217084996952 0.16428082279532907 0.16712841668793518" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16428082279532907 0.16712841668793518 C 0.1640422702523159 0.16642852418952142 0.16153859660671835 0.1580369222641852 0.16141819227917095 0.15872970670696993 C 0.16153859660671835 0.1580369222641852 0.16608463159645825 0.15882211143014757 0.1657256747258977 0.1588150033745185" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.358783975386698,0.09212286312454832) rotate(0) scale(1,1) translate(-0.17199583769089846,-0.15739337258770392)"><path d="M 0.150881239538323 0.136116547796998 C 0.151542857499763 0.1360869176891303 0.16054163337032407 0.13635635822303577 0.15882065507560328 0.13576098650258586 C 0.16054163337032407 0.13635635822303577 0.17259233940825305 0.1438860102707146 0.1715329790749723 0.143261008442397" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1715329790749723 0.143261008442397 C 0.17214740309975404 0.14444415402612243 0.17963096528692318 0.16042433582714027 0.17890606737235304 0.15745875544710228 C 0.17963096528692318 0.16042433582714027 0.1803422279396025 0.18063040779916556 0.1802317540498141 0.178847973002853" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1802317540498141 0.178847973002853 C 0.17962737881923496 0.181595664524792 0.17209731937241085 0.2155844356683342 0.17297925128286457 0.21182027126612105 C 0.17209731937241085 0.2155844356683342 0.16937101444449496 0.22503441870968505 0.16964857112436954 0.2240179458294109" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16964857112436954 0.2240179458294109 C 0.16970166117400215 0.22297535747655045 0.17040932366023775 0.20898874147976973 0.1702856517199609 0.21150688559508554 C 0.17040932366023775 0.20898874147976973 0.17120321629833596 0.19232466068316584 0.17113263440769172 0.1938002164456212" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17113263440769172 0.1938002164456212 C 0.17105759680796123 0.19181030174063254 0.16963340264918128 0.16642285115290556 0.17023218321092592 0.1699212399857572 C 0.16963340264918128 0.16642285115290556 0.1634235247047417 0.1503110763235385 0.16394726766675588 0.15181955045140147" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16394726766675588 0.15181955045140147 C 0.16282897345426653 0.15077744296136183 0.14943890143951433 0.13800567701639221 0.15052773711688372 0.13931426057092583 C 0.14943890143951433 0.13800567701639221 0.15091069807344293 0.13585007173250402 0.150881239538323 0.136116547796998" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3530384851104277,0.08877742401709843) rotate(0) scale(1,1) translate(-0.17622383096689268,-0.1693422041235609)"><path d="M 0.16118524748122526 0.1533118016726512 C 0.16177480835789926 0.15348696328603972 0.16960730092161438 0.15601774473566005 0.16825997800131318 0.1554137410333135 C 0.16960730092161438 0.15601774473566005 0.1781108845684669 0.16098868818976766 0.1773531225248397 0.16055984610080964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1773531225248397 0.16055984610080964 C 0.17789571985246516 0.16148024445946926 0.1845878268704627 0.17379895865666745 0.18386429045634514 0.17160462640472518 C 0.1845878268704627 0.17379895865666745 0.1862164985807425 0.18816576701739965 0.18603555949425038 0.186891833124117" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18603555949425038 0.186891833124117 C 0.18583930478273006 0.18859968842815608 0.18311276544304628 0.210789025633768 0.18368050295600652 0.20738609677258604 C 0.18311276544304628 0.210789025633768 0.17885122653728766 0.22942205301544338 0.17922270933872758 0.2277269794583005" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17922270933872758 0.2277269794583005 C 0.17937114704296792 0.22580083057954917 0.18112706652091703 0.20165892103173758 0.18100396178961176 0.2046131929132843 C 0.18112706652091703 0.20165892103173758 0.18067463314145601 0.19124759387694432 0.18069996611439107 0.1922757168797397" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18069996611439107 0.1922757168797397 C 0.18023381716496636 0.19061277283373315 0.17410425739906626 0.1698877755395387 0.17510617872129466 0.17232038832766086 C 0.17410425739906626 0.1698877755395387 0.16814113787484666 0.16231469468015813 0.16867691024765036 0.16308436342227373" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16867691024765036 0.16308436342227373 C 0.16799945678064815 0.1626238347543606 0.15992316341308843 0.15674363926151447 0.16054746864362385 0.15755801940731634 C 0.15992316341308843 0.15674363926151447 0.16123839571769205 0.15295795019476244 0.16118524748122526 0.1533118016726512" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="編み右">
<g id="編節1">
<g transform="translate(0.3625724585724573,0.09155159690748185) rotate(0) scale(1,1) translate(-0.18027204884513678,-0.12848593137462816)"><path d="M 0.18150865314490122 0.12683129969432805 C 0.1816492322286002 0.12686373373235668 0.18345223442382505 0.12735602188846668 0.18319560214928896 0.1272205081506718 C 0.18345223442382505 0.12735602188846668 0.18470429363017132 0.1285605442476328 0.18458824043933422 0.12845746454786658" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18458824043933422 0.12845746454786658 C 0.18463327762057363 0.12866313261908077 0.1851689131362843 0.13135055568428428 0.185128686614207 0.13092548140243687 C 0.1851689131362843 0.13135055568428428 0.18506614804509988 0.13377776214066858 0.18507095870426196 0.13355835593003537" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18507095870426196 0.13355835593003537 C 0.18509843493943465 0.1336460131544532 0.18542341272739318 0.1347953211810795 0.18540067352633427 0.1346102426230493 C 0.18542341272739318 0.1347953211810795 0.18530341106392018 0.1359578014351501 0.1853438291169689 0.13577929862639782 C 0.18530341106392018 0.1359578014351501 0.18482291156726718 0.13687637370409933 0.1849156568897495 0.13675227632807682 C 0.18482291156726718 0.13687637370409933 0.18411066368952586 0.13730490729027262 0.1842308852471809 0.13726846713866794 C 0.18411066368952586 0.13730490729027262 0.18335751367434797 0.13712857696532518 0.1834729981978892 0.13718955814733289 C 0.18335751367434797 0.13712857696532518 0.18279274369525247 0.1364822875218458 0.18284507096468608 0.13653669295457557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18284507096468608 0.13653669295457557 C 0.18270366270392463 0.13651293417716803 0.18088123452518118 0.13612986248522618 0.18114817183554863 0.13625158762568523 C 0.18088123452518118 0.13612986248522618 0.17951629419067058 0.1349780249060155 0.17964182324027658 0.135075991269067" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17964182324027658 0.135075991269067 C 0.17959216286158916 0.13488407502688537 0.17899536713811873 0.132361710678376 0.1790458986960274 0.13277299636288756 C 0.17899536713811873 0.132361710678376 0.1790345733661511 0.12992119361259835 0.17903544454537237 0.1301405630549283" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3644154415671259,0.09483239344132047) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10728721374882275 0.10598035076368105 C 0.1070967705857922 0.10581640515794635 0.10566907355384528 0.10474400089656313 0.10614455477063951 0.10499667712927285 C 0.10566907355384528 0.10474400089656313 0.10416835821160125 0.1039181833535528 0.10443432644805731 0.1044642933674227 C 0.10416835821160125 0.1039181833535528 0.1044322500685013 0.10085086657783698 0.10454874535190319 0.1017200170460534 C 0.1044322500685013 0.10085086657783698 0.103735354747646 0.09924939055812425 0.103735354747646 0.09924939055812425 C 0.103735354747646 0.09924939055812425 0.10466524063530507 0.1025891675142698 0.10454874535190319 0.1017200170460534 C 0.10466524063530507 0.1025891675142698 0.10407054422159015 0.10481774692733221 0.10443432644805731 0.1044642933674227 C 0.10407054422159015 0.10481774692733221 0.10183688604097246 0.1035220619398427 0.10236605199310024 0.10384073840551045 C 0.10183688604097246 0.1035220619398427 0.10107487719232237 0.10233748393473388 0.10125933073529064 0.10255223457341625" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節2">
<g transform="translate(0.3662584245617945,0.09811318997515914) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.13939239008789453 0.11400898845964737 C 0.1394976836645733 0.1141211410884405 0.14082854861087118 0.11562167923601635 0.14065591300803967 0.11535482000516499 C 0.14082854861087118 0.11562167923601635 0.1415313593480253 0.11736600583192187 0.14146401732187255 0.11721129922986365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14146401732187255 0.11721129922986365 C 0.14144763680954422 0.11740620779130048 0.14119087720077597 0.11992079836541308 0.14126745117393255 0.11955020196710564 C 0.14119087720077597 0.11992079836541308 0.1404849361831655 0.1218341438464236 0.1405451296439937 0.121658456009553" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1405451296439937 0.121658456009553 C 0.14054484096348574 0.12174657856545579 0.14051254739517746 0.12288047212032213 0.14054166547789818 0.12271592668038642 C 0.14051254739517746 0.12288047212032213 0.1401172379402561 0.12375366993491778 0.1401957126513452 0.12363300128878164 C 0.1401172379402561 0.12375366993491778 0.13949316484083413 0.12420840922007267 0.139599968944829 0.12416395043402005 C 0.13949316484083413 0.12420840922007267 0.13880754797991962 0.12412284295156287 0.13891406340340653 0.12416650672141304 C 0.13880754797991962 0.12412284295156287 0.13824409784171177 0.12351989854193483 0.13832178386298594 0.12363998519581795 C 0.13824409784171177 0.12351989854193483 0.13795350175521068 0.12264925701473212 0.13798183114811646 0.12272546687481564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13798183114811646 0.12272546687481564 C 0.1378736411227316 0.12261987115152803 0.13649904811800043 0.12119639882963 0.13668355084349804 0.12145831819536439 C 0.13649904811800043 0.12119639882963 0.13569148574203244 0.11942611084355614 0.13576779844214518 0.11958243448600293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13576779844214518 0.11958243448600293 C 0.13577691336954606 0.11939590154756687 0.13594188442144622 0.11697838269157969 0.13587717757095574 0.11734403922477017 C 0.13594188442144622 0.11697838269157969 0.1365998725711204 0.11501543249296264 0.1365442806480308 0.11519455608771707" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3669059970758408,0.10190828455941014) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10626131360644608 0.10744642675701561 C 0.1061494688835382 0.1071967933629974 0.10527080140446793 0.1054528942789696 0.10559024526899877 0.1059486263929063 C 0.10527080140446793 0.1054528942789696 0.10426983931883498 0.10386520721488951 0.10434465041926108 0.10447203407339548 C 0.10426983931883498 0.10386520721488951 0.10527027341237188 0.10152901837963707 0.10514137866644212 0.10230766524187047 C 0.10527027341237188 0.10152901837963707 0.10511801889483964 0.09980015289999507 0.10511801889483964 0.09980015289999507 C 0.10511801889483964 0.09980015289999507 0.10501248392051235 0.10308631210410388 0.10514137866644212 0.10230766524187047 C 0.10501248392051235 0.10308631210410388 0.10395993349111074 0.10453789389134172 0.10434465041926108 0.10447203407339548 C 0.10395993349111074 0.10453789389134172 0.10248718225976843 0.10212061466186671 0.10283307709754003 0.10270282414954787 C 0.10248718225976843 0.10212061466186671 0.10217531544181341 0.10069143598026864 0.1022692813926315 0.10097877714730853" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節3">
<g transform="translate(0.36755356958988694,0.10570337914366124) rotate(0) scale(1,1) translate(-0.13796833536796266,-0.11460177227368223)"><path d="M 0.1392796749591129 0.11491734515490179 C 0.139339493842711 0.11506970973460863 0.1400758208558472 0.11706417220461093 0.13999750156229024 0.11674572011138387 C 0.1400758208558472 0.11706417220461093 0.14023800689175503 0.11890485778714666 0.1402195064817962 0.11873877027362645" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1402195064817962 0.11873877027362645 C 0.14015963689855815 0.11889073134618408 0.13934990634804512 0.12082552998333171 0.13950107148293947 0.12056230314431808 C 0.13934990634804512 0.12082552998333171 0.13831422931140763 0.12200875810824598 0.13840552486306393 0.12189749234178998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13840552486306393 0.12189749234178998 C 0.1383843050130219 0.12197022536307948 0.13808777987532403 0.12288992407312473 0.13815088666255967 0.12277028859726402 C 0.13808777987532403 0.12288992407312473 0.13755502602569172 0.12338852491971723 0.13764824341623613 0.1233331180521185 C 0.13755502602569172 0.12338852491971723 0.13693392750669053 0.12341150304235735 0.1370322779760268 0.12343517100844881 C 0.13693392750669053 0.12341150304235735 0.1363909071649067 0.12295270147163997 0.13646803778420097 0.12304910245902094 C 0.1363909071649067 0.12295270147163997 0.13607146686239513 0.122135055717925 0.13610671054449575 0.12227835915987718 C 0.13607146686239513 0.122135055717925 0.13603998052020166 0.12125038632190464 0.13604511359899352 0.12132946115559484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13604511359899352 0.12132946115559484 C 0.13598135335898914 0.12118088133010001 0.13519074359545785 0.11922542138241964 0.13527999071894103 0.11954650324965686 C 0.13519074359545785 0.11922542138241964 0.13494866123371638 0.11730397670700579 0.1349741481171952 0.11747647874874818" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1349741481171952 0.11747647874874818 C 0.1350260530286122 0.11732733422258969 0.13573724435916756 0.11542088782182243 0.13559700705419947 0.11568674443484622 C 0.13573724435916756 0.11542088782182243 0.1367453281703635 0.11416948730559741 0.13665699577681242 0.1142861993924627" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.36718206152141997,0.10920923138116624) rotate(0) scale(1,1) translate(-0.10433725337565573,-0.10418740031181734)"><path d="M 0.10514231973576588 0.10797222710010408 C 0.10510985274214854 0.10770242864401643 0.104803057546806 0.10576257188801619 0.10494751777406186 0.10635343636357816 C 0.104803057546806 0.10576257188801619 0.1043585735475162 0.1038827245063424 0.1042755583722307 0.10442704024673223 C 0.1043585735475162 0.1038827245063424 0.1057369275194882 0.10251637971796333 0.10544560882577486 0.10308754192123916 C 0.1057369275194882 0.10251637971796333 0.10602347053451068 0.10100006702707724 0.10602347053451068 0.10100006702707724 C 0.10602347053451068 0.10100006702707724 0.10515429013206153 0.10365870412451499 0.10544560882577486 0.10308754192123916 C 0.10515429013206153 0.10365870412451499 0.10394374189773345 0.10426379285835662 0.1042755583722307 0.10442704024673223 C 0.10394374189773345 0.10426379285835662 0.10330910500385872 0.10143068790669618 0.10345470997879139 0.10210805759098544 C 0.10330910500385872 0.10143068790669618 0.1033931316132752 0.10007194956599849 0.10340192852263465 0.10036282214099662" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="編節4">
</g>
<g id="編節5">
</g>
<g id="編節6">
</g>
<g id="編節7">
</g>
</g>
<g transform="translate(0.3625724585724573,0.09155159690748185) rotate(0) scale(1,1) translate(-0.17086573660060742,-0.1716896655664302)"><path d="M 0.1612590364188769 0.15939599797724413 C 0.16170581985046112 0.1594998469300936 0.16738372724559283 0.16104108810355172 0.16662043759788736 0.16064218541143768 C 0.16738372724559283 0.16104108810355172 0.17073501840746397 0.16447788402187707 0.17041851219134269 0.16418283028261252" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17041851219134269 0.16418283028261252 C 0.17072154625694713 0.16475020006633023 0.17453141751150103 0.17226189784720175 0.17405492097859604 0.17099126768722517 C 0.17453141751150103 0.17226189784720175 0.1763099330535032 0.18013365257859051 0.17613647058620266 0.17943039220233165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17613647058620266 0.17943039220233165 C 0.17632689274986846 0.18055864300467342 0.17905039796014535 0.19490087830509134 0.1784215365501921 0.19296940183043293 C 0.17905039796014535 0.19490087830509134 0.18412124675192904 0.2034113355705491 0.1836828075056416 0.20260810989823247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1836828075056416 0.20260810989823247 C 0.18299690308854763 0.20196127518702767 0.17436677799831693 0.19318820326286856 0.17545195450051418 0.19484609336377492 C 0.17436677799831693 0.19318820326286856 0.17026141739417117 0.18170237329765468 0.17066068947927449 0.18271342868735624" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17066068947927449 0.18271342868735624 C 0.17038663328943457 0.18198060102211294 0.16694047017191385 0.17263797105825268 0.16737201520119546 0.1739194967044367 C 0.16694047017191385 0.17263797105825268 0.16532466028845355 0.16678642295220725 0.16548214912789524 0.16733512093314798" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16548214912789524 0.16733512093314798 C 0.1653433403697104 0.1669130286076572 0.16346451797059233 0.16160841944760002 0.16381644402967718 0.16227001302725866 C 0.16346451797059233 0.16160841944760002 0.1610459191179769 0.15915649672307625 0.1612590364188769 0.15939599797724413" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3625724585724573,0.09155159690748185) rotate(0) scale(1,1) translate(-0.11911739335740366,-0.12944226356934785)"><path d="M 0.10721371914042067 0.11968410375763905 C 0.10779121572578386 0.12021380796560557 0.11498118765366266 0.12714419350959247 0.11414367816477887 0.12604055425323743 C 0.11498118765366266 0.12714419350959247 0.11752384591054683 0.13350170988228796 0.11726383300702622 0.13292777483389945" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11726383300702622 0.13292777483389945 C 0.11719080437218063 0.13246052637777306 0.11608132953330857 0.1264143515547197 0.11638748938887902 0.12732079336038282 C 0.11608132953330857 0.1264143515547197 0.11335678351945591 0.1216112798164051 0.11358991474018076 0.12205047316594185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11358991474018076 0.12205047316594185 C 0.11409024815278906 0.12248550440668493 0.12021527660319782 0.12763885044014436 0.11959391569148033 0.12727084805485878 C 0.12021527660319782 0.12763885044014436 0.12116727317989989 0.1263994729339113 0.1210462456807907 0.1264665017893688" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1210462456807907 0.1264665017893688 C 0.12099863831192707 0.12672045866647696 0.12021859559794895 0.12962829666149836 0.12047495725442713 0.12951398431466665 C 0.12021859559794895 0.12962829666149836 0.1177611515154381 0.12769860542107275 0.11796990580305264 0.1278382499513492" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11796990580305264 0.1278382499513492 C 0.11803140430145295 0.12822023847864142 0.11880801194656579 0.13357348344092085 0.11870788778385649 0.13242211227885572 C 0.11880801194656579 0.13357348344092085 0.11921002141987319 0.14242408653090347 0.11917139575556421 0.14165470389613055" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11917139575556421 0.14165470389613055 C 0.11884463115570966 0.1408246590501871 0.11468201573970656 0.1304130493389875 0.11525022055730959 0.1316941657448091 C 0.11468201573970656 0.1304130493389875 0.11211149772657945 0.12583023546639321 0.11235293794432792 0.12628130702627136" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11235293794432792 0.12628130702627136 C 0.1124725429203149 0.12691965370316807 0.11384439057546766 0.13537480762335424 0.11378819765617174 0.13394146714903205 C 0.11384439057546766 0.13537480762335424 0.11296384091918801 0.14427638651556327 0.11302725297587907 0.14348139271813778" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11302725297587907 0.14348139271813778 C 0.11273189831655653 0.1424315265594417 0.10888205103287862 0.12943009180775975 0.10948299706400866 0.13088299881378476 C 0.10888205103287862 0.12943009180775975 0.10551030923051118 0.1256434677985087 0.10581590060231867 0.12604650864583763" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10581590060231867 0.12604650864583763 C 0.10596702198226614 0.1264955422425638 0.10786395305848637 0.13239733740355486 0.10762935716168831 0.1314349118065515 C 0.10786395305848637 0.13239733740355486 0.1087145258807459 0.1381090078101549 0.10863105136389531 0.1375956158098777" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10863105136389531 0.1375956158098777 C 0.10838745710724931 0.13686600891510606 0.1049602087393506 0.1273274508998745 0.10570792028414336 0.12884033307261797 C 0.1049602087393506 0.1273274508998745 0.09915439553823537 0.11865775445898394 0.09965851282638213 0.11944102973695579" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09965851282638213 0.11944102973695579 C 0.10043058559130191 0.12006940619917968 0.11000224692882275 0.1282847342834125 0.10892338600541954 0.12698154728364242 C 0.11000224692882275 0.1282847342834125 0.11291163206570415 0.13575408427174288 0.11260484390722071 0.13507927373419668" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11260484390722071 0.13507927373419668 C 0.11244681318715785 0.1343773727605069 0.11025921486923305 0.12537353121853972 0.11070847526646639 0.12665646204991954 C 0.11025921486923305 0.12537353121853972 0.1069224894632502 0.11910307389994901 0.10721371914042067 0.11968410375763905" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3359982938835323,0.09306022915110879) rotate(0) scale(1,1) translate(-0.17012765883062037,-0.17361926228353314)"><path d="M 0.16881331942871167 0.1586975012251192 C 0.16886280907712778 0.15876333889771968 0.1694623238649103 0.1598091208362909 0.16940719520970499 0.15948755329632494 C 0.1694623238649103 0.1598091208362909 0.16948050229796463 0.16281204157207604 0.16947486329117542 0.16255631170471058" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16947486329117542 0.16255631170471058 C 0.16962037493504606 0.1633832778060895 0.17136573054245233 0.17413492914860623 0.17122100301762305 0.1724799049212576 C 0.17136573054245233 0.17413492914860623 0.1712108094700853 0.18324466055886396 0.17121159358912666 0.18241660243289423" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.17121159358912666 0.18241660243289423 C 0.17127021608273052 0.18298360359082388 0.17208474510233146 0.19056752926035722 0.17191506351237282 0.1892206163280501 C 0.17208474510233146 0.19056752926035722 0.17335883176498498 0.19935946939495733 0.1732477726686302 0.19857955762057986" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1732477726686302 0.19857955762057986 C 0.1727769392626506 0.19774826646702298 0.1668333183690857 0.18705241177919632 0.1675977717968747 0.18860406377789737 C 0.1668333183690857 0.18705241177919632 0.1637807115133524 0.17923937279102317 0.16407433153516182 0.17995973363616735" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16407433153516182 0.17995973363616735 C 0.16397386425424476 0.1792241994858912 0.1628655844321585 0.16982054846940203 0.1628687241641571 0.17113332383285357 C 0.1628655844321585 0.16982054846940203 0.1641339823000972 0.1636291880615737 0.16403665475117873 0.16420642927474907" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16403665475117873 0.16420642927474907 C 0.16425356314986678 0.16386258222878036 0.16703761092522953 0.15962118738565542 0.16663955553543514 0.1600802647231246 C 0.16703761092522953 0.15962118738565542 0.16899446641981805 0.15858227093361874 0.16881331942871167 0.1586975012251192" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3372979738785855,0.08174491511728949) rotate(0) scale(1,1) translate(-0.17197072520625506,-0.16014808241896866)"><path d="M 0.1713197469716176 0.1554099990126312 C 0.17143696714799328 0.15543973220243332 0.1730363137764766 0.15619084295143143 0.17272638908812604 0.15576679729025678 C 0.1730363137764766 0.15619084295143143 0.17523154774379918 0.16089285941809964 0.1750388432318243 0.1604985469467271" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1750388432318243 0.1604985469467271 C 0.17521402806263411 0.16132482035768858 0.1773015348424544 0.17208752722580098 0.1771410612015419 0.17041382787826467 C 0.1773015348424544 0.17208752722580098 0.17694981573287674 0.1814303650537376 0.17696452692277406 0.18058293911716278" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17696452692277406 0.18058293911716278 C 0.17695234967435242 0.18102692394340145 0.17683946809963205 0.18741859883200623 0.1768183999417142 0.18591075703202695 C 0.17683946809963205 0.18741859883200623 0.17725059022412773 0.19974089769065492 0.17721734481778822 0.1986770407169143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17721734481778822 0.1986770407169143 C 0.17689980529186433 0.19786384573671975 0.17282246437025886 0.18741421365527378 0.1734068705067016 0.1889187009545796 C 0.17282246437025886 0.18741421365527378 0.16993760456995663 0.17993190080613325 0.17020447118047546 0.1806231931252445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17020447118047546 0.1806231931252445 C 0.17002571416908965 0.17982376571035918 0.16792350489260102 0.16937878570496512 0.16805938704384576 0.17103006414662092 C 0.16792350489260102 0.16937878570496512 0.16861676022567965 0.15995600079860442 0.16857388536553858 0.1608078518253749" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16857388536553858 0.1608078518253749 C 0.16870674749157769 0.16040800331573452 0.1703970526785146 0.1555598486419617 0.170168230878008 0.15600966970969035 C 0.1703970526785146 0.1555598486419617 0.17141570664608505 0.15536002645454294 0.1713197469716176 0.1554099990126312" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3457141785981557,0.07398795388008708) rotate(0) scale(1,1) translate(-0.17937141817669924,-0.1476763379794267)"><path d="M 0.1784465298921283 0.14705264825063474 C 0.1790519387886655 0.1472767708766309 0.18687584687739517 0.1506111936542322 0.1857114366505743 0.1497421197625887 C 0.18687584687739517 0.1506111936542322 0.19297845394426258 0.15812648621600414 0.19241945261397886 0.1574815349503568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19241945261397886 0.1574815349503568 C 0.19282674641022934 0.15838749848325445 0.19797571769987737 0.1703531553535441 0.1973069781689847 0.16835309734512863 C 0.19797571769987737 0.1703531553535441 0.20070577271933301 0.1825763255268602 0.20044432698469083 0.1814822310513424" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.20044432698469083 0.1814822310513424 C 0.20027718741329736 0.1832187516027361 0.19781836122710325 0.2052956868911192 0.19843865212796916 0.2023204776680669 C 0.19781836122710325 0.2052956868911192 0.19254768484482757 0.21842343039962875 0.1930008361743 0.21718474172797014" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1930008361743 0.21718474172797014 C 0.1931641867709032 0.21608278458992602 0.1950425806351135 0.20182977525286516 0.19496104333353817 0.20396125607144083 C 0.1950425806351135 0.20182977525286516 0.19389747049817635 0.1905774482245305 0.19397928379320417 0.19160697190506204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19397928379320417 0.19160697190506204 C 0.19375308550563006 0.1904500346553831 0.1907297608640698 0.17550777869036 0.19126490434231488 0.1777237249089146 C 0.1907297608640698 0.17550777869036 0.18724861686359184 0.16395660831353095 0.18755756205426286 0.16501561728240663" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.18755756205426286 0.16501561728240663 C 0.18719977522961034 0.16421388682064275 0.18250486747825492 0.15389793765525928 0.1832641201584328 0.15539485174124026 C 0.18250486747825492 0.15389793765525928 0.17804506403660295 0.1463574646264176 0.1784465298921283 0.14705264825063474" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.34299180327413736,0.07412620935247102) rotate(0) scale(1,1) translate(-0.17175389447439587,-0.1626537797756489)"><path d="M 0.17152109466865653 0.1626113009894111 C 0.17178575049411648 0.16255090516460047 0.1753665104026093 0.16217842139822505 0.17469696457417608 0.1618865510916834 C 0.1753665104026093 0.16217842139822505 0.17996053461282852 0.16646601079926315 0.17955564460985526 0.16611374466791087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17955564460985526 0.16611374466791087 C 0.18018404413989317 0.16710839175415773 0.1881259650348453 0.180529311453758 0.18709643897031009 0.17804950970287317 C 0.1881259650348453 0.180529311453758 0.19231108391877508 0.19735652034316692 0.19190995738427777 0.19587136567852895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.19190995738427777 0.19587136567852895 C 0.19174041919769697 0.19777460157521176 0.1890059181932384 0.221924002331093 0.18987549914530813 0.21871019643872255 C 0.1890059181932384 0.221924002331093 0.18077494319395213 0.235747606382662 0.18147498595944106 0.23443703638697436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.18147498595944106 0.23443703638697436 C 0.18183879252202187 0.23324750363733543 0.18627607454453762 0.21756468451498362 0.18584066471041083 0.22016264339130717 C 0.18627607454453762 0.21756468451498362 0.18677150724050867 0.2018531037444071 0.1866999039689627 0.20326152987109172" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1866999039689627 0.20326152987109172 C 0.1863613285007264 0.20162797842055152 0.1818699832737974 0.1810154573278496 0.1826369983501272 0.18365891246460922 C 0.1818699832737974 0.1810154573278496 0.17706728344491138 0.1705301645437568 0.1774957230530049 0.17154006822997622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1774957230530049 0.17154006822997622 C 0.17717070440314825 0.1710460538028876 0.17309761355602926 0.16486783116819897 0.17359549925472495 0.16561189510491273 C 0.17309761355602926 0.16486783116819897 0.1713482276198175 0.16236125147978597 0.17152109466865653 0.1626113009894111" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></svg>

After

Width:  |  Height:  |  Size: 64 KiB

View File

@@ -0,0 +1,161 @@
id: Head
original_key:
resource: 胴体
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name:
- name: 悪タトゥ
- name: 隈取
- name: 牛柄
- name: 紋柄
- name:
- name: 秘石
- name: 蜘蛛
- name: 羽虫
- name: 虫顎
joints:
- position: [
0.325660778875035,
0.30724888638986997
]
- position: [
0.3140629577981696,
0.33507300983397786
]
- position: [
0.33725859995190033,
0.33507300983397786
]
- position: [
0.325660778875035,
0.3475866191971522
]
- position: [
0.325660778875035,
0.35283667725986706
]
- position: [
0.30971667370376876,
0.3472782997025536
]
- position: [
0.3416048840463011,
0.3472782997025536
]
- position: [
0.325660778875035,
0.3259992394014397
]
- position: [
0.3136532154470967,
0.3281139051296563
]
- position: [
0.33766834230297327,
0.3281139051296563
]
- position: [
0.3072025663111125,
0.3427805214474796
]
- position: [
0.34411899143895747,
0.3427805214474796
]
- position: [
0.325660778875035,
0.3426574535109141
]
- position: [
0.325660778875035,
0.3355073490124566
]
- position: [
0.325660778875035,
0.3224637611283464
]
- position: [
0.314297149848741,
0.34471592349770175
]
- position: [
0.3370244079013289,
0.34471592349770175
]
- position: [
0.32166017482401127,
0.3328545875292032
]
- position: [
0.3296613829260587,
0.3328545875292032
]
- position: [
0.09243455877744376,
0.05603588457046835
]
- position: [
0.05525949428892117,
0.04506909969290476
]
- position: [
0.051575282924774424,
0.04316183665218195
]
- position: [
0.05212288829087039,
0.0438867035399312
]
- position: [
0.04627101447745933,
0.04315277112042598
]
- position: [
0.04665460082490724,
0.04370812388235593
]
- position: [
0.05988007280821028,
0.04316183665218195
]
- position: [
0.05933246744211429,
0.0438867035399312
]
- position: [
0.06518434125552541,
0.04315277112042598
]
- position: [
0.06480075490807746,
0.04370812388235593
]
- position: [
0.05532887162175761,
0.04738674885130874
]
- position: [
0.05572767786649241,
0.047853210505894694
]
- position: [
0.052599384364690645,
0.0433763180130744
]
- position: [
0.05299819060942545,
0.043842779667660356
]
- position: [
0.05885597136829401,
0.0433763180130744
]
- position: [
0.05845716512355925,
0.043842779667660356
]

View File

@@ -0,0 +1,137 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.12165253681924199) rotate(0) scale(1,1) translate(-0.325660778875035,-0.34371828999698745)"><path d="M 0.34937103237182865 0.3230669305965801 C 0.34919545118021256 0.32398484922301396 0.34665779440338507 0.33621335173492267 0.3472640580724352 0.3340819541137868 C 0.34665779440338507 0.33621335173492267 0.34116110981105485 0.3503791928886143 0.342095868343227 0.34864370205021 C 0.34116110981105485 0.3503791928886143 0.33483496806903523 0.35583285897968897 0.3360469556863688 0.3549078441746387 C 0.33483496806903523 0.35583285897968897 0.3268441053726291 0.36014688267216105 0.32755201693522445 0.3597438797108132" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.32755201693522445 0.3597438797108132 C 0.3274444464439078 0.35978839982040545 0.32605353518737656 0.36032264113551254 0.32626117103942487 0.3602781210259203 C 0.32605353518737656 0.36032264113551254 0.3248527508585968 0.360233600916328 0.3250603867106451 0.3602781210259203 C 0.3248527508585968 0.360233600916328 0.3236619703235288 0.3596993596012209 0.32376954081484544 0.3597438797108132" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.32376954081484544 0.3597438797108132 C 0.32306162925225007 0.3593408767494653 0.3140626144463677 0.35398282936958847 0.3152746020637012 0.3549078441746387 C 0.3140626144463677 0.35398282936958847 0.3082909308746707 0.3469082112118057 0.3092256894068429 0.34864370205021006 C 0.3082909308746707 0.3469082112118057 0.30345123600858454 0.331950556492651 0.3040574996776347 0.3340819541137868 C 0.30345123600858454 0.331950556492651 0.3017749441866252 0.3221490119701462 0.3019505253782413 0.3230669305965801" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3019505253782413 0.3230669305965801 C 0.30204069472387474 0.3218835682529261 0.30382784102495386 0.30673695333036993 0.3030325575258424 0.3088665824727316 C 0.30382784102495386 0.30673695333036993 0.3133796124800115 0.29621891023298674 0.3114939273675788 0.29751138088824025 C 0.3133796124800115 0.29621891023298674 0.3280219207929443 0.29335693460968965 0.3256607788750349 0.29335693460968965 C 0.3280219207929443 0.29335693460968965 0.3417133154949238 0.29880385154349376 0.3398276303824911 0.29751138088824025 C 0.3417133154949238 0.29880385154349376 0.34908428372333905 0.3109962116150933 0.3482890002242276 0.30886658247273163 C 0.34908428372333905 0.3109962116150933 0.3494612017174621 0.3242502929402341 0.34937103237182865 0.3230669305965801" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="悪タトゥ">
<g id="逆十字">
<g transform="translate(0.33730967786858945,0.10039800795060091) rotate(0) scale(1,1) translate(-0.0924818676118454,-0.05334762365858489)"><path d="M 0.09243455877744376 0.0517256000876398 C 0.0924490193797323 0.05171876689185149 0.09264457488829472 0.05165501177728956 0.09260808600490612 0.051643601738180056 C 0.09264457488829472 0.05165501177728956 0.09289445365920701 0.051880763791851685 0.09287242537810694 0.05186252055695387" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09287242537810694 0.05186252055695387 C 0.09285678728522612 0.05187163874891023 0.09266616937629407 0.05203261900636394 0.09268476826353701 0.05197193886043022 C 0.09266616937629407 0.05203261900636394 0.0926462779368296 0.05291145445451597 0.09264923873119171 0.05259068230815846 C 0.0926462779368296 0.05291145445451597 0.09264923873119171 0.05609041480910055 0.09264923873119171 0.05582120461672039" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09264923873119171 0.05582120461672039 C 0.0927207009733645 0.05582120461672039 0.09361533061092175 0.05581824382235828 0.09350678563726522 0.05582120461672039 C 0.09361533061092175 0.05581824382235828 0.09399383641503829 0.05576707619713217 0.09395177841507013 0.055785675084375104 C 0.09399383641503829 0.05576707619713217 0.09401645690536758 0.05558237987692434 0.09401148163688317 0.055598017969805166" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09401148163688317 0.055598017969805166 C 0.09402879295036101 0.05562004625090523 0.09423004457729074 0.05589884622639459 0.09421921739861736 0.05586235734300599 C 0.09423004457729074 0.05589884622639459 0.09413492364615927 0.05605034517275689 0.09414140778096375 0.056035884570468354" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09414140778096375 0.056035884570468354 C 0.09414789191576822 0.05605034517275689 0.09420839021994397 0.056245900681319315 0.09421921739861736 0.056209411797930715 C 0.09420839021994397 0.056245900681319315 0.09399417032340532 0.05649577945223161 0.09401148163688317 0.05647375117113154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09401148163688317 0.05647375117113154 C 0.09400650636839875 0.056458113078250716 0.09390972041510197 0.05626749516931867 0.09395177841507013 0.056286094056561604 C 0.09390972041510197 0.05626749516931867 0.09339824066360869 0.05624760372985421 0.09350678563726522 0.05625056452421632 C 0.09339824066360869 0.05624760372985421 0.09257777648901892 0.05625056452421632 0.09264923873119171 0.05625056452421632" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09264923873119171 0.05625056452421632 C 0.09264923873119171 0.056342133931360824 0.09265219952555383 0.05747889971431166 0.09264923873119171 0.057349397409950355 C 0.09265219952555383 0.05747889971431166 0.09270336715077995 0.05785164326572513 0.09268476826353701 0.05780459217655196 C 0.09270336715077995 0.05785164326572513 0.09288806347098777 0.057923128671984694 0.09287242537810694 0.05791401048002833" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09287242537810694 0.05791401048002833 C 0.09285039709700688 0.05793225371492615 0.09257159712151752 0.05814433933791167 0.09260808600490612 0.05813292929880216 C 0.09257159712151752 0.05814433933791167 0.09242009817515523 0.05804409775355409 0.09243455877744376 0.058050930949342404" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09243455877744376 0.058050930949342404 C 0.09242009817515523 0.05805776414513072 0.09222454266659279 0.05812151925969266 0.09226103154998139 0.05813292929880216 C 0.09222454266659279 0.05812151925969266 0.0919746638956805 0.057895767245130514 0.09199669217678057 0.05791401048002833" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09199669217678057 0.05791401048002833 C 0.0920123302696614 0.05790489228807197 0.09220294817859344 0.057757541087378794 0.0921843492913505 0.057804592176551955 C 0.09220294817859344 0.057757541087378794 0.09222283961805788 0.05721989510558905 0.09221987882369578 0.057349397409950355 C 0.09222283961805788 0.05721989510558905 0.09221987882369578 0.056158995117071814 0.09221987882369578 0.05625056452421632" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09221987882369578 0.05625056452421632 C 0.092148416581523 0.05625056452421632 0.09125378694396577 0.056253525318578426 0.0913623319176223 0.05625056452421632 C 0.09125378694396577 0.056253525318578426 0.09087528113984923 0.05630469294380454 0.0909173391398174 0.056286094056561604 C 0.09087528113984923 0.05630469294380454 0.09085266064951993 0.05648938926401237 0.09085763591800435 0.05647375117113154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09085763591800435 0.05647375117113154 C 0.0908403246045265 0.056451722890031475 0.09063907297759678 0.056172922914542116 0.09064990015627017 0.056209411797930715 C 0.09063907297759678 0.056172922914542116 0.09073419390872822 0.05602142396817982 0.09072770977392376 0.056035884570468354" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09072770977392376 0.056035884570468354 C 0.0907212256391193 0.05602142396817982 0.09066072733494356 0.05582586845961739 0.09064990015627017 0.05586235734300599 C 0.09066072733494356 0.05582586845961739 0.09087494723148219 0.0555759896887051 0.09085763591800435 0.055598017969805166" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09085763591800435 0.055598017969805166 C 0.09086261118648876 0.05561365606268599 0.09095939713978556 0.05580427397161804 0.0909173391398174 0.055785675084375104 C 0.09095939713978556 0.05580427397161804 0.09147087689127884 0.055824165411082496 0.0913623319176223 0.05582120461672039 C 0.09147087689127884 0.055824165411082496 0.09229134106586857 0.05582120461672039 0.09221987882369578 0.05582120461672039" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09221987882369578 0.05582120461672039 C 0.09221987882369578 0.05555199442434023 0.09221691802933368 0.05226991016180094 0.09221987882369578 0.05259068230815846 C 0.09221691802933368 0.05226991016180094 0.09216575040410756 0.051911258714496505 0.0921843492913505 0.05197193886043022 C 0.09216575040410756 0.051911258714496505 0.09198105408389974 0.051853402364997504 0.09199669217678057 0.05186252055695387" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09199669217678057 0.05186252055695387 C 0.09201872045788063 0.05184427732205605 0.09229752043336999 0.05163219169907055 0.09226103154998139 0.051643601738180056 C 0.09229752043336999 0.05163219169907055 0.0924490193797323 0.05173243328342812 0.09243455877744376 0.05172560008763981" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3372623690341878,0.10308626886248437) rotate(0) scale(1,1) translate(-0.09500000000000001,-0.09499999999999999)"><path d="M 0.09500000000000001 0.09081735423899724 C 0.09500723030114427 0.09081081780683593 0.09510500805542549 0.09073891705306152 0.0950867636137312 0.09073891705306152 C 0.09510500805542549 0.09073891705306152 0.09522994744088165 0.09082389067115855 0.09521893330033161 0.09081735423899724" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09521893330033161 0.09081735423899724 C 0.09520913342879296 0.09082724590991095 0.09509033584861247 0.09099750791485293 0.09510133484186778 0.09093605428996186 C 0.09509033584861247 0.09099750791485293 0.09508574625955128 0.09188621443175427 0.09508694538126794 0.09155479773769008 C 0.09508574625955128 0.09188621443175427 0.09508694538126794 0.0951929093588189 0.09508694538126794 0.09491305461873206" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09508694538126794 0.09491305461873206 C 0.0951690521711474 0.09491305461873206 0.09619141638118468 0.0949118554970154 0.09607222685982147 0.09491305461873206 C 0.09619141638118468 0.0949118554970154 0.0965595476737892 0.09488766616487691 0.09651721963762638 0.09489866515813222 C 0.0965595476737892 0.09488766616487691 0.0965854085984544 0.09477126682812974 0.09658016329377532 0.09478106669966839" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09658016329377532 0.09478106669966839 C 0.0965867308557755 0.09479208084021842 0.09665897403777746 0.0949314808279631 0.09665897403777746 0.0949132363862688 C 0.09665897403777746 0.0949314808279631 0.09657359573177514 0.09500723030114425 0.09658016329377532 0.09499999999999999" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09658016329377532 0.09499999999999999 C 0.0965867308557755 0.09500723030114425 0.09665897403777746 0.09510500805542546 0.09665897403777746 0.09508676361373117 C 0.09665897403777746 0.09510500805542546 0.09657359573177514 0.0952299474408816 0.09658016329377532 0.09521893330033157" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09658016329377532 0.09521893330033157 C 0.09657491798909625 0.09520913342879292 0.09647489160146357 0.09509033584861244 0.09651721963762638 0.09510133484186775 C 0.09647489160146357 0.09509033584861244 0.09595303733845827 0.09508574625955125 0.09607222685982147 0.09508694538126791 C 0.09595303733845827 0.09508574625955125 0.09500483859138847 0.09508694538126791 0.09508694538126794 0.09508694538126791" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09508694538126794 0.09508694538126791 C 0.09508694538126794 0.09518915933611909 0.0950881445029846 0.09645365969154995 0.09508694538126794 0.09631351283948199 C 0.0950881445029846 0.09645365969154995 0.09511233383512309 0.09681653217421407 0.09510133484186778 0.09676870760608355 C 0.09511233383512309 0.09681653217421407 0.09522873317187026 0.0968972993279619 0.09521893330033161 0.09688740765704817" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09521893330033161 0.09688740765704817 C 0.09520791915978158 0.09689394408920948 0.0950685191720369 0.0969658448429839 0.0950867636137312 0.0969658448429839 C 0.0950685191720369 0.0969658448429839 0.09499276969885576 0.09688087122488687 0.09500000000000001 0.09688740765704817" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09500000000000001 0.09688740765704817 C 0.09499276969885576 0.09689394408920948 0.09489499194457454 0.0969658448429839 0.09491323638626883 0.0969658448429839 C 0.09489499194457454 0.0969658448429839 0.09477005255911838 0.09688087122488687 0.09478106669966842 0.09688740765704817" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09478106669966842 0.09688740765704817 C 0.09479086657120707 0.09687751598613445 0.09490966415138756 0.09672088303795304 0.09489866515813225 0.09676870760608355 C 0.09490966415138756 0.09672088303795304 0.09491425374044875 0.09617336598741402 0.09491305461873209 0.09631351283948199 C 0.09491425374044875 0.09617336598741402 0.09491305461873209 0.09498473142641674 0.09491305461873209 0.09508694538126791" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09491305461873209 0.09508694538126791 C 0.09483094782885262 0.09508694538126791 0.09380858361881535 0.09508814450298457 0.09392777314017856 0.09508694538126791 C 0.09380858361881535 0.09508814450298457 0.09344045232621083 0.09511233383512306 0.09348278036237365 0.09510133484186775 C 0.09344045232621083 0.09511233383512306 0.09341459140154562 0.09522873317187022 0.0934198367062247 0.09521893330033157" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0934198367062247 0.09521893330033157 C 0.09341326914422451 0.09520791915978154 0.09334102596222257 0.09506851917203687 0.09334102596222257 0.09508676361373117 C 0.09334102596222257 0.09506851917203687 0.09342640426822488 0.09499276969885573 0.0934198367062247 0.09499999999999999" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0934198367062247 0.09499999999999999 C 0.09341326914422451 0.09499276969885573 0.09334102596222257 0.09489499194457451 0.09334102596222257 0.0949132363862688 C 0.09334102596222257 0.09489499194457451 0.09342640426822488 0.09477005255911836 0.0934198367062247 0.09478106669966839" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0934198367062247 0.09478106669966839 C 0.09342508201090377 0.09479086657120704 0.09352510839853646 0.09490966415138753 0.09348278036237365 0.09489866515813222 C 0.09352510839853646 0.09490966415138753 0.09404696266154176 0.09491425374044872 0.09392777314017856 0.09491305461873206 C 0.09404696266154176 0.09491425374044872 0.09499516140861156 0.09491305461873206 0.09491305461873209 0.09491305461873206" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09491305461873209 0.09491305461873206 C 0.09491305461873209 0.09463319987864523 0.09491185549701543 0.0912233810436259 0.09491305461873209 0.09155479773769008 C 0.09491185549701543 0.0912233810436259 0.09488766616487694 0.09087460066507079 0.09489866515813225 0.09093605428996186 C 0.09488766616487694 0.09087460066507079 0.09477126682812977 0.09080746256808353 0.09478106669966842 0.09081735423899724" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09478106669966842 0.09081735423899724 C 0.09479208084021845 0.09081081780683593 0.09493148082796313 0.09073891705306152 0.09491323638626883 0.09073891705306152 C 0.09493148082796313 0.09073891705306152 0.09500723030114427 0.09082389067115855 0.09500000000000001 0.09081735423899724" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="隈取">
<g transform="translate(0.3373096778685894,0.10039800795060094) rotate(0) scale(1,1) translate(-0.019255523828003406,-0.01925552382800341)"><path d="M 0.020245469951261665 0.01782665967613745 C 0.020327965461533187 0.018183875714103938 0.020162974440990144 0.021041604017835853 0.020245469951261665 0.020684387979869365 C 0.020162974440990144 0.021041604017835853 0.019090532807460363 0.022113252131735324 0.019255523828003406 0.022113252131735324 C 0.019090532807460363 0.022113252131735324 0.018183082194473624 0.02032717194190288 0.018265577704745146 0.020684387979869368 C 0.018183082194473624 0.02032717194190288 0.018348073215016667 0.017469443638170965 0.018265577704745146 0.017826659676137453 C 0.018348073215016667 0.017469443638170965 0.019420514848546448 0.016397795524271494 0.019255523828003406 0.016397795524271494 C 0.019420514848546448 0.016397795524271494 0.020327965461533187 0.018183875714103938 0.020245469951261665 0.01782665967613745 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33730967786858945,0.10039800795060094) rotate(0) scale(1,1) translate(-0.0060848879548944836,-0.0060848879548944836)"><path d="M 0.0028898305330357795 0.002173593305716523 C 0.00280023686083725 0.0025361990622823497 0.00193076793046026 0.007171952726749856 0.0018147064666534244 0.006524862384506444 C 0.00193076793046026 0.007171952726749856 0.004542224014467796 0.01046267970620833 0.004282568098717805 0.009938677412637466 C 0.004542224014467796 0.01046267970620833 0.004984578235397941 0.013052407615250094 0.004930577455653315 0.012812889907356816" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.004930577455653315 0.012812889907356816 C 0.004820865064158738 0.012629137845212909 0.00322740997856292 0.010102938435680347 0.003614028757718389 0.010607865161629943 C 0.00322740997856292 0.010102938435680347 0.0002308022537308018 0.006050913207968868 0.00029115210578768594 0.006753769195961653 C 0.0002308022537308018 0.006050913207968868 0.0031063870686397874 0.001791911981529429 0.0028898305330357795 0.002173593305716523" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33730967786858945,0.10039800795060094) rotate(0) scale(1,1) translate(-0.0060848879548944836,-0.0060848879548944836)"><path d="M 0.00927994537675314 0.002173593305716523 C 0.009496501912357153 0.0025552746299036173 0.011818273951944402 0.007456625183954438 0.011878623804001287 0.006753769195961653 C 0.011818273951944402 0.007456625183954438 0.008169128372915058 0.01111279188757954 0.008555747152070525 0.010607865161629943 C 0.008169128372915058 0.01111279188757954 0.007129486062641105 0.012996641969500723 0.007239198454135676 0.012812889907356816" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007239198454135676 0.012812889907356816 C 0.007293199233880295 0.012573372199463537 0.008146863726821099 0.009414675119066601 0.007887207811071106 0.009938677412637466 C 0.008146863726821099 0.009414675119066601 0.010471130906942414 0.005877772042263032 0.010355069443135578 0.006524862384506444 C 0.010471130906942414 0.005877772042263032 0.009190351704554603 0.0018109875491506963 0.00927994537675314 0.002173593305716523" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="牛柄">
<g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.09500000000000003,-0.09500000000000001)"><path d="M 0.09289989285987599 0.09889623873448719 C 0.09307490178821966 0.09889623873448719 0.09535001785668737 0.09889623873448719 0.09500000000000003 0.09889623873448719 C 0.09535001785668737 0.09889623873448719 0.09727511606846774 0.09889623873448719 0.09710010714012407 0.09889623873448719" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09710010714012407 0.09889623873448719 C 0.09701731721610314 0.0992070713025022 0.09597226008577793 0.10378569745103104 0.09610662805187291 0.10262622955066733 C 0.09597226008577793 0.10378569745103104 0.09543611350491035 0.11365848887120035 0.0954876915469844 0.11280985353885166" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0954876915469844 0.11280985353885166 C 0.09544705058473571 0.11283017252850837 0.09491871807550263 0.11305368141473211 0.09500000000000003 0.11305368141473211 C 0.09491871807550263 0.11305368141473211 0.09447166749076698 0.11278953454919495 0.09451230845301567 0.11280985353885166" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09451230845301567 0.11280985353885166 C 0.09446073041094162 0.11196121820650297 0.09375900398203214 0.10146676165030362 0.09389337194812712 0.10262622955066733 C 0.09375900398203214 0.10146676165030362 0.09281710293585506 0.09858540616647218 0.09289989285987599 0.09889623873448719" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋柄">
<g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.0038943282911324682,-0.003894328291132469)"><path d="M 0.003894328291132468 0.007481199687765474 C 0.003708835993438624 0.007481199687765474 0.0028741206538163283 0.005392866141645632 0.0027813745049694062 0.005553507183654851 C 0.0028741206538163283 0.005392866141645632 0.005100028226142453 0.0057141482256640695 0.005007282077295531 0.005553507183654851 C 0.005100028226142453 0.0057141482256640695 0.003708835993438624 0.007481199687765474 0.003894328291132468 0.007481199687765474 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.0038943282911324682,-0.003894328291132469)"><path d="M 0.00020063527329663468 0.003839187312888076 C 6.497479475639698E-05 0.00371268187005665 0.0008787426950425604 0.0016160969081449976 0.0007013555285634236 0.001670329607434687 C 0.0008787426950425604 0.0016160969081449976 0.002287554583107377 0.003369133063532918 0.002329281271046276 0.003188394921411802 C 0.002287554583107377 0.003369133063532918 6.497479475639698E-05 0.00371268187005665 0.00020063527329663468 0.003839187312888076 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.0038943282911324682,-0.003894328291132469)"><path d="M 0.0054593753112186505 0.003188394921411802 C 0.005417648623279749 0.0030076567792906863 0.007264688220180615 0.0017245623067243766 0.007087301053701478 0.001670329607434687 C 0.007264688220180615 0.0017245623067243766 0.00745236083042806 0.003965692755719502 0.007588021308968296 0.003839187312888076 C 0.00745236083042806 0.003965692755719502 0.005417648623279749 0.0030076567792906863 0.0054593753112186505 0.003188394921411802 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.0038943282911324682,-0.003894328291132469)"><path d="M -0.0029856798448483343 0.0031261896335810888 C -0.0031030249865249874 0.003185979969639873 -0.004304217473130252 0.0021339261237697115 -0.004311110094040861 0.002265445165501772 C -0.004304217473130252 0.0021339261237697115 -0.0027925158731549778 0.0016196898384696382 -0.002902968393921022 0.0015479611327963618 C -0.0027925158731549778 0.0016196898384696382 -0.0031030249865249874 0.003185979969639873 -0.0029856798448483343 0.0031261896335810888 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.0038943282911324682,-0.003894328291132469)"><path d="M 0.01069162497618592 0.0015479611327963618 C 0.010802077496951964 0.0014762324271230854 0.012106659297216474 0.0023969642072338327 0.012099766676305856 0.002265445165501772 C 0.012106659297216474 0.0023969642072338327 0.010656991285436679 0.0030663992975223046 0.01077433642711334 0.0031261896335810888 C 0.010656991285436679 0.0030663992975223046 0.010802077496951964 0.0014762324271230854 0.01069162497618592 0.0015479611327963618 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="鱗">
<g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.011623954676708589,-0.011623954676708586)"><path d="M 0.013089263961831276 0.01211794141858668 C 0.01296715485473772 0.012188624450345936 0.011379736462521472 0.01296613779969776 0.011623954676708587 0.01296613779969776 C 0.011379736462521472 0.01296613779969776 0.010036536284492343 0.012047258386827422 0.0101586453915859 0.01211794141858668" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0101586453915859 0.01211794141858668 C 0.010124060639622885 0.012028750428394838 0.00967445886410369 0.010869267555900897 0.00974362836802972 0.01104764953628458 C 0.00967445886410369 0.010869267555900897 0.009294026592510525 0.00988816666379064 0.00932861134447354 0.009977357653982482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00932861134447354 0.009977357653982482 C 0.009519889955493127 0.009977357653982482 0.012006511898747761 0.009977357653982482 0.011623954676708587 0.009977357653982482 C 0.012006511898747761 0.009977357653982482 0.014110576619963221 0.009977357653982482 0.013919298008943634 0.009977357653982482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013919298008943634 0.009977357653982482 C 0.013884713256980619 0.010066548644174323 0.013435111481461426 0.011226031516668265 0.013504280985387456 0.01104764953628458 C 0.013435111481461426 0.011226031516668265 0.013054679209868261 0.01220713240877852 0.013089263961831276 0.01211794141858668" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.011623954676708589,-0.011623954676708586)"><path d="M 0.012649671176294472 0.01661139881062961 C 0.012564194801328981 0.016660876932861092 0.011453001926777609 0.017205136277407367 0.011623954676708589 0.017205136277407367 C 0.011453001926777609 0.017205136277407367 0.010512761802157218 0.01656192068839813 0.010598238177122708 0.01661139881062961" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010598238177122708 0.01661139881062961 C 0.010574028850748598 0.01654896511749532 0.010259307607885161 0.015737327106749566 0.010307726260633383 0.015862194493018143 C 0.010259307607885161 0.015737327106749566 0.009993005017769946 0.015050556482272387 0.010017214344144057 0.015112990175406675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010017214344144057 0.015112990175406675 C 0.010151109371857769 0.015112990175406675 0.01189174473213601 0.015112990175406675 0.011623954676708589 0.015112990175406675 C 0.01189174473213601 0.015112990175406675 0.013364590036986833 0.015112990175406675 0.013230695009273121 0.015112990175406675" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013230695009273121 0.015112990175406675 C 0.01320648568289901 0.015175423868540963 0.012891764440035576 0.01598706187928672 0.012940183092783797 0.015862194493018143 C 0.012891764440035576 0.01598706187928672 0.01262546184992036 0.0166738325037639 0.012649671176294472 0.01661139881062961" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.011623954676708589,-0.011623954676708586)"><path d="M 0.012341956226418708 0.020429194302982456 C 0.012282122763942865 0.020463828988544493 0.011504287751756903 0.02084481052972688 0.011623954676708589 0.02084481052972688 C 0.011504287751756903 0.02084481052972688 0.010846119664522631 0.02039455961742042 0.010905953126998474 0.020429194302982456" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010905953126998474 0.020429194302982456 C 0.010889006598536597 0.020385490717788453 0.010668701728532192 0.019817344110266425 0.010702594785455946 0.01990475128065443 C 0.010668701728532192 0.019817344110266425 0.010482289915451541 0.019336604673132397 0.010499236443913419 0.0193803082583264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010499236443913419 0.0193803082583264 C 0.010592962963313015 0.0193803082583264 0.011811407715507784 0.0193803082583264 0.011623954676708589 0.0193803082583264 C 0.011811407715507784 0.0193803082583264 0.012842399428903358 0.0193803082583264 0.012748672909503761 0.0193803082583264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.012748672909503761 0.0193803082583264 C 0.012731726381041884 0.019424011843520404 0.012511421511037481 0.019992158451042432 0.012545314567961235 0.01990475128065443 C 0.012511421511037481 0.019992158451042432 0.01232500969795683 0.02047289788817646 0.012341956226418708 0.020429194302982456" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="秘石">
<g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.04627189909873134)"><path d="M 0.056645559874915985 0.04413728977681601 C 0.056753733306996894 0.0443888558979344 0.057025759051463294 0.04662766731905056 0.057025759051463294 0.04627189909873134 C 0.057025759051463294 0.04662766731905056 0.056537386442835076 0.048658074541765045 0.056645559874915985 0.04840650842064666 C 0.056537386442835076 0.048658074541765045 0.055574697531755146 0.04929069255215202 0.05572767786649241 0.04929069255215202 C 0.055574697531755146 0.04929069255215202 0.054701622425987896 0.04815494229952827 0.054809795858068805 0.04840650842064666 C 0.054701622425987896 0.04815494229952827 0.0544295966815215 0.04591613087841212 0.0544295966815215 0.04627189909873134 C 0.0544295966815215 0.04591613087841212 0.054917969290149714 0.04388572365569762 0.054809795858068805 0.04413728977681601 C 0.054917969290149714 0.04388572365569762 0.05588065820122967 0.04325310564531066 0.05572767786649241 0.04325310564531066 C 0.05588065820122967 0.04325310564531066 0.056753733306996894 0.0443888558979344 0.056645559874915985 0.04413728977681601 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.04627189909873134)"><path d="M 0.0566018512078482 0.04423893783976436 C 0.056704873524115726 0.044478524621781874 0.05696394566170278 0.046610725975225836 0.05696394566170278 0.04627189909873134 C 0.05696394566170278 0.046610725975225836 0.05649882889158067 0.04854444713971582 0.0566018512078482 0.04830486035769831 C 0.05649882889158067 0.04854444713971582 0.05558198230959978 0.04914694048294151 0.05572767786649241 0.04914694048294151 C 0.05558198230959978 0.04914694048294151 0.054750482208869064 0.04806527357568079 0.0548535045251366 0.04830486035769831 C 0.054750482208869064 0.04806527357568079 0.054491410071282026 0.045933072222236845 0.054491410071282026 0.04627189909873134 C 0.054491410071282026 0.045933072222236845 0.05495652684140413 0.04399935105774685 0.0548535045251366 0.04423893783976436 C 0.05495652684140413 0.04399935105774685 0.05587337342338504 0.04339685771452117 0.05572767786649241 0.04339685771452117 C 0.05587337342338504 0.04339685771452117 0.056704873524115726 0.044478524621781874 0.0566018512078482 0.04423893783976436 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33687526925109945,0.10273068681786768) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.05572767786649241)"><path d="M 0.056157727363581565 0.05529762836940324 C 0.0562084091828545 0.05534831018867618 0.05633585969776763 0.055799352782673936 0.05633585969776763 0.05572767786649241 C 0.05633585969776763 0.055799352782673936 0.05610704554430863 0.0562084091828545 0.056157727363581565 0.056157727363581565 C 0.05610704554430863 0.0562084091828545 0.05565600295031088 0.05633585969776763 0.05572767786649241 0.05633585969776763 C 0.05565600295031088 0.05633585969776763 0.0552469465501303 0.05610704554430863 0.05529762836940324 0.056157727363581565 C 0.0552469465501303 0.05610704554430863 0.05511949603521717 0.05565600295031088 0.05511949603521717 0.05572767786649241 C 0.05511949603521717 0.05565600295031088 0.05534831018867618 0.0552469465501303 0.05529762836940324 0.05529762836940324 C 0.05534831018867618 0.0552469465501303 0.055799352782673936 0.05511949603521717 0.05572767786649241 0.05511949603521717 C 0.055799352782673936 0.05511949603521717 0.0562084091828545 0.05534831018867618 0.056157727363581565 0.05529762836940324 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="蜘蛛">
<g id="眼左1">
<g transform="translate(0.3337386632530487,0.10154829066489411) rotate(0) scale(1,1) translate(-0.05212288829087039,-0.0438867035399312)"><path d="M 0.05335142327173992 0.04263485117357621 C 0.05349895548795559 0.042782383389791886 0.05386995749997299 0.04409534560099038 0.05386995749997299 0.04388670353993121 C 0.05386995749997299 0.04409534560099038 0.05320389105552424 0.04528608812250187 0.05335142327173992 0.045138555906286196 C 0.05320389105552424 0.04528608812250187 0.05189092884432575 0.045657090134519296 0.05209957090538492 0.045657090134519296 C 0.05189092884432575 0.045657090134519296 0.050700186322814256 0.04499102369007052 0.05084771853902993 0.045138555906286196 C 0.050700186322814256 0.04499102369007052 0.05032918431079683 0.04367806147887204 0.05032918431079683 0.04388670353993121 C 0.05032918431079683 0.04367806147887204 0.05099525075524561 0.042487318957360534 0.05084771853902993 0.04263485117357621 C 0.05099525075524561 0.042487318957360534 0.052308212966444084 0.042116316945343124 0.05209957090538492 0.042116316945343124 C 0.052308212966444084 0.042116316945343124 0.05349895548795559 0.042782383389791886 0.05335142327173992 0.04263485117357621 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.04627189909873134)"><path d="M 0.053315128639779906 0.042694463191021687 C 0.05345563551236626 0.04283497006360804 0.05380897076190664 0.044085410264749464 0.05380897076190664 0.04388670353993121 C 0.05380897076190664 0.044085410264749464 0.05317462176719355 0.045219450761427075 0.053315128639779906 0.04507894388884072 C 0.05317462176719355 0.045219450761427075 0.05192418156605213 0.04557278601096748 0.05212288829087038 0.04557278601096748 C 0.05192418156605213 0.04557278601096748 0.05079014106937452 0.044938437016254364 0.05093064794196087 0.04507894388884072 C 0.05079014106937452 0.044938437016254364 0.05043680581983411 0.043687996815112956 0.05043680581983411 0.04388670353993121 C 0.05043680581983411 0.043687996815112956 0.05107115481454723 0.04255395631843533 0.05093064794196087 0.042694463191021687 C 0.05107115481454723 0.04255395631843533 0.052321595015688636 0.04220062106889494 0.05212288829087038 0.04220062106889494 C 0.052321595015688636 0.04220062106889494 0.05345563551236626 0.04283497006360804 0.053315128639779906 0.042694463191021687 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3331910578869527,0.10082342377714486) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.05572767786649241)"><path d="M 0.05620294877611133 0.05525240695687346 C 0.05625895998996004 0.05530841817072217 0.05639981243267693 0.05580688968476223 0.05639981243267693 0.05572767786649241 C 0.05639981243267693 0.05580688968476223 0.05614693756226262 0.05625895998996004 0.05620294877611133 0.05620294877611133 C 0.05614693756226262 0.05625895998996004 0.055648466048222586 0.05639981243267693 0.05572767786649241 0.05639981243267693 C 0.055648466048222586 0.05639981243267693 0.05519639574302475 0.05614693756226262 0.05525240695687346 0.05620294877611133 C 0.05519639574302475 0.05614693756226262 0.0550555433003079 0.055648466048222586 0.0550555433003079 0.05572767786649241 C 0.0550555433003079 0.055648466048222586 0.05530841817072217 0.05519639574302475 0.05525240695687346 0.05525240695687346 C 0.05530841817072217 0.05519639574302475 0.05580688968476223 0.0550555433003079 0.05572767786649241 0.0550555433003079 C 0.05580688968476223 0.0550555433003079 0.05625895998996004 0.05530841817072217 0.05620294877611133 0.05525240695687346 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="眼左2">
<g transform="translate(0.3282703757870855,0.10136971100731884) rotate(0) scale(1,1) translate(-0.04665460082490724,-0.04370812388235593)"><path d="M 0.04762598029268012 0.04271342702909758 C 0.04774320644104077 0.042830653177458225 0.04803799721974956 0.04387390669123233 0.04803799721974956 0.04370812388235594 C 0.04803799721974956 0.04387390669123233 0.04750875414431947 0.04482004688397493 0.04762598029268012 0.04470282073561428 C 0.04750875414431947 0.04482004688397493 0.04646550063054537 0.04511483766268374 0.046631283439421765 0.04511483766268374 C 0.04646550063054537 0.04511483766268374 0.045519360437802775 0.044585594587253634 0.04563658658616342 0.04470282073561428 C 0.045519360437802775 0.044585594587253634 0.045224569659093966 0.04354234107347955 0.045224569659093966 0.04370812388235594 C 0.045224569659093966 0.04354234107347955 0.04575381273452407 0.04259620088073693 0.04563658658616342 0.04271342702909758 C 0.04575381273452407 0.04259620088073693 0.04679706624829816 0.042301410102028134 0.046631283439421765 0.042301410102028134 C 0.04679706624829816 0.042301410102028134 0.04774320644104077 0.042830653177458225 0.04762598029268012 0.04271342702909758 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.04627189909873134)"><path d="M 0.047601931161343765 0.042760793545919405 C 0.04771357511216343 0.04287243749673907 0.04799432823474323 0.043866012271762025 0.04799432823474323 0.04370812388235594 C 0.04799432823474323 0.043866012271762025 0.0474902872105241 0.04476709816961212 0.047601931161343765 0.044655454218792454 C 0.0474902872105241 0.04476709816961212 0.046496712435501145 0.04504785129219194 0.04665460082490723 0.04504785129219194 C 0.046496712435501145 0.04504785129219194 0.04559562653765105 0.044543810267972786 0.045707270488470716 0.044655454218792454 C 0.04559562653765105 0.044543810267972786 0.04531487341507123 0.043550235492949854 0.04531487341507123 0.04370812388235594 C 0.04531487341507123 0.043550235492949854 0.045818914439290384 0.04264914959509974 0.045707270488470716 0.042760793545919405 C 0.045818914439290384 0.04264914959509974 0.046812489214313316 0.042368396472519936 0.04665460082490723 0.042368396472519936 C 0.046812489214313316 0.042368396472519936 0.04771357511216343 0.04287243749673907 0.047601931161343765 0.042760793545919405 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3278867894396376,0.1008143582453889) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.05572767786649241)"><path d="M 0.05610531862585742 0.05535003710712739 C 0.05614982401615733 0.05539454249742729 0.05626174255009131 0.055790617993053244 0.05626174255009131 0.05572767786649241 C 0.05626174255009131 0.055790617993053244 0.05606081323555751 0.05614982401615733 0.05610531862585742 0.05610531862585742 C 0.05606081323555751 0.05614982401615733 0.05566473773993157 0.05626174255009131 0.05572767786649241 0.05626174255009131 C 0.05566473773993157 0.05626174255009131 0.055305531716827484 0.05606081323555751 0.05535003710712739 0.05610531862585742 C 0.055305531716827484 0.05606081323555751 0.055193613182893536 0.05566473773993157 0.055193613182893536 0.05572767786649241 C 0.055193613182893536 0.05566473773993157 0.05539454249742729 0.055305531716827484 0.05535003710712739 0.05535003710712739 C 0.05539454249742729 0.055305531716827484 0.055790617993053244 0.055193613182893536 0.05572767786649241 0.055193613182893536 C 0.055790617993053244 0.055193613182893536 0.05614982401615733 0.05539454249742729 0.05610531862585742 0.05535003710712739 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="眼右1">
<g transform="translate(0.34094824240429256,0.10154829066489411) rotate(0) scale(1,1) translate(-0.05212288829087039,-0.0438867035399312)"><path d="M 0.05214620567635597 0.042116316945343124 C 0.05235484773741514 0.042116316945343124 0.053545590258926586 0.042782383389791886 0.053398058042710916 0.04263485117357621 C 0.053545590258926586 0.042782383389791886 0.05391659227094403 0.04409534560099038 0.05391659227094403 0.04388670353993121 C 0.05391659227094403 0.04409534560099038 0.05325052582649525 0.04528608812250187 0.053398058042710916 0.045138555906286196 C 0.05325052582649525 0.04528608812250187 0.051937563615296806 0.045657090134519296 0.05214620567635597 0.045657090134519296 C 0.051937563615296806 0.045657090134519296 0.050746821093785234 0.04499102369007052 0.05089435331000092 0.045138555906286196 C 0.050746821093785234 0.04499102369007052 0.0503758190817678 0.04367806147887204 0.0503758190817678 0.04388670353993121 C 0.0503758190817678 0.04367806147887204 0.0510418855262166 0.042487318957360534 0.05089435331000092 0.04263485117357621 C 0.0510418855262166 0.042487318957360534 0.05235484773741514 0.042116316945343124 0.05214620567635597 0.042116316945343124 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.04627189909873134)"><path d="M 0.05933246744211429 0.04220062106889494 C 0.05953117416693254 0.04220062106889494 0.06066521466361017 0.04283497006360804 0.06052470779102381 0.042694463191021687 C 0.06066521466361017 0.04283497006360804 0.06101854991315059 0.044085410264749464 0.06101854991315059 0.04388670353993121 C 0.06101854991315059 0.044085410264749464 0.06038420091843746 0.045219450761427075 0.06052470779102381 0.04507894388884072 C 0.06038420091843746 0.045219450761427075 0.059133760717296036 0.04557278601096748 0.05933246744211429 0.04557278601096748 C 0.059133760717296036 0.04557278601096748 0.05799972022061842 0.044938437016254364 0.058140227093204766 0.04507894388884072 C 0.05799972022061842 0.044938437016254364 0.0576463849710781 0.043687996815112956 0.0576463849710781 0.04388670353993121 C 0.0576463849710781 0.043687996815112956 0.058280733965791115 0.04255395631843533 0.058140227093204766 0.042694463191021687 C 0.058280733965791115 0.04255395631843533 0.05953117416693254 0.04220062106889494 0.05933246744211429 0.04220062106889494 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34149584777038855,0.10082342377714486) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.05572767786649241)"><path d="M 0.05572767786649235 0.0550555433003079 C 0.05580688968476217 0.0550555433003079 0.05625895998995991 0.05530841817072217 0.056202948776111206 0.05525240695687346 C 0.05625895998995991 0.05530841817072217 0.05639981243267678 0.05580688968476223 0.05639981243267678 0.05572767786649241 C 0.05639981243267678 0.05580688968476223 0.0561469375622625 0.05625895998996004 0.056202948776111206 0.05620294877611133 C 0.0561469375622625 0.05625895998996004 0.05564846604822254 0.05639981243267693 0.05572767786649235 0.05639981243267693 C 0.05564846604822254 0.05639981243267693 0.05519639574302468 0.05614693756226262 0.05525240695687339 0.05620294877611133 C 0.05519639574302468 0.05614693756226262 0.05505554330030782 0.055648466048222586 0.05505554330030782 0.05572767786649241 C 0.05505554330030782 0.055648466048222586 0.0553084181707221 0.05519639574302475 0.05525240695687339 0.05525240695687346 C 0.0553084181707221 0.05519639574302475 0.05580688968476217 0.0550555433003079 0.05572767786649235 0.0550555433003079 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="眼右2">
<g transform="translate(0.34641652987025573,0.10136971100731884) rotate(0) scale(1,1) translate(-0.04665460082490724,-0.04370812388235593)"><path d="M 0.04667791821039269 0.042301410102028134 C 0.04684370101926908 0.042301410102028134 0.04778984121201171 0.042830653177458225 0.04767261506365106 0.04271342702909758 C 0.04778984121201171 0.042830653177458225 0.04808463199072055 0.04387390669123233 0.04808463199072055 0.04370812388235594 C 0.04808463199072055 0.04387390669123233 0.0475553889152904 0.04482004688397493 0.04767261506365106 0.04470282073561428 C 0.0475553889152904 0.04482004688397493 0.046512135401516295 0.04511483766268374 0.04667791821039269 0.04511483766268374 C 0.046512135401516295 0.04511483766268374 0.04556599520877367 0.044585594587253634 0.04568322135713432 0.04470282073561428 C 0.04556599520877367 0.044585594587253634 0.04527120443006494 0.04354234107347955 0.04527120443006494 0.04370812388235594 C 0.04527120443006494 0.04354234107347955 0.045800447505494966 0.04259620088073693 0.04568322135713432 0.04271342702909758 C 0.045800447505494966 0.04259620088073693 0.04684370101926908 0.042301410102028134 0.04667791821039269 0.042301410102028134 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.04627189909873134)"><path d="M 0.06480075490807746 0.042368396472519936 C 0.06495864329748356 0.042368396472519936 0.0658597291953337 0.04287243749673907 0.06574808524451403 0.042760793545919405 C 0.0658597291953337 0.04287243749673907 0.06614048231791347 0.043866012271762025 0.06614048231791347 0.04370812388235594 C 0.06614048231791347 0.043866012271762025 0.06563644129369436 0.04476709816961212 0.06574808524451403 0.044655454218792454 C 0.06563644129369436 0.04476709816961212 0.06464286651867136 0.04504785129219194 0.06480075490807746 0.04504785129219194 C 0.06464286651867136 0.04504785129219194 0.06374178062082123 0.044543810267972786 0.0638534245716409 0.044655454218792454 C 0.06374178062082123 0.044543810267972786 0.06346102749824145 0.043550235492949854 0.06346102749824145 0.04370812388235594 C 0.06346102749824145 0.043550235492949854 0.06396506852246056 0.04264914959509974 0.0638534245716409 0.042760793545919405 C 0.06396506852246056 0.04264914959509974 0.06495864329748356 0.042368396472519936 0.06480075490807746 0.042368396472519936 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3468001162177037,0.1008143582453889) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.05572767786649241)"><path d="M 0.05572767786649235 0.055193613182893536 C 0.05579061799305319 0.055193613182893536 0.05614982401615723 0.05539454249742729 0.056105318625857326 0.05535003710712739 C 0.05614982401615723 0.05539454249742729 0.0562617425500912 0.055790617993053244 0.0562617425500912 0.05572767786649241 C 0.0562617425500912 0.055790617993053244 0.05606081323555742 0.05614982401615733 0.056105318625857326 0.05610531862585742 C 0.05606081323555742 0.05614982401615733 0.05566473773993152 0.05626174255009131 0.05572767786649235 0.05626174255009131 C 0.05566473773993152 0.05626174255009131 0.05530553171682736 0.05606081323555751 0.05535003710712727 0.05610531862585742 C 0.05530553171682736 0.05606081323555751 0.0551936131828934 0.05566473773993157 0.0551936131828934 0.05572767786649241 C 0.0551936131828934 0.05566473773993157 0.05539454249742718 0.055305531716827484 0.05535003710712727 0.05535003710712739 C 0.05539454249742718 0.055305531716827484 0.05579061799305319 0.055193613182893536 0.05572767786649235 0.055193613182893536 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="羽虫">
<g id="眼中">
<g transform="translate(0.3373434528286707,0.10551479763085761) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.04793227607625286)"><path d="M 0.05649568545321327 0.047164268489532 C 0.05658619601530877 0.047254779051627505 0.056813804611638465 0.04806027734070634 0.056813804611638465 0.04793227607625286 C 0.056813804611638465 0.04806027734070634 0.056405174891117765 0.04879079422506921 0.05649568545321327 0.04870028366297371 C 0.056405174891117765 0.04879079422506921 0.05559967660203893 0.049018402821398924 0.05572767786649241 0.049018402821398924 C 0.05559967660203893 0.049018402821398924 0.05486915971767605 0.048609773100878204 0.054959670279771555 0.04870028366297371 C 0.05486915971767605 0.048609773100878204 0.054641551121346346 0.047804274811799385 0.054641551121346346 0.04793227607625286 C 0.054641551121346346 0.047804274811799385 0.05505018084186706 0.047073757927436496 0.054959670279771555 0.047164268489532 C 0.05505018084186706 0.047073757927436496 0.055855679130945884 0.0468461493311068 0.05572767786649241 0.0468461493311068 C 0.055855679130945884 0.0468461493311068 0.05658619601530877 0.047254779051627505 0.05649568545321327 0.047164268489532 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.04627189909873134)"><path d="M 0.05645911366336942 0.04712177470901768 C 0.056545314198698474 0.04720797524434674 0.05676208429044104 0.04797511647204086 0.05676208429044104 0.047853210505894694 C 0.05676208429044104 0.04797511647204086 0.05637291312804037 0.048670846838100745 0.05645911366336942 0.04858464630277169 C 0.05637291312804037 0.048670846838100745 0.05560577190034624 0.04888761692984332 0.05572767786649241 0.04888761692984332 C 0.05560577190034624 0.04888761692984332 0.05491004153428636 0.04849844576744264 0.05499624206961541 0.04858464630277169 C 0.05491004153428636 0.04849844576744264 0.05469327144254378 0.047731304539748526 0.05469327144254378 0.047853210505894694 C 0.05469327144254378 0.047731304539748526 0.055082442604944465 0.04703557417368863 0.05499624206961541 0.04712177470901768 C 0.055082442604944465 0.04703557417368863 0.05584958383263858 0.04681880408194606 0.05572767786649241 0.04681880408194606 C 0.05584958383263858 0.04681880408194606 0.056545314198698474 0.04720797524434674 0.05645911366336942 0.04712177470901768 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33694464658393586,0.10504833597627164) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.05572767786649241)"><path d="M 0.056019255111657396 0.05543610062132741 C 0.05605361781954004 0.05547046332921005 0.05614003036108414 0.05577627407401991 0.05614003036108414 0.05572767786649241 C 0.05614003036108414 0.05577627407401991 0.05598489240377475 0.05605361781954004 0.056019255111657396 0.056019255111657396 C 0.05598489240377475 0.05605361781954004 0.05567908165896491 0.05614003036108414 0.05572767786649241 0.05614003036108414 C 0.05567908165896491 0.05614003036108414 0.055401737913444764 0.05598489240377475 0.05543610062132741 0.056019255111657396 C 0.055401737913444764 0.05598489240377475 0.05531532537190069 0.05567908165896491 0.05531532537190069 0.05572767786649241 C 0.05531532537190069 0.05567908165896491 0.05547046332921005 0.055401737913444764 0.05543610062132741 0.05543610062132741 C 0.05547046332921005 0.055401737913444764 0.05577627407401991 0.05531532537190069 0.05572767786649241 0.05531532537190069 C 0.05577627407401991 0.05531532537190069 0.05605361781954004 0.05547046332921005 0.056019255111657396 0.05543610062132741 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="眼左">
<g transform="translate(0.3346139655716037,0.10150436679262326) rotate(0) scale(1,1) translate(-0.05286171624657209,-0.043721323696106804)"><path d="M 0.05362972383329295 0.04295331610938594 C 0.05372023439538846 0.04304382667148145 0.05394784299171815 0.04384932496056028 0.05394784299171815 0.043721323696106804 C 0.05394784299171815 0.04384932496056028 0.05353921327119745 0.044579841844923154 0.05362972383329295 0.04448933128282765 C 0.05353921327119745 0.044579841844923154 0.05273371498211862 0.044807450441252866 0.05286171624657209 0.044807450441252866 C 0.05273371498211862 0.044807450441252866 0.05200319809775574 0.044398820720732146 0.052093708659851246 0.04448933128282765 C 0.05200319809775574 0.044398820720732146 0.05177558950142603 0.04359332243165333 0.05177558950142603 0.043721323696106804 C 0.05177558950142603 0.04359332243165333 0.05218421922194675 0.04286280554729044 0.052093708659851246 0.04295331610938594 C 0.05218421922194675 0.04286280554729044 0.05298971751102557 0.04263519695096074 0.05286171624657209 0.04263519695096074 C 0.05298971751102557 0.04263519695096074 0.05372023439538846 0.04304382667148145 0.05362972383329295 0.04295331610938594 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.04627189909873134)"><path d="M 0.05372962640630245 0.043111343870783345 C 0.053815826941631506 0.0431975444061124 0.05403259703337407 0.043964685633806525 0.05403259703337407 0.043842779667660356 C 0.05403259703337407 0.043964685633806525 0.0536434258709734 0.04466041599986641 0.05372962640630245 0.04457421546453735 C 0.0536434258709734 0.04466041599986641 0.05287628464327927 0.044877186091608984 0.05299819060942544 0.044877186091608984 C 0.05287628464327927 0.044877186091608984 0.05218055427721939 0.0444880149292083 0.052266754812548444 0.04457421546453735 C 0.05218055427721939 0.0444880149292083 0.05196378418547681 0.04372087370151419 0.05196378418547681 0.043842779667660356 C 0.05196378418547681 0.04372087370151419 0.0523529553478775 0.04302514333545429 0.052266754812548444 0.043111343870783345 C 0.0523529553478775 0.04302514333545429 0.05312009657557161 0.04280837324371172 0.05299819060942544 0.04280837324371172 C 0.05312009657557161 0.04280837324371172 0.053815826941631506 0.0431975444061124 0.05372962640630245 0.043111343870783345 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3342151593268689,0.10103790513803731) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.05572767786649241)"><path d="M 0.056019255111657396 0.05543610062132741 C 0.05605361781954004 0.05547046332921005 0.05614003036108414 0.05577627407401991 0.05614003036108414 0.05572767786649241 C 0.05614003036108414 0.05577627407401991 0.05598489240377475 0.05605361781954004 0.056019255111657396 0.056019255111657396 C 0.05598489240377475 0.05605361781954004 0.05567908165896491 0.05614003036108414 0.05572767786649241 0.05614003036108414 C 0.05567908165896491 0.05614003036108414 0.055401737913444764 0.05598489240377475 0.05543610062132741 0.056019255111657396 C 0.055401737913444764 0.05598489240377475 0.05531532537190069 0.05567908165896491 0.05531532537190069 0.05572767786649241 C 0.05531532537190069 0.05567908165896491 0.05547046332921005 0.055401737913444764 0.05543610062132741 0.05543610062132741 C 0.05547046332921005 0.055401737913444764 0.05577627407401991 0.05531532537190069 0.05572767786649241 0.05531532537190069 C 0.05577627407401991 0.05531532537190069 0.05605361781954004 0.05547046332921005 0.056019255111657396 0.05543610062132741 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="眼右">
<g transform="translate(0.3400729400857375,0.10150436679262326) rotate(0) scale(1,1) translate(-0.05286171624657209,-0.043721323696106804)"><path d="M 0.05362972383329295 0.04295331610938594 C 0.05372023439538846 0.04304382667148145 0.05394784299171815 0.04384932496056028 0.05394784299171815 0.043721323696106804 C 0.05394784299171815 0.04384932496056028 0.05353921327119745 0.044579841844923154 0.05362972383329295 0.04448933128282765 C 0.05353921327119745 0.044579841844923154 0.05273371498211862 0.044807450441252866 0.05286171624657209 0.044807450441252866 C 0.05273371498211862 0.044807450441252866 0.05200319809775574 0.044398820720732146 0.052093708659851246 0.04448933128282765 C 0.05200319809775574 0.044398820720732146 0.05177558950142603 0.04359332243165333 0.05177558950142603 0.043721323696106804 C 0.05177558950142603 0.04359332243165333 0.05218421922194675 0.04286280554729044 0.052093708659851246 0.04295331610938594 C 0.05218421922194675 0.04286280554729044 0.05298971751102557 0.04263519695096074 0.05286171624657209 0.04263519695096074 C 0.05298971751102557 0.04263519695096074 0.05372023439538846 0.04304382667148145 0.05362972383329295 0.04295331610938594 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.10393348622369425) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.04627189909873134)"><path d="M 0.05845716512355925 0.04280837324371172 C 0.05857907108970542 0.04280837324371172 0.05927480145576538 0.0431975444061124 0.05918860092043632 0.043111343870783345 C 0.05927480145576538 0.0431975444061124 0.05949157154750795 0.043964685633806525 0.05949157154750795 0.043842779667660356 C 0.05949157154750795 0.043964685633806525 0.05910240038510726 0.04466041599986641 0.05918860092043632 0.04457421546453735 C 0.05910240038510726 0.04466041599986641 0.05833525915741308 0.044877186091608984 0.05845716512355925 0.044877186091608984 C 0.05833525915741308 0.044877186091608984 0.05763952879135325 0.0444880149292083 0.057725729326682296 0.04457421546453735 C 0.05763952879135325 0.0444880149292083 0.057422758699610665 0.04372087370151419 0.057422758699610665 0.043842779667660356 C 0.057422758699610665 0.04372087370151419 0.05781192986201134 0.04302514333545429 0.057725729326682296 0.043111343870783345 C 0.05781192986201134 0.04302514333545429 0.05857907108970542 0.04280837324371172 0.05845716512355925 0.04280837324371172 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3404717463304723,0.10103790513803731) rotate(0) scale(1,1) translate(-0.05572767786649241,-0.05572767786649241)"><path d="M 0.05572767786649235 0.05531532537190069 C 0.05577627407401985 0.05531532537190069 0.05605361781953993 0.05547046332921005 0.056019255111657285 0.05543610062132741 C 0.05605361781953993 0.05547046332921005 0.05614003036108406 0.05577627407401991 0.05614003036108406 0.05572767786649241 C 0.05614003036108406 0.05577627407401991 0.05598489240377464 0.05605361781954004 0.056019255111657285 0.056019255111657396 C 0.05598489240377464 0.05605361781954004 0.05567908165896485 0.05614003036108414 0.05572767786649235 0.05614003036108414 C 0.05567908165896485 0.05614003036108414 0.05540173791344466 0.05598489240377475 0.05543610062132731 0.056019255111657396 C 0.05540173791344466 0.05598489240377475 0.05531532537190054 0.05567908165896491 0.05531532537190054 0.05572767786649241 C 0.05531532537190054 0.05567908165896491 0.05547046332920996 0.055401737913444764 0.05543610062132731 0.05543610062132741 C 0.05547046332920996 0.055401737913444764 0.05577627407401985 0.05531532537190069 0.05572767786649235 0.05531532537190069 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="虫顎">
<g transform="translate(0.3373434528286707,0.1307709240821216) rotate(0) scale(1,1) translate(-0.325660778875035,-0.34371828999698745)"><path d="M 0.31055718255819886 0.3426944302126032 C 0.3104803733677129 0.3425664720049626 0.3095800608708852 0.34086253046183873 0.30963547227236743 0.34115893172091616 C 0.3095800608708852 0.34086253046183873 0.3099786685172359 0.3387067226879492 0.3098922457404123 0.33913761510367435 C 0.3099786685172359 0.3387067226879492 0.31073757058207024 0.33572577336792614 0.3106725455942504 0.33598822273221446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3106725455942504 0.33598822273221446 C 0.310751497694058 0.3363354922365746 0.3117524637481689 0.34063344780611937 0.31161997079194215 0.3401554567845365 C 0.3117524637481689 0.34063344780611937 0.31231600192539066 0.34185483650843124 0.31226246106897154 0.3417241149912086" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.31226246106897154 0.3417241149912086 C 0.31239417076953657 0.34184240040352476 0.3140646211544706 0.3430145203526511 0.31384297747575224 0.34314353993900243 C 0.3140646211544706 0.3430145203526511 0.3150121191917452 0.33992857495632506 0.3149221852135919 0.34017587995499254" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3149221852135919 0.34017587995499254 C 0.3150191083066739 0.3405397277001023 0.3162692918383364 0.34499155968807077 0.3160852623305764 0.34454205289630996 C 0.3162692918383364 0.34499155968807077 0.3172176457213905 0.3456556205027735 0.3171305393067125 0.34556996145612245" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3171305393067125 0.34556996145612245 C 0.31732096702945634 0.3456802178701616 0.31996662541010645 0.3471857461401948 0.3194156719796387 0.34689303842459257 C 0.31996662541010645 0.3471857461401948 0.3241025061800491 0.3492649053449125 0.3237419804723252 0.3490824540433494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3237419804723252 0.3490824540433494 C 0.3239018803392177 0.34898365136408793 0.3259805786088199 0.3478968218922117 0.325660778875035 0.3478968218922117 C 0.3259805786088199 0.3478968218922117 0.3277394771446372 0.3491812567226109 0.3275795772777447 0.3490824540433494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3275795772777447 0.3490824540433494 C 0.3279401029854686 0.34890000274178634 0.3324568392008989 0.3466003307089903 0.3319058857704312 0.34689303842459257 C 0.3324568392008989 0.3466003307089903 0.3343814461661013 0.3454597050420833 0.33419101844335747 0.34556996145612245" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.33419101844335747 0.34556996145612245 C 0.3342781248580355 0.3454843024094714 0.3354203249272536 0.34409254610454915 0.33523629541949357 0.34454205289630996 C 0.3354203249272536 0.34409254610454915 0.33649629562956007 0.3398120322098828 0.33639937253647806 0.3401758799549926" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.33639937253647806 0.3401758799549926 C 0.3364893065146314 0.3404231849536601 0.33770022395303606 0.34327255952535385 0.3374785802743177 0.34314353993900254 C 0.33770022395303606 0.34327255952535385 0.33919080638166343 0.34160582957889246 0.3390590966810984 0.34172411499120864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3390590966810984 0.34172411499120864 C 0.3391126375375175 0.341593393473986 0.33983407991435455 0.33967746576295377 0.3397015869581278 0.3401554567845366 C 0.33983407991435455 0.33967746576295377 0.3407279642556272 0.33564095322785437 0.34064901215581955 0.3359882227322145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.34064901215581955 0.3359882227322145 C 0.3407140371436394 0.33625067209650283 0.3415157347864812 0.33956850751939954 0.3414293120096576 0.3391376151036744 C 0.3415157347864812 0.33956850751939954 0.3416306740762203 0.34145533297999364 0.34168608547770246 0.3411589317209162 C 0.3416306740762203 0.34145533297999364 0.3406875660013851 0.3428223884202438 0.3407643751918711 0.3426944302126032" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.3407643751918711 0.3426944302126032 C 0.3403814271593195 0.34305822123416424 0.335067968946532 0.3478390635590141 0.33616899880125256 0.3470599224713356 C 0.335067968946532 0.3478390635590141 0.3268339351130555 0.35245947333086275 0.32755201693522445 0.35204412326474527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.32755201693522445 0.35204412326474527 C 0.3274444464439078 0.35208864337433754 0.32605353518737656 0.35262288468944464 0.32626117103942487 0.35257836457985237 C 0.32605353518737656 0.35262288468944464 0.3248527508585968 0.3525338444702601 0.3250603867106451 0.35257836457985237 C 0.3248527508585968 0.3525338444702601 0.3236619703235288 0.351999603155153 0.32376954081484544 0.35204412326474527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.32376954081484544 0.35204412326474527 C 0.3230514589926764 0.3516287731986278 0.3140515290940968 0.3462807813836571 0.31515255894881733 0.3470599224713356 C 0.3140515290940968 0.3462807813836571 0.3101742345256473 0.3423306391910422 0.31055718255819886 0.3426944302126032" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 62 KiB

View File

@@ -0,0 +1,621 @@
id: Leg
original_key:
resource: 脚左
morph_x: 1
morph_y: 2
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
fields:
- name:
- name:
- name: 獣性
- name: 淫タトゥ
- name: 悪タトゥ
- name: 虫性
- name: 竜性
- name: 紋柄
- name: 傷X1
- name: 傷X2
- name: 傷I1
- name: 傷I2
- name: 傷I3
- name: 傷I4
- name: 傷I5
- name: ハイライト1
- name: ハイライト2
- name: パンスト
- name: ソックス
- name: ブーツ
- name: アーマ
- name: 脚輪上
- name: 脚輪下
joints:
- position: [
0.09572348526559771,
0.14584073717397594
]
- position: [
0.09180138873031214,
0.07753166928063453
]
- position: [
0.095950093739533,
0.1282337929525404
]
- position: [
0.09304121806775453,
0.06001525132547012
]
- position: [
0.09500000000000001,
0.051903285658359895
]
- position: [
0.0003600566152769462,
0.008091326850281601
]
- position: [
-0.0010159507277685861,
0.008091326850281605
]
- position: [
0.00695227749744998,
0.01602013802246163
]
- position: [
0.005576270154404435,
0.01602013802246163
]
- position: [
0.0007673793179061897,
0.020157095615202396
]
- position: [
-0.00035613023672210277,
0.020156893922954725
]
- position: [
0.006447281920615491,
0.01602054140695697
]
- position: [
0.005323772365987196,
0.0160203397147093
]
- position: [
0.09896479607036231,
0.08834479602587608
]
- position: [
0.08181426158199984,
0.04458007775504181
]
- position: [
0.08198718301006389,
0.03739120140540819
]
- position: [
0.0804955796309858,
0.06499288538669921
]
- position: [
0.0802251061367735,
0.05940884107393683
]
- position: [
0.08133310816358887,
0.06680171782391923
]
- position: [
0.08058861431442073,
0.060399963956123515
]
- position: [
0.081059078832612,
0.0663959983987484
]
- position: [
0.08088874424859004,
0.059557125621039514
]
- position: [
0.08067472344304345,
0.06729997090308382
]
- position: [
0.08096502484531118,
0.0587476829923761
]
- position: [
0.08036153380006815,
0.06315127802018108
]
- position: [
0.08078699404980934,
0.05661589652284246
]
- position: [
0.024563813342889238,
-0.000748995544530239
]
- position: [
0.0917286927977138,
0.07156980844252359
]
- position: [
0.03534573953313161,
0.010854787735141954
]
- position: [
0.04304857912405821,
0.010331312304009523
]
- position: [
0.08441385442536176,
0.059006652541785706
]
- position: [
0.1019435738861305,
0.058455118226636835
]
- position: [
0.08392277142829428,
0.05048617365165566
]
- position: [
0.10142588326003785,
0.04974272871929949
]
- position: [
0.09180784840005708,
0.1017724289653407
]
- position: [
0.09872524439760137,
0.1017724289653407
]
- position: [
0.08299371340221416,
0.0832879739928487
]
- position: [
0.10365878103963244,
0.0823696325090997
]
- position: [
0.09304035790468818,
0.05997881404589095
]
- position: [
0.09340355599633918,
0.06675792530859648
]
- position: [
0.09283969503324285,
0.05610279015554212
]
- position: [
0.09382982374027467,
0.07362819497827139
]
- position: [
0.09414673938481867,
0.08049115620268428
]
- position: [
0.09448487049961683,
0.0872584241615765
]
- position: [
0.09478433811083238,
0.09433546139180239
]
- position: [
0.0950753267122646,
0.1012575176720479
]
- position: [
0.09531653957260745,
0.10850845202935794
]
- position: [
0.0954562702122131,
0.11569163749944615
]
- position: [
0.09564142495106887,
0.12268927287047339
]
- position: [
0.09578446068574702,
0.12959206614650406
]
- position: [
0.03819884600474942,
0.02865806331982813
]
- position: [
0.026157934496867506,
0.028868238211993132
]
- position: [
0.03826043535428203,
0.02876262128707293
]
- position: [
0.026217689677903257,
0.02876262128707293
]
- position: [
0.03832019053531778,
0.02886823821199313
]
- position: [
0.02627927902743587,
0.02865806331982813
]
- position: [
0.01932512644641132,
0.019971505554291336
]
- position: [
0.020510289415672737,
0.019971505554291336
]
- position: [
0.09465687167302204,
0.07854886947781806
]
- position: [
0.1542823992713851,
0.1274455748277361
]
- position: [
0.15614389227025793,
0.2019992953897198
]
- position: [
0.14220480695539653,
0.14282133287054954
]
- position: [
0.1648850430429757,
0.14294734678876592
]
- position: [
0.142267453732897,
0.15746574945034
]
- position: [
0.1645318009006371,
0.15724599368460468
]
- position: [
0.007158385921593912,
0.011152769902399138
]
- position: [
0.01969483214462997,
0.011152769902399133
]
- position: [
-0.0028058003749752954,
0.011152769902399138
]
- position: [
0.025111340179773567,
0.011152769902399133
]
- position: [
0.0025882837889024905,
0.007758324996586715
]
- position: [
0.0062254902117855155,
0.007758324996586708
]
- position: [
0.009291159781387833,
0.007758324996586708
]
- position: [
0.008688127712691002,
0.011152769902399134
]
- position: [
0.016423451712281337,
0.011152769902399133
]
- position: [
0.0025399571685848703,
0.011152769902399134
]
- position: [
0.019765582636213398,
0.011152769902399133
]
- position: [
0.004568270724333347,
0.007758324996586713
]
- position: [
0.0076351091978167805,
0.0077583249965867095
]
- position: [
0.007881540795356558,
0.00775832499658671
]
- position: [
0.09889818174224159,
0.13291974884908517
]
- position: [
0.101553155130431,
0.07157397696702322
]
- position: [
0.09951703359658895,
0.12145348802147979
]
- position: [
0.10008718630891096,
0.05963219087296709
]
- position: [
-0.00014298845402748668,
0.006590776960973318
]
- position: [
-0.001560276017364385,
0.006590776960973321
]
- position: [
0.007034837938032713,
0.01602013802246163
]
- position: [
0.005617550374695801,
0.01602013802246163
]
- position: [
0.0006707836330272911,
0.018641005015724896
]
- position: [
-0.0004527259216010013,
0.018640803583256836
]
- position: [
0.006447281920615491,
0.016020540887397745
]
- position: [
0.005323772365987196,
0.01602033945492969
]
- position: [
0.09069448251610542,
0.08625248223586819
]
- position: [
0.07853776134048863,
0.04513833780498477
]
- position: [
0.07396163894800083,
0.0383992744357367
]
- position: [
0.08056803669871752,
0.06424678466722064
]
- position: [
0.07567515331844495,
0.05897725819278058
]
- position: [
0.07979414570754546,
0.06597130290062336
]
- position: [
0.07634402938229136,
0.05993202706061605
]
- position: [
0.08013021501408304,
0.06558167178057928
]
- position: [
0.07669183929664233,
0.05915974166023682
]
- position: [
0.08046951813960133,
0.06641720176798635
]
- position: [
0.07746828218765374,
0.058402807707866294
]
- position: [
0.08063772970232172,
0.06251456482110727
]
- position: [
0.07741739357677672,
0.05639689568823754
]
- position: [
0.019118089093797377,
0.0010708763421778613
]
- position: [
0.10144247482989083,
0.06656991494722132
]
- position: [
0.02847174849806258,
0.010036318043525498
]
- position: [
0.03491440353191365,
0.009497347739631548
]
- position: [
0.0785443414351116,
0.05845831204631579
]
- position: [
0.09607406089588034,
0.05789045231543852
]
- position: [
0.07824468452926887,
0.051025426858271244
]
- position: [
0.09473161411567477,
0.049769345014958645
]
- position: [
0.08503508521376832,
0.10248995545200801
]
- position: [
0.09195248121131261,
0.10248995545200801
]
- position: [
0.07922427395252933,
0.08365492749572716
]
- position: [
0.09778926804938229,
0.08251283622066229
]
- position: [
0.08578345762692724,
0.05954244412602916
]
- position: [
0.08617036365127685,
0.0665158753724613
]
- position: [
0.08552775639170887,
0.0556896836345869
]
- position: [
0.08669177181531552,
0.07352519729552756
]
- position: [
0.08707582544221215,
0.08030749879597321
]
- position: [
0.08743918931356758,
0.08719649236096991
]
- position: [
0.08795450949782738,
0.09438300176079249
]
- position: [
0.08827490777793019,
0.10130009948010853
]
- position: [
0.08862356496443537,
0.10817450020413664
]
- position: [
0.08879802098239738,
0.11470410226528217
]
- position: [
0.08906709949644548,
0.12126504355477227
]
- position: [
0.0891109212235268,
0.1280032382582753
]
- position: [
0.03813544124743244,
0.02844553595547709
]
- position: [
0.02610003168633562,
0.02887826217708438
]
- position: [
0.03826043535428203,
0.028659718626693947
]
- position: [
0.026217689677903257,
0.028659718626693947
]
- position: [
0.03819884600474942,
0.028552065743618703
]
- position: [
0.026157934496867506,
0.028768461812591788
]
- position: [
0.03832019053531778,
0.028768461812591784
]
- position: [
0.02627927902743587,
0.028552065743618703
]
- position: [
0.018026089058073253,
0.02000208325255054
]
- position: [
0.01921053005807583,
0.019959497358315197
]
- position: [
0.09460088181140028,
0.07857897860365469
]
- position: [
0.14729489882784708,
0.1266392523260577
]
- position: [
0.1479337290178143,
0.20339976301667612
]
- position: [
0.13753005158872503,
0.1424701328069384
]
- position: [
0.1605387407175896,
0.14259987673713398
]
- position: [
0.13771422962793572,
0.15754802411749066
]
- position: [
0.16094397740411467,
0.15732176358108957
]
- position: [
0.007881540795356558,
0.007758324996586711
]

View File

@@ -0,0 +1,846 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.32729541619828606,0.344001542752038) rotate(0) scale(1,1) translate(-0.09500000000000001,-0.051903285658359895)"><path d="M 0.10482971621904846 0.05141645319459212 C 0.10477410592172341 0.05411332305721646 0.10395965180586761 0.09079246380791509 0.1041623926511479 0.08377889154608413 C 0.10395965180586761 0.09079246380791509 0.10224969552772965 0.13989602273577018 0.1023968260756849 0.13557932033656356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1023968260756849 0.13557932033656356 C 0.1025654802259068 0.1359444132279224 0.1044533039974732 0.14076520571371148 0.10442067587834758 0.13996043503286965 C 0.1044533039974732 0.14076520571371148 0.102652337474096 0.14567624629614848 0.10278836350519227 0.1452365685066655" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10278836350519227 0.1452365685066655 C 0.10271273709061667 0.14576236470639287 0.10130455568130424 0.1522808014943256 0.10188084653028506 0.15154612290339387 C 0.10130455568130424 0.1522808014943256 0.09486425199072 0.15406960444328488 0.09587287331742234 0.15405271159784634 C 0.09486425199072 0.15406960444328488 0.0891607016974565 0.15109032457119687 0.08977739060985712 0.15174883704865638 C 0.0891607016974565 0.15109032457119687 0.08836387434851135 0.14568403893663834 0.08847260636861487 0.14615056186833203" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08847260636861487 0.14615056186833203 C 0.08835644758944344 0.1457487398001761 0.08716459727145494 0.14055487207480796 0.08707870101855775 0.14132869705046103 C 0.08716459727145494 0.14055487207480796 0.08970541643544973 0.13649265925299806 0.08950336140338111 0.1368646621604952" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08950336140338111 0.1368646621604952 C 0.08950969932581025 0.13533894533321447 0.0893381921662907 0.11558603460190489 0.08957941647253087 0.1185560602331265 C 0.0893381921662907 0.11558603460190489 0.08636110749982968 0.099780045781895 0.08660866972849901 0.10122435458583588" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08660866972849901 0.10122435458583588 C 0.08611779804348553 0.09907104553003296 0.08057071002935152 0.07129023878642984 0.0807182095083373 0.07538464591620071 C 0.08057071002935152 0.07129023878642984 0.08518204818669732 0.050150370954617544 0.08483867598066963 0.05209146902858548" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08483867598066963 0.05209146902858548 C 0.08497033805658655 0.05191021946637767 0.08682993453166446 0.04944185789004818 0.08641862089167264 0.049916474282091804 C 0.08682993453166446 0.04944185789004818 0.090446091099079 0.045985545811210254 0.08977443966057141 0.04639607232406196 C 0.090446091099079 0.045985545811210254 0.09526975016319951 0.04496343675110913 0.09447843815376368 0.04499015612787136 C 0.09526975016319951 0.04496343675110913 0.09996912494027607 0.04643968699766806 0.09927018377380138 0.046075439802915126 C 0.09996912494027607 0.04643968699766806 0.10332902652189725 0.04980620691421299 0.10286573215146 0.04936112246490657 C 0.10332902652189725 0.04980620691421299 0.10499338155801417 0.05158773075539925 0.10482971621904846 0.05141645319459212" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.03875718691907565,-0.03875718691907564)"><path d="M 0.044386985044950665 0.03751896157097626 C 0.044351856827727076 0.03827386665920797 0.04402898180834601 0.048088638529787106 0.04396544643826756 0.046577822629756745 C 0.04402898180834601 0.048088638529787106 0.045248073073194096 0.05640466318313927 0.04514940948589206 0.055648752371340614" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04514940948589206 0.055648752371340614 C 0.045280747105616526 0.05627247428101826 0.04691427539611338 0.0643163442762609 0.046725460922585685 0.0631334152874724 C 0.04691427539611338 0.0643163442762609 0.047472660022027546 0.07040310731591341 0.04741518316822432 0.06984390023680256" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05062744882176749 0.021931617232568954 C 0.05029838450872493 0.02257525438111374 0.04615863841718872 0.030954208376640327 0.046678677065256795 0.029655263015106386 C 0.04615863841718872 0.030954208376640327 0.044196010709925154 0.03817426978396542 0.044386985044950665 0.03751896157097626" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="獣性">
<g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.013954082361682675,-0.013954082361682675)"><path d="M -0.0022739685525618356 0.003844831608358202 C -0.0015267419996557526 0.004153570253870106 0.0031467573977195227 0.006060706681712705 0.0022093907648746635 0.005697263481429629 C 0.0031467573977195227 0.006060706681712705 0.0035403713244460955 0.006080195364827833 0.0033502312445073193 0.006025490810056661" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0038455517094652027 0.018225362349091806 C 0.003469477076088118 0.017696288229066694 0.00012805441909248712 0.013758180403255918 0.0015891039092026926 0.01505091762894114 C 0.00012805441909248712 0.013758180403255918 -0.006005720087929151 0.009705275889320367 -0.00492074523119603 0.010468938994980477" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.00492074523119603 0.010468938994980477 C -0.0036205037246261557 0.010521620047978276 0.003321833254662245 0.009681007415196896 0.002880703808223214 0.010785025312967276 C 0.003321833254662245 0.009681007415196896 -0.0031330806126926873 0.002688132657590025 -0.0022739685525618443 0.0038448316083582036" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.013954082361682675,-0.013954082361682675)"><path d="M 0.002548232645957608 0.01025100059404375 C 0.0033116423526730093 0.010470205032357202 0.008027100049721951 0.011824271896125449 0.007128690886250017 0.011566227223924464 C 0.008027100049721951 0.011824271896125449 0.008073687083545743 0.01183810886113719 0.00793868762678921 0.011799268627249657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008290365156909325 0.019972028807441883 C 0.008023352167211591 0.019596386182224056 0.005944414320965973 0.01688185439465219 0.006688287218722917 0.01771817305613491 C 0.005944414320965973 0.01688185439465219 0.0033502678623084535 0.014493440802280676 0.0038271277703676625 0.014954116838545566" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0038271277703676625 0.014954116838545566 C 0.004456826999810967 0.014991520386174004 0.007392173959625815 0.014394685416899224 0.0076053231470274915 0.015178538124316193 C 0.007392173959625815 0.014394685416899224 0.0017053842291126203 0.009429744338998344 0.0025482326459576017 0.010251000594043751" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.013954082361682675,-0.013954082361682675)"><path d="M 0.02591276632268226 0.010251000594043751 C 0.025069917905837288 0.01107225684908916 0.02065978970716494 0.01596239083173316 0.02085567582161242 0.015178538124316193 C 0.02065978970716494 0.01596239083173316 0.025384411938394868 0.014916713290917129 0.024737449635997374 0.014954116838545566" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024737449635997374 0.014954116838545566 C 0.024243326654983965 0.015414792874810457 0.021011575779205788 0.018554491717617628 0.02177271174991692 0.01771817305613491 C 0.021011575779205788 0.018554491717617628 0.019903620822032855 0.02034767143265971 0.02017063381173058 0.019972028807441883" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020522311341850688 0.011799268627249657 C 0.020657310798607217 0.011760428393362124 0.022230717245861783 0.01130818255172348 0.021332308082389853 0.011566227223924464 C 0.022230717245861783 0.01130818255172348 0.02667617602939766 0.010031796155730298 0.02591276632268226 0.01025100059404375" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.013954082361682675,-0.013954082361682675)"><path d="M 0.006221609670840688 -0.0022289674539333316 C 0.006635320051325961 -0.001660322718760652 0.00920540437411805 0.0018576978340513728 0.008703871953752324 0.0011829009571027458 C 0.00920540437411805 0.0018576978340513728 0.0093186262329155 0.0019259659495343769 0.009230804193035045 0.0018198138077584296" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009230804193035045 0.0018198138077584296 C 0.00905191363578472 0.002096186093526172 0.006698203976345876 0.005888510207088627 0.007084117506031141 0.005136281236971339 C 0.006698203976345876 0.005888510207088627 0.004392818864376932 0.01132241813351544 0.004599841836811871 0.010846561449165895" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.004599841836811871 0.010846561449165895 C 0.0046234158725474974 0.010261656124786434 0.00419286159583965 0.005765103566190566 0.00474128605122563 0.007337129502889127 C 0.00419286159583965 0.005765103566190566 0.0007372966133743908 0.0004272852166554374 0.0013092951044959963 0.0014144058289745358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0013092951044959963 0.0014144058289745358 C 0.002156243546260292 0.0018867972612259553 0.007209704849472552 0.003641525541998408 0.0063909857550817715 0.004248754422483053 C 0.007209704849472552 0.003641525541998408 0.006193380323467166 -0.0033085877666694 0.006221609670840681 -0.002228967453933335" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.013954082361682675,-0.013954082361682675)"><path d="M 0.02326532595418207 -0.0048170096684581 C 0.02319437625560457 -0.0037580129735446458 0.023626676220789938 0.001985846199917589 0.022839627762717085 0.0015369705010226248 C 0.023626676220789938 0.001985846199917589 0.028845614859269526 -0.0027338764711068043 0.027987616702619178 -0.0021237554750883143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027987616702619178 -0.0021237554750883143 C 0.027598715127615206 -0.0011559194182845273 0.025279978057822776 0.004993825048504817 0.025654207252595346 0.0036832608657344085 C 0.025279978057822776 0.004993825048504817 0.025756913914215158 0.006082357747500754 0.025742241533983756 0.005739629621534134" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025742241533983756 0.005739629621534134 C 0.02549276742603625 0.005449500802541078 0.022242784043280013 0.0017848145830758797 0.022748552238613717 0.002258083793617474 C 0.022242784043280013 0.0017848145830758797 0.019416729102593108 -0.00012274129651353795 0.019673023189979308 6.039909503500143E-05" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019673023189979308 6.039909503500143E-05 C 0.019858029936861168 -0.00018385763037450213 0.0213817807986376 -0.002218042718004203 0.020783063671270474 -0.0014051412574220198 C 0.0213817807986376 -0.002218042718004203 0.023679036334667336 -0.0053856544036307765 0.02326532595418207 -0.004817009668458097" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="淫タトゥ">
<g id="足首">
<g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.01919286476298845,-0.01919286476298845)"><path d="M 0.012772892530143323 0.02640216756217366 C 0.012773774595378245 0.026370824626642038 0.01278530835258197 0.025963378867309688 0.01278347731296239 0.026026052335794185 C 0.01278530835258197 0.025963378867309688 0.01279581397996292 0.02561875540740683 0.012794865005578263 0.025650085940359703" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012794865005578263 0.025650085940359703 C 0.013383354253315476 0.025645192636730492 0.020929930409588834 0.02558390772412721 0.019856735978424828 0.025591366296809186 C 0.020929930409588834 0.02558390772412721 0.02615790336297314 0.025558017799123228 0.025673198179546348 0.025560583068175994" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.025673198179546348 0.025560583068175994 C 0.02567206874838776 0.02559343698684151 0.025657514326389318 0.026016704686827766 0.02565964500564332 0.02595483009216216 C 0.025657514326389318 0.026016704686827766 0.025646628780402886 0.026332098880163343 0.025647630028498306 0.026303078204163253" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.025647630028498306 0.026303078204163253 C 0.025166460655849057 0.026306491130872436 0.01880070276517775 0.026352290771174326 0.019873597556707333 0.026344033324673458 C 0.01880070276517775 0.026352290771174326 0.012181167111262995 0.02640701208196534 0.01277289253014333 0.02640216756217366" fill="none" stroke="none" stroke-width="0"/>
</g><g id="ハート1">
<g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.0061447809788611535 0.0137392474917232 C -0.006098556038571381 0.013674392240266174 -0.005509143341926424 0.012845628209354604 -0.005590081695383882 0.012960984474238884 C -0.005509143341926424 0.012845628209354604 -0.0051104073731202985 0.01224404479317358 -0.005173520737371662 0.012354972313111836 C -0.0051104073731202985 0.01224404479317358 -0.004796375310013829 0.011502685236764159 -0.004832721324367516 0.011629854234979808 C -0.004796375310013829 0.011502685236764159 -0.004740726096843004 0.0107136735101251 -0.004737368565127419 0.010828944334524051 C -0.004740726096843004 0.0107136735101251 -0.004911249017600199 0.010174525938840221 -0.004873011704954527 0.010246604342192406 C -0.004911249017600199 0.010174525938840221 -0.00525261209631962 0.00995186800924341 -0.005196216316875487 0.009964003494297841 C -0.00525261209631962 0.00995186800924341 -0.0056229563291297965 0.010181350708260734 -0.005549761058284125 0.010100978521539237 C -0.0056229563291297965 0.010181350708260734 -0.006118292776085158 0.010997427336073848 -0.00607455956702354 0.0109284697349558" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.00607455956702354 0.0109284697349558 C -0.006071803352157944 0.010874653503832175 -0.006038151439201705 0.01021037981545038 -0.006041484988636382 0.010282674961472298 C -0.006038151439201705 0.01021037981545038 -0.006033979639238332 0.010042449067794477 -0.006034556973807412 0.01006092798269277" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.006034556973807412 0.01006092798269277 C -0.005997645010981958 0.010000744942159943 -0.00551148062837661 0.009266858347107741 -0.005591613419901963 0.009338731496298843 C -0.00551148062837661 0.009266858347107741 -0.004988988699300157 0.00922233427978609 -0.005072963475503183 0.009198450192399541 C -0.004988988699300157 0.00922233427978609 -0.004523376068479462 0.009741707023025084 -0.00458391610546565 0.009625340544937437 C -0.004523376068479462 0.009741707023025084 -0.004340295632213822 0.010776563962594181 -0.004346483031668924 0.0105948479294513 C -0.004340295632213822 0.010776563962594181 -0.0045605571821513615 0.011987868743430611 -0.004509667312004427 0.01180593294265201 C -0.0045605571821513615 0.011987868743430611 -0.005042682956086156 0.012927438161758117 -0.004957161473432138 0.012778077538794503 C -0.005042682956086156 0.012927438161758117 -0.005637623193397735 0.013753202345944286 -0.005535925103852643 0.013598260418215387 C -0.005637623193397735 0.013753202345944286 -0.00623100633498329 0.014723974025985118 -0.00617753854797324 0.014637380671541292" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.00617753854797324 0.014637380671541292 C -0.006176999644194055 0.01462013182207467 -0.006168341905197007 0.014355550046290336 -0.006171071702623014 0.014430394477941843 C -0.006168341905197007 0.014355550046290336 -0.006142590085214332 0.013681651909538312 -0.0061447809788611535 0.0137392474917232" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.0061447809788611535 0.0137392474917232 C -0.006146971872507975 0.013796843073908088 -0.006173801500049021 0.01450523890959335 -0.006171071702623014 0.014430394477941843 C -0.006173801500049021 0.01450523890959335 -0.006178077451752426 0.014654629521007913 -0.00617753854797324 0.014637380671541292" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.00617753854797324 0.014637380671541292 C -0.006225774230219329 0.014556508532231185 -0.006848724218718309 0.013522889451749336 -0.006756366734926301 0.01366691499982001 C -0.006848724218718309 0.013522889451749336 -0.007362301634531012 0.012768826306330866 -0.007285828353477328 0.0129090740946932 C -0.007362301634531012 0.012768826306330866 -0.007713726760709356 0.01180710068237901 -0.007674046107570499 0.011983941539471998 C -0.007713726760709356 0.01180710068237901 -0.007744412347546169 0.010603930551691851 -0.007761996191143621 0.010786983809577351 C -0.007744412347546169 0.010603930551691851 -0.007395002720071089 0.009663702994200744 -0.0074630399844010705 0.009787302444845995 C -0.007395002720071089 0.009663702994200744 -0.006859783503256147 0.009270357763791235 -0.006945549019183844 0.009303790401834343 C -0.006859783503256147 0.009270357763791235 -0.006357937789487333 0.009449205586733565 -0.006433853793268702 0.009386110788328695 C -0.006357937789487333 0.009449205586733565 -0.006001282238852304 0.010117162748889776 -0.006034556973807412 0.01006092798269277" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.006034556973807412 0.01006092798269277 C -0.006035134308376493 0.010079406897591063 -0.006044818538071059 0.010354970107494216 -0.006041484988636382 0.010282674961472298 C -0.006044818538071059 0.010354970107494216 -0.006077315781889137 0.010982285966079426 -0.00607455956702354 0.0109284697349558" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.00607455956702354 0.0109284697349558 C -0.006111955265104237 0.010864075949946678 -0.0065895549424270046 0.010083216297326968 -0.006523307943991902 0.010155744314846329 C -0.0065895549424270046 0.010083216297326968 -0.006926877541794115 0.01007666787628134 -0.006869523548244773 0.010058133524723465 C -0.006926877541794115 0.01007666787628134 -0.007254439626421476 0.010454798312271942 -0.007211555866584008 0.010378156533540841 C -0.007254439626421476 0.010454798312271942 -0.007394713487834712 0.011093890005414504 -0.0073841286662943905 0.010977834869496677 C -0.007394713487834712 0.011093890005414504 -0.0073100599696648135 0.01189433854882426 -0.007338573725067858 0.01177081816455478 C -0.0073100599696648135 0.01189433854882426 -0.006985571593482195 0.012564284359355202 -0.007041963601457854 0.012460079480730428 C -0.006985571593482195 0.012564284359355202 -0.006587104410810222 0.013127874042301455 -0.006661869629359947 0.013021276708052058 C -0.006587104410810222 0.013127874042301455 -0.006101690257986254 0.013799078390362462 -0.0061447809788611535 0.0137392474917232" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ハート3">
<g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M 0.0034948327598079286 0.013581013437194688 C 0.0034980285012803265 0.01363856201092705 0.003537217254582099 0.01434638171293093 0.0035331816574767035 0.01427159632198305 C 0.003537217254582099 0.01434638171293093 0.003544099780705673 0.01449567494578475 0.0035432599250726756 0.014478438128569233" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0035432599250726756 0.014478438128569233 C 0.0034882890190490352 0.014392791104262916 0.002779222342858616 0.013297530383963236 0.002883609052788992 0.013450673836893428 C 0.002779222342858616 0.013297530383963236 0.0022025042462925056 0.012492871374464046 0.002290619405908163 0.012640716693406943 C 0.0022025042462925056 0.012492871374464046 0.0017721698004872063 0.0114955100692011 0.0018262271374011043 0.011676530009578672 C 0.0017721698004872063 0.0114955100692011 0.0016449464379589924 0.010286681066955137 0.0016419313629413882 0.010468477408876088 C 0.0016449464379589924 0.010286681066955137 0.001920907978986417 0.009377568582286644 0.0018624080376123551 0.009494973906527255 C 0.001920907978986417 0.009377568582286644 0.002427475811067549 0.009034267506339623 0.0023439306594301313 0.009059613517988754 C 0.002427475811067549 0.009034267506339623 0.0029463248035860477 0.009261285459253392 0.0028649498572613716 0.00919082176673769 C 0.0029463248035860477 0.009261285459253392 0.003358386695164986 0.00996470749996379 0.0033204300153262464 0.009905177828177167" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0033204300153262464 0.009905177828177167 C 0.0033213297634978015 0.009923643852769667 0.003335821759375676 0.010198996079948569 0.003331226993384907 0.01012677012328717 C 0.003335821759375676 0.010198996079948569 0.0033792622250346923 0.010825649240182839 0.003375567207215478 0.01077188930811394" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.003375567207215478 0.01077188930811394 C 0.0033306371828517784 0.010703705459311897 0.00276182010393077 0.009874600610457338 0.0028364069148510813 0.00995368312248942 C 0.00276182010393077 0.009874600610457338 0.002424350079495459 0.009836017042554449 0.0024805254761717426 0.009822899163728964 C 0.002424350079495459 0.009836017042554449 0.002125328607408589 0.010183832426978826 0.0021623021547356775 0.010111097668395231 C 0.002125328607408589 0.010183832426978826 0.002035497641177209 0.010811028131834297 0.002036842908246679 0.010695716266732103 C 0.002035497641177209 0.010811028131834297 0.002184718833624772 0.011621355353967945 0.002146158949902036 0.011494840049621558 C 0.002184718833624772 0.011621355353967945 0.0025646012168628425 0.012323709063943896 0.0024995615129195102 0.012213899918888755 C 0.0025646012168628425 0.012323709063943896 0.00300957466779606 0.012926475916808747 0.002926635397222025 0.012812549790283251 C 0.00300957466779606 0.012926475916808747 0.0035421825400234206 0.013645052074437308 0.0034948327598079286 0.013581013437194688" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M 0.0034948327598079286 0.013581013437194688 C 0.003536872724596768 0.0135204396143167 0.004072205788716354 0.012746241630718271 0.003999312337274 0.012854127562658848 C 0.004072205788716354 0.012746241630718271 0.004424118970421376 0.012181209069947716 0.004369554177116177 0.012286382253907753 C 0.004424118970421376 0.012181209069947716 0.004680443541606818 0.011468050149973388 0.0046540898569363874 0.011592049355138407 C 0.004680443541606818 0.011468050149973388 0.004673189742339432 0.010682539062376617 0.0046857983931613435 0.010798391791927531 C 0.004673189742339432 0.010682539062376617 0.004458571235167819 0.01012593491951671 0.0045027860470734414 0.010201816600527446 C 0.004458571235167819 0.01012593491951671 0.004097551922999117 0.009870281056318575 0.004155220650293876 0.009887811619798712 C 0.004097551922999117 0.009870281056318575 0.0037457901992797964 0.010065122979458739 0.0038107613195363294 0.009991449838765803 C 0.0037457901992797964 0.010065122979458739 0.0033393010311887406 0.010836925930559618 0.003375567207215478 0.01077188930811394" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.003375567207215478 0.01077188930811394 C 0.003371872189396264 0.010718129376045042 0.0033266322273941377 0.010054544166625773 0.003331226993384907 0.01012677012328717 C 0.0033266322273941377 0.010054544166625773 0.0033195302671546914 0.009886711803584667 0.0033204300153262464 0.009905177828177167" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0033204300153262464 0.009905177828177167 C 0.0033527182503824823 0.009848370902608901 0.0037826921213415213 0.009159084615643432 0.0037078888360010743 0.009223494721357984 C 0.0037826921213415213 0.009159084615643432 0.00430440537282321 0.009164187291050665 0.004218069439411612 0.009132256559602538 C 0.00430440537282321 0.009164187291050665 0.00481410404671342 0.009729056710595783 0.0047439200369402525 0.009606663498735502 C 0.00481410404671342 0.009729056710595783 0.005081053442038813 0.010783693599528413 0.005060277556689618 0.01060097510192592 C 0.005081053442038813 0.010783693599528413 0.004956642350060107 0.011976791916225601 0.004993230661130593 0.01179928546996542 C 0.004956642350060107 0.011976791916225601 0.00454720385144564 0.012872613527775495 0.004621217823843782 0.012731052457048092 C 0.00454720385144564 0.012872613527775495 0.0040152331674553066 0.013643633791321018 0.004105062992352899 0.013498018318694256 C 0.0040152331674553066 0.013643633791321018 0.0034964430027993234 0.014560139779392148 0.0035432599250726756 0.014478438128569233" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0035432599250726756 0.014478438128569233 C 0.003542420069439678 0.014461201311353717 0.003529146060371308 0.014196810931035172 0.0035331816574767035 0.01427159632198305 C 0.003529146060371308 0.014196810931035172 0.0034916370183355307 0.013523464863462325 0.0034948327598079286 0.013581013437194688" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ハート2">
<g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.0012975020614622089 0.013673537098219923 C -0.0012957924488524767 0.013731190585925403 -0.0012749754059308235 0.014440316338858264 -0.0012769867101454218 0.01436537895068569 C -0.0012749754059308235 0.014440316338858264 -0.0012730647192821622 0.014590069656757916 -0.0012733664108870283 0.014572785756290821" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0012733664108870283 0.014572785756290821 C -0.0013665772946154268 0.014490484296527155 -0.002569568437883292 0.013438436367734835 -0.0023918970156278094 0.01358516823912682 C -0.002569568437883292 0.013438436367734835 -0.0035540911055258312 0.012669455635138884 -0.0034054234779528217 0.012812003299586995 C -0.0035540911055258312 0.012669455635138884 -0.004260749504897342 0.011696269543273645 -0.004175908546503925 0.011874596265749486 C -0.004260749504897342 0.011696269543273645 -0.0044052610263076025 0.010488953058943094 -0.004423514978673822 0.01067208262987691 C -0.0044052610263076025 0.010488953058943094 -0.0038429705387903437 0.009554790037417422 -0.0039568611181093 0.00967704141454368 C -0.0038429705387903437 0.009554790037417422 -0.0029037927271098538 0.009179603094643466 -0.0030568280268463447 0.009205066104361812 C -0.0029037927271098538 0.009179603094643466 -0.0019784861037592544 0.009436649235933924 -0.0021204375212714064 0.009371485297923532 C -0.0019784861037592544 0.009436649235933924 -0.0012894921413196163 0.010038329032366766 -0.0013534110167005232 0.009987033360486517" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0013534110167005232 0.009987033360486517 C -0.0013530878105932037 0.010005549825973684 -0.0013463216287148273 0.01028160307974896 -0.0013495325434126875 0.01020923094633252 C -0.0013463216287148273 0.01028160307974896 -0.001311992331735661 0.010909354629413046 -0.0013148800403262014 0.010855498961483774" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0013148800403262014 0.010855498961483774 C -0.0013908156732358084 0.01079541747428078 -0.002355191333390799 0.010060231989823492 -0.002226107635241486 0.010134521115047836 C -0.002355191333390799 0.010060231989823492 -0.002966602305192408 0.009975855082531418 -0.002863884418117955 0.009964029458791641 C -0.002966602305192408 0.009975855082531418 -0.0035306007255319124 0.010352217141391408 -0.003458722280134923 0.01027642859992517 C -0.0035306007255319124 0.010352217141391408 -0.003729645218587825 0.010989122887545234 -0.003726425762881825 0.01087349195638651 C -0.003729645218587825 0.010989122887545234 -0.0034366536255305714 0.011788577883247721 -0.0034973557486069223 0.011663999773829852 C -0.0034366536255305714 0.011788577883247721 -0.002895648392647297 0.012474818925076911 -0.002998000285965617 0.012368429269400938 C -0.002895648392647297 0.012474818925076911 -0.0021274248434117998 0.013049434627676444 -0.002269133028787084 0.012940675641941528 C -0.0021274248434117998 0.013049434627676444 -0.001216532814185136 0.013734608886243123 -0.0012975020614622089 0.013673537098219923" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.0012975020614622089 0.013673537098219923 C -0.0012173383776395836 0.013609602355137283 -0.00019633649338914052 0.012792607531816403 -0.00033553785559070496 0.012906320181228248 C -0.00019633649338914052 0.012792607531816403 0.0004788382838092582 0.012199318773064627 0.0003729142849565643 0.012308985305277766 C 0.0004788382838092582 0.012199318773064627 0.0009918675623058807 0.01146370110132683 0.0009355501306416224 0.011590321794670568 C 0.0009918675623058807 0.01146370110132683 0.001034123108146641 0.010673858507294506 0.0010487234649276653 0.01078953698515292 C 0.001034123108146641 0.010673858507294506 0.0006858662083261981 0.010128946208803193 0.0007603458492693317 0.010202180060369596 C 0.0006858662083261981 0.010128946208803193 5.2086274925489386E-05 0.00989715580781915 0.00015496777361006318 0.009910730766356088 C 5.2086274925489386E-05 0.00989715580781915 -0.000596719452773576 0.010118011240853639 -0.00047423213494555397 0.010039280557926331 C -0.000596719452773576 0.010118011240853639 -0.0013849340324412554 0.010923517161780229 -0.0013148800403262014 0.010855498961483774" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0013148800403262014 0.010855498961483774 C -0.0013177677489167418 0.010801643293554503 -0.0013527434581105478 0.010136858812916082 -0.0013495325434126875 0.01020923094633252 C -0.0013527434581105478 0.010136858812916082 -0.0013537342228078428 0.009968516894999349 -0.0013534110167005232 0.009987033360486517" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0013534110167005232 0.009987033360486517 C -0.0012911139405647858 0.009927601001518245 -0.0004662553471673902 0.00920376677793984 -0.0006058461030716742 0.009273845052867246 C -0.0004662553471673902 0.00920376677793984 0.00047530144360302933 0.009172137903204708 0.00032167805415088445 0.009146094061357628 C 0.00047530144360302933 0.009172137903204708 0.0013557222821422158 0.00970457333602525 0.001237634570354064 0.009586371155032204 C 0.0013557222821422158 0.00970457333602525 0.001763364558017289 0.010746901192870974 0.0017387305956087066 0.010564520233274187 C 0.001763364558017289 0.010746901192870974 0.001454676356546175 0.011956121667596076 0.0015332421192570532 0.011774942670193652 C 0.001454676356546175 0.011956121667596076 0.000652339221552364 0.012886317455743956 0.0007959414430781679 0.012738668202103265 C 0.000652339221552364 0.012886317455743956 -0.0003624268602163608 0.013699576843397572 -0.00018998453905259445 0.013546733713881943 C -0.0003624268602163608 0.013699576843397572 -0.0013636482335398978 0.014658290093158229 -0.0012733664108870283 0.014572785756290821" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0012733664108870283 0.014572785756290821 C -0.0012736681024918945 0.014555501855823726 -0.00127899801436002 0.014290441562513115 -0.0012769867101454218 0.01436537895068569 C -0.00127899801436002 0.014290441562513115 -0.001299211674071941 0.013615883610514443 -0.0012975020614622089 0.013673537098219923" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="ハート">
<g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -1.2566176783990063E-05 0.008781211492210688 C -1.2566176783990172E-05 0.008867548478175362 -1.2566176783991364E-05 0.009996931228834244 -1.2566176783991364E-05 0.00981725532378677 C -1.2566176783991364E-05 0.009996931228834244 -1.2566176783989955E-05 0.011030661271863171 -1.2566176783990063E-05 0.010937322352780372" fill="none" stroke="none" stroke-width="0"/>
<path d="M -1.2566176783990063E-05 0.010937322352780372 C -0.00023790636836458847 0.010693049404306355 -0.0031466094239163992 0.00757570840719166 -0.002716648475751171 0.008006046971092166 C -0.0031466094239163992 0.00757570840719166 -0.005540608890512209 0.005381451207858359 -0.005172097554766727 0.0057732595859743 C -0.005540608890512209 0.005381451207858359 -0.007339457886028459 0.002862851567832149 -0.007138784504696952 0.003304346433700876 C -0.007339457886028459 0.002862851567832149 -0.007521118362985068 3.9233662877020156E-05 -0.007580178130744801 0.0004753211955495717 C -0.007521118362985068 3.9233662877020156E-05 -0.006145183856202623 -0.0022239955365551726 -0.006430067291580144 -0.0019287039583697429 C -0.006145183856202623 -0.0022239955365551726 -0.0037822949246327604 -0.003140306899215779 -0.004161576906214544 -0.003068177742675586 C -0.0037822949246327604 -0.003140306899215779 -0.0015329326184795324 -0.002628168182690607 -0.0018786835125987453 -0.0027942538368520564 C -0.0015329326184795324 -0.002628168182690607 0.00014294360120057286 -0.0009318912307287053 -1.2566176783990063E-05 -0.0010751498927381938" fill="none" stroke="none" stroke-width="0"/>
<path d="M -1.2566176783990063E-05 -0.0010751498927381938 C -1.2566176783990172E-05 -0.0010296712035569042 -1.2566176783991364E-05 -0.00040258685590306676 -1.2566176783991364E-05 -0.0005294056225627187 C -1.2566176783991364E-05 -0.00040258685590306676 -1.2566176783989955E-05 0.0005280153846559914 -1.2566176783990063E-05 0.0004466753071776291" fill="none" stroke="none" stroke-width="0"/>
<path d="M -1.2566176783990063E-05 0.0004466753071776291 C -0.00018625159443943205 0.0003215139919875192 -0.0024056832132267427 -0.0012055955987820043 -0.002096791188649294 -0.00105526047510369 C -0.0024056832132267427 -0.0012055955987820043 -0.003983013124865093 -0.0013178513804607546 -0.0037192704717133765 -0.0013573461769621426 C -0.003983013124865093 -0.0013178513804607546 -0.005449792077728406 -0.00038980988748479417 -0.005261703026469894 -0.0005813229170870341 C -0.005449792077728406 -0.00038980988748479417 -0.006008666124858089 0.0012386980295659412 -0.005976339086815525 0.0009408101782647366 C -0.006008666124858089 0.0012386980295659412 -0.005499242235535543 0.0033161542164146193 -0.005649627482980669 0.0029933312985274216 C -0.005499242235535543 0.0033161542164146193 -0.0038946284090102053 0.00511596496276218 -0.004171716117474006 0.004814685192911106 C -0.0038946284090102053 0.00511596496276218 -0.001977979153024225 0.006939232395015269 -0.0023245749814150597 0.006608688536740304 C -0.001977979153024225 0.006939232395015269 0.00018010122360193238 0.00896225507183322 -1.2566176783990063E-05 0.008781211492210688" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -1.2566176783990063E-05 0.008781211492210688 C 0.0001801012236019332 0.008600167912588155 0.0026460384562379197 0.006278144678465339 0.002299442627847089 0.006608688536740304 C 0.0026460384562379197 0.006278144678465339 0.004423671472369776 0.004513405423060033 0.0041465837639059755 0.004814685192911106 C 0.004423671472369776 0.004513405423060033 0.005774880376857825 0.002670508380640224 0.005624495129412694 0.0029933312985274216 C 0.005774880376857825 0.002670508380640224 0.0059188796952049805 0.000642922326963532 0.0059512067332475466 0.0009408101782647366 C 0.0059188796952049805 0.000642922326963532 0.005048481621643386 -0.0007728359466892741 0.0052365706729019 -0.0005813229170870341 C 0.005048481621643386 -0.0007728359466892741 0.0034303954649936488 -0.0013968409734635306 0.003694138118145371 -0.0013573461769621426 C 0.0034303954649936488 -0.0013968409734635306 0.0017627668105037854 -0.0009049253514253758 0.002071658835081232 -0.00105526047510369 C 0.0017627668105037854 -0.0009049253514253758 -0.00018625159443942527 0.000571836622367739 -1.2566176783990063E-05 0.0004466753071776291" fill="none" stroke="none" stroke-width="0"/>
<path d="M -1.2566176783990063E-05 0.0004466753071776291 C -1.2566176783990172E-05 0.00036533522969926677 -1.2566176783991364E-05 -0.0006562243892223705 -1.2566176783991364E-05 -0.0005294056225627187 C -1.2566176783991364E-05 -0.0006562243892223705 -1.2566176783989955E-05 -0.0011206285819194833 -1.2566176783990063E-05 -0.0010751498927381938" fill="none" stroke="none" stroke-width="0"/>
<path d="M -1.2566176783990063E-05 -0.0010751498927381938 C 0.0001429436012005792 -0.0012184085547476823 0.002199302053150047 -0.0029603394910135057 0.001853551159030841 -0.0027942538368520564 C 0.002199302053150047 -0.0029603394910135057 0.00451572653422825 -0.002996048586135393 0.004136444552646482 -0.003068177742675586 C 0.00451572653422825 -0.002996048586135393 0.0066898183733895755 -0.0016334123801843132 0.006404934938012048 -0.0019287039583697429 C 0.0066898183733895755 -0.0016334123801843132 0.0076141055449365546 0.0009114087282221233 0.007555045777176808 0.0004753211955495717 C 0.0076141055449365546 0.0009114087282221233 0.006912978769797496 0.0037458412995696033 0.007113652151129008 0.003304346433700876 C 0.006912978769797496 0.0037458412995696033 0.004778453865453176 0.006165067964090241 0.005146965201198667 0.0057732595859743 C 0.004778453865453176 0.006165067964090241 0.002261555174017904 0.008436385534992673 0.0026915161221831253 0.008006046971092166 C 0.002261555174017904 0.008436385534992673 -0.000237906368364583 0.011181595301254389 -1.2566176783990063E-05 0.010937322352780372" fill="none" stroke="none" stroke-width="0"/>
<path d="M -1.2566176783990063E-05 0.010937322352780372 C -1.2566176783990172E-05 0.010843983433697572 -1.2566176783991364E-05 0.009637579418739297 -1.2566176783991364E-05 0.00981725532378677 C -1.2566176783991364E-05 0.009637579418739297 -1.2566176783989955E-05 0.008694874506246014 -1.2566176783990063E-05 0.008781211492210688" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.016032243425911998,-0.016032243425912)"><path d="M 0.00591352984129372 0.01597005563023842 C 0.005957444096768972 0.015792279014021054 0.006540932000364969 0.0134390489583392 0.006440500906996743 0.013836736235630039 C 0.006540932000364969 0.0134390489583392 0.007175219799605398 0.010977897641674875 0.007118702961712425 0.011197808302748349" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007118702961712425 0.011197808302748349 C 0.007216879920566221 0.011450291278525128 0.008870471492067003 0.015087343551732831 0.008296826467957978 0.014227604012069694 C 0.008870471492067003 0.015087343551732831 0.014570444387105128 0.023039597865599424 0.01400244325102072 0.021514682778705996 C 0.014570444387105128 0.023039597865599424 0.015205373171800058 0.03344424357779789 0.015112840100970878 0.03252658505479082" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015112840100970878 0.03252658505479082 C 0.014871719216465436 0.03173473401836794 0.011531224610405164 0.02176053313649722 0.012219389486905567 0.02302437261771622 C 0.011531224610405164 0.02176053313649722 0.006329373279165047 0.016772651531206304 0.006854861582966034 0.017360511280162787 C 0.006329373279165047 0.016772651531206304 0.005835085529487694 0.01585418432607806 0.00591352984129372 0.015970055630238424" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.016032243425911998,-0.016032243425912)"><path d="M 0.02764425506391062 0.017717833322414046 C 0.02736956615985656 0.01793987274988436 0.023896737044633225 0.020895027730883718 0.024347988215261893 0.0203823064520578 C 0.023896737044633225 0.020895027730883718 0.021846812700728604 0.024882511885219484 0.022229241016366617 0.023870488668325064 C 0.021846812700728604 0.024882511885219484 0.019552982378542312 0.033247926420329636 0.01975884842760572 0.03252658505479082" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01975884842760572 0.03252658505479082 C 0.019851381498434902 0.03160892653178375 0.021437246413640317 0.019989767691812568 0.0208692452775559 0.021514682778705996 C 0.021437246413640317 0.019989767691812568 0.027148507084727727 0.013367864472406557 0.026574862060618706 0.014227604012069694 C 0.027148507084727727 0.013367864472406557 0.02785116252571796 0.01094532532697157 0.02775298556686417 0.011197808302748349" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02775298556686417 0.011197808302748349 C 0.027748933658970954 0.011478287709608015 0.027695301796899434 0.015106896603369812 0.027704362672145565 0.014563561185064338 C 0.027695301796899434 0.015106896603369812 0.027639246096557706 0.017980689333859847 0.02764425506391062 0.01771783332241404" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="悪タトゥ">
<g id="文字1">
<g id="文字a">
<g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M -0.0015148769824622668 0.005299519604919982 C -0.0015115222207668364 0.005299519604919982 -0.001394820228030254 0.005299519604919978 -0.0014746198421171034 0.005299519604919979 C -0.001394820228030254 0.005299519604919978 -0.00040439190863723537 0.005299519604919975 -0.0005572816134200732 0.005299519604919975 C -0.00040439190863723537 0.005299519604919975 0.00043650146766836915 0.005299519604919975 0.0003600566152769505 0.005299519604919975" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0003600566152769505 0.005299519604919975 C 0.0003600566152769505 0.005454620007440065 0.0003600566152769503 0.0074709252402012415 0.0003600566152769505 0.007160724435161059 C 0.0003600566152769503 0.0074709252402012415 0.0003600566152769471 0.009332130070442339 0.0003600566152769477 0.009021929265402157 C 0.0003600566152769471 0.009332130070442339 0.000360056615276943 0.011038234498163326 0.00036005661527694336 0.010883134095643236" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.00036005661527694336 0.010883134095643236 C 0.00031936480291423904 0.010883134095643236 -0.00018773914145680628 0.010883134095643232 -0.00012824513307550822 0.010883134095643232 C -0.00018773914145680628 0.010883134095643232 -0.0004457341873086463 0.010883134095643232 -0.0003538714852986335 0.010883134095643232 C -0.0004457341873086463 0.010883134095643232 -0.0013036580631870806 0.010883134095643236 -0.0012305975571956617 0.010883134095643236" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M -0.0012305975571956617 0.010883134095643236 C -0.0012337603286193075 0.010734577100380333 -0.0012788925836505099 0.0087967927547054 -0.00126855081427941 0.009100450152488395 C -0.0012788925836505099 0.0087967927547054 -0.0013752259703307661 0.0069225011099499365 -0.001354698789648861 0.007239245322247304 C -0.0013752259703307661 0.0069225011099499365 -0.001528225165196722 0.005137875795142705 -0.0015148769824622711 0.005299519604919982" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.32302929639869155,0.4124032388740385) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.008043785279551694 0.005886551848122753 C 0.008029176088862855 0.006100600441164556 0.007974727558289055 0.008821508044474931 0.007868474991285629 0.00845513496462439 C 0.007974727558289055 0.008821508044474931 0.009439677841285085 0.01043535329313798 0.009318816083592819 0.010283028806329243" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009318816083592819 0.010283028806329243 C 0.00924008213384395 0.010135249491427092 0.008202528252479638 0.008512589318804492 0.0083740086866064 0.00850967702750343 C 0.008202528252479638 0.008512589318804492 0.00716830438969378 0.010468667908145206 0.007261050874071674 0.010317976301941992" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007261050874071674 0.010317976301941992 C 0.0072829903410190945 0.010050872047583148 0.007589552344564058 0.006743439878484261 0.007524324477440723 0.007112725249635864 C 0.007589552344564058 0.006743439878484261 0.008087073679727608 0.005784370731329994 0.008043785279551694 0.005886551848122753" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32302929639869155,0.4124032388740385) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04594397626612043 0.043840055076451216 C 0.04596379651352231 0.044001066511559675 0.045797594686312344 0.045200432271785704 0.04582050179548024 0.04516294095757056 C 0.045797594686312344 0.045200432271785704 0.04562533464561397 0.04420209498639755 0.045669090956105746 0.04428995084703294 C 0.04562533464561397 0.04420209498639755 0.045259657036386035 0.04404421365553575 0.04529542606957894 0.04410867062994591 C 0.045259657036386035 0.04404421365553575 0.04526379862088076 0.04344331157963792 0.04523986255779087 0.04351646715411099 C 0.04526379862088076 0.04344331157963792 0.04564133496901843 0.043257769396464044 0.04558265882665763 0.04323080373626902 C 0.04564133496901843 0.043257769396464044 0.04596379651352231 0.044001066511559675 0.04594397626612043 0.043840055076451216 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.3244053037417371,0.41240323887403846) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.013228330777100008 C 0.00427670766375032 0.013228330777100008 0.005270490744838761 0.01322833077710001 0.005117601040055923 0.01322833077710001 C 0.005270490744838761 0.01322833077710001 0.006187828973535788 0.013228330777100006 0.00603493926875295 0.013228330777100006 C 0.006187828973535788 0.013228330777100006 0.00702872234984139 0.01322833077710001 0.006952277497449972 0.01322833077710001" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006952277497449972 0.01322833077710001 C 0.006952277497449972 0.0133834311796201 0.0069522774974499725 0.01539973641238127 0.006952277497449972 0.01508953560734109 C 0.0069522774974499725 0.01539973641238127 0.00695227749744998 0.01726094124262235 0.00695227749744998 0.01695074043758217 C 0.00695227749744998 0.01726094124262235 0.006952277497449971 0.018967045670343338 0.006952277497449972 0.01881194526782325" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006952277497449972 0.01881194526782325 C 0.006875832645058554 0.01881194526782325 0.005882049563970112 0.01881194526782325 0.00603493926875295 0.01881194526782325 C 0.005882049563970112 0.01881194526782325 0.0049647113352730855 0.01881194526782325 0.005117601040055923 0.01881194526782325 C 0.0049647113352730855 0.01881194526782325 0.004123817958967484 0.01881194526782325 0.004200262811358902 0.01881194526782325" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.004200262811358902 0.01881194526782325 C 0.004200262811358902 0.01865684486530316 0.004200262811358902 0.01664053963254199 0.004200262811358902 0.01695074043758217 C 0.004200262811358902 0.01664053963254199 0.004200262811358902 0.014779334802300908 0.004200262811358902 0.015089535607341088 C 0.004200262811358902 0.014779334802300908 0.004200262811358902 0.013073230374579917 0.004200262811358902 0.013228330777100008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32578131108478264,0.41240323887403846) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.0069221276438726845 0.0058856257847247 C 0.006970423528845341 0.006049319680497547 0.007691617252330333 0.008000321326254296 0.007501678263544557 0.007849952533998865 C 0.007691617252330333 0.008000321326254296 0.009343038613115117 0.007676726188272459 0.009201395509301998 0.007690051291789875" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009201395509301998 0.007690051291789875 C 0.009144717091879431 0.0075751450247679795 0.008325002352187942 0.006529166603025252 0.008521254500231196 0.00631117608752713 C 0.008325002352187942 0.006529166603025252 0.0067067960021622575 0.010638834260287361 0.006846369732782945 0.010305937477767342" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006846369732782945 0.010305937477767342 C 0.0068714883004158955 0.010161305107800582 0.007154105703635828 0.008201989730412657 0.00714779254437835 0.008570349038166211 C 0.007154105703635828 0.008201989730412657 0.006903322235497212 0.005661898846937908 0.0069221276438726845 0.0058856257847247" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32578131108478264,0.41240323887403846) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04500499001348881 0.04685873982970892 C 0.044937153909575894 0.04682903598294337 0.04477361806901857 0.0462258631471742 0.04477055386619384 0.04630934857107463 C 0.04477361806901857 0.0462258631471742 0.045100651669061013 0.04583430008493046 0.04504176044738563 0.04585691474290374 C 0.045100651669061013 0.04583430008493046 0.04555257941639321 0.046002670991941746 0.04547724852629846 0.0460379726753953 C 0.04555257941639321 0.046002670991941746 0.045954676010760094 0.04548561304619992 0.045945731128522564 0.04543329454146109 C 0.045954676010760094 0.04548561304619992 0.04550619202022935 0.04678458183961522 0.045584587113148826 0.046665794732261234 C 0.04550619202022935 0.04678458183961522 0.044937153909575894 0.04682903598294337 0.04500499001348881 0.04685873982970892 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.3271573184278282,0.41240323887403846) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.013228330777100008 C 0.00427670766375032 0.013228330777100008 0.005270490744838761 0.01322833077710001 0.005117601040055923 0.01322833077710001 C 0.005270490744838761 0.01322833077710001 0.006187828973535788 0.013228330777100006 0.00603493926875295 0.013228330777100006 C 0.006187828973535788 0.013228330777100006 0.00702872234984139 0.01322833077710001 0.006952277497449972 0.01322833077710001" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006952277497449972 0.01322833077710001 C 0.006952277497449972 0.0133834311796201 0.0069522774974499725 0.01539973641238127 0.006952277497449972 0.01508953560734109 C 0.0069522774974499725 0.01539973641238127 0.00695227749744998 0.01726094124262235 0.00695227749744998 0.01695074043758217 C 0.00695227749744998 0.01726094124262235 0.006952277497449971 0.018967045670343338 0.006952277497449972 0.01881194526782325" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006952277497449972 0.01881194526782325 C 0.006875832645058554 0.01881194526782325 0.005882049563970112 0.01881194526782325 0.00603493926875295 0.01881194526782325 C 0.005882049563970112 0.01881194526782325 0.0049647113352730855 0.01881194526782325 0.005117601040055923 0.01881194526782325 C 0.0049647113352730855 0.01881194526782325 0.004123817958967484 0.01881194526782325 0.004200262811358902 0.01881194526782325" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.004200262811358902 0.01881194526782325 C 0.004200262811358902 0.01865684486530316 0.004200262811358902 0.01664053963254199 0.004200262811358902 0.01695074043758217 C 0.004200262811358902 0.01664053963254199 0.004200262811358902 0.014779334802300908 0.004200262811358902 0.015089535607341088 C 0.004200262811358902 0.014779334802300908 0.004200262811358902 0.013073230374579917 0.004200262811358902 0.013228330777100008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32853332577087374,0.41240323887403846) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007223293649427913 0.005904167361316711 C 0.007241121603252291 0.006156679674149982 0.007546109223367147 0.009228902836042562 0.007437229095320443 0.008934315115315969 C 0.007546109223367147 0.009228902836042562 0.008680705294019268 0.009303875981140963 0.008529855185988372 0.009439220010035845 C 0.008680705294019268 0.009303875981140963 0.009307228325499756 0.007132767331789185 0.009247430391691189 0.007310186768577389" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009247430391691189 0.007310186768577389 C 0.009222085438595325 0.007545394284583173 0.008772875120212274 0.010349921613342172 0.008943290954540805 0.010132676960646804 C 0.008772875120212274 0.010349921613342172 0.007057369498516145 0.009899159737611391 0.0072024403797488114 0.009917122600921808" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0072024403797488114 0.009917122600921808 C 0.00717713149179904 0.009778402191601575 0.006900471496824811 0.00791806475244526 0.006898733724351553 0.008252477689079017 C 0.006900471496824811 0.00791806475244526 0.007250340309850941 0.005708474834003186 0.007223293649427911 0.005904167361316711" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32853332577087374,0.41240323887403846) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.0451927861276094 0.04356539731275405 C 0.04521143499838983 0.04372640874786251 0.04505505569916798 0.044925774508088524 0.045076608998184046 0.044888283193873384 C 0.04505505569916798 0.044925774508088524 0.04489297622687489 0.043927437222700386 0.044934146539416596 0.04401529308333577 C 0.04489297622687489 0.043927437222700386 0.04454891016435231 0.04376955589183856 0.04458256524768352 0.043834012866248724 C 0.04454891016435231 0.04376955589183856 0.04455280698120338 0.04316865381594073 0.044530285539442105 0.043241809390413805 C 0.04455280698120338 0.04316865381594073 0.044908030931166125 0.042983111632766864 0.04485282254881885 0.042956145972571844 C 0.044908030931166125 0.042983111632766864 0.04521143499838983 0.04372640874786251 0.0451927861276094 0.04356539731275405 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.3299093331139193,0.41240323887403846) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.013228330777100008 C 0.00427670766375032 0.013228330777100008 0.005270490744838761 0.01322833077710001 0.005117601040055923 0.01322833077710001 C 0.005270490744838761 0.01322833077710001 0.006187828973535788 0.013228330777100006 0.00603493926875295 0.013228330777100006 C 0.006187828973535788 0.013228330777100006 0.00702872234984139 0.01322833077710001 0.006952277497449972 0.01322833077710001" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006952277497449972 0.01322833077710001 C 0.006952277497449972 0.0133834311796201 0.0069522774974499725 0.01539973641238127 0.006952277497449972 0.01508953560734109 C 0.0069522774974499725 0.01539973641238127 0.00695227749744998 0.01726094124262235 0.00695227749744998 0.01695074043758217 C 0.00695227749744998 0.01726094124262235 0.006952277497449971 0.018967045670343338 0.006952277497449972 0.01881194526782325" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006952277497449972 0.01881194526782325 C 0.006875832645058554 0.01881194526782325 0.005882049563970112 0.01881194526782325 0.00603493926875295 0.01881194526782325 C 0.005882049563970112 0.01881194526782325 0.0049647113352730855 0.01881194526782325 0.005117601040055923 0.01881194526782325 C 0.0049647113352730855 0.01881194526782325 0.004123817958967484 0.01881194526782325 0.004200262811358902 0.01881194526782325" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.004200262811358902 0.01881194526782325 C 0.004200262811358902 0.01865684486530316 0.004200262811358902 0.01664053963254199 0.004200262811358902 0.01695074043758217 C 0.004200262811358902 0.01664053963254199 0.004200262811358902 0.014779334802300908 0.004200262811358902 0.015089535607341088 C 0.004200262811358902 0.014779334802300908 0.004200262811358902 0.013073230374579917 0.004200262811358902 0.013228330777100008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33128534045696484,0.41240323887403846) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.006953793131303886 0.005885625784724702 C 0.007096138669374185 0.005930393507762455 0.008846662860994052 0.006573207253433171 0.008661939588147474 0.00642283846117774 C 0.008846662860994052 0.006573207253433171 0.009212850140239107 0.007795652361007553 0.009170472405462827 0.007690051291789875" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009170472405462827 0.007690051291789875 C 0.009026807416038344 0.00762229075753082 0.007255629459329246 0.007094915396179337 0.007446492532369025 0.006876924880681215 C 0.007255629459329246 0.007094915396179337 0.006832917445370196 0.010591688527524519 0.00688011552898549 0.010305937477767342" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00688011552898549 0.010305937477767342 C 0.006924515201561751 0.010189356898859648 0.007419051400093823 0.008538611223121462 0.007412911599900623 0.008906970530875016 C 0.007419051400093823 0.008538611223121462 0.006915533258920825 0.005633847055878842 0.006953793131303886 0.005885625784724702" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33128534045696484,0.41240323887403846) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04511319535553413 0.0467991920513258 C 0.04504452403234009 0.04679060048232613 0.0448048933264927 0.046249940011057145 0.04481361331858803 0.04633252541374636 C 0.0448048933264927 0.046249940011057145 0.04506142625833045 0.045768281846843895 0.045008555450390134 0.04580816721905522 C 0.04506142625833045 0.045768281846843895 0.04551480455142626 0.045796646664501346 0.04544806301387182 0.04585390094721039 C 0.04551480455142626 0.045796646664501346 0.045825254416297145 0.04516959276775773 0.04580945390104342 0.04512111582654672 C 0.045825254416297145 0.04516959276775773 0.045579647651457396 0.046575463927140674 0.0456376691969165 0.04643562424174242 C 0.045579647651457396 0.046575463927140674 0.04504452403234009 0.04679060048232613 0.04511319535553413 0.0467991920513258 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.3326613478000104,0.41240323887403846) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.013228330777100008 C 0.00427670766375032 0.013228330777100008 0.0052426743616990085 0.013226516665156111 0.005117601040055923 0.01322833077710001 C 0.0052426743616990085 0.013226516665156111 0.005784383917879208 0.013207166137754543 0.005701142671075923 0.013206561433773243 C 0.005784383917879208 0.013207166137754543 0.006151108779246964 0.013238006040800793 0.006116496001695345 0.013235587224875597" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006116496001695345 0.013235587224875597 C 0.0061115064521707705 0.01338857116346114 0.006046018787868348 0.015378722949031132 0.006056621407400451 0.015071394487902122 C 0.006046018787868348 0.015378722949031132 0.005977781928401771 0.017233427211473248 0.005989264567310112 0.016923528758423716 C 0.005977781928401771 0.017233427211473248 0.0059129601715995446 0.01894572985500255 0.005918829740500358 0.018790175924496486" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.005918829740500358 0.018790175924496486 C 0.0058940879316847885 0.018791990036440383 0.005555158976343154 0.018813759379767148 0.005621928034713524 0.01881194526782325 C 0.005555158976343154 0.018813759379767148 0.004999128938109705 0.01881194526782325 0.005117601040055923 0.01881194526782325 C 0.004999128938109705 0.01881194526782325 0.004123817958967484 0.01881194526782325 0.004200262811358902 0.01881194526782325" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.004200262811358902 0.01881194526782325 C 0.004200262811358902 0.01865684486530316 0.004200262811358902 0.01664053963254199 0.004200262811358902 0.01695074043758217 C 0.004200262811358902 0.01664053963254199 0.004200262811358902 0.014779334802300908 0.004200262811358902 0.015089535607341088 C 0.004200262811358902 0.014779334802300908 0.004200262811358902 0.013073230374579917 0.004200262811358902 0.013228330777100008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33403735514305594,0.41240323887403846) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007057892818706892 0.00591941512156159 C 0.0071280847652620575 0.0061287367231562225 0.008070138762936956 0.008625202243020899 0.007900196177368882 0.008431274340697183 C 0.008070138762936956 0.008625202243020899 0.00919695448453669 0.008231156250175262 0.009097203845523783 0.008246549949446179" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009097203845523783 0.008246549949446179 C 0.008993262719471793 0.008211398134167935 0.0076829048293954715 0.007997347028815247 0.007849910332899905 0.007824728166107263 C 0.0076829048293954715 0.007997347028815247 0.0070300734260181266 0.01052574697992822 0.007093137803470571 0.010317976301941992" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007093137803470571 0.010317976301941992 C 0.007101073274248549 0.010128922322000388 0.0071854263707426605 0.00768278177761106 0.007188363452806301 0.00804932854264276 C 0.0071854263707426605 0.00768278177761106 0.0070470202658652744 0.005741922336471492 0.007057892818706892 0.00591941512156159" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33403735514305594,0.41240323887403846) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04466327106847783 0.04278551286781012 C 0.044790526491226355 0.04276331469507946 0.04586169553408976 0.043127302050069406 0.045843174222864394 0.04308605057909121 C 0.04586169553408976 0.043127302050069406 0.04479571847437665 0.04334820345843365 0.04488552680318221 0.043280530519548444 C 0.04479571847437665 0.04334820345843365 0.04472890028001098 0.043953959290349 0.04476547427719766 0.04389812584571369 C 0.04472890028001098 0.043953959290349 0.044409191742999135 0.04390505708901763 0.044446638836942096 0.04395053185517218 C 0.044409191742999135 0.04390505708901763 0.04433416183584341 0.043255343736245615 0.0443161091498821 0.04335242865185912 C 0.04433416183584341 0.043255343736245615 0.044790526491226355 0.04276331469507946 0.04466327106847783 0.04278551286781012 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33403735514305594,0.41240323887403846) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04431610914988211 0.0462768665866922 C 0.0442980564639208 0.046179781671078696 0.04448408593088504 0.04563328861722457 0.04444663883694208 0.04567876338337912 C 0.04448408593088504 0.04563328861722457 0.04480204827438434 0.04578700283747292 0.04476547427719766 0.045731169392837605 C 0.04480204827438434 0.04578700283747292 0.04497533513198778 0.046416437657888075 0.04488552680318222 0.046348764719002865 C 0.04497533513198778 0.046416437657888075 0.04582465291163903 0.0465844961304383 0.045843174222864394 0.04654324465946011 C 0.04582465291163903 0.0465844961304383 0.04453601564572931 0.04682158419801052 0.04466327106847783 0.046843782370741174 C 0.04453601564572931 0.04682158419801052 0.0442980564639208 0.046179781671078696 0.04431610914988211 0.0462768665866922 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="文字2">
<g id="文字a">
<g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M -0.0012891824407066433 0.017362116612134774 C -0.0012426757597088765 0.01736235780640489 -0.0006221783902563259 0.01736526334277115 -0.0007311022687334426 0.017365010943376166 C -0.0006221783902563259 0.01736526334277115 0.00014273849597745643 0.01736516781512435 1.7904101018756863E-05 0.017365145404874608 C 0.00014273849597745643 0.01736516781512435 0.0008293276682503019 0.017365291071497927 0.0007669104707709523 0.017365279866373057" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0007669104707709523 0.017365279866373057 C 0.0007669365178340212 0.01752038074130802 0.0007672751296539178 0.01953669211546255 0.0007672230355277796 0.019226490365592624 C 0.0007672751296539178 0.01953669211546255 0.0007675876944107482 0.021397902614682104 0.0007675356002846101 0.021087700864812178 C 0.0007675876944107482 0.021397902614682104 0.0007678742121045064 0.023104012238966694 0.0007678481650414375 0.02294891136403173" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0007678481650414375 0.02294891136403173 C 0.0007054309675620875 0.02294890015890686 -0.00010599259966946206 0.022948754492283542 1.884179528923728E-05 0.022948776902533285 C -0.00010599259966946206 0.022948754492283542 -0.0008540058534566987 0.0229486200307851 -0.0007301645744629546 0.02294864244103484 C -0.0008540058534566987 0.0229486200307851 -0.0015286776341500857 0.022948496774411523 -0.001467253552635691 0.022948507979536393" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M -0.001467253552635691 0.022948507979536393 C -0.001461768663329679 0.02279337819818131 -0.0013904742581705976 0.020776633227725015 -0.0014014348809635452 0.021086950603275416 C -0.0013904742581705976 0.020776633227725015 -0.0013263717090989118 0.018914296640336538 -0.0013357260791203199 0.01922469947293159 C -0.0013263717090989118 0.018914296640336538 -0.0012853038041721757 0.017206901373735043 -0.0012891824407066483 0.017362116612134777" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.32368911688973806,0.4244688059467116) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.008049196846034059 0.005886540565250949 C 0.008037304393151133 0.00610058766887156 0.007993304125863968 0.008821495578748395 0.007906487411438958 0.00845510580869828 C 0.007993304125863968 0.008821495578748395 0.009189706586442121 0.010435560472281844 0.009090997419134186 0.010283217805852339" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009090997419134186 0.010283217805852339 C 0.009026686356812919 0.010135426500178436 0.008150161491744719 0.008512604080474662 0.00831926467127897 0.00850972213776551 C 0.008150161491744719 0.008512604080474662 0.006956967147510203 0.010468474366745209 0.007061759264723185 0.010317801118362155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007061759264723185 0.010317801118362155 C 0.007108717924929722 0.010050704488503332 0.007707549652310869 0.006743369847297009 0.007625263187201629 0.007112641560056277 C 0.007707549652310869 0.006743369847297009 0.00808452465093676 0.0057843654823505055 0.008049196846034059 0.005886540565250949" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32368911688973806,0.4244688059467116) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04573658042756997 0.04384021764257982 C 0.04575279069296471 0.04400123247331733 0.045617288371941095 0.045200577525136926 0.04563598572306484 0.04516308945440394 C 0.045617288371941095 0.045200577525136926 0.045476470446360176 0.044202211949435646 0.04551221221408499 0.04429007449137561 C 0.045476470446360176 0.044202211949435646 0.045177868281530816 0.04404427653743765 0.04520708451036704 0.04410873895112433 C 0.045177868281530816 0.04404427653743765 0.04518114897038033 0.04344337323833797 0.045161617468050246 0.04351652552713551 C 0.04518114897038033 0.04344337323833797 0.04548937611828801 0.04325788582850754 0.04544146253832803 0.04323091148555385 C 0.04548937611828801 0.04325788582850754 0.04575279069296471 0.04400123247331733 0.04573658042756997 0.04384021764257982 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.32481262644436637,0.4244690076389593) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004199793964223654 0.013228322273632298 C 0.0042622111617030035 0.01322833347875717 0.005073634728934549 0.013228479145380488 0.004948800333975849 0.013228456735130747 C 0.005073634728934549 0.013228479145380488 0.005822641098686744 0.013228613606878934 0.005697806703728043 0.013228591196629193 C 0.005822641098686744 0.013228613606878934 0.006509230270959599 0.013228736863252514 0.006446813073480249 0.013228725658127643" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006446813073480249 0.013228725658127643 C 0.006446839120543317 0.013383826533062606 0.006447177732363207 0.015400137907217119 0.006447125638237069 0.015089936157347194 C 0.006447177732363207 0.015400137907217119 0.006447490297120043 0.017261348406436672 0.0064474382029939045 0.016951146656566746 C 0.006447490297120043 0.017261348406436672 0.006447776814813804 0.018967458030721265 0.006447750767750735 0.018812357155786302" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006447750767750735 0.018812357155786302 C 0.006385333570271385 0.018812345950661433 0.005573910003039829 0.01881220028403811 0.0056987443979985295 0.018812222694287853 C 0.005573910003039829 0.01881220028403811 0.004824903633287635 0.018812065822539664 0.0049497380282463345 0.018812088232789407 C 0.004824903633287635 0.018812065822539664 0.00413831446101479 0.01881194256616609 0.0042007316584941395 0.01881195377129096" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0042007316584941395 0.01881195377129096 C 0.004200705611431071 0.018656852896355998 0.004200366999611171 0.01664054152220148 0.004200419093737309 0.016950743272071408 C 0.004200366999611171 0.01664054152220148 0.004200054434854346 0.014779331022981927 0.004200106528980484 0.015089532772851853 C 0.004200054434854346 0.014779331022981927 0.004199767917160585 0.013073221398697338 0.004199793964223654 0.013228322273632302" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3259361359989947,0.42446920933120696) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007133363590439101 0.005885450088827009 C 0.00717282465526862 0.006049151562298077 0.0077620067443189234 0.008000264861593756 0.00760689636839334 0.007849867770479824 C 0.0077620067443189234 0.008000264861593756 0.009110337412642161 0.0076769107998370546 0.008994688101546099 0.0076902151821941905" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008994688101546099 0.0076902151821941905 C 0.00894839089489513 0.007575300257380713 0.008278918414376486 0.006529198497675229 0.008439121621734477 0.006311236084432459 C 0.008278918414376486 0.006529198497675229 0.006958343612543188 0.010638641479163683 0.00707224961325021 0.010305764141107435" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00707224961325021 0.010305764141107435 C 0.00709273462657745 0.01016113501243656 0.007323162604609501 0.008201855092700246 0.0073180697731770935 0.008570214597056949 C 0.007323162604609501 0.008201855092700246 0.007117971408544268 0.005661719713141181 0.007133363590439101 0.005885450088827009" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3259361359989947,0.42446920933120696) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.044970405401427375 0.046858773955723444 C 0.04491501225595333 0.04682906007521127 0.044781383999639233 0.0462258614315213 0.04477889609928857 0.04630934666056268 C 0.044781383999639233 0.0462258614315213 0.0450483410714275 0.04583434511252316 0.04500026020563536 0.04585695120722685 C 0.0450483410714275 0.04583434511252316 0.04541736820796411 0.046002782774983396 0.04535586648879426 0.04603807352411848 C 0.04541736820796411 0.046002782774983396 0.045745593115355504 0.04548578219282173 0.0457382808356736 0.04543346221760588 C 0.045745593115355504 0.04548578219282173 0.04537962422545657 0.046784689204885196 0.04544361384497709 0.04666591322670873 C 0.04537962422545657 0.046784689204885196 0.04491501225595333 0.04682906007521127 0.044970405401427375 0.046858773955723444 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.327059645553623,0.42446941102345465) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004199793964223654 0.013228322273632298 C 0.0042622111617030035 0.01322833347875717 0.005073634728934549 0.013228479145380488 0.004948800333975849 0.013228456735130747 C 0.005073634728934549 0.013228479145380488 0.005822641098686744 0.013228613606878934 0.005697806703728043 0.013228591196629193 C 0.005822641098686744 0.013228613606878934 0.006509230270959599 0.013228736863252514 0.006446813073480249 0.013228725658127643" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006446813073480249 0.013228725658127643 C 0.006446839120543317 0.013383826533062606 0.006447177732363207 0.015400137907217119 0.006447125638237069 0.015089936157347194 C 0.006447177732363207 0.015400137907217119 0.006447490297120043 0.017261348406436672 0.0064474382029939045 0.016951146656566746 C 0.006447490297120043 0.017261348406436672 0.006447776814813804 0.018967458030721265 0.006447750767750735 0.018812357155786302" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006447750767750735 0.018812357155786302 C 0.006385333570271385 0.018812345950661433 0.005573910003039829 0.01881220028403811 0.0056987443979985295 0.018812222694287853 C 0.005573910003039829 0.01881220028403811 0.004824903633287635 0.018812065822539664 0.0049497380282463345 0.018812088232789407 C 0.004824903633287635 0.018812065822539664 0.00413831446101479 0.01881194256616609 0.0042007316584941395 0.01881195377129096" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0042007316584941395 0.01881195377129096 C 0.004200705611431071 0.018656852896355998 0.004200366999611171 0.01664054152220148 0.004200419093737309 0.016950743272071408 C 0.004200366999611171 0.01664054152220148 0.004200054434854346 0.014779331022981927 0.004200106528980484 0.015089532772851853 C 0.004200054434854346 0.014779331022981927 0.004199767917160585 0.013073221398697338 0.004199793964223654 0.013228322273632302" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3281831551082513,0.4244696127157023) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007379268651273203 0.0059040358661706285 C 0.007393867575963674 0.006156551561306078 0.007643405809331167 0.009228828785216026 0.00755445574755885 0.008934224207796018 C 0.007643405809331167 0.009228828785216026 0.008569815728164192 0.009303968465366165 0.008446669392541009 0.009439290795210714 C 0.008569815728164192 0.009303968465366165 0.009081006973578387 0.007132945037532328 0.00903221177503705 0.007310356249661434" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00903221177503705 0.007310356249661434 C 0.009011557128950784 0.007545560767067888 0.008645248031254391 0.010350030793739345 0.008784356022001862 0.010132810458538876 C 0.008645248031254391 0.010350030793739345 0.007244462541406179 0.00989901608986108 0.0073629158860673855 0.009917000272067066" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0073629158860673855 0.009917000272067066 C 0.007342227890907463 0.00977827573049991 0.0071160226745821354 0.007917892072769831 0.007114659944148317 0.008252305773261201 C 0.0071160226745821354 0.007917892072769831 0.007401319376866944 0.005708346707246414 0.007379268651273203 0.0059040358661706285" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3281831551082513,0.4244696127157023) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.045123187795067195 0.043565448934449594 C 0.045138441631825905 0.043726463593489195 0.04501095940175679 0.04492581008507418 0.04502855136732543 0.04488832181590257 C 0.04501095940175679 0.04492581008507418 0.044878453907016225 0.043927446001619096 0.044912084208243545 0.04401530816450895 C 0.044878453907016225 0.043927446001619096 0.04459749756314596 0.04376951375739595 0.044624987752597566 0.04383397586122432 C 0.04459749756314596 0.04376951375739595 0.044600578399292864 0.043168610422418735 0.044582201934824255 0.04324176291856848 C 0.044600578399292864 0.043168610422418735 0.04489058748124114 0.042983119742084144 0.0448455053262209 0.042956145907427384 C 0.04489058748124114 0.042983119742084144 0.045138441631825905 0.043726463593489195 0.045123187795067195 0.043565448934449594 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.3293066646628796,0.42446981440795) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004199793964223654 0.013228322273632298 C 0.0042622111617030035 0.01322833347875717 0.005073634728934549 0.013228479145380488 0.004948800333975849 0.013228456735130747 C 0.005073634728934549 0.013228479145380488 0.005822641098686744 0.013228613606878934 0.005697806703728043 0.013228591196629193 C 0.005822641098686744 0.013228613606878934 0.006509230270959599 0.013228736863252514 0.006446813073480249 0.013228725658127643" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006446813073480249 0.013228725658127643 C 0.006446839120543317 0.013383826533062606 0.006447177732363207 0.015400137907217119 0.006447125638237069 0.015089936157347194 C 0.006447177732363207 0.015400137907217119 0.006447490297120043 0.017261348406436672 0.0064474382029939045 0.016951146656566746 C 0.006447490297120043 0.017261348406436672 0.006447776814813804 0.018967458030721265 0.006447750767750735 0.018812357155786302" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006447750767750735 0.018812357155786302 C 0.006385333570271385 0.018812345950661433 0.005573910003039829 0.01881220028403811 0.0056987443979985295 0.018812222694287853 C 0.005573910003039829 0.01881220028403811 0.004824903633287635 0.018812065822539664 0.0049497380282463345 0.018812088232789407 C 0.004824903633287635 0.018812065822539664 0.00413831446101479 0.01881194256616609 0.0042007316584941395 0.01881195377129096" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0042007316584941395 0.01881195377129096 C 0.004200705611431071 0.018656852896355998 0.004200366999611171 0.01664054152220148 0.004200419093737309 0.016950743272071408 C 0.004200366999611171 0.01664054152220148 0.004200054434854346 0.014779331022981927 0.004200106528980484 0.015089532772851853 C 0.004200054434854346 0.014779331022981927 0.004199767917160585 0.013073221398697338 0.004199793964223654 0.013228322273632302" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3304301742175079,0.4244700161001977) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007159218450778857 0.005885454730287216 C 0.007275451055143365 0.005930243454389479 0.00870486144868566 0.006573315746119686 0.008554009703152954 0.00642291941951437 C 0.00870486144868566 0.006573315746119686 0.00900405853833953 0.00779581825205405 0.008969439397171331 0.0076902106495509975" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008969439397171331 0.0076902106495509975 C 0.008852125599860164 0.007622428850792046 0.007405870800092627 0.0070947922676055705 0.007561673829437314 0.006876829064443578 C 0.007405870800092627 0.0070947922676055705 0.00706131381300157 0.010591514089415853 0.0070998030450350885 0.010305769087494908" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0070998030450350885 0.010305769087494908 C 0.007136035785297161 0.010189194661508673 0.007539547211991944 0.008538516445892774 0.007534595928179963 0.008906875975660082 C 0.007539547211991944 0.008538516445892774 0.007127936994328761 0.005633669626506144 0.007159218450778854 0.005885454730287216" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3304301742175079,0.4244700161001977) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04505874502826838 0.04679924185647612 C 0.045002673472047026 0.04679064019561029 0.04480692428073522 0.04624994295300024 0.04481405802061365 0.046332529885391445 C 0.04480692428073522 0.04624994295300024 0.04501630244924584 0.045768320923776175 0.04497314014972726 0.04580819866778169 C 0.04501630244924584 0.045768320923776175 0.04538649044376097 0.04579675228306087 0.0453320056148366 0.04585399695732523 C 0.04538649044376097 0.04579675228306087 0.045639867353522406 0.04516974198148073 0.04562695809681964 0.04512126257660939 C 0.045639867353522406 0.04516974198148073 0.045439565606223926 0.04657558142243688 0.045486916695269865 0.04643574981578132 C 0.045439565606223926 0.04657558142243688 0.045002673472047026 0.04679064019561029 0.04505874502826838 0.04679924185647612 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.33155368377213623,0.42447021779244537) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004199793964223654 0.013228322273632298 C 0.0042622111617030035 0.01322833347875717 0.005073634728934549 0.013228479145380488 0.004948800333975849 0.013228456735130747 C 0.005073634728934549 0.013228479145380488 0.0058528200579565405 0.013232570679303057 0.005697806703728043 0.013228591196629193 C 0.0058528200579565405 0.013232570679303057 0.00690155674146696 0.013280178804766112 0.0068089605847178125 0.013276210527217117" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0068089605847178125 0.013276210527217117 C 0.006802370881616063 0.013424446924210678 0.00671800235900414 0.01536146540710636 0.006729884147496826 0.015055047291139847 C 0.00671800235900414 0.01536146540710636 0.006655569052116122 0.01726633707420248 0.006666379122805578 0.016953227918815275 C 0.006655569052116122 0.01726633707420248 0.006594645313924839 0.018967284592200553 0.006600163299223357 0.018812357155786302" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006600163299223357 0.018812357155786302 C 0.006525045057454621 0.018812345950661433 0.005561208958750444 0.01881220028403811 0.0056987443979985295 0.018812222694287853 C 0.005561208958750444 0.01881220028403811 0.004824903633287635 0.018812065822539664 0.0049497380282463345 0.018812088232789407 C 0.004824903633287635 0.018812065822539664 0.00413831446101479 0.01881194256616609 0.0042007316584941395 0.01881195377129096" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0042007316584941395 0.01881195377129096 C 0.004200705611431071 0.018656852896355998 0.004200366999611171 0.01664054152220148 0.004200419093737309 0.016950743272071408 C 0.004200366999611171 0.01664054152220148 0.004200054434854346 0.014779331022981927 0.004200106528980484 0.015089532772851853 C 0.004200054434854346 0.014779331022981927 0.004199767917160585 0.013073221398697338 0.004199793964223654 0.013228322273632302" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33267719332676454,0.42447041948469305) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007244221486655255 0.00591925942875399 C 0.007301568341320131 0.006128591956501094 0.008071174376917272 0.008625203164546102 0.00793238374263377 0.008431249761719235 C 0.008071174376917272 0.008625203164546102 0.008991152877675908 0.008231321137756159 0.008909709098057283 0.008246700262676395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008909709098057283 0.008246700262676395 C 0.008824835298662922 0.008211533104859932 0.007754892554290727 0.007997289278046864 0.007891223505324963 0.007824694368878823 C 0.007754892554290727 0.007997289278046864 0.007222280534006576 0.010525601239677392 0.007273737685646452 0.010317839172692887" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007273737685646452 0.010317839172692887 C 0.007280185245875868 0.010128785780082934 0.007348648725150179 0.007682650149378544 0.007351108408399445 0.008049198461373452 C 0.007348648725150179 0.007682650149378544 0.007235314243176572 0.005741764509369035 0.007244221486655255 0.00591925942875399" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33267719332676454,0.42447041948469305) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04469070794769275 0.04278548449888497 C 0.04479460823169566 0.04276330491137254 0.04566927853878311 0.0431274503847128 0.04565414896646367 0.043086196073273554 C 0.04566927853878311 0.0431274503847128 0.04479894570861297 0.04334819621724881 0.04487226281552604 0.043280536236155964 C 0.04479894570861297 0.04334819621724881 0.04474449040301397 0.04395394410014491 0.04477434368350681 0.04389811584638766 C 0.04474449040301397 0.04395394410014491 0.0444834402725221 0.04390499488766249 0.04451402344961194 0.0439504752812429 C 0.0444834402725221 0.04390499488766249 0.04442206926660213 0.04325526855822619 0.04440734555842873 0.04335235112342268 C 0.04442206926660213 0.04325526855822619 0.04479460823169566 0.04276330491137254 0.04469070794769275 0.04278548449888497 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33267719332676454,0.42447041948469305) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04440783667913565 0.04627679796569863 C 0.0443930803627049 0.04617971010825304 0.044544881586577545 0.04563324265766094 0.04451431368325983 0.04567871207340961 C 0.044544881586577545 0.04563324265766094 0.04480452355241955 0.0457870039523502 0.04477465151894825 0.04573116497671456 C 0.04480452355241955 0.0457870039523502 0.04494611792138022 0.046416466089960084 0.04487277808491547 0.04634877978103725 C 0.04494611792138022 0.046416466089960084 0.0456396138394847 0.04658464956559853 0.045654729556525254 0.04654340068378858 C 0.0456396138394847 0.04658464956559853 0.04458748174064636 0.0468215494695825 0.04469138948042883 0.04684376636275667 C 0.04458748174064636 0.0468215494695825 0.0443930803627049 0.04617971010825304 0.04440783667913565 0.04627679796569863 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M 0.00028163536297966154 0.005110107163236111 C 0.00028206771613380514 0.005073785459000513 0.00028767972909337237 0.004597754880663756 0.00028682360082938496 0.004674246712408934 C 0.00028767972909337237 0.004597754880663756 0.00029233267725735455 0.0041520350547844 0.00029190890214751073 0.0041922051822939795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00029190890214751073 0.0041922051822939795 C 0.0008067067895287188 0.0041922051822939795 0.007549676256821046 0.004192205182293981 0.006469483550722009 0.004192205182293981 C 0.007549676256821046 0.004192205182293981 0.013819616194053785 0.0041922051822939795 0.013254221375335957 0.0041922051822939795" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013254221375335957 0.0041922051822939795 C 0.013252814816067377 0.004231841162427391 0.01323463167474293 0.0047443287756401 0.013237342664113002 0.004667836943894922 C 0.01323463167474293 0.0047443287756401 0.01322038507279361 0.005146963014847879 0.013221689502895102 0.005110107163236113" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013221689502895102 0.005110107163236113 C 0.012659005673547344 0.005110107163236113 0.005391145705729055 0.005110107163236111 0.006469483550722009 0.005110107163236111 C 0.005391145705729055 0.005110107163236111 -0.00023401865266553122 0.005110107163236115 0.00028163536297966414 0.005110107163236115" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M -0.0003447008961596702 -0.006992559264315182 C -0.0003503309269493542 -0.007030450168967683 -0.00042377087376427194 -0.0075237419518903665 -0.00041226126563587785 -0.00744725012014519 C -0.00042377087376427194 -0.0075237419518903665 -0.0004886957710391093 -0.007949062172349985 -0.00048281619370039926 -0.007910461245257308" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.00048281619370039926 -0.007910461245257308 C 9.654211833480146E-05 -0.007910461245257308 0.007649874080066958 -0.007910461245257308 0.0064694835507220095 -0.007910461245257308 C 0.007649874080066958 -0.007910461245257308 0.014282902375748736 -0.007910461245257315 0.013681870158438988 -0.007910461245257315" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013681870158438988 -0.007910461245257315 C 0.013680575128847676 -0.007873622834814437 0.013663642429932826 -0.007391908488197598 0.013666329803343232 -0.0074684003199427754 C 0.013663642429932826 -0.007391908488197598 0.013648229333695023 -0.006952905843012879 0.013649621677514115 -0.006992559264315179" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013649621677514115 -0.006992559264315179 C 0.013051276833614773 -0.006992559264315179 0.005303290002915859 -0.006992559264315182 0.006469483550722008 -0.006992559264315182 C 0.005303290002915859 -0.006992559264315182 -0.0009125496000664739 -0.006992559264315182 -0.0003447008961596676 -0.006992559264315182" fill="none" stroke="none" stroke-width="0"/>
</g><g id="逆十字">
<g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.09500000000000001,-0.05688059287924617)"><path d="M 0.09766891141258616 0.05116478927476477 C 0.09780447955904113 0.05110072806424934 0.09963781245181391 0.05050302386523123 0.0992957291700458 0.05039605474857962 C 0.09963781245181391 0.05050302386523123 0.10198042592911671 0.05261944900175113 0.10177391079380356 0.052448418674584094" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10177391079380356 0.052448418674584094 C 0.10162730367304579 0.052533901724175 0.0998565686175209 0.05404309163780354 0.10001462534471038 0.053474215269674955 C 0.0998565686175209 0.05404309163780354 0.09995746300853302 0.06201309810794493 0.09987723006752976 0.059274935092127105 C 0.09995746300853302 0.06201309810794493 0.10106910318418444 0.08858694115676906 0.10097742063674946 0.0863321714594889" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10097742063674946 0.0863321714594889 C 0.10117499370699873 0.0863321714594889 0.10369188380520726 0.08630441401234415 0.10334829747974075 0.0863321714594889 C 0.10369188380520726 0.08630441401234415 0.10530526931392761 0.08582471752584933 0.10510045654234755 0.08599908209375184 C 0.10530526931392761 0.08582471752584933 0.10586485025506427 0.08409318952390091 0.10580605073870145 0.08423979664465867" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10580605073870145 0.08423979664465867 C 0.10582863616707437 0.08444631177997182 0.10608049849849754 0.08706006155018457 0.10607707587917652 0.08671797826841646 C 0.10608049849849754 0.08706006155018457 0.10582795936150183 0.08848036417233104 0.10584712217055373 0.08834479602587608" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10584712217055373 0.08834479602587608 C 0.10585685340498927 0.08848036417233106 0.10594094869419442 0.09031369706510385 0.10596389698378017 0.08997161378333574 C 0.10594094869419442 0.09031369706510385 0.10553906317150337 0.09265631054240664 0.10557174269552466 0.0924497954070935" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10557174269552466 0.0924497954070935 C 0.10553246884942658 0.09230318828633574 0.10491516944103223 0.0905161453900978 0.10510045654234755 0.09069050995800032 C 0.10491516944103223 0.0905161453900978 0.10300471115427424 0.09032966314511848 0.10334829747974075 0.09035742059226323 C 0.10300471115427424 0.09032966314511848 0.10077984756650019 0.09035742059226323 0.10097742063674946 0.09035742059226323" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10097742063674946 0.09035742059226323 C 0.10097742063674946 0.09196108064647435 0.10100517808389421 0.11156062220841521 0.10097742063674946 0.10960134124279662 C 0.10100517808389421 0.11156062220841521 0.10148487457038904 0.11430989614068474 0.10131051000248652 0.11386879217968636 C 0.10148487457038904 0.11430989614068474 0.10321640257233747 0.11498007182436809 0.1030697954515797 0.11489458877477719" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1030697954515797 0.11489458877477719 C 0.10286328031626654 0.11506561910194424 0.10024953054605382 0.11705392181743327 0.10059161382782193 0.11694695270078166 C 0.10024953054605382 0.11705392181743327 0.09882922792390732 0.11611415696408109 0.0989647960703623 0.11617821817459652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0989647960703623 0.11617821817459652 C 0.09882922792390732 0.11624227938511195 0.09699589503113452 0.11683998358413006 0.09733797831290264 0.11694695270078166 C 0.09699589503113452 0.11683998358413006 0.09465328155383174 0.11472355844761015 0.09485979668914488 0.11489458877477719" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09485979668914488 0.11489458877477719 C 0.09500640380990263 0.1148091057251863 0.09679344670614057 0.11342768821868796 0.09661908213823804 0.11386879217968633 C 0.09679344670614057 0.11342768821868796 0.09697992895111988 0.10764206027717803 0.09695217150397513 0.10960134124279662 C 0.09697992895111988 0.10764206027717803 0.09695217150397513 0.08875376053805212 0.09695217150397513 0.09035742059226323" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09695217150397513 0.09035742059226323 C 0.09678153312519776 0.09035742059226323 0.09458785932465211 0.09038517803940799 0.09490451095864672 0.09035742059226323 C 0.09458785932465211 0.09038517803940799 0.09298674852116526 0.09086487452590285 0.0931523518960399 0.09069050995800032 C 0.09298674852116526 0.09086487452590285 0.09289768034049364 0.09259640252785126 0.09291727046015105 0.0924497954070935" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09291727046015105 0.0924497954070935 C 0.09285547563507271 0.09224328027178036 0.09210496812799988 0.08962953050156762 0.09217573255921094 0.08997161378333574 C 0.09210496812799988 0.08962953050156762 0.09205912767948565 0.0882092278794211 0.09206809728561836 0.08834479602587608" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09206809728561836 0.08834479602587608 C 0.09202344364053285 0.08820922787942112 0.09147542522589407 0.08637589498664834 0.09153225354459217 0.08671797826841646 C 0.09147542522589407 0.08637589498664834 0.0913739827876286 0.08403328150934551 0.09138615746124118 0.08423979664465867" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09138615746124118 0.08423979664465867 C 0.09149615573866471 0.08438640376541642 0.09299933291510736 0.08617344666165436 0.09270613679032357 0.08599908209375184 C 0.09299933291510736 0.08617344666165436 0.09525834718478435 0.08635992890663366 0.09490451095864672 0.0863321714594889 C 0.09525834718478435 0.08635992890663366 0.0971228098827525 0.0863321714594889 0.09695217150397513 0.0863321714594889" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09695217150397513 0.0863321714594889 C 0.09686048895654015 0.08407740176220875 0.09571623309946266 0.056536772076309263 0.09585198093475543 0.05927493509212709 C 0.09571623309946266 0.056536772076309263 0.09513252507184634 0.05290533890154637 0.0953231974804619 0.053474215269674955 C 0.09513252507184634 0.05290533890154637 0.09341730491061098 0.05236293562499319 0.09356391203136874 0.052448418674584094" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09356391203136874 0.052448418674584094 C 0.0937704271666819 0.052277388347417054 0.09638417693689465 0.05028908563192801 0.09604209365512653 0.05039605474857962 C 0.09638417693689465 0.05028908563192801 0.09780447955904115 0.051228850485280204 0.09766891141258617 0.051164789274764776" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3280616009989604,0.40109412952094253) rotate(0) scale(1,1) translate(-0.09463936051095927,-0.0929511412730742)"><path d="M 0.09334347585318313 0.056967747539079815 C 0.09341125992641061 0.05690646848756754 0.09432792637279701 0.05623239892093246 0.09415688473191294 0.05623239892093246 C 0.09432792637279701 0.05623239892093246 0.09549923311144841 0.05702902659059209 0.09539597554379184 0.056967747539079815" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09539597554379184 0.056967747539079815 C 0.09530410174811697 0.057060481953895924 0.09420668227463797 0.058656688250226914 0.09429348999569342 0.058080560516873124 C 0.09420668227463797 0.058656688250226914 0.09445103151318074 0.06671923598989311 0.09435428289112635 0.06388128033932526 C 0.09445103151318074 0.06671923598989311 0.09554615600778102 0.09449059065571758 0.09545447346034605 0.0921360283236874" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09545447346034605 0.0921360283236874 C 0.09575183916534535 0.0921360283236874 0.09946624088055424 0.09212478655759378 0.0990228619203377 0.0921360283236874 C 0.09946624088055424 0.09212478655759378 0.1009416876253356 0.0918980115687954 0.1007750209829445 0.0920011271305639 C 0.1009416876253356 0.0918980115687954 0.10104351501620483 0.09080676778679063 0.10102286162903096 0.0908986415824655" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10102286162903096 0.0908986415824655 C 0.10103924137659243 0.09100189915012206 0.1012194185997686 0.09230877403522846 0.1012194185997686 0.09213773239434439 C 0.1012194185997686 0.09230877403522846 0.10100648188146949 0.0930189253463017 0.10102286162903096 0.09295114127307422" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10102286162903096 0.09295114127307422 C 0.10103292135804962 0.0930189253463017 0.10114357837725477 0.0939355917926881 0.10114357837725477 0.09376455015180403 C 0.10114357837725477 0.0939355917926881 0.1010128019000123 0.0951068985313395 0.10102286162903096 0.09500364096368293" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10102286162903096 0.09500364096368293 C 0.10100220824185709 0.09491176716800806 0.10060835434055339 0.09379803985381603 0.1007750209829445 0.09390115541558453 C 0.10060835434055339 0.09379803985381603 0.09857948296012116 0.09375501245636739 0.0990228619203377 0.09376625422246102 C 0.09857948296012116 0.09375501245636739 0.09515710775534675 0.09376625422246102 0.09545447346034605 0.09376625422246102" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09545447346034605 0.09376625422246102 C 0.09545447346034605 0.09546970691142216 0.09546571522643968 0.11626676009036335 0.09545447346034605 0.11420768648999473 C 0.09546571522643968 0.11626676009036335 0.09569249021523805 0.11892349275310807 0.09558937465346956 0.11847513742688448 C 0.09569249021523805 0.11892349275310807 0.09678373399724284 0.11968068481949387 0.09669186020156798 0.11958795040467776" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09669186020156798 0.11958795040467776 C 0.0965886026339114 0.11964922945619004 0.09528172774880501 0.12032329902282511 0.09545276938968908 0.12032329902282511 C 0.09528172774880501 0.12032329902282511 0.09457157643773177 0.11952667135316548 0.09463936051095925 0.11958795040467776" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09463936051095925 0.11958795040467776 C 0.09457157643773177 0.11964922945619004 0.09365490999134538 0.12032329902282511 0.09382595163222943 0.12032329902282511 C 0.09365490999134538 0.12032329902282511 0.09248360325269399 0.11952667135316548 0.09258686082035056 0.11958795040467776" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09258686082035056 0.11958795040467776 C 0.09267873461602542 0.11949521598986165 0.09379246193021742 0.11802678210066088 0.09368934636844893 0.11847513742688447 C 0.09379246193021742 0.11802678210066088 0.09383548932766608 0.1121486128896261 0.09382424756157245 0.11420768648999473 C 0.09383548932766608 0.1121486128896261 0.09382424756157245 0.09206280153349987 0.09382424756157245 0.09376625422246102" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09382424756157245 0.09376625422246102 C 0.09355381654804505 0.09376625422246102 0.09016263113049905 0.09377749598855464 0.09057907539924367 0.09376625422246102 C 0.09016263113049905 0.09377749598855464 0.08866024969424575 0.09400427097735302 0.08882691633663686 0.09390115541558453 C 0.08866024969424575 0.09400427097735302 0.08855842230337653 0.09509551475935779 0.0885790756905504 0.09500364096368293" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0885790756905504 0.09500364096368293 C 0.08856269594298893 0.09490038339602636 0.08835438630462814 0.09359350851091996 0.08838251871981274 0.09376455015180403 C 0.08835438630462814 0.09359350851091996 0.0882297340407119 0.09288335719984674 0.08824148670833504 0.09295114127307422" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08824148670833504 0.09295114127307422 C 0.0882232192878798 0.09288335719984674 0.08800458994362122 0.09196669075346033 0.08802227766287204 0.09213773239434439 C 0.08800458994362122 0.09196669075346033 0.08802981377852954 0.09079538401480892 0.08802923407732512 0.0908986415824655" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08802923407732512 0.0908986415824655 C 0.08807832754794168 0.09099051537814036 0.08883084250155036 0.09210424269233239 0.08861835572472382 0.0920011271305639 C 0.08883084250155036 0.09210424269233239 0.09101289971898106 0.09214727008978103 0.09057907539924367 0.0921360283236874 C 0.09101289971898106 0.09214727008978103 0.09409467857509986 0.0921360283236874 0.09382424756157245 0.0921360283236874" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09382424756157245 0.0921360283236874 C 0.09373256501413749 0.08978146599165722 0.09260482483811111 0.06104332468875739 0.09272405699235275 0.06388128033932525 C 0.09260482483811111 0.06104332468875739 0.09227403830819127 0.057504432783519334 0.0923934617106728 0.05808056051687312 C 0.09227403830819127 0.057504432783519334 0.09119910236689956 0.056875013124263706 0.09129097616257442 0.056967747539079815" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09129097616257442 0.056967747539079815 C 0.09139423373023099 0.05690646848756754 0.09270110861533737 0.05623239892093246 0.0925300669744533 0.05623239892093246 C 0.09270110861533737 0.05623239892093246 0.09341125992641061 0.05702902659059209 0.09334347585318313 0.056967747539079815" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M -0.004320350882016796 0.001887971372377396 C -0.0033234334511190603 0.003630640357003903 0.003109547984299569 0.013220775659119345 0.0016611537033696196 0.01234398528013644 C 0.003109547984299569 0.013220775659119345 0.005157785365399495 0.010248171849015575 0.004370014803562901 0.007148713646274819 C 0.005157785365399495 0.010248171849015575 0.006724070786193564 0.03490607130496533 0.006387777074389183 0.030940734496580972" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006387777074389183 0.030940734496580972 C 0.005802516766755729 0.028433514557653097 0.0019849237554237474 0.013749227979717437 0.002876215228588457 0.015897414863013735 C 0.0019849237554237474 0.013749227979717437 -4.447942058090652E-05 0.017153331306841695 0.0010400282354009274 0.01805161319680318 C -4.447942058090652E-05 0.017153331306841695 -0.004409307197753125 0.009250408577651765 -0.003630830707302546 0.010507723523244824" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.003630830707302546 0.010507723523244824 C -0.0036708878484422326 0.01025097306890506 -0.004171484911470436 0.006930633680493073 -0.004111516400978785 0.007426718071167665 C -0.004171484911470436 0.006930633680493073 -0.0043678557066221995 0.004093148610250529 -0.004350452833202365 0.0045547108351497185 C -0.0043678557066221995 0.004093148610250529 -0.00431784238608467 0.001665743083813039 -0.0043203508820168005 0.001887971372377399" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.019383354696741864 0.0012413488341550586 C 0.019378067007848686 0.001482934303136587 0.019307898463268927 0.0046625273962428776 0.019319902430023746 0.004140374461933399 C 0.019307898463268927 0.0046625273962428776 0.019226885304339993 0.00800276398698223 0.01923930709568404 0.0075071840458687976 C 0.019226885304339993 0.00800276398698223 0.019165135420412767 0.010302346231080074 0.01917084093389517 0.010087333755294591" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01917084093389517 0.010087333755294591 C 0.018944956171806856 0.011290509678783221 0.01735551913541792 0.0182747361475129 0.017815532361365276 0.017306389296226375 C 0.01735551913541792 0.0182747361475129 0.015873171139945793 0.01810404585119655 0.016410761578211034 0.01589741486301374 C 0.015873171139945793 0.01810404585119655 0.014286527757367629 0.032987635285708146 0.01458998973177383 0.03054617522532323" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01458998973177383 0.03054617522532323 C 0.014582854223203347 0.026581084620448364 0.01495624323717587 0.003700720407830116 0.014547176680350929 0.006755631596074028 C 0.01495624323717587 0.003700720407830116 0.01785041874212197 0.011297660968873266 0.017044389072723484 0.01221670809585976 C 0.01785041874212197 0.011297660968873266 0.01977318230074493 -0.0005878777094623954 0.019383354696741864 0.0012413488341550555" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="虫性">
<g id="刺">
<g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.015096514070287392,-0.015096514070287392)"><path d="M -0.00173880004739094 -0.0030387992780357962 C -0.0013703082445244046 -0.0028148870932892564 0.0032870764498150575 -5.132359752071307E-05 0.002683101587007484 -0.0003518530610773194 C 0.0032870764498150575 -5.132359752071307E-05 0.005744381366240979 0.0006441715634535463 0.005508898306299941 0.0005675542846434797" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005508898306299941 0.0005675542846434797 C 0.005488728718411683 0.0007925894096799703 0.00518269108150585 0.0037179827770116524 0.005266863251640835 0.003267975785081366 C 0.00518269108150585 0.0037179827770116524 0.0044348296824334036 0.006192610054700714 0.004498832264680129 0.0059676381878069175" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004498832264680129 0.0059676381878069175 C 0.0042093283504441685 0.005693889443895226 0.0005049826011760164 0.0019321168053797275 0.0010247852938486054 0.0026826532608666197 C 0.0005049826011760164 0.0019321168053797275 -0.0019690988258275685 -0.00351558698961099 -0.00173880004739094 -0.0030387992780357893" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.015096514070287392,-0.015096514070287392)"><path d="M -0.0031633354763297983 0.009164871450769312 C -0.002776691809229937 0.009300156592642817 0.0020742453997454912 0.010948767093188557 0.0014763885288685366 0.010788293153251373 C 0.0020742453997454912 0.010948767093188557 0.004222160177970752 0.0111157475280792 0.0040109469741936585 0.011090558730015522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0040109469741936585 0.011090558730015522 C 0.004041632393959829 0.011306969066210084 0.0044049221779484645 0.014121691518247383 0.0043791720113877065 0.01368748276435027 C 0.0044049221779484645 0.014121691518247383 0.004315013719717337 0.01651886219448343 0.004319948972922751 0.01630106377678088" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004319948972922751 0.01630106377678088 C 0.004004518075496761 0.016103943683279272 -8.882883362683683E-05 0.013340939960927289 0.0005347782038108754 0.013935622654761585 C -8.882883362683683E-05 0.013340939960927289 -0.003471511616341518 0.008767308850436629 -0.0031633354763297952 0.009164871450769317" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.015096514070287392,-0.015096514070287392)"><path d="M -0.0017800647607361766 0.02042697452150853 C -0.0013940589197291907 0.02047631856495793 0.003426288257132305 0.02104783683553483 0.0028520053313476545 0.021019103042901346 C 0.003426288257132305 0.02104783683553483 0.005299607433457295 0.02075116978229442 0.00511133034867963 0.020771780033110337" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00511133034867963 0.020771780033110337 C 0.005174363130583788 0.02095939302036101 0.005962043475602887 0.023423873791515542 0.0058677237315295245 0.023023135880118423 C 0.005962043475602887 0.023423873791515542 0.006274454239729183 0.025793759894022196 0.0062431672775599785 0.02558063496987575" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0062431672775599785 0.02558063496987575 C 0.005939459288879065 0.025459724673096665 0.0019300687435310025 0.023700239704496123 0.002598671413389015 0.024129711408526724 C 0.0019300687435310025 0.023700239704496123 -0.0021449594419132726 0.020118413114257022 -0.0017800647607361735 0.020426974521508538" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.05789150479488091,-0.05789150479488089)"><path d="M 0.0671058326409654 0.05580147435429018 C 0.06647143487210619 0.05648862183256386 0.0582242638769364 0.0640472440935744 0.059493059414654825 0.0640472440935744 C 0.0582242638769364 0.0640472440935744 0.051245888419485054 0.055114326876016494 0.05188028618834427 0.05580147435429018" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05188028618834427 0.05580147435429018 C 0.05185916090726273 0.05518191726846741 0.051821904225157735 0.0473486884166873 0.05162678281536584 0.048366789324416966 C 0.051821904225157735 0.0473486884166873 0.05443798979672044 0.04318571963962733 0.05422174310584701 0.043584263461534226" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05422174310584701 0.043584263461534226 C 0.05466101946491433 0.043435375819223035 0.06037161213278947 0.04179761175379991 0.05949305941465483 0.04179761175379991 C 0.06037161213278947 0.04179761175379991 0.06520365208252998 0.043733151103845416 0.06476437572346266 0.043584263461534226" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06476437572346266 0.043584263461534226 C 0.0649806224143361 0.043982807283441124 0.06755445742373573 0.04938489023214663 0.06735933601394384 0.048366789324416966 C 0.06755445742373573 0.04938489023214663 0.06708470735988387 0.05642103144011294 0.0671058326409654 0.05580147435429018" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399134)"><path d="M 0.017614006419352776 0.018074412801596006 C 0.0170789234380087 0.018277723292187333 0.010119171196687555 0.020553363958486788 0.011193010643223875 0.020514138688691914 C 0.010119171196687555 0.020553363958486788 0.004189176595724695 0.018381030818338036 0.004727933060916939 0.018545116039134488" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="竜性">
<g id="鱗">
<g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.08265647283612707 0.020718115823300038 C 0.08308094548409449 0.021197548076779295 0.08868473378057586 0.027364365512984552 0.08775014461173612 0.02647130286505114 C 0.08868473378057586 0.027364365512984552 0.09438165938307616 0.03184849799295512 0.09387154286220385 0.03143486759850096" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09387154286220385 0.03143486759850096 C 0.0938390734195378 0.03194075032062185 0.09344945642316459 0.03866546985729865 0.09348190955021128 0.03750546026395167 C 0.09344945642316459 0.03866546985729865 0.09348212165326285 0.0460091095898908 0.09348210533764349 0.04535498271866471" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09348210533764349 0.04535498271866471 C 0.09255451865098742 0.044880646149235426 0.08033065422987745 0.03961102531656855 0.08235106509777057 0.03966294388551331 C 0.08033065422987745 0.03961102531656855 0.06814435074168894 0.04515437789181211 0.06923717492292598 0.04473195989132759" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06923717492292598 0.04473195989132759 C 0.06934178171850852 0.04411070844595568 0.07071384557175239 0.036106374102696466 0.0704924564699165 0.037276942546864714 C 0.07071384557175239 0.036106374102696466 0.07201062645121005 0.030135821562512235 0.0718938441449567 0.03068513856130858" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0718938441449567 0.03068513856130858 C 0.07233419994329193 0.030376307642715948 0.07807499944924375 0.026148582310029634 0.07717811372497956 0.026979167538197013 C 0.07807499944924375 0.026148582310029634 0.08311300276205599 0.02019636151372529 0.08265647283612704 0.020718115823300038" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32559166943946466,0.3613867745231383) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.08091988939481033 0.043479756857056046 C 0.08141430405786107 0.043988341227696806 0.08781961793774207 0.05043787480311124 0.08685286535141927 0.04958276930474515 C 0.08781961793774207 0.05043787480311124 0.09299325835395603 0.05408754396517437 0.09252092043068397 0.05374102283744905" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09252092043068397 0.05374102283744905 C 0.09248631381146347 0.05422358232622917 0.0920397852924812 0.06068733096983329 0.09210564100003789 0.059531736702810464 C 0.0920397852924812 0.06068733096983329 0.09169940285166762 0.06828118881996563 0.0917306519400038 0.06760815404172292" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0917306519400038 0.06760815404172292 C 0.09079150004228338 0.06709843936965995 0.0785468239766494 0.0614973495007245 0.08046082916735883 0.06149157797696733 C 0.0785468239766494 0.0614973495007245 0.06778773635850155 0.06819289852262912 0.06876258965149057 0.06767741232680899" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06876258965149057 0.06767741232680899 C 0.06861778729944372 0.06697812341999684 0.0668825006837614 0.0580817055467691 0.06702496142692839 0.0592859454450632 C 0.0668825006837614 0.0580817055467691 0.06705540234236668 0.05272158255579783 0.06705306073348681 0.05322653354727978" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06705306073348681 0.05322653354727978 C 0.06767225124834032 0.05289025936209506 0.07563891596683923 0.048379011934211166 0.07448334691172895 0.049191243325063146 C 0.07563891596683923 0.048379011934211166 0.08145626793506708 0.043003799651388785 0.0809198893948103 0.043479756857056046" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3257678519993171,0.37355643030362135) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.0807031694296546 0.04510962330421967 C 0.0811976248214043 0.045611042671474894 0.08757762956721439 0.05200181726032322 0.08663663413065115 0.05112665571128231 C 0.08757762956721439 0.05200181726032322 0.09244165471322707 0.055985304074496256 0.09199511466841354 0.05561156189271057" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09199511466841354 0.05561156189271057 C 0.09195057260434716 0.05606042813474104 0.09136828718261394 0.06206464811743801 0.09146060989961699 0.06099795679707623 C 0.09136828718261394 0.06206464811743801 0.0908394614114403 0.0690296828153832 0.09088724206437697 0.0684118577370519" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09088724206437697 0.0684118577370519 C 0.09010349389907835 0.06792893765402196 0.07989580499102925 0.06255391577992576 0.08148226408079343 0.06261681674069264 C 0.07989580499102925 0.06255391577992576 0.07104702206274133 0.0680770653301125 0.07184973298720687 0.06765704620784943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07184973298720687 0.06765704620784943 C 0.07168543797761387 0.0670820048569658 0.06955587403983818 0.059749933591529414 0.06987819287209086 0.060756549997245946 C 0.06955587403983818 0.059749933591529414 0.06782388317751502 0.055146074284418097 0.0679819070001747 0.05557764933925101" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0679819070001747 0.05557764933925101 C 0.06849327811980523 0.05523878786032696 0.07517846563819766 0.05063897608924314 0.07411836043574101 0.05151131159216242 C 0.07517846563819766 0.05063897608924314 0.0812519035124807 0.04457614928022444 0.08070316942965457 0.04510962330421967" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32678156309177264,0.38753491852132443) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.080030831016662 0.04511145192418957 C 0.08050054558480858 0.0455810927414024 0.08653021011897696 0.05152850811109719 0.08566740583442094 0.05074714173074355 C 0.08653021011897696 0.05152850811109719 0.09077757214774375 0.054799574051573964 0.0903844824313343 0.05448784848843316" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0903844824313343 0.05448784848843316 C 0.09033676290984363 0.05495908670650133 0.08971827518458743 0.06124201776316412 0.08981184817344628 0.06014270710525115 C 0.08971827518458743 0.06124201776316412 0.08921575309765985 0.06830764882323354 0.08926160656502803 0.06767957638338874" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08926160656502803 0.06767957638338874 C 0.08843053934282408 0.06728319499034703 0.07799952624916222 0.06282320979811974 0.07928879989858065 0.06292299966688819 C 0.07799952624916222 0.06282320979811974 0.07333211634479246 0.0667786894824406 0.07379032277200694 0.06648209795816734" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07379032277200694 0.06648209795816734 C 0.0736382659013175 0.06585621847305571 0.07167172022883264 0.05793058395990211 0.07196564032373379 0.05897154413682787 C 0.07167172022883264 0.05793058395990211 0.0701214184089815 0.05357549514324412 0.07026328163319322 0.05399057583505825" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07026328163319322 0.05399057583505825 C 0.07065680350521329 0.05371029375069626 0.07579950654605647 0.049887263830141956 0.07498554409743408 0.050627190822714344 C 0.07579950654605647 0.049887263830141956 0.0804512715932643 0.04465180701597917 0.08003083101666197 0.04511145192418957" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3275212448532513,0.40110768731385665) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.07980257707125943 0.04465920772832372 C 0.08020994873152568 0.04508797127628901 0.08545940198112201 0.0505492334268937 0.08469103699445442 0.04980437030390724 C 0.08545940198112201 0.0505492334268937 0.08938395023767191 0.05391366477918237 0.08902295691127057 0.05359756520416121" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08902295691127057 0.05359756520416121 C 0.08895909876384951 0.05409677042911515 0.0881673773427261 0.060651322073810396 0.08825665914221786 0.059588027903608516 C 0.0881673773427261 0.060651322073810396 0.08792615166529869 0.06692118419183167 0.08795157531736938 0.06635709524658373" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08795157531736938 0.06635709524658373 C 0.08731699105625859 0.06599398768399421 0.07923251353870864 0.06194042509221999 0.08033656418403988 0.06199980449550951 C 0.07923251353870864 0.06194042509221999 0.07423350118917409 0.06594827056640946 0.07470296757339454 0.06564454240710947" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07470296757339454 0.06564454240710947 C 0.0746171694879787 0.06499977537994565 0.07348102940280102 0.05680534751332553 0.07367339054840448 0.057907338081143685 C 0.07348102940280102 0.05680534751332553 0.07228807076596544 0.05196343205263725 0.07239463382615306 0.05242065559329159" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07239463382615306 0.05242065559329159 C 0.07267399185921528 0.05217877973349072 0.07636425882665843 0.048871357953600515 0.07574693022289956 0.04951814527568117 C 0.07636425882665843 0.048871357953600515 0.08014054764195605 0.044254296266043935 0.0798025770712594 0.04465920772832372" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3278765712251614,0.4155844286107243) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.07967147688998899 0.04191124317056935 C 0.0800218107257861 0.04226956155190937 0.08457291563769367 0.0468263432392265 0.08387548291955435 0.046211063746649544 C 0.08457291563769367 0.0468263432392265 0.08838776839000309 0.04955155819272977 0.08804066950766087 0.04929459708149283" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08804066950766087 0.04929459708149283 C 0.0879954312354003 0.04984797084673689 0.08743428348000983 0.05687178431094386 0.08749781024053385 0.05593508226442155 C 0.08743428348000983 0.05687178431094386 0.08726005989310903 0.06091834992103885 0.08727834838137248 0.0605350216397606" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08727834838137248 0.0605350216397606 C 0.08671004312849957 0.060370502442491286 0.07938304646694085 0.058599620213477505 0.08045868534689761 0.058560791272528806 C 0.07938304646694085 0.058599620213477505 0.0738633481948075 0.061204317069362954 0.07437068182189135 0.06100096893114494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07437068182189135 0.06100096893114494 C 0.07435866130724025 0.06049635638267334 0.0741665149278279 0.0539301050123402 0.07422643564607813 0.05494561834948571 C 0.0741665149278279 0.0539301050123402 0.07360373299928943 0.04830390809672487 0.07365163320288856 0.04881480888539878" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07365163320288856 0.04881480888539878 C 0.07389029164952908 0.04859948768258434 0.07701718820316653 0.04565565730872298 0.07651553456257483 0.04623095445162543 C 0.07701718820316653 0.04565565730872298 0.07993447208394014 0.041551267230481345 0.07967147688998896 0.04191124317056935" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3279187079540962,0.42591247702468926) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.0799416043291341 0.04247665367723637 C 0.08023625887508146 0.04275282500685932 0.0841141319653605 0.04630306525173093 0.08347745888050243 0.045790709632711764 C 0.0841141319653605 0.04630306525173093 0.08792369988634159 0.048861105394862596 0.08758168134743088 0.04862492110546638" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08758168134743088 0.04862492110546638 C 0.08755485260840969 0.048922414580554484 0.08721900909495428 0.0526917940286783 0.08725973647917648 0.05219484280652359 C 0.08721900909495428 0.0526917940286783 0.0870790540915635 0.05478779351838954 0.0870929527367645 0.05458833577132293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0870929527367645 0.05458833577132293 C 0.08654488901037434 0.054485490546977614 0.07944172412879345 0.05346130487936513 0.08051618802008262 0.05335419307917911 C 0.07944172412879345 0.05346130487936513 0.07367298587639555 0.05608363439808656 0.07419938604129456 0.05587367737355522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07419938604129456 0.05587367737355522 C 0.07418879815008464 0.05556350200046367 0.07404141643249593 0.051592143282136495 0.07407233134677552 0.05215157289645668 C 0.07404141643249593 0.051592143282136495 0.07380808004686984 0.04891126776048436 0.07382840706993951 0.049160522001712996" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07382840706993951 0.049160522001712996 C 0.07406444926334768 0.048952307108354 0.07717034649577043 0.046104954254365296 0.07666091339083754 0.046661943281405015 C 0.07717034649577043 0.046104954254365296 0.08021499524065878 0.042127879543555645 0.07994160432913407 0.04247665367723637" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="刺">
<g transform="translate(0.32576459086752874,0.35419789817350467) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.023829714456833136 0.017035352851404933 C 0.024344988552497938 0.01527838674079023 0.028956937435580136 0.002979623966487301 0.027951907222151542 0.002979623966487301 C 0.028956937435580136 0.002979623966487301 0.03235971228202568 0.018792318962019636 0.03186995616426189 0.017035352851404933" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03186995616426189 0.017035352851404933 C 0.032072898310229886 0.01755863401622721 0.034361400128066794 0.02436063572209898 0.034305261915877835 0.02331472682927225 C 0.034361400128066794 0.02436063572209898 0.03239681077675033 0.030108887293330142 0.03254361471052937 0.02958625956532569" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03254361471052937 0.02958625956532569 C 0.032152336894314806 0.03008290475127114 0.02706572528352543 0.035546001796671105 0.027848280915954565 0.035546001796671105 C 0.02706572528352543 0.035546001796671105 0.022761669305165176 0.02908961437938024 0.023152947121379743 0.02958625956532569" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023152947121379743 0.02958625956532569 C 0.023006143187600706 0.029063631837321236 0.021447697193985725 0.02226881793644552 0.021391299916031278 0.023314726829272252 C 0.021447697193985725 0.02226881793644552 0.02403291566856662 0.016512071686582655 0.023829714456833132 0.017035352851404933" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32549737850510485,0.36797238599085896) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.02419861620057503 0.018083690755689656 C 0.024662362886673353 0.01650242125613642 0.02881311688144733 0.005433534759263781 0.027908589689361597 0.005433534759263781 C 0.02881311688144733 0.005433534759263781 0.031875614243248314 0.01966496025524289 0.0314348337372609 0.018083690755689656" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0314348337372609 0.018083690755689656 C 0.0316174816686321 0.018554643804029703 0.033677133304685324 0.02467644533931429 0.033626608913715265 0.023735127335770233 C 0.033677133304685324 0.02467644533931429 0.031909002888500494 0.02984987175342234 0.03204112642890163 0.02937950679821833" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03204112642890163 0.02937950679821833 C 0.031688976394308524 0.029873508455944473 0.027111025944598098 0.03530752669093202 0.02781532601378432 0.03530752669093202 C 0.027111025944598098 0.03530752669093202 0.023237375564073865 0.02888550514049219 0.023589525598666977 0.02937950679821833" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023589525598666977 0.02937950679821833 C 0.023457402058265842 0.028909141843014324 0.022054800664012362 0.02279380933222618 0.022004043113853358 0.023735127335770236 C 0.022054800664012362 0.02279380933222618 0.02438149729113517 0.01761273770734961 0.02419861620057503 0.018083690755689656" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3260370692426045,0.3811331646535287) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.02453062776994274 0.019027194869545898 C 0.02494799978743123 0.017604052319947987 0.028683678382727805 0.007642054472762613 0.027869603909850646 0.007642054472762613 C 0.028683678382727805 0.007642054472762613 0.0314399260083487 0.02045033741914381 0.031043223552960023 0.019027194869545898" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031043223552960023 0.019027194869545898 C 0.0312076066911941 0.019451052613051942 0.03306129316364201 0.024960673994808075 0.03301582121176895 0.024113487791618423 C 0.03306129316364201 0.024960673994808075 0.031469975789075656 0.02961675776750532 0.03158888697543668 0.029193429307821712" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03158888697543668 0.029193429307821712 C 0.03127195194430288 0.029685051790150473 0.027151796539563493 0.035092899095766836 0.027785666601831092 0.035092899095766836 C 0.027151796539563493 0.035092899095766836 0.02366551119709169 0.02870180682549295 0.02398244622822549 0.029193429307821712" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02398244622822549 0.029193429307821712 C 0.02386353504186447 0.028770100848138105 0.022601193787036337 0.023266301588428774 0.022555511991893235 0.024113487791618426 C 0.022601193787036337 0.023266301588428774 0.024695220751446863 0.018603337126039853 0.024530627769942737 0.019027194869545898" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32735091026922936,0.3942688145361478) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.024829438182373677 0.01987634857201652 C 0.025205072998113316 0.0185955202773784 0.028567183733880237 0.009629722214911563 0.027834516708290794 0.009629722214911563 C 0.028567183733880237 0.009629722214911563 0.03104780659693903 0.02115717686665464 0.030690774387089226 0.01987634857201652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030690774387089226 0.01987634857201652 C 0.030838719211499895 0.020257820541171957 0.03250703703670301 0.025216479784752475 0.032466112280017265 0.02445401220188179 C 0.03250703703670301 0.025216479784752475 0.031074851399593303 0.029406955180179994 0.031181871467318222 0.029025959566464747" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031181871467318222 0.029025959566464747 C 0.030896629939297805 0.029515440790935866 0.027188490075032358 0.034899734260118186 0.027758973131073197 0.034899734260118186 C 0.027188490075032358 0.034899734260118186 0.024050833266807733 0.02853647834199363 0.024336074794828154 0.029025959566464747" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024336074794828154 0.029025959566464747 C 0.024229054727103235 0.0286449639527495 0.023092947597757915 0.023691544619011108 0.023051833982129122 0.024454012201881793 C 0.023092947597757915 0.023691544619011108 0.024977571865727386 0.019494876602861082 0.024829438182373674 0.01987634857201652" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32816687262742916,0.4070321407000166) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.02509836755356152 0.02064058690424008 C 0.025436438887727196 0.019487841439065772 0.028462338549917428 0.011418623182845615 0.02780293822688693 0.011418623182845615 C 0.028462338549917428 0.011418623182845615 0.03069489912667034 0.02179333236941439 0.030373570137805516 0.02064058690424008" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030373570137805516 0.02064058690424008 C 0.030506720479775117 0.020983911676479977 0.032008206522457915 0.025446704995702438 0.03197137424144074 0.02476048417111882 C 0.032008206522457915 0.025446704995702438 0.03071923944905918 0.029218132851587204 0.03081555751001161 0.028875236799243482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03081555751001161 0.028875236799243482 C 0.030558840134793232 0.029362790891642725 0.02722151425695433 0.03472588590803439 0.027734949007391086 0.03472588590803439 C 0.02722151425695433 0.03472588590803439 0.024397623129552168 0.02838768270684424 0.024654340504770545 0.028875236799243482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024654340504770545 0.028875236799243482 C 0.024558022443818116 0.02853234074689976 0.023535526027407334 0.024074263346535205 0.02349852377334142 0.024760484171118823 C 0.023535526027407334 0.024074263346535205 0.025231687868579857 0.020297262132000185 0.025098367553561516 0.02064058690424008" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3283441682038374,0.4193770955273506) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.025340403987630575 0.021328401403241277 C 0.025644668188379682 0.020290930484584403 0.02836797788435089 0.013028634053986266 0.02777451759362344 0.013028634053986266 C 0.02836797788435089 0.013028634053986266 0.030377282403428518 0.022365872321898152 0.030088086313450176 0.021328401403241277" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030088086313450176 0.021328401403241277 C 0.03020792162122282 0.021637393698257183 0.03155925905963734 0.025653907685557406 0.03152611000672188 0.02503630894343215 C 0.03155925905963734 0.025653907685557406 0.030399188693578473 0.029048192755853696 0.03048587494843566 0.028739586308744347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03048587494843566 0.028739586308744347 C 0.03025482931073912 0.0292254059822789 0.02725123602068411 0.034569422391158976 0.02771332729607719 0.034569422391158976 C 0.02725123602068411 0.034569422391158976 0.024709734006022162 0.028253766635209794 0.024940779643718703 0.028739586308744347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024940779643718703 0.028739586308744347 C 0.02485409338886152 0.028430979861634998 0.023933846614091814 0.024418710201306898 0.02390054458543249 0.025036308943432152 C 0.023933846614091814 0.024418710201306898 0.025460392271147082 0.021019409108225372 0.025340403987630575 0.021328401403241277" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紋柄">
<g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.010598604465202614 0.00917378102910155 C 0.010742445113547454 0.009486001000665493 0.008581283650504347 0.012361578876361166 0.00886923815779945 0.012404566708015603 C 0.008581283650504347 0.012361578876361166 0.007287264236611636 0.008388694909338794 0.007143150377661373 0.008657927049248297 C 0.007287264236611636 0.008388694909338794 0.010742445113547454 0.009486001000665493 0.010598604465202614 0.00917378102910155 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.017079663916782027 0.009326585380578446 C 0.017311890998588906 0.009470669239691526 0.017298924328302503 0.01301000071704213 0.017496421602930357 0.012859661561110843 C 0.017298924328302503 0.01301000071704213 0.01467496681406878 0.01083623223670951 0.014709696621247808 0.011130655251753878 C 0.01467496681406878 0.01083623223670951 0.017311890998588906 0.009470669239691526 0.017079663916782027 0.009326585380578446 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.013576940464307694 0.015025349208207483 C 0.013703785052279139 0.015208631279200007 0.012686818079082516 0.01746234904426941 0.012872376343765786 0.01744407096856544 C 0.012686818079082516 0.01746234904426941 0.011408954964820271 0.015043125969958658 0.011350241288108446 0.015244686116655155 C 0.011408954964820271 0.015043125969958658 0.013703785052279139 0.015208631279200007 0.013576940464307694 0.015025349208207483 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.014111180057803624 0.020775331225816315 C 0.014219798502875657 0.020986836718535767 0.012624214086467075 0.02362043188398642 0.012838859264328687 0.023596813826637444 C 0.012624214086467075 0.02362043188398642 0.011641464656253868 0.020823624363935585 0.01153543792346429 0.021058747914004014 C 0.011641464656253868 0.020823624363935585 0.014219798502875657 0.020986836718535767 0.014111180057803624 0.020775331225816315 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.04194032258044251 0.058316281563226414 C 0.04211363258980736 0.057914012555833595 0.044217196304420704 0.053023048784813204 0.0440200426928207 0.05348905347451261 C 0.044217196304420704 0.053023048784813204 0.0443300095218777 0.0526604896045269 0.044306165919642544 0.052724225286833494" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.044306165919642544 0.052724225286833494 C 0.044260015845254734 0.052652917072207074 0.0434074615354425 0.05133147487722625 0.04375236502698882 0.05186852671131647 C 0.0434074615354425 0.05133147487722625 0.03986857060392815 0.045813859658287104 0.040167324021086664 0.0462796032777509" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.040167324021086664 0.0462796032777509 C 0.04051735820350891 0.0466571109149999 0.04477341490497541 0.051242170779907774 0.04436773421015356 0.05080969492473881 C 0.04477341490497541 0.051242170779907774 0.04509113887134851 0.051524281757698444 0.0450354923589489 0.051469313539778475" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0450354923589489 0.051469313539778475 C 0.04507467427242678 0.051424604696054026 0.04579296914363287 0.05058381638898083 0.04550567532068343 0.05093280741508508 C 0.04579296914363287 0.05058381638898083 0.048731130143813854 0.04697713904414764 0.048483018234342284 0.04728142122652744" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.048483018234342284 0.04728142122652744 C 0.04831773320558142 0.04768844833725082 0.04631046925821594 0.05263650934823795 0.04649959788921196 0.05216574655520798 C 0.04631046925821594 0.05263650934823795 0.046189631060154945 0.052994310425193675 0.0462134746623901 0.052930574742887086" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0462134746623901 0.052930574742887086 C 0.04625962473677791 0.053001882957513506 0.04712163731309655 0.05431583568784091 0.04676727555504383 0.053786273318404125 C 0.04712163731309655 0.05431583568784091 0.050774027442687684 0.05974357733093888 0.05046581575902277 0.059285323176128515" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05046581575902277 0.059285323176128515 C 0.05010632331009413 0.05891530500353295 0.04573676741055085 0.05442011871446626 0.046151906371879096 0.05484510510498179 C 0.04573676741055085 0.05442011871446626 0.04542850171068416 0.054130518272022136 0.04548414822308377 0.05418548648994211" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04548414822308377 0.05418548648994211 C 0.045444966309605886 0.05423019533366656 0.044718646457795774 0.05506622553740919 0.045013965261349216 0.0547219926146355 C 0.044718646457795774 0.05506622553740919 0.04168418569036695 0.058615805642275656 0.04194032258044251 0.058316281563226414" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.057567553497809905 0.03183867514094283 C 0.057325207276216254 0.031561994604811135 0.05437908527979339 0.02820145987243393 0.05465939883868613 0.02851850870736246 C 0.05437908527979339 0.02820145987243393 0.054165823453797925 0.027993720823003623 0.054203790791097016 0.028034089121800457" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.054203790791097016 0.028034089121800457 C 0.054160642330574944 0.02809457286249858 0.053365465062086705 0.02922594611844934 0.05368600926483219 0.028759894010177933 C 0.053365465062086705 0.02922594611844934 0.05007986461592775 0.034032282788630616 0.05035726035815117 0.03362671442105733" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05035726035815117 0.03362671442105733 C 0.05058226207689668 0.0331387537368003 0.053315728565424554 0.027207483948594954 0.053057280983097324 0.027771186209973018 C 0.053315728565424554 0.027207483948594954 0.05349207720965963 0.026786545707399505 0.053458631346077916 0.026862287284520545" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.053458631346077916 0.026862287284520545 C 0.05343220494172762 0.02680139308805081 0.05293506290585388 0.02568314234684861 0.05314151449387434 0.02613155692688371 C 0.05293506290585388 0.02568314234684861 0.05080118710616231 0.02109379194053399 0.05098121228983247 0.021481312324099354" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05098121228983247 0.021481312324099354 C 0.05122355851142612 0.021757992860231043 0.05416968050784899 0.02511852759260816 0.05388936694895625 0.024801478757679636 C 0.05416968050784899 0.02511852759260816 0.054382942333844456 0.025326266642038478 0.054344974996545364 0.025285898343241645" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.054344974996545364 0.025285898343241645 C 0.054388123457067436 0.025225414602543524 0.055183300725555676 0.024094041346592786 0.05486275652281019 0.024560093454864186 C 0.055183300725555676 0.024094041346592786 0.05846890117171463 0.019287704676411565 0.05819150542949121 0.019693273043984844" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05819150542949121 0.019693273043984844 C 0.0579665037107457 0.020181233728241866 0.055233037222217826 0.026112503516447158 0.055491484804545056 0.025548801255069097 C 0.055233037222217826 0.026112503516447158 0.05505668857798276 0.026533441757642596 0.05509013444156447 0.026457700180521557" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05509013444156447 0.026457700180521557 C 0.05511656084591477 0.026518594376991292 0.0556137028817885 0.027636845118193504 0.05540725129376804 0.0271884305381584 C 0.0556137028817885 0.027636845118193504 0.05774757868148006 0.0322261955245082 0.057567553497809905 0.03183867514094283" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.014817730740235681 0.005871670539820806 C 0.01462763696200887 0.0058744236127368605 0.01215641784506031 0.005910213560645572 0.012536605401513932 0.005904707414813463 C 0.01215641784506031 0.005910213560645572 0.01006538628456539 0.0059404973627221695 0.010255480062792201 0.005937744289806115" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.010255480062792201 0.005937744289806115 C 0.010083707324744938 0.005895865531807907 0.007850661730130513 0.005351441677831201 0.00819420720622504 0.005435199193827618 C 0.007850661730130513 0.005351441677831201 0.005961161611610606 0.0048907753398509035 0.006132934349657871 0.004932654097849112" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006132934349657871 0.004932654097849112 C 0.0063230281278846825 0.004929901024933058 0.008794247244833233 0.004894111077024351 0.008414059688379612 0.00489961722285646 C 0.008794247244833233 0.004894111077024351 0.01088527880532815 0.004863827274947749 0.01069518502710134 0.004866580347863803" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01069518502710134 0.004866580347863803 C 0.010866957765148604 0.004908459105862011 0.013100003359763033 0.005452882959838718 0.012756457883668504 0.005369125443842301 C 0.013100003359763033 0.005452882959838718 0.014989503478282946 0.005913549297819015 0.014817730740235681 0.005871670539820806" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.015618469803383998 0.008642809906906072 C 0.015461861856809199 0.008650269106553204 0.01342595855133682 0.008747238701965927 0.013739174444486416 0.008732320302671662 C 0.01342595855133682 0.008747238701965927 0.011703271139014051 0.00882928989808438 0.011859879085588849 0.008821830698437248" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011859879085588849 0.008821830698437248 C 0.011719465465290811 0.008784359177023048 0.009894088401416331 0.00829722939863843 0.010174915642012405 0.008372172441466832 C 0.009894088401416331 0.00829722939863843 0.008349538578137921 0.007885042663082209 0.008489952198435959 0.007922514184496411" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008489952198435959 0.007922514184496411 C 0.008646560145010756 0.00791505498484928 0.010682463450483123 0.007818085389436558 0.010369247557333528 0.007833003788730824 C 0.010682463450483123 0.007818085389436558 0.01240515086280589 0.007736034193318101 0.012248542916231092 0.007743493392965234" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012248542916231092 0.007743493392965234 C 0.01238895653652913 0.0077809649143794355 0.014214333600403615 0.008268094692764053 0.01393350635980754 0.00819315164993565 C 0.014214333600403615 0.008268094692764053 0.015758883423682035 0.008680281428320275 0.015618469803383998 0.008642809906906072" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.0018419572896676154 0.008336102505966118 C 0.0020293303903040493 0.008475881632147894 0.004465180698577687 0.010293010272510986 0.00409043449730482 0.010013452020147433 C 0.004465180698577687 0.010293010272510986 0.006526284805578446 0.01183058066051052 0.006338911704942014 0.011690801534328743" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006338911704942014 0.011690801534328743 C 0.006491420822972585 0.01186796770456389 0.008474039357370023 0.014171127917620794 0.00816902112130888 0.0138167955771505 C 0.008474039357370023 0.014171127917620794 0.010151639655706316 0.0161199557902074 0.009999130537675744 0.015942789619972256" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.009999130537675744 0.015942789619972256 C 0.009811757437039312 0.01580301049379048 0.007375907128765676 0.013985881853427397 0.007750653330038543 0.014265440105790948 C 0.007375907128765676 0.013985881853427397 0.005314803021764908 0.012448311465427863 0.005502176122401342 0.01258809059160964" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.005502176122401342 0.01258809059160964 C 0.00534966700437077 0.012410924421374493 0.003367048469973338 0.010107764208317587 0.003672066706034482 0.01046209654878788 C 0.003367048469973338 0.010107764208317587 0.0016894481716370432 0.008158936335730971 0.0018419572896676154 0.008336102505966118" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.021599337727178584 0.024171420664934183 C 0.021446828609148014 0.024348586835169328 0.019464210074750587 0.026651747048226235 0.01976922831081173 0.026297414707755942 C 0.019464210074750587 0.026651747048226235 0.017786609776414306 0.028600574920812846 0.017939118894444876 0.0284234087505777" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.017939118894444876 0.0284234087505777 C 0.017751745793808442 0.028563187876759478 0.015315895485534796 0.030380316517122564 0.015690641686807665 0.03010075826475901 C 0.015315895485534796 0.030380316517122564 0.013254791378534027 0.031917886905122095 0.013442164479170461 0.03177810777894032" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013442164479170461 0.03177810777894032 C 0.013594673597201033 0.03160094160870518 0.015577292131598456 0.02929778139564827 0.015272273895537314 0.029652113736118563 C 0.015577292131598456 0.02929778139564827 0.01725489242993473 0.02734895352306166 0.01710238331190416 0.027526119693296804" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01710238331190416 0.027526119693296804 C 0.017289756412540595 0.027386340567115027 0.01972560672081424 0.02556921192675194 0.019350860519541373 0.025848770179115493 C 0.01972560672081424 0.02556921192675194 0.02178671082781502 0.024031641538752407 0.021599337727178584 0.024171420664934183" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.011936436987494676 0.0008660247649004663 C 0.011799288790347607 0.0009976818799772198 0.010016362227435693 0.0027092243759750164 0.010290658621729834 0.0024459101458215093 C 0.010016362227435693 0.0027092243759750164 0.008507732058817922 0.004157452641819304 0.008644880255964991 0.004025795526742551" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008644880255964991 0.004025795526742551 C 0.008490692383880633 0.004112316067713027 0.006486250046783973 0.005237083100329211 0.006794625790952691 0.00506404201838826 C 0.006486250046783973 0.005237083100329211 0.004790183453856025 0.006188809051004442 0.0049443713259403835 0.006102288510033966" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0049443713259403835 0.006102288510033966 C 0.005081519523087454 0.005970631394957213 0.006864446085999368 0.004259088898959418 0.006590149691705228 0.004522403129112925 C 0.006864446085999368 0.004259088898959418 0.008373076254617133 0.0028108606331151286 0.008235928057470063 0.002942517748191882" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008235928057470063 0.002942517748191882 C 0.008390115929554423 0.0028559972072214066 0.010394558266651088 0.0017312301746052227 0.01008618252248237 0.001904271256546174 C 0.010394558266651088 0.0017312301746052227 0.012090624859579034 0.0007795042239299906 0.011936436987494676 0.0008660247649004663" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.02045285252810608 0.012640853796971286 C 0.02051291357366116 0.012502708381590628 0.021338636636011425 0.010787741692392393 0.021173585074767045 0.010983108812403386 C 0.021338636636011425 0.010787741692392393 0.022643452294417245 0.010296448356839386 0.022433471263038646 0.010296448356839386 C 0.022643452294417245 0.010296448356839386 0.02382526391248258 0.011178475932414379 0.02369335745131025 0.010983108812403386 C 0.02382526391248258 0.011178475932414379 0.0240432647425896 0.012778999212351944 0.02401634879710657 0.012640853796971286" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02401634879710657 0.012640853796971286 C 0.023844286849689332 0.013992032168206485 0.022136077247451678 0.03259727097154808 0.02195160542809968 0.02885499425179367 C 0.022136077247451678 0.03259727097154808 0.026586544396099806 0.0599392727825434 0.026230010629330565 0.05754817443402419" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.026230010629330565 0.05754817443402419 C 0.025616171108887188 0.05524710388806097 0.018382506542241342 0.026193051162711093 0.018863936384010047 0.0299353278824655 C 0.018382506542241342 0.026193051162711093 0.02058526220678075 0.011199647623180105 0.02045285252810608 0.01264085379697129" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32114188637723534,0.3413621989355303) rotate(0) scale(1,1) translate(-0.042392535679937025,-0.04239253567993701)"><path d="M 0.04439173380337499 0.041900837065644875 C 0.044407890663220186 0.04223222163244985 0.043247254565220036 0.04436214838380981 0.04348907590072718 0.044134993773620804 C 0.043247254565220036 0.04436214838380981 0.04123189958193687 0.04452246243129697 0.041489877777289214 0.04462669238791294 C 0.04123189958193687 0.04452246243129697 0.040377180696653886 0.042552849727424166 0.04039333755649908 0.04288423429422914 C 0.040377180696653886 0.042552849727424166 0.04153781679465402 0.040422922976064216 0.041295995459146875 0.04065007758625322 C 0.04153781679465402 0.040422922976064216 0.043553171777937175 0.04026260892857705 0.04329519358258483 0.040158378971961076 C 0.043553171777937175 0.04026260892857705 0.044407890663220186 0.04223222163244985 0.04439173380337499 0.041900837065644875 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="パンスト">
<g transform="translate(0.3240968049285982,0.36962992637431263) rotate(0) scale(1,1) translate(-0.09180138873031214,-0.07753166928063453)"><path d="M 0.10482971621904846 0.05141645319459212 C 0.10477410592172341 0.05411332305721646 0.10395965180586761 0.09079246380791509 0.1041623926511479 0.08377889154608413 C 0.10395965180586761 0.09079246380791509 0.10224969552772965 0.13989602273577018 0.1023968260756849 0.13557932033656356" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1023968260756849 0.13557932033656356 C 0.1025654802259068 0.1359444132279224 0.1044533039974732 0.14076520571371148 0.10442067587834758 0.13996043503286965 C 0.1044533039974732 0.14076520571371148 0.102652337474096 0.14567624629614848 0.10278836350519227 0.1452365685066655" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10278836350519227 0.1452365685066655 C 0.10271273709061667 0.14576236470639287 0.10130455568130424 0.1522808014943256 0.10188084653028506 0.15154612290339387 C 0.10130455568130424 0.1522808014943256 0.09486425199072 0.15406960444328488 0.09587287331742234 0.15405271159784634 C 0.09486425199072 0.15406960444328488 0.0891607016974565 0.15109032457119687 0.08977739060985712 0.15174883704865638 C 0.0891607016974565 0.15109032457119687 0.08836387434851135 0.14568403893663834 0.08847260636861487 0.14615056186833203" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08847260636861487 0.14615056186833203 C 0.08835644758944344 0.1457487398001761 0.08716459727145494 0.14055487207480796 0.08707870101855775 0.14132869705046103 C 0.08716459727145494 0.14055487207480796 0.08970541643544973 0.13649265925299806 0.08950336140338111 0.1368646621604952" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08950336140338111 0.1368646621604952 C 0.08950969932581025 0.13533894533321447 0.0893381921662907 0.11558603460190489 0.08957941647253087 0.1185560602331265 C 0.0893381921662907 0.11558603460190489 0.08636110749982968 0.099780045781895 0.08660866972849901 0.10122435458583588" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08660866972849901 0.10122435458583588 C 0.08611779804348553 0.09907104553003296 0.08057071002935152 0.07129023878642984 0.0807182095083373 0.07538464591620071 C 0.08057071002935152 0.07129023878642984 0.08518204818669732 0.050150370954617544 0.08483867598066963 0.05209146902858548" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08483867598066963 0.05209146902858548 C 0.08497033805658655 0.05191021946637767 0.08682993453166445 0.04944185789004812 0.08641862089167263 0.04991647428209175 C 0.08682993453166445 0.04944185789004812 0.090446091099079 0.0459855458112102 0.08977443966057141 0.046396072324061906 C 0.090446091099079 0.0459855458112102 0.0952697501631995 0.04496343675110907 0.09447843815376367 0.04499015612787131 C 0.0952697501631995 0.04496343675110907 0.09996912494027606 0.046439686997668005 0.09927018377380137 0.04607543980291507 C 0.09996912494027606 0.046439686997668005 0.10332902652189722 0.04980620691421294 0.10286573215145997 0.049361122464906516 C 0.10332902652189722 0.04980620691421294 0.10499338155801417 0.051587730755399255 0.10482971621904846 0.05141645319459212" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32402410899599987,0.36366806553620173) rotate(0) scale(1,1) translate(-0.03292901439411534,-0.03292901439411533)"><path d="M 0.033671464635729356 0.008893841417190705 C 0.033546039820076395 0.009037505319582625 0.03183147558588267 0.010936955346746774 0.0321663668478938 0.01061780824589376 C 0.03183147558588267 0.010936955346746774 0.02944330304523757 0.012899089825887973 0.029652769491595742 0.01272360662742688" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.029652769491595742 0.01272360662742688 C 0.02995463977451663 0.012835451233749628 0.033978983544441906 0.01428306725673154 0.03327521288664641 0.014065741903299876 C 0.033978983544441906 0.01428306725673154 0.03849991776001633 0.015436991615715774 0.03809801738514172 0.01533151086860686" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03809801738514172 0.01533151086860686 C 0.0377895384635262 0.01550063020785412 0.033691027162577464 0.01777172961310621 0.03439627032575547 0.017360942939573982 C 0.033691027162577464 0.01777172961310621 0.02923833518544315 0.020502618285278575 0.029635099427005637 0.020260950950993607" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.029635099427005637 0.020260950950993607 C 0.029429622468562223 0.021908087272206028 0.027404993879205385 0.04435821516812339 0.02716937592568467 0.04002658680554266 C 0.027404993879205385 0.04435821516812339 0.032942484741623444 0.07713661518967421 0.03246251486925422 0.07224049130196233 C 0.032942484741623444 0.07713661518967421 0.03296788935452044 0.1009917053044287 0.032929014394115344 0.09878007345808514" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.032929014394115344 0.09878007345808514 C 0.032852158879708895 0.09655062280594283 0.03140217049484329 0.06709490413306815 0.032006748221237925 0.0720266656323775 C 0.03140217049484329 0.06709490413306815 0.025351309778883068 0.03519985019612563 0.025674081677379754 0.039598935466373 C 0.025351309778883068 0.03519985019612563 0.02833843575276919 0.01754086796632874 0.028133485439277694 0.019237642389409067" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.028133485439277694 0.019237642389409067 C 0.02839839051792953 0.019093978487017146 0.03185145333911732 0.017219954025198395 0.03131234638309975 0.017513675560706016 C 0.03185145333911732 0.017219954025198395 0.0348769707888542 0.015562926330201931 0.034602768911488474 0.01571298396331763" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.034602768911488474 0.01571298396331763 C 0.03420897739177637 0.015569349932435651 0.029314028054831735 0.013777171198183216 0.029877270674943262 0.013989375592733872 C 0.029314028054831735 0.013777171198183216 0.027674406369750753 0.013097960865041067 0.027843857470150175 0.013166531228709744" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.027843857470150175 0.013166531228709744 C 0.02815890776378977 0.012954137646808413 0.032110094924290254 0.010261750761600514 0.03162446099382532 0.010617808245893767 C 0.032110094924290254 0.010261750761600514 0.033842048272554694 0.008750177514798783 0.033671464635729356 0.008893841417190705" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32402410899599987,0.36366806553620173) rotate(0) scale(1,1) translate(-0.03292901439411534,-0.03292901439411533)"><path d="M 0.035138825140993306 0.10046942686497726 C 0.035470030761695324 0.100468273160337 0.03967762004622706 0.10047380305828676 0.03911329258941756 0.10045558240929423 C 0.03967762004622706 0.10047380305828676 0.04214387645881483 0.1007074490065206 0.041910754622707345 0.1006880746528878" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.041910754622707345 0.1006880746528878 C 0.04170084227234771 0.10056146490344789 0.03894125029904753 0.0989274732078105 0.03939180641839171 0.09916875765960889 C 0.03894125029904753 0.0989274732078105 0.03626343742159268 0.09767798652894871 0.03650408119057722 0.09779266123130718" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03650408119057722 0.09779266123130718 C 0.03676662173963343 0.0977878596353021 0.04013569406075305 0.09769964712073395 0.03965456777925176 0.09773504207924602 C 0.04013569406075305 0.09769964712073395 0.04249618230103771 0.09733732836665544 0.04227759656859264 0.09736792172916241" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04227759656859264 0.09736792172916241 C 0.0422766053811932 0.09720521407966197 0.04232984466052925 0.0944292378009343 0.04226570231979937 0.09541542993515723 C 0.04232984466052925 0.0944292378009343 0.04311243818548046 0.08471013163376487 0.04304730465735115 0.08553361611848735" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04304730465735115 0.08553361611848735 C 0.04304012913771914 0.08640182283843845 0.043061484236324304 0.09705846723618505 0.04296119842176701 0.09595209675790055 C 0.043061484236324304 0.09705846723618505 0.044358195766228015 0.09904822561623486 0.0442507344320387 0.09881006185790145" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0442507344320387 0.09881006185790145 C 0.04406589911481749 0.098770515456597 0.041583131100692575 0.09828548079600004 0.04203271062538408 0.098335505042248 C 0.041583131100692575 0.09828548079600004 0.038591035928270345 0.09819929305798238 0.038855780135740633 0.09820977090292589" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.038855780135740633 0.09820977090292589 C 0.03911260547117127 0.09832949869814009 0.042449604089949924 0.09998364719857472 0.04193768416090828 0.09964650444549625 C 0.042449604089949924 0.09998364719857472 0.04525391387785129 0.10247289889773194 0.04499881928424029 0.10225548393986765" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04499881928424029 0.10225548393986765 C 0.04465133845187784 0.10218518405849376 0.040007383117286924 0.10126304727380687 0.04082904929589084 0.10141188536338107 C 0.040007383117286924 0.10126304727380687 0.034664639794751845 0.10039088865677694 0.035138825140993306 0.10046942686497726" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ソックス">
<g transform="translate(0.3240968049285982,0.36962992637431263) rotate(0) scale(1,1) translate(-0.09180138873031214,-0.07753166928063453)"><path d="M 0.10482971621904846 0.05141645319459212 C 0.10477410592172341 0.05411332305721646 0.10395965180586761 0.09079246380791509 0.1041623926511479 0.08377889154608413 C 0.10395965180586761 0.09079246380791509 0.10224969552772965 0.13989602273577018 0.1023968260756849 0.13557932033656356" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1023968260756849 0.13557932033656356 C 0.1025654802259068 0.1359444132279224 0.1044533039974732 0.14076520571371148 0.10442067587834758 0.13996043503286965 C 0.1044533039974732 0.14076520571371148 0.102652337474096 0.14567624629614848 0.10278836350519227 0.1452365685066655" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10278836350519227 0.1452365685066655 C 0.10271273709061667 0.14576236470639287 0.10130455568130424 0.1522808014943256 0.10188084653028506 0.15154612290339387 C 0.10130455568130424 0.1522808014943256 0.09486425199072 0.15406960444328488 0.09587287331742234 0.15405271159784634 C 0.09486425199072 0.15406960444328488 0.0891607016974565 0.15109032457119687 0.08977739060985712 0.15174883704865638 C 0.0891607016974565 0.15109032457119687 0.08836387434851135 0.14568403893663834 0.08847260636861487 0.14615056186833203" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08847260636861487 0.14615056186833203 C 0.08835644758944344 0.1457487398001761 0.08716459727145494 0.14055487207480796 0.08707870101855775 0.14132869705046103 C 0.08716459727145494 0.14055487207480796 0.08970541643544973 0.13649265925299806 0.08950336140338111 0.1368646621604952" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08950336140338111 0.1368646621604952 C 0.08950969932581025 0.13533894533321447 0.0893381921662907 0.11558603460190489 0.08957941647253087 0.1185560602331265 C 0.0893381921662907 0.11558603460190489 0.08636110749982968 0.099780045781895 0.08660866972849901 0.10122435458583588" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08660866972849901 0.10122435458583588 C 0.08611779804348553 0.09907104553003296 0.08057071002935152 0.07129023878642984 0.0807182095083373 0.07538464591620071 C 0.08057071002935152 0.07129023878642984 0.08518204818669732 0.050150370954617544 0.08483867598066963 0.05209146902858548" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08483867598066963 0.05209146902858548 C 0.08497033805658655 0.05191021946637767 0.08682993453166445 0.04944185789004812 0.08641862089167263 0.04991647428209175 C 0.08682993453166445 0.04944185789004812 0.090446091099079 0.0459855458112102 0.08977443966057141 0.046396072324061906 C 0.090446091099079 0.0459855458112102 0.0952697501631995 0.04496343675110907 0.09447843815376367 0.04499015612787131 C 0.0952697501631995 0.04496343675110907 0.09996912494027606 0.046439686997668005 0.09927018377380137 0.04607543980291507 C 0.09996912494027606 0.046439686997668005 0.10332902652189722 0.04980620691421294 0.10286573215145997 0.049361122464906516 C 0.10332902652189722 0.04980620691421294 0.10499338155801417 0.051587730755399255 0.10482971621904846 0.05141645319459212" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32402410899599987,0.36366806553620173) rotate(0) scale(1,1) translate(-0.03292901439411534,-0.03292901439411533)"><path d="M 0.033671464635729356 0.008893841417190705 C 0.033546039820076395 0.009037505319582625 0.03183147558588267 0.010936955346746774 0.0321663668478938 0.01061780824589376 C 0.03183147558588267 0.010936955346746774 0.02944330304523757 0.012899089825887973 0.029652769491595742 0.01272360662742688" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.029652769491595742 0.01272360662742688 C 0.02995463977451663 0.012835451233749628 0.033978983544441906 0.01428306725673154 0.03327521288664641 0.014065741903299876 C 0.033978983544441906 0.01428306725673154 0.03849991776001633 0.015436991615715774 0.03809801738514172 0.01533151086860686" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03809801738514172 0.01533151086860686 C 0.0377895384635262 0.01550063020785412 0.033691027162577464 0.01777172961310621 0.03439627032575547 0.017360942939573982 C 0.033691027162577464 0.01777172961310621 0.02923833518544315 0.020502618285278575 0.029635099427005637 0.020260950950993607" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.029635099427005637 0.020260950950993607 C 0.029429622468562223 0.021908087272206028 0.027404993879205385 0.04435821516812339 0.02716937592568467 0.04002658680554266 C 0.027404993879205385 0.04435821516812339 0.032942484741623444 0.07713661518967421 0.03246251486925422 0.07224049130196233 C 0.032942484741623444 0.07713661518967421 0.03296788935452044 0.1009917053044287 0.032929014394115344 0.09878007345808514" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.032929014394115344 0.09878007345808514 C 0.032852158879708895 0.09655062280594283 0.03140217049484329 0.06709490413306815 0.032006748221237925 0.0720266656323775 C 0.03140217049484329 0.06709490413306815 0.025351309778883068 0.03519985019612563 0.025674081677379754 0.039598935466373 C 0.025351309778883068 0.03519985019612563 0.02833843575276919 0.01754086796632874 0.028133485439277694 0.019237642389409067" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.028133485439277694 0.019237642389409067 C 0.02839839051792953 0.019093978487017146 0.03185145333911732 0.017219954025198395 0.03131234638309975 0.017513675560706016 C 0.03185145333911732 0.017219954025198395 0.0348769707888542 0.015562926330201931 0.034602768911488474 0.01571298396331763" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.034602768911488474 0.01571298396331763 C 0.03420897739177637 0.015569349932435651 0.029314028054831735 0.013777171198183216 0.029877270674943262 0.013989375592733872 C 0.029314028054831735 0.013777171198183216 0.027674406369750753 0.013097960865041067 0.027843857470150175 0.013166531228709744" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.027843857470150175 0.013166531228709744 C 0.02815890776378977 0.012954137646808413 0.032110094924290254 0.010261750761600514 0.03162446099382532 0.010617808245893767 C 0.032110094924290254 0.010261750761600514 0.033842048272554694 0.008750177514798783 0.033671464635729356 0.008893841417190705" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32402410899599987,0.36366806553620173) rotate(0) scale(1,1) translate(-0.03292901439411534,-0.03292901439411533)"><path d="M 0.035138825140993306 0.10046942686497726 C 0.035470030761695324 0.100468273160337 0.03967762004622706 0.10047380305828676 0.03911329258941756 0.10045558240929423 C 0.03967762004622706 0.10047380305828676 0.04214387645881483 0.1007074490065206 0.041910754622707345 0.1006880746528878" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.041910754622707345 0.1006880746528878 C 0.04170084227234771 0.10056146490344789 0.03894125029904753 0.0989274732078105 0.03939180641839171 0.09916875765960889 C 0.03894125029904753 0.0989274732078105 0.03626343742159268 0.09767798652894871 0.03650408119057722 0.09779266123130718" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03650408119057722 0.09779266123130718 C 0.03676662173963343 0.0977878596353021 0.04013569406075305 0.09769964712073395 0.03965456777925176 0.09773504207924602 C 0.04013569406075305 0.09769964712073395 0.04249618230103771 0.09733732836665544 0.04227759656859264 0.09736792172916241" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04227759656859264 0.09736792172916241 C 0.0422766053811932 0.09720521407966197 0.04232984466052925 0.0944292378009343 0.04226570231979937 0.09541542993515723 C 0.04232984466052925 0.0944292378009343 0.04311243818548046 0.08471013163376487 0.04304730465735115 0.08553361611848735" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04304730465735115 0.08553361611848735 C 0.04304012913771914 0.08640182283843845 0.043061484236324304 0.09705846723618505 0.04296119842176701 0.09595209675790055 C 0.043061484236324304 0.09705846723618505 0.044358195766228015 0.09904822561623486 0.0442507344320387 0.09881006185790145" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0442507344320387 0.09881006185790145 C 0.04406589911481749 0.098770515456597 0.041583131100692575 0.09828548079600004 0.04203271062538408 0.098335505042248 C 0.041583131100692575 0.09828548079600004 0.038591035928270345 0.09819929305798238 0.038855780135740633 0.09820977090292589" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.038855780135740633 0.09820977090292589 C 0.03911260547117127 0.09832949869814009 0.042449604089949924 0.09998364719857472 0.04193768416090828 0.09964650444549625 C 0.042449604089949924 0.09998364719857472 0.04525391387785129 0.10247289889773194 0.04499881928424029 0.10225548393986765" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04499881928424029 0.10225548393986765 C 0.04465133845187784 0.10218518405849376 0.040007383117286924 0.10126304727380687 0.04082904929589084 0.10141188536338107 C 0.040007383117286924 0.10126304727380687 0.034664639794751845 0.10039088865677694 0.035138825140993306 0.10046942686497726" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ブーツ">
<g id="タン">
<g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.03850579083029247,-0.03850579083029246)"><path d="M 0.0386926108133731 0.00616938151171365 C 0.03905560817259686 0.006516209077738306 0.04377457384250573 0.011024967436058835 0.04304857912405821 0.010331312304009523 C 0.04377457384250573 0.011024967436058835 0.04776754479396708 0.014840070662330052 0.04740454743474332 0.014493243096305395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04740454743474332 0.014493243096305395 C 0.047378277690803924 0.01794668378818199 0.047024043301164026 0.06366344215029472 0.0470893105074705 0.05593453139882455 C 0.047024043301164026 0.06366344215029472 0.04658234349669859 0.11151564217354107 0.04662134095906566 0.10724017211394749" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.038378121932481905 0.10724017211394749 C 0.0381250649698256 0.10300832500694827 0.034809833907306936 0.04881634198367556 0.03534143838060625 0.05645800682995699 C 0.034809833907306936 0.04881634198367556 0.0317203207422471 0.012130376219288029 0.03199886825289011 0.015540193958570257" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03199886825289011 0.015540193958570257 C 0.03227777419291024 0.015149743439951232 0.03590355141317186 0.010073886697903904 0.03534573953313161 0.010854787735141954 C 0.03590355141317186 0.010073886697903904 0.03897151675339323 0.005778930993094625 0.0386926108133731 0.00616938151171365" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="縁">
<g transform="translate(0.32093675363143725,0.34197892327916213) rotate(0) scale(1,1) translate(-0.00775832499658671,-0.0077583249965867095)"><path d="M 0.00372144979246968 0.012300310470658089 C 0.004013875675058134 0.011889858061472042 0.007840699373273034 0.006530915735919348 0.007230560383531127 0.00737488156042554 C 0.007840699373273034 0.006530915735919348 0.011360830776526016 0.0017392071612636444 0.011043117669372562 0.00217272057658379" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011043117669372562 0.00217272057658379 C 0.0110510103009553 0.0022569735732578147 0.011154847870081008 0.0033446354407462436 0.01113782924836542 0.003183756536672082 C 0.011154847870081008 0.0033446354407462436 0.011256467120092458 0.004179893332873866 0.011247341129959608 0.004103267425473729" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011247341129959608 0.004103267425473729 C 0.011000570169933166 0.004439809176079909 0.007746892767027393 0.008888762592540112 0.00828608960964229 0.008141768432747887 C 0.007746892767027393 0.008888762592540112 0.004484553135992388 0.01347764975216648 0.004776979018580842 0.013067197342980435" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3286395932223639,0.3414554478480297) rotate(0) scale(1,1) translate(-0.00775832499658671,-0.0077583249965867095)"><path d="M 0.011851612784201502 0.01252175029392652 C 0.011473430165750313 0.012164556580470104 0.0066211620923565155 0.007577508446006175 0.007313421362787223 0.008235425732449533 C 0.0066211620923565155 0.007577508446006175 0.0032304248870534975 0.004326019283619287 0.0035445015390330147 0.004626742856606229" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0035445015390330147 0.004626742856606229 C 0.0035353755489001657 0.004550116949206092 0.0034179710357232387 0.0035463530637304206 0.003434989657438826 0.003707231967804582 C 0.0034179710357232387 0.0035463530637304206 0.0033323854468632315 0.002611943011042266 0.0033402780784459697 0.0026961960077162904" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0033402780784459697 0.0026961960077162904 C 0.003745523957774318 0.003078281695466925 0.008986657128165688 0.008020503661930953 0.00820322863038615 0.007281224260723903 C 0.008986657128165688 0.008020503661930953 0.01311960267025162 0.011924742535657305 0.012741420051800428 0.01156754882220089" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="ブーツ">
<g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.09180138873031214,-0.07753166928063453)"><path d="M 0.07744298289496229 0.045997292134421115 C 0.07798296527273996 0.04637136559419066 0.08484722253586628 0.051236222722278575 0.08392277142829428 0.05048617365165566 C 0.08484722253586628 0.051236222722278575 0.08892086491562061 0.05537385659274946 0.08853639618582627 0.05499788098189609" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08853639618582627 0.05499788098189609 C 0.08880901720367884 0.05889575998051647 0.09211866142572202 0.10992467819021584 0.09180784840005708 0.1017724289653407 C 0.09211866142572202 0.10992467819021584 0.09230434450161791 0.1570792419066527 0.09226615249380554 0.15282487168039793" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09918354849134983 0.15282487168039793 C 0.09914535648353746 0.14857050145414316 0.09858134831815148 0.0935900147811359 0.09872524439760137 0.1017724289653407 C 0.09858134831815148 0.0935900147811359 0.09735109146631359 0.05070785751199044 0.09745679553795111 0.054635901469940455" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09745679553795111 0.054635901469940455 C 0.09778755284812501 0.05422813707405371 0.1021140532278665 0.04902284460800621 0.10142588326003785 0.04974272871929949 C 0.1021140532278665 0.04902284460800621 0.10607224780954976 0.04568517241901458 0.10571483515189499 0.045997292134421115" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10571483515189499 0.045997292134421115 C 0.10564164574224277 0.04721163933164193 0.10473386801458837 0.06314332933041585 0.10483656223606838 0.06056945850107086 C 0.10473386801458837 0.06314332933041585 0.10434390604436929 0.08158206196061768 0.10448250449413483 0.0768837420865609 C 0.10434390604436929 0.08158206196061768 0.10306804386748175 0.12186424313190283 0.10317338083888182 0.11694929698975222 C 0.10306804386748175 0.12186424313190283 0.10322221750387175 0.13743924569258636 0.10321846083733406 0.13586309579236835" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10321846083733406 0.13586309579236835 C 0.10334245696195453 0.1362590285305112 0.10469030364537095 0.14146308951139278 0.10470641433277965 0.14061428865008246 C 0.10469030364537095 0.14146308951139278 0.10288502577640052 0.14650157425125965 0.10302513258842969 0.14604870612809218" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10302513258842969 0.14604870612809218 C 0.10294723738141681 0.14659027621381135 0.10149681052982501 0.15330426610538206 0.10209039010427526 0.15254754715672236 C 0.10149681052982501 0.15330426610538206 0.09486329772852325 0.15514673314281013 0.09590217769502665 0.15512933351200842 C 0.09486329772852325 0.15514673314281013 0.08898864092646183 0.1520780748745595 0.08962383050623447 0.1527563427263428 C 0.08898864092646183 0.1520780748745595 0.08816790875704833 0.14650960067096416 0.08827990273775496 0.14699011929060868" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08827990273775496 0.14699011929060868 C 0.0881602591952084 0.14657624256040808 0.08688293571757214 0.14120667174323567 0.08684418022719612 0.14202359852820157 C 0.08688293571757214 0.14120667174323567 0.0889033676551898 0.1367839478162527 0.08874496862226722 0.13718699787101798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08874496862226722 0.13718699787101798 C 0.08867010489391454 0.13551850516523978 0.0871926560057749 0.11228172649209309 0.08784660388203504 0.11716508540167965 C 0.0871926560057749 0.11228172649209309 0.08032087156412891 0.07381826334884277 0.08089759410714557 0.07858669095597931 C 0.08032087156412891 0.07381826334884277 0.0806380490981531 0.057228170880911235 0.08092593336583503 0.05994395411604109 C 0.0806380490981531 0.057228170880911235 0.07715273702238956 0.04483507030261945 0.07744298289496229 0.045997292134421115" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="皺">
<g transform="translate(0.31670927062364773,0.3511049096354638) rotate(0) scale(1,1) translate(-0.03408017706782698,-0.03408017706782699)"><path d="M 0.031870503729690094 0.037127593883231676 C 0.03204279674434033 0.03702280013829952 0.034303000607219136 0.03552647705477738 0.03393801990549292 0.03587006894404576 C 0.034303000607219136 0.03552647705477738 0.03644295983748073 0.03276569306767486 0.036250272150404744 0.03300449121201108" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035608509208994304 0.03661977516809331 C 0.0354053804955251 0.03684239001527096 0.03275150615193277 0.03959502067641251 0.033170964647363875 0.03929115333422509 C 0.03275150615193277 0.03959502067641251 0.030358677481859133 0.04034743576935213 0.030575007263821036 0.04026618327434236" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030575007263821036 0.04026618327434236 C 0.030527919890084184 0.04019436889085291 0.02993245726163535 0.03926998887773233 0.03000995877897882 0.03940441067246899 C 0.02993245726163535 0.03926998887773233 0.02961457491209281 0.03859051432625522 0.029644989055699424 0.03865312173750243" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029644989055699424 0.03865312173750243 C 0.029680697111604943 0.03856210289881045 0.03016132120828457 0.03738680736298019 0.030073485726565635 0.03756089567319864 C 0.03016132120828457 0.03738680736298019 0.03075114226214009 0.03648099254335454 0.03069901483632667 0.03656406201488101" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03069901483632667 0.03656406201488101 C 0.03073698254439353 0.03660624813622025 0.03125225140757592 0.03711725645998113 0.03115462733312897 0.037070295470951906 C 0.03125225140757592 0.03711725645998113 0.031930160096070186 0.03713236875092166 0.031870503729690094 0.037127593883231676" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33423899008441654,0.35055337532031494) rotate(0) scale(1,1) translate(-0.03408017706782698,-0.03408017706782699)"><path d="M 0.03586559312504148 0.037127593883231676 C 0.03590987931538827 0.03712223543851568 0.036488147698828806 0.03701574776823873 0.036397027409202955 0.037063292546639676 C 0.036488147698828806 0.03701574776823873 0.037005870699830745 0.03651487020873536 0.036959036600551685 0.03655705654242031" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036959036600551685 0.03655705654242031 C 0.037005300558245253 0.0366407098033185 0.037596176106473596 0.03773556777278882 0.03751420409287451 0.03756089567319864 C 0.037596176106473596 0.03773556777278882 0.03797840881964625 0.038744140576194415 0.03794270076374073 0.03865312173750243" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03794270076374073 0.03865312173750243 C 0.037907867273457845 0.03871572914874965 0.037434271604151144 0.03953883246720565 0.03752469888034606 0.03940441067246899 C 0.037434271604151144 0.03953883246720565 0.0368019796634897 0.0403379976578318 0.03685757344940173 0.04026618327434236" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03685757344940173 0.04026618327434236 C 0.03663354643306771 0.040129947035725054 0.03378844504572199 0.03829562867654951 0.034169249253393506 0.03863134841093474 C 0.03378844504572199 0.03829562867654951 0.03213114576600601 0.03603806296595169 0.03228792295734351 0.036237546461719616" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03272847951789243 0.034334387202556445 C 0.03282613761146965 0.034455966950290115 0.03416180277474817 0.03602611139875006 0.03390037664081909 0.03579334417536046 C 0.03416180277474817 0.03602611139875006 0.03602936116539335 0.03723878135888761 0.03586559312504148 0.037127593883231676" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="縁">
<g transform="translate(0.31621818762658027,0.34258443074533373) rotate(0) scale(1,1) translate(-0.03501804932522445,-0.03501804932522445)"><path d="M 0.029008938544793462 0.030025016573507698 C 0.02954889967130127 0.030399063750787953 0.03642171135881939 0.03528652708276961 0.03548847206288718 0.03451358270087076 C 0.03642171135881939 0.03528652708276961 0.040601088265404386 0.03969924636091252 0.040207810095979984 0.03930034915629393" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.040207810095979984 0.03930034915629393 C 0.04015979876154469 0.039319466447891506 0.039520377489075914 0.03957432563907916 0.03963167408275644 0.03952975665546489 C 0.039520377489075914 0.03957432563907916 0.03880896571256847 0.039860628651681836 0.038872250971813696 0.039835176959665146" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.038872250971813696 0.039835176959665146 C 0.03851186560645936 0.03947578854215789 0.03364728009569955 0.034789080354790614 0.03454762658756169 0.03552251594957812 C 0.03364728009569955 0.034789080354790614 0.02752813194296016 0.03065990264493482 0.02806809306946797 0.031033949822215075" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02806809306946797 0.031033949822215075 C 0.028107294964273197 0.030991910936852267 0.02861691959674118 0.030445405427135766 0.02853851580713072 0.03052948319786138 C 0.02861691959674118 0.030445405427135766 0.029048140439598687 0.029982977688144882 0.02900893854479346 0.03002501657350769" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33372129945832385,0.34184098581297756) rotate(0) scale(1,1) translate(-0.03501804932522445,-0.03501804932522445)"><path d="M 0.03883950816567021 0.030768797787255515 C 0.038878710060475434 0.030810836672618323 0.0393883346929434 0.03135734218233483 0.03930993090333294 0.031273264411609214 C 0.0393883346929434 0.03135734218233483 0.0398195555358009 0.03181976992132574 0.03978035364099568 0.03177773103596293" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03978035364099568 0.03177773103596293 C 0.039422696842819974 0.03208979644543086 0.03482879532575136 0.03622205290936473 0.03548847206288719 0.03552251594957812 C 0.03482879532575136 0.03622205290936473 0.031562212856405564 0.04055964610372084 0.03186423279536569 0.04017217455340217" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03186423279536569 0.04017217455340217 C 0.03179629352934669 0.04015042851360744 0.030937554989921654 0.03985908473986323 0.03104896160313769 0.03991122207586544 C 0.030937554989921654 0.03985908473986323 0.030483886089576247 0.039516135225168135 0.03052735343677328 0.03954652652137562" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03052735343677328 0.03954652652137562 C 0.030862376199338983 0.03912711453633355 0.03524030614830313 0.03378210530636075 0.03454762658756172 0.03451358270087076 C 0.03524030614830313 0.03378210530636075 0.03919716496384591 0.030456732377787586 0.03883950816567021 0.03076879778725552" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3241032645983431,0.39387068605901876) rotate(0) scale(1,1) translate(-0.028726304949875287,-0.028726304949875284)"><path d="M 0.026030988748868007 -0.018277650532740317 C 0.026311871955207986 -0.01436065424252235 0.029720792646699877 0.036897347856633074 0.029401587224947737 0.02872630494987529 C 0.029720792646699877 0.036897347856633074 0.029899776025305833 0.08402891096489289 0.029861453809893673 0.07977486434835307" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028510889259748772 0.07977486434835307 C 0.02847256704433661 0.07552081773181325 0.027733067705215584 0.020599831026731776 0.028051022674802837 0.02872630494987529 C 0.027733067705215584 0.020599831026731776 0.02441579687052663 -0.021615250035972797 0.024695429624701722 -0.017742822729369098" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024695429624701722 -0.017742822729369098 C 0.02475871488394695 -0.017768274421385788 0.025566149329324998 -0.018092812017183622 0.025454852735644472 -0.018048243033569354 C 0.025566149329324998 -0.018092812017183622 0.026079000083303303 -0.018296767824337895 0.026030988748868007 -0.018277650532740317" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3310206605958874,0.39387068605901876) rotate(0) scale(1,1) translate(-0.028726304949875287,-0.028726304949875284)"><path d="M 0.026936247923860606 -0.018774918100014838 C 0.02697971527105764 -0.01874452680380735 0.027569262703441046 -0.018358085209522788 0.027457856090225014 -0.01841022254552501 C 0.027569262703441046 -0.018358085209522788 0.028341066548471974 -0.01812752402819342 0.028273127282452976 -0.018149270067988155" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.028273127282452976 -0.018149270067988155 C 0.028367165610994203 -0.014242972149832868 0.029533140067418334 0.03688606415118882 0.02940158722494768 0.02872630494987529 C 0.029533140067418334 0.03688606415118882 0.029889275906030265 0.08402130163093251 0.029851761392100835 0.07976784034777426" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02850119684195591 0.07976784034777426 C 0.02846368232802648 0.07551437906461601 0.027920610264961475 0.020514408412559533 0.02805102267480275 0.02872630494987529 C 0.027920610264961475 0.020514408412559533 0.02684335002794876 -0.02273335335417235 0.026936247923860606 -0.018774918100014838" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.31528912960050015,0.37538623108652686) rotate(0) scale(1,1) translate(-0.022056771251806547,-0.022056771251806547)"><path d="M 0.024685953511244405 0.04320967600139426 C 0.02431752058402432 0.041362106456399324 0.0198375888620961 0.01833273259279923 0.02026475838460338 0.02103884146145504 C 0.0198375888620961 0.01833273259279923 0.0195011826458698 0.009877830253863693 0.019559919241157 0.010736369577524565" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019559919241157 0.010736369577524565 C 0.019675500091002843 0.011359992003516643 0.02117030082928078 0.01930520635696439 0.020946889439307143 0.018219838689429498 C 0.02117030082928078 0.01930520635696439 0.02234868646096844 0.024222526829486096 0.022240855920840647 0.02376078158794328" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022240855920840647 0.02376078158794328 C 0.022317614255002935 0.023519418783852414 0.023386150787482695 0.020380648567868125 0.023161955930788097 0.02086442793885291 C 0.023386150787482695 0.020380648567868125 0.025078630723708112 0.01771301256923193 0.024931194201175802 0.017955429136125852" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024931194201175802 0.017955429136125852 C 0.02480911334931872 0.01878184332438059 0.02344578725472988 0.02997691996728841 0.023466223978890827 0.02787239939518271 C 0.02344578725472988 0.02997691996728841 0.024787597638940537 0.04448778238524523 0.024685953511244405 0.04320967600139426" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="紐">
<g transform="translate(0.32513511123152883,0.34820104724922024) rotate(0) scale(1,1) translate(-0.03755316171134874,-0.03755316171134874)"><path d="M 0.033887187083408384 0.03698044541838632 C 0.034206625382369765 0.03696277944668236 0.03836832715713497 0.036753878135116214 0.03772044667094497 0.036768453757938836 C 0.03836832715713497 0.036753878135116214 0.041990195104916986 0.036808628293396206 0.041661752917688366 0.03680553794451487" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.041661752917688366 0.03680553794451487 C 0.04166401203587744 0.036832259290894565 0.04169289749045845 0.03726223989960996 0.04168886233595722 0.03712619410107123 C 0.04169289749045845 0.03726223989960996 0.04171195080801526 0.03854741197913868 0.04171017477170311 0.03843808752697964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04171017477170311 0.03843808752697964 C 0.04137769742997326 0.03843322114178615 0.037077240710391424 0.03839426652748032 0.03772044667094497 0.0383796909046577 C 0.037077240710391424 0.03839426652748032 0.0336809746262368 0.03863243700886722 0.033991703245060505 0.0386129950008511" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.033991703245060505 0.0386129950008511 C 0.03398751880047659 0.038556573131061075 0.03393278022991586 0.03779988676483206 0.03394148991005354 0.037935932563370786 C 0.03393278022991586 0.03779988676483206 0.03388266184785462 0.036900821489637615 0.033887187083408384 0.03698044541838632" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="紐1">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.33129555759163093,0.34849607194330445) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026358368617803492 0.025194844910429337 C 0.026529292282890582 0.025191861426757473 0.027482291304127576 0.025915573446929026 0.027394245698932423 0.025769040952691596 C 0.027482291304127576 0.025915573446929026 0.027332037820253365 0.027102750819187768 0.027414915880145305 0.026953234841278477 C 0.027332037820253365 0.027102750819187768 0.026228785315142056 0.027566216171274964 0.026399708980229145 0.0275632326876031 C 0.026228785315142056 0.027566216171274964 0.02527578629390506 0.026842504151103418 0.025363831899100214 0.026989036645340844 C 0.02527578629390506 0.026842504151103418 0.025426039777779273 0.025655326778844672 0.025343161717887332 0.025804842756753963 C 0.025426039777779273 0.025655326778844672 0.026529292282890582 0.025191861426757473 0.026358368617803492 0.025194844910429337 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33129555759163093,0.34849607194330445) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026364569672167357 0.025550103077005403 C 0.026484216237728325 0.025548014638435097 0.027151315552594226 0.026054613052555183 0.02708968362895762 0.025952040306588983 C 0.027151315552594226 0.026054613052555183 0.027046138113882276 0.0268856372131363 0.02710415275580664 0.026780976028599798 C 0.027046138113882276 0.0268856372131363 0.026273861360304313 0.027210062959597343 0.02639350792586528 0.027207974521027037 C 0.026273861360304313 0.027210062959597343 0.02560676204543841 0.026703464545477257 0.02566839396907502 0.026806037291443457 C 0.02560676204543841 0.026703464545477257 0.025711939484150362 0.02587244038489614 0.025653924842226 0.025977101569432642 C 0.025711939484150362 0.02587244038489614 0.026484216237728325 0.025548014638435097 0.026364569672167357 0.025550103077005403 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3253357741029742,0.35207707113956904) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03778106276518526 0.0279627552461515 C 0.037825811007630036 0.028014729253630778 0.03838767221444991 0.028702328014848944 0.03831804167452254 0.02858644333590284 C 0.03838767221444991 0.028702328014848944 0.03864151154179628 0.029417282064971587 0.03861662924431368 0.02935337139350476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03861662924431368 0.02935337139350476 C 0.03811998062025894 0.029651787993193474 0.03185339511049117 0.03343054840535652 0.03265684575565681 0.03293437058976935 C 0.03185339511049117 0.03343054840535652 0.028668419481215065 0.03550526639644922 0.028975221502325968 0.03530750518055077" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028975221502325968 0.03530750518055077 C 0.028970942948468515 0.03526093940919334 0.02891065635680332 0.03459704331394965 0.028923878856036526 0.034748715924261514 C 0.02891065635680332 0.03459704331394965 0.028807607566151725 0.03338232701785402 0.02881655151152748 0.03348743385680844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02881655151152748 0.03348743385680844 C 0.029066945491944222 0.03332546057227574 0.03256832188099987 0.031083364558194673 0.031821279276528384 0.03154375444241608 C 0.03256832188099987 0.031083364558194673 0.03827771138924 0.027664338646462786 0.03778106276518526 0.0279627552461515" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.319254646083749,0.34870624683546947) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027394245698932285 0.0257690409526916 C 0.027482291304127437 0.025915573446929026 0.027332037820253233 0.027102750819187768 0.027414915880145167 0.026953234841278477 C 0.027332037820253233 0.027102750819187768 0.026228785315142007 0.027566216171274967 0.026399708980229093 0.027563232687603103 C 0.026228785315142007 0.027566216171274967 0.025275786293904978 0.026842504151103418 0.02536383189910013 0.026989036645340844 C 0.025275786293904978 0.026842504151103418 0.025426039777779182 0.025655326778844675 0.02534316171788725 0.025804842756753966 C 0.025426039777779182 0.025655326778844675 0.026529292282890412 0.025191861426757476 0.026358368617803326 0.02519484491042934 C 0.026529292282890412 0.025191861426757476 0.027482291304127437 0.025915573446929026 0.027394245698932285 0.0257690409526916 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.319254646083749,0.34870624683546947) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027089683628957466 0.025952040306588986 C 0.027151315552594073 0.026054613052555187 0.02704613811388213 0.026885637213136304 0.027104152755806483 0.0267809760285998 C 0.02704613811388213 0.026885637213136304 0.026273861360304268 0.027210062959597343 0.02639350792586523 0.027207974521027037 C 0.026273861360304268 0.027210062959597343 0.02560676204543835 0.026703464545477257 0.025668393969074957 0.026806037291443457 C 0.02560676204543835 0.026703464545477257 0.02571193948415029 0.02587244038489614 0.025653924842225936 0.025977101569432642 C 0.02571193948415029 0.02587244038489614 0.02648421623772815 0.0255480146384351 0.02636456967216719 0.025550103077005407 C 0.02648421623772815 0.0255480146384351 0.027151315552594073 0.026054613052555187 0.027089683628957466 0.025952040306588986 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3253357741029742,0.35207707113956904) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.026551197332345785 0.02815877327641686 C 0.027057958000614554 0.02843967530175849 0.03344703493832388 0.03198428588148755 0.03263232535157099 0.03152959758051644 C 0.03344703493832388 0.03198428588148755 0.036635661291864505 0.03378881916369962 0.03632771237338039 0.03361503288807015" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03632771237338039 0.03361503288807015 C 0.03632789664394947 0.03366832164121484 0.03633365749489195 0.03441592706852924 0.03632992362020934 0.03425449792580642 C 0.03633365749489195 0.03441592706852924 0.0363760684736852 0.03566032299032212 0.03637251886957167 0.035552182600743984" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03637251886957167 0.035552182600743984 C 0.0359952922704919 0.03533521133832107 0.03096181241326589 0.032450654163904434 0.03184579968061443 0.032948527451668985 C 0.03096181241326589 0.032450654163904434 0.02525791099312045 0.029296801122227774 0.025764671661389217 0.029577703147569405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025764671661389217 0.029577703147569405 C 0.025787308350980365 0.029512963029097884 0.026101855742396044 0.028682577569981764 0.026036311936483 0.02880082172591114 C 0.026101855742396044 0.028682577569981764 0.026594104448667683 0.028105269238959004 0.026551197332345785 0.02815877327641686" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐2">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3317203450328146,0.3553797411732548) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025194664524490686 C 0.026549988500571026 0.025194664524490686 0.02749021185912155 0.025934898446069145 0.027404737008344227 0.025786851661753454 C 0.02749021185912155 0.025934898446069145 0.027319262157566897 0.02711927272059468 0.027404737008344227 0.02697122593627899 C 0.027319262157566897 0.02711927272059468 0.026208089097461612 0.027563413073541758 0.026379038799016263 0.027563413073541758 C 0.026208089097461612 0.027563413073541758 0.02526786573891109 0.0268231791519633 0.02535334058968841 0.02697122593627899 C 0.02526786573891109 0.0268231791519633 0.02543881544046574 0.025638804877437762 0.02535334058968841 0.025786851661753454 C 0.02543881544046574 0.025638804877437762 0.026549988500571026 0.025194664524490686 0.026379038799016374 0.025194664524490686 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3317203450328146,0.3553797411732548) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025549976806848347 C 0.026498703590104634 0.025549976806848347 0.027156859941090006 0.026068140551953268 0.027097027545545882 0.025964507802932284 C 0.027156859941090006 0.026068140551953268 0.027037195150001747 0.026897202544121143 0.027097027545545882 0.02679356979510016 C 0.027037195150001747 0.026897202544121143 0.026259374007928004 0.027208100791184096 0.026379038799016263 0.027208100791184096 C 0.026259374007928004 0.027208100791184096 0.02560121765694263 0.026689937046079176 0.025661050052486756 0.02679356979510016 C 0.02560121765694263 0.026689937046079176 0.02572088244803089 0.0258608750539113 0.025661050052486756 0.025964507802932284 C 0.02572088244803089 0.0258608750539113 0.026498703590104634 0.025549976806848347 0.026379038799016374 0.025549976806848347 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32569897219462524,0.3588561824022746) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.028060127789284163 C 0.03789868489979777 0.028112874845384862 0.03844846027938786 0.028810174712123996 0.0383808628110458 0.028693092462492534 C 0.03844846027938786 0.028810174712123996 0.03868978327710845 0.02952944997839246 0.0386660201643344 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029465114784861697 C 0.038164239094485276 0.029754818220613346 0.031852239952461725 0.03341818579359823 0.032644647326144915 0.03294155601388148 C 0.031852239952461725 0.03341818579359823 0.028866505376302067 0.03537159848542775 0.02915713168013613 0.035184672141462654" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02915713168013613 0.035184672141462654 C 0.02915151767981169 0.03510440092574501 0.029077519568677334 0.03406540421584624 0.029089763676242848 0.03422141755285089 C 0.029077519568677334 0.03406540421584624 0.02900357228210889 0.033236769976119886 0.029010202389349964 0.033312512097406884" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029010202389349964 0.033312512097406884 C 0.02924547533240749 0.03316451684081497 0.03257053171894693 0.03109887032596038 0.03183347770604028 0.03153656901830394 C 0.03257053171894693 0.03109887032596038 0.038356631614078894 0.027770424353532514 0.03785485054422977 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3196775993564358,0.3553797411732548) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025786851661753454 C 0.02749021185912141 0.025934898446069145 0.027319262157566766 0.02711927272059468 0.027404737008344088 0.02697122593627899 C 0.027319262157566766 0.02711927272059468 0.026208089097461564 0.027563413073541758 0.02637903879901621 0.027563413073541758 C 0.026208089097461564 0.027563413073541758 0.025267865738911006 0.0268231791519633 0.025353340589688328 0.02697122593627899 C 0.025267865738911006 0.0268231791519633 0.02543881544046565 0.025638804877437762 0.025353340589688328 0.025786851661753454 C 0.02543881544046565 0.025638804877437762 0.026549988500570856 0.025194664524490686 0.026379038799016208 0.025194664524490686 C 0.026549988500570856 0.025194664524490686 0.02749021185912141 0.025934898446069145 0.027404737008344088 0.025786851661753454 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3196775993564358,0.3553797411732548) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.025964507802932284 C 0.027156859941089854 0.026068140551953268 0.0270371951500016 0.026897202544121143 0.027097027545545726 0.02679356979510016 C 0.0270371951500016 0.026897202544121143 0.02625937400792796 0.027208100791184096 0.02637903879901621 0.027208100791184096 C 0.02625937400792796 0.027208100791184096 0.025601217656942565 0.026689937046079176 0.025661050052486693 0.02679356979510016 C 0.025601217656942565 0.026689937046079176 0.02572088244803082 0.0258608750539113 0.025661050052486693 0.025964507802932284 C 0.02572088244803082 0.0258608750539113 0.02649870359010446 0.025549976806848347 0.026379038799016208 0.025549976806848347 C 0.02649870359010446 0.025549976806848347 0.027156859941089854 0.026068140551953268 0.027097027545545726 0.025964507802932284 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32569897219462524,0.3588561824022746) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.028060127789284163 C 0.02712505555780468 0.028349831225035812 0.03343755644850017 0.032000746816897435 0.03264464732614501 0.03153656901830394 C 0.03343755644850017 0.032000746816897435 0.03642931200872346 0.033804735735247955 0.03613818395621742 0.03363026137240611" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03613818395621742 0.03363026137240611 C 0.03614017328241971 0.03368359296674035 0.0361654402641636 0.03443314938817636 0.036162055870644916 0.034270240504417016 C 0.0361654402641636 0.03443314938817636 0.036180191745758025 0.03569474526694336 0.036178796678441635 0.03558516797751826" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036178796678441635 0.03558516797751826 C 0.035816686764074866 0.03536486698054853 0.030969586721824514 0.0324315515811601 0.031833477706040406 0.03294155601388148 C 0.030969586721824514 0.0324315515811601 0.025310323798001823 0.029175411349110048 0.025812104867850946 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029465114784861697 C 0.02583586798062499 0.029400779591330934 0.026164859689481516 0.02857601021286107 0.026097262221139464 0.028693092462492534 C 0.026164859689481516 0.02857601021286107 0.02666710884352357 0.028007380733183464 0.02662327448795556 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐3">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.33214661277675,0.36225001084292974) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025194664524490686 C 0.026549988500571026 0.025194664524490686 0.02749021185912155 0.025934898446069145 0.027404737008344227 0.025786851661753454 C 0.02749021185912155 0.025934898446069145 0.027319262157566897 0.02711927272059468 0.027404737008344227 0.02697122593627899 C 0.027319262157566897 0.02711927272059468 0.026208089097461612 0.027563413073541758 0.026379038799016263 0.027563413073541758 C 0.026208089097461612 0.027563413073541758 0.02526786573891109 0.0268231791519633 0.02535334058968841 0.02697122593627899 C 0.02526786573891109 0.0268231791519633 0.02543881544046574 0.025638804877437762 0.02535334058968841 0.025786851661753454 C 0.02543881544046574 0.025638804877437762 0.026549988500571026 0.025194664524490686 0.026379038799016374 0.025194664524490686 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33214661277675,0.36225001084292974) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025549976806848347 C 0.026498703590104634 0.025549976806848347 0.027156859941090006 0.026068140551953268 0.027097027545545882 0.025964507802932284 C 0.027156859941090006 0.026068140551953268 0.027037195150001747 0.026897202544121143 0.027097027545545882 0.02679356979510016 C 0.027037195150001747 0.026897202544121143 0.026259374007928004 0.027208100791184096 0.026379038799016263 0.027208100791184096 C 0.026259374007928004 0.027208100791184096 0.02560121765694263 0.026689937046079176 0.025661050052486756 0.02679356979510016 C 0.02560121765694263 0.026689937046079176 0.02572088244803089 0.0258608750539113 0.025661050052486756 0.025964507802932284 C 0.02572088244803089 0.0258608750539113 0.026498703590104634 0.025549976806848347 0.026379038799016374 0.025549976806848347 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32612523993856074,0.36572645207194954) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.028060127789284163 C 0.03789868489979777 0.028112874845384862 0.03844846027938786 0.028810174712123996 0.0383808628110458 0.028693092462492534 C 0.03844846027938786 0.028810174712123996 0.03868978327710845 0.02952944997839246 0.0386660201643344 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029465114784861697 C 0.038164239094485276 0.029754818220613346 0.03186314105536775 0.03340749099644447 0.032644647326144915 0.03294155601388148 C 0.03186314105536775 0.03340749099644447 0.02900821971408033 0.035232566122428824 0.029287944915008378 0.03505633457561749" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029287944915008378 0.03505633457561749 C 0.029280988943181818 0.034977830289044304 0.02919088717402202 0.033956815997273945 0.029204473253089655 0.03411428313673922 C 0.02919088717402202 0.033956815997273945 0.029118281858955698 0.03308776604914208 0.029124911966196772 0.03316672890203416" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029124911966196772 0.03316672890203416 C 0.029350625777850397 0.033030882245056646 0.03256097258754303 0.031111018925574774 0.03183347770604028 0.03153656901830394 C 0.03256097258754303 0.031111018925574774 0.038356631614078894 0.027770424353532514 0.03785485054422977 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3201038671003713,0.36225001084292974) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025786851661753454 C 0.02749021185912141 0.025934898446069145 0.027319262157566766 0.02711927272059468 0.027404737008344088 0.02697122593627899 C 0.027319262157566766 0.02711927272059468 0.026208089097461564 0.027563413073541758 0.02637903879901621 0.027563413073541758 C 0.026208089097461564 0.027563413073541758 0.025267865738911006 0.0268231791519633 0.025353340589688328 0.02697122593627899 C 0.025267865738911006 0.0268231791519633 0.02543881544046565 0.025638804877437762 0.025353340589688328 0.025786851661753454 C 0.02543881544046565 0.025638804877437762 0.026549988500570856 0.025194664524490686 0.026379038799016208 0.025194664524490686 C 0.026549988500570856 0.025194664524490686 0.02749021185912141 0.025934898446069145 0.027404737008344088 0.025786851661753454 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3201038671003713,0.36225001084292974) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.025964507802932284 C 0.027156859941089854 0.026068140551953268 0.0270371951500016 0.026897202544121143 0.027097027545545726 0.02679356979510016 C 0.0270371951500016 0.026897202544121143 0.02625937400792796 0.027208100791184096 0.02637903879901621 0.027208100791184096 C 0.02625937400792796 0.027208100791184096 0.025601217656942565 0.026689937046079176 0.025661050052486693 0.02679356979510016 C 0.025601217656942565 0.026689937046079176 0.02572088244803082 0.0258608750539113 0.025661050052486693 0.025964507802932284 C 0.02572088244803082 0.0258608750539113 0.02649870359010446 0.025549976806848347 0.026379038799016208 0.025549976806848347 C 0.02649870359010446 0.025549976806848347 0.027156859941089854 0.026068140551953268 0.027097027545545726 0.025964507802932284 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32612523993856074,0.36572645207194954) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.028060127789284163 C 0.02712505555780468 0.028349831225035812 0.033415067242743804 0.0319829992437819 0.03264464732614501 0.03153656901830394 C 0.033415067242743804 0.0319829992437819 0.036136952333890734 0.03357401728474596 0.03586831348714106 0.03341729049501965" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03586831348714106 0.03341729049501965 C 0.03587030281334335 0.033459845075761 0.03589718016088979 0.03409085434767516 0.035892185401568556 0.033927945463915817 C 0.03589718016088979 0.03409085434767516 0.03593125603211474 0.0354925514031498 0.035928250598995806 0.03537219710013181" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035928250598995806 0.03537219710013181 C 0.035587019524582854 0.03516964367627761 0.030990465561778334 0.03244929915427564 0.031833477706040406 0.03294155601388148 C 0.030990465561778334 0.03244929915427564 0.025310323798001823 0.029175411349110048 0.025812104867850946 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029465114784861697 C 0.02583586798062499 0.029400779591330934 0.026164859689481516 0.02857601021286107 0.026097262221139464 0.028693092462492534 C 0.026164859689481516 0.02857601021286107 0.02666710884352357 0.028007380733183464 0.02662327448795556 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐4">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.332463528421294,0.36911297206734256) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025194664524490686 C 0.026549988500571026 0.025194664524490686 0.02749021185912155 0.025934898446069145 0.027404737008344227 0.025786851661753454 C 0.02749021185912155 0.025934898446069145 0.027319262157566897 0.02711927272059468 0.027404737008344227 0.02697122593627899 C 0.027319262157566897 0.02711927272059468 0.026208089097461612 0.027563413073541758 0.026379038799016263 0.027563413073541758 C 0.026208089097461612 0.027563413073541758 0.02526786573891109 0.0268231791519633 0.02535334058968841 0.02697122593627899 C 0.02526786573891109 0.0268231791519633 0.02543881544046574 0.025638804877437762 0.02535334058968841 0.025786851661753454 C 0.02543881544046574 0.025638804877437762 0.026549988500571026 0.025194664524490686 0.026379038799016374 0.025194664524490686 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.332463528421294,0.36911297206734256) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025549976806848347 C 0.026498703590104634 0.025549976806848347 0.027156859941090006 0.026068140551953268 0.027097027545545882 0.025964507802932284 C 0.027156859941090006 0.026068140551953268 0.027037195150001747 0.026897202544121143 0.027097027545545882 0.02679356979510016 C 0.027037195150001747 0.026897202544121143 0.026259374007928004 0.027208100791184096 0.026379038799016263 0.027208100791184096 C 0.026259374007928004 0.027208100791184096 0.02560121765694263 0.026689937046079176 0.025661050052486756 0.02679356979510016 C 0.02560121765694263 0.026689937046079176 0.02572088244803089 0.0258608750539113 0.025661050052486756 0.025964507802932284 C 0.02572088244803089 0.0258608750539113 0.026498703590104634 0.025549976806848347 0.026379038799016374 0.025549976806848347 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3264421555831047,0.37258941329636236) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.028060127789284163 C 0.03789868489979777 0.028112874845384862 0.03844846027938786 0.028810174712123996 0.0383808628110458 0.028693092462492534 C 0.03844846027938786 0.028810174712123996 0.03868978327710845 0.02952944997839246 0.0386660201643344 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029465114784861697 C 0.038164239094485276 0.029754818220613346 0.03187981366290578 0.03340727383957479 0.032644647326144915 0.03294155601388148 C 0.03187981366290578 0.03340727383957479 0.029224963612074766 0.035229743083123106 0.029488016205464776 0.03505372869318144" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029488016205464776 0.03505372869318144 C 0.029482402205140337 0.03498232991189912 0.02940840409400598 0.03403586001825442 0.029420648201571493 0.034196943317793535 C 0.02940840409400598 0.03403586001825442 0.029334456807437535 0.033031044580455235 0.02934108691467861 0.033120729098712026" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02934108691467861 0.033120729098712026 C 0.029548786147292082 0.03298871575867802 0.032542958008502876 0.03111485224251829 0.03183347770604028 0.03153656901830394 C 0.032542958008502876 0.03111485224251829 0.038356631614078894 0.027770424353532514 0.03785485054422977 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.32042078274491526,0.36911297206734256) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025786851661753454 C 0.02749021185912141 0.025934898446069145 0.027319262157566766 0.02711927272059468 0.027404737008344088 0.02697122593627899 C 0.027319262157566766 0.02711927272059468 0.026208089097461564 0.027563413073541758 0.02637903879901621 0.027563413073541758 C 0.026208089097461564 0.027563413073541758 0.025267865738911006 0.0268231791519633 0.025353340589688328 0.02697122593627899 C 0.025267865738911006 0.0268231791519633 0.02543881544046565 0.025638804877437762 0.025353340589688328 0.025786851661753454 C 0.02543881544046565 0.025638804877437762 0.026549988500570856 0.025194664524490686 0.026379038799016208 0.025194664524490686 C 0.026549988500570856 0.025194664524490686 0.02749021185912141 0.025934898446069145 0.027404737008344088 0.025786851661753454 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32042078274491526,0.36911297206734256) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.025964507802932284 C 0.027156859941089854 0.026068140551953268 0.0270371951500016 0.026897202544121143 0.027097027545545726 0.02679356979510016 C 0.0270371951500016 0.026897202544121143 0.02625937400792796 0.027208100791184096 0.02637903879901621 0.027208100791184096 C 0.02625937400792796 0.027208100791184096 0.025601217656942565 0.026689937046079176 0.025661050052486693 0.02679356979510016 C 0.025601217656942565 0.026689937046079176 0.02572088244803082 0.0258608750539113 0.025661050052486693 0.025964507802932284 C 0.02572088244803082 0.0258608750539113 0.02649870359010446 0.025549976806848347 0.026379038799016208 0.025549976806848347 C 0.02649870359010446 0.025549976806848347 0.027156859941089854 0.026068140551953268 0.027097027545545726 0.025964507802932284 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3264421555831047,0.37258941329636236) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.028060127789284163 C 0.02712505555780468 0.028349831225035812 0.03340285647113882 0.031969745301394854 0.03264464732614501 0.03153656901830394 C 0.03340285647113882 0.031969745301394854 0.03597821230302589 0.03340171603371435 0.035721784227881206 0.03325824318637509" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035721784227881206 0.03325824318637509 C 0.03572250606344988 0.033284957477403364 0.0357341735233929 0.033741723562473756 0.03573044625470529 0.03357881467871441 C 0.0357341735233929 0.033741723562473756 0.03576951688525148 0.035349344384218315 0.03576651145213254 0.03521314979148724" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03576651145213254 0.03521314979148724 C 0.0354387586399582 0.035023850310020095 0.03100394382401694 0.03246255309666269 0.031833477706040406 0.03294155601388148 C 0.03100394382401694 0.03246255309666269 0.025310323798001823 0.029175411349110048 0.025812104867850946 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029465114784861697 C 0.02583586798062499 0.029400779591330934 0.026164859689481516 0.02857601021286107 0.026097262221139464 0.028693092462492534 C 0.026164859689481516 0.02857601021286107 0.02666710884352357 0.028007380733183464 0.02662327448795556 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐5">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3328016595360922,0.375880240026235) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025194664524490686 C 0.026549988500571026 0.025194664524490686 0.02749021185912155 0.025934898446069145 0.027404737008344227 0.025786851661753454 C 0.02749021185912155 0.025934898446069145 0.027319262157566897 0.02711927272059468 0.027404737008344227 0.02697122593627899 C 0.027319262157566897 0.02711927272059468 0.026208089097461612 0.027563413073541758 0.026379038799016263 0.027563413073541758 C 0.026208089097461612 0.027563413073541758 0.02526786573891109 0.0268231791519633 0.02535334058968841 0.02697122593627899 C 0.02526786573891109 0.0268231791519633 0.02543881544046574 0.025638804877437762 0.02535334058968841 0.025786851661753454 C 0.02543881544046574 0.025638804877437762 0.026549988500571026 0.025194664524490686 0.026379038799016374 0.025194664524490686 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3328016595360922,0.375880240026235) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025549976806848347 C 0.026498703590104634 0.025549976806848347 0.027156859941090006 0.026068140551953268 0.027097027545545882 0.025964507802932284 C 0.027156859941090006 0.026068140551953268 0.027037195150001747 0.026897202544121143 0.027097027545545882 0.02679356979510016 C 0.027037195150001747 0.026897202544121143 0.026259374007928004 0.027208100791184096 0.026379038799016263 0.027208100791184096 C 0.026259374007928004 0.027208100791184096 0.02560121765694263 0.026689937046079176 0.025661050052486756 0.02679356979510016 C 0.02560121765694263 0.026689937046079176 0.02572088244803089 0.0258608750539113 0.025661050052486756 0.025964507802932284 C 0.02572088244803089 0.0258608750539113 0.026498703590104634 0.025549976806848347 0.026379038799016374 0.025549976806848347 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3267802866979029,0.3793566812552548) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.028060127789284163 C 0.03789868489979777 0.028112874845384862 0.03844846027938786 0.028810174712123996 0.0383808628110458 0.028693092462492534 C 0.03844846027938786 0.028810174712123996 0.03868978327710845 0.02952944997839246 0.0386660201643344 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029465114784861697 C 0.038164239094485276 0.029754818220613346 0.031888847055319774 0.03338933871463083 0.032644647326144915 0.03294155601388148 C 0.031888847055319774 0.03338933871463083 0.029342397713456665 0.03499658645885155 0.029596416914432683 0.034838507193853854" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029596416914432683 0.034838507193853854 C 0.029592820658787176 0.03478073051250461 0.029543035483800037 0.033989173680658256 0.029553261846686617 0.034145187017662906 C 0.029543035483800037 0.033989173680658256 0.029467070452552657 0.032868110494142684 0.02947370055979373 0.032966347149798084" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02947370055979373 0.032966347149798084 C 0.029670348655314278 0.03284719897217357 0.03253190687140995 0.03112771740492778 0.03183347770604028 0.03153656901830394 C 0.03253190687140995 0.03112771740492778 0.038356631614078894 0.027770424353532514 0.03785485054422977 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.32075891385971345,0.375880240026235) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025786851661753454 C 0.02749021185912141 0.025934898446069145 0.027319262157566766 0.02711927272059468 0.027404737008344088 0.02697122593627899 C 0.027319262157566766 0.02711927272059468 0.026208089097461564 0.027563413073541758 0.02637903879901621 0.027563413073541758 C 0.026208089097461564 0.027563413073541758 0.025267865738911006 0.0268231791519633 0.025353340589688328 0.02697122593627899 C 0.025267865738911006 0.0268231791519633 0.02543881544046565 0.025638804877437762 0.025353340589688328 0.025786851661753454 C 0.02543881544046565 0.025638804877437762 0.026549988500570856 0.025194664524490686 0.026379038799016208 0.025194664524490686 C 0.026549988500570856 0.025194664524490686 0.02749021185912141 0.025934898446069145 0.027404737008344088 0.025786851661753454 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32075891385971345,0.375880240026235) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.025964507802932284 C 0.027156859941089854 0.026068140551953268 0.0270371951500016 0.026897202544121143 0.027097027545545726 0.02679356979510016 C 0.0270371951500016 0.026897202544121143 0.02625937400792796 0.027208100791184096 0.02637903879901621 0.027208100791184096 C 0.02625937400792796 0.027208100791184096 0.025601217656942565 0.026689937046079176 0.025661050052486693 0.02679356979510016 C 0.025601217656942565 0.026689937046079176 0.02572088244803082 0.0258608750539113 0.025661050052486693 0.025964507802932284 C 0.02572088244803082 0.0258608750539113 0.02649870359010446 0.025549976806848347 0.026379038799016208 0.025549976806848347 C 0.02649870359010446 0.025549976806848347 0.027156859941089854 0.026068140551953268 0.027097027545545726 0.025964507802932284 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3267802866979029,0.3793566812552548) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.028060127789284163 C 0.02712505555780468 0.028349831225035812 0.03338774833191064 0.031965422868573866 0.03264464732614501 0.03153656901830394 C 0.03338774833191064 0.031965422868573866 0.035781806493059606 0.0333455244070415 0.0355404865571431 0.03320637399252323" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0355404865571431 0.03320637399252323 C 0.03554172415656927 0.0332510861534141 0.03555958078280221 0.03390726537921361 0.035555337750257106 0.0337429199232137 C 0.03555958078280221 0.03390726537921361 0.03559440838080329 0.035298152759631156 0.035591402947684356 0.03517851946452212" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035591402947684356 0.03517851946452212 C 0.03527824251088069 0.0349921058436354 0.03101853619938762 0.03246543895724312 0.031833477706040406 0.03294155601388148 C 0.03101853619938762 0.03246543895724312 0.025310323798001823 0.029175411349110048 0.025812104867850946 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029465114784861697 C 0.02583586798062499 0.029400779591330934 0.026164859689481516 0.02857601021286107 0.026097262221139464 0.028693092462492534 C 0.026164859689481516 0.02857601021286107 0.02666710884352357 0.028007380733183464 0.02662327448795556 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐6">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3331011271473075,0.38295727725646084) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025194664524490686 C 0.026549988500571026 0.025194664524490686 0.02749021185912155 0.025934898446069145 0.027404737008344227 0.025786851661753454 C 0.02749021185912155 0.025934898446069145 0.027319262157566897 0.02711927272059468 0.027404737008344227 0.02697122593627899 C 0.027319262157566897 0.02711927272059468 0.026208089097461612 0.027563413073541758 0.026379038799016263 0.027563413073541758 C 0.026208089097461612 0.027563413073541758 0.02526786573891109 0.0268231791519633 0.02535334058968841 0.02697122593627899 C 0.02526786573891109 0.0268231791519633 0.02543881544046574 0.025638804877437762 0.02535334058968841 0.025786851661753454 C 0.02543881544046574 0.025638804877437762 0.026549988500571026 0.025194664524490686 0.026379038799016374 0.025194664524490686 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3331011271473075,0.38295727725646084) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025549976806848347 C 0.026498703590104634 0.025549976806848347 0.027156859941090006 0.026068140551953268 0.027097027545545882 0.025964507802932284 C 0.027156859941090006 0.026068140551953268 0.027037195150001747 0.026897202544121143 0.027097027545545882 0.02679356979510016 C 0.027037195150001747 0.026897202544121143 0.026259374007928004 0.027208100791184096 0.026379038799016263 0.027208100791184096 C 0.026259374007928004 0.027208100791184096 0.02560121765694263 0.026689937046079176 0.025661050052486756 0.02679356979510016 C 0.02560121765694263 0.026689937046079176 0.02572088244803089 0.0258608750539113 0.025661050052486756 0.025964507802932284 C 0.02572088244803089 0.0258608750539113 0.026498703590104634 0.025549976806848347 0.026379038799016374 0.025549976806848347 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32707975430911823,0.38643371848548064) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.028060127789284163 C 0.03789868489979777 0.028112874845384862 0.03844846027938786 0.028810174712123996 0.0383808628110458 0.028693092462492534 C 0.03844846027938786 0.028810174712123996 0.03868978327710845 0.02952944997839246 0.0386660201643344 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029465114784861697 C 0.038164239094485276 0.029754818220613346 0.03189859372882029 0.03338999808117082 0.032644647326144915 0.03294155601388148 C 0.03189859372882029 0.03338999808117082 0.02946910446896342 0.03500515822387142 0.02971337699643892 0.034846419592333734" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02971337699643892 0.034846419592333734 C 0.029709467915277715 0.034775831642419 0.029658349650552876 0.03384335085635227 0.02966646802250443 0.03399936419335692 C 0.029658349650552876 0.03384335085635227 0.029611747242229938 0.03288883416118805 0.029615956533020283 0.032974259548277964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029615956533020283 0.032974259548277964 C 0.029800749964105283 0.03285445200411346 0.032520052206974404 0.031127058038387792 0.03183347770604028 0.03153656901830394 C 0.032520052206974404 0.031127058038387792 0.038356631614078894 0.027770424353532514 0.03785485054422977 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3210583814709288,0.38295727725646084) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025786851661753454 C 0.02749021185912141 0.025934898446069145 0.027319262157566766 0.02711927272059468 0.027404737008344088 0.02697122593627899 C 0.027319262157566766 0.02711927272059468 0.026208089097461564 0.027563413073541758 0.02637903879901621 0.027563413073541758 C 0.026208089097461564 0.027563413073541758 0.025267865738911006 0.0268231791519633 0.025353340589688328 0.02697122593627899 C 0.025267865738911006 0.0268231791519633 0.02543881544046565 0.025638804877437762 0.025353340589688328 0.025786851661753454 C 0.02543881544046565 0.025638804877437762 0.026549988500570856 0.025194664524490686 0.026379038799016208 0.025194664524490686 C 0.026549988500570856 0.025194664524490686 0.02749021185912141 0.025934898446069145 0.027404737008344088 0.025786851661753454 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3210583814709288,0.38295727725646084) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.025964507802932284 C 0.027156859941089854 0.026068140551953268 0.0270371951500016 0.026897202544121143 0.027097027545545726 0.02679356979510016 C 0.0270371951500016 0.026897202544121143 0.02625937400792796 0.027208100791184096 0.02637903879901621 0.027208100791184096 C 0.02625937400792796 0.027208100791184096 0.025601217656942565 0.026689937046079176 0.025661050052486693 0.02679356979510016 C 0.025601217656942565 0.026689937046079176 0.02572088244803082 0.0258608750539113 0.025661050052486693 0.025964507802932284 C 0.02572088244803082 0.0258608750539113 0.02649870359010446 0.025549976806848347 0.026379038799016208 0.025549976806848347 C 0.02649870359010446 0.025549976806848347 0.027156859941089854 0.026068140551953268 0.027097027545545726 0.025964507802932284 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32707975430911823,0.38643371848548064) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.028060127789284163 C 0.02712505555780468 0.028349831225035812 0.03337487073713198 0.031955358229279904 0.03264464732614501 0.03153656901830394 C 0.03337487073713198 0.031955358229279904 0.03561439776093703 0.03321468409621999 0.03538595541979918 0.03308559832099568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03538595541979918 0.03308559832099568 C 0.0353867343377761 0.033105796427023215 0.035398341060277026 0.0334889283425189 0.0353953024355223 0.033327975593326065 C 0.035398341060277026 0.0334889283425189 0.03542467862363366 0.03515778595447508 0.035422418916855866 0.035017031311309774" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035422418916855866 0.035017031311309774 C 0.035123340482621244 0.034844075036524084 0.03103261820195666 0.03247889630334414 0.031833477706040406 0.03294155601388148 C 0.03103261820195666 0.03247889630334414 0.025310323798001823 0.029175411349110048 0.025812104867850946 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029465114784861697 C 0.02583586798062499 0.029400779591330934 0.026164859689481516 0.02857601021286107 0.026097262221139464 0.028693092462492534 C 0.026164859689481516 0.02857601021286107 0.02666710884352357 0.028007380733183464 0.02662327448795556 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐7">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3333921157487398,0.3898793335367065) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025194664524490686 C 0.026549988500571026 0.025194664524490686 0.02749021185912155 0.025934898446069145 0.027404737008344227 0.025786851661753454 C 0.02749021185912155 0.025934898446069145 0.027319262157566897 0.02711927272059468 0.027404737008344227 0.02697122593627899 C 0.027319262157566897 0.02711927272059468 0.026208089097461612 0.027563413073541758 0.026379038799016263 0.027563413073541758 C 0.026208089097461612 0.027563413073541758 0.02526786573891109 0.0268231791519633 0.02535334058968841 0.02697122593627899 C 0.02526786573891109 0.0268231791519633 0.02543881544046574 0.025638804877437762 0.02535334058968841 0.025786851661753454 C 0.02543881544046574 0.025638804877437762 0.026549988500571026 0.025194664524490686 0.026379038799016374 0.025194664524490686 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3333921157487398,0.3898793335367065) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025549976806848347 C 0.026498703590104634 0.025549976806848347 0.027156859941090006 0.026068140551953268 0.027097027545545882 0.025964507802932284 C 0.027156859941090006 0.026068140551953268 0.027037195150001747 0.026897202544121143 0.027097027545545882 0.02679356979510016 C 0.027037195150001747 0.026897202544121143 0.026259374007928004 0.027208100791184096 0.026379038799016263 0.027208100791184096 C 0.026259374007928004 0.027208100791184096 0.02560121765694263 0.026689937046079176 0.025661050052486756 0.02679356979510016 C 0.02560121765694263 0.026689937046079176 0.02572088244803089 0.0258608750539113 0.025661050052486756 0.025964507802932284 C 0.02572088244803089 0.0258608750539113 0.026498703590104634 0.025549976806848347 0.026379038799016374 0.025549976806848347 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3273707429105505,0.3933557747657263) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.028060127789284163 C 0.03789868489979777 0.028112874845384862 0.03844846027938786 0.028810174712123996 0.0383808628110458 0.028693092462492534 C 0.03844846027938786 0.028810174712123996 0.03868978327710845 0.02952944997839246 0.0386660201643344 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029465114784861697 C 0.038164239094485276 0.029754818220613346 0.0318994460202621 0.033392766948557855 0.032644647326144915 0.03294155601388148 C 0.0318994460202621 0.033392766948557855 0.029480184257706984 0.035041153499902875 0.02972360449374067 0.034879646000978155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02972360449374067 0.034879646000978155 C 0.029719975266438606 0.03479838239874932 0.02967475636412871 0.03374350750467154 0.029680053766115905 0.03390448277423213 C 0.02967475636412871 0.03374350750467154 0.029658367495209184 0.032868231098919336 0.029660035669894315 0.03294794276625109" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029660035669894315 0.03294794276625109 C 0.029841155839573145 0.032830328287255496 0.03251637894556823 0.031129251103556698 0.03183347770604028 0.03153656901830394 C 0.03251637894556823 0.031129251103556698 0.038356631614078894 0.027770424353532514 0.03785485054422977 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3213493700723611,0.3898793335367065) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025786851661753454 C 0.02749021185912141 0.025934898446069145 0.027319262157566766 0.02711927272059468 0.027404737008344088 0.02697122593627899 C 0.027319262157566766 0.02711927272059468 0.026208089097461564 0.027563413073541758 0.02637903879901621 0.027563413073541758 C 0.026208089097461564 0.027563413073541758 0.025267865738911006 0.0268231791519633 0.025353340589688328 0.02697122593627899 C 0.025267865738911006 0.0268231791519633 0.02543881544046565 0.025638804877437762 0.025353340589688328 0.025786851661753454 C 0.02543881544046565 0.025638804877437762 0.026549988500570856 0.025194664524490686 0.026379038799016208 0.025194664524490686 C 0.026549988500570856 0.025194664524490686 0.02749021185912141 0.025934898446069145 0.027404737008344088 0.025786851661753454 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213493700723611,0.3898793335367065) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.025964507802932284 C 0.027156859941089854 0.026068140551953268 0.0270371951500016 0.026897202544121143 0.027097027545545726 0.02679356979510016 C 0.0270371951500016 0.026897202544121143 0.02625937400792796 0.027208100791184096 0.02637903879901621 0.027208100791184096 C 0.02625937400792796 0.027208100791184096 0.025601217656942565 0.026689937046079176 0.025661050052486693 0.02679356979510016 C 0.025601217656942565 0.026689937046079176 0.02572088244803082 0.0258608750539113 0.025661050052486693 0.025964507802932284 C 0.02572088244803082 0.0258608750539113 0.02649870359010446 0.025549976806848347 0.026379038799016208 0.025549976806848347 C 0.02649870359010446 0.025549976806848347 0.027156859941089854 0.026068140551953268 0.027097027545545726 0.025964507802932284 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3273707429105505,0.3933557747657263) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.028060127789284163 C 0.02712505555780468 0.028349831225035812 0.033360746882617295 0.03195124892444538 0.03264464732614501 0.03153656901830394 C 0.033360746882617295 0.03195124892444538 0.0354307876522461 0.033161263133371276 0.03521646916562294 0.03303628666298148" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03521646916562294 0.03303628666298148 C 0.03521845849182523 0.033084656324759786 0.0352423586798381 0.033774669555524515 0.03524034108005043 0.03361672260432111 C 0.0352423586798381 0.033774669555524515 0.03524070863666028 0.03504122736684744 0.03524068036307491 0.03493165007742234" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03524068036307491 0.03493165007742234 C 0.03495674680832203 0.034765808905460605 0.03104776308143841 0.032486011406168094 0.031833477706040406 0.03294155601388148 C 0.03104776308143841 0.032486011406168094 0.025310323798001823 0.029175411349110048 0.025812104867850946 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029465114784861697 C 0.02583586798062499 0.029400779591330934 0.026164859689481516 0.02857601021286107 0.026097262221139464 0.028693092462492534 C 0.026164859689481516 0.02857601021286107 0.02666710884352357 0.028007380733183464 0.02662327448795556 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐8">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3336333286090829,0.3971302678940166) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025194664524490686 C 0.026549988500571026 0.025194664524490686 0.02749021185912155 0.025934898446069145 0.027404737008344227 0.025786851661753454 C 0.02749021185912155 0.025934898446069145 0.027319262157566897 0.02711927272059468 0.027404737008344227 0.02697122593627899 C 0.027319262157566897 0.02711927272059468 0.026208089097461612 0.027563413073541758 0.026379038799016263 0.027563413073541758 C 0.026208089097461612 0.027563413073541758 0.02526786573891109 0.0268231791519633 0.02535334058968841 0.02697122593627899 C 0.02526786573891109 0.0268231791519633 0.02543881544046574 0.025638804877437762 0.02535334058968841 0.025786851661753454 C 0.02543881544046574 0.025638804877437762 0.026549988500571026 0.025194664524490686 0.026379038799016374 0.025194664524490686 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3336333286090829,0.3971302678940166) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025549976806848347 C 0.026498703590104634 0.025549976806848347 0.027156859941090006 0.026068140551953268 0.027097027545545882 0.025964507802932284 C 0.027156859941090006 0.026068140551953268 0.027037195150001747 0.026897202544121143 0.027097027545545882 0.02679356979510016 C 0.027037195150001747 0.026897202544121143 0.026259374007928004 0.027208100791184096 0.026379038799016263 0.027208100791184096 C 0.026259374007928004 0.027208100791184096 0.02560121765694263 0.026689937046079176 0.025661050052486756 0.02679356979510016 C 0.02560121765694263 0.026689937046079176 0.02572088244803089 0.0258608750539113 0.025661050052486756 0.025964507802932284 C 0.02572088244803089 0.0258608750539113 0.026498703590104634 0.025549976806848347 0.026379038799016374 0.025549976806848347 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3276119557708935,0.4006067091230364) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.028060127789284163 C 0.03789868489979777 0.028112874845384862 0.03844846027938786 0.028810174712123996 0.0383808628110458 0.028693092462492534 C 0.03844846027938786 0.028810174712123996 0.03868978327710845 0.02952944997839246 0.0386660201643344 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029465114784861697 C 0.038164239094485276 0.029754818220613346 0.03189466723110779 0.03338360921744204 0.032644647326144915 0.03294155601388148 C 0.03189466723110779 0.03338360921744204 0.029418059998700903 0.034922102995397275 0.029666259023888905 0.034769753227588365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029666259023888905 0.034769753227588365 C 0.029663823286868243 0.03469160085407324 0.02963326144088555 0.03367485198730093 0.029637030179640984 0.03383192474540683 C 0.02963326144088555 0.03367485198730093 0.02961970115708892 0.0328059597457267 0.029621034158823695 0.03288488013031748" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029621034158823695 0.03288488013031748 C 0.029805404454425078 0.032772520870983014 0.03251962907149079 0.031134506323217834 0.03183347770604028 0.03153656901830394 C 0.03251962907149079 0.031134506323217834 0.038356631614078894 0.027770424353532514 0.03785485054422977 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3215905829327041,0.3971302678940166) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025786851661753454 C 0.02749021185912141 0.025934898446069145 0.027319262157566766 0.02711927272059468 0.027404737008344088 0.02697122593627899 C 0.027319262157566766 0.02711927272059468 0.026208089097461564 0.027563413073541758 0.02637903879901621 0.027563413073541758 C 0.026208089097461564 0.027563413073541758 0.025267865738911006 0.0268231791519633 0.025353340589688328 0.02697122593627899 C 0.025267865738911006 0.0268231791519633 0.02543881544046565 0.025638804877437762 0.025353340589688328 0.025786851661753454 C 0.02543881544046565 0.025638804877437762 0.026549988500570856 0.025194664524490686 0.026379038799016208 0.025194664524490686 C 0.026549988500570856 0.025194664524490686 0.02749021185912141 0.025934898446069145 0.027404737008344088 0.025786851661753454 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3215905829327041,0.3971302678940166) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.025964507802932284 C 0.027156859941089854 0.026068140551953268 0.0270371951500016 0.026897202544121143 0.027097027545545726 0.02679356979510016 C 0.0270371951500016 0.026897202544121143 0.02625937400792796 0.027208100791184096 0.02637903879901621 0.027208100791184096 C 0.02625937400792796 0.027208100791184096 0.025601217656942565 0.026689937046079176 0.025661050052486693 0.02679356979510016 C 0.025601217656942565 0.026689937046079176 0.02572088244803082 0.0258608750539113 0.025661050052486693 0.025964507802932284 C 0.02572088244803082 0.0258608750539113 0.02649870359010446 0.025549976806848347 0.026379038799016208 0.025549976806848347 C 0.02649870359010446 0.025549976806848347 0.027156859941089854 0.026068140551953268 0.027097027545545726 0.025964507802932284 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3276119557708935,0.4006067091230364) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.028060127789284163 C 0.02712505555780468 0.028349831225035812 0.033348827472490766 0.03194288247607054 0.03264464732614501 0.03153656901830394 C 0.033348827472490766 0.03194288247607054 0.03527583532060125 0.033052499304498335 0.03507343624410462 0.03293588928248338" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03507343624410462 0.03293588928248338 C 0.03507436614920565 0.032970151296994946 0.035086411601334445 0.033506764077077714 0.035084595105316994 0.03334703345662215 C 0.035086411601334445 0.033506764077077714 0.03509612078723043 0.034978125333894175 0.03509523419631401 0.034852656727950175" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03509523419631401 0.034852656727950175 C 0.034823421155457876 0.03469339833511112 0.03105988359533515 0.032492594185290775 0.031833477706040406 0.03294155601388148 C 0.03105988359533515 0.032492594185290775 0.025310323798001823 0.029175411349110048 0.025812104867850946 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029465114784861697 C 0.02583586798062499 0.029400779591330934 0.026164859689481516 0.02857601021286107 0.026097262221139464 0.028693092462492534 C 0.026164859689481516 0.02857601021286107 0.02666710884352357 0.028007380733183464 0.02662327448795556 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐9">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3337730592486884,0.4043134533641045) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025194664524490686 C 0.026549988500571026 0.025194664524490686 0.02749021185912155 0.025934898446069145 0.027404737008344227 0.025786851661753454 C 0.02749021185912155 0.025934898446069145 0.027319262157566897 0.02711927272059468 0.027404737008344227 0.02697122593627899 C 0.027319262157566897 0.02711927272059468 0.026208089097461612 0.027563413073541758 0.026379038799016263 0.027563413073541758 C 0.026208089097461612 0.027563413073541758 0.02526786573891109 0.0268231791519633 0.02535334058968841 0.02697122593627899 C 0.02526786573891109 0.0268231791519633 0.02543881544046574 0.025638804877437762 0.02535334058968841 0.025786851661753454 C 0.02543881544046574 0.025638804877437762 0.026549988500571026 0.025194664524490686 0.026379038799016374 0.025194664524490686 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3337730592486884,0.4043134533641045) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025549976806848347 C 0.026498703590104634 0.025549976806848347 0.027156859941090006 0.026068140551953268 0.027097027545545882 0.025964507802932284 C 0.027156859941090006 0.026068140551953268 0.027037195150001747 0.026897202544121143 0.027097027545545882 0.02679356979510016 C 0.027037195150001747 0.026897202544121143 0.026259374007928004 0.027208100791184096 0.026379038799016263 0.027208100791184096 C 0.026259374007928004 0.027208100791184096 0.02560121765694263 0.026689937046079176 0.025661050052486756 0.02679356979510016 C 0.02560121765694263 0.026689937046079176 0.02572088244803089 0.0258608750539113 0.025661050052486756 0.025964507802932284 C 0.02572088244803089 0.0258608750539113 0.026498703590104634 0.025549976806848347 0.026379038799016374 0.025549976806848347 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3277516864104991,0.4077898945931243) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.028060127789284163 C 0.03789868489979777 0.028112874845384862 0.03844846027938786 0.028810174712123996 0.0383808628110458 0.028693092462492534 C 0.03844846027938786 0.028810174712123996 0.03868978327710845 0.02952944997839246 0.0386660201643344 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029465114784861697 C 0.038164239094485276 0.029754818220613346 0.03189214103701037 0.033389823660662156 0.032644647326144915 0.03294155601388148 C 0.03189214103701037 0.033389823660662156 0.029385219475434432 0.03500289075725883 0.029635944694719855 0.0348443265462298" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029635944694719855 0.0348443265462298 C 0.029634072704375156 0.034780270707091034 0.02961121539629728 0.03391465379292031 0.02961348081058348 0.03407565647656461 C 0.02961121539629728 0.03391465379292031 0.029608366299343936 0.03281534749799262 0.02960875972328544 0.032912294342498156" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02960875972328544 0.032912294342498156 C 0.02979415288851501 0.03279765056548197 0.03252065194111897 0.031132221805536108 0.03183347770604028 0.03153656901830394 C 0.03252065194111897 0.031132221805536108 0.038356631614078894 0.027770424353532514 0.03785485054422977 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3217303135723097,0.4043134533641045) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025786851661753454 C 0.02749021185912141 0.025934898446069145 0.027319262157566766 0.02711927272059468 0.027404737008344088 0.02697122593627899 C 0.027319262157566766 0.02711927272059468 0.026208089097461564 0.027563413073541758 0.02637903879901621 0.027563413073541758 C 0.026208089097461564 0.027563413073541758 0.025267865738911006 0.0268231791519633 0.025353340589688328 0.02697122593627899 C 0.025267865738911006 0.0268231791519633 0.02543881544046565 0.025638804877437762 0.025353340589688328 0.025786851661753454 C 0.02543881544046565 0.025638804877437762 0.026549988500570856 0.025194664524490686 0.026379038799016208 0.025194664524490686 C 0.026549988500570856 0.025194664524490686 0.02749021185912141 0.025934898446069145 0.027404737008344088 0.025786851661753454 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3217303135723097,0.4043134533641045) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.025964507802932284 C 0.027156859941089854 0.026068140551953268 0.0270371951500016 0.026897202544121143 0.027097027545545726 0.02679356979510016 C 0.0270371951500016 0.026897202544121143 0.02625937400792796 0.027208100791184096 0.02637903879901621 0.027208100791184096 C 0.02625937400792796 0.027208100791184096 0.025601217656942565 0.026689937046079176 0.025661050052486693 0.02679356979510016 C 0.025601217656942565 0.026689937046079176 0.02572088244803082 0.0258608750539113 0.025661050052486693 0.025964507802932284 C 0.02572088244803082 0.0258608750539113 0.02649870359010446 0.025549976806848347 0.026379038799016208 0.025549976806848347 C 0.02649870359010446 0.025549976806848347 0.027156859941089854 0.026068140551953268 0.027097027545545726 0.025964507802932284 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3277516864104991,0.4077898945931243) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.028060127789284163 C 0.02712505555780468 0.028349831225035812 0.0333431907658786 0.03193126868832909 0.03264464732614501 0.03153656901830394 C 0.0333431907658786 0.03193126868832909 0.035202558134643014 0.03290152006385936 0.035005795764758554 0.032796523829585866" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035005795764758554 0.032796523829585866 C 0.035007857560523006 0.03287711917102719 0.035032857393497846 0.0339210123894683 0.035030537313932006 0.033763667926881694 C 0.035032857393497846 0.0339210123894683 0.03503389500334998 0.034761406501770384 0.0350336367195486 0.0346846573806251" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0350336367195486 0.0346846573806251 C 0.03476695680175625 0.03453939893339647 0.031065016718398935 0.0325065941309012 0.031833477706040406 0.03294155601388148 C 0.031065016718398935 0.0325065941309012 0.025310323798001823 0.029175411349110048 0.025812104867850946 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029465114784861697 C 0.02583586798062499 0.029400779591330934 0.026164859689481516 0.02857601021286107 0.026097262221139464 0.028693092462492534 C 0.026164859689481516 0.02857601021286107 0.02666710884352357 0.028007380733183464 0.02662327448795556 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐10">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.33395821398754416,0.411311088735132) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025194664524490686 C 0.026549988500571026 0.025194664524490686 0.02749021185912155 0.025934898446069145 0.027404737008344227 0.025786851661753454 C 0.02749021185912155 0.025934898446069145 0.027319262157566897 0.02711927272059468 0.027404737008344227 0.02697122593627899 C 0.027319262157566897 0.02711927272059468 0.026208089097461612 0.027563413073541758 0.026379038799016263 0.027563413073541758 C 0.026208089097461612 0.027563413073541758 0.02526786573891109 0.0268231791519633 0.02535334058968841 0.02697122593627899 C 0.02526786573891109 0.0268231791519633 0.02543881544046574 0.025638804877437762 0.02535334058968841 0.025786851661753454 C 0.02543881544046574 0.025638804877437762 0.026549988500571026 0.025194664524490686 0.026379038799016374 0.025194664524490686 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33395821398754416,0.411311088735132) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025549976806848347 C 0.026498703590104634 0.025549976806848347 0.027156859941090006 0.026068140551953268 0.027097027545545882 0.025964507802932284 C 0.027156859941090006 0.026068140551953268 0.027037195150001747 0.026897202544121143 0.027097027545545882 0.02679356979510016 C 0.027037195150001747 0.026897202544121143 0.026259374007928004 0.027208100791184096 0.026379038799016263 0.027208100791184096 C 0.026259374007928004 0.027208100791184096 0.02560121765694263 0.026689937046079176 0.025661050052486756 0.02679356979510016 C 0.02560121765694263 0.026689937046079176 0.02572088244803089 0.0258608750539113 0.025661050052486756 0.025964507802932284 C 0.02572088244803089 0.0258608750539113 0.026498703590104634 0.025549976806848347 0.026379038799016374 0.025549976806848347 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32793684114935484,0.4147875299641518) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.028060127789284163 C 0.03789868489979777 0.028112874845384862 0.03844846027938786 0.028810174712123996 0.0383808628110458 0.028693092462492534 C 0.03844846027938786 0.028810174712123996 0.03868978327710845 0.02952944997839246 0.0386660201643344 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029465114784861697 C 0.038164239094485276 0.029754818220613346 0.031881155213181626 0.03339918841576433 0.032644647326144915 0.03294155601388148 C 0.031881155213181626 0.03339918841576433 0.02924240376566081 0.03512463257358701 0.029504114808774972 0.034956703607455814" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029504114808774972 0.034956703607455814 C 0.02950323221794916 0.03487643239173817 0.029492838576969126 0.033831656199004696 0.02949352371886523 0.033993449018844046 C 0.029492838576969126 0.033831656199004696 0.029496090554951452 0.03293366816526189 0.029495893106021742 0.03301518976938359" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029495893106021742 0.03301518976938359 C 0.029690691822689953 0.03289197137346029 0.032530057492557614 0.03112364718662899 0.03183347770604028 0.03153656901830394 C 0.032530057492557614 0.03112364718662899 0.038356631614078894 0.027770424353532514 0.03785485054422977 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3219154683111654,0.411311088735132) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025786851661753454 C 0.02749021185912141 0.025934898446069145 0.027319262157566766 0.02711927272059468 0.027404737008344088 0.02697122593627899 C 0.027319262157566766 0.02711927272059468 0.026208089097461564 0.027563413073541758 0.02637903879901621 0.027563413073541758 C 0.026208089097461564 0.027563413073541758 0.025267865738911006 0.0268231791519633 0.025353340589688328 0.02697122593627899 C 0.025267865738911006 0.0268231791519633 0.02543881544046565 0.025638804877437762 0.025353340589688328 0.025786851661753454 C 0.02543881544046565 0.025638804877437762 0.026549988500570856 0.025194664524490686 0.026379038799016208 0.025194664524490686 C 0.026549988500570856 0.025194664524490686 0.02749021185912141 0.025934898446069145 0.027404737008344088 0.025786851661753454 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3219154683111654,0.411311088735132) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.025964507802932284 C 0.027156859941089854 0.026068140551953268 0.0270371951500016 0.026897202544121143 0.027097027545545726 0.02679356979510016 C 0.0270371951500016 0.026897202544121143 0.02625937400792796 0.027208100791184096 0.02637903879901621 0.027208100791184096 C 0.02625937400792796 0.027208100791184096 0.025601217656942565 0.026689937046079176 0.025661050052486693 0.02679356979510016 C 0.025601217656942565 0.026689937046079176 0.02572088244803082 0.0258608750539113 0.025661050052486693 0.025964507802932284 C 0.02572088244803082 0.0258608750539113 0.02649870359010446 0.025549976806848347 0.026379038799016208 0.025549976806848347 C 0.02649870359010446 0.025549976806848347 0.027156859941089854 0.026068140551953268 0.027097027545545726 0.025964507802932284 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32793684114935484,0.4147875299641518) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.028060127789284163 C 0.02712505555780468 0.028349831225035812 0.03333307385733 0.031931724013068714 0.03264464732614501 0.03153656901830394 C 0.03333307385733 0.031931724013068714 0.035071038323511335 0.03290743928547456 0.03488439286217546 0.03280198772646143" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03488439286217546 0.03280198772646143 C 0.034884937317669076 0.03284931551834265 0.03489303134600272 0.033534274983504066 0.03489092632809884 0.033369921229036044 C 0.03489303134600272 0.033534274983504066 0.03491121363943224 0.0348912587426645 0.03490965307702198 0.0347742327800777" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03490965307702198 0.0347742327800777 C 0.03465330512944018 0.034621509716228016 0.031075348688609485 0.03249912951428015 0.031833477706040406 0.03294155601388148 C 0.031075348688609485 0.03249912951428015 0.025310323798001823 0.029175411349110048 0.025812104867850946 0.029465114784861697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029465114784861697 C 0.02583586798062499 0.029400779591330934 0.026164859689481516 0.02857601021286107 0.026097262221139464 0.028693092462492534 C 0.026164859689481516 0.02857601021286107 0.02666710884352357 0.028007380733183464 0.02662327448795556 0.028060127789284163" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐11">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.33416100490325834,0.41831949893608306) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026399708980229256 0.025194844910429344 C 0.026570632645316346 0.02519782839410121 0.027497793940037235 0.025954358734663258 0.027414915880145305 0.025804842756753966 C 0.027497793940037235 0.025954358734663258 0.027306200093737264 0.027135569139578274 0.027394245698932423 0.026989036645340848 C 0.027306200093737264 0.027135569139578274 0.026187444952716292 0.02756024920393124 0.02635836861780338 0.027563232687603103 C 0.026187444952716292 0.02756024920393124 0.025260283657995403 0.02680371886336919 0.025343161717887332 0.02695323484127848 C 0.025260283657995403 0.02680371886336919 0.025451877504295374 0.025622508458454173 0.025363831899100214 0.0257690409526916 C 0.025451877504295374 0.025622508458454173 0.026570632645316346 0.02519782839410121 0.026399708980229256 0.025194844910429344 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33416100490325834,0.41831949893608306) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.02639350792586539 0.02555010307700541 C 0.02651315449142636 0.025552191515575716 0.02716216739773099 0.02608176275396915 0.02710415275580664 0.025977101569432646 C 0.02716216739773099 0.02608176275396915 0.027028051705321004 0.02690861003740966 0.02708968362895762 0.02680603729144346 C 0.027028051705321004 0.02690861003740966 0.02624492310660628 0.02720588608245673 0.026364569672167246 0.027207974521027037 C 0.02624492310660628 0.02720588608245673 0.025595910200301646 0.026676314844063298 0.025653924842226 0.0267809760285998 C 0.025595910200301646 0.026676314844063298 0.025730025892711634 0.025849467560622785 0.02566839396907502 0.025952040306588986 C 0.025730025892711634 0.025849467560622785 0.02651315449142636 0.025552191515575716 0.02639350792586539 0.02555010307700541 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3280798768840333,0.42169032324018263) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03792692769983955 0.02815877327641686 C 0.03796983481616144 0.028212277313874715 0.03850735690161532 0.028919065881840515 0.03844181309570227 0.028800821725911138 C 0.03850735690161532 0.028919065881840515 0.038736090060387286 0.029642443266040923 0.03871345337079613 0.0295777031475694" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03871345337079613 0.0295777031475694 C 0.03820669270252736 0.029858605172911033 0.03185466670761282 0.03339257481532714 0.032632325351570894 0.032948527451668985 C 0.03185466670761282 0.03339257481532714 0.029110651667609972 0.0350694168497838 0.029381549643299275 0.034906271511467274" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029381549643299275 0.034906271511467274 C 0.029381704396129853 0.03482482280057077 0.029382621187171915 0.033768316743916095 0.02938340667726619 0.0339288869807092 C 0.029382621187171915 0.033768316743916095 0.029371183519243154 0.03290030714405341 0.029372123762168002 0.03297942866995001" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029372123762168002 0.03297942866995001 C 0.029578263422038526 0.032858609412497214 0.0325587000087536 0.031127876297722006 0.0318457996806143 0.03152959758051643 C 0.0325587000087536 0.031127876297722006 0.038433688368108315 0.02787787125107523 0.03792692769983955 0.02815877327641686" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.32212009339537645,0.41810932404391804) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027414915880145167 0.025804842756753966 C 0.0274977939400371 0.025954358734663258 0.027306200093737132 0.02713556913957827 0.027394245698932285 0.026989036645340844 C 0.027306200093737132 0.02713556913957827 0.026187444952716243 0.02756024920393124 0.02635836861780333 0.027563232687603103 C 0.026187444952716243 0.02756024920393124 0.025260283657995316 0.026803718863369186 0.02534316171788725 0.026953234841278477 C 0.025260283657995316 0.026803718863369186 0.025451877504295284 0.025622508458454173 0.02536383189910013 0.0257690409526916 C 0.025451877504295284 0.025622508458454173 0.026570632645316176 0.025197828394101205 0.02639970898022909 0.02519484491042934 C 0.026570632645316176 0.025197828394101205 0.0274977939400371 0.025954358734663258 0.027414915880145167 0.025804842756753966 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32212009339537645,0.41810932404391804) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027104152755806483 0.025977101569432642 C 0.027162167397730835 0.026081762753969145 0.027028051705320858 0.026908610037409658 0.027089683628957466 0.026806037291443457 C 0.027028051705320858 0.026908610037409658 0.026244923106606234 0.02720588608245673 0.026364569672167194 0.027207974521027037 C 0.026244923106606234 0.02720588608245673 0.025595910200301584 0.026676314844063298 0.025653924842225936 0.0267809760285998 C 0.025595910200301584 0.026676314844063298 0.025730025892711565 0.025849467560622785 0.025668393969074957 0.025952040306588986 C 0.025730025892711565 0.025849467560622785 0.026513154491426185 0.025552191515575712 0.026393507925865225 0.025550103077005407 C 0.026513154491426185 0.025552191515575712 0.027162167397730835 0.026081762753969145 0.027104152755806483 0.025977101569432642 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3280798768840333,0.42169032324018263) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02669706226700007 0.0279627552461515 C 0.027193710891054806 0.028261171845840215 0.03333213761484405 0.031946483086170985 0.03265684575565691 0.03154375444241608 C 0.03333213761484405 0.031946483086170985 0.034979207812378135 0.03289981101527649 0.034800564577245736 0.032795498971210306" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034800564577245736 0.032795498971210306 C 0.03480162283580374 0.03287287550869894 0.03481432278342697 0.03388698866359092 0.03481326367994181 0.03372401742107391 C 0.03481432278342697 0.03388698866359092 0.03481327466399488 0.03483674858644284 0.03481327381906772 0.03475115388141446" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03481327381906772 0.03475115388141446 C 0.034563940940522786 0.03459975527377737 0.03107529777392884 0.03248455538244353 0.03182127927652851 0.03293437058976934 C 0.03107529777392884 0.03248455538244353 0.025364847163816928 0.029054954793816045 0.025861495787871665 0.02935337139350476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025861495787871665 0.02935337139350476 C 0.025886378085354253 0.029289460722037933 0.026229713897590098 0.028470558656956732 0.02616008335766273 0.028586443335902836 C 0.026229713897590098 0.028470558656956732 0.026741810509444845 0.027910781238672223 0.02669706226700007 0.0279627552461515" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="結び">
<g id="紐左">
<g transform="translate(0.3245425297468982,0.34825484487246955) rotate(0) scale(1,1) translate(-0.007306457586059644,-0.005394161792430208)"><path d="M -0.0034578283360823608 0.024590692300944305 C -0.0030900671883175956 0.023697882747270034 0.0017948923602899738 0.012237049028236366 0.0009553054370948223 0.013876977656853041 C 0.0017948923602899738 0.012237049028236366 0.007089040517689843 0.004164429682601813 0.006617214742259457 0.004911548757544215" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007995700429859838 0.005876774827316189 C 0.0075238746544294514 0.006623893902258591 0.0014942042015000483 0.016482132355241694 0.0023337911246952 0.014842203726625019 C 0.0014942042015000483 0.016482132355241694 -0.0024471037962467486 0.026448727924390555 -0.0020793426484819835 0.025555918370716284" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0020793426484819835 0.025555918370716284 C -0.0021367795521319995 0.02551570061780912 -0.002883459299582207 0.024992869830015963 -0.002768585492282175 0.025073305335830295 C -0.002883459299582207 0.024992869830015963 -0.00351526523973238 0.02455047454803714 -0.0034578283360823642 0.024590692300944305" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3245425297468982,0.34825484487246955) rotate(0) scale(1,1) translate(-0.01330730632983275,-0.005618283659614396)"><path d="M 0.001615029187204513 0.01035376802766881 C 0.001571781022552394 0.010301159959718508 0.0010433560906614428 0.00956109113472476 0.001096051211379083 0.009722471212265191 C 0.0010433560906614428 0.00956109113472476 0.0009732407825273087 0.008308435087593512 0.0009826877385928298 0.00841720709718364" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0009826877385928298 0.00841720709718364 C 0.0014722857098424338 0.008490645702264633 0.00788491494285807 0.008998827578857083 0.006857863393588077 0.00929847035815555 C 0.00788491494285807 0.008998827578857083 0.013844759907853138 0.004448412361222575 0.01330730632983275 0.004821493745602035" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01369581427311773 0.006341072060619921 C 0.01314851534263636 0.006737000678291846 0.006121495016848511 0.011426606803270435 0.007128227107341279 0.011092215472683027 C 0.006121495016848511 0.011426606803270435 0.0011555960271931159 0.010292230740584291 0.001615029187204513 0.01035376802766881" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3245425297468982,0.34825484487246955) rotate(0) scale(1,1) translate(-0.01330730632983275,-0.005618283659614309)"><path d="M 0.0009826877385928298 0.008417207097183554 C 0.0012447004762216932 0.008105164488696264 0.005153892139409184 0.004373053016037629 0.004126840590139191 0.004672695795336079 C 0.005153892139409184 0.004373053016037629 0.01407234514147388 0.0048338935747909845 0.01330730632983275 0.004821493745602146" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01369581427311773 0.006341072060620032 C 0.01296309889068242 0.006341283199270219 0.0038964975934012236 0.0066779970550096684 0.004903229683893992 0.006343605724422278 C 0.0038964975934012236 0.0066779970550096684 0.0013410124791470564 0.010687948219605926 0.001615029187204513 0.010353768027668723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.001615029187204513 0.010353768027668723 C 0.001571781022552394 0.010301159959718422 0.0010433560906614428 0.009561091134724673 0.001096051211379083 0.009722471212265105 C 0.0010433560906614428 0.009561091134724673 0.0009732407825273087 0.008308435087593425 0.0009826877385928298 0.008417207097183554" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐右">
<g transform="translate(0.32572769271615953,0.34825484487246955) rotate(0) scale(1,1) translate(-0.007306457586059644,-0.005394161792430208)"><path d="M 0.018070743508201703 0.024590692300944305 C 0.018013306604551676 0.02463091005385147 0.017266626857101324 0.025153740841644626 0.01738150066440136 0.025073305335830295 C 0.017266626857101324 0.025153740841644626 0.016634820916951232 0.02559613612362345 0.016692257820601242 0.025555918370716284" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.016692257820601242 0.025555918370716284 C 0.016324496672836475 0.024663108817042013 0.011439537124228885 0.013202275098008344 0.01227912404742404 0.014842203726625019 C 0.011439537124228885 0.013202275098008344 0.006145388966829017 0.005129655752373787 0.006617214742259403 0.005876774827316189" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007995700429859864 0.004911548757544215 C 0.008467526205290241 0.005658667832486617 0.014497196658219543 0.015516906285469716 0.01365760973502439 0.013876977656853041 C 0.014497196658219543 0.015516906285469716 0.01843850465596648 0.025483501854618576 0.018070743508201703 0.024590692300944305" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32572769271615953,0.34825484487246955) rotate(0) scale(1,1) translate(-0.01330730632983275,-0.005618283659614396)"><path d="M 0.024999583472461118 0.01035376802766881 C 0.024540150312449716 0.010415305314753327 0.01847965346183152 0.01075782414209562 0.019486385552324292 0.011092215472683027 C 0.01847965346183152 0.01075782414209562 0.01237149945606649 0.005945143442947996 0.012918798386547858 0.006341072060619921" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013307306329832791 0.004821493745602035 C 0.013844759907853185 0.005194575129981494 0.020783800815347513 0.009598113137454017 0.01975674926607751 0.00929847035815555 C 0.020783800815347513 0.009598113137454017 0.026121522892322408 0.008343768492102648 0.025631924921072802 0.00841720709718364" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025631924921072802 0.00841720709718364 C 0.025622477965007273 0.00852597910677377 0.02546586632756882 0.009883851289805623 0.02551856144828646 0.009722471212265191 C 0.02546586632756882 0.009883851289805623 0.024956335307809007 0.01040637609561911 0.024999583472461118 0.01035376802766881" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32572769271615953,0.34825484487246955) rotate(0) scale(1,1) translate(-0.01330730632983275,-0.005618283659614309)"><path d="M 0.025631924921072802 0.008417207097183554 C 0.025622477965007273 0.008525979106773683 0.02546586632756882 0.009883851289805536 0.02551856144828646 0.009722471212265105 C 0.02546586632756882 0.009883851289805536 0.024956335307809007 0.010406376095619023 0.024999583472461118 0.010353768027668723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024999583472461118 0.010353768027668723 C 0.024725566764403656 0.010019587835731519 0.020704650885278803 0.006009214393834887 0.021711382975771576 0.006343605724422278 C 0.020704650885278803 0.006009214393834887 0.01218608300411255 0.006340860921969845 0.012918798386547858 0.006341072060620032" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013307306329832791 0.004821493745602146 C 0.014072345141473921 0.004809093916413307 0.023514823618796348 0.00497233857463453 0.022487772069526346 0.004672695795336079 C 0.023514823618796348 0.00497233857463453 0.025893937658701672 0.008729249705670844 0.025631924921072802 0.008417207097183554" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3251351112315289,0.34820104724922024) rotate(0) scale(1,1) translate(-0.019917707931042028,-0.01991770793104203)"><path d="M 0.019917707931042028 0.020994411816974354 C 0.019866507618700215 0.02097515767737641 0.01921797032903727 0.02070136346785987 0.019303304182940288 0.020763362141799007 C 0.01921797032903727 0.02070136346785987 0.018859568142644587 0.020207683195363486 0.018893701684205795 0.02025042772970468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.018893701684205795 0.02025042772970468 C 0.018896191692505154 0.02019578348266782 0.01895617641559802 0.019494380803571403 0.018923581783798084 0.019594696765262355 C 0.01895617641559802 0.019494380803571403 0.0193149418893056 0.019000964474759175 0.019284837265805023 0.019046636189413265" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019284837265805023 0.019046636189413265 C 0.019337576487908105 0.019032118327052785 0.020023186375248195 0.01887242184108751 0.019917707931042028 0.01887242184108751 C 0.020023186375248195 0.01887242184108751 0.020603317818382122 0.019061154051773745 0.020550578596279036 0.019046636189413265" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020550578596279036 0.019046636189413265 C 0.020580683219779614 0.019092307904067355 0.020944428710085908 0.019695012726953308 0.020911834078285972 0.019594696765262355 C 0.020944428710085908 0.019695012726953308 0.02094420418617762 0.02030507197674154 0.02094171417787826 0.02025042772970468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02094171417787826 0.02025042772970468 C 0.020907580636317053 0.020293172264045874 0.02044677782524075 0.020825360815738145 0.020532111679143768 0.020763362141799007 C 0.02044677782524075 0.020825360815738145 0.019866507618700215 0.021013665956572298 0.019917707931042028 0.020994411816974354" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
</g>
<g id="アーマ">
<g transform="translate(0.32409680492859816,0.36962992637431263) rotate(0) scale(1,1) translate(-0.09180138873031214,-0.07753166928063453)"><path d="M 0.10535606064959341 0.05123840694820789 C 0.10529820369625643 0.05396052603513999 0.10445084563412005 0.09091909927870108 0.10466177720954967 0.08390383599139313 C 0.10445084563412005 0.09091909927870108 0.1026718071223453 0.13971471059627916 0.10282488174443795 0.1354215663959033" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10282488174443795 0.1354215663959033 C 0.10300034952232881 0.13579396114508932 0.10496444137426651 0.14071116948059417 0.10493049507912822 0.1398903033861355 C 0.10496444137426651 0.14071116948059417 0.10309071580334486 0.14572043087467995 0.10323223728609743 0.1452719595294073" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10323223728609743 0.1452719595294073 C 0.10315355556437297 0.1458082716531292 0.10168848362612433 0.15245707717682058 0.10228805662540398 0.15170770501407022 C 0.10168848362612433 0.15245707717682058 0.09498799166644048 0.1542816561847591 0.09603736129474158 0.15426442548241176 C 0.09498799166644048 0.1542816561847591 0.08905401794132914 0.1512427907152293 0.08969562108579074 0.15191447344223802 C 0.08905401794132914 0.1512427907152293 0.0882249987674866 0.14572837936797955 0.0883381235612023 0.14620423275830713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0883381235612023 0.14620423275830713 C 0.08821727196735235 0.1457943742487881 0.0869772708965171 0.14049662916891262 0.08688790443500287 0.14128593064407874 C 0.0869772708965171 0.14049662916891262 0.08962073915473728 0.13635317209066647 0.0894105210993731 0.13673261505631357" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0894105210993731 0.13673261505631357 C 0.08941711507386839 0.13528627613930214 0.08923867902510423 0.1164570141551452 0.0894896487933165 0.11937654805217633 C 0.08923867902510423 0.1164570141551452 0.08614132013811819 0.10022501331192021 0.08639888388082576 0.10169820829193991" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08639888388082576 0.10169820829193991 C 0.08588818097973773 0.09950183305502093 0.08011699060983271 0.07113672200360104 0.08027044906776952 0.07534170544891204 C 0.08011699060983271 0.07113672200360104 0.0849146268287353 0.04922979873981587 0.08455738238558408 0.05123840694820789" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08455738238558408 0.05123840694820789 C 0.0847048346021099 0.05130239713595393 0.08669220020255874 0.052407296287443075 0.08632680898389383 0.05200628920116042 C 0.08669220020255874 0.052407296287443075 0.08916001601170215 0.05638750888213639 0.08894207700956305 0.05605049198359977" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10097136602561445 0.05582098660004203 C 0.10114992666751657 0.05550309515013523 0.10347948494710484 0.05162440756350757 0.10311409372843992 0.05200628920116042 C 0.10347948494710484 0.05162440756350757 0.1055428912263562 0.05117441676046185 0.10535606064959341 0.05123840694820789" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="脛当">
<g transform="translate(0.3269522878713081,0.3706471265714961) rotate(0) scale(1,1) translate(-0.15468619988443874,-0.15468619988443894)"><path d="M 0.14019047249496822 0.15752925892606895 C 0.14014752827189808 0.15689648625614672 0.13969084776530286 0.14859951739346908 0.13967514181812649 0.1499359868870021 C 0.13969084776530286 0.14859951739346908 0.1404375940313313 0.14078792818006178 0.14037894386108477 0.14149162500367257" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.14037894386108477 0.14149162500367257 C 0.14075907875143473 0.14102481941998782 0.14567496121059634 0.13470057304724473 0.14494056254528437 0.1358899579994554 C 0.14567496121059634 0.13470057304724473 0.14954599161979035 0.12649642620861826 0.14919172784482834 0.1272190055771442" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1606456069137893 0.1272190055771442 C 0.16086267132222143 0.12794158494567012 0.1637165126379189 0.13711294412831515 0.163250379814975 0.1358899579994554 C 0.1637165126379189 0.13711294412831515 0.16648826920362772 0.14239524588379493 0.16623920078911597 0.14189483912346113" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16623920078911597 0.14189483912346113 C 0.16627213264119045 0.14255233591347655 0.16663461412913516 0.15109033467044541 0.16663438301400968 0.1497848006036463 C 0.16663461412913516 0.15109033467044541 0.16620927343367292 0.15820928520183414 0.1662419741706219 0.15756124792505047" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1662419741706219 0.15756124792505047 C 0.16592862967859773 0.15867121134918225 0.16205377297990292 0.17319914870984146 0.16248184026633192 0.17088080901463182 C 0.16205377297990292 0.17319914870984146 0.16099044393906914 0.18658970053864407 0.16110516673347397 0.1853813242675662" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16110516673347397 0.1853813242675662 C 0.16095475700951606 0.1848572900453964 0.15905127005778172 0.17825455073173951 0.15930025004597914 0.17909291360152843 C 0.15905127005778172 0.17825455073173951 0.15801883661086544 0.17500664118248022 0.15811740687510495 0.17532096983009932" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.15811740687510495 0.17532096983009932 C 0.15791016269129013 0.1752568823234526 0.1552219139816399 0.17455827803369997 0.15563047666932697 0.17455191975033882 C 0.1552219139816399 0.17455827803369997 0.15301333611898765 0.175467715020441 0.1532146546228599 0.17539726923043314" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1532146546228599 0.17539726923043314 C 0.15311734624665546 0.17572160781896703 0.15182489028553567 0.1801213368792675 0.15204695410840643 0.17928933229283975 C 0.15182489028553567 0.1801213368792675 0.15042513330174456 0.18588899026546007 0.15054988874841085 0.1853813242675662" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.15054988874841085 0.1853813242675662 C 0.15029022051321544 0.18417294799648834 0.1465705852382791 0.16855980356950706 0.14743386992606597 0.17088080901463182 C 0.1465705852382791 0.16855980356950706 0.13958685604237675 0.15641662975202203 0.14019047249496822 0.15752925892606895" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3284099802571273,0.41796022207677697) rotate(0) scale(1,1) translate(-0.1672344738621424,-0.16723447386214246)"><path d="M 0.16430523621474452 0.1406324477028558 C 0.16450655471861678 0.14056200191284793 0.16712962094889855 0.13978073993940027 0.16672105826121147 0.13978709822276142 C 0.16712962094889855 0.13978073993940027 0.1694152326508044 0.1406202358091687 0.16920798846698956 0.14055614830252197" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16920798846698956 0.14055614830252197 C 0.16930655873122907 0.14087047695014107 0.17063981162606115 0.14516645494373995 0.17039083163786373 0.14432809207395106 C 0.17063981162606115 0.14516645494373995 0.17234615804931644 0.1511405369621586 0.17219574832535853 0.15061650273998878" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17219574832535853 0.15061650273998878 C 0.17218222282062481 0.15176203698258778 0.17220507196196008 0.16745307921013758 0.1720334422685541 0.16436291365117683 C 0.17220507196196008 0.16745307921013758 0.17444045984437007 0.18964312076387962 0.17425530464623037 0.18769848944751788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17425530464623037 0.18769848944751788 C 0.1736048047593301 0.18757385962867415 0.1652604730665857 0.18622492511883598 0.16644930600342692 0.18620293162139298 C 0.1652604730665857 0.18622492511883598 0.15945097635419492 0.18810903473312077 0.15998930940413583 0.187962411416834" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.15998930940413583 0.187962411416834 C 0.16018413788984173 0.18596218806011522 0.1624648479772866 0.16084757207980466 0.16232725123260663 0.16395973113620843 C 0.1624648479772866 0.16084757207980466 0.16158323859926946 0.1495045670403038 0.16164047034029538 0.15061650273998878" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16164047034029538 0.15061650273998878 C 0.16176522578696167 0.1501088367420949 0.16335959952316179 0.1436925061788346 0.16313753570029102 0.14452451076526235 C 0.16335959952316179 0.1436925061788346 0.16440254459094897 0.14030810911432193 0.16430523621474452 0.1406324477028558" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32654848725825447,0.3434065015147933) rotate(0) scale(1,1) translate(-0.06881109587061648,-0.06881109587061648)"><path d="M 0.05961983821240677 0.06881109587061648 C 0.05979408913884366 0.06827543989712777 0.06209381839874154 0.061343115502365986 0.06171084932964947 0.06238322418875185 C 0.06209381839874154 0.061343115502365986 0.06442418518416677 0.05582533892108898 0.0642154670415116 0.056329791633986125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0642154670415116 0.056329791633986125 C 0.06459843611060367 0.05629858837339455 0.06957703400880062 0.05595535250688721 0.06881109587061648 0.05595535250688721 C 0.06957703400880062 0.05595535250688721 0.0737896937688134 0.0563609948945777 0.07340672469972133 0.056329791633986125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07340672469972133 0.056329791633986125 C 0.0736154428423765 0.05683424434688327 0.07629431148067557 0.06342333287513771 0.0759113424115835 0.06238322418875185 C 0.07629431148067557 0.06342333287513771 0.07817660445526309 0.06934675184410519 0.0780023535288262 0.06881109587061647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0780023535288262 0.06881109587061647 C 0.07782810260238932 0.06934675184410519 0.07552837334249142 0.07627907623886694 0.0759113424115835 0.07523896755248108 C 0.07552837334249142 0.07627907623886694 0.07319800655706615 0.08179685282014396 0.07340672469972133 0.08129240010724681" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07340672469972133 0.08129240010724681 C 0.07302375563062925 0.08132360336783838 0.06804515773243235 0.08166683923434571 0.06881109587061648 0.08166683923434571 C 0.06804515773243235 0.08166683923434571 0.06383249797241955 0.08126119684665527 0.06421546704151163 0.08129240010724684" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06421546704151163 0.08129240010724684 C 0.06400674889885645 0.08078794739434969 0.0613278802605574 0.07419885886609526 0.06171084932964947 0.07523896755248112 C 0.0613278802605574 0.07419885886609526 0.059445587285969874 0.06827543989712777 0.05961983821240677 0.06881109587061648" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="穴">
<g transform="translate(0.3144708949422659,0.35878225955760673) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.006729399287076907 0.00806182034591818 C 0.006678479869106002 0.007993275185328183 0.0060409443258706425 0.007115077858797346 0.006118366271426041 0.007239278418838202 C 0.0060409443258706425 0.007115077858797346 0.005773833412827634 0.0065157582259770435 0.005800335940412127 0.006571413625427902" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005800335940412127 0.006571413625427902 C 0.005866488551943027 0.006527220158665155 0.006717081390157648 0.005982167401924615 0.00659416727878293 0.006041092024274941 C 0.006717081390157648 0.005982167401924615 0.007332066776752568 0.005849587001636412 0.0072753052769087495 0.005864318157223991" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0072753052769087495 0.005864318157223991 C 0.007278854306722918 0.005964167023437596 0.007272401468859458 0.007245629734178434 0.007317893634678778 0.007062504551787252 C 0.007272401468859458 0.007245629734178434 0.006680358091443418 0.008145096662095758 0.006729399287076907 0.00806182034591818" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33715113102984506,0.3589082734758231) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.0067293992870769434 0.00806182034591818 C 0.006680358091443455 0.007978544029740603 0.006095412773655766 0.00687937936939607 0.006140904939475081 0.007062504551787252 C 0.006095412773655766 0.00687937936939607 0.006187042327059341 0.005764469291010386 0.006183493297245167 0.005864318157223991" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006183493297245167 0.005864318157223991 C 0.006240254797088987 0.00587904931281157 0.0069875454067457226 0.006100016646625267 0.006864631295371005 0.006041092024274941 C 0.0069875454067457226 0.006100016646625267 0.0077246152452726796 0.006615607092190649 0.007658462633741782 0.006571413625427902" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007658462633741782 0.006571413625427902 C 0.0076319601061572845 0.006627069024878761 0.007263010357172413 0.007363478978879058 0.007340432302727816 0.007239278418838202 C 0.007263010357172413 0.007363478978879058 0.006678479869106037 0.008130365506508178 0.0067293992870769434 0.00806182034591818" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31453354171976633,0.3734266761373972) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.006729399287076907 0.00539697822823568 C 0.006778440482710396 0.005480254544413256 0.007363385800498098 0.006579419204757781 0.007317893634678778 0.0063962940223666 C 0.007363385800498098 0.006579419204757781 0.007271756247094581 0.007694329283143444 0.0072753052769087495 0.007594480416929841" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0072753052769087495 0.007594480416929841 C 0.0072185437770649315 0.007579749261342262 0.006471253167408211 0.007358781927528572 0.00659416727878293 0.007417706549878889 C 0.006471253167408211 0.007358781927528572 0.005734183328881226 0.0068431914819632985 0.005800335940412127 0.006887384948726036" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005800335940412127 0.006887384948726036 C 0.00582683846799662 0.00683172954927517 0.006195788216981439 0.006095319595274785 0.006118366271426041 0.0062195201553156484 C 0.006195788216981439 0.006095319595274785 0.006780318705047812 0.005328433067645682 0.006729399287076907 0.00539697822823568" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33679788888750645,0.37320692037166187) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.0067293992870769434 0.00539697822823568 C 0.0067803187050478496 0.005465523388825677 0.007417854248283219 0.006343720715356512 0.007340432302727816 0.0062195201553156484 C 0.007417854248283219 0.006343720715356512 0.007684965161326279 0.0069430403481769015 0.007658462633741782 0.006887384948726036" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007658462633741782 0.006887384948726036 C 0.007592310022210884 0.0069315784154887735 0.006741717183996287 0.007476631172229207 0.006864631295371005 0.007417706549878889 C 0.006741717183996287 0.007476631172229207 0.006126731797401347 0.00760921157251742 0.006183493297245167 0.007594480416929841" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006183493297245167 0.007594480416929841 C 0.006179944267430993 0.007494631550716238 0.006186397105294396 0.00621316883997542 0.006140904939475081 0.0063962940223666 C 0.006186397105294396 0.00621316883997542 0.006778440482710432 0.005313701912058103 0.0067293992870769434 0.00539697822823568" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="脚輪上">
<g transform="translate(0.32533663426604054,0.35211350841914824) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M -0.004399412915557286 0.006599120151686988 C -0.0031033976807275836 0.006599120151686988 0.013744800372058547 0.006599120151686988 0.011152769902399143 0.006599120151686988 C 0.013744800372058547 0.006599120151686988 0.028000967955185252 0.006599120151686988 0.02670495272035555 0.006599120151686988" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02670495272035555 0.006599120151686988 C 0.02670495272035555 0.006978590964246333 0.026704952720355557 0.011911711527517823 0.026704952720355557 0.011152769902399133 C 0.026704952720355557 0.011911711527517823 0.02670495272035555 0.016085890465670626 0.02670495272035555 0.01570641965311128" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02670495272035555 0.01570641965311128 C 0.025408937485525848 0.01570641965311128 0.008560739432739729 0.01570641965311128 0.011152769902399133 0.01570641965311128 C 0.008560739432739729 0.01570641965311128 -0.005695428150386988 0.01570641965311128 -0.004399412915557286 0.01570641965311128" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.004399412915557286 0.01570641965311128 C -0.004399412915557286 0.015326948840551935 -0.004399412915557286 0.010393828277280451 -0.004399412915557286 0.011152769902399141 C -0.004399412915557286 0.010393828277280451 -0.004399412915557286 0.006219649339127642 -0.004399412915557286 0.006599120151686988" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32134225028523533,0.3521135084191483) rotate(0) scale(1,1) translate(-0.00775832499658671,-0.0077583249965867095)"><path d="M 0.014140218198399633 0.013781064035527047 C 0.013117794470564695 0.013674008467747719 0.000848709736545442 0.011599662950131033 0.0018711334643803802 0.012496397222175094 C 0.000848709736545442 0.011599662950131033 0.0028935571922153137 0.0021235184989542646 0.0018711334643803767 0.003020252770998325 C 0.0028935571922153137 0.0021235184989542646 0.015162641926234564 0.0016285303898670406 0.014140218198399626 0.0017355859576463702" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014140218198399626 0.0017355859576463702 C 0.014140218198399626 0.0018200025343899275 0.014140218198399626 0.002866768086010039 0.014140218198399626 0.0027485848785690583 C 0.014140218198399626 0.002866768086010039 0.01414021819839963 0.0031875510776355614 0.01414021819839963 0.003153784446938138" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01414021819839963 0.003153784446938138 C 0.013280142377061677 0.0032351313299819303 0.0029592325210062525 0.0048160235853612786 0.0038193083423442046 0.004129947043463641 C 0.0029592325210062525 0.0048160235853612786 0.004679384163682157 0.012072779491607425 0.0038193083423442046 0.011386702949709789 C 0.004679384163682157 0.012072779491607425 0.015000294019737586 0.012444212429279084 0.014140218198399633 0.012362865546235292" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014140218198399633 0.012362865546235292 C 0.014140218198399633 0.012396632176932714 0.014140218198399633 0.012886248322045341 0.014140218198399633 0.012768065114604361 C 0.014140218198399633 0.012886248322045341 0.014140218198399633 0.013865480612270605 0.014140218198399633 0.013781064035527047" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3161722090775511,0.35211350841914835) rotate(0) scale(1,1) translate(-0.0022536622055164745,-0.002253662205516475)"><path d="M 0.003559414508702311 0.003134816490406585 C 0.003349494426672511 0.0031221938766656703 0.0008304534423149092 0.0028491086917748357 0.0010403735243447094 0.002983345125515606 C 0.0008304534423149092 0.0028491086917748357 0.0012502936063745083 0.0013897428517765731 0.0010403735243447083 0.001523979285517343 C 0.0012502936063745083 0.0013897428517765731 0.00376933459073211 0.0013598853068854512 0.0035594145087023098 0.001372507920626366" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0035594145087023098 0.001372507920626366 C 0.00360139852510827 0.0014459374443672084 0.004063222705573829 0.0024005212529981594 0.004063222705573829 0.0022536622055164745 C 0.004063222705573829 0.0024005212529981594 0.003517430492296351 0.0032082460141474277 0.003559414508702311 0.003134816490406585" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3338786965082714,0.35211350841914824) rotate(0) scale(1,1) translate(-0.006469483550722008,-0.0064694835507220095)"><path d="M 0.007492222845884336 0.0010857130619021406 C 0.007833135944271779 0.0028803032248420966 0.007151309747496893 0.013647844202481833 0.007492222845884336 0.011853254039541876 C 0.007151309747496893 0.013647844202481833 0.005105831157172236 0.010058663876601924 0.005446744255559679 0.011853254039541879 C 0.005105831157172236 0.010058663876601924 0.005787657353947122 -0.0007088771010378169 0.005446744255559679 0.0010857130619021395 C 0.005787657353947122 -0.0007088771010378169 0.007833135944271779 0.0028803032248420966 0.007492222845884336 0.0010857130619021406 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31137806398866613,0.3521135084191483) rotate(0) scale(1,1) translate(-0.009906215631991292,-0.007758324996586713)"><path d="M 0.009906215631991292 0.013781064035527046 C 0.00929276139529033 0.013544659095989153 0.0019313105548787778 0.010176819860786841 0.0025447647915797407 0.010944204761072338 C 0.0019313105548787778 0.010176819860786841 0.0031582190282807014 0.003805060331815581 0.002544764791579739 0.0045724452321010784 C 0.0031582190282807014 0.003805060331815581 0.01051966986869225 0.001499181018108476 0.009906215631991289 0.0017355859576463684" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991289 0.0017355859576463684 C 0.009906215631991289 0.0018200025343899258 0.009906215631991289 0.002866768086010037 0.009906215631991289 0.0027485848785690566 C 0.009906215631991289 0.002866768086010037 0.009906215631991292 0.0031875510776355597 0.009906215631991292 0.0031537844469381364" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991292 0.0031537844469381364 C 0.009407904558617917 0.0033443515536675213 0.0034281716781374314 0.006017446045902797 0.003926482751510805 0.005440589727690753 C 0.0034281716781374314 0.006017446045902797 0.004424793824884179 0.01065291658369471 0.003926482751510805 0.010076060265482667 C 0.004424793824884179 0.01065291658369471 0.010404526705364667 0.012553432652964675 0.009906215631991292 0.01236286554623529" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991292 0.01236286554623529 C 0.009906215631991292 0.012396632176932713 0.009906215631991292 0.01288624832204534 0.009906215631991292 0.01276806511460436 C 0.009906215631991292 0.01288624832204534 0.009906215631991292 0.013865480612270603 0.009906215631991292 0.013781064035527046" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.339295204543415,0.35211350841914824) rotate(0) scale(1,1) translate(-0.005610434361182026,-0.007758324996586713)"><path d="M 0.005610434361182026 0.013781064035527046 C 0.005610434361182026 0.013696647458783488 0.005610434361182026 0.012649881907163379 0.005610434361182026 0.01276806511460436 C 0.005610434361182026 0.012649881907163379 0.005610434361182026 0.012329098915537868 0.005610434361182026 0.01236286554623529" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.01236286554623529 C 0.00610874543455541 0.012172298439505905 0.012088478315036016 0.009499203947270623 0.011590167241662633 0.010076060265482667 C 0.012088478315036016 0.009499203947270623 0.01109185616828925 0.004863733409478709 0.011590167241662633 0.005440589727690753 C 0.01109185616828925 0.004863733409478709 0.005112123287808642 0.0029632173402087516 0.005610434361182026 0.0031537844469381364" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.0031537844469381364 C 0.005610434361182026 0.003120017816240713 0.005610434361182026 0.002630401671128076 0.005610434361182026 0.0027485848785690566 C 0.005610434361182026 0.002630401671128076 0.005610434361182026 0.001651169380902811 0.005610434361182026 0.0017355859576463684" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.0017355859576463684 C 0.006223888597882994 0.0019719908971842608 0.013585339438294607 0.005339830132386576 0.01297188520159364 0.0045724452321010784 C 0.013585339438294607 0.005339830132386576 0.012358430964892673 0.011711589661357834 0.01297188520159364 0.010944204761072338 C 0.012358430964892673 0.011711589661357834 0.004996980124481058 0.014017468975064938 0.005610434361182026 0.013781064035527046" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="脚輪下">
<g transform="translate(0.32824550993781904,0.4203320500462185) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M 0.0015566554328377332 0.008202559503492655 C 0.002356331638634517 0.008202559503492655 0.012752122313992703 0.008202559503492655 0.011152769902399136 0.008202559503492655 C 0.012752122313992703 0.008202559503492655 0.02154856057775731 0.008202559503492655 0.020748884371960527 0.008202559503492655" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020748884371960527 0.008202559503492655 C 0.020748884371960527 0.008448410370068195 0.02074888437196054 0.011644471635550213 0.02074888437196054 0.011152769902399133 C 0.02074888437196054 0.011644471635550213 0.020748884371960527 0.01434883116788115 0.020748884371960527 0.01410298030130561" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020748884371960527 0.01410298030130561 C 0.019949208166163745 0.01410298030130561 0.009553417490805566 0.01410298030130561 0.011152769902399133 0.01410298030130561 C 0.009553417490805566 0.01410298030130561 0.0007569792270409499 0.01410298030130561 0.0015566554328377332 0.01410298030130561" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0015566554328377332 0.01410298030130561 C 0.0015566554328377332 0.01385712943473007 0.0015566554328377332 0.010661068169248056 0.0015566554328377332 0.011152769902399136 C 0.0015566554328377332 0.010661068169248056 0.0015566554328377332 0.007956708636917116 0.0015566554328377332 0.008202559503492655" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32578086774811094,0.42033205004621854) rotate(0) scale(1,1) translate(-0.00775832499658671,-0.0077583249965867095)"><path d="M 0.011696124494828444 0.011660326317571704 C 0.011065261596446635 0.011590967349136764 0.0034949068158649315 0.010247044111289867 0.00412576971424674 0.010828018696352425 C 0.0034949068158649315 0.010247044111289867 0.004756632612628547 0.004107656711758434 0.004125769714246739 0.004688631296820993 C 0.004756632612628547 0.004107656711758434 0.01232698739321025 0.0037869647071667755 0.01169612449482844 0.0038563236756017152" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01169612449482844 0.0038563236756017152 C 0.01169612449482844 0.003911015335299518 0.01169612449482844 0.004589191915552262 0.01169612449482844 0.004512623591975339 C 0.01169612449482844 0.004589191915552262 0.01169612449482844 0.004797020222403912 0.01169612449482844 0.0047751435585247914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01169612449482844 0.0047751435585247914 C 0.011165434614785896 0.004827846430597219 0.0047971560542753545 0.005852072057665148 0.005327845934317899 0.005407578023393922 C 0.0047971560542753545 0.005852072057665148 0.005858535814360445 0.01055356600405073 0.005327845934317899 0.010109071969779504 C 0.005858535814360445 0.01055356600405073 0.01222681437487099 0.010794209306721063 0.011696124494828444 0.010741506434648634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011696124494828444 0.010741506434648634 C 0.011696124494828444 0.010763383098527755 0.011696124494828444 0.011080594724775005 0.011696124494828444 0.011004026401198082 C 0.011696124494828444 0.011080594724775005 0.011696124494828444 0.011715017977269506 0.011696124494828444 0.011660326317571704" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3225908134758576,0.42033205004621854) rotate(0) scale(1,1) translate(-0.0022536622055164745,-0.002253662205516475)"><path d="M 0.003059346443988615 0.0028245428565628694 C 0.0029298201157427917 0.002816364940307013 0.0013755041767929087 0.002639439002574046 0.0015050305050387323 0.0027264078614925883 C 0.0013755041767929087 0.002639439002574046 0.0016345568332845554 0.0016939476906218187 0.0015050305050387318 0.001780916549540361 C 0.0016345568332845554 0.0016939476906218187 0.0031888727722344384 0.0016746036382142243 0.0030593464439886147 0.001682781554470081" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0030593464439886147 0.001682781554470081 C 0.0030852517096377793 0.0017303549420572804 0.0033702096317785903 0.0023488089806908735 0.0033702096317785903 0.0022536622055164745 C 0.0033702096317785903 0.0023488089806908735 0.0030334411783394504 0.002872116244150069 0.003059346443988615 0.0028245428565628694" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33351619174770125,0.4203320500462185) rotate(0) scale(1,1) translate(-0.006469483550722008,-0.0064694835507220095)"><path d="M 0.007100541162619722 0.0029814560231419193 C 0.007310893699918959 0.0041441318656686155 0.006890188625320484 0.011120186920828794 0.007100541162619722 0.009957511078302098 C 0.006890188625320484 0.011120186920828794 0.005628073401525056 0.008794835235775404 0.005838425938824294 0.0099575110783021 C 0.005628073401525056 0.008794835235775404 0.0060487784761235315 0.0018187801806152217 0.005838425938824294 0.0029814560231419185 C 0.0060487784761235315 0.0018187801806152217 0.007310893699918959 0.0041441318656686155 0.007100541162619722 0.0029814560231419193 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3196326972040048,0.42033205004621854) rotate(0) scale(1,1) translate(-0.009906215631991292,-0.007758324996586713)"><path d="M 0.009906215631991292 0.011660326317571704 C 0.009527697892962208 0.01150716471113316 0.004985485024613185 0.009325215093250223 0.005364002763642271 0.009822387040309178 C 0.004985485024613185 0.009325215093250223 0.005742520502671355 0.005197091005805287 0.00536400276364227 0.005694262952864242 C 0.005742520502671355 0.005197091005805287 0.010284733371020375 0.003703162069163171 0.00990621563199129 0.0038563236756017152" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00990621563199129 0.0038563236756017152 C 0.00990621563199129 0.003911015335299518 0.00990621563199129 0.004589191915552262 0.00990621563199129 0.004512623591975339 C 0.00990621563199129 0.004589191915552262 0.009906215631991292 0.004797020222403912 0.009906215631991292 0.0047751435585247914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991292 0.0047751435585247914 C 0.009598744317030937 0.0048986078324019435 0.005909088537506674 0.006630447477517121 0.006216559852467029 0.00625671484505062 C 0.005909088537506674 0.006630447477517121 0.006524031167427384 0.009633667780589304 0.006216559852467029 0.009259935148122803 C 0.006524031167427384 0.009633667780589304 0.010213686946951647 0.010864970708525786 0.009906215631991292 0.010741506434648634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991292 0.010741506434648634 C 0.009906215631991292 0.010763383098527755 0.009906215631991292 0.011080594724775005 0.009906215631991292 0.011004026401198082 C 0.009906215631991292 0.011080594724775005 0.009906215631991292 0.011715017977269506 0.009906215631991292 0.011660326317571704" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33685832267163335,0.4203320500462185) rotate(0) scale(1,1) translate(-0.005610434361182026,-0.007758324996586713)"><path d="M 0.005610434361182026 0.011660326317571704 C 0.005610434361182026 0.011605634657873901 0.005610434361182026 0.010927458077621159 0.005610434361182026 0.011004026401198082 C 0.005610434361182026 0.010927458077621159 0.005610434361182026 0.010719629770769514 0.005610434361182026 0.010741506434648634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.010741506434648634 C 0.005917905676142388 0.010618042160771482 0.009607561455666725 0.008886202515656302 0.009300090140706364 0.009259935148122803 C 0.009607561455666725 0.008886202515656302 0.008992618825746002 0.005882982212584119 0.009300090140706364 0.00625671484505062 C 0.008992618825746002 0.005882982212584119 0.0053029630462216645 0.004651679284647639 0.005610434361182026 0.0047751435585247914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.0047751435585247914 C 0.005610434361182026 0.004753266894645671 0.005610434361182026 0.004436055268398416 0.005610434361182026 0.004512623591975339 C 0.005610434361182026 0.004436055268398416 0.005610434361182026 0.0038016320159039133 0.005610434361182026 0.0038563236756017152" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.0038563236756017152 C 0.005988952100211114 0.004009485282040259 0.010531164968560176 0.006191434899923197 0.010152647229531088 0.005694262952864242 C 0.010531164968560176 0.006191434899923197 0.009774129490502 0.010319558987368133 0.010152647229531088 0.009822387040309178 C 0.009774129490502 0.010319558987368133 0.005231916622152938 0.011813487924010248 0.005610434361182026 0.011660326317571704" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 309 KiB

View File

@@ -0,0 +1,846 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.32729541619828606,0.344001542752038) rotate(0) scale(1,1) translate(-0.09883088016901763,-0.050718111708700546)"><path d="M 0.11028033334921124 0.05085332902386566 C 0.11054636047692501 0.05252021435129403 0.11331921739544938 0.07441596978314409 0.11347265888177656 0.07085595295300606 C 0.11331921739544938 0.07441596978314409 0.10801956689924418 0.09546666248823162 0.10843903551328513 0.09357353098552196" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10843903551328513 0.09357353098552196 C 0.10826282325179447 0.09500074211373333 0.10611944414133961 0.11389901684555033 0.10632448837539718 0.11070006452405834 C 0.10611944414133961 0.11389901684555033 0.10594967273202738 0.13373270003670654 0.10597850470459429 0.1319609588434259" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10597850470459429 0.1319609588434259 C 0.10587037134358712 0.13243859912706038 0.1040808600979307 0.1383810147344625 0.10468090437250839 0.13769264224703961 C 0.1040808600979307 0.1383810147344625 0.09784870870112712 0.14022670234840764 0.09877797340966207 0.14022142869250026 C 0.09784870870112712 0.14022670234840764 0.09299191996133639 0.13710938588348492 0.09352972787008902 0.1377559261179282 C 0.09299191996133639 0.13710938588348492 0.09222382439084223 0.13202186419261877 0.09232427850463044 0.13246294587918103" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09232427850463044 0.13246294587918103 C 0.09237756635438066 0.1320237505207906 0.09302467303362916 0.1263462868334958 0.09296373270163306 0.1271926015784958 C 0.09302467303362916 0.1263462868334958 0.09306321497082948 0.12190004955257153 0.0930555624885836 0.12230716893918109" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0930555624885836 0.12230716893918109 C 0.0930077326751292 0.1209848336177404 0.09232173819838199 0.1036314126799226 0.09248160472713077 0.10643914508189276 C 0.09232173819838199 0.1036314126799226 0.09102512742830396 0.08712898303500963 0.09113716414359833 0.0886143801155391" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09113716414359833 0.0886143801155391 C 0.09101187141322227 0.08725418185433087 0.08937359219258159 0.06947090718071376 0.08963365137908555 0.07229200098104033 C 0.08937359219258159 0.06947090718071376 0.08788168744942296 0.05330035897250192 0.08801645390555085 0.054761254511620255" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08801645390555085 0.054761254511620255 C 0.08805666990129832 0.05429024060132753 0.08881726819065335 0.04824963733613706 0.08849904585452041 0.04910908758810761 C 0.08881726819065335 0.04824963733613706 0.09255443339015806 0.04385763757729637 0.09183512193914613 0.04444785148797366 C 0.09255443339015806 0.04385763757729637 0.09805844491014955 0.041863690431323666 0.0971307832666637 0.0420265206599801 C 0.09805844491014955 0.041863690431323666 0.10385450730871466 0.04280207242573266 0.10296706166097627 0.04249388874409638 C 0.10385450730871466 0.04280207242573266 0.10838957034687727 0.04642134486292955 0.10778013103952436 0.04572472483961544 C 0.10838957034687727 0.04642134486292955 0.11048868354168515 0.051280712705886515 0.11028033334921124 0.05085332902386566" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.03875718691907565,-0.03875718691907564)"><path d="M 0.042691302747131066 0.06608005532461989 C 0.042681713289280214 0.06555684886023833 0.04252800836704983 0.058769610828273866 0.04257622925292085 0.05980157775204123 C 0.04252800836704983 0.058769610828273866 0.042074020688658564 0.05318769178002568 0.042112652116678743 0.05369645223941149" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.042112652116678743 0.05369645223941149 C 0.04164112277074253 0.052479197886420734 0.03604210926345753 0.036940224879583504 0.03645429996544418 0.0390894000035224 C 0.03604210926345753 0.036940224879583504 0.03722570233678855 0.026974429981196566 0.03716636369283898 0.027906350752144708" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03716636369283898 0.027906350752144708 C 0.03755596855075735 0.027183268351936882 0.04271478370376123 0.018740469671302478 0.04184162198785939 0.019229361949650796 C 0.04271478370376123 0.018740469671302478 0.0481278611416446 0.022273833533824408 0.04764430428366112 0.0220396434119649" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="獣性">
<g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.013954082361682675,-0.013954082361682675)"><path d="M 0.031193528159001106 0.013058937787135285 C 0.030543324806431522 0.014351869163145608 0.02793280692979501 0.021938745517906505 0.0272923080435836 0.02081652604319722 C 0.02793280692979501 0.021938745517906505 0.03632722371505056 0.01962154273408996 0.035036521476269566 0.019792254635391" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035036521476269566 0.019792254635391 C 0.03402223290161197 0.020672891002103025 0.027607969745708692 0.026533118301401398 0.028950790028323996 0.02507607283566316 C 0.027607969745708692 0.026533118301401398 0.026651068072620045 0.029110936528846637 0.02697959978057775 0.028534527429820426" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026409746536214557 0.015976890188130567 C 0.026594395259641534 0.01590371838246829 0.028314935813907507 0.015051533953991031 0.027517638876776416 0.015537859354156911 C 0.028314935813907507 0.015051533953991031 0.03180617637270522 0.012645784192631676 0.031193528159001106 0.013058937787135282" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.013954082361682675,-0.013954082361682675)"><path d="M 0.002414926128778572 0.01021764323348086 C 0.0031630676413596666 0.01043882226537464 0.007784216184467635 0.01180508656345171 0.0069037752042651395 0.01154471742484354 C 0.007784216184467635 0.01180508656345171 0.007829871477614946 0.011819048171844274 0.007697572009993546 0.011779858065129883" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008042215989511246 0.01991331311631956 C 0.007780543259607468 0.01953428670233377 0.005726266358791668 0.016814123304537076 0.006472179610088581 0.017639154632404813 C 0.005726266358791668 0.016814123304537076 0.003082495960336634 0.014517120235231204 0.0035667364817297694 0.014963125149113148" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0035667364817297694 0.014963125149113148 C 0.004200759538079318 0.015000865627898622 0.0071789064276685305 0.014398654369220616 0.007370874819827064 0.015189568021825996 C 0.0071789064276685305 0.014398654369220616 0.001588934680270483 0.009388989102090005 0.002414926128778566 0.010217643233480862" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.013954082361682675,-0.013954082361682675)"><path d="M 0.025414161408499315 0.010217643233480862 C 0.024588169959991243 0.011046297364871718 0.02021549089080701 0.015980481674431377 0.020458212717450873 0.015189568021825996 C 0.02021549089080701 0.015980481674431377 0.024541100070500345 0.014925384670327673 0.023957830448636135 0.014963125149113148" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023957830448636135 0.014963125149113148 C 0.023524343361728324 0.015409130062995092 0.0206617481103777 0.01846418596027255 0.021356907927189278 0.017639154632404813 C 0.0206617481103777 0.01846418596027255 0.019525198817862893 0.02029233953030535 0.019786871547766663 0.01991331311631956" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02013151552728437 0.011779858065129883 C 0.020263814994905767 0.011740667958415493 0.021805753313215243 0.01128434828623537 0.02092531233301275 0.01154471742484354 C 0.021805753313215243 0.01128434828623537 0.026162302921080408 0.00999646420158708 0.025414161408499315 0.01021764323348086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.013954082361682675,-0.013954082361682675)"><path d="M 0.002307925280625144 -0.0033159971969383925 C 0.002619345676008963 -0.0028505770836176948 0.004572152440781866 4.683525069496572E-05 0.004176447652928059 -0.0005234765170142074 C 0.004572152440781866 4.683525069496572E-05 0.004766438400217978 0.0002107650637051222 0.00468215400774799 0.00010587340931664654" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00468215400774799 0.00010587340931664654 C 0.004526765891644553 0.0004545010790506191 0.002585999243822857 0.0050563313025531464 0.002817496614506743 0.004289405446124318 C 0.002585999243822857 0.0050563313025531464 0.0018280763049609158 0.009727281873157448 0.001904185559541364 0.009308983686462591" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.001904185559541364 0.009308983686462591 C 0.0017346933091270393 0.008780237839263808 0.00016878255873884515 0.004632363556630963 0.0008872320570554157 0.006136508603269893 C 0.00016878255873884515 0.004632363556630963 -0.0029554686782603044 -0.0006912857928111334 -0.0024065114303580587 0.00028411340662901324" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0024065114303580587 0.00028411340662901324 C -0.0016036095900012082 0.0007626971546980495 0.0031966390636135778 0.0025555974611153297 0.002410899611783045 0.003155615895043231 C 0.0031966390636135778 0.0025555974611153297 0.002290762892098819 -0.0043945993789353335 0.002307925280625137 -0.0033159971969383955" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.013954082361682675,-0.013954082361682675)"><path d="M 0.02167640185313336 -0.005393066209913178 C 0.02172973856559474 -0.004444849239561319 0.022751766699986402 0.0007397812051946184 0.021996422127901642 0.00029623561219797656 C 0.022751766699986402 0.0007397812051946184 0.026910477145265305 -0.0032364640292885448 0.026208469285641925 -0.0027317926519333274" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026208469285641925 -0.0027317926519333274 C 0.025835233443882263 -0.0017754490165007072 0.023628145071831273 0.004340186067300407 0.023969054235083956 0.003006269160662393 C 0.023628145071831273 0.004340186067300407 0.0241953409846328 0.005649282059100147 0.024163014306125823 0.005271708787894754" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024163014306125823 0.005271708787894754 C 0.023943308599083682 0.004887617051324081 0.021131699655713685 8.324086156243484E-05 0.021526545821620127 0.0006626079490466793 C 0.021131699655713685 8.324086156243484E-05 0.01924971985638421 -0.0018759716128297506 0.01942486031524851 -0.001680696261916179" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01942486031524851 -0.001680696261916179 C 0.019549320396969928 -0.0018489200256414878 0.020546877728557823 -0.003308767168934198 0.020171620805577016 -0.0026900388442680323 C 0.020546877728557823 -0.003308767168934198 0.02192719869439275 -0.005843570770854032 0.02167640185313336 -0.005393066209913175" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="淫タトゥ">
<g id="足首">
<g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.01919286476298845,-0.01919286476298845)"><path d="M 0.012472001086249265 0.02661556292502954 C 0.01247563976402337 0.02658329223860618 0.012522839699834944 0.026163786084797597 0.012515665219538534 0.026228314687949235 C 0.012522839699834944 0.026163786084797597 0.012561630652328487 0.025808961770481614 0.012558094849806183 0.025841219687209892" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.012558094849806183 0.025841219687209892 C 0.013156726862366647 0.025836181541793256 0.0208347642174449 0.025773082595776917 0.019741679000531767 0.025780761942210278 C 0.0208347642174449 0.025773082595776917 0.026169570657116455 0.02574642632899282 0.025675117452763786 0.025749067530009547" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.025675117452763786 0.025749067530009547 C 0.025675044717078807 0.02578289392466756 0.025674118722543226 0.02621869034857341 0.025674244624544044 0.026154984265905703 C 0.025674118722543226 0.02621869034857341 0.02567355346243814 0.026543420210031723 0.02567360662875398 0.02651354052202203" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02567360662875398 0.02651354052202203 C 0.025180698509240908 0.026517054471361805 0.018658575399388373 0.026564209781016628 0.019758709194597098 0.026555707914099336 C 0.018658575399388373 0.026564209781016628 0.01186477541055362 0.02662055084260706 0.012472001086249272 0.02661556292502954" fill="none" stroke="none" stroke-width="0"/>
</g><g id="ハート1">
<g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.006320845110993829 0.013906007330000582 C -0.0062741579213011585 0.013839232363100428 -0.0056788510976897525 0.012985936916873877 -0.005760598834681785 0.013104707727198732 C -0.0056788510976897525 0.012985936916873877 -0.005276127769195566 0.012366546631573895 -0.005339872267089443 0.012480757606102323 C -0.005276127769195566 0.012366546631573895 -0.004958955385458032 0.011603242832294755 -0.004995664859955256 0.011734176032857587 C -0.004958955385458032 0.011603242832294755 -0.004902749680155498 0.01079087635854718 -0.004899358573122758 0.01090955919934834 C -0.004902749680155498 0.01079087635854718 -0.005074977830120266 0.01023577001915227 -0.005036358144348137 0.010309981943243679 C -0.005074977830120266 0.01023577001915227 -0.00541975453962688 0.010006521414839391 -0.005362794802388306 0.010019016110251433 C -0.00541975453962688 0.010006521414839391 -0.005793802214765159 0.010242796801747627 -0.005719874991211031 0.010160045598299174 C -0.005793802214765159 0.010242796801747627 -0.006294092026190074 0.01108302929774401 -0.00624992148503784 0.011012030551632869" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.00624992148503784 0.011012030551632869 C -0.0062471377080235875 0.010956621360067984 -0.006213149275937785 0.010272685170510087 -0.0062165161608668095 0.010347120252854254 C -0.006213149275937785 0.010272685170510087 -0.006208935757974779 0.010099783672723569 -0.006209518865889551 0.010118809563502853" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.006209518865889551 0.010118809563502853 C -0.006172237783435842 0.010056845104970255 -0.00568121175700444 0.009301235466704506 -0.0057621458764450465 0.009375236061111665 C -0.00568121175700444 0.009301235466704506 -0.0051534949086372225 0.009255393486990136 -0.005238309432602279 0.009230802430616945 C -0.0051534949086372225 0.009255393486990136 -0.00468322615150832 0.009790139663429 -0.00474437158886437 0.00967032873758996 C -0.00468322615150832 0.009790139663429 -0.004498314910880026 0.010855628368409346 -0.004504564184329678 0.010668533540685435 C -0.004498314910880026 0.010855628368409346 -0.004720779076316939 0.012102787770758532 -0.004669380307468536 0.011915466670276886 C -0.004720779076316939 0.012102787770758532 -0.005207726107991082 0.013070168443868536 -0.005121349410510524 0.012916386746465197 C -0.005207726107991082 0.013070168443868536 -0.005808615747675777 0.013920375247906612 -0.005705900677235234 0.013760847039116939 C -0.005808615747675777 0.013920375247906612 -0.006407932720677187 0.014919881769676653 -0.006353930255797037 0.01483072525194129" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.006353930255797037 0.01483072525194129 C -0.00635338596298006 0.014812965836530457 -0.006344641646593041 0.014540552440182904 -0.0063473987419933086 0.014617612267011297 C -0.006344641646593041 0.014540552440182904 -0.006318632308410539 0.013846706918583022 -0.006320845110993829 0.013906007330000582" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.006320845110993829 0.013906007330000582 C -0.006323057913577119 0.013965307741418142 -0.006350155837393576 0.01469467209383969 -0.0063473987419933086 0.014617612267011297 C -0.006350155837393576 0.01469467209383969 -0.006354474548614014 0.014848484667352124 -0.006353930255797037 0.01483072525194129" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.006353930255797037 0.01483072525194129 C -0.006402648294865586 0.014747459297307605 -0.0070318277832495555 0.013683245092043493 -0.0069385467246196285 0.013831533796337059 C -0.0070318277832495555 0.013683245092043493 -0.007550540973220386 0.012906861677520635 -0.007473302959356166 0.013051260800418496 C -0.007550540973220386 0.012906861677520635 -0.007905480350660512 0.011916668975099805 -0.007865402890990266 0.012098744321562745 C -0.007905480350660512 0.011916668975099805 -0.00793647279336569 0.010677885008544307 -0.007954232475399118 0.010866356642863218 C -0.00793647279336569 0.010677885008544307 -0.007583569069615865 0.009709826715351463 -0.007652286706589146 0.009837084709735813 C -0.007583569069615865 0.009709826715351463 -0.007042997660632773 0.009304838466121831 -0.0071296208317197475 0.009339260710251016 C -0.007042997660632773 0.009304838466121831 -0.00653613348972627 0.009488980184623255 -0.006612808653545453 0.009424017780185602 C -0.00653613348972627 0.009488980184623255 -0.006175911383584892 0.01017670887877929 -0.006209518865889551 0.010118809563502853" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.006209518865889551 0.010118809563502853 C -0.006210101973804323 0.010137835454282138 -0.006219883045795834 0.010421555335198422 -0.0062165161608668095 0.010347120252854254 C -0.006219883045795834 0.010421555335198422 -0.006252705262052093 0.011067439743197753 -0.00624992148503784 0.011012030551632869" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.00624992148503784 0.011012030551632869 C -0.006287691140099344 0.010945730710587475 -0.0067700668141953396 0.01014175761225022 -0.006703157345775886 0.010216432459088156 C -0.0067700668141953396 0.01014175761225022 -0.00711076263955612 0.010135015357941646 -0.007052835106071285 0.010115932389577656 C -0.00711076263955612 0.010135015357941646 -0.007441600345029756 0.010524338454837568 -0.007398287747593913 0.010445428079456026 C -0.007441600345029756 0.010524338454837568 -0.007583276945057123 0.01118234726209715 -0.007572586275301399 0.011062856894156155 C -0.007583276945057123 0.01118234726209715 -0.007497776891705526 0.012006489082391833 -0.007526575784662601 0.011879312494747978 C -0.007497776891705526 0.012006489082391833 -0.007170043631761082 0.012696265288914491 -0.007226999559816497 0.012588975945882425 C -0.007170043631761082 0.012696265288914491 -0.006767591777262388 0.013276537226475956 -0.0068431046479976105 0.013166784611132775 C -0.006767591777262388 0.013276537226475956 -0.00627732348291018 0.013967609223239566 -0.006320845110993829 0.013906007330000582" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ハート3">
<g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M 0.0034151647650619444 0.013743089547458027 C 0.0034183924639490664 0.013802341558972869 0.0034579731047838565 0.014531112724156062 0.003453897151707407 0.014454113685636125 C 0.0034579731047838565 0.014531112724156062 0.0034649244561686674 0.014684825036702353 0.0034640762019793395 0.014667078009697259" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0034640762019793395 0.014667078009697259 C 0.0034085555868954625 0.014578895833471474 0.002692398243943139 0.013451215395850924 0.002797828820972819 0.01360889189498785 C 0.002692398243943139 0.013451215395850924 0.0021099129664113674 0.012622738479670558 0.002198909277623181 0.012774960020054165 C 0.0021099129664113674 0.012622738479670558 0.0016752751761480167 0.01159585527977183 0.0017298730864310533 0.011782233410384577 C 0.0016752751761480167 0.01159585527977183 0.0015467795799945204 0.010351244939059385 0.0015437343542267401 0.010538422452701196 C 0.0015467795799945204 0.010351244939059385 0.0018255007364322193 0.009415222724844704 0.0017664157956444168 0.009536103246682838 C 0.0018255007364322193 0.009415222724844704 0.0023371342468341614 0.009061759937049654 0.002252753643680369 0.009087856190643598 C 0.0023371342468341614 0.009061759937049654 0.002861171729277845 0.009295497621369669 0.0027789830334899223 0.009222948203555504 C 0.002861171729277845 0.009295497621369669 0.0032773542397725726 0.010019740954485093 0.0032390179931354457 0.009958449204413586" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0032390179931354457 0.009958449204413586 C 0.003239926738788716 0.009977461823334024 0.00325456365462537 0.010260964476437422 0.003249922940974693 0.010186600631458846 C 0.00325456365462537 0.010260964476437422 0.0032984385249409764 0.010906166570214627 0.00329470655694357 0.01085081534415649" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.00329470655694357 0.01085081534415649 C 0.0032493272323362334 0.010780613253429905 0.002674821982626014 0.009926966901049251 0.0027501546616555284 0.010008390255437483 C 0.002674821982626014 0.009926966901049251 0.0023339772579463506 0.009887241259536435 0.002390714408589397 0.009873735091497717 C 0.0023339772579463506 0.009887241259536435 0.002031965571138612 0.010245351979339776 0.0020693088539389714 0.010170464271902106 C 0.002031965571138612 0.010245351979339776 0.0019412362952449182 0.010891112677058968 0.0019425950149850831 0.010772387580749748 C 0.0019412362952449182 0.010891112677058968 0.002091949699616956 0.011725425584967773 0.002053004217056993 0.011595165427612733 C 0.002091949699616956 0.011725425584967773 0.002475630906687408 0.012448568964759012 0.002409940805704642 0.01233550946901024 C 0.002475630906687408 0.012448568964759012 0.002925054092129957 0.01306917771646866 0.0028412854288501817 0.012951879376598011 C 0.002925054092129957 0.01306917771646866 0.0034629880430795913 0.013809023728363028 0.0034151647650619444 0.013743089547458027" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M 0.0034151647650619444 0.013743089547458027 C 0.003457625129498672 0.013680722739422852 0.003998311524259454 0.012883608495509909 0.003924689138302676 0.012994687851035927 C 0.003998311524259454 0.012883608495509909 0.004353743837781525 0.012301850970940545 0.004298633396543274 0.0124101372811458 C 0.004353743837781525 0.012301850970940545 0.004612631654678822 0.011567582546934976 0.004586014433161687 0.01169525212857288 C 0.004612631654678822 0.011567582546934976 0.004605305317418761 0.010758820331145343 0.004618040054748892 0.010878102301490963 C 0.004605305317418761 0.010758820331145343 0.004388540625175433 0.010185740705656782 0.004433197585200111 0.010263868484425434 C 0.004388540625175433 0.010185740705656782 0.004023911119885044 0.00992251948810798 0.004082156534452751 0.00994056895626713 C 0.004023911119885044 0.00992251948810798 0.0036686317789285314 0.010123128732173092 0.0037342526103876297 0.010047274866515646 C 0.0036686317789285314 0.010123128732173092 0.003258077719156565 0.01091777705062656 0.00329470655694357 0.01085081534415649" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.00329470655694357 0.01085081534415649 C 0.0032909745889461634 0.010795464118098352 0.003245282227324016 0.01011223678648027 0.003249922940974693 0.010186600631458846 C 0.003245282227324016 0.01011223678648027 0.0032381092474821752 0.009939436585493148 0.0032390179931354457 0.009958449204413586" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0032390179931354457 0.009958449204413586 C 0.0032716291105422436 0.0098999607938485 0.003705902720210873 0.009190271632788852 0.0036303514020170216 0.009256588277632555 C 0.003705902720210873 0.009190271632788852 0.004232833104207378 0.009195525347388139 0.004145633811461664 0.009162649466289148 C 0.004232833104207378 0.009195525347388139 0.0047476287648364895 0.009777114901751795 0.0046767429149655905 0.009651098850820449 C 0.0047476287648364895 0.009777114901751795 0.005017247654115138 0.010862969042596829 0.0049962640099124505 0.010674842077465302 C 0.005017247654115138 0.010862969042596829 0.004891592451216643 0.012091383069468256 0.004928546645397835 0.011908622432398774 C 0.004891592451216643 0.012091383069468256 0.0044780595676160335 0.013013721000720025 0.004552813679738156 0.012867969722299092 C 0.0044780595676160335 0.013013721000720025 0.003940769176785796 0.013807563464066497 0.004031497299932364 0.013657637773449983 C 0.003940769176785796 0.013807563464066497 0.0034167911104832542 0.014751198029384531 0.0034640762019793395 0.014667078009697259" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0034640762019793395 0.014667078009697259 C 0.0034632279477900116 0.014649330982692164 0.0034498211986309577 0.014377114647116189 0.003453897151707407 0.014454113685636125 C 0.0034498211986309577 0.014377114647116189 0.0034119370661748224 0.013683837535943185 0.0034151647650619444 0.013743089547458027" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ハート2">
<g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.001425093404420893 0.013838351908849609 C -0.0014233666956850633 0.013897711939791172 -0.0014023414823341935 0.014627827815010847 -0.0014043728995909379 0.014550672280148363 C -0.0014023414823341935 0.014627827815010847 -0.001400411688819046 0.014782013831120325 -0.0014007163973399606 0.014764218327199406" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014007163973399606 0.014764218327199406 C -0.0014948593899056432 0.014679480744226734 -0.0027098804446061883 0.013596292196742162 -0.0025304323081281506 0.01374736733152735 C -0.0027098804446061883 0.013596292196742162 -0.003704248338925153 0.01280454963446137 -0.003554094035076413 0.012951316709777146 C -0.003704248338925153 0.01280454963446137 -0.00441797332229038 0.01180255723427692 -0.004332283954313029 0.011986162427738046 C -0.00441797332229038 0.01180255723427692 -0.004563929958914744 0.010559504182010186 -0.004582366450804625 0.010748054388243644 C -0.004563929958914744 0.010559504182010186 -0.0039960165665223115 0.009597689935047353 -0.004111046051634457 0.009723559952936549 C -0.0039960165665223115 0.009597689935047353 -0.0030474469767250148 0.00921139745876729 -0.003202012629458871 0.009237614173573298 C -0.0030474469767250148 0.00921139745876729 -0.0021128872871409104 0.009476052165839945 -0.0022562582188281836 0.009408959375264444 C -0.0021128872871409104 0.009476052165839945 -0.0014170033850768743 0.010095541684247198 -0.0014815614492115904 0.010042727660479294" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014815614492115904 0.010042727660479294 C -0.0014812350110431976 0.010061792213344882 -0.0014744011673460378 0.010346016643431905 -0.0014776441911908765 0.01027150229486634 C -0.0014744011673460378 0.010346016643431905 -0.0014397285773970795 0.010992349638966047 -0.0014426451630735254 0.01093689984326607" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014426451630735254 0.01093689984326607 C -0.0015193401523122287 0.010875039944041867 -0.00249335956906877 0.010118092969244642 -0.002362985033937964 0.010194581052575627 C -0.00249335956906877 0.010118092969244642 -0.003110884650588395 0.010031218505496724 -0.0030071395846431974 0.01001904284329425 C -0.003110884650588395 0.010031218505496724 -0.003680523055131295 0.01041872088129897 -0.003607925825280336 0.01034068899900533 C -0.003680523055131295 0.01041872088129897 -0.0038815579931177667 0.01107447903753895 -0.003878306342854707 0.010955425430817928 C -0.0038815579931177667 0.01107447903753895 -0.0035856364841299402 0.011897597901114231 -0.0036469456284370545 0.011769332279657593 C -0.0035856364841299402 0.011897597901114231 -0.0030392211989178335 0.012604151677781563 -0.0031425966111693366 0.012494612888297582 C -0.0030392211989178335 0.012604151677781563 -0.0022633154141899806 0.013195776005178041 -0.0024064406814190177 0.013083797753465373 C -0.0022633154141899806 0.013195776005178041 -0.0013433144646710492 0.013901231421798296 -0.001425093404420893 0.013838351908849609" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.001425093404420893 0.013838351908849609 C -0.0013441280837600414 0.013772524697371724 -0.00031291618066709435 0.012931346827280544 -0.0004535095564906744 0.013048425371114981 C -0.00031291618066709435 0.012931346827280544 0.0003690103443032885 0.012320496721269716 0.00026202710546206754 0.012433409382836364 C 0.0003690103443032885 0.012320496721269716 0.0008871699155848777 0.011563104766448482 0.0008302893096039767 0.011693473432315193 C 0.0008871699155848777 0.011563104766448482 0.0009298480168840455 0.0107498828316328 0.00094459437723288 0.010868985392435823 C 0.0009298480168840455 0.0107498828316328 0.0005781085480653981 0.010188841129106145 0.000653332985417963 0.010264242702678913 C 0.0005781085480653981 0.010188841129106145 -6.200918466931803E-05 0.009950189732252972 4.190112900210152E-05 0.009964166509562604 C -6.200918466931803E-05 0.009950189732252972 -0.0007173029696453737 0.010177582486105282 -0.0005935907786390715 0.010096521374963327 C -0.0007173029696453737 0.010177582486105282 -0.0015133996951097299 0.011006931382291299 -0.0014426451630735254 0.01093689984326607" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014426451630735254 0.01093689984326607 C -0.0014455617487499713 0.010881450047566093 -0.001480887215035715 0.010196987946300775 -0.0014776441911908765 0.01027150229486634 C -0.001480887215035715 0.010196987946300775 -0.0014818878873799832 0.010023663107613707 -0.0014815614492115904 0.010042727660479294" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014815614492115904 0.010042727660479294 C -0.0014186414023144955 0.009981536103685561 -0.0005855342229831261 0.009236276387089236 -0.0007265208864464528 0.009308428978954494 C -0.0005855342229831261 0.009236276387089236 0.0003654381356949973 0.009203711297661944 0.000210278512348331 0.00917689655809619 C 0.0003654381356949973 0.009203711297661944 0.001254663182619576 0.009751906819293974 0.0011353945937135426 0.009630205853743534 C 0.001254663182619576 0.009751906819293974 0.0016663818812534 0.010825087580702332 0.0016415015792207318 0.01063730814470148 C 0.0016663818812534 0.010825087580702332 0.0013546067977675748 0.012070100981479297 0.0014339582181055618 0.011883559085753762 C 0.0013546067977675748 0.012070100981479297 0.0005442462914238256 0.013027830564956353 0.0006892845351648876 0.012875810893407898 C 0.0005442462914238256 0.013027830564956353 -0.0004806674511625867 0.013865162430484518 -0.00030650070678718273 0.013707795144335226 C -0.0004806674511625867 0.013865162430484518 -0.0014919010382193588 0.014852253592438087 -0.0014007163973399606 0.014764218327199406" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014007163973399606 0.014764218327199406 C -0.0014010211058608753 0.014746422823278486 -0.0014064043168476822 0.01447351674528588 -0.0014043728995909379 0.014550672280148363 C -0.0014064043168476822 0.01447351674528588 -0.0014268201131567226 0.013778991877908046 -0.001425093404420893 0.013838351908849609" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="ハート">
<g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.0077430550449572475 0.005409386604612551 C -0.0077430550449572475 0.0055027237933992414 -0.0077430550449572475 0.006723676897481556 -0.0077430550449572475 0.006529432870052831 C -0.0077430550449572475 0.006723676897481556 -0.0077430550449572475 0.007841221772399279 -0.0077430550449572475 0.007740314933757244" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0077430550449572475 0.007740314933757244 C -0.007924420369633459 0.0074762363346209506 -0.010272685701279082 0.004106141329460164 -0.009919438941071782 0.0045713717441217255 C -0.010272685701279082 0.004106141329460164 -0.012291565689471047 0.001733973756404923 -0.011982016167444843 0.0021575499578185037 C -0.012291565689471047 0.001733973756404923 -0.013802598845704698 -0.000988833942434606 -0.013634033205386233 -0.0005115426728412426 C -0.013802598845704698 -0.000988833942434606 -0.013955193646348249 -0.004041390787123499 -0.014004803851266425 -0.003569945277301857 C -0.013955193646348249 -0.004041390787123499 -0.012799408660650996 -0.006488122610045656 -0.013038710746368113 -0.006168888790700951 C -0.012799408660650996 -0.006488122610045656 -0.01081458195813231 -0.007478728497990787 -0.011133178822661008 -0.007400751109438316 C -0.01081458195813231 -0.007478728497990787 -0.008933038057215105 -0.0069250655743297515 -0.00921554837202375 -0.0071046174533306115 C -0.008933038057215105 -0.0069250655743297515 -0.007620347267701706 -0.005091254487102778 -0.0077430550449572475 -0.005246128561427996" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0077430550449572475 -0.005246128561427996 C -0.0077430550449572475 -0.0051969624601278875 -0.0077430550449572475 -0.004519034113566277 -0.0077430550449572475 -0.004656135345826693 C -0.0077430550449572475 -0.004519034113566277 -0.0077430550449572475 -0.0035129786433426872 -0.0077430550449572475 -0.0036009137743029953" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0077430550449572475 -0.0036009137743029953 C -0.007881030359536328 -0.0037362231689287194 -0.009650307684299777 -0.00538715080531784 -0.009398758819906212 -0.005224626509811687 C -0.009650307684299777 -0.00538715080531784 -0.010983185246327465 -0.005508508285775104 -0.010761641417680025 -0.005551205320376824 C -0.010983185246327465 -0.005508508285775104 -0.012215279566732653 -0.004505221188548649 -0.012057284763675503 -0.004712262094591039 C -0.012215279566732653 -0.004505221188548649 -0.012684733766321586 -0.002744673849583441 -0.012657579054365832 -0.0030667144478681474 C -0.012684733766321586 -0.002744673849583441 -0.012256817699290646 -0.0004987775151050705 -0.012383141307144553 -0.0008477749151745618 C -0.012256817699290646 -0.0004987775151050705 -0.010908942085009364 0.0014469618865563462 -0.011141695760118956 0.0011212543529657483 C -0.010908942085009364 0.0014469618865563462 -0.009306877146232644 0.003418059842216512 -0.009590097205829453 0.0030607154879126117 C -0.009306877146232644 0.003418059842216512 -0.007589134864884564 0.00560510919767088 -0.0077430550449572475 0.005409386604612551" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.0077430550449572475 0.005409386604612551 C -0.0075486747108035185 0.005213664011554223 -0.005054485851553613 0.0027033711336087113 -0.005410491035112495 0.0030607154879126117 C -0.005054485851553613 0.0027033711336087113 -0.0031800507483636707 0.0007955468193751505 -0.003470992842250661 0.0011212543529657483 C -0.0031800507483636707 0.0007955468193751505 -0.0017612813986512227 -0.0011967723152440531 -0.00191918590846861 -0.0008477749151745618 C -0.0017612813986512227 -0.0011967723152440531 -0.001610082114386709 -0.003388755046152854 -0.0015761387244420146 -0.0030667144478681474 C -0.001610082114386709 -0.003388755046152854 -0.0025240000916263825 -0.004919303000633429 -0.0023265065878049426 -0.004712262094591039 C -0.0025240000916263825 -0.004919303000633429 -0.004222990556108603 -0.005593902354978544 -0.003946060770299294 -0.005551205320376824 C -0.004222990556108603 -0.005593902354978544 -0.005966080207071474 -0.005062102214305535 -0.005649664017516645 -0.005224626509811687 C -0.005966080207071474 -0.005062102214305535 -0.007917504297243964 -0.003465604379677271 -0.0077430550449572475 -0.0036009137743029953" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0077430550449572475 -0.0036009137743029953 C -0.0077430550449572475 -0.0036888489052633033 -0.0077430550449572475 -0.00479323657808711 -0.0077430550449572475 -0.004656135345826693 C -0.0077430550449572475 -0.00479323657808711 -0.0077430550449572475 -0.005295294662728105 -0.0077430550449572475 -0.005246128561427996" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0077430550449572475 -0.005246128561427996 C -0.00758769021432494 -0.005401002635753214 -0.005523559074795879 -0.007284169332331471 -0.005878677077369555 -0.0071046174533306115 C -0.005523559074795879 -0.007284169332331471 -0.0030833929334122736 -0.007322773720885844 -0.0034816390140731293 -0.007400751109438316 C -0.0030833929334122736 -0.007322773720885844 -0.0008005965022928813 -0.005849654971356246 -0.0010997241094392854 -0.006168888790700951 C -0.0008005965022928813 -0.005849654971356246 0.00016990502783145376 -0.0030984997674802146 0.00010789227168371954 -0.003569945277301857 C 0.00016990502783145376 -0.0030984997674802146 -0.0005662780860645627 -3.4251403247879215E-05 -0.0003555710356664746 -0.0005115426728412426 C -0.0005662780860645627 -3.4251403247879215E-05 -0.002807529235626103 0.0025811261592320845 -0.0024205923330933377 0.0021575499578185037 C -0.002807529235626103 0.0025811261592320845 -0.005442352425381649 0.005036602158783287 -0.004998813866059657 0.0045713717441217255 C -0.005442352425381649 0.005036602158783287 -0.00797174180986538 0.008004393532893537 -0.0077430550449572475 0.007740314933757244" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0077430550449572475 0.007740314933757244 C -0.0077430550449572475 0.007639408095115209 -0.0077430550449572475 0.006335188842624106 -0.0077430550449572475 0.006529432870052831 C -0.0077430550449572475 0.006335188842624106 -0.0077430550449572475 0.005316049415825861 -0.0077430550449572475 0.005409386604612551" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.016032243425911998,-0.016032243425912)"><path d="M 0.00447909159645026 0.016770867709955638 C 0.004392828088184394 0.015835940854244637 0.0038785056693628633 0.009964424395916972 0.003961510546855066 0.011161306575689624 C 0.0038785056693628633 0.009964424395916972 0.0039843209622707045 0.009327619307258075 0.003981062331497042 0.009589574631319726" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003981062331497042 0.009589574631319726 C 0.004069162111435661 0.009887052613017437 0.00547395674676103 0.0141611357297673 0.005038259690760476 0.013159310411692273 C 0.00547395674676103 0.0141611357297673 0.009627349413395795 0.023260646999885445 0.009209427003503684 0.02161147844822005 C 0.009627349413395795 0.023260646999885445 0.010123653743295984 0.03389415424696508 0.010053328609465806 0.032949333031677006" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.010053328609465806 0.032949333031677006 C 0.009889626478599613 0.03213001752183558 0.0077022439677141225 0.02187256554956638 0.008088903039071503 0.023117546913579846 C 0.0077022439677141225 0.02187256554956638 0.005112602132958811 0.017480666729880048 0.005413419753177247 0.0180095566635154 C 0.005112602132958811 0.017480666729880048 0.004401230916723011 0.016667643630492328 0.00447909159645026 0.01677086770995564" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.016032243425911998,-0.016032243425912)"><path d="M 0.0276277432439093 0.013509485118021731 C 0.027160707008558202 0.01388719377457812 0.021125599313400134 0.018862923694511584 0.022023308419696117 0.0180419889966984 C 0.021125599313400134 0.018862923694511584 0.01622651494489242 0.024602980161361507 0.01685523396835753 0.023360701491779958 C 0.01622651494489242 0.024602980161361507 0.01428063398559454 0.03374838566000176 0.014478680138114769 0.032949333031677006" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.014478680138114769 0.032949333031677006 C 0.01457121320894395 0.03200451181638893 0.016352628658016483 0.019910134421105466 0.015589076988064946 0.02161147844822005 C 0.016352628658016483 0.019910134421105466 0.024527659571275624 0.011336696764695148 0.023641300177533207 0.01253320470630199 C 0.024527659571275624 0.011336696764695148 0.026440730507594018 0.006813398019157615 0.026225389712973956 0.007253383148937951" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.026225389712973956 0.007253383148937951 C 0.026256423593172623 0.007402489050565005 0.02671465906960257 0.009563995799219582 0.026597796275357955 0.009042653968462601 C 0.02671465906960257 0.009563995799219582 0.027713572157955245 0.01388172104715165 0.0276277432439093 0.013509485118021724" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="悪タトゥ">
<g id="文字1">
<g id="文字a">
<g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M -0.0019424017785055463 0.0038025655633437245 C -0.001931616779818381 0.003802565563343724 -0.0017417688818495507 0.0038025655633437206 -0.0018129817942595615 0.003802565563343721 C -0.0017417688818495507 0.0038025655633437206 -0.0009486807178994102 0.003802565563343717 -0.0010878468295854168 0.0038025655633437175 C -0.0009486807178994102 0.003802565563343717 -6.425025606432101E-05 0.0038025655633437175 -0.00014298845402748223 0.0038025655633437175" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M -0.00014298845402748223 0.0038025655633437175 C -0.00014298845402748223 0.003957466196545362 -0.00014298845402748247 0.005971174428166743 -0.00014298845402748223 0.005661373161763452 C -0.00014298845402748247 0.005971174428166743 -0.00014298845402748573 0.007829982026586487 -0.0001429884540274851 0.007520180760183198 C -0.00014298845402748573 0.007829982026586487 -0.00014298845402748998 0.009533888991804572 -0.0001429884540274896 0.009378988358602928" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0001429884540274896 0.009378988358602928 C -0.00018490102076107505 0.009378988358602928 -0.0007072180834632518 0.009378988358602925 -0.0006459392548305149 0.009378988358602925 C -0.0007072180834632518 0.009378988358602925 -0.0009697685834314614 0.009378988358602925 -0.0008783343976203337 0.009378988358602925 C -0.0009697685834314614 0.009378988358602925 -0.0018152174084760235 0.009378988358602928 -0.0017431494845640474 0.009378988358602928" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M -0.0017431494845640474 0.009378988358602928 C -0.0017472855885990513 0.009230622704749924 -0.0018027210062753832 0.007298514521067737 -0.0017927827329840941 0.007598600512366871 C -0.0018027210062753832 0.007298514521067737 -0.00187487701785297 0.005461620217261387 -0.0018624087640595154 0.005777956463013316 C -0.00187487701785297 0.005461620217261387 -0.0019490678630427207 0.003637949655037925 -0.001942401778505551 0.0038025655633437245" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.3222210307971341,0.40530755800332896) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.008042840463603476 0.005889370928880477 C 0.008027792997193972 0.006103143827334442 0.007971711010702959 0.008820546901651752 0.00786227086668943 0.008454645710328059 C 0.007971711010702959 0.008820546901651752 0.00948060980218887 0.010432313517634524 0.009356122191765836 0.010280185224764796" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009356122191765836 0.010280185224764796 C 0.009275026223524501 0.010132596249620238 0.00820634572571926 0.008512026063299977 0.008382970572869824 0.00850911752303011 C 0.00820634572571926 0.008512026063299977 0.0071410951470498255 0.010465585223417622 0.007236624025959057 0.010315087708003198" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007236624025959057 0.010315087708003198 C 0.0072592216769149 0.010048327483923968 0.007574980540566212 0.00674515528745888 0.007507795837429177 0.00711396501905244 C 0.007574980540566212 0.00674515528745888 0.008087427515784668 0.0057873214213661475 0.008042840463603476 0.005889370928880477" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3222210307971341,0.40530755800332896) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04597785612552577 0.04384131035164637 C 0.04599827098034971 0.04400211440402642 0.045827083098323444 0.04519993538115327 0.04585067742076637 0.04516249235575084 C 0.045827083098323444 0.04519993538115327 0.04564965525640412 0.0442028839541887 0.04569472425621065 0.04429062665647559 C 0.04564965525640412 0.0442028839541887 0.04527300731889934 0.04404520597448105 0.045309849423088036 0.04410957992830817 C 0.04527300731889934 0.04404520597448105 0.04527727315092891 0.04344507786045697 0.04525261900594632 0.04351813921055012 C 0.04527727315092891 0.04344507786045697 0.04566613558951071 0.04325977465561502 0.045605699162879085 0.043232843727190336 C 0.04566613558951071 0.04325977465561502 0.04599827098034971 0.04400211440402642 0.04597785612552577 0.04384131035164637 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.32363831836047097,0.40530755800332896) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.013231926624832037 C 0.004279001009322062 0.013231926624832037 0.005302597582843156 0.013231926624832038 0.0051451211869168335 0.013231926624832038 C 0.005302597582843156 0.013231926624832038 0.006247455958401094 0.013231926624832035 0.006089979562474771 0.013231926624832035 C 0.006247455958401094 0.013231926624832035 0.007113576135995865 0.013231926624832038 0.007034837938032704 0.013231926624832038" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007034837938032704 0.013231926624832038 C 0.007034837938032704 0.013386827258033682 0.007034837938032705 0.015400535489655058 0.007034837938032704 0.01509073422325177 C 0.007034837938032705 0.015400535489655058 0.007034837938032713 0.017259343088074787 0.007034837938032713 0.0169495418216715 C 0.007034837938032713 0.017259343088074787 0.007034837938032703 0.01896325005329287 0.007034837938032704 0.018808349420091228" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007034837938032704 0.018808349420091228 C 0.006956099740069543 0.018808349420091228 0.005932503166548449 0.018808349420091228 0.006089979562474771 0.018808349420091228 C 0.005932503166548449 0.018808349420091228 0.004987644790990511 0.018808349420091228 0.0051451211869168335 0.018808349420091228 C 0.004987644790990511 0.018808349420091228 0.004121524613395741 0.018808349420091228 0.004200262811358902 0.018808349420091228" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.004200262811358902 0.018808349420091228 C 0.004200262811358902 0.018653448786889584 0.004200262811358902 0.016639740555268213 0.004200262811358902 0.0169495418216715 C 0.004200262811358902 0.016639740555268213 0.004200262811358902 0.014780932956848477 0.004200262811358902 0.015090734223251766 C 0.004200262811358902 0.014780932956848477 0.004200262811358902 0.013077025991630393 0.004200262811358902 0.013231926624832037" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3250556059238079,0.40530755800332896) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.006887533098854097 0.0058884460582520805 C 0.006937277860375933 0.006051929116287172 0.007680107395565475 0.008000417871924188 0.007484470237116125 0.007850242754673182 C 0.007680107395565475 0.008000417871924188 0.009381071397173802 0.007677239524480069 0.009235179000246289 0.007690547465264155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009235179000246289 0.007690547465264155 C 0.009176800230301044 0.007575789197514184 0.00833249404841881 0.006531157995978662 0.008534633760903363 0.006313448252264501 C 0.00833249404841881 0.006531157995978662 0.006665741507892357 0.010635532401298218 0.006809502450431665 0.010303064389834086" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006809502450431665 0.010303064389834086 C 0.006835374575093605 0.010158618306359841 0.0071264705004101345 0.008201826527177991 0.007119967946374932 0.008569711388143159 C 0.0071264705004101345 0.008201826527177991 0.006868163528227361 0.005665007280761157 0.006887533098854097 0.0058884460582520805" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3250556059238079,0.40530755800332896) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.0450107002853152 0.046856107038941885 C 0.044940829098284896 0.04682644145073097 0.04477238718251086 0.04622404550157427 0.04476923105360138 0.046307423396248715 C 0.04477238718251086 0.04622404550157427 0.04510923179055457 0.04583298677255469 0.045048573832228926 0.0458555723028485 C 0.04510923179055457 0.04583298677255469 0.04557471737030673 0.04600114081783775 0.04549712655350914 0.04603639703272302 C 0.04557471737030673 0.04600114081783775 0.04598887686250462 0.04548474884273004 0.04597966363379997 0.045432497724225314 C 0.04598887686250462 0.04548474884273004 0.04552693835225796 0.046782044564339424 0.04560768529796502 0.04666341045477971 C 0.04552693835225796 0.046782044564339424 0.044940829098284896 0.04682644145073097 0.0450107002853152 0.046856107038941885 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.3264728934871448,0.40530755800332896) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.013231926624832037 C 0.004279001009322062 0.013231926624832037 0.005302597582843156 0.013231926624832038 0.0051451211869168335 0.013231926624832038 C 0.005302597582843156 0.013231926624832038 0.006247455958401094 0.013231926624832035 0.006089979562474771 0.013231926624832035 C 0.006247455958401094 0.013231926624832035 0.007113576135995865 0.013231926624832038 0.007034837938032704 0.013231926624832038" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007034837938032704 0.013231926624832038 C 0.007034837938032704 0.013386827258033682 0.007034837938032705 0.015400535489655058 0.007034837938032704 0.01509073422325177 C 0.007034837938032705 0.015400535489655058 0.007034837938032713 0.017259343088074787 0.007034837938032713 0.0169495418216715 C 0.007034837938032713 0.017259343088074787 0.007034837938032703 0.01896325005329287 0.007034837938032704 0.018808349420091228" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007034837938032704 0.018808349420091228 C 0.006956099740069543 0.018808349420091228 0.005932503166548449 0.018808349420091228 0.006089979562474771 0.018808349420091228 C 0.005932503166548449 0.018808349420091228 0.004987644790990511 0.018808349420091228 0.0051451211869168335 0.018808349420091228 C 0.004987644790990511 0.018808349420091228 0.004121524613395741 0.018808349420091228 0.004200262811358902 0.018808349420091228" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.004200262811358902 0.018808349420091228 C 0.004200262811358902 0.018653448786889584 0.004200262811358902 0.016639740555268213 0.004200262811358902 0.0169495418216715 C 0.004200262811358902 0.016639740555268213 0.004200262811358902 0.014780932956848477 0.004200262811358902 0.015090734223251766 C 0.004200262811358902 0.014780932956848477 0.004200262811358902 0.013077025991630393 0.004200262811358902 0.013231926624832037" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32789018105048173,0.40530755800332896) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007197734084575982 0.005906963753293441 C 0.007216096877015091 0.006159150830267783 0.0075302341257333935 0.009227416968727847 0.0074180875938452875 0.008933208676985547 C 0.0075302341257333935 0.009227416968727847 0.008698868078505078 0.009302293548415361 0.008543492467233255 0.009437463254201027 C 0.008698868078505078 0.009302293548415361 0.009344186800929981 0.007133981287003946 0.009282594929107156 0.007311172207557568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009282594929107156 0.007311172207557568 C 0.009256489627418414 0.0075460767762827365 0.008793802999483874 0.010346991873842293 0.008969331308842261 0.010130027032259598 C 0.008793802999483874 0.010346991873842293 0.007026832209136862 0.009896810579407455 0.007176255216806508 0.009914750306549928" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007176255216806508 0.009914750306549928 C 0.007150187062218243 0.0097762085691169 0.0068652272673947875 0.007918267244582217 0.006863437361747332 0.00825224945735359 C 0.0068652272673947875 0.007918267244582217 0.007225592144811701 0.005711523277955095 0.007197734084575981 0.005906963753293441" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32789018105048173,0.40530755800332896) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04520413028285941 0.04356700634714886 C 0.045223338619763256 0.0437278103995289 0.04506226794156475 0.044925631376655735 0.0450844678395513 0.0448881883512533 C 0.04506226794156475 0.044925631376655735 0.04489532608510286 0.043928579949691175 0.04493773150702082 0.044016322651978065 C 0.04489532608510286 0.043928579949691175 0.04454093804070461 0.043770901969983504 0.04457560277653575 0.043835275923810625 C 0.04454093804070461 0.043770901969983504 0.04454495176206121 0.043170773855959424 0.044521754677047096 0.04324383520605258 C 0.04454495176206121 0.043170773855959424 0.04491083243052284 0.04298547065111749 0.04485396779670515 0.0429585397226928 C 0.04491083243052284 0.04298547065111749 0.045223338619763256 0.0437278103995289 0.04520413028285941 0.04356700634714886 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.32930746861381865,0.40530755800332896) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.013231926624832037 C 0.004279001009322062 0.013231926624832037 0.005302597582843156 0.013231926624832038 0.0051451211869168335 0.013231926624832038 C 0.005302597582843156 0.013231926624832038 0.006247455958401094 0.013231926624832035 0.006089979562474771 0.013231926624832035 C 0.006247455958401094 0.013231926624832035 0.007113576135995865 0.013231926624832038 0.007034837938032704 0.013231926624832038" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007034837938032704 0.013231926624832038 C 0.007034837938032704 0.013386827258033682 0.007034837938032705 0.015400535489655058 0.007034837938032704 0.01509073422325177 C 0.007034837938032705 0.015400535489655058 0.007034837938032713 0.017259343088074787 0.007034837938032713 0.0169495418216715 C 0.007034837938032713 0.017259343088074787 0.007034837938032703 0.01896325005329287 0.007034837938032704 0.018808349420091228" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007034837938032704 0.018808349420091228 C 0.006956099740069543 0.018808349420091228 0.005932503166548449 0.018808349420091228 0.006089979562474771 0.018808349420091228 C 0.005932503166548449 0.018808349420091228 0.004987644790990511 0.018808349420091228 0.0051451211869168335 0.018808349420091228 C 0.004987644790990511 0.018808349420091228 0.004121524613395741 0.018808349420091228 0.004200262811358902 0.018808349420091228" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.004200262811358902 0.018808349420091228 C 0.004200262811358902 0.018653448786889584 0.004200262811358902 0.016639740555268213 0.004200262811358902 0.0169495418216715 C 0.004200262811358902 0.016639740555268213 0.004200262811358902 0.014780932956848477 0.004200262811358902 0.015090734223251766 C 0.004200262811358902 0.014780932956848477 0.004200262811358902 0.013077025991630393 0.004200262811358902 0.013231926624832037" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3307247561771556,0.40530755800332896) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.006920148550908234 0.005888446058252082 C 0.007066764455120642 0.005933156120462563 0.008869804372489106 0.0065751419220288565 0.00867953940145713 0.00642496680477785 C 0.008869804372489106 0.0065751419220288565 0.009246977270111513 0.007796012520304681 0.009203328203291944 0.007690547465264155" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009203328203291944 0.007690547465264155 C 0.009055353264184727 0.0076228742065732255 0.007231039968774356 0.007096178104687163 0.007427628934005327 0.006878468360973003 C 0.007231039968774356 0.007096178104687163 0.0067956465943965335 0.010588447392239176 0.006844260620520287 0.010303064389834086" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006844260620520287 0.010303064389834086 C 0.006889992283273836 0.010186633966712025 0.00739936456776187 0.008538014451404188 0.007393040573562874 0.008905899312369354 C 0.00739936456776187 0.008538014451404188 0.00688074088235368 0.005636991620408976 0.006920148550908234 0.005888446058252082" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3307247561771556,0.40530755800332896) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.045122151787621884 0.04679663595809732 C 0.04505142032473202 0.04678805545503852 0.04480460069770921 0.04624809135445654 0.0448135822895674 0.04633057038714709 C 0.04480460069770921 0.04624809135445654 0.04506882961750209 0.04576705356595878 0.045014372685323566 0.04580688756581071 C 0.04506882961750209 0.04576705356595878 0.045535809259390776 0.04579538184973109 0.0454670654757097 0.045852562388924004 C 0.045535809259390776 0.04579538184973109 0.045855572620207785 0.045169135598406476 0.04583929808949645 0.04512072109549575 C 0.045855572620207785 0.045169135598406476 0.04560259765242285 0.046573195995736144 0.04566235984424573 0.04643353642385268 C 0.04560259765242285 0.046573195995736144 0.04505142032473202 0.04678805545503852 0.045122151787621884 0.04679663595809732 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.3321420437404925,0.40530755800332896) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.013231926624832037 C 0.004279001009322062 0.013231926624832037 0.005273946708209212 0.013230114849464325 0.0051451211869168335 0.013231926624832038 C 0.005273946708209212 0.013230114849464325 0.005834192213360232 0.013210789245542049 0.005746169066867434 0.013210185320419478 C 0.005834192213360232 0.013210789245542049 0.0062393347679939835 0.013241589426793175 0.006201398944830403 0.013239173726302891" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006201398944830403 0.013239173726302891 C 0.0061905820947542635 0.013391960621575537 0.006052842506283896 0.015382273106196564 0.0060715967439167375 0.015072616469574637 C 0.006052842506283896 0.015382273106196564 0.005963687900600871 0.017264552669608014 0.0059763480932363035 0.016955053365766012 C 0.005963687900600871 0.017264552669608014 0.005914951627212824 0.018939237678171388 0.005919674432291553 0.018786608115678668" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.005919674432291553 0.018786608115678668 C 0.00589841639555177 0.01878841989104638 0.005600031887632936 0.01881016119545894 0.005664577991414162 0.018808349420091228 C 0.005600031887632936 0.01881016119545894 0.0050230949219122285 0.018808349420091228 0.0051451211869168335 0.018808349420091228 C 0.0050230949219122285 0.018808349420091228 0.004121524613395741 0.018808349420091228 0.004200262811358902 0.018808349420091228" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.004200262811358902 0.018808349420091228 C 0.004200262811358902 0.018653448786889584 0.004200262811358902 0.016639740555268213 0.004200262811358902 0.0169495418216715 C 0.004200262811358902 0.016639740555268213 0.004200262811358902 0.014780932956848477 0.004200262811358902 0.015090734223251766 C 0.004200262811358902 0.014780932956848477 0.004200262811358902 0.013077025991630393 0.004200262811358902 0.013231926624832037" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3335593313038294,0.40530755800332896) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007027371228933331 0.005922191874423125 C 0.0070996689338851515 0.006131243869794904 0.008069984551490297 0.008624493942069994 0.00789494368835518 0.00843081581888447 C 0.008069984551490297 0.008624493942069994 0.009230604744738023 0.008230955480463143 0.009127861586554728 0.0082463293526494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009127861586554728 0.0082463293526494 C 0.009020802226721178 0.008211222812909235 0.007671133599942567 0.007997447405380241 0.007843149268552134 0.007825050875767424 C 0.007671133599942567 0.007997447405380241 0.006998717254463901 0.01052259077735618 0.0070636735632399195 0.010315087708003198" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0070636735632399195 0.010315087708003198 C 0.0070718470981412365 0.01012627722958776 0.007158730787530173 0.007683287314219603 0.007161755982055722 0.008049361967017943 C 0.007158730787530173 0.007683287314219603 0.007016172499506465 0.005744927700040224 0.007027371228933331 0.005922191874423125" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3335593313038294,0.40530755800332896) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.0446587297719539 0.04278812639337001 C 0.044789802857384875 0.04276595681188583 0.045893106971534176 0.043129475351162544 0.045874030020972054 0.04308827701207897 C 0.045893106971534176 0.043129475351162544 0.04479515060002967 0.04335009223851282 0.0448876531786994 0.043282506462372895 C 0.04479515060002967 0.04335009223851282 0.04472632785983304 0.043955067856916656 0.04476399907693532 0.04389930632575804 C 0.04472632785983304 0.043955067856916656 0.044397028066710836 0.0439062286416206 0.04443559857347209 0.043951644836276345 C 0.044397028066710836 0.0439062286416206 0.04431974726234044 0.043257352119646965 0.04430115299580029 0.043354311989889156 C 0.04431974726234044 0.043257352119646965 0.044789802857384875 0.04276595681188583 0.0446587297719539 0.04278812639337001 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3335593313038294,0.40530755800332896) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04430115299580031 0.04627498324866217 C 0.04428255872926015 0.04617802337841998 0.04447416908023333 0.045632234207619214 0.044435598573472075 0.04567765040227496 C 0.04447416908023333 0.045632234207619214 0.044801670294037595 0.045785750443951875 0.04476399907693532 0.04572998891279326 C 0.044801670294037595 0.045785750443951875 0.044980155757369134 0.046414374552318345 0.04488765317869941 0.04634678877617842 C 0.044980155757369134 0.046414374552318345 0.045854953070409925 0.04658221656555593 0.045874030020972054 0.04654101822647236 C 0.045854953070409925 0.04658221656555593 0.04452765668652292 0.046818999263697106 0.0446587297719539 0.04684116884518129 C 0.04452765668652292 0.046818999263697106 0.04428255872926015 0.04617802337841998 0.04430115299580031 0.04627498324866217 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="文字2">
<g id="文字a">
<g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M -0.0015442449730780038 0.01584962594561322 C -0.0014845327214558653 0.015849866829225116 -0.0007055685045108525 0.01585276862326054 -0.0008276979536123411 0.015852516548955975 C -0.0007055685045108525 0.01585276862326054 4.6142811098557886E-05 0.015852673218653347 -7.869158386014167E-05 0.015852650837268008 C 4.6142811098557886E-05 0.015852673218653347 0.0007327319833714033 0.01585279631627272 0.0006703147858920537 0.015852785125580048" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0006703147858920537 0.015852785125580048 C 0.0006703408329551226 0.016007686230588094 0.0006706794447750192 0.01802140059569271 0.000670627350648881 0.017711598385676618 C 0.0006706794447750192 0.01802140059569271 0.0006709920095318496 0.01988021385578927 0.0006709399154057115 0.019570411645773177 C 0.0006709920095318496 0.01988021385578927 0.0006712785272256078 0.02158412601087778 0.0006712524801625389 0.021429224905869734" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0006712524801625389 0.021429224905869734 C 0.0006088352826831889 0.021429213715177066 -0.0002025882845483606 0.021429068236172362 -7.775388958966125E-05 0.0214290906175577 C -0.0002025882845483606 0.021429068236172362 -0.0009521126953488867 0.021428933947860326 -0.0008267602593418531 0.021428956329245664 C -0.0009521126953488867 0.021428933947860326 -0.0016449183602017501 0.021428810850240957 -0.0015819831216740657 0.021428822040933628" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M -0.0015819831216740657 0.021428822040933628 C -0.0015774145699548323 0.02127389206673693 -0.0015211620401705428 0.01925974466380258 -0.0015271605010432644 0.019569662350573273 C -0.0015211620401705428 0.01925974466380258 -0.0015114252972043014 0.01739980676593866 -0.001510001591201406 0.017709809799685332 C -0.0015114252972043014 0.01739980676593866 -0.0015470985882343924 0.015694610624440553 -0.0015442449730780088 0.01584962594561323" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.32332858089289745,0.41735758462561245) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.008049196846034059 0.005889359660541013 C 0.008037304393151133 0.006103131071492161 0.007993304125863968 0.008820534451981074 0.007906487411438958 0.008454616591954782 C 0.007993304125863968 0.008820534451981074 0.009189706586442121 0.01043252042993165 0.009090997419134186 0.010280373980856506" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009090997419134186 0.010280373980856506 C 0.009026686356812919 0.01013277303038431 0.008150161491744719 0.008512040805957116 0.00831926467127897 0.008509162575190174 C 0.008150161491744719 0.008512040805957116 0.006956967147510203 0.010465391931298945 0.007061759264723185 0.010314912750059808" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007061759264723185 0.010314912750059808 C 0.007108717924929722 0.010048160140660244 0.007707549652310869 0.006745085346471797 0.007625263187201629 0.0071138814372650305 C 0.007707549652310869 0.006745085346471797 0.00808452465093676 0.005787316179147344 0.008049196846034059 0.005889359660541013" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32332858089289745,0.41735758462561245) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04573658042756997 0.043841472708389805 C 0.04575279069296471 0.04400228015202532 0.045617288371941095 0.04520008044741818 0.04563598572306484 0.0451626406613203 C 0.045617288371941095 0.04520008044741818 0.045476470446360176 0.0442030007665784 0.04551221221408499 0.04429075014156435 C 0.045476470446360176 0.0442030007665784 0.045177868281530816 0.04404526877539106 0.04520708451036704 0.04410964816148891 C 0.045177868281530816 0.04404526877539106 0.04518114897038033 0.04344513943974062 0.045161617468050246 0.043518197508390186 C 0.04518114897038033 0.04344513943974062 0.04548937611828801 0.04325989093769406 0.04544146253832803 0.04323295133769409 C 0.04548937611828801 0.04325989093769406 0.04575279069296471 0.04400228015202532 0.04573658042756997 0.043841472708389805 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.32445209044752576,0.41735778605808055) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004199793964223654 0.013231918132316795 C 0.0042622111617030035 0.013231929323009465 0.005073634728934549 0.013232074802014172 0.004948800333975849 0.013232052420628833 C 0.005073634728934549 0.013232074802014172 0.005822641098686744 0.013232209090326207 0.005697806703728043 0.013232186708940868 C 0.005822641098686744 0.013232209090326207 0.006509230270959599 0.013232332187945577 0.006446813073480249 0.013232320997252908" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006446813073480249 0.013232320997252908 C 0.006446839120543317 0.013387222102260954 0.006447177732363207 0.015400936467365556 0.006447125638237069 0.015091134257349464 C 0.006447177732363207 0.015400936467365556 0.006447490297120043 0.017259749727462113 0.0064474382029939045 0.01694994751744602 C 0.006447490297120043 0.017259749727462113 0.006447776814813804 0.01896366188255063 0.006447750767750735 0.018808760777542583" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006447750767750735 0.018808760777542583 C 0.006385333570271385 0.018808749586849912 0.005573910003039829 0.018808604107845205 0.0056987443979985295 0.018808626489230543 C 0.005573910003039829 0.018808604107845205 0.004824903633287635 0.01880846981953317 0.0049497380282463345 0.018808492200918507 C 0.004824903633287635 0.01880846981953317 0.00413831446101479 0.018808346721913803 0.0042007316584941395 0.018808357912606474" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0042007316584941395 0.018808357912606474 C 0.004200705611431071 0.018653456807598428 0.004200366999611171 0.016639742442493822 0.004200419093737309 0.016949544652509915 C 0.004200366999611171 0.016639742442493822 0.004200054434854346 0.014780929182397262 0.004200106528980484 0.015090731392413355 C 0.004200054434854346 0.014780929182397262 0.004199767917160585 0.01307701702730875 0.004199793964223654 0.013231918132316797" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3255756000021541,0.41735798749054864) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007133363590439101 0.005888270588650706 C 0.00717282465526862 0.006051761214623943 0.0077620067443189234 0.008000361479990128 0.00760689636839334 0.007850158100329551 C 0.0077620067443189234 0.008000361479990128 0.009110337412642161 0.007677423898264969 0.008994688101546099 0.00769071114457763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008994688101546099 0.00769071114457763 C 0.00894839089489513 0.007575944230187312 0.008278918414376486 0.006531189849548331 0.008439121621734477 0.006313508171893817 C 0.008278918414376486 0.006531189849548331 0.006958343612543188 0.010635339868476625 0.00707224961325021 0.010302891276431794" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00707224961325021 0.010302891276431794 C 0.00709273462657745 0.010158448430078649 0.007323162604609501 0.008201692062878956 0.0073180697731770935 0.008569577120194046 C 0.007323162604609501 0.008201692062878956 0.007117971408544268 0.005664828377688761 0.007133363590439101 0.005888270588650706" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3255756000021541,0.41735798749054864) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.044970405401427375 0.0468561411210021 C 0.04491501225595333 0.04682646551196803 0.044781383999639233 0.04622404378813113 0.04477889609928857 0.046307421488197505 C 0.044781383999639233 0.04622404378813113 0.0450483410714275 0.045833031742151864 0.04500026020563536 0.04585560872020557 C 0.0450483410714275 0.045833031742151864 0.04541736820796411 0.04600125245690284 0.04535586648879426 0.04603649775155304 C 0.04541736820796411 0.04600125245690284 0.045745593115355504 0.04548491777149101 0.0457382808356736 0.04543266518440323 C 0.045745593115355504 0.04548491777149101 0.04537962422545657 0.04678215179132293 0.04544361384497709 0.04666352879660636 C 0.04537962422545657 0.04678215179132293 0.04491501225595333 0.04682646551196803 0.044970405401427375 0.0468561411210021 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.3266991095567824,0.4173581889230167) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004199793964223654 0.013231918132316795 C 0.0042622111617030035 0.013231929323009465 0.005073634728934549 0.013232074802014172 0.004948800333975849 0.013232052420628833 C 0.005073634728934549 0.013232074802014172 0.005822641098686744 0.013232209090326207 0.005697806703728043 0.013232186708940868 C 0.005822641098686744 0.013232209090326207 0.006509230270959599 0.013232332187945577 0.006446813073480249 0.013232320997252908" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006446813073480249 0.013232320997252908 C 0.006446839120543317 0.013387222102260954 0.006447177732363207 0.015400936467365556 0.006447125638237069 0.015091134257349464 C 0.006447177732363207 0.015400936467365556 0.006447490297120043 0.017259749727462113 0.0064474382029939045 0.01694994751744602 C 0.006447490297120043 0.017259749727462113 0.006447776814813804 0.01896366188255063 0.006447750767750735 0.018808760777542583" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006447750767750735 0.018808760777542583 C 0.006385333570271385 0.018808749586849912 0.005573910003039829 0.018808604107845205 0.0056987443979985295 0.018808626489230543 C 0.005573910003039829 0.018808604107845205 0.004824903633287635 0.01880846981953317 0.0049497380282463345 0.018808492200918507 C 0.004824903633287635 0.01880846981953317 0.00413831446101479 0.018808346721913803 0.0042007316584941395 0.018808357912606474" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0042007316584941395 0.018808357912606474 C 0.004200705611431071 0.018653456807598428 0.004200366999611171 0.016639742442493822 0.004200419093737309 0.016949544652509915 C 0.004200366999611171 0.016639742442493822 0.004200054434854346 0.014780929182397262 0.004200106528980484 0.015090731392413355 C 0.004200054434854346 0.014780929182397262 0.004199767917160585 0.01307701702730875 0.004199793964223654 0.013231918132316797" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3278226191114107,0.4173583903554848) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007379268651273203 0.005906832427513107 C 0.007393867575963674 0.006159022882433222 0.007643405809331167 0.009227343013278771 0.00755445574755885 0.008933117886554482 C 0.007643405809331167 0.009227343013278771 0.008569815728164192 0.00930238591352088 0.008446669392541009 0.00943753394820459 C 0.008569815728164192 0.00930238591352088 0.009081006973578387 0.007134158763862092 0.00903221177503705 0.007311341470349977" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00903221177503705 0.007311341470349977 C 0.009011557128950784 0.007546243044338011 0.008645248031254391 0.010347100913615116 0.008784356022001862 0.010130160358206384 C 0.008645248031254391 0.010347100913615116 0.007244462541406179 0.009896667116675447 0.0073629158860673855 0.00991462813525475" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0073629158860673855 0.00991462813525475 C 0.007342227890907463 0.009776082270897133 0.0071160226745821354 0.00791809478731821 0.007114659944148317 0.008252077762963347 C 0.0071160226745821354 0.00791809478731821 0.007401319376866944 0.005711395316225588 0.007379268651273203 0.005906832427513107" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3278226191114107,0.4173583903554848) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.045123187795067195 0.043567057902355655 C 0.045138441631825905 0.04372786517451441 0.04501095940175679 0.04492566690781824 0.04502855136732543 0.04488822692353732 C 0.04501095940175679 0.04492566690781824 0.044878453907016225 0.04392858871730264 0.044912084208243545 0.04401633771372669 C 0.044878453907016225 0.04392858871730264 0.04459749756314596 0.04377085988981005 0.044624987752597566 0.04383523896644869 C 0.04459749756314596 0.04377085988981005 0.044600578399292864 0.04317073051832829 0.044582201934824255 0.043243788794062994 C 0.044600578399292864 0.04317073051832829 0.04489058748124114 0.04298547874998997 0.0448455053262209 0.042958539657632244 C 0.04489058748124114 0.04298547874998997 0.045138441631825905 0.04372786517451441 0.045123187795067195 0.043567057902355655 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.328946128666039,0.4173585917879528) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004199793964223654 0.013231918132316795 C 0.0042622111617030035 0.013231929323009465 0.005073634728934549 0.013232074802014172 0.004948800333975849 0.013232052420628833 C 0.005073634728934549 0.013232074802014172 0.005822641098686744 0.013232209090326207 0.005697806703728043 0.013232186708940868 C 0.005822641098686744 0.013232209090326207 0.006509230270959599 0.013232332187945577 0.006446813073480249 0.013232320997252908" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006446813073480249 0.013232320997252908 C 0.006446839120543317 0.013387222102260954 0.006447177732363207 0.015400936467365556 0.006447125638237069 0.015091134257349464 C 0.006447177732363207 0.015400936467365556 0.006447490297120043 0.017259749727462113 0.0064474382029939045 0.01694994751744602 C 0.006447490297120043 0.017259749727462113 0.006447776814813804 0.01896366188255063 0.006447750767750735 0.018808760777542583" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006447750767750735 0.018808760777542583 C 0.006385333570271385 0.018808749586849912 0.005573910003039829 0.018808604107845205 0.0056987443979985295 0.018808626489230543 C 0.005573910003039829 0.018808604107845205 0.004824903633287635 0.01880846981953317 0.0049497380282463345 0.018808492200918507 C 0.004824903633287635 0.01880846981953317 0.00413831446101479 0.018808346721913803 0.0042007316584941395 0.018808357912606474" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0042007316584941395 0.018808357912606474 C 0.004200705611431071 0.018653456807598428 0.004200366999611171 0.016639742442493822 0.004200419093737309 0.016949544652509915 C 0.004200366999611171 0.016639742442493822 0.004200054434854346 0.014780929182397262 0.004200106528980484 0.015090731392413355 C 0.004200054434854346 0.014780929182397262 0.004199767917160585 0.01307701702730875 0.004199793964223654 0.013231918132316797" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3300696382206673,0.4173587932204209) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007159218450778857 0.005888275224132712 C 0.007275451055143365 0.005933006260358331 0.00870486144868566 0.006575250274976789 0.008554009703152954 0.006425047658840142 C 0.00870486144868566 0.006575250274976789 0.00900405853833953 0.007796178197683509 0.008969439397171331 0.007690706617772481" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008969439397171331 0.007690706617772481 C 0.008852125599860164 0.007623012121970331 0.007405870800092627 0.007096055134703001 0.007561673829437314 0.006878372668146681 C 0.007405870800092627 0.007096055134703001 0.00706131381300157 0.01058827317880679 0.0070998030450350885 0.01030289621644832" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0070998030450350885 0.01030289621644832 C 0.007136035785297161 0.010186471938322755 0.007539547211991944 0.00853791979624857 0.007534595928179963 0.008905804878941537 C 0.007539547211991944 0.00853791979624857 0.007127936994328761 0.005636814419565309 0.007159218450778854 0.005888275224132712" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3300696382206673,0.4173587932204209) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04505874502826838 0.0467966856990986 C 0.045002673472047026 0.046788095117171975 0.04480692428073522 0.046248094292610405 0.04481405802061365 0.046330574853032686 C 0.04480692428073522 0.046248094292610405 0.04501630244924584 0.045767092592559976 0.04497314014972726 0.04580691897403121 C 0.04501630244924584 0.045767092592559976 0.04538649044376097 0.04579548733225391 0.0453320056148366 0.045852658275377815 C 0.04538649044376097 0.04579548733225391 0.045639867353522406 0.045169284619942206 0.04562695809681964 0.04512086765654434 C 0.045639867353522406 0.045169284619942206 0.045439565606223926 0.046573313339698406 0.045486916695269865 0.04643366183615222 C 0.045439565606223926 0.046573313339698406 0.045002673472047026 0.046788095117171975 0.04505874502826838 0.0467966856990986 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.3311931477752956,0.41735899465288895) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004199793964223654 0.013231918132316795 C 0.0042622111617030035 0.013231929323009465 0.005073634728934549 0.013232074802014172 0.004948800333975849 0.013232052420628833 C 0.005073634728934549 0.013232074802014172 0.005847194875324568 0.013236161066041047 0.005697806703728043 0.013232186708940868 C 0.005847194875324568 0.013236161066041047 0.006828429367251317 0.013283707872238504 0.006741458393134142 0.013279744705830994" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006741458393134142 0.013279744705830994 C 0.0067408213500309505 0.013427790174345228 0.0067325192025910734 0.015362313777434942 0.006733813875895845 0.015056290328001794 C 0.0067325192025910734 0.015362313777434942 0.006724872369216011 0.017264731969823838 0.006725922313476876 0.016952026099028773 C 0.006724872369216011 0.017264731969823838 0.0067208222307061785 0.018963488667418735 0.006721214544765463 0.018808760777542583" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006721214544765463 0.018808760777542583 C 0.006636008699201552 0.018808749586849912 0.005551121354955269 0.018808604107845205 0.0056987443979985295 0.018808626489230543 C 0.005551121354955269 0.018808604107845205 0.004824903633287635 0.01880846981953317 0.0049497380282463345 0.018808492200918507 C 0.004824903633287635 0.01880846981953317 0.00413831446101479 0.018808346721913803 0.0042007316584941395 0.018808357912606474" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0042007316584941395 0.018808357912606474 C 0.004200705611431071 0.018653456807598428 0.004200366999611171 0.016639742442493822 0.004200419093737309 0.016949544652509915 C 0.004200366999611171 0.016639742442493822 0.004200054434854346 0.014780929182397262 0.004200106528980484 0.015090731392413355 C 0.004200054434854346 0.014780929182397262 0.004199767917160585 0.01307701702730875 0.004199793964223654 0.013231918132316797" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33231665732992394,0.41735919608535704) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007244221486655255 0.0059220363821478605 C 0.007301568341320131 0.006131099289599226 0.008071174376917272 0.008624494862408273 0.00793238374263377 0.008430791271564247 C 0.008071174376917272 0.008624494862408273 0.008991152877675908 0.008231120155668835 0.008909709098057283 0.008246479472276174" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008909709098057283 0.008246479472276174 C 0.008824835298662922 0.008211357609758977 0.007754892554290727 0.007997389728994848 0.007891223505324963 0.007825017122069814 C 0.007754892554290727 0.007997389728994848 0.007222280534006576 0.010522445224818794 0.007273737685646452 0.010314950755376565" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007273737685646452 0.010314950755376565 C 0.007280185245875868 0.010126140863536293 0.007348648725150179 0.007683155855524252 0.007351108408399445 0.00804923205329331 C 0.007348648725150179 0.007683155855524252 0.007235314243176572 0.005744770076219073 0.007244221486655255 0.0059220363821478605" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33231665732992394,0.41735919608535704) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04469070794769275 0.04278809806098403 C 0.04479460823169566 0.042765947040780315 0.04566927853878311 0.04312962349475092 0.04565414896646367 0.043088422318864804 C 0.04566927853878311 0.04312962349475092 0.04479894570861297 0.04335008500665461 0.04487226281552604 0.04328251217161742 C 0.04479894570861297 0.04335008500665461 0.04474449040301397 0.04395505268627755 0.04477434368350681 0.043899296339311146 C 0.04474449040301397 0.04395505268627755 0.0444834402725221 0.043906166520380804 0.04451402344961194 0.04395158833521429 C 0.0444834402725221 0.043906166520380804 0.04442206926660213 0.04325727703845682 0.04440734555842873 0.04335423456130934 C 0.04442206926660213 0.04325727703845682 0.04479460823169566 0.042765947040780315 0.04469070794769275 0.04278809806098403 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33231665732992394,0.41735919608535704) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04440783667913565 0.04627491471605244 C 0.0443930803627049 0.046177951907767245 0.044544881586577545 0.04563218830725149 0.04451431368325983 0.04567759915839268 C 0.044544881586577545 0.04563218830725149 0.04480452355241955 0.045785751557393194 0.04477465151894825 0.04572998450235818 C 0.04480452355241955 0.045785751557393194 0.04494611792138022 0.04641440294776985 0.04487277808491547 0.046346803818812905 C 0.04494611792138022 0.04641440294776985 0.0456396138394847 0.04658236980309167 0.045654729556525254 0.04654117404984149 C 0.0456396138394847 0.04658236980309167 0.04458748174064636 0.0468189645799993 0.04469138948042883 0.04684115285781506 C 0.04458748174064636 0.0468189645799993 0.0443930803627049 0.046177951907767245 0.04440783667913565 0.04627491471605244 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M -0.00010312082793667152 0.0036010958419251385 C -0.00010408476645103482 0.0035673524673823526 -0.00011688468628462914 0.003119782037145818 -0.00011468809010903111 0.003196175347411708 C -0.00011688468628462914 0.003119782037145818 -0.00013071263970508258 0.002641726183011354 -0.00012947998204384785 0.002684376118734458" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.00012947998204384785 0.002684376118734458 C 0.0003973660194469033 0.002684376118734458 0.007289137495733258 0.00268437611873446 0.006192672035845166 0.00268437611873446 C 0.007289137495733258 0.00268437611873446 0.01359772499501059 0.002684376118734458 0.01302810553661325 0.002684376118734458" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01302810553661325 0.002684376118734458 C 0.013027337238123032 0.0027302410243758503 0.013017609004339896 0.003311148296697054 0.013018885954730629 0.0032347549864311636 C 0.013017609004339896 0.003311148296697054 0.013012273480023945 0.0036316242465496383 0.01301278213192446 0.00360109584192514" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01301278213192446 0.00360109584192514 C 0.012444439623917851 0.00360109584192514 0.005099680122523405 0.0036010958419251385 0.006192672035845166 0.0036010958419251385 C 0.005099680122523405 0.0036010958419251385 -0.0006277702332518219 0.0036010958419251424 -0.00010312082793666892 0.003601095841925142" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M -0.0005626012593464839 -0.008485982351267466 C -0.0005647569316967715 -0.008523061102321648 -0.0005929809648182139 -0.009007320674183531 -0.0005884693275499353 -0.00893092736391764 C -0.0005929809648182139 -0.009007320674183531 -0.0006190968714838188 -0.009442016633669848 -0.0006167409065658278 -0.00940270207445814" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0006167409065658278 -0.00940270207445814 C -3.427184219841604E-05 -0.00940270207445814 0.007569885216385769 -0.00940270207445814 0.006372887865843113 -0.00940270207445814 C 0.007569885216385769 -0.00940270207445814 0.014361755586121287 -0.009402702074458147 0.013747227299946043 -0.009402702074458147" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013747227299946043 -0.009402702074458147 C 0.013743131753416559 -0.00936566020676291 0.013689629509677923 -0.008881806351849406 0.013698080741592226 -0.008958199662115297 C 0.013689629509677923 -0.008881806351849406 0.013641456831589585 -0.008446630908696809 0.013645812516974404 -0.008485982351267463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013645812516974404 -0.008485982351267463 C 0.013039735462713463 -0.008485982351267463 0.005188853384483038 -0.008485982351267466 0.0063728878658431114 -0.008485982351267466 C 0.005188853384483038 -0.008485982351267466 -0.001140558686445614 -0.008485982351267466 -0.0005626012593464813 -0.008485982351267466" fill="none" stroke="none" stroke-width="0"/>
</g><g id="逆十字">
<g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.09500000000000001,-0.05688059287924617)"><path d="M 0.08927131412744863 0.05387267202227257 C 0.08941728149876682 0.053806714599925885 0.09136507933313259 0.05319131835661684 0.09102292258326691 0.05308118295411234 C 0.09136507933313259 0.05319131835661684 0.09357338450438428 0.05537038967717773 0.0933771951258368 0.055194296852326546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0933771951258368 0.055194296852326546 C 0.09323791836111692 0.05528231020018534 0.09156942435895181 0.05683617213525728 0.09170587394919827 0.056250457026632096 C 0.09156942435895181 0.05683617213525728 0.09181642706071458 0.06455514621656717 0.09173980004287925 0.062222878155828804 C 0.09181642706071458 0.06455514621656717 0.09269919800658404 0.08607224005546457 0.09262539816322213 0.08423767375549258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09262539816322213 0.08423767375549258 C 0.09282978031007727 0.08423767375549258 0.09542837932755624 0.08421052364129136 0.09507798392548386 0.08423767375549258 C 0.09542837932755624 0.08421052364129136 0.0970880303141135 0.08374132291392103 0.09683014298809066 0.08391187238507784 C 0.0970880303141135 0.08374132291392103 0.09828450590856354 0.08204768074465524 0.09817263183775793 0.08219108010161082" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09817263183775793 0.08219108010161082 C 0.0982431323436871 0.08239307668576332 0.09903670870968907 0.08494963761100383 0.09901863790890808 0.08461503911144079 C 0.09903670870968907 0.08494963761100383 0.09833705174198172 0.08633886401177773 0.0983894814471299 0.0862062620963672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0983894814471299 0.0862062620963672 C 0.09842184122411848 0.08633886401177773 0.09870474112146971 0.08813208358085667 0.0987777987709929 0.08779748508129363 C 0.09870474112146971 0.08813208358085667 0.09740737222633988 0.09042344067527608 0.09751278965285165 0.09022144409112358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09751278965285165 0.09022144409112358 C 0.09745590243078824 0.090078044734168 0.09662724251081001 0.08833010233649974 0.09683014298809066 0.08850065180765655 C 0.09662724251081001 0.08833010233649974 0.09472758852341148 0.08814770032304056 0.09507798392548386 0.0881748504372418 C 0.09472758852341148 0.08814770032304056 0.09242101601636699 0.0881748504372418 0.09262539816322213 0.0881748504372418" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09262539816322213 0.0881748504372418 C 0.09264458987049838 0.089765665470591 0.09290125993260091 0.10922159316116664 0.09285569865053714 0.10726463083743229 C 0.09290125993260091 0.10922159316116664 0.09330674551164811 0.11211255896029791 0.09317213354798735 0.11165839832205397 C 0.09330674551164811 0.11211255896029791 0.09457928460333953 0.1128025718442183 0.09447104221446628 0.1127145584963595" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09447104221446628 0.1127145584963595 C 0.0942748528359188 0.11289065132121068 0.0917917905542167 0.1149378077970782 0.09211676967189641 0.1148276723945737 C 0.0917917905542167 0.1149378077970782 0.09044250306317754 0.11397022590406677 0.09057129280230976 0.11403618332641347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09057129280230976 0.11403618332641347 C 0.09044250306317754 0.11410214074876016 0.08874842778729164 0.1147175369920692 0.08902581593272309 0.1148276723945737 C 0.08874842778729164 0.1147175369920692 0.08709403665083308 0.11253846567150833 0.08724263505713231 0.1127145584963595" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08724263505713231 0.1127145584963595 C 0.08736535522545057 0.1126265451485007 0.08886436682005706 0.11120423768381 0.0887152770769513 0.11165839832205394 C 0.08886436682005706 0.11120423768381 0.0890388898419128 0.10530766851369794 0.08903171197440153 0.10726463083743229 C 0.0890388898419128 0.10530766851369794 0.08878221977981025 0.08658403540389259 0.0888014114870865 0.0881748504372418" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0888014114870865 0.0881748504372418 C 0.08869304604746402 0.0881748504372418 0.08731395808703506 0.08820200055144303 0.08750102621161664 0.0881748504372418 C 0.08731395808703506 0.08820200055144303 0.08646010798428963 0.08867120127881337 0.08655659399210751 0.08850065180765655 C 0.08646010798428963 0.08867120127881337 0.08632541079494338 0.09036484344807916 0.08634319411780216 0.09022144409112358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08634319411780216 0.09022144409112358 C 0.0863296083316222 0.09002613834182686 0.08615722916838389 0.08754891341794842 0.08618016468364274 0.08787777509956302 C 0.08615722916838389 0.08754891341794842 0.08605861820561707 0.08614154797943058 0.08606796793469597 0.08627510391174846" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08606796793469597 0.08627510391174846 C 0.08605788812687123 0.08614361081045642 0.08592019740467582 0.08435685137873253 0.08594701024079923 0.084697186696244 C 0.08592019740467582 0.08435685137873253 0.08572948087291642 0.08198223788539138 0.08574621390121509 0.08219108010161082" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08574621390121509 0.08219108010161082 C 0.0857765609833131 0.0823344794585664 0.0862566132455913 0.08408242185623466 0.08611037888639117 0.08391187238507784 C 0.0862566132455913 0.08408242185623466 0.08772527892834125 0.0842648238696938 0.08750102621161664 0.08423767375549258 C 0.08772527892834125 0.0842648238696938 0.088909776926709 0.08423767375549258 0.0888014114870865 0.08423767375549258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0888014114870865 0.08423767375549258 C 0.0887276116437246 0.0824031074555206 0.08778644719933329 0.05989061009509042 0.08791581336674364 0.06222287815582879 C 0.08778644719933329 0.05989061009509042 0.08710858538567218 0.05566474191800691 0.08724901747816222 0.056250457026632096 C 0.08710858538567218 0.05566474191800691 0.08614576248842153 0.05510628350446775 0.08623062825686312 0.055194296852326546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08623062825686312 0.055194296852326546 C 0.08637240663913233 0.05501820402747536 0.08818535933330908 0.05297104755160784 0.08793196884409361 0.05308118295411234 C 0.08818535933330908 0.05297104755160784 0.0893829262343949 0.05393862944461926 0.08927131412744864 0.053872672022272576" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3257121736758048,0.39422929736698265) rotate(0) scale(1,1) translate(-0.08636904695670237,-0.0900144141915395)"><path d="M 0.08493998156969196 0.05886663674036746 C 0.08502155407144404 0.05880354382893042 0.08609851878174274 0.05810952180312295 0.08591885159071691 0.05810952180312295 C 0.08609851878174274 0.05810952180312295 0.0871940825512756 0.058929729651804506 0.08709598786200186 0.05886663674036746" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08709598786200186 0.05886663674036746 C 0.08700870775611073 0.05896211609386213 0.08597986355688923 0.06060557009656452 0.08604862659130837 0.060012388982303454 C 0.08597986355688923 0.06060557009656452 0.08636065146081806 0.06842005263949355 0.08627083144897223 0.0659848101115002 C 0.08636065146081806 0.06842005263949355 0.0871977696738323 0.09117284008545057 0.08712646673345845 0.08923529931822362" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08712646673345845 0.08923529931822362 C 0.08742864020284365 0.08923529931822362 0.09120339248122605 0.08921891923974734 0.0907525483660808 0.08923529931822362 C 0.09120339248122605 0.08921891923974734 0.09276146289128077 0.08893249470100655 0.09253659611520143 0.08903873837650832 C 0.09276146289128077 0.08893249470100655 0.0935271458093522 0.08787051161517682 0.09345094967903292 0.08796037521220232" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09345094967903292 0.08796037521220232 C 0.09346063776662782 0.08806137350427856 0.09353244040893559 0.0893396539668988 0.09356720673017171 0.08917235471711729 C 0.09353244040893559 0.0893396539668988 0.09298929941536836 0.09003426716728578 0.09303375382419939 0.08996796620958052" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09303375382419939 0.08996796620958052 C 0.09306124986094436 0.09003426716728578 0.09336301140789771 0.09093087695182522 0.09336370626513904 0.09076357770204371 C 0.09336301140789771 0.09093087695182522 0.09299722464331713 0.09207655549903494 0.09302541553730342 0.0919755572069587" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09302541553730342 0.0919755572069587 C 0.0929846805854616 0.0918856936099332 0.09234719051759954 0.09079507494595003 0.09253659611520143 0.0908971940426527 C 0.09234719051759954 0.09079507494595003 0.09030170425093556 0.09073787254684951 0.0907525483660808 0.09075012804652667 C 0.09030170425093556 0.09073787254684951 0.08682429326407325 0.09075012804652667 0.08712646673345845 0.09075012804652667" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08712646673345845 0.09075012804652667 C 0.08714815534372275 0.09243983094207475 0.08740799439790786 0.11307899291740821 0.08738673005663011 0.11102656279310359 C 0.08740799439790786 0.11307899291740821 0.0874485642366249 0.1158409161820618 0.08738163882879146 0.115379289538182 C 0.0874485642366249 0.1158409161820618 0.08825718462745136 0.11666498193478451 0.08818983495063136 0.11656608251966125" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08818983495063136 0.11656608251966125 C 0.08809174026135762 0.11662917543109828 0.08685020912050656 0.11732319745690575 0.08701269867934641 0.11732319745690575 C 0.08685020912050656 0.11732319745690575 0.08617556537498697 0.11650298960822421 0.08623996024455308 0.11656608251966125" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08623996024455308 0.11656608251966125 C 0.08617556537498697 0.11662917543109828 0.08533576662676652 0.11732319745690575 0.08546722180975974 0.11732319745690575 C 0.08533576662676652 0.11732319745690575 0.08459543773520728 0.11650298960822421 0.08466249804863439 0.11656608251966125" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08466249804863439 0.11656608251966125 C 0.08473867420775001 0.11646718310453798 0.08567457174170193 0.11491766289430218 0.08557661195802187 0.11537928953818198 C 0.08567457174170193 0.11491766289430218 0.08584456344461132 0.10897413266879899 0.0858380154527952 0.11102656279310359 C 0.08584456344461132 0.10897413266879899 0.08563995222706697 0.08906042515097859 0.0856551878598153 0.09075012804652667" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0856551878598153 0.09075012804652667 C 0.08544855475918182 0.09075012804652667 0.08289025486662102 0.09076238354620383 0.0831755906522136 0.09075012804652667 C 0.08289025486662102 0.09076238354620383 0.08212940747418447 0.09099931313935537 0.08223115843270447 0.0908971940426527 C 0.08212940747418447 0.09099931313935537 0.08193153087641268 0.0920654208039842 0.08195457914997359 0.0919755572069587" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08195457914997359 0.0919755572069587 C 0.08193668560877833 0.09187455891488246 0.0817289510222506 0.0905962784522622 0.08173985665563054 0.09076357770204371 C 0.0817289510222506 0.0905962784522622 0.08183069945722965 0.08990166525187525 0.08182371154941433 0.08996796620958052" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08182371154941433 0.08996796620958052 C 0.08180657341212569 0.08990166525187525 0.08159969927599717 0.08900728574562103 0.0816180539019506 0.08917235471711729 C 0.08159969927599717 0.08900728574562103 0.08160223954930841 0.08788837053783444 0.0816034560379732 0.08798713855162543" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0816034560379732 0.08798713855162543 C 0.08163838451987472 0.08807477187036568 0.08215360903864478 0.08914275177372483 0.08202259782079142 0.08903873837650832 C 0.08215360903864478 0.08914275177372483 0.08347830648879892 0.0892516793966999 0.0831755906522136 0.08923529931822362 C 0.08347830648879892 0.0892516793966999 0.08586182096044877 0.08923529931822362 0.0856551878598153 0.08923529931822362" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0856551878598153 0.08923529931822362 C 0.08557743194192546 0.08729775855099667 0.0846044845001976 0.06354956758350683 0.08472211684513731 0.06598481011150018 C 0.0846044845001976 0.06354956758350683 0.08411644318759777 0.05941920786804238 0.08424359972053877 0.06001238898230344 C 0.08411644318759777 0.05941920786804238 0.0831089583439542 0.058771157386872795 0.08319623844984532 0.05886663674036746" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08319623844984532 0.05886663674036746 C 0.08329433313911906 0.05880354382893042 0.08451868664778414 0.05810952180312295 0.08437337472113025 0.05810952180312295 C 0.08451868664778414 0.05810952180312295 0.0849871988070721 0.058929729651804506 0.08493998156969196 0.05886663674036746" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M -0.005257565742785058 0.00671566711314341 C -0.0049882700026991095 0.008213493239510386 -0.0032142700732394223 0.01627635825087187 -0.003641791302269366 0.015702623871345266 C -0.0032142700732394223 0.01627635825087187 -0.002306727423923068 0.012527036677263856 -0.002692438368605395 0.010158073390303026 C -0.002306727423923068 0.012527036677263856 -0.001100040178437071 0.03320945862691145 -0.001327525634175403 0.02991640359311025" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.001327525634175403 0.02991640359311025 C -0.0016638890244237599 0.027964555068539076 -0.0037436368782756565 0.016617738672157652 -0.003345705975665544 0.0182053124456832 C -0.0037436368782756565 0.016617738672157652 -0.00391241486449611 0.019792936405731584 -0.003715111049836077 0.020390960951956964 C -0.00391241486449611 0.019792936405731584 -0.004665265165924013 0.013654865871059914 -0.004529528863625737 0.014617165168330922" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.004529528863625737 0.014617165168330922 C -0.004547117715800538 0.014430975609135196 -0.004777665892266483 0.011982082610273156 -0.0047405950897233505 0.012382890457982207 C -0.004777665892266483 0.011982082610273156 -0.005017459381898476 0.00933520238375241 -0.004974378494143334 0.00980747099582231 C -0.005017459381898476 0.00933520238375241 -0.005281164680171868 0.006458016789586838 -0.005257565742785058 0.006715667113143413" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.018653519419487022 0.0058976641842070155 C 0.018641325054929866 0.006061921876509986 0.01846135627486758 0.00827067759022656 0.018507187044801147 0.007868756491842658 C 0.01846135627486758 0.00827067759022656 0.018020670201045523 0.011205077611414607 0.018103550180284186 0.010720717364813823 C 0.018020670201045523 0.011205077611414607 0.017463383720074915 0.013927776291571933 0.017512627293937166 0.013681079451052078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017512627293937166 0.013681079451052078 C 0.016494089030274793 0.014883154406323932 0.00995072818447921 0.0216018175602129 0.011401397711962935 0.020893529182683203 C 0.00995072818447921 0.0216018175602129 0.007968815397241664 0.019459335564691 0.008808610129034816 0.01793080971623026 C 0.007968815397241664 0.019459335564691 0.0059549658532322275 0.032086996699650525 0.006362629321204026 0.030064684273447627" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006362629321204026 0.030064684273447627 C 0.006398729078969129 0.026736286573017957 0.007364322327802824 0.007744781431095523 0.006579227867794641 0.010094298070869602 C 0.007364322327802824 0.007744781431095523 0.013085578006535188 0.015268145453692721 0.011073196081253124 0.015967584434803152 C 0.013085578006535188 0.015268145453692721 0.019916906642526006 0.0042193441424409886 0.018653519419487022 0.005897664184207012" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="虫性">
<g id="刺">
<g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.015096514070287392,-0.015096514070287392)"><path d="M -0.0020320466799644207 -0.0024433793047799455 C -0.0018182339120807554 -0.002221465400115349 0.0008545565444447393 0.0005135164318339431 0.0005337065346395645 0.00021958755119521071 C 0.0008545565444447393 0.0005135164318339431 0.0019251906796191867 0.0011557822388589785 0.0018181534376976772 0.0010837672628848426" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0018181534376976772 0.0010837672628848426 C 0.0018398208121034345 0.0013182618570347538 0.0021224654537749165 0.004377868289708164 0.0020781619305667645 0.003897702392683777 C 0.0021224654537749165 0.004377868289708164 0.002372431864997896 0.007091429330051963 0.0023497957161955014 0.006845758027177487" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0023497957161955014 0.006845758027177487 C 0.002138574651052792 0.006562563877352195 -0.0005500105985303382 0.0026733334516108637 -0.00018485706551701135 0.0034474282292739824 C -0.0005500105985303382 0.0026733334516108637 -0.0021859791478350383 -0.002934279932617765 -0.0020320466799644207 -0.002443379304779938" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.015096514070287392,-0.015096514070287392)"><path d="M -0.003456582108903283 0.01012152007759779 C -0.0031463047523694328 0.01026080965967075 0.0007910403855714603 0.011958283048453994 0.00026674616950291984 0.011792995062473319 C 0.0007910403855714603 0.011958283048453994 0.003048965343453893 0.012130974313273604 0.0028349484839192028 0.01210497590936589" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0028349484839192028 0.01210497590936589 C 0.0028551800395325276 0.012323001981352211 0.0031189391479501984 0.015168283253914637 0.0030777271512791005 0.014721288773201753 C 0.0031189391479501984 0.015168283253914637 0.0033504728850301518 0.017697878086647058 0.0033294924439723787 0.017468909677920495" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0033294924439723787 0.017468909677920495 C 0.002995796060678452 0.017265957664529475 -0.0012403703682943796 0.014421203050534678 -0.0006748641555547414 0.015033485517228235 C -0.0012403703682943796 0.014421203050534678 -0.003688391938348992 0.009712189624295257 -0.00345658210890328 0.010121520077597795" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.015096514070287392,-0.015096514070287392)"><path d="M -0.0020733113933096574 0.0217169813992309 C -0.001808588562197509 0.021761179421562266 0.0015881449974542352 0.022268343175827328 0.001103362580036124 0.022247357667207292 C 0.0015881449974542352 0.022268343175827328 0.003964137202013638 0.02194559498896002 0.003744077615707675 0.02196880750267135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003744077615707675 0.02196880750267135 C 0.003762357572062727 0.02216730459521886 0.004001482850514399 0.024763861040920283 0.003963437091968296 0.02435077261324147 C 0.004001482850514399 0.024763861040920283 0.004220392520451964 0.027140459969948395 0.004200626718260913 0.026925868634817093" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004200626718260913 0.026925868634817093 C 0.003921410213578961 0.026802882918620267 0.00032720048611327055 0.02501596610415634 0.0008500286620774845 0.025450040040455188 C 0.00032720048611327055 0.02501596610415634 -0.002316923064591916 0.021405893179128884 -0.0020733113933096544 0.02171698139923091" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.05789150479488091,-0.05789150479488089)"><path d="M 0.059715695309569924 0.050560793188302 C 0.05909767299806382 0.051343178931272895 0.05117972169990994 0.060129136143039684 0.05229942757149671 0.05994942210395273 C 0.05117972169990994 0.060129136143039684 0.04577754129044809 0.052114689953461524 0.04627922485052875 0.05271736165734546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04627922485052875 0.05271736165734546 C 0.04616711781406369 0.05222043938694031 0.04493565799974986 0.045783150735236616 0.04493394041294804 0.04675429441248361 C 0.04493565799974986 0.045783150735236616 0.0464136605154175 0.04058941612353966 0.04629983589215062 0.0410636375303815" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04629983589215062 0.0410636375303815 C 0.046681367222570394 0.040834863052962814 0.05168284429842403 0.038178117600306725 0.05087821185718793 0.03831834380135727 C 0.05168284429842403 0.038178117600306725 0.05637852629780008 0.03946947139414315 0.055955425186983765 0.039380923117775" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.055955425186983765 0.039380923117775 C 0.056220902311641355 0.03975124416040223 0.0594545065264237 0.04475643146851231 0.05914115068287485 0.04382477562930173 C 0.0594545065264237 0.04475643146851231 0.05976357402846118 0.05112212798488536 0.059715695309569924 0.050560793188302" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399134)"><path d="M 0.004436274428104821 0.018538349575312533 C 0.004774185800499957 0.01871271265938947 0.00943301781917568 0.020585708174205578 0.008491210896846459 0.020630706584235783 C 0.00943301781917568 0.020585708174205578 0.01649973005247034 0.017855264294035934 0.01573795749605548 0.017998368654950053 C 0.01649973005247034 0.017855264294035934 0.0177903585803056 0.018989711386459353 0.017632481573824823 0.01891345425326633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="竜性">
<g id="鱗">
<g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.07046822817445883 0.021426992821749695 C 0.07115018315179467 0.02187090724665036 0.08019750562497101 0.027616453085686644 0.07865168790248887 0.02675396592055764 C 0.08019750562497101 0.027616453085686644 0.08988190358939069 0.032195411543526044 0.08901804084424439 0.03177683880329771" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08901804084424439 0.03177683880329771 C 0.08913657879204931 0.032277676902212026 0.09067138331673776 0.038877890234883986 0.09044049621790336 0.0377868959902695 C 0.09067138331673776 0.038877890234883986 0.09190103518128667 0.04545892588437167 0.09178868603025718 0.0448687697386715" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09178868603025718 0.0448687697386715 C 0.09046193614051451 0.0445082543200909 0.07378674256667156 0.040661211204255636 0.07586768735334512 0.040542584715704294 C 0.07378674256667156 0.040661211204255636 0.06606315369324357 0.04677142950841956 0.06681734859017446 0.04629228760128762" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06681734859017446 0.04629228760128762 C 0.0667504447468236 0.04568428875761924 0.06589749391106184 0.037952479310746225 0.06601450246996408 0.0389963014772671 C 0.06589749391106184 0.037952479310746225 0.06536314116779611 0.03333059828018461 0.06541324588334749 0.033766421603037104" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06541324588334749 0.033766421603037104 C 0.06561293789227708 0.033337702116712 0.06823079851476183 0.02759350203536185 0.06780954999050255 0.028621787767135802 C 0.06823079851476183 0.02759350203536185 0.0706897846897884 0.02082742657630086 0.07046822817445872 0.021426992821749702" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3282360554290547,0.35717251620912926) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.07206457876980893 0.04241208943068075 C 0.07296851131484441 0.042918054897641944 0.08477260557939181 0.04934658156290541 0.08291176931023479 0.048483675034215114 C 0.08477260557939181 0.04934658156290541 0.09535151772381475 0.05312390883669339 0.09439461399969322 0.05276696777496429" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09439461399969322 0.05276696777496429 C 0.09439011082155971 0.05334208793233357 0.09423400796650086 0.0608029159639255 0.09434057586209109 0.05966840966339564 C 0.09423400796650086 0.0608029159639255 0.09301373453515377 0.06694042952448316 0.09311579925261049 0.06638104338132259" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09311579925261049 0.06638104338132259 C 0.09181571016809549 0.06592934465050007 0.07554100363837882 0.06101795274278538 0.07751473023843046 0.06096065861145243 C 0.07554100363837882 0.06101795274278538 0.06875744253645422 0.06757756581947344 0.06943108005199085 0.06706857295731798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06943108005199085 0.06706857295731798 C 0.06937053893548503 0.06647090499063078 0.06858571368714295 0.05884727751004585 0.068704586653921 0.05989655735707158 C 0.06858571368714295 0.05884727751004585 0.06794627260038197 0.05402560291267074 0.0680046044506542 0.054477214793009265" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0680046044506542 0.054477214793009265 C 0.06817438132967811 0.054025032550400226 0.07038025819220399 0.04804560076817337 0.0700419269989411 0.04905102788170075 C 0.07038025819220399 0.04804560076817337 0.07223313308404791 0.041858844559762416 0.07206457876980893 0.04241208943068075" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3284846950566389,0.3685960712701337) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.07245681311990801 0.04427382560187617 C 0.07335200781654656 0.0448050439090659 0.08495875330555393 0.051537073900801866 0.08319914947957066 0.05064844528815293 C 0.08495875330555393 0.051537073900801866 0.09443646816105186 0.05529477925912263 0.09357205903170715 0.05493736895366342" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09357205903170715 0.05493736895366342 C 0.09347130348619416 0.055276432429524174 0.09205860246526851 0.06001211698403204 0.09236299248555133 0.05900613066399249 C 0.09205860246526851 0.06001211698403204 0.08971574431354351 0.0676761276383168 0.08991937878831334 0.06700920479413801" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08991937878831334 0.06700920479413801 C 0.08888751703347356 0.06659592462332202 0.07592134982548254 0.06208911583340851 0.07753703773023593 0.062049842744346106 C 0.07592134982548254 0.06208911583340851 0.06994729778135907 0.0679330351227652 0.07053112393127267 0.06748048186288681" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07053112393127267 0.06748048186288681 C 0.07046426940237283 0.06693406218695502 0.069584323258192 0.059984652259350325 0.0697288695844746 0.06092344575170526 C 0.069584323258192 0.059984652259350325 0.06871887621849858 0.05582258613820445 0.06879656801588135 0.05621495995462759" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06879656801588135 0.05621495995462759 C 0.06893640895098492 0.05581167830967903 0.07077967966245968 0.05038048568584893 0.07047465923712412 0.05137558021524488 C 0.07077967966245968 0.05038048568584893 0.07262199261014 0.043682012717428775 0.07245681311990801 0.04427382560187617" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.327959443693051,0.3817441445645409) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.07426081123495877 0.044442741673778804 C 0.0749271061947133 0.04487963589968741 0.08364609880382776 0.050470005983700314 0.08225635075201312 0.04968547238468203 C 0.08364609880382776 0.050470005983700314 0.09166124094879452 0.05420478423510789 0.09093778785673441 0.05385714486199821" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09093778785673441 0.05385714486199821 C 0.09082287529036252 0.054228881859522834 0.08932741681603744 0.0592819187307075 0.08955883706027178 0.058317988832293687 C 0.08932741681603744 0.0592819187307075 0.08804423724805988 0.06601649654385316 0.08816074492592232 0.06542430364296398" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08816074492592232 0.06542430364296398 C 0.08733637929527283 0.06516104865814033 0.0769479785177173 0.062355514090073054 0.07826835735812843 0.06226524382508032 C 0.0769479785177173 0.062355514090073054 0.07182018563122725 0.06686107207269314 0.07231619884098887 0.06650754682287677" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07231619884098887 0.06650754682287677 C 0.07225895187157083 0.06591839539982164 0.07149138250736733 0.058441989917311615 0.07162923520797233 0.05943772974621521 C 0.07149138250736733 0.058441989917311615 0.07058136070254195 0.05415208047018519 0.0706619664337289 0.05455866887603365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0706619664337289 0.05455866887603365 C 0.0708006114642328 0.05420360288116066 0.07262561053321152 0.04945488300403654 0.07232570679977571 0.05029787693755778 C 0.07262561053321152 0.04945488300403654 0.07442206993789069 0.043954813735130556 0.07426081123495877 0.044442741673778804" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32777026163600076,0.39450258673890404) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.07538643042738799 0.044367729427802954 C 0.07589165239898893 0.04471897726165688 0.08257723948954887 0.04927011276065755 0.08144909408659934 0.04858270343405004 C 0.08257723948954887 0.04927011276065755 0.089547098694131 0.0529528028398467 0.0889241752627824 0.05261664134709311" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0889241752627824 0.05261664134709311 C 0.08883854974124576 0.05302021986701391 0.08776481681408284 0.05846039228530665 0.08789666900434276 0.057459583586142754 C 0.08776481681408284 0.05846039228530665 0.08729572231094002 0.06522357591630296 0.0873419489796633 0.06462634573705986" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0873419489796633 0.06462634573705986 C 0.08662871412965144 0.06436026811264621 0.07763252763674051 0.061493492272305196 0.07878313077952102 0.06143341424409613 C 0.07763252763674051 0.061493492272305196 0.07309734297352855 0.06567343772819136 0.0735347112662972 0.06534728207556864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0735347112662972 0.06534728207556864 C 0.07349631076396207 0.06473632571112146 0.07296237227934736 0.05703350129068517 0.07307390523827571 0.05801580570220253 C 0.07296237227934736 0.05703350129068517 0.07212318330256383 0.053188281090290175 0.07219631575915705 0.05355962913736036" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07219631575915705 0.05355962913736036 C 0.07230794484319454 0.05328777726904566 0.07380170765662614 0.04953141507512093 0.0735358647676069 0.05029740671758405 C 0.07380170765662614 0.04953141507512093 0.07554064423236963 0.04387358965365453 0.07538643042738788 0.044367729427802954" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32792038270446877,0.4080965589006742) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.07618315445965519 0.04196869002359239 C 0.07661091119377535 0.042294335405409667 0.08227323626970018 0.046521246386907564 0.08131623526909712 0.04587643460539975 C 0.08227323626970018 0.046521246386907564 0.0881964107333748 0.050025597801376616 0.08766716646689189 0.04970643140168609" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08766716646689189 0.04970643140168609 C 0.08761991418574436 0.05009850689081746 0.08704028589289314 0.05529949909775342 0.08710013909312146 0.05441133727126252 C 0.08704028589289314 0.05529949909775342 0.08693632714507135 0.060860459656936344 0.08694892806415212 0.06036437331957682" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08694892806415212 0.06036437331957682 C 0.08623805403215376 0.060184914985105885 0.07731326690705644 0.058195288965821976 0.07841843968017177 0.0582108733059256 C 0.07731326690705644 0.058195288965821976 0.07329255604565116 0.060341235232700595 0.07368685478676813 0.06017736123833329" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07368685478676813 0.06017736123833329 C 0.07368157036776303 0.05972492703837651 0.07356418340189012 0.05391183985594894 0.07362344175870683 0.054748150838851886 C 0.07356418340189012 0.05391183985594894 0.07292178056715609 0.04975775266055174 0.07297575450496768 0.050141629443497905" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07297575450496768 0.050141629443497905 C 0.07308559522609373 0.049892803072551416 0.07456112648803753 0.04647463470714793 0.07429384315848024 0.04715571299214006 C 0.07456112648803753 0.04647463470714793 0.07634059706808644 0.04153643810954675 0.07618315445965519 0.04196869002359239" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3282387153356572,0.41778789411556533) rotate(0) scale(1,1) translate(-0.08031939707113335,-0.05282322960621616)"><path d="M 0.07636849635559911 0.04287393874408829 C 0.07676815339648943 0.04316773358366797 0.08205077854811427 0.04696970248149594 0.08116438084628297 0.0463994768190444 C 0.08205077854811427 0.04696970248149594 0.0874920094385157 0.049993077516378714 0.08700526877757472 0.049716646693506845" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08700526877757472 0.049716646693506845 C 0.0869869350618798 0.04989784209819616 0.08674884825251569 0.05251033577500541 0.08678526418923553 0.051890991549778595 C 0.08674884825251569 0.05251033577500541 0.0865501953159118 0.05758692621676611 0.0865682775369367 0.05714877739622861" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0865682775369367 0.05714877739622861 C 0.08582960481175968 0.056830365637233315 0.07661055873356566 0.05325186294077085 0.07770420483481247 0.05332783628828503 C 0.07661055873356566 0.05325186294077085 0.07308955094590525 0.05647953563753954 0.07344452432197503 0.05623709722605842" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07344452432197503 0.05623709722605842 C 0.07344404671384722 0.05596800240989555 0.07341099919179653 0.05246539255395746 0.07343879302444138 0.05300795943210396 C 0.07341099919179653 0.05246539255395746 0.07308368210571976 0.04945282262631688 0.0731109983302368 0.049726294688300504" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0731109983302368 0.049726294688300504 C 0.07322625376008907 0.04951311323749514 0.07476552165724408 0.04659708761661841 0.0744940634884639 0.047168117278636096 C 0.07476552165724408 0.04659708761661841 0.07652469909452693 0.04251609053287598 0.076368496355599 0.0428739387440883" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="刺">
<g transform="translate(0.3236599330365669,0.3504334528398812) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.019319649019600274 0.017580587605002734 C 0.01890278190856314 0.01580712329033432 0.01706517685744942 0.0032932739937195765 0.0159847121313032 0.003392873087655405 C 0.01706517685744942 0.0032932739937195765 0.029460698665953397 0.018457660074248695 0.027963366828770042 0.016783794853516106" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027963366828770042 0.016783794853516106 C 0.02839593608026536 0.01723486031847524 0.03349421419227677 0.023224644786927158 0.03315419784671386 0.022196580433025734 C 0.03349421419227677 0.023224644786927158 0.031951010069592584 0.029697565989275487 0.03204356297552499 0.029120567100333197" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03204356297552499 0.029120567100333197 C 0.031724531429869626 0.02963226327868543 0.027532397748699696 0.03533720123482446 0.02821518442766064 0.03526092124056002 C 0.027532397748699696 0.03533720123482446 0.023486367694688075 0.02960051084741869 0.023850122827993658 0.030035927031506485" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023850122827993658 0.030035927031506485 C 0.02368650028454044 0.0295215144709763 0.021509112822522238 0.02282503135293558 0.02188665230655502 0.023862976305144227 C 0.021509112822522238 0.02282503135293558 0.01910573207902071 0.017057055213324276 0.019319649019600274 0.017580587605002734" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3235918116763663,0.3633265447956937) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.01968700940504794 0.01859028977091209 C 0.01928213347973232 0.016992109030431003 0.017483733419861626 0.0057124651894106 0.01644800200252296 0.0058048438470633965 C 0.017483733419861626 0.0057124651894106 0.029413468086411557 0.019357062592518008 0.02797286074375727 0.017851260509689718" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02797286074375727 0.017851260509689718 C 0.028357676619399804 0.01825432508973284 0.03289216951177105 0.023613795726043465 0.03259065125146768 0.022688035470207184 C 0.03289216951177105 0.023613795726043465 0.03150778225205854 0.029483079255518244 0.0315910798673977 0.028960383579725087" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0315910798673977 0.028960383579725087 C 0.03130600791533004 0.029465591402666982 0.027555708431520852 0.035091529449865835 0.028170216442585702 0.035022877455027836 C 0.027555708431520852 0.035091529449865835 0.023887547675622317 0.029347651689677144 0.0242169837346195 0.029784207517781044" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0242169837346195 0.029784207517781044 C 0.024069723445511605 0.029321236213303875 0.0220723624045271 0.02329572538514927 0.02244986026532473 0.024228551864055016 C 0.0220723624045271 0.02329572538514927 0.01945677183335821 0.018120434596483513 0.01968700940504794 0.01859028977091209" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3245093273677969,0.3757048687245336) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.019809835577375964 0.01964923124164293 C 0.019388821771055716 0.01822370144173386 0.017417187632228253 0.008138453964416651 0.01644172512681398 0.008244992842370374 C 0.017417187632228253 0.008138453964416651 0.029010011932424664 0.020115911139968485 0.027613535620690143 0.01879692021801314" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027613535620690143 0.01879692021801314 C 0.02798602926194481 0.01915803895015125 0.03238098510319555 0.02396528651976754 0.03208345931574613 0.023130345003670488 C 0.03238098510319555 0.02396528651976754 0.031108877216277905 0.02929004119513673 0.031183845070083153 0.028816218411177787" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031183845070083153 0.028816218411177787 C 0.03092933675224441 0.02931558671425038 0.027576688046059887 0.034870424843403094 0.028129745256018253 0.034808638048048894 C 0.027576688046059887 0.034870424843403094 0.024248609658463136 0.02912007844770976 0.02454715855058276 0.029557659955428153" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02454715855058276 0.029557659955428153 C 0.02439515303326249 0.02914974160302261 0.022328315428305625 0.023836937333746196 0.022723092342739525 0.02466263972656163 C 0.022328315428305625 0.023836937333746196 0.019567064180262335 0.01923144720123304 0.019809835577375964 0.01964923124164293" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32433188591856,0.38808065661856156) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.02099680401894786 0.019775346584683738 C 0.02067063485244942 0.018480785326591823 0.019250470665735292 0.009407747285766759 0.01838745068696033 0.009418856519948417 C 0.019250470665735292 0.009407747285766759 0.029090152994420977 0.02096992473514072 0.027900963849147573 0.019686472711230463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027900963849147573 0.019686472711230463 C 0.028211465742851667 0.020006635283943548 0.03187001739887609 0.024278423337808698 0.03162698657359672 0.02352842358378747 C 0.03187001739887609 0.024278423337808698 0.030749862684075313 0.029116306940793365 0.030817333752500037 0.02868646975948522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030817333752500037 0.02868646975948522 C 0.030590332705467328 0.02918058249467544 0.02759556969914502 0.03467143069758663 0.028093321188107548 0.034615822581767854 C 0.02759556969914502 0.03467143069758663 0.024573565443019876 0.028915262529939104 0.024844315884949696 0.029353767149310546" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024844315884949696 0.029353767149310546 C 0.0247250350507723 0.028978760392684037 0.023092319885987447 0.024055484356073555 0.023412945874820932 0.024853686069792456 C 0.023092319885987447 0.024055484356073555 0.020795458864291773 0.019352151627591345 0.02099680401894786 0.019775346584683738" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32491914675252115,0.40008216484055414) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.021746385964237686 0.02105692639099589 C 0.021464910499853086 0.019897323101116842 0.02025335575252292 0.011707341311332843 0.019494582249160893 0.01178010007196351 C 0.02025335575252292 0.011707341311332843 0.028856822958880514 0.021561700835198937 0.02781657399113389 0.020474856305950556" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02781657399113389 0.020474856305950556 C 0.028099872917344587 0.02075917613927907 0.031438736070290706 0.024561264278143695 0.03121616110566226 0.02388669430589275 C 0.031438736070290706 0.024561264278143695 0.030426749605092996 0.028959946111884342 0.030487473566675246 0.02856969597296191" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030487473566675246 0.02856969597296191 C 0.030285229063367967 0.029059078697057993 0.02761256318692164 0.03449233596635179 0.028060539526987918 0.03444228866211489 C 0.02761256318692164 0.03449233596635179 0.02486602564912094 0.02873092820394552 0.02511175748587994 0.0291702636238047" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02511175748587994 0.0291702636238047 C 0.02500440473512028 0.028832757542840846 0.023543076849960525 0.024444079216171026 0.023823524476764047 0.025120190652238427 C 0.023543076849960525 0.024444079216171026 0.021573291088193818 0.020718321035892346 0.021746385964237683 0.021056926390995892" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3250183792101122,0.41167022498269557) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.02269925703040584 0.02175250489461216 C 0.022489063849723764 0.020705872098077963 0.021642451207848874 0.01330903636249219 0.021017711584949212 0.013379442522338586 C 0.021642451207848874 0.01330903636249219 0.028532106817184873 0.022165482252528797 0.027697174013603134 0.021189255615840997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027697174013603134 0.021189255615840997 C 0.02795961102784631 0.021440912477503207 0.0310542036333404 0.024815416618225 0.03084641818452125 0.024209137955787503 C 0.0310542036333404 0.024815416618225 0.03013594783400891 0.02881922136586622 0.030190599399432937 0.028464599565090933" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030190599399432937 0.028464599565090933 C 0.029977943368026033 0.028947961227429066 0.027235548316490433 0.03430998208696176 0.02763872702255008 0.03426493951314855 C 0.027235548316490433 0.03430998208696176 0.02516193225206441 0.028566791362324512 0.025352454926717154 0.029005110450849438" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025352454926717154 0.029005110450849438 C 0.02527466828348611 0.028702371071803345 0.024197915383252024 0.02476785410594321 0.024419015207944633 0.025372237902296316 C 0.024197915383252024 0.02476785410594321 0.022555943848944274 0.02145086047730515 0.02269925703040584 0.02175250489461216" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紋柄">
<g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.0031561309999088676 0.005875771615765406 C 0.0033126744271511324 0.006176599420483398 0.0017011756912264264 0.009184839270591607 0.001957596955502551 0.009207982809190815 C 0.0017011756912264264 0.009184839270591607 0.00017895366562923083 0.005320364886456124 7.907582859537112E-05 0.005598049152574908 C 0.00017895366562923083 0.005320364886456124 0.0033126744271511324 0.006176599420483398 0.0031561309999088676 0.005875771615765406 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.008568044653470141 0.005528844420588244 C 0.00878554921724363 0.005656367675002654 0.00912057519016259 0.009178573359716592 0.009278846284669467 0.009015538753089252 C 0.00912057519016259 0.009178573359716592 0.00660955805012099 0.007194701839074579 0.0066687915193876 0.00748525970011633 C 0.00660955805012099 0.007194701839074579 0.00878554921724363 0.005656367675002654 0.008568044653470141 0.005528844420588244 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.005994836397413973 0.01147838120553079 C 0.006123874533643069 0.011652085564716932 0.00545369570349102 0.01396364694533632 0.005614434036465797 0.013932815143061564 C 0.00545369570349102 0.01396364694533632 0.004097676598462333 0.011643826671366951 0.004065976401716652 0.01184836283282785 C 0.004097676598462333 0.011643826671366951 0.006123874533643069 0.011652085564716932 0.005994836397413973 0.01147838120553079 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.0074001738745732544 0.016834769504592114 C 0.007510448714465708 0.01704478656960433 0.006469719413801416 0.019847676148324674 0.006643084993761515 0.019809776004971906 C 0.006469719413801416 0.019847676148324674 0.00538287765511971 0.017041654016460326 0.0053197869150520645 0.017289571224825308 C 0.00538287765511971 0.017041654016460326 0.007510448714465708 0.01704478656960433 0.0074001738745732544 0.016834769504592114 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.03957005100435227 0.056673699316945436 C 0.03958692586154178 0.056255955999128866 0.03979860516744507 0.051177606725080906 0.039772549290626354 0.05166077950314658 C 0.03979860516744507 0.051177606725080906 0.0398919025458061 0.0508101965199083 0.03988272152617689 0.0508756259801574" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03988272152617689 0.0508756259801574 C 0.03986392887800212 0.05080186012617801 0.03953591129348927 0.04944253210877792 0.03965720974807971 0.04999043573240474 C 0.03953591129348927 0.04944253210877792 0.03832463426467588 0.04382664472698815 0.03842714007109156 0.04430078249663558" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03842714007109156 0.04430078249663558 C 0.03854964815589415 0.044684480566677204 0.04004224194732724 0.049345875168636553 0.03989723708872267 0.04890515933713513 C 0.04004224194732724 0.049345875168636553 0.04018969514814832 0.04964639023611244 0.04016719837434635 0.04958937247465265" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04016719837434635 0.04958937247465265 C 0.04018260072246306 0.04954364897766187 0.04046485009487448 0.04868363589755082 0.040352026551746946 0.04904069051076327 C 0.04046485009487448 0.04868363589755082 0.041618502086887554 0.04499338599988164 0.04152108089187674 0.0453047171161033" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04152108089187674 0.0453047171161033 C 0.04145725487069846 0.04572246043391987 0.04068216159692979 0.050800809707967826 0.04075516863773729 0.050317636929902154 C 0.04068216159692979 0.050800809707967826 0.04063581538255753 0.05116821991314041 0.040644996402186745 0.05110279045289132" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.040644996402186745 0.05110279045289132 C 0.04066378905036151 0.05117655630687071 0.04101471246957701 0.05253588432427081 0.040870508180283927 0.05198798070064399 C 0.04101471246957701 0.05253588432427081 0.04250085951482206 0.058151771706060555 0.042375447873703745 0.05767763393641313" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.042375447873703745 0.05767763393641313 C 0.04223003395419851 0.0572939358663715 0.04046257014633376 0.05263254126441219 0.040630480839640964 0.05307325709591361 C 0.04046257014633376 0.05263254126441219 0.04033802278021533 0.05233202619693628 0.0403605195540173 0.052389043958396074" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0403605195540173 0.052389043958396074 C 0.04034511720590058 0.05243476745538685 0.04010981899747793 0.053294780535497896 0.04017569137661668 0.05293772592228545 C 0.04010981899747793 0.053294780535497896 0.039519580973330234 0.056985030433167105 0.03957005100435227 0.056673699316945436" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.05546611285121587 0.031125567118040227 C 0.05518741469638317 0.030840696838039035 0.051799374400496874 0.027380690277583535 0.05212173499322353 0.027707123758025944 C 0.051799374400496874 0.027380690277583535 0.051554123300602085 0.027166802152290084 0.05159778573849604 0.027208365352731304" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05159778573849604 0.027208365352731304 C 0.05154816500889566 0.02727063941215409 0.05063371115013418 0.02843550131648099 0.05100233698329149 0.027955654065804754 C 0.05063371115013418 0.02843550131648099 0.04685527063705139 0.033384105552099565 0.04717427574060832 0.03296653236084612" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04717427574060832 0.03296653236084612 C 0.04743302771716566 0.03246412804033509 0.050576514178972715 0.026357292666398923 0.0502792994592964 0.026937680514713774 C 0.050576514178972715 0.026357292666398923 0.05077931511984305 0.025923894653264088 0.05074085237672408 0.02600187818106791" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05074085237672408 0.02600187818106791 C 0.05071046201172123 0.025939181516382668 0.05013874867046644 0.024787830553240884 0.050376167996689966 0.02524951820484502 C 0.05013874867046644 0.024787830553240884 0.04768479150082114 0.02006263537489935 0.047891820462041816 0.02046162636181825" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.047891820462041816 0.02046162636181825 C 0.04817051861687451 0.020746496641819438 0.051558558912760816 0.024206503202274916 0.05123619832003416 0.023880069721832507 C 0.051558558912760816 0.024206503202274916 0.0518038100126556 0.02442039132756837 0.05176014757476164 0.02437882812712715" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05176014757476164 0.02437882812712715 C 0.05180976830436202 0.024316554067704364 0.0527242221631235 0.023151692163377487 0.05235559632996619 0.02363153941405372 C 0.0527242221631235 0.023151692163377487 0.056502662676206294 0.0182030879277589 0.05618365757264936 0.01862066111901235" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05618365757264936 0.01862066111901235 C 0.05592490559609202 0.019123065439523378 0.05278141913428497 0.025229900813459546 0.053078633853961284 0.024649512965144695 C 0.05278141913428497 0.025229900813459546 0.052578618193414646 0.02566329882659437 0.05261708093653362 0.02558531529879055" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05261708093653362 0.02558531529879055 C 0.052647471301536464 0.02564801196347579 0.05321918464279125 0.026799362926617585 0.052981765316567724 0.026337675275013444 C 0.05321918464279125 0.026799362926617585 0.055673141812436544 0.031524558104959126 0.05546611285121587 0.031125567118040227" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.0059520847501146916 0.0007831957669776955 C 0.005796207851968706 0.0007860303308520654 0.0037698081760708965 0.0008228796612188741 0.004081561972362866 0.0008172105334701347 C 0.0037698081760708965 0.0008228796612188741 0.0020551622964650783 0.000854059863836939 0.002211039194611062 0.0008512252999625695" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.002211039194611062 0.0008512252999625695 C 0.002070185549412306 0.0008081069307276145 0.0002390881618284771 0.0002475681306731987 0.00052079545222599 0.0003338048691431094 C 0.0002390881618284771 0.0002475681306731987 -0.0013103019353578496 -0.00022673393091131487 -0.0011694482901590927 -0.00018361556167635916" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0011694482901590927 -0.00018361556167635916 C -0.0010135713920131069 -0.00018645012555072873 0.001012828283884708 -0.00022329945591753353 0.0007010744875927374 -0.00021763032816879402 C 0.001012828283884708 -0.00022329945591753353 0.002727474163490538 -0.0002544796585356034 0.0025715972653445533 -0.00025164509466123344" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0025715972653445533 -0.00025164509466123344 C 0.0027124509105433082 -0.00020852672542627838 0.004543548298127125 0.000352012074628138 0.0042618410077296135 0.0002657753361582272 C 0.004543548298127125 0.000352012074628138 0.006092938395313448 0.0008263141362126513 0.0059520847501146916 0.0007831957669776955" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.006608690781896309 0.0036363608593286923 C 0.006480272265704975 0.00364404085128538 0.004810831555217634 0.0037438807467223187 0.005067668587600301 0.003728520762808944 C 0.004810831555217634 0.0037438807467223187 0.0033982278771129667 0.003828360658245879 0.0035266463933043 0.0038206806662891917" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0035266463933043 0.0038206806662891917 C 0.0034115072246599107 0.0037820999878411298 0.001914698032282849 0.0032805511680163244 0.0021449763695716288 0.0033577125249124487 C 0.001914698032282849 0.0032805511680163244 0.0006481671771945514 0.002856163705087639 0.000763306345838942 0.0028947443835357013" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.000763306345838942 0.0028947443835357013 C 0.0008917248620302759 0.002887064391579014 0.0025611655725176156 0.0027872244961420762 0.002304328540134949 0.0028025844800554514 C 0.0025611655725176156 0.0027872244961420762 0.0039737692506222715 0.0027027445846185124 0.003845350734430939 0.0027104245765752003" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.003845350734430939 0.0027104245765752003 C 0.003960489903075329 0.002749005255023262 0.005457299095452402 0.0032505540748480667 0.005227020758163621 0.0031733927179519424 C 0.005457299095452402 0.0032505540748480667 0.0067238299505407 0.0036749415377767547 0.006608690781896309 0.0036363608593286923" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M -0.002627839011507235 0.003273814110456967 C -0.00248730918602991 0.0034177306987737237 -0.0006604214548246803 0.005288646346891562 -0.0009414811057793303 0.005000813170258049 C -0.0006604214548246803 0.005288646346891562 0.000885406625425889 0.00687172881837588 0.0007448767999485644 0.006727812230059123" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0007448767999485644 0.006727812230059123 C 0.0008592586384714937 0.0069102225189332294 0.0023462225392695737 0.009281556274296608 0.0021174588622237156 0.008916735696548396 C 0.0023462225392695737 0.009281556274296608 0.003604422763021788 0.011288069451911782 0.0034900409244988592 0.011105659163037676" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0034900409244988592 0.011105659163037676 C 0.0033495110990215344 0.01096174257472092 0.001522623367816313 0.00909082692660309 0.0018036830187709628 0.009378660103236602 C 0.001522623367816313 0.00909082692660309 -2.3204712434263266E-05 0.007507744455118771 0.00011732511304306181 0.0076516610434355274" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.00011732511304306181 0.0076516610434355274 C 2.943274520133014E-06 0.007469250754561421 -0.0014840206262779418 0.0050979169991980395 -0.0012552569492320837 0.0054627375769462526 C -0.0014840206262779418 0.0050979169991980395 -0.0027422208500301644 0.00309140382158286 -0.002627839011507235 0.003273814110456967" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.0187426247237309 0.01687601515841619 C 0.018545033304425158 0.017073096794009507 0.015976344853450477 0.019635158056722588 0.016371527692061967 0.01924099478553596 C 0.015976344853450477 0.019635158056722588 0.013802839241087281 0.021803056048249052 0.014000430660393026 0.021605974412655736" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.014000430660393026 0.021605974412655736 C 0.013752236155869242 0.021768111602389718 0.010525707597060062 0.0238758950689315 0.011022096606107628 0.02355162068946353 C 0.010525707597060062 0.0238758950689315 0.007795568047298439 0.02565940415600535 0.008043762551822223 0.025497266966271366" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008043762551822223 0.025497266966271366 C 0.008241353971127968 0.02530018533067805 0.010810042422102652 0.02273812406796493 0.010414859583491164 0.023132287339151562 C 0.010810042422102652 0.02273812406796493 0.012983548034465824 0.020570226076438478 0.01278595661516008 0.020767307712031793" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01278595661516008 0.020767307712031793 C 0.013034151119683864 0.020605170522297808 0.01626067967849306 0.01849738705575602 0.015764290669445492 0.018821661435223985 C 0.01626067967849306 0.01849738705575602 0.018990819228254685 0.01671387796868221 0.0187426247237309 0.01687601515841619" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.00817224900921498 7.673863835773822E-05 C 0.00808087457369764 0.00021920246634658387 0.006893006911972206 0.0020712322302015775 0.007075755783006888 0.001786304574223886 C 0.006893006911972206 0.0020712322302015775 0.0058878881212814545 0.0036383343380788804 0.005979262556798795 0.0034958705100900348" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.005979262556798795 0.0034958705100900348 C 0.005872245900182929 0.0035928744274339786 0.0045280372133153675 0.00485392535290525 0.0046950626774083975 0.004659917518217363 C 0.0045280372133153675 0.00485392535290525 0.0039149481802052705 0.00592096844368863 0.003974956987682434 0.005823964526344686" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.003974956987682434 0.005823964526344686 C 0.004019323574061072 0.00568150069835584 0.004643097046122072 0.003829470934500849 0.004507356024226093 0.00411439859047854 C 0.004643097046122072 0.003829470934500849 0.005695223685951527 0.002262368826623543 0.005603849250434186 0.002404832654612389" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.005603849250434186 0.002404832654612389 C 0.005710865907050052 0.002307828737268445 0.007102082443056317 0.001046777811797176 0.0068880491298245845 0.0012407856464850635 C 0.007102082443056317 0.001046777811797176 0.008279265665830846 -2.0265278986205553E-05 0.00817224900921498 7.673863835773822E-05" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.027518731894252097,-0.027518731894252097)"><path d="M 0.016702008887406725 0.015496308636324577 C 0.01674110464815433 0.01537885095618028 0.017308079264859375 0.013919019954977714 0.01717115801637797 0.014086816474593023 C 0.017308079264859375 0.013919019954977714 0.01854213972766866 0.013478679372120125 0.018345063869183564 0.01348275040094087 C 0.01854213972766866 0.013478679372120125 0.019677854421603698 0.014200003344188278 0.019536068318199155 0.01403796412874408 C 0.019677854421603698 0.014200003344188278 0.02008903284269134 0.015542992391065184 0.020046497110038097 0.015427220986271252" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.020046497110038097 0.015427220986271252 C 0.0200825517974908 0.016525114002272908 0.02054200006519704 0.032704003288731125 0.020479153359470533 0.028601937178291112 C 0.02054200006519704 0.032704003288731125 0.020827449597029996 0.06765618740598978 0.020800657578756192 0.06465201431155142" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.020800657578756192 0.06465201431155142 C 0.020578923727910703 0.06195867478481842 0.017798297310997857 0.028235631184486545 0.018139851368610314 0.03233193999075545 C 0.017798297310997857 0.028235631184486545 0.01658218868063976 0.014093339356788675 0.016702008887406725 0.01549630863632458" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3216170483592447,0.3384095524582864) rotate(0) scale(1,1) translate(-0.042392535679937025,-0.04239253567993701)"><path d="M 0.04444289605235515 0.04258400531604222 C 0.044350284401631856 0.04291202601517451 0.042559445089892414 0.04459647133783637 0.04286204596180633 0.044456394692783376 C 0.042559445089892414 0.04459647133783637 0.04060169636819758 0.04407698100259887 0.0408116855893882 0.044264925056678166 C 0.04060169636819758 0.04407698100259887 0.04043478695824221 0.041873045344699523 0.040342175307518914 0.042201066043831816 C 0.04043478695824221 0.041873045344699523 0.042225626269981636 0.04018860002203767 0.04192302539806773 0.04032867666709066 C 0.042225626269981636 0.04018860002203767 0.04418337499167646 0.040708090357275156 0.043973385770485846 0.04052014630319586 C 0.04418337499167646 0.040708090357275156 0.044350284401631856 0.04291202601517451 0.04444289605235515 0.04258400531604222 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g id="パンスト">
<g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.101553155130431,-0.07097439109712583)"><path d="M 0.11028033334921124 0.050253743153968265 C 0.11054636047692501 0.051920628481396634 0.11331921739544938 0.0738163839132467 0.11347265888177656 0.07025636708310867 C 0.11331921739544938 0.0738163839132467 0.10801956689924418 0.09486707661833421 0.10843903551328513 0.09297394511562455" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10843903551328513 0.09297394511562455 C 0.10826282325179447 0.09440115624383592 0.10611944414133961 0.11329943097565293 0.10632448837539718 0.11010047865416094 C 0.10611944414133961 0.11329943097565293 0.10594967273202738 0.13313311416680915 0.10597850470459429 0.1313613729735285" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10597850470459429 0.1313613729735285 C 0.10587037134358712 0.131839013257163 0.1040808600979307 0.1377814288645651 0.10468090437250839 0.13709305637714223 C 0.1040808600979307 0.1377814288645651 0.09784870870112712 0.13962711647851025 0.09877797340966207 0.13962184282260287 C 0.09784870870112712 0.13962711647851025 0.09299191996133639 0.13650980001358753 0.09352972787008902 0.1371563402480308 C 0.09299191996133639 0.13650980001358753 0.09222382439084223 0.13142227832272138 0.09232427850463044 0.13186336000928364" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09232427850463044 0.13186336000928364 C 0.09237756635438066 0.1314241646508932 0.09302467303362916 0.1257467009635984 0.09296373270163306 0.1265930157085984 C 0.09302467303362916 0.1257467009635984 0.09306321497082948 0.12130046368267414 0.0930555624885836 0.1217075830692837" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0930555624885836 0.1217075830692837 C 0.0930077326751292 0.120385247747843 0.09232173819838199 0.10303182681002518 0.09248160472713077 0.10583955921199535 C 0.09232173819838199 0.10303182681002518 0.09102512742830396 0.08652939716511222 0.09113716414359833 0.0880147942456417" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09113716414359833 0.0880147942456417 C 0.09101187141322227 0.08665459598443347 0.08937359219258159 0.06887132131081636 0.08963365137908555 0.07169241511114292 C 0.08937359219258159 0.06887132131081636 0.08788168744942296 0.05270077310260452 0.08801645390555085 0.05416166864172286" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08801645390555085 0.05416166864172286 C 0.08805666990129832 0.053690654731430136 0.0888172681906534 0.04765005146623967 0.08849904585452045 0.04850950171821022 C 0.0888172681906534 0.04765005146623967 0.09255443339015812 0.04325805170739898 0.09183512193914618 0.04384826561807627 C 0.09255443339015812 0.04325805170739898 0.0980584449101496 0.041264104561426276 0.09713078326666376 0.04142693479008271 C 0.0980584449101496 0.041264104561426276 0.10385450730871472 0.04220248655583527 0.10296706166097633 0.04189430287419899 C 0.10385450730871472 0.04220248655583527 0.10838957034687731 0.04582175899303215 0.1077801310395244 0.045125138969718044 C 0.10838957034687731 0.04582175899303215 0.11048868354168515 0.05068112683598912 0.11028033334921124 0.050253743153968265" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32990701085915924,0.3604529318604561) rotate(0) scale(1,1) translate(-0.03292901439411534,-0.03292901439411533)"><path d="M 0.0334041184470847 0.00788883137967315 C 0.0337455350959342 0.008113589186991883 0.03815861586866015 0.01120125554992626 0.03750111823327866 0.010585925067497958 C 0.03815861586866015 0.01120125554992626 0.041610171058194555 0.01566336984392232 0.04129409007166256 0.015272797168812755" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04129409007166256 0.015272797168812755 C 0.0409440603184543 0.015211954941927163 0.03644474898376203 0.014441720716116865 0.03709373303316345 0.014542690446185651 C 0.03644474898376203 0.014441720716116865 0.03320732718265241 0.014021032904804135 0.033506281478845566 0.01406116040798733" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.033506281478845566 0.01406116040798733 C 0.03369790549562014 0.014206862012086985 0.03626803047568545 0.01620055574052068 0.0358057696801405 0.015809579657183194 C 0.03626803047568545 0.01620055574052068 0.039324047804155354 0.018998147887275014 0.03905341102538498 0.01875287340803718" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03905341102538498 0.01875287340803718 C 0.039290089942599846 0.020266692642748493 0.041805571260383104 0.04008502712397159 0.04189355803196334 0.03691870422457291 C 0.041805571260383104 0.04008502712397159 0.03749369463793356 0.05993867619033833 0.03799756976642219 0.056748748200821375 C 0.03749369463793356 0.05993867619033833 0.035667847050406286 0.07673526442360598 0.03584705649009982 0.07519784009877639" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03584705649009982 0.07519784009877639 C 0.03601692764854691 0.07366229640013196 0.03828202678155795 0.05359204570756796 0.03788551039146493 0.056771315715043236 C 0.03828202678155795 0.05359204570756796 0.0405946822551317 0.033941189113746786 0.040605253171216084 0.037046600009073116 C 0.0405946822551317 0.033941189113746786 0.037521443250722 0.01804470038463182 0.03775865939845231 0.019506384971127305" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03775865939845231 0.019506384971127305 C 0.03742113799020957 0.01918311778611756 0.033014665043995896 0.015047703392146597 0.033708402499539394 0.01562717875101035 C 0.033014665043995896 0.015047703392146597 0.029077593884629604 0.01229647249090827 0.029433809931930358 0.012552680664762277" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.029433809931930358 0.012552680664762277 C 0.02996684588706492 0.012610628408723592 0.03663105688293129 0.013351265857136863 0.03583024139354512 0.013248053592298067 C 0.03663105688293129 0.013351265857136863 0.03931137533881609 0.013836492363705287 0.03904359580456448 0.013791227842827809" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03904359580456448 0.013791227842827809 C 0.03884810479030415 0.01353096989003683 0.03622774718698393 0.01017626603740649 0.03669770363344058 0.010668132409336045 C 0.03622774718698393 0.01017626603740649 0.03312965301488838 0.007657222960534575 0.0334041184470847 0.00788883137967315" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32990701085915924,0.3604529318604561) rotate(0) scale(1,1) translate(-0.03292901439411534,-0.03292901439411533)"><path d="M 0.03508326137183047 0.09685403353553851 C 0.03459513454186087 0.0969368747113352 0.02835481196838773 0.09789288986929823 0.029225739412195268 0.09784812764509887 C 0.02835481196838773 0.09789288986929823 0.024249331432302117 0.09735310127433348 0.02463213204614005 0.09739118022593082" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02463213204614005 0.09739118022593082 C 0.024931387529304294 0.0972683526770019 0.028792322323263612 0.09567995186097497 0.028223197844110984 0.09591724963878367 C 0.028792322323263612 0.09567995186097497 0.03173149479195995 0.09442913666334664 0.031461625795971566 0.0945436068922264" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.031461625795971566 0.0945436068922264 C 0.03110275224036619 0.09454303178605822 0.026605364299846983 0.0945287278259508 0.027155143128707062 0.0945367056182082 C 0.026605364299846983 0.0945287278259508 0.02467337457639593 0.09444047069904839 0.02486427984965063 0.0944478733851376" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02486427984965063 0.0944478733851376 C 0.024990581519243306 0.09420621366490076 0.026483627496198335 0.09040168938451515 0.02637989988476274 0.09154795674229538 C 0.026483627496198335 0.09040168938451515 0.026086437128720663 0.07978805745423158 0.026109011186877747 0.08069266509177495" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.026109011186877747 0.08069266509177495 C 0.026193746559635588 0.08155466189748453 0.027193624182231636 0.09209147178314547 0.027125835659971845 0.09103662676029003 C 0.027193624182231636 0.09209147178314547 0.026905526603497158 0.09354365358318614 0.026922473453995212 0.09335080536604029" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.026922473453995212 0.09335080536604029 C 0.027144399005875248 0.09339603602018867 0.030165743210030335 0.09394346136729546 0.029585580076555654 0.09389357321582095 C 0.030165743210030335 0.09394346136729546 0.03424266863728604 0.09395412068106054 0.033884431055691396 0.09394946318373443" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.033884431055691396 0.09394946318373443 C 0.03363138823676719 0.09408727627718685 0.03036844614700097 0.09583477788002058 0.03084791722860094 0.09560322030516358 C 0.03036844614700097 0.09583477788002058 0.027904349813815996 0.09682189856342306 0.02813077807649176 0.09672815408201849" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02813077807649176 0.09672815408201849 C 0.028373193943671788 0.09674846447829907 0.03161914209059698 0.09698236879184548 0.031039768482652087 0.09697187883738548 C 0.03161914209059698 0.09698236879184548 0.03542021911259533 0.09684421309371793 0.03508326137183047 0.09685403353553851" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ソックス">
<g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.101553155130431,-0.07097439109712583)"><path d="M 0.11028033334921124 0.050253743153968265 C 0.11054636047692501 0.051920628481396634 0.11331921739544938 0.0738163839132467 0.11347265888177656 0.07025636708310867 C 0.11331921739544938 0.0738163839132467 0.10801956689924418 0.09486707661833421 0.10843903551328513 0.09297394511562455" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10843903551328513 0.09297394511562455 C 0.10826282325179447 0.09440115624383592 0.10611944414133961 0.11329943097565293 0.10632448837539718 0.11010047865416094 C 0.10611944414133961 0.11329943097565293 0.10594967273202738 0.13313311416680915 0.10597850470459429 0.1313613729735285" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10597850470459429 0.1313613729735285 C 0.10587037134358712 0.131839013257163 0.1040808600979307 0.1377814288645651 0.10468090437250839 0.13709305637714223 C 0.1040808600979307 0.1377814288645651 0.09784870870112712 0.13962711647851025 0.09877797340966207 0.13962184282260287 C 0.09784870870112712 0.13962711647851025 0.09299191996133639 0.13650980001358753 0.09352972787008902 0.1371563402480308 C 0.09299191996133639 0.13650980001358753 0.09222382439084223 0.13142227832272138 0.09232427850463044 0.13186336000928364" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09232427850463044 0.13186336000928364 C 0.09237756635438066 0.1314241646508932 0.09302467303362916 0.1257467009635984 0.09296373270163306 0.1265930157085984 C 0.09302467303362916 0.1257467009635984 0.09306321497082948 0.12130046368267414 0.0930555624885836 0.1217075830692837" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0930555624885836 0.1217075830692837 C 0.0930077326751292 0.120385247747843 0.09232173819838199 0.10303182681002518 0.09248160472713077 0.10583955921199535 C 0.09232173819838199 0.10303182681002518 0.09102512742830396 0.08652939716511222 0.09113716414359833 0.0880147942456417" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09113716414359833 0.0880147942456417 C 0.09101187141322227 0.08665459598443347 0.08937359219258159 0.06887132131081636 0.08963365137908555 0.07169241511114292 C 0.08937359219258159 0.06887132131081636 0.08788168744942296 0.05270077310260452 0.08801645390555085 0.05416166864172286" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08801645390555085 0.05416166864172286 C 0.08805666990129832 0.053690654731430136 0.0888172681906534 0.04765005146623967 0.08849904585452045 0.04850950171821022 C 0.0888172681906534 0.04765005146623967 0.09255443339015812 0.04325805170739898 0.09183512193914618 0.04384826561807627 C 0.09255443339015812 0.04325805170739898 0.0980584449101496 0.041264104561426276 0.09713078326666376 0.04142693479008271 C 0.0980584449101496 0.041264104561426276 0.10385450730871472 0.04220248655583527 0.10296706166097633 0.04189430287419899 C 0.10385450730871472 0.04220248655583527 0.10838957034687731 0.04582175899303215 0.1077801310395244 0.045125138969718044 C 0.10838957034687731 0.04582175899303215 0.11048868354168515 0.05068112683598912 0.11028033334921124 0.050253743153968265" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32990701085915924,0.3604529318604561) rotate(0) scale(1,1) translate(-0.03292901439411534,-0.03292901439411533)"><path d="M 0.0334041184470847 0.00788883137967315 C 0.0337455350959342 0.008113589186991883 0.03815861586866015 0.01120125554992626 0.03750111823327866 0.010585925067497958 C 0.03815861586866015 0.01120125554992626 0.041610171058194555 0.01566336984392232 0.04129409007166256 0.015272797168812755" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04129409007166256 0.015272797168812755 C 0.0409440603184543 0.015211954941927163 0.03644474898376203 0.014441720716116865 0.03709373303316345 0.014542690446185651 C 0.03644474898376203 0.014441720716116865 0.03320732718265241 0.014021032904804135 0.033506281478845566 0.01406116040798733" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.033506281478845566 0.01406116040798733 C 0.03369790549562014 0.014206862012086985 0.03626803047568545 0.01620055574052068 0.0358057696801405 0.015809579657183194 C 0.03626803047568545 0.01620055574052068 0.039324047804155354 0.018998147887275014 0.03905341102538498 0.01875287340803718" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03905341102538498 0.01875287340803718 C 0.039290089942599846 0.020266692642748493 0.041805571260383104 0.04008502712397159 0.04189355803196334 0.03691870422457291 C 0.041805571260383104 0.04008502712397159 0.03749369463793356 0.05993867619033833 0.03799756976642219 0.056748748200821375 C 0.03749369463793356 0.05993867619033833 0.035667847050406286 0.07673526442360598 0.03584705649009982 0.07519784009877639" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03584705649009982 0.07519784009877639 C 0.03601692764854691 0.07366229640013196 0.03828202678155795 0.05359204570756796 0.03788551039146493 0.056771315715043236 C 0.03828202678155795 0.05359204570756796 0.0405946822551317 0.033941189113746786 0.040605253171216084 0.037046600009073116 C 0.0405946822551317 0.033941189113746786 0.037521443250722 0.01804470038463182 0.03775865939845231 0.019506384971127305" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03775865939845231 0.019506384971127305 C 0.03742113799020957 0.01918311778611756 0.033014665043995896 0.015047703392146597 0.033708402499539394 0.01562717875101035 C 0.033014665043995896 0.015047703392146597 0.029077593884629604 0.01229647249090827 0.029433809931930358 0.012552680664762277" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.029433809931930358 0.012552680664762277 C 0.02996684588706492 0.012610628408723592 0.03663105688293129 0.013351265857136863 0.03583024139354512 0.013248053592298067 C 0.03663105688293129 0.013351265857136863 0.03931137533881609 0.013836492363705287 0.03904359580456448 0.013791227842827809" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03904359580456448 0.013791227842827809 C 0.03884810479030415 0.01353096989003683 0.03622774718698393 0.01017626603740649 0.03669770363344058 0.010668132409336045 C 0.03622774718698393 0.01017626603740649 0.03312965301488838 0.007657222960534575 0.0334041184470847 0.00788883137967315" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.32990701085915924,0.3604529318604561) rotate(0) scale(1,1) translate(-0.03292901439411534,-0.03292901439411533)"><path d="M 0.03508326137183047 0.09685403353553851 C 0.03459513454186087 0.0969368747113352 0.02835481196838773 0.09789288986929823 0.029225739412195268 0.09784812764509887 C 0.02835481196838773 0.09789288986929823 0.024249331432302117 0.09735310127433348 0.02463213204614005 0.09739118022593082" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02463213204614005 0.09739118022593082 C 0.024931387529304294 0.0972683526770019 0.028792322323263612 0.09567995186097497 0.028223197844110984 0.09591724963878367 C 0.028792322323263612 0.09567995186097497 0.03173149479195995 0.09442913666334664 0.031461625795971566 0.0945436068922264" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.031461625795971566 0.0945436068922264 C 0.03110275224036619 0.09454303178605822 0.026605364299846983 0.0945287278259508 0.027155143128707062 0.0945367056182082 C 0.026605364299846983 0.0945287278259508 0.02467337457639593 0.09444047069904839 0.02486427984965063 0.0944478733851376" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02486427984965063 0.0944478733851376 C 0.024990581519243306 0.09420621366490076 0.026483627496198335 0.09040168938451515 0.02637989988476274 0.09154795674229538 C 0.026483627496198335 0.09040168938451515 0.026086437128720663 0.07978805745423158 0.026109011186877747 0.08069266509177495" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.026109011186877747 0.08069266509177495 C 0.026193746559635588 0.08155466189748453 0.027193624182231636 0.09209147178314547 0.027125835659971845 0.09103662676029003 C 0.027193624182231636 0.09209147178314547 0.026905526603497158 0.09354365358318614 0.026922473453995212 0.09335080536604029" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.026922473453995212 0.09335080536604029 C 0.027144399005875248 0.09339603602018867 0.030165743210030335 0.09394346136729546 0.029585580076555654 0.09389357321582095 C 0.030165743210030335 0.09394346136729546 0.03424266863728604 0.09395412068106054 0.033884431055691396 0.09394946318373443" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.033884431055691396 0.09394946318373443 C 0.03363138823676719 0.09408727627718685 0.03036844614700097 0.09583477788002058 0.03084791722860094 0.09560322030516358 C 0.03036844614700097 0.09583477788002058 0.027904349813815996 0.09682189856342306 0.02813077807649176 0.09672815408201849" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02813077807649176 0.09672815408201849 C 0.028373193943671788 0.09674846447829907 0.03161914209059698 0.09698236879184548 0.031039768482652087 0.09697187883738548 C 0.03161914209059698 0.09698236879184548 0.03542021911259533 0.09684421309371793 0.03508326137183047 0.09685403353553851" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ブーツ">
<g id="タン">
<g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.03850579083029247,-0.03850579083029246)"><path d="M 0.031271071636856634 0.005212223795883717 C 0.03157468262811139 0.0055693174578627025 0.03555795691494647 0.01021153506358952 0.03491440353191365 0.009497347739631548 C 0.03555795691494647 0.01021153506358952 0.03933365462502855 0.014139565345358365 0.03899371223325048 0.013782471683379378" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03899371223325048 0.013782471683379378 C 0.038971740219419564 0.017338134219735523 0.03875949076276475 0.06387684829867103 0.03873004806727949 0.05645042211965311 C 0.03875949076276475 0.06387684829867103 0.03939843928838971 0.1067703494742563 0.03934702457907354 0.10289958583159452" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.032452396185238895 0.10289958583159452 C 0.03215670715483317 0.0990737363809239 0.028375461652062634 0.049652794628511465 0.028904127820370176 0.056989392423547065 C 0.028375461652062634 0.049652794628511465 0.025875425027646566 0.011349663946802297 0.026108402165548383 0.01486041229116728" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026108402165548383 0.01486041229116728 C 0.0263053476932579 0.01445840443719713 0.028901970954004933 0.009232302335585202 0.02847174849806258 0.010036318043525498 C 0.028901970954004933 0.009232302335585202 0.03150434856508947 0.0048102159419135685 0.031271071636856634 0.005212223795883717" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="縁">
<g transform="translate(0.3199836488274695,0.3363879352235937) rotate(0) scale(1,1) translate(-0.00775832499658671,-0.0077583249965867095)"><path d="M 0.004822592306008833 0.012197034332380615 C 0.005023256312469025 0.011794242440908495 0.007696429807266621 0.0065262464131525776 0.007230560383531127 0.007363531634715171 C 0.007696429807266621 0.0065262464131525776 0.010678230808110074 0.0017151183435390222 0.01041302539083477 0.002149611673629495" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01041302539083477 0.002149611673629495 C 0.010421904709257596 0.002240432289014998 0.01053770585631938 0.0034241479673382 0.010519577211908692 0.0032394590582555285 C 0.01053770585631938 0.0034241479673382 0.01063981844975087 0.004459746876318722 0.010630569123763011 0.0043658785826215536" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.010630569123763011 0.0043658785826215536 C 0.010435195830919617 0.004681481897274613 0.007890052310338704 0.00887151356458344 0.00828608960964229 0.00815311835845826 C 0.007890052310338704 0.00887151356458344 0.0056774575256598025 0.013389412947595823 0.005878121532119994 0.012986621056123703" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3264263038613206,0.3358489649196998) rotate(0) scale(1,1) translate(-0.00775832499658671,-0.0077583249965867095)"><path d="M 0.011407603706161522 0.01253474519363779 C 0.011066421844213664 0.012177645420353897 0.006711780561433095 0.007613723221970884 0.007313421362787223 0.008249547914231072 C 0.006711780561433095 0.007613723221970884 0.00392745515050572 0.004626123967539236 0.004187914089911989 0.004904848886515531" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004187914089911989 0.004904848886515531 C 0.004178664763924129 0.0048109805928183615 0.004058793533646982 0.003593740453066831 0.0040769221780576695 0.0037784293621495025 C 0.004058793533646982 0.003593740453066831 0.003961491038560921 0.0025977613621379694 0.003970370356983748 0.002688581977523472" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.003970370356983748 0.002688581977523472 C 0.004323108546433948 0.0030701253193083796 0.008897148681784208 0.008005745194011165 0.00820322863038615 0.007267102078942364 C 0.008897148681784208 0.008005745194011165 0.012638592835708307 0.011909399131632971 0.012297410973760449 0.011552299358349078" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="ブーツ">
<g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.09180138873031214,-0.07753166928063453)"><path d="M 0.07349418741669786 0.04640367444812656 C 0.07389006217607878 0.04678882048230529 0.07888696413102393 0.05169365045563791 0.07824468452926887 0.051025426858271244 C 0.07888696413102393 0.05169365045563791 0.08144794748013268 0.054705435179714504 0.08120154263775854 0.054422357616526564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08120154263775854 0.054422357616526564 C 0.0815210045190927 0.05842799076948335 0.0854269849227817 0.10973395926544252 0.08503508521376832 0.10248995545200801 C 0.0854269849227817 0.10973395926544252 0.0859767769735982 0.14458877403821835 0.08590433914591898 0.14135040337774063" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09186267553489692 0.14135040337774063 C 0.0918701593412649 0.1381120327172629 0.09180820577006395 0.09520719985313314 0.09195248121131261 0.10248995545200801 C 0.09180820577006395 0.09520719985313314 0.08997961099229637 0.04991295125284507 0.09013137023991301 0.05395733619124222" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09013137023991301 0.05395733619124222 C 0.09051472389622649 0.05360833692655192 0.09554111010915242 0.049028223213262896 0.09473161411567477 0.049769345014958645 C 0.09554111010915242 0.049028223213262896 0.10027146449880901 0.044671752033887756 0.09984532216164484 0.04506387457089321" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09984532216164484 0.04506387457089321 C 0.09996458062498283 0.04617263828910598 0.10167978385511785 0.060806227078872385 0.10127642372170069 0.05836903918944644 C 0.10167978385511785 0.060806227078872385 0.10484917976164496 0.0767011633349883 0.1046856437626507 0.07431012924400451 C 0.10484917976164496 0.0767011633349883 0.10288973326967676 0.08925631357629953 0.10323885570963179 0.08706144828125191 C 0.10288973326967676 0.08925631357629953 0.10026761771432033 0.10178076815985282 0.10049617448319044 0.10064851278457583" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10049617448319044 0.10064851278457583 C 0.10033862576507833 0.10217840416596 0.0983889797070755 0.12210183230105057 0.09860558986584521 0.11900720936118574 C 0.0983889797070755 0.12210183230105057 0.09783779113729626 0.13934871962143444 0.09789685257795387 0.13778398806295378" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09789685257795387 0.13778398806295378 C 0.09767690868116374 0.13829837760781613 0.09452303801992973 0.1446925694154479 0.09525752581647232 0.14395666260130202 C 0.09452303801992973 0.1446925694154479 0.0880983172782969 0.1466136154242435 0.08908299901944278 0.1466148698327044 C 0.0880983172782969 0.1466136154242435 0.08288241381613637 0.14324640380110032 0.08344134492272168 0.14394160969977143 C 0.08288241381613637 0.14324640380110032 0.0822870324752271 0.13779996482772433 0.08237582574041899 0.13827239904865102" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08237582574041899 0.13827239904865102 C 0.0823856417589052 0.1379079958349369 0.08250807369401864 0.13307528655747186 0.08249361796225348 0.1338995604840817 C 0.08250807369401864 0.13307528655747186 0.08255393423487986 0.12792124121643714 0.08254929452160091 0.12838111192933288" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08254929452160091 0.12838111192933288 C 0.0824232889849725 0.12599450182619537 0.08065953721478764 0.09548427996757314 0.08103722808206008 0.09974179069168285 C 0.08065953721478764 0.09548427996757314 0.0776282614998172 0.0739594194591827 0.07801700411433156 0.07729098324001636 C 0.0776282614998172 0.0739594194591827 0.0759954153164183 0.05718908292235484 0.07637231670788779 0.05976302532167899 C 0.0759954153164183 0.05718908292235484 0.0732543433090987 0.04529039520866386 0.07349418741669786 0.04640367444812656" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="皺">
<g transform="translate(0.31676064386449887,0.3457840507760419) rotate(0) scale(1,1) translate(-0.03408017706782698,-0.03408017706782699)"><path d="M 0.03294256581733062 0.03681715479930439 C 0.03304326595512176 0.03677008057168463 0.034374499859481655 0.036016367958547894 0.03415096747082433 0.03625226406786724 C 0.034374499859481655 0.036016367958547894 0.03574778673208468 0.033797579605772676 0.0356249544812185 0.033986401487472256" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03550167486718714 0.03726699465080329 C 0.035353424779412924 0.03744067429866156 0.033466378015062935 0.039572753033127586 0.033722673813896584 0.03935115042510253 C 0.033466378015062935 0.039572753033127586 0.03231807957012395 0.039974148907270704 0.03242612528118338 0.03992622594710392" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03242612528118338 0.03992622594710392 C 0.03234486904554136 0.03987180390885896 0.031309675201518256 0.03914153526070475 0.031451050453479124 0.03927316148816437 C 0.031309675201518256 0.03914153526070475 0.03066950324133409 0.03826950702837378 0.03072962225765294 0.03834671121758844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03072962225765294 0.03834671121758844 C 0.030754427519440634 0.03825342973974149 0.031135145607364502 0.0370498473690763 0.031027285399105292 0.037227333483425065 C 0.031135145607364502 0.0370498473690763 0.032106999703234954 0.03613267320890149 0.03202394475676344 0.036216877845403304" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03202394475676344 0.036216877845403304 C 0.03205372542020255 0.036260988302256825 0.03245786447308002 0.03679622640713728 0.03238131271803276 0.03674620332764552 C 0.03245786447308002 0.03679622640713728 0.03298933690893877 0.03682306742194263 0.03294256581733062 0.03681715479930439" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3342903633252676,0.34521619104516466) rotate(0) scale(1,1) translate(-0.03408017706782698,-0.03408017706782699)"><path d="M 0.03699381043977047 0.035853431379874616 C 0.03710641933971488 0.03578589379262909 0.0385245060854632 0.03486343493450825 0.03834511723910338 0.03504298033292829 C 0.0385245060854632 0.03486343493450825 0.039213256542503724 0.03358687878765958 0.03914647659608831 0.03369888659883409" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03914647659608831 0.03369888659883409 C 0.039210257972605154 0.033780730198629094 0.04002383030203266 0.034822280011480106 0.03991185311429042 0.03468100979637409 C 0.04002383030203266 0.034822280011480106 0.040538398660220513 0.03545355579541732 0.04049020284899512 0.0353941291801063" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04049020284899512 0.0353941291801063 C 0.04048034486935198 0.0354885903541069 0.04032082062728371 0.036700350328980585 0.04037190709327744 0.03652766326811347 C 0.04032082062728371 0.036700350328980585 0.03983593677071976 0.03754459979737818 0.03987716525707035 0.03746637391051166" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03987716525707035 0.03746637391051166 C 0.03958902027686613 0.037546700123951116 0.03565794849800373 0.038346065088434717 0.03641942549461967 0.03843028847178511 C 0.03565794849800373 0.038346065088434717 0.030266109281267342 0.03629114371351711 0.03073944129767906 0.03645569331030696" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030230928453917522 0.03413619353650695 C 0.03058714675032107 0.03426516371036775 0.0350691215095812 0.03582693877645048 0.03450554801076012 0.03568383562283651 C 0.0350691215095812 0.03582693877645048 0.037201165642188 0.03586756435962779 0.03699381043977047 0.035853431379874616" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="縁">
<g transform="translate(0.31646098695865615,0.3383511655879974) rotate(0) scale(1,1) translate(-0.03501804932522445,-0.03501804932522445)"><path d="M 0.030740573949149405 0.02987722280405688 C 0.03113623212529422 0.03026234177778463 0.03613874463771168 0.03519020748733315 0.03548847206288718 0.03449865048878989 C 0.03613874463771168 0.03519020748733315 0.03879845924572313 0.038482344811391456 0.03854384484704344 0.03817590678657595" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03854384484704344 0.03817590678657595 C 0.03849643339593266 0.03819582956131794 0.03786361084003352 0.03846086830900903 0.037974907433714046 0.03841498008347978 C 0.03786361084003352 0.03846086830900903 0.037144400580307414 0.03875253094371423 0.037208285722877155 0.03872656549292697" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.037208285722877155 0.03872656549292697 C 0.036986564128267535 0.0384608057153213 0.03393024681680726 0.03488656941032558 0.03454762658756169 0.03553744816165899 C 0.03393024681680726 0.03488656941032558 0.029404070297679098 0.03053090150319825 0.02979972847382391 0.030916020476925998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02979972847382391 0.030916020476925998 C 0.02983893036862914 0.03087273724055645 0.03034855500109712 0.03031005516775234 0.030270151211486664 0.030396621640491433 C 0.03034855500109712 0.03031005516775234 0.03077977584395463 0.029833939567687325 0.0307405739491494 0.02987722280405687" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33294791654506206,0.3370950837446848) rotate(0) scale(1,1) translate(-0.03501804932522445,-0.03501804932522445)"><path d="M 0.039658535327853336 0.029774947505954247 C 0.03969773722265856 0.029818230742323794 0.04020736185512653 0.030380912815127913 0.04012895806551607 0.030294346342388815 C 0.04020736185512653 0.030380912815127913 0.04063858269798403 0.03085702841519295 0.040599380803178806 0.0308137451788234" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.040599380803178806 0.0308137451788234 C 0.04017347174148784 0.0312073870940597 0.034708132520274465 0.03625912494849689 0.03548847206288719 0.03553744816165899 C 0.034708132520274465 0.03625912494849689 0.030880875810904405 0.039801901492479815 0.031235306291826158 0.03947386662087821" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031235306291826158 0.03947386662087821 C 0.0311671812216292 0.039451547777597365 0.030306398836246643 0.039152359900360166 0.030417805449462678 0.03920604050150805 C 0.030306398836246643 0.039152359900360166 0.02985514539021468 0.038798337649236576 0.029898426933233756 0.03882969940710361" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.029898426933233756 0.03882969940710361 C 0.030285860237761086 0.038468778663910796 0.03536096895378002 0.03374408783036078 0.03454762658756172 0.03449865048878989 C 0.03536096895378002 0.03374408783036078 0.0400844443895443 0.02938130559071795 0.039658535327853336 0.029774947505954254" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32325138764315564,0.3898156941817341) rotate(0) scale(1,1) translate(-0.028726304949875287,-0.028726304949875284)"><path d="M 0.025461699787194904 -0.01958036618250995 C 0.025790023740340975 -0.015554810254811181 0.02980158157171858 0.0359887725742149 0.029401587224947737 0.02872630494987529 C 0.02980158157171858 0.0359887725742149 0.030333302342069778 0.07080615700620618 0.030261631948445007 0.06756924530956535" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028911067398300107 0.06756924530956535 C 0.028839397004675336 0.06433233361292451 0.027652278780196878 0.021509725551064934 0.028051022674802837 0.02872630494987529 C 0.027652278780196878 0.021509725551064934 0.023799067162047435 -0.02300937517832846 0.02412614066302862 -0.019029707476158942" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02412614066302862 -0.019029707476158942 C 0.02419002580559836 -0.019055672926946206 0.025004058967546025 -0.019387181111135368 0.0248927623738655 -0.01934129288560612 C 0.025004058967546025 -0.019387181111135368 0.02550911123830569 -0.019600288957251934 0.025461699787194904 -0.01958036618250995" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3301687836406999,0.3898156941817341) rotate(0) scale(1,1) translate(-0.028726304949875287,-0.028726304949875284)"><path d="M 0.026385815462246727 -0.020182655405294913 C 0.026429097005265804 -0.020151293647427876 0.027016600591691687 -0.019752633709742586 0.026905193978475652 -0.01980631431089047 C 0.027016600591691687 -0.019752633709742586 0.027790819891036087 -0.019516169348239455 0.02772269482083913 -0.019538488191520303" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02772269482083913 -0.019538488191520303 C 0.027862602521181508 -0.015516422096404005 0.029534090411430822 0.03598614733028062 0.02940158722494768 0.02872630494987529 C 0.029534090411430822 0.03598614733028062 0.029305328544777638 0.0708173966586327 0.029312733058636874 0.06757962037334367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02796216850849195 0.06757962037334367 C 0.02796957302235118 0.06434184408805464 0.027919659920948983 0.021412781968322074 0.02805102267480275 0.02872630494987529 C 0.027919659920948983 0.021412781968322074 0.026247048194533724 -0.024258402101559096 0.026385815462246727 -0.020182655405294913" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.31744057638191664,0.3709806662254533) rotate(0) scale(1,1) translate(-0.022056771251806547,-0.022056771251806547)"><path d="M 0.024288232357946398 0.043859337467701404 C 0.02403649805575476 0.041824357755688144 0.0209376933610014 0.016651409941897625 0.02126742073164674 0.019439580923542258 C 0.0209376933610014 0.016651409941897625 0.020253510841748645 0.009648094418334448 0.020331503910202345 0.010401285687965818" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020331503910202345 0.010401285687965818 C 0.020410277909431507 0.01104336733776726 0.02142791240510078 0.019242962603768943 0.02127679190095231 0.018106265485583136 C 0.02142791240510078 0.019242962603768943 0.022217296464903318 0.02453626657457989 0.02214494995998401 0.024041651106195525" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02214494995998401 0.024041651106195525 C 0.02214274806032461 0.02379692618193854 0.022122311963378095 0.020519501148729635 0.022118527164071224 0.021104952015111717 C 0.022122311963378095 0.020519501148729635 0.02219635425063272 0.016675514767485425 0.02219036755166645 0.017016240709610525" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02219036755166645 0.017016240709610525 C 0.02232741238161936 0.01871125138712899 0.024009727578291323 0.03959329356967301 0.023834905511101328 0.03735636883983211 C 0.024009727578291323 0.03959329356967301 0.02432600959518349 0.044401251520023846 0.024288232357946398 0.043859337467701404" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="紐">
<g transform="translate(0.32374405882109614,0.34301542236431304) rotate(0) scale(1,1) translate(-0.03755316171134874,-0.03755316171134874)"><path d="M 0.03387775015158273 0.037029456715052825 C 0.03419683148482566 0.03700553061479258 0.0383567202987584 0.03671569697337448 0.03770672615049788 0.03674234351192991 C 0.0383567202987584 0.03671569697337448 0.04200859274572653 0.036706977814092455 0.04167767993070894 0.036709698252387644" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04167767993070894 0.036709698252387644 C 0.04168122729565435 0.0367663726834279 0.041725423818001525 0.03752977033760549 0.041720248310053804 0.037389791424870755 C 0.041725423818001525 0.03752977033760549 0.04174141416908396 0.03847274968689896 0.04173978602608164 0.03838944520520449" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04173978602608164 0.03838944520520449 C 0.04140604103357894 0.0383904098227002 0.03709075914002242 0.038427583157168224 0.03773484611604927 0.03840102061515305 C 0.03709075914002242 0.038427583157168224 0.03370040033023523 0.03873379363390603 0.03401074231375939 0.038708195709386564" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03401074231375939 0.038708195709386564 C 0.034005573809083124 0.03865018779021217 0.03393763757746285 0.03787220576309935 0.033948720257644234 0.03801210067929382 C 0.03393763757746285 0.03787220576309935 0.033871835976077604 0.036947569718032744 0.03387775015158273 0.037029456715052825" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="紐1">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3298961387876543,0.3430746562951396) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026337704732928045 0.025160349890840743 C 0.026508550296543414 0.02515420723696209 0.027474034687733098 0.025882103208239172 0.027383445147664377 0.025732838421656565 C 0.027474034687733098 0.025882103208239172 0.02734452319020606 0.027106934770293304 0.027424779213752706 0.026951527329832043 C 0.02734452319020606 0.027106934770293304 0.026249527301489224 0.027603870361070346 0.026420372865104593 0.027597727707191693 C 0.026249527301489224 0.027603870361070346 0.02528404291029954 0.026875974389793267 0.02537463245036826 0.027025239176375875 C 0.02528404291029954 0.026875974389793267 0.02541355440782658 0.025651142827739136 0.02533329838427993 0.025806550268200397 C 0.02541355440782658 0.025651142827739136 0.026508550296543414 0.02515420723696209 0.026337704732928045 0.025160349890840743 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3298961387876543,0.3430746562951396) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026350104952754545 0.025525956563293387 C 0.02646969684728531 0.02552165670557833 0.02714553592111809 0.026031183885472285 0.027082123243069984 0.02592669853486446 C 0.02714553592111809 0.026031183885472285 0.027054877872849162 0.026888565978910175 0.02711105708933182 0.02677978077058729 C 0.027054877872849162 0.026888565978910175 0.02628838075074733 0.02723642089245411 0.026407972645278093 0.027232121034739053 C 0.02628838075074733 0.02723642089245411 0.025612541676914548 0.026726893712560155 0.025675954354962654 0.02683137906316798 C 0.025612541676914548 0.026726893712560155 0.025703199725183475 0.02586951161912226 0.025647020508700817 0.025978296827445145 C 0.025703199725183475 0.02586951161912226 0.02646969684728531 0.02552165670557833 0.026350104952754545 0.025525956563293387 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32399976005631453,0.34686818285575527) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.037705586839178316 0.027737262942268547 C 0.03775123533775172 0.027789963149101565 0.038325011223434916 0.028487710926466205 0.03825336882205922 0.028369665424264782 C 0.038325011223434916 0.028487710926466205 0.03859128955848896 0.029219154264054036 0.03856529565568667 0.02915380896868563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03856529565568667 0.02915380896868563 C 0.038073930761408345 0.029469936182070267 0.031870076799325464 0.03347470701284916 0.03266891692434678 0.03294733552930127 C 0.031870076799325464 0.03347470701284916 0.028671738924687915 0.03569351104142354 0.028979214155430904 0.03548226677126029" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028979214155430904 0.03548226677126029 C 0.028972385507540412 0.03541024848509568 0.028882619485958726 0.03446089394175404 0.02889727038074502 0.0346180473372849 C 0.028882619485958726 0.03446089394175404 0.028795581171099573 0.03351129091552373 0.028803403417995376 0.03359642602488998" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028803403417995376 0.03359642602488998 C 0.029053887142148963 0.03342428964805616 0.03255105672627033 0.031042525912665722 0.03180920810783842 0.031530789502884175 C 0.03255105672627033 0.031042525912665722 0.03819695173345664 0.02742113572888391 0.037705586839178316 0.027737262942268547" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.31786072922655745,0.34350738251674695) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027383445147664238 0.025732838421656575 C 0.027474034687732962 0.025882103208239183 0.027344523190205926 0.027106934770293308 0.027424779213752568 0.026951527329832047 C 0.027344523190205926 0.027106934770293308 0.026249527301489176 0.02760387036107035 0.02642037286510454 0.027597727707191697 C 0.026249527301489176 0.02760387036107035 0.025284042910299453 0.026875974389793267 0.025374632450368178 0.027025239176375875 C 0.025284042910299453 0.026875974389793267 0.02541355440782649 0.02565114282773914 0.025333298384279848 0.0258065502682004 C 0.02541355440782649 0.02565114282773914 0.026508550296543244 0.025154207236962097 0.026337704732927878 0.02516034989084075 C 0.026508550296543244 0.025154207236962097 0.027474034687732962 0.025882103208239183 0.027383445147664238 0.025732838421656575 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31786072922655745,0.34350738251674695) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.02708212324306983 0.025926698534864463 C 0.027145535921117937 0.02603118388547229 0.027054877872849017 0.026888565978910182 0.027111057089331664 0.0267797807705873 C 0.027054877872849017 0.026888565978910182 0.026288380750747284 0.02723642089245411 0.02640797264527804 0.027232121034739053 C 0.026288380750747284 0.02723642089245411 0.025612541676914485 0.02672689371256016 0.02567595435496259 0.026831379063167984 C 0.025612541676914485 0.02672689371256016 0.025703199725183402 0.025869511619122265 0.025647020508700755 0.02597829682744515 C 0.025703199725183402 0.025869511619122265 0.026469696847285135 0.025521656705578336 0.026350104952754378 0.025525956563293394 C 0.026469696847285135 0.025521656705578336 0.027145535921117937 0.02603118388547229 0.02708212324306983 0.025926698534864463 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32399976005631453,0.34686818285575527) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.026480852755570564 0.02814084179381396 C 0.026992438658050323 0.02842090848873132 0.03344240449289517 0.03195507839177083 0.03261988358532766 0.03150164213282229 C 0.03344240449289517 0.03195507839177083 0.03666203865146847 0.033755446465227594 0.036351103646380716 0.03358207690119642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036351103646380716 0.03358207690119642 C 0.03635221790586291 0.03363156281136601 0.03637102539317209 0.03434202286039454 0.03636447476016707 0.03417590782323156 C 0.03637102539317209 0.03434202286039454 0.03643514761596388 0.035692086474145575 0.03642971124244105 0.03557545734715219" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03642971124244105 0.03557545734715219 C 0.03604875542614244 0.035358876143169765 0.030965699728079395 0.03247983500046336 0.03185824144685776 0.03297648289936314 C 0.030965699728079395 0.03247983500046336 0.025207624714620906 0.029335615865437436 0.025719210617100665 0.029615682560354798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025719210617100665 0.029615682560354798 C 0.02574071398815398 0.029548629527850583 0.026040721247946298 0.028688142773092475 0.025977251069740474 0.02881104617030421 C 0.026040721247946298 0.028688142773092475 0.026522819562723073 0.028084991429106438 0.026480852755570564 0.02814084179381396" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐2">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.33040803891885345,0.35026227021278866) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025159607045964733 C 0.026549988500571026 0.025159607045964733 0.02749021185912155 0.025921751891621915 0.027404737008344227 0.025769322922490477 C 0.02749021185912155 0.025921751891621915 0.027319262157566897 0.027141183644673408 0.027404737008344227 0.02698875467554197 C 0.027319262157566897 0.027141183644673408 0.026208089097461612 0.027598470552067714 0.026379038799016263 0.027598470552067714 C 0.026208089097461612 0.027598470552067714 0.02526786573891109 0.026836325706410532 0.02535334058968841 0.02698875467554197 C 0.02526786573891109 0.026836325706410532 0.02543881544046574 0.02561689395335904 0.02535334058968841 0.025769322922490477 C 0.02543881544046574 0.02561689395335904 0.026549988500571026 0.025159607045964733 0.026379038799016374 0.025159607045964733 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33040803891885345,0.35026227021278866) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.02552543657188018 C 0.026498703590104634 0.02552543657188018 0.027156859941090006 0.026058937963840206 0.027097027545545882 0.0259522376854482 C 0.027156859941090006 0.026058937963840206 0.027037195150001747 0.02691254019097625 0.027097027545545882 0.026805839912584246 C 0.027037195150001747 0.02691254019097625 0.026259374007928004 0.027232641026152266 0.026379038799016263 0.027232641026152266 C 0.026259374007928004 0.027232641026152266 0.02560121765694263 0.02669913963419224 0.025661050052486756 0.026805839912584246 C 0.02560121765694263 0.02669913963419224 0.02572088244803089 0.025845537407056196 0.025661050052486756 0.0259522376854482 C 0.02572088244803089 0.025845537407056196 0.026498703590104634 0.02552543657188018 0.026379038799016374 0.02552543657188018 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32438666608066413,0.3538416141021874) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.027936431321370633 C 0.03789868489979777 0.02799073969033191 0.03844846027938786 0.028708679633126524 0.0383808628110458 0.02858813174890597 C 0.03844846027938786 0.028708679633126524 0.03868978327710845 0.029449245447276538 0.0386660201643344 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029383005932017262 C 0.038164239094485276 0.02968128458946716 0.03185530947848015 0.033453087842612396 0.032644647326144915 0.032962349821416034 C 0.03185530947848015 0.033453087842612396 0.02890640921454153 0.03546432155012007 0.029193965992357178 0.035271862186373605" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029193965992357178 0.035271862186373605 C 0.029185282466014317 0.035189214942670716 0.0290755158503042 0.034119463930158946 0.029089763676242848 0.03428009526193893 C 0.0290755158503042 0.034119463930158946 0.029017427781497594 0.03326630211693669 0.029022992081093383 0.033344286205013784" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029022992081093383 0.033344286205013784 C 0.029257199216505624 0.03319191028882675 0.032569465911301644 0.03106512063713247 0.03183347770604028 0.0315157752107694 C 0.032569465911301644 0.03106512063713247 0.038356631614078894 0.027638152663920737 0.03785485054422977 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3183652932424747,0.35026227021278866) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025769322922490477 C 0.02749021185912141 0.025921751891621915 0.027319262157566766 0.027141183644673408 0.027404737008344088 0.02698875467554197 C 0.027319262157566766 0.027141183644673408 0.026208089097461564 0.027598470552067714 0.02637903879901621 0.027598470552067714 C 0.026208089097461564 0.027598470552067714 0.025267865738911006 0.026836325706410532 0.025353340589688328 0.02698875467554197 C 0.025267865738911006 0.026836325706410532 0.02543881544046565 0.02561689395335904 0.025353340589688328 0.025769322922490477 C 0.02543881544046565 0.02561689395335904 0.026549988500570856 0.025159607045964733 0.026379038799016208 0.025159607045964733 C 0.026549988500570856 0.025159607045964733 0.02749021185912141 0.025921751891621915 0.027404737008344088 0.025769322922490477 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3183652932424747,0.35026227021278866) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.0259522376854482 C 0.027156859941089854 0.026058937963840206 0.0270371951500016 0.02691254019097625 0.027097027545545726 0.026805839912584246 C 0.0270371951500016 0.02691254019097625 0.02625937400792796 0.027232641026152266 0.02637903879901621 0.027232641026152266 C 0.02625937400792796 0.027232641026152266 0.025601217656942565 0.02669913963419224 0.025661050052486693 0.026805839912584246 C 0.025601217656942565 0.02669913963419224 0.02572088244803082 0.025845537407056196 0.025661050052486693 0.0259522376854482 C 0.02572088244803082 0.025845537407056196 0.02649870359010446 0.02552543657188018 0.026379038799016208 0.02552543657188018 C 0.02649870359010446 0.02552543657188018 0.027156859941089854 0.026058937963840206 0.027097027545545726 0.0259522376854482 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32438666608066413,0.3538416141021874) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.027936431321370633 C 0.02712505555780468 0.02823470997882053 0.03344501710201716 0.031998082094407604 0.03264464732614501 0.0315157752107694 C 0.03344501710201716 0.031998082094407604 0.03652630050444438 0.033908142151217395 0.03622771179842135 0.03372411392502909" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03622771179842135 0.03372411392502909 C 0.036230766932268926 0.033780963822684106 0.0362709552210468 0.034573265106774685 0.036264373404592265 0.03440631269688929 C 0.0362709552210468 0.034573265106774685 0.03631022027848277 0.0358376453558842 0.03630669359587581 0.03572754284365382" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03630669359587581 0.03572754284365382 C 0.03593392560505619 0.03549711009180067 0.030958928645371666 0.03243363841211299 0.031833477706040406 0.032962349821416034 C 0.030958928645371666 0.03243363841211299 0.025310323798001823 0.029084727274567363 0.025812104867850946 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029383005932017262 C 0.02583586798062499 0.029316766416757987 0.026164859689481516 0.028467583864685418 0.026097262221139464 0.02858813174890597 C 0.026164859689481516 0.028467583864685418 0.02666710884352357 0.027882122952409355 0.02662327448795556 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐3">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3309294470828921,0.3572715921358549) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025159607045964733 C 0.026549988500571026 0.025159607045964733 0.02749021185912155 0.025921751891621915 0.027404737008344227 0.025769322922490477 C 0.02749021185912155 0.025921751891621915 0.027319262157566897 0.027141183644673408 0.027404737008344227 0.02698875467554197 C 0.027319262157566897 0.027141183644673408 0.026208089097461612 0.027598470552067714 0.026379038799016263 0.027598470552067714 C 0.026208089097461612 0.027598470552067714 0.02526786573891109 0.026836325706410532 0.02535334058968841 0.02698875467554197 C 0.02526786573891109 0.026836325706410532 0.02543881544046574 0.02561689395335904 0.02535334058968841 0.025769322922490477 C 0.02543881544046574 0.02561689395335904 0.026549988500571026 0.025159607045964733 0.026379038799016374 0.025159607045964733 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3309294470828921,0.3572715921358549) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.02552543657188018 C 0.026498703590104634 0.02552543657188018 0.027156859941090006 0.026058937963840206 0.027097027545545882 0.0259522376854482 C 0.027156859941090006 0.026058937963840206 0.027037195150001747 0.02691254019097625 0.027097027545545882 0.026805839912584246 C 0.027037195150001747 0.02691254019097625 0.026259374007928004 0.027232641026152266 0.026379038799016263 0.027232641026152266 C 0.026259374007928004 0.027232641026152266 0.02560121765694263 0.02669913963419224 0.025661050052486756 0.026805839912584246 C 0.02560121765694263 0.02669913963419224 0.02572088244803089 0.025845537407056196 0.025661050052486756 0.0259522376854482 C 0.02572088244803089 0.025845537407056196 0.026498703590104634 0.02552543657188018 0.026379038799016374 0.02552543657188018 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3249080742447028,0.36085093602525364) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.027936431321370633 C 0.03789868489979777 0.02799073969033191 0.03844846027938786 0.028708679633126524 0.0383808628110458 0.02858813174890597 C 0.03844846027938786 0.028708679633126524 0.03868978327710845 0.029449245447276538 0.0386660201643344 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029383005932017262 C 0.038164239094485276 0.02968128458946716 0.03186195910577897 0.03344329341475949 0.032644647326144915 0.032962349821416034 C 0.03186195910577897 0.03344329341475949 0.028992854369426235 0.03533699398803224 0.029273761519943056 0.03515432905213869" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029273761519943056 0.03515432905213869 C 0.029266805548116497 0.03507350103868293 0.0291767037789567 0.034022264723876164 0.029190289858024333 0.034184392890669615 C 0.0291767037789567 0.034022264723876164 0.029104098463890376 0.03312749089727959 0.02911072857113145 0.03320879105061729" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02911072857113145 0.03320879105061729 C 0.029337624332373854 0.03306770639729663 0.03256215453713181 0.031076411899998845 0.03183347770604028 0.0315157752107694 C 0.03256215453713181 0.031076411899998845 0.038356631614078894 0.027638152663920737 0.03785485054422977 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3188867014065134,0.3572715921358549) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025769322922490477 C 0.02749021185912141 0.025921751891621915 0.027319262157566766 0.027141183644673408 0.027404737008344088 0.02698875467554197 C 0.027319262157566766 0.027141183644673408 0.026208089097461564 0.027598470552067714 0.02637903879901621 0.027598470552067714 C 0.026208089097461564 0.027598470552067714 0.025267865738911006 0.026836325706410532 0.025353340589688328 0.02698875467554197 C 0.025267865738911006 0.026836325706410532 0.02543881544046565 0.02561689395335904 0.025353340589688328 0.025769322922490477 C 0.02543881544046565 0.02561689395335904 0.026549988500570856 0.025159607045964733 0.026379038799016208 0.025159607045964733 C 0.026549988500570856 0.025159607045964733 0.02749021185912141 0.025921751891621915 0.027404737008344088 0.025769322922490477 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3188867014065134,0.3572715921358549) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.0259522376854482 C 0.027156859941089854 0.026058937963840206 0.0270371951500016 0.02691254019097625 0.027097027545545726 0.026805839912584246 C 0.0270371951500016 0.02691254019097625 0.02625937400792796 0.027232641026152266 0.02637903879901621 0.027232641026152266 C 0.02625937400792796 0.027232641026152266 0.025601217656942565 0.02669913963419224 0.025661050052486693 0.026805839912584246 C 0.025601217656942565 0.02669913963419224 0.02572088244803082 0.025845537407056196 0.025661050052486693 0.0259522376854482 C 0.02572088244803082 0.025845537407056196 0.02649870359010446 0.02552543657188018 0.026379038799016208 0.02552543657188018 C 0.02649870359010446 0.02552543657188018 0.027156859941089854 0.026058937963840206 0.027097027545545726 0.0259522376854482 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3249080742447028,0.36085093602525364) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.027936431321370633 C 0.02712505555780468 0.02823470997882053 0.03342334088986524 0.03198272138270113 0.03264464732614501 0.0315157752107694 C 0.03342334088986524 0.03198272138270113 0.03624450974646942 0.03370845289903326 0.035967597252598314 0.03353978538455142" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035967597252598314 0.03353978538455142 C 0.0359695865788006 0.03357021329262006 0.03599764587593581 0.03407386820339034 0.03599146916702581 0.03390492028137511 C 0.03599764587593581 0.03407386820339034 0.036045905142226095 0.035705680462680744 0.03604171775951838 0.035567160448734154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03604171775951838 0.035567160448734154 C 0.03569103108839521 0.035350092896457644 0.03098100996506812 0.032447003611689625 0.031833477706040406 0.032962349821416034 C 0.03098100996506812 0.032447003611689625 0.025310323798001823 0.029084727274567363 0.025812104867850946 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029383005932017262 C 0.02583586798062499 0.029316766416757987 0.026164859689481516 0.028467583864685418 0.026097262221139464 0.02858813174890597 C 0.026164859689481516 0.028467583864685418 0.02666710884352357 0.027882122952409355 0.02662327448795556 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐4">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.33125191136025617,0.3639462407532253) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026358368617803492 0.02515979277132717 C 0.026529292282890582 0.025156720976538618 0.027482291304127576 0.025901854872507242 0.027394245698932423 0.025750985016440388 C 0.027482291304127576 0.025901854872507242 0.027332037820253365 0.027124172694984846 0.027414915880145305 0.02697023104412944 C 0.027332037820253365 0.027124172694984846 0.026228785315142056 0.027601356621493822 0.026399708980229145 0.02759828482670527 C 0.026228785315142056 0.027601356621493822 0.02527578629390506 0.0268562227255252 0.025363831899100214 0.027007092581592056 C 0.02527578629390506 0.0268562227255252 0.025426039777779273 0.025633904903047594 0.025343161717887332 0.025787846553903003 C 0.025426039777779273 0.025633904903047594 0.026529292282890582 0.025156720976538618 0.026358368617803492 0.02515979277132717 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33125191136025617,0.3639462407532253) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026364569672167357 0.025525566579633882 C 0.026484216237728325 0.025523416323281894 0.027151315552594226 0.026045010050459935 0.02708968362895762 0.025939401151213137 C 0.027151315552594226 0.026045010050459935 0.027046138113882276 0.02690063252619426 0.02710415275580664 0.026792873370595473 C 0.027046138113882276 0.02690063252619426 0.026273861360304313 0.02723466127475055 0.02639350792586528 0.02723251101839856 C 0.026273861360304313 0.02723466127475055 0.02560676204543841 0.026713067547572508 0.02566839396907502 0.026818676446819307 C 0.02560676204543841 0.026713067547572508 0.025711939484150362 0.025857445071838184 0.025653924842226 0.02596520422743697 C 0.025711939484150362 0.025857445071838184 0.026484216237728325 0.025523416323281894 0.026364569672167357 0.025525566579633882 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32529212787159945,0.3676332375256993) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03778106276518526 0.027836176550961243 C 0.037825811007630036 0.027889688989061908 0.03838767221444991 0.028597640673612132 0.03831804167452254 0.02847832580816922 C 0.03838767221444991 0.028597640673612132 0.03864151154179628 0.029333757363618405 0.03861662924431368 0.02926795493627616" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03861662924431368 0.02926795493627616 C 0.03811998062025894 0.029575204667315662 0.03189421655205267 0.03344812504575444 0.03265684575565681 0.03295495170875018 C 0.03189421655205267 0.03344812504575444 0.029199098221514612 0.03537195858629203 0.029465078801064012 0.035186034980327276" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029465078801064012 0.035186034980327276 C 0.029461239537736727 0.03512973631302865 0.02940546408844803 0.03434484488184488 0.029419007641136582 0.03451045097274383 C 0.02940546408844803 0.03434484488184488 0.02929285187944012 0.03308945446593959 0.029302556168801386 0.033198761889539914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029302556168801386 0.033198761889539914 C 0.029512449761111968 0.03305912950903119 0.03252782149289371 0.03107629121188703 0.031821279276528384 0.03152317332343525 C 0.03252782149289371 0.03107629121188703 0.03827771138924 0.02752892681992174 0.03778106276518526 0.027836176550961243" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3192109998523742,0.3641626368221984) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027394245698932285 0.02575098501644039 C 0.027482291304127437 0.025901854872507245 0.027332037820253233 0.027124172694984846 0.027414915880145167 0.02697023104412944 C 0.027332037820253233 0.027124172694984846 0.026228785315142007 0.027601356621493826 0.026399708980229093 0.027598284826705274 C 0.026228785315142007 0.027601356621493826 0.025275786293904978 0.0268562227255252 0.02536383189910013 0.027007092581592056 C 0.025275786293904978 0.0268562227255252 0.025426039777779182 0.0256339049030476 0.02534316171788725 0.025787846553903006 C 0.025426039777779182 0.0256339049030476 0.026529292282890412 0.02515672097653862 0.026358368617803326 0.025159792771327173 C 0.026529292282890412 0.02515672097653862 0.027482291304127437 0.025901854872507245 0.027394245698932285 0.02575098501644039 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3192109998523742,0.3641626368221984) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027089683628957466 0.02593940115121314 C 0.027151315552594073 0.02604501005045994 0.02704613811388213 0.026900632526194262 0.027104152755806483 0.026792873370595476 C 0.02704613811388213 0.026900632526194262 0.026273861360304268 0.02723466127475055 0.02639350792586523 0.02723251101839856 C 0.026273861360304268 0.02723466127475055 0.02560676204543835 0.026713067547572508 0.025668393969074957 0.026818676446819307 C 0.02560676204543835 0.026713067547572508 0.02571193948415029 0.025857445071838184 0.025653924842225936 0.02596520422743697 C 0.02571193948415029 0.025857445071838184 0.02648421623772815 0.0255234163232819 0.02636456967216719 0.025525566579633886 C 0.02648421623772815 0.0255234163232819 0.027151315552594073 0.02604501005045994 0.027089683628957466 0.02593940115121314 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32529212787159945,0.3676332375256993) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.026551197332345785 0.028037996714922457 C 0.027057958000614554 0.028327213440214202 0.033405528892460484 0.03194867691692919 0.03263232535157099 0.03150859741842338 C 0.033405528892460484 0.03194867691692919 0.03609608269564044 0.03346981347020627 0.03582963982301972 0.0333189506969922" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03582963982301972 0.0333189506969922 C 0.035831281244741484 0.03337645548228885 0.035854855273895224 0.034176646585746547 0.035849336883680916 0.03400900812055198 C 0.035854855273895224 0.034176646585746547 0.03589973747408395 0.03544074595922493 0.035895860505591404 0.03533061227932701" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035895860505591404 0.03533061227932701 C 0.035558355436843325 0.03513385522386327 0.03100153394359758 0.03248355383300656 0.03184579968061443 0.03296952761376205 C 0.03100153394359758 0.03248355383300656 0.02525791099312045 0.029209710184969373 0.025764671661389217 0.029498926910261118" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025764671661389217 0.029498926910261118 C 0.025787308350980365 0.02943227048428284 0.026101855742396044 0.028577305615576882 0.026036311936483 0.02869904979852177 C 0.026101855742396044 0.028577305615576882 0.026594104448667683 0.027982908957955847 0.026551197332345785 0.028037996714922457" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐5">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3316768645811442,0.3709428872012973) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025159607045964733 C 0.026549988500571026 0.025159607045964733 0.02749021185912155 0.025921751891621915 0.027404737008344227 0.025769322922490477 C 0.02749021185912155 0.025921751891621915 0.027319262157566897 0.027141183644673408 0.027404737008344227 0.02698875467554197 C 0.027319262157566897 0.027141183644673408 0.026208089097461612 0.027598470552067714 0.026379038799016263 0.027598470552067714 C 0.026208089097461612 0.027598470552067714 0.02526786573891109 0.026836325706410532 0.02535334058968841 0.02698875467554197 C 0.02526786573891109 0.026836325706410532 0.02543881544046574 0.02561689395335904 0.02535334058968841 0.025769322922490477 C 0.02543881544046574 0.02561689395335904 0.026549988500571026 0.025159607045964733 0.026379038799016374 0.025159607045964733 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3316768645811442,0.3709428872012973) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.02552543657188018 C 0.026498703590104634 0.02552543657188018 0.027156859941090006 0.026058937963840206 0.027097027545545882 0.0259522376854482 C 0.027156859941090006 0.026058937963840206 0.027037195150001747 0.02691254019097625 0.027097027545545882 0.026805839912584246 C 0.027037195150001747 0.02691254019097625 0.026259374007928004 0.027232641026152266 0.026379038799016263 0.027232641026152266 C 0.026259374007928004 0.027232641026152266 0.02560121765694263 0.02669913963419224 0.025661050052486756 0.026805839912584246 C 0.02560121765694263 0.02669913963419224 0.02572088244803089 0.025845537407056196 0.025661050052486756 0.0259522376854482 C 0.02572088244803089 0.025845537407056196 0.026498703590104634 0.02552543657188018 0.026379038799016374 0.02552543657188018 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3256554917429549,0.37452223109069605) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.027936431321370633 C 0.03789868489979777 0.02799073969033191 0.03844846027938786 0.028708679633126524 0.0383808628110458 0.02858813174890597 C 0.03844846027938786 0.028708679633126524 0.03868978327710845 0.029449245447276538 0.0386660201643344 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029383005932017262 C 0.038164239094485276 0.02968128458946716 0.031892987325592724 0.03342338689010756 0.032644647326144915 0.032962349821416034 C 0.031892987325592724 0.03342338689010756 0.029396221227005057 0.03507820916755722 0.029646100157708122 0.03491545075631559" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029646100157708122 0.03491545075631559 C 0.02964092231485464 0.03486018385479169 0.02957057650616377 0.03408998820405949 0.029583966043466307 0.034252247938028814 C 0.02957057650616377 0.03408998820405949 0.02947721401562863 0.03286134111623832 0.02948542571007768 0.032968333948683745" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02948542571007768 0.032968333948683745 C 0.029681096709741228 0.03284728738719088 0.032530929775552955 0.03109644999182664 0.03183347770604028 0.0315157752107694 C 0.032530929775552955 0.03109644999182664 0.038356631614078894 0.027638152663920737 0.03785485054422977 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.31963411890476545,0.3709428872012973) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025769322922490477 C 0.02749021185912141 0.025921751891621915 0.027319262157566766 0.027141183644673408 0.027404737008344088 0.02698875467554197 C 0.027319262157566766 0.027141183644673408 0.026208089097461564 0.027598470552067714 0.02637903879901621 0.027598470552067714 C 0.026208089097461564 0.027598470552067714 0.025267865738911006 0.026836325706410532 0.025353340589688328 0.02698875467554197 C 0.025267865738911006 0.026836325706410532 0.02543881544046565 0.02561689395335904 0.025353340589688328 0.025769322922490477 C 0.02543881544046565 0.02561689395335904 0.026549988500570856 0.025159607045964733 0.026379038799016208 0.025159607045964733 C 0.026549988500570856 0.025159607045964733 0.02749021185912141 0.025921751891621915 0.027404737008344088 0.025769322922490477 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31963411890476545,0.3709428872012973) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.0259522376854482 C 0.027156859941089854 0.026058937963840206 0.0270371951500016 0.02691254019097625 0.027097027545545726 0.026805839912584246 C 0.0270371951500016 0.02691254019097625 0.02625937400792796 0.027232641026152266 0.02637903879901621 0.027232641026152266 C 0.02625937400792796 0.027232641026152266 0.025601217656942565 0.02669913963419224 0.025661050052486693 0.026805839912584246 C 0.025601217656942565 0.02669913963419224 0.02572088244803082 0.025845537407056196 0.025661050052486693 0.0259522376854482 C 0.02572088244803082 0.025845537407056196 0.02649870359010446 0.02552543657188018 0.026379038799016208 0.02552543657188018 C 0.02649870359010446 0.02552543657188018 0.027156859941089854 0.026058937963840206 0.027097027545545726 0.0259522376854482 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3256554917429549,0.37452223109069605) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.027936431321370633 C 0.02712505555780468 0.02823470997882053 0.03340198261678245 0.03196872195033266 0.03264464732614501 0.0315157752107694 C 0.03340198261678245 0.03196872195033266 0.03596685219639314 0.03352646027824308 0.03571129797560482 0.03337179219612972" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03571129797560482 0.03337179219612972 C 0.03571253557503099 0.033417827836982966 0.035730392201263936 0.034093429967866136 0.03572614916871883 0.03392421988636863 C 0.035730392201263936 0.034093429967866136 0.035765219799265016 0.03552548761474404 0.03576221436614608 0.03540231317409978" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03576221436614608 0.03540231317409978 C 0.03543481964447061 0.03519898289470947 0.031004301914515812 0.032460740884575824 0.031833477706040406 0.032962349821416034 C 0.031004301914515812 0.032460740884575824 0.025310323798001823 0.029084727274567363 0.025812104867850946 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029383005932017262 C 0.02583586798062499 0.029316766416757987 0.026164859689481516 0.028467583864685418 0.026097262221139464 0.02858813174890597 C 0.026164859689481516 0.028467583864685418 0.02666710884352357 0.027882122952409355 0.02662327448795556 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐6">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.33219218476540396,0.3781293966011199) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025159607045964733 C 0.026549988500571026 0.025159607045964733 0.02749021185912155 0.025921751891621915 0.027404737008344227 0.025769322922490477 C 0.02749021185912155 0.025921751891621915 0.027319262157566897 0.027141183644673408 0.027404737008344227 0.02698875467554197 C 0.027319262157566897 0.027141183644673408 0.026208089097461612 0.027598470552067714 0.026379038799016263 0.027598470552067714 C 0.026208089097461612 0.027598470552067714 0.02526786573891109 0.026836325706410532 0.02535334058968841 0.02698875467554197 C 0.02526786573891109 0.026836325706410532 0.02543881544046574 0.02561689395335904 0.02535334058968841 0.025769322922490477 C 0.02543881544046574 0.02561689395335904 0.026549988500571026 0.025159607045964733 0.026379038799016374 0.025159607045964733 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33219218476540396,0.3781293966011199) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.02552543657188018 C 0.026498703590104634 0.02552543657188018 0.027156859941090006 0.026058937963840206 0.027097027545545882 0.0259522376854482 C 0.027156859941090006 0.026058937963840206 0.027037195150001747 0.02691254019097625 0.027097027545545882 0.026805839912584246 C 0.027037195150001747 0.02691254019097625 0.026259374007928004 0.027232641026152266 0.026379038799016263 0.027232641026152266 C 0.026259374007928004 0.027232641026152266 0.02560121765694263 0.02669913963419224 0.025661050052486756 0.026805839912584246 C 0.02560121765694263 0.02669913963419224 0.02572088244803089 0.025845537407056196 0.025661050052486756 0.0259522376854482 C 0.02572088244803089 0.025845537407056196 0.026498703590104634 0.02552543657188018 0.026379038799016374 0.02552543657188018 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32617081192721464,0.3817087404905186) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.027936431321370633 C 0.03789868489979777 0.02799073969033191 0.03844846027938786 0.028708679633126524 0.0383808628110458 0.02858813174890597 C 0.03844846027938786 0.028708679633126524 0.03868978327710845 0.029449245447276538 0.0386660201643344 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029383005932017262 C 0.038164239094485276 0.02968128458946716 0.03189389073054205 0.03342769742916759 0.032644647326144915 0.032962349821416034 C 0.03189389073054205 0.03342769742916759 0.029407965491346316 0.03513424617533762 0.029656941017100053 0.03496717722503596" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029656941017100053 0.03496717722503596 C 0.02965246492708007 0.034899428013060674 0.029592149325058787 0.033996560245387226 0.02960322793686024 0.03415418668133258 C 0.029592149325058787 0.033996560245387226 0.029517395153701116 0.03298578276972168 0.029523997675482586 0.03307565999369175" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029523997675482586 0.03307565999369175 C 0.029716454344695727 0.032945669595114885 0.032527715445102544 0.03108750615474264 0.03183347770604028 0.0315157752107694 C 0.032527715445102544 0.03108750615474264 0.038356631614078894 0.027638152663920737 0.03785485054422977 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3201494390890252,0.3781293966011199) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025769322922490477 C 0.02749021185912141 0.025921751891621915 0.027319262157566766 0.027141183644673408 0.027404737008344088 0.02698875467554197 C 0.027319262157566766 0.027141183644673408 0.026208089097461564 0.027598470552067714 0.02637903879901621 0.027598470552067714 C 0.026208089097461564 0.027598470552067714 0.025267865738911006 0.026836325706410532 0.025353340589688328 0.02698875467554197 C 0.025267865738911006 0.026836325706410532 0.02543881544046565 0.02561689395335904 0.025353340589688328 0.025769322922490477 C 0.02543881544046565 0.02561689395335904 0.026549988500570856 0.025159607045964733 0.026379038799016208 0.025159607045964733 C 0.026549988500570856 0.025159607045964733 0.02749021185912141 0.025921751891621915 0.027404737008344088 0.025769322922490477 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3201494390890252,0.3781293966011199) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.0259522376854482 C 0.027156859941089854 0.026058937963840206 0.0270371951500016 0.02691254019097625 0.027097027545545726 0.026805839912584246 C 0.0270371951500016 0.02691254019097625 0.02625937400792796 0.027232641026152266 0.02637903879901621 0.027232641026152266 C 0.02625937400792796 0.027232641026152266 0.025601217656942565 0.02669913963419224 0.025661050052486693 0.026805839912584246 C 0.025601217656942565 0.02669913963419224 0.02572088244803082 0.025845537407056196 0.025661050052486693 0.0259522376854482 C 0.02572088244803082 0.025845537407056196 0.02649870359010446 0.02552543657188018 0.026379038799016208 0.02552543657188018 C 0.02649870359010446 0.02552543657188018 0.027156859941089854 0.026058937963840206 0.027097027545545726 0.0259522376854482 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32617081192721464,0.3817087404905186) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.027936431321370633 C 0.02712505555780468 0.02823470997882053 0.03337559511045185 0.031949943841470804 0.03264464732614501 0.0315157752107694 C 0.03337559511045185 0.031949943841470804 0.03562381461409535 0.033282344863039 0.03539464789963763 0.03314645488978749" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03539464789963763 0.03314645488978749 C 0.03539615119093443 0.03320230415394998 0.03541697587155226 0.03398236301030625 0.035412687395199205 0.033816646059737304 C 0.03541697587155226 0.03398236301030625 0.035448894800930525 0.03524492598302135 0.03544610961587427 0.03513505829661488" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03544610961587427 0.03513505829661488 C 0.035145056956721446 0.03495399925701498 0.03103064397703846 0.03248301212436623 0.031833477706040406 0.032962349821416034 C 0.03103064397703846 0.03248301212436623 0.025310323798001823 0.029084727274567363 0.025812104867850946 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029383005932017262 C 0.02583586798062499 0.029316766416757987 0.026164859689481516 0.028467583864685418 0.026097262221139464 0.02858813174890597 C 0.026164859689481516 0.028467583864685418 0.02666710884352357 0.027882122952409355 0.02662327448795556 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐7">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3325125830455068,0.3850464943204359) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025159607045964733 C 0.026549988500571026 0.025159607045964733 0.02749021185912155 0.025921751891621915 0.027404737008344227 0.025769322922490477 C 0.02749021185912155 0.025921751891621915 0.027319262157566897 0.027141183644673408 0.027404737008344227 0.02698875467554197 C 0.027319262157566897 0.027141183644673408 0.026208089097461612 0.027598470552067714 0.026379038799016263 0.027598470552067714 C 0.026208089097461612 0.027598470552067714 0.02526786573891109 0.026836325706410532 0.02535334058968841 0.02698875467554197 C 0.02526786573891109 0.026836325706410532 0.02543881544046574 0.02561689395335904 0.02535334058968841 0.025769322922490477 C 0.02543881544046574 0.02561689395335904 0.026549988500571026 0.025159607045964733 0.026379038799016374 0.025159607045964733 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3325125830455068,0.3850464943204359) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.02552543657188018 C 0.026498703590104634 0.02552543657188018 0.027156859941090006 0.026058937963840206 0.027097027545545882 0.0259522376854482 C 0.027156859941090006 0.026058937963840206 0.027037195150001747 0.02691254019097625 0.027097027545545882 0.026805839912584246 C 0.027037195150001747 0.02691254019097625 0.026259374007928004 0.027232641026152266 0.026379038799016263 0.027232641026152266 C 0.026259374007928004 0.027232641026152266 0.02560121765694263 0.02669913963419224 0.025661050052486756 0.026805839912584246 C 0.02560121765694263 0.02669913963419224 0.02572088244803089 0.025845537407056196 0.025661050052486756 0.0259522376854482 C 0.02572088244803089 0.025845537407056196 0.026498703590104634 0.02552543657188018 0.026379038799016374 0.02552543657188018 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3264912102073175,0.38862583820983465) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.027936431321370633 C 0.03789868489979777 0.02799073969033191 0.03844846027938786 0.028708679633126524 0.0383808628110458 0.02858813174890597 C 0.03844846027938786 0.028708679633126524 0.03868978327710845 0.029449245447276538 0.0386660201643344 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029383005932017262 C 0.038164239094485276 0.02968128458946716 0.03190197331280261 0.03342522981587568 0.032644647326144915 0.032962349821416034 C 0.03190197331280261 0.03342522981587568 0.029513039060733562 0.035102167202542736 0.029753932004226744 0.03493756586553299" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029753932004226744 0.03493756586553299 C 0.02974993541864155 0.03486392315072906 0.02969706831554803 0.0338903559013072 0.02970597297720442 0.03405385328788579 C 0.02969706831554803 0.0338903559013072 0.029642167988278862 0.03288574255481532 0.029647076064350058 0.03297559722658997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029647076064350058 0.03297559722658997 C 0.029829276201157575 0.032853945391938255 0.032517458912696924 0.031095844718667786 0.03183347770604028 0.0315157752107694 C 0.032517458912696924 0.031095844718667786 0.038356631614078894 0.027638152663920737 0.03785485054422977 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.32046983736912804,0.3850464943204359) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025769322922490477 C 0.02749021185912141 0.025921751891621915 0.027319262157566766 0.027141183644673408 0.027404737008344088 0.02698875467554197 C 0.027319262157566766 0.027141183644673408 0.026208089097461564 0.027598470552067714 0.02637903879901621 0.027598470552067714 C 0.026208089097461564 0.027598470552067714 0.025267865738911006 0.026836325706410532 0.025353340589688328 0.02698875467554197 C 0.025267865738911006 0.026836325706410532 0.02543881544046565 0.02561689395335904 0.025353340589688328 0.025769322922490477 C 0.02543881544046565 0.02561689395335904 0.026549988500570856 0.025159607045964733 0.026379038799016208 0.025159607045964733 C 0.026549988500570856 0.025159607045964733 0.02749021185912141 0.025921751891621915 0.027404737008344088 0.025769322922490477 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32046983736912804,0.3850464943204359) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.0259522376854482 C 0.027156859941089854 0.026058937963840206 0.0270371951500016 0.02691254019097625 0.027097027545545726 0.026805839912584246 C 0.0270371951500016 0.02691254019097625 0.02625937400792796 0.027232641026152266 0.02637903879901621 0.027232641026152266 C 0.02625937400792796 0.027232641026152266 0.025601217656942565 0.02669913963419224 0.025661050052486693 0.026805839912584246 C 0.025601217656942565 0.02669913963419224 0.02572088244803082 0.025845537407056196 0.025661050052486693 0.0259522376854482 C 0.02572088244803082 0.025845537407056196 0.02649870359010446 0.02552543657188018 0.026379038799016208 0.02552543657188018 C 0.02649870359010446 0.02552543657188018 0.027156859941089854 0.026058937963840206 0.027097027545545726 0.0259522376854482 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3264912102073175,0.38862583820983465) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.027936431321370633 C 0.02712505555780468 0.02823470997882053 0.03336248916983819 0.03194362657159394 0.03264464732614501 0.0315157752107694 C 0.03336248916983819 0.03194362657159394 0.03545343738611774 0.03320022035463985 0.035237376612273684 0.033070647651265196" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035237376612273684 0.033070647651265196 C 0.03523849479486553 0.033120748031519244 0.03525339316557043 0.03383596927770829 0.035250794803375805 0.033671852214313736 C 0.03525339316557043 0.03383596927770829 0.035270037138212015 0.03515406909514035 0.03526855695860923 0.03504005241199984" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03526855695860923 0.03504005241199984 C 0.034982300354228495 0.03486691052945119 0.031045440031810548 0.03249092928141749 0.031833477706040406 0.032962349821416034 C 0.031045440031810548 0.03249092928141749 0.025310323798001823 0.029084727274567363 0.025812104867850946 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029383005932017262 C 0.02583586798062499 0.029316766416757987 0.026164859689481516 0.028467583864685418 0.026097262221139464 0.02858813174890597 C 0.026164859689481516 0.028467583864685418 0.02666710884352357 0.027882122952409355 0.02662327448795556 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐8">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.33286124023201197,0.39192089504446403) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025159607045964733 C 0.026549988500571026 0.025159607045964733 0.02749021185912155 0.025921751891621915 0.027404737008344227 0.025769322922490477 C 0.02749021185912155 0.025921751891621915 0.027319262157566897 0.027141183644673408 0.027404737008344227 0.02698875467554197 C 0.027319262157566897 0.027141183644673408 0.026208089097461612 0.027598470552067714 0.026379038799016263 0.027598470552067714 C 0.026208089097461612 0.027598470552067714 0.02526786573891109 0.026836325706410532 0.02535334058968841 0.02698875467554197 C 0.02526786573891109 0.026836325706410532 0.02543881544046574 0.02561689395335904 0.02535334058968841 0.025769322922490477 C 0.02543881544046574 0.02561689395335904 0.026549988500571026 0.025159607045964733 0.026379038799016374 0.025159607045964733 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33286124023201197,0.39192089504446403) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.02552543657188018 C 0.026498703590104634 0.02552543657188018 0.027156859941090006 0.026058937963840206 0.027097027545545882 0.0259522376854482 C 0.027156859941090006 0.026058937963840206 0.027037195150001747 0.02691254019097625 0.027097027545545882 0.026805839912584246 C 0.027037195150001747 0.02691254019097625 0.026259374007928004 0.027232641026152266 0.026379038799016263 0.027232641026152266 C 0.026259374007928004 0.027232641026152266 0.02560121765694263 0.02669913963419224 0.025661050052486756 0.026805839912584246 C 0.02560121765694263 0.02669913963419224 0.02572088244803089 0.025845537407056196 0.025661050052486756 0.0259522376854482 C 0.02572088244803089 0.025845537407056196 0.026498703590104634 0.02552543657188018 0.026379038799016374 0.02552543657188018 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32683986739382265,0.39550023893386277) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.027936431321370633 C 0.03789868489979777 0.02799073969033191 0.03844846027938786 0.028708679633126524 0.0383808628110458 0.02858813174890597 C 0.03844846027938786 0.028708679633126524 0.03868978327710845 0.029449245447276538 0.0386660201643344 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029383005932017262 C 0.038164239094485276 0.02968128458946716 0.03189623520770789 0.03341647808067243 0.032644647326144915 0.032962349821416034 C 0.03189623520770789 0.03341647808067243 0.029438443694502166 0.0349883946449005 0.02968507474309007 0.034832545043094" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02968507474309007 0.034832545043094 C 0.02968193254512139 0.034748589424802453 0.02964166534938996 0.033664602686590175 0.029647368367465888 0.03382507762359541 C 0.02964166534938996 0.033664602686590175 0.02961407770607167 0.03283032648031748 0.029616638526178917 0.032906845799031165" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029616638526178917 0.032906845799031165 C 0.029801375124500696 0.03279092325000935 0.032519995374211186 0.031101574004297687 0.03183347770604028 0.0315157752107694 C 0.032519995374211186 0.031101574004297687 0.038356631614078894 0.027638152663920737 0.03785485054422977 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3208184945556332,0.39192089504446403) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025769322922490477 C 0.02749021185912141 0.025921751891621915 0.027319262157566766 0.027141183644673408 0.027404737008344088 0.02698875467554197 C 0.027319262157566766 0.027141183644673408 0.026208089097461564 0.027598470552067714 0.02637903879901621 0.027598470552067714 C 0.026208089097461564 0.027598470552067714 0.025267865738911006 0.026836325706410532 0.025353340589688328 0.02698875467554197 C 0.025267865738911006 0.026836325706410532 0.02543881544046565 0.02561689395335904 0.025353340589688328 0.025769322922490477 C 0.02543881544046565 0.02561689395335904 0.026549988500570856 0.025159607045964733 0.026379038799016208 0.025159607045964733 C 0.026549988500570856 0.025159607045964733 0.02749021185912141 0.025921751891621915 0.027404737008344088 0.025769322922490477 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3208184945556332,0.39192089504446403) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.0259522376854482 C 0.027156859941089854 0.026058937963840206 0.0270371951500016 0.02691254019097625 0.027097027545545726 0.026805839912584246 C 0.0270371951500016 0.02691254019097625 0.02625937400792796 0.027232641026152266 0.02637903879901621 0.027232641026152266 C 0.02625937400792796 0.027232641026152266 0.025601217656942565 0.02669913963419224 0.025661050052486693 0.026805839912584246 C 0.025601217656942565 0.02669913963419224 0.02572088244803082 0.025845537407056196 0.025661050052486693 0.0259522376854482 C 0.02572088244803082 0.025845537407056196 0.02649870359010446 0.02552543657188018 0.026379038799016208 0.02552543657188018 C 0.02649870359010446 0.02552543657188018 0.027156859941089854 0.026058937963840206 0.027097027545545726 0.0259522376854482 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32683986739382265,0.39550023893386277) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.027936431321370633 C 0.02712505555780468 0.02823470997882053 0.033340264850354774 0.03192860603087472 0.03264464732614501 0.0315157752107694 C 0.033340264850354774 0.03192860603087472 0.035164521232833375 0.033004953325289924 0.03497068477847273 0.032890401162634496" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03497068477847273 0.032890401162634496 C 0.034971248525264904 0.032967258019626765 0.034978394552931696 0.033976823472993294 0.034977449739978794 0.03381268344654176 C 0.034978394552931696 0.033976823472993294 0.034982403600068275 0.034947364649512175 0.034982022533907545 0.034860081480052915" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034982022533907545 0.034860081480052915 C 0.03471964379825195 0.03470193717516651 0.03106931790053569 0.03250592685907973 0.031833477706040406 0.032962349821416034 C 0.03106931790053569 0.03250592685907973 0.025310323798001823 0.029084727274567363 0.025812104867850946 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029383005932017262 C 0.02583586798062499 0.029316766416757987 0.026164859689481516 0.028467583864685418 0.026097262221139464 0.02858813174890597 C 0.026164859689481516 0.028467583864685418 0.02666710884352357 0.027882122952409355 0.02662327448795556 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐9">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.333035696249974,0.39845049710560954) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025159607045964733 C 0.026549988500571026 0.025159607045964733 0.02749021185912155 0.025921751891621915 0.027404737008344227 0.025769322922490477 C 0.02749021185912155 0.025921751891621915 0.027319262157566897 0.027141183644673408 0.027404737008344227 0.02698875467554197 C 0.027319262157566897 0.027141183644673408 0.026208089097461612 0.027598470552067714 0.026379038799016263 0.027598470552067714 C 0.026208089097461612 0.027598470552067714 0.02526786573891109 0.026836325706410532 0.02535334058968841 0.02698875467554197 C 0.02526786573891109 0.026836325706410532 0.02543881544046574 0.02561689395335904 0.02535334058968841 0.025769322922490477 C 0.02543881544046574 0.02561689395335904 0.026549988500571026 0.025159607045964733 0.026379038799016374 0.025159607045964733 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.333035696249974,0.39845049710560954) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.02552543657188018 C 0.026498703590104634 0.02552543657188018 0.027156859941090006 0.026058937963840206 0.027097027545545882 0.0259522376854482 C 0.027156859941090006 0.026058937963840206 0.027037195150001747 0.02691254019097625 0.027097027545545882 0.026805839912584246 C 0.027037195150001747 0.02691254019097625 0.026259374007928004 0.027232641026152266 0.026379038799016263 0.027232641026152266 C 0.026259374007928004 0.027232641026152266 0.02560121765694263 0.02669913963419224 0.025661050052486756 0.026805839912584246 C 0.02560121765694263 0.02669913963419224 0.02572088244803089 0.025845537407056196 0.025661050052486756 0.0259522376854482 C 0.02572088244803089 0.025845537407056196 0.026498703590104634 0.02552543657188018 0.026379038799016374 0.02552543657188018 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32701432341178466,0.40202984099500827) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.027936431321370633 C 0.03789868489979777 0.02799073969033191 0.03844846027938786 0.028708679633126524 0.0383808628110458 0.02858813174890597 C 0.03844846027938786 0.028708679633126524 0.03868978327710845 0.029449245447276538 0.0386660201643344 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029383005932017262 C 0.038164239094485276 0.02968128458946716 0.031896770913090775 0.033420996325756756 0.032644647326144915 0.032962349821416034 C 0.031896770913090775 0.033420996325756756 0.029445407864479668 0.03504713183099673 0.029691503207684686 0.03488676398410591" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029691503207684686 0.03488676398410591 C 0.02968991321322264 0.03481316208934315 0.029668334767752425 0.03383849535006886 0.02967242327414014 0.034003541246952866 C 0.029668334767752425 0.03383849535006886 0.029639942619106435 0.03281476921937654 0.029642441131032104 0.032906213221497796" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029642441131032104 0.032906213221497796 C 0.029825027512282786 0.03279034338727043 0.03251784515714009 0.031101626719092133 0.03183347770604028 0.0315157752107694 C 0.03251784515714009 0.031101626719092133 0.038356631614078894 0.027638152663920737 0.03785485054422977 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3209929505735952,0.39845049710560954) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025769322922490477 C 0.02749021185912141 0.025921751891621915 0.027319262157566766 0.027141183644673408 0.027404737008344088 0.02698875467554197 C 0.027319262157566766 0.027141183644673408 0.026208089097461564 0.027598470552067714 0.02637903879901621 0.027598470552067714 C 0.026208089097461564 0.027598470552067714 0.025267865738911006 0.026836325706410532 0.025353340589688328 0.02698875467554197 C 0.025267865738911006 0.026836325706410532 0.02543881544046565 0.02561689395335904 0.025353340589688328 0.025769322922490477 C 0.02543881544046565 0.02561689395335904 0.026549988500570856 0.025159607045964733 0.026379038799016208 0.025159607045964733 C 0.026549988500570856 0.025159607045964733 0.02749021185912141 0.025921751891621915 0.027404737008344088 0.025769322922490477 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3209929505735952,0.39845049710560954) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.0259522376854482 C 0.027156859941089854 0.026058937963840206 0.0270371951500016 0.02691254019097625 0.027097027545545726 0.026805839912584246 C 0.0270371951500016 0.02691254019097625 0.02625937400792796 0.027232641026152266 0.02637903879901621 0.027232641026152266 C 0.02625937400792796 0.027232641026152266 0.025601217656942565 0.02669913963419224 0.025661050052486693 0.026805839912584246 C 0.025601217656942565 0.02669913963419224 0.02572088244803082 0.025845537407056196 0.025661050052486693 0.0259522376854482 C 0.02572088244803082 0.025845537407056196 0.02649870359010446 0.02552543657188018 0.026379038799016208 0.02552543657188018 C 0.02649870359010446 0.02552543657188018 0.027156859941089854 0.026058937963840206 0.027097027545545726 0.0259522376854482 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32701432341178466,0.40202984099500827) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.027936431321370633 C 0.02712505555780468 0.02823470997882053 0.033327955394178224 0.031922495531065576 0.03264464732614501 0.0315157752107694 C 0.033327955394178224 0.031922495531065576 0.035004498302538226 0.032925516827771076 0.03482297130435413 0.03281707516492479" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03482297130435413 0.03281707516492479 C 0.03482269861895003 0.032888127240965584 0.034819234353602665 0.033830900742156444 0.03481969907950488 0.03366970007741433 C 0.034819234353602665 0.033830900742156444 0.03481720255302947 0.034841631730531515 0.034817394593527576 0.03475148314183019" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034817394593527576 0.03475148314183019 C 0.03456873485290365 0.03460238869846235 0.031083036895567354 0.03251497672059829 0.031833477706040406 0.032962349821416034 C 0.031083036895567354 0.03251497672059829 0.025310323798001823 0.029084727274567363 0.025812104867850946 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029383005932017262 C 0.02583586798062499 0.029316766416757987 0.026164859689481516 0.028467583864685418 0.026097262221139464 0.02858813174890597 C 0.026164859689481516 0.028467583864685418 0.02666710884352357 0.027882122952409355 0.02662327448795556 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐10">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.3333047747640221,0.4050114383950997) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.025159607045964733 C 0.026549988500571026 0.025159607045964733 0.02749021185912155 0.025921751891621915 0.027404737008344227 0.025769322922490477 C 0.02749021185912155 0.025921751891621915 0.027319262157566897 0.027141183644673408 0.027404737008344227 0.02698875467554197 C 0.027319262157566897 0.027141183644673408 0.026208089097461612 0.027598470552067714 0.026379038799016263 0.027598470552067714 C 0.026208089097461612 0.027598470552067714 0.02526786573891109 0.026836325706410532 0.02535334058968841 0.02698875467554197 C 0.02526786573891109 0.026836325706410532 0.02543881544046574 0.02561689395335904 0.02535334058968841 0.025769322922490477 C 0.02543881544046574 0.02561689395335904 0.026549988500571026 0.025159607045964733 0.026379038799016374 0.025159607045964733 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3333047747640221,0.4050114383950997) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026379038799016374 0.02552543657188018 C 0.026498703590104634 0.02552543657188018 0.027156859941090006 0.026058937963840206 0.027097027545545882 0.0259522376854482 C 0.027156859941090006 0.026058937963840206 0.027037195150001747 0.02691254019097625 0.027097027545545882 0.026805839912584246 C 0.027037195150001747 0.02691254019097625 0.026259374007928004 0.027232641026152266 0.026379038799016263 0.027232641026152266 C 0.026259374007928004 0.027232641026152266 0.02560121765694263 0.02669913963419224 0.025661050052486756 0.026805839912584246 C 0.02560121765694263 0.02669913963419224 0.02572088244803089 0.025845537407056196 0.025661050052486756 0.0259522376854482 C 0.02572088244803089 0.025845537407056196 0.026498703590104634 0.02552543657188018 0.026379038799016374 0.02552543657188018 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3272834019258328,0.4085907822844984) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03785485054422977 0.027936431321370633 C 0.03789868489979777 0.02799073969033191 0.03844846027938786 0.028708679633126524 0.0383808628110458 0.02858813174890597 C 0.03844846027938786 0.028708679633126524 0.03868978327710845 0.029449245447276538 0.0386660201643344 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0386660201643344 0.029383005932017262 C 0.038164239094485276 0.02968128458946716 0.0318846521031405 0.03343188956362374 0.032644647326144915 0.032962349821416034 C 0.0318846521031405 0.03343188956362374 0.029287863335126153 0.03518874392326747 0.029546077488281444 0.03501748283850967" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029546077488281444 0.03501748283850967 C 0.02954496454815019 0.03494824547947634 0.02953015165680585 0.034020727119113164 0.029532722206706368 0.03418663453010976 C 0.02953015165680585 0.034020727119113164 0.029513773279705946 0.03292992385458722 0.02951523088947521 0.033026593906550494" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02951523088947521 0.033026593906550494 C 0.029708418124188965 0.03290069234856874 0.03252844601060316 0.031091594995337743 0.03183347770604028 0.0315157752107694 C 0.03252844601060316 0.031091594995337743 0.038356631614078894 0.027638152663920737 0.03785485054422977 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.32126202908764334,0.4050114383950997) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027404737008344088 0.025769322922490477 C 0.02749021185912141 0.025921751891621915 0.027319262157566766 0.027141183644673408 0.027404737008344088 0.02698875467554197 C 0.027319262157566766 0.027141183644673408 0.026208089097461564 0.027598470552067714 0.02637903879901621 0.027598470552067714 C 0.026208089097461564 0.027598470552067714 0.025267865738911006 0.026836325706410532 0.025353340589688328 0.02698875467554197 C 0.025267865738911006 0.026836325706410532 0.02543881544046565 0.02561689395335904 0.025353340589688328 0.025769322922490477 C 0.02543881544046565 0.02561689395335904 0.026549988500570856 0.025159607045964733 0.026379038799016208 0.025159607045964733 C 0.026549988500570856 0.025159607045964733 0.02749021185912141 0.025921751891621915 0.027404737008344088 0.025769322922490477 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32126202908764334,0.4050114383950997) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027097027545545726 0.0259522376854482 C 0.027156859941089854 0.026058937963840206 0.0270371951500016 0.02691254019097625 0.027097027545545726 0.026805839912584246 C 0.0270371951500016 0.02691254019097625 0.02625937400792796 0.027232641026152266 0.02637903879901621 0.027232641026152266 C 0.02625937400792796 0.027232641026152266 0.025601217656942565 0.02669913963419224 0.025661050052486693 0.026805839912584246 C 0.025601217656942565 0.02669913963419224 0.02572088244803082 0.025845537407056196 0.025661050052486693 0.0259522376854482 C 0.02572088244803082 0.025845537407056196 0.02649870359010446 0.02552543657188018 0.026379038799016208 0.02552543657188018 C 0.02649870359010446 0.02552543657188018 0.027156859941089854 0.026058937963840206 0.027097027545545726 0.0259522376854482 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3272834019258328,0.4085907822844984) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02662327448795556 0.027936431321370633 C 0.02712505555780468 0.02823470997882053 0.03330352186899112 0.03190804451262302 0.03264464732614501 0.0315157752107694 C 0.03330352186899112 0.03190804451262302 0.0346868624751058 0.032737653588017786 0.034529769002108815 0.032643662943614066" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034529769002108815 0.032643662943614066 C 0.034529720481565204 0.0327347710874889 0.0345282071800441 0.03390484676169722 0.0345291867555855 0.033736960670112094 C 0.0345282071800441 0.03390484676169722 0.03451708304061424 0.03473507399034585 0.034518014095612025 0.03465829604263556" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034518014095612025 0.03465829604263556 C 0.03429430272981439 0.03451696719086727 0.03110798527039365 0.032522742312197844 0.031833477706040406 0.032962349821416034 C 0.03110798527039365 0.032522742312197844 0.025310323798001823 0.029084727274567363 0.025812104867850946 0.029383005932017262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025812104867850946 0.029383005932017262 C 0.02583586798062499 0.029316766416757987 0.026164859689481516 0.028467583864685418 0.026097262221139464 0.02858813174890597 C 0.026164859689481516 0.028467583864685418 0.02666710884352357 0.027882122952409355 0.02662327448795556 0.027936431321370633" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="紐11">
<g id="紐下">
<g id="金具上">
<g transform="translate(0.33340835167213917,0.41185837628450045) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.026399708980229256 0.025159792771327176 C 0.026570632645316346 0.025162864566115727 0.027497793940037235 0.025941788204758412 0.027414915880145305 0.025787846553903006 C 0.027497793940037235 0.025941788204758412 0.027306200093737264 0.027157962437658913 0.027394245698932423 0.02700709258159206 C 0.027306200093737264 0.027157962437658913 0.026187444952716292 0.027595213031916723 0.02635836861780338 0.027598284826705274 C 0.026187444952716292 0.027595213031916723 0.025260283657995403 0.02681628939327404 0.025343161717887332 0.026970231044129444 C 0.025260283657995403 0.02681628939327404 0.025451877504295374 0.025600115160373537 0.025363831899100214 0.02575098501644039 C 0.025451877504295374 0.025600115160373537 0.026570632645316346 0.025162864566115727 0.026399708980229256 0.025159792771327176 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33340835167213917,0.41185837628450045) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.02639350792586539 0.02552556657963389 C 0.02651315449142636 0.025527716835985877 0.02716216739773099 0.02607296338303576 0.02710415275580664 0.025965204227436974 C 0.02716216739773099 0.02607296338303576 0.027028051705321004 0.02692428534606611 0.02708968362895762 0.02681867644681931 C 0.027028051705321004 0.02692428534606611 0.02624492310660628 0.027230360762046574 0.026364569672167246 0.02723251101839856 C 0.02624492310660628 0.027230360762046574 0.025595910200301646 0.02668511421499669 0.025653924842226 0.026792873370595476 C 0.025595910200301646 0.02668511421499669 0.025730025892711634 0.02583379225196634 0.02566839396907502 0.02593940115121314 C 0.025730025892711634 0.02583379225196634 0.02651315449142636 0.025527716835985877 0.02639350792586539 0.02552556657963389 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3273272236529141,0.4153289769880014) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.03792692769983955 0.028037996714922457 C 0.03796983481616144 0.028093084471889067 0.03850735690161532 0.028820793981466655 0.03844181309570227 0.028699049798521767 C 0.03850735690161532 0.028820793981466655 0.038736090060387286 0.029565583336239393 0.03871345337079613 0.029498926910261115" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03871345337079613 0.029498926910261115 C 0.03820669270252736 0.02978814363555286 0.03187124016019517 0.03342012877425279 0.032632325351570894 0.03296952761376205 C 0.03187124016019517 0.03342012877425279 0.029326106551180463 0.03506752527134899 0.02958043107428742 0.03490614083614999" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02958043107428742 0.03490614083614999 C 0.029579770132903194 0.03483994958855065 0.02957083409014986 0.0339469723007433 0.029572499777676675 0.03411184586495786 C 0.02957083409014986 0.0339469723007433 0.02955943807782306 0.0328289757489601 0.029560442823965645 0.03292765806557531" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029560442823965645 0.03292765806557531 C 0.029750889228686368 0.03280940301164598 0.0325430067536038 0.03110112563920231 0.0318457996806143 0.03150859741842338 C 0.0325430067536038 0.03110112563920231 0.038433688368108315 0.027748779989630712 0.03792692769983955 0.028037996714922457" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐上">
<g id="金具上">
<g transform="translate(0.3213674401642573,0.4116419802155274) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027414915880145167 0.025787846553903006 C 0.0274977939400371 0.025941788204758412 0.027306200093737132 0.02715796243765891 0.027394245698932285 0.027007092581592056 C 0.027306200093737132 0.02715796243765891 0.026187444952716243 0.027595213031916723 0.02635836861780333 0.027598284826705274 C 0.026187444952716243 0.027595213031916723 0.025260283657995316 0.026816289393274035 0.02534316171788725 0.02697023104412944 C 0.025260283657995316 0.026816289393274035 0.025451877504295284 0.025600115160373537 0.02536383189910013 0.02575098501644039 C 0.025451877504295284 0.025600115160373537 0.026570632645316176 0.025162864566115724 0.02639970898022909 0.025159792771327173 C 0.026570632645316176 0.025162864566115724 0.0274977939400371 0.025941788204758412 0.027414915880145167 0.025787846553903006 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3213674401642573,0.4116419802155274) rotate(0) scale(1,1) translate(-0.02637903879901621,-0.02637903879901622)"><path d="M 0.027104152755806483 0.02596520422743697 C 0.027162167397730835 0.026072963383035757 0.027028051705320858 0.026924285346066106 0.027089683628957466 0.026818676446819307 C 0.027028051705320858 0.026924285346066106 0.026244923106606234 0.027230360762046574 0.026364569672167194 0.02723251101839856 C 0.026244923106606234 0.027230360762046574 0.025595910200301584 0.02668511421499669 0.025653924842225936 0.026792873370595476 C 0.025595910200301584 0.02668511421499669 0.025730025892711565 0.02583379225196634 0.025668393969074957 0.02593940115121314 C 0.025730025892711565 0.02583379225196634 0.026513154491426185 0.02552771683598587 0.026393507925865225 0.025525566579633886 C 0.026513154491426185 0.02552771683598587 0.027162167397730835 0.026072963383035757 0.027104152755806483 0.02596520422743697 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3273272236529141,0.4153289769880014) rotate(0) scale(1,1) translate(-0.0322390625160927,-0.03223906251609271)"><path d="M 0.02669706226700007 0.027836176550961243 C 0.027193710891054806 0.028143426282000745 0.033301784243299985 0.03192200874938117 0.03265684575565691 0.03152317332343525 C 0.033301784243299985 0.03192200874938117 0.03458461398230533 0.03271378735721863 0.034436324118716985 0.032622201662312215" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034436324118716985 0.032622201662312215 C 0.03443579711321558 0.032709409175750284 0.03442841536943493 0.03383417647836252 0.0344300000527001 0.03366869182356907 C 0.03442841536943493 0.03383417647836252 0.03441625024177127 0.03468629466118898 0.034417307919535026 0.0346080175198336" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034417307919535026 0.0346080175198336 C 0.03420097219928448 0.03447026203557665 0.03110829493222323 0.03250994649345372 0.03182127927652851 0.03295495170875017 C 0.03110829493222323 0.03250994649345372 0.025364847163816928 0.028960705205236657 0.025861495787871665 0.02926795493627616" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025861495787871665 0.02926795493627616 C 0.025886378085354253 0.029202152508933914 0.026229713897590098 0.028359010942726307 0.02616008335766273 0.028478325808169218 C 0.026229713897590098 0.028359010942726307 0.026741810509444845 0.027782664112860577 0.02669706226700007 0.027836176550961243" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="結び">
<g id="紐左">
<g transform="translate(0.32185243994812734,0.34309979768582155) rotate(0) scale(1,1) translate(-0.007306457586059644,-0.005394161792430208)"><path d="M -0.0027813217707585176 0.025533657392266623 C -0.0024449432572228136 0.024601766064513267 0.0020370631774296074 0.012633351038395215 0.0012552203916699313 0.014350961459226343 C 0.0020370631774296074 0.012633351038395215 0.007046255930581566 0.0041366132492153245 0.006600791658357594 0.0049223323422930955" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008012123513761701 0.0058659912425673075 C 0.007566659241537729 0.006651710335645078 0.0018847094613143587 0.01701223078033168 0.002666552247074035 0.015294620359500554 C 0.0018847094613143587 0.01701223078033168 -0.001706368428890118 0.027409207620294196 -0.001369989915354414 0.02647731629254084" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.001369989915354414 0.02647731629254084 C -0.0014287954093295853 0.02643799717169608 -0.0021932668310068117 0.025926848600714206 -0.0020756558430564693 0.026005486842403724 C -0.0021932668310068117 0.025926848600714206 -0.002840127264733692 0.025494338271421866 -0.002781321770758521 0.025533657392266623" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32185243994812734,0.34309979768582155) rotate(0) scale(1,1) translate(-0.01330730632983275,-0.005618283659614396)"><path d="M 0.001787417827612707 0.010911101251228867 C 0.001742360013480011 0.010858522996103636 0.00118842895426251 0.010115999948775684 0.0012467240580203553 0.010280162189726084 C 0.00118842895426251 0.010115999948775684 0.001074639292893415 0.008829570373998879 0.0010878765825185644 0.008941154359824049" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0010878765825185644 0.008941154359824049 C 0.001579739274268438 0.008999128196814216 0.008006197398545172 0.00929161158325136 0.006990228883517045 0.009636840403706048 C 0.008006197398545172 0.00929161158325136 0.013803604586134341 0.004395205856922945 0.013279498762856088 0.004798408514367799" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013720802555993313 0.00634805319100774 C 0.013187654734719736 0.006775118798304939 0.006328579973345342 0.01185309448359255 0.007323028700710392 0.011472840478574123 C 0.006328579973345342 0.01185309448359255 0.0013261169215212332 0.010864289648950096 0.001787417827612707 0.010911101251228867" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32185243994812734,0.34309979768582155) rotate(0) scale(1,1) translate(-0.01330730632983275,-0.005618283659614309)"><path d="M 0.0010878765825185644 0.00894115435982396 C 0.0013388395790810694 0.008610656226246028 0.005115401056296753 0.004629947936434101 0.0040994325412686255 0.004975176756888772 C 0.005115401056296753 0.004629947936434101 0.014044504281321717 0.004783677827491178 0.013279498762856095 0.004798408514367916" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01372080255599332 0.006348053191007857 C 0.012988540892604306 0.006374598758391117 0.003939213867960113 0.007046854004625383 0.004933662595325164 0.006666599999606973 C 0.003939213867960113 0.007046854004625383 0.001525230763636669 0.01126480968886393 0.001787417827612707 0.01091110125122878" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.001787417827612707 0.01091110125122878 C 0.001742360013480011 0.01085852299610355 0.00118842895426251 0.010115999948775599 0.0012467240580203553 0.010280162189726 C 0.00118842895426251 0.010115999948775599 0.001074639292893415 0.00882957037399879 0.0010878765825185644 0.00894115435982396" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紐右">
<g transform="translate(0.32303688094812993,0.3430572117915862) rotate(0) scale(1,1) translate(-0.007306457586059644,-0.005394161792430208)"><path d="M 0.018734135449240553 0.024760081515043636 C 0.0186781371139353 0.024803528341474014 0.017950158754967038 0.025368337085068943 0.018062155425577524 0.025281443432208187 C 0.017950158754967038 0.025368337085068943 0.017334177066609485 0.0258462521758031 0.017390175401914718 0.025802805349372723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017390175401914718 0.025802805349372723 C 0.016991479680230178 0.024897343192541468 0.011709518588407084 0.013279985997416165 0.01260582674170025 0.014937259467397664 C 0.011709518588407084 0.013279985997416165 0.006136865130788087 0.005163712396444501 0.006634477562396715 0.005915523709594745" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007978437609722552 0.004872799875265659 C 0.00847605004133117 0.0056246111884159025 0.014846094942319142 0.015551809103050072 0.013949786789025975 0.013894535633068575 C 0.014846094942319142 0.015551809103050072 0.019132831170925103 0.02566554367187489 0.018734135449240553 0.024760081515043636" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32303688094812993,0.3430572117915862) rotate(0) scale(1,1) translate(-0.01330730632983275,-0.005618283659614396)"><path d="M 0.025157726874228244 0.010070835244476134 C 0.024700721208832137 0.010150664030834908 0.018655869983831574 0.010720875521349633 0.019673658889474987 0.011028780680781423 C 0.018655869983831574 0.010720875521349633 0.012383476766259963 0.0059882393855040985 0.012944260006507273 0.006375973331294662" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01327949876285613 0.004798408514367797 C 0.013829645291222218 0.005162987046989979 0.02091814038265344 0.009444770621910866 0.019881257103249193 0.00917335090583397 C 0.02091814038265344 0.009444770621910866 0.026208834866745225 0.007962286290745272 0.025722098115707068 0.008055445107290556" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025722098115707068 0.008055445107290556 C 0.02571645300286194 0.008167707999025355 0.025607325824775647 0.009570548986206939 0.02565435676156555 0.00940259980810814 C 0.025607325824775647 0.009570548986206939 0.02511634105028347 0.010126521530840133 0.025157726874228244 0.010070835244476134" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32303688094812993,0.3430572117915862) rotate(0) scale(1,1) translate(-0.01330730632983275,-0.005618283659614309)"><path d="M 0.025722098115707068 0.00805544510729047 C 0.02571645300286194 0.008167707999025269 0.025607325824775647 0.009570548986206852 0.02565435676156555 0.009402599808108054 C 0.025607325824775647 0.009570548986206852 0.02511634105028347 0.010126521530840047 0.025157726874228244 0.010070835244476047" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025157726874228244 0.010070835244476047 C 0.024872214369239094 0.009736819029515257 0.020713787908715024 0.005754735505514792 0.021731576814358437 0.006062640664946564 C 0.020713787908715024 0.005754735505514792 0.012211983605853016 0.006402084386823796 0.01294426000650728 0.006375973331294778" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013279498762856137 0.004798408514367914 C 0.014043638785725985 0.00475815965368288 0.02348606231669855 0.0045868419022243884 0.022449179037294306 0.004315422186147509 C 0.02348606231669855 0.0045868419022243884 0.025994841372241465 0.008367113684052383 0.025722098115707068 0.00805544510729047" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32374405882109614,0.34301542236431304) rotate(0) scale(1,1) translate(-0.019917707931042028,-0.01991770793104203)"><path d="M 0.018654008471816013 0.021033333022079104 C 0.018602167389539685 0.02101536079257172 0.017944469891158527 0.02075693757971619 0.01803191548450009 0.020817666267990503 C 0.017944469891158527 0.02075693757971619 0.017569056840652013 0.02026183230402042 0.01760466135171725 0.02030458876278735" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01760466135171725 0.02030458876278735 C 0.017605242786451557 0.02024827184687839 0.017640712367985596 0.019524392169027665 0.017611638568528917 0.019628785771879834 C 0.017640712367985596 0.019524392169027665 0.01798203930991977 0.019003788841618123 0.017953546945197397 0.01905186552856133" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017953546945197397 0.01905186552856133 C 0.018005747373901766 0.01903503198989541 0.0186853662792377 0.018846072958073872 0.018579952089649812 0.018849863064570257 C 0.0186853662792377 0.018846072958073872 0.019271730981135597 0.019019427682774256 0.019218517220252074 0.01900638425060472" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019218517220252074 0.01900638425060472 C 0.019250197424684385 0.019052297467467203 0.019634755426044946 0.01965939404117094 0.019598679673439784 0.019557342852954518 C 0.019634755426044946 0.01965939404117094 0.019655821799686866 0.02028713648055571 0.019651426251514014 0.02023099850920177" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019651426251514014 0.02023099850920177 C 0.01961880526591936 0.020276207976421552 0.01917685627606998 0.020840373325245597 0.019259974424378146 0.02077351211583915 C 0.01917685627606998 0.020840373325245597 0.018603511309102504 0.021054984764265768 0.018654008471816013 0.021033333022079104" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
</g>
<g id="アーマ">
<g transform="translate(0.3300176911596994,0.36485740801036065) rotate(0) scale(1,1) translate(-0.09180138873031214,-0.07753166928063453)"><path d="M 0.099041233342404 0.05046012638316807 C 0.09944173064429292 0.05254218759198028 0.10381981407097225 0.07956356025503657 0.10384720096507107 0.0754448608889146 C 0.10381981407097225 0.07956356025503657 0.09828470641723047 0.10192115693394152 0.09871259061321822 0.09988451877663175" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09871259061321822 0.09988451877663175 C 0.09857242436471676 0.1012842009380431 0.09700221280089345 0.11989333691578592 0.09703059563120077 0.11668070471356806 C 0.09700221280089345 0.11989333691578592 0.09848378006772458 0.14024905524405257 0.09837199664953045 0.13843610520324606" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09837199664953045 0.13843610520324606 C 0.09812498085670135 0.13897352740249744 0.09462502157462838 0.14561339122714925 0.0954078071355812 0.14488517159426245 C 0.09462502157462838 0.14561339122714925 0.0880077531528472 0.14711857551674135 0.08897856991809666 0.14717474079788756 C 0.0880077531528472 0.14711857551674135 0.08320302942778358 0.14348157299189016 0.0837580059525876 0.14421118822050794 C 0.08320302942778358 0.14348157299189016 0.08219892209277026 0.1379367055406381 0.08231885162044851 0.13841935805447425" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08231885162044851 0.13841935805447425 C 0.08235677642522733 0.13795879555444143 0.0828340504756583 0.13203156842210795 0.0827739492777943 0.13289260805408043 C 0.0828340504756583 0.13203156842210795 0.08306224238790166 0.1276864053388649 0.08304006599481648 0.12808688247080458" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08304006599481648 0.12808688247080458 C 0.08300104156353866 0.12682604198109496 0.08242766882478951 0.11021396527983088 0.0825717728194827 0.11295679659428912 C 0.08242766882478951 0.11021396527983088 0.08120573849508272 0.09369091587255703 0.0813108180584981 0.09517290669730565" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0813108180584981 0.09517290669730565 C 0.08102240998594554 0.09337112068391203 0.07762821737459726 0.06982540951040414 0.0778499211878673 0.07355147453658227 C 0.07762821737459726 0.06982540951040414 0.07871707655854011 0.04853584737038355 0.07865037229925759 0.05046012638316807" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07865037229925759 0.05046012638316807 C 0.07874194199708345 0.0505260106804714 0.0800544440593655 0.051663614846844626 0.07974920867316797 0.051250737950808 C 0.0800544440593655 0.051663614846844626 0.08252686262199965 0.05576164173434085 0.08231319693362799 0.055414649135607556" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09410661753759995 0.05517835039269651 C 0.09428167699044518 0.05485104935587247 0.09661854895547624 0.05085755261668063 0.09620733097174257 0.051250737950808 C 0.09661854895547624 0.05085755261668063 0.09927739187329246 0.05039424208586474 0.099041233342404 0.05046012638316807" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="脛当">
<g transform="translate(0.33281718424078754,0.3659047173333808) rotate(0) scale(1,1) translate(-0.15468619988443874,-0.15468619988443894)"><path d="M 0.13663384267749334 0.15761341347370117 C 0.13656628506115748 0.15696191073274923 0.13581309383203538 0.1484259038211829 0.13582315128146288 0.14979538058227795 C 0.13581309383203538 0.1484259038211829 0.13657065345127153 0.1404617183204175 0.13651315328436317 0.14117969234056063" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.13651315328436317 0.14117969234056063 C 0.136740009833981 0.14069251708215225 0.13961434346213927 0.1341024462634172 0.13923543187977713 0.13533358923965988 C 0.13961434346213927 0.1341024462634172 0.14121214730545317 0.12566200890781393 0.14106009227270885 0.12640597662564823" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.15316912537529298 0.12640597662564823 C 0.1533819336188539 0.12714994434348253 0.15644759271267136 0.13659277575793388 0.15572282429802406 0.13533358923965988 C 0.15644759271267136 0.13659277575793388 0.16237830652214685 0.14203143364537585 0.16186634635106048 0.14151621484493615" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16186634635106048 0.14151621484493615 C 0.16196977040961355 0.14219317353993605 0.16317029101318264 0.1509838970601112 0.16310743505369735 0.14963971918493482 C 0.16317029101318264 0.1509838970601112 0.1625800497658163 0.15831356852722903 0.16262061786488408 0.15764634934705254" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16262061786488408 0.15764634934705254 C 0.16193284458432702 0.15878916768853862 0.1535242593425052 0.17374713199507336 0.1543673384981993 0.1713601694448855 C 0.1535242593425052 0.17374713199507336 0.15234836212141742 0.1875340441580085 0.1525036679965545 0.18628989994930673" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1525036679965545 0.18628989994930673 C 0.15227944457798082 0.18575035431416068 0.14945582501509375 0.17887826476866237 0.1498129869736703 0.17981535232755427 C 0.14945582501509375 0.17887826476866237 0.14808478595363322 0.17464730731885808 0.14821772449363607 0.17504484924260394" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.14821772449363607 0.17504484924260394 C 0.14799163402809878 0.17498672742109636 0.1451171780171355 0.17436179654839748 0.14550463890718857 0.17434738738451297 C 0.1451171780171355 0.17436179654839748 0.1434068233884835 0.17529029019461026 0.1435681938129993 0.17521775920921817" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1435681938129993 0.17521775920921817 C 0.14352834380815746 0.175617744692794 0.1430114647034273 0.18094026340713576 0.14308999375489748 0.1800175850121284 C 0.1430114647034273 0.18094026340713576 0.14258716614872866 0.18681259286073826 0.14262584519535704 0.18628989994930673" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.14262584519535704 0.18628989994930673 C 0.14243156284203953 0.18504575574060494 0.1397951234123918 0.16897046223858503 0.14029445695554713 0.1713601694448855 C 0.1397951234123918 0.16897046223858503 0.13632879148765553 0.15646785047610248 0.13663384267749334 0.15761341347370117" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3260647133741631,0.414618280465618) rotate(0) scale(1,1) translate(-0.1672344738621424,-0.16723447386214246)"><path d="M 0.16286893865732735 0.1390524700546845 C 0.16303030908184313 0.1389799390692924 0.16519284464156975 0.1381676890660948 0.16480538375151668 0.13818209822997932 C 0.16519284464156975 0.1381676890660948 0.16774455980350142 0.13893768190957784 0.16751846933796413 0.13887956008807026" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16751846933796413 0.13887956008807026 C 0.16765140787796698 0.13927710201181612 0.16947089377657493 0.14458715073191247 0.16911373181799838 0.14365006317302056 C 0.16947089377657493 0.14458715073191247 0.17202863625945625 0.1506641564299191 0.17180441284088258 0.15012461079477304" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17180441284088258 0.15012461079477304 C 0.1718156571748774 0.15130405285095297 0.17213211388687388 0.16745954992843826 0.17193934484882054 0.16427791546893225 C 0.17213211388687388 0.16745954992843826 0.17429916600158127 0.19030641671217105 0.17411764129752275 0.188304224308845" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.17411764129752275 0.188304224308845 C 0.1734798963103656 0.18817590544736348 0.1652991789645378 0.18678704247603414 0.16646470145163703 0.1867643979710668 C 0.1652991789645378 0.18678704247603414 0.15960359395238993 0.18872692173490174 0.16013137145233203 0.1885759583684529" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.16013137145233203 0.1885759583684529 C 0.1602961982425673 0.18651652840037522 0.1622588944841014 0.16065851978704748 0.16210929293515533 0.1638627987515208 C 0.1622588944841014 0.16065851978704748 0.16191136479839593 0.1489797617983774 0.16192659003968513 0.15012461079477304" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.16192659003968513 0.15012461079477304 C 0.16196526908631348 0.1496019178833415 0.16246926765069572 0.14292961746258737 0.16239073859922554 0.14385229585759474 C 0.16246926765069572 0.14292961746258737 0.16290878866216918 0.13865248457110863 0.16286893865732735 0.1390524700546845" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.32542588318419585,0.3378577697749996) rotate(0) scale(1,1) translate(-0.06881109587061648,-0.06881109587061648)"><path d="M 0.05962296485036506 0.06881109587061648 C 0.05974988878505837 0.0682595844803125 0.06145881630200937 0.06112206328346576 0.061146052066684796 0.06219295918696865 C 0.06145881630200937 0.06112206328346576 0.0635619759748912 0.05544096051538297 0.06337613567425994 0.05596034502858187" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06337613567425994 0.05596034502858187 C 0.06369530702167818 0.05592821815147678 0.06785710167207581 0.055574822503320825 0.06720619184327889 0.055574822503320825 C 0.06785710167207581 0.055574822503320825 0.07151879210120171 0.05599247190568696 0.07118705361982303 0.05596034502858187" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07118705361982303 0.05596034502858187 C 0.07146234196498566 0.056479729541780765 0.07500626278127308 0.06326385509047153 0.07449051376177454 0.06219295918696865 C 0.07500626278127308 0.06326385509047153 0.07761650252814142 0.06936260726092046 0.0773760418538055 0.06881109587061647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0773760418538055 0.06881109587061647 C 0.07715763543645707 0.06936260726092046 0.07423941582612578 0.07650012845776716 0.07475516484562432 0.07542923255426427 C 0.07423941582612578 0.07650012845776716 0.07088971101767291 0.08218123122584996 0.07118705361982303 0.08166184671265106" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07118705361982303 0.08166184671265106 C 0.07084274800448391 0.08169397358975615 0.06640447640695678 0.0820473692379121 0.0670553862357537 0.0820473692379121 C 0.06640447640695678 0.0820473692379121 0.06306953146080217 0.081629719835546 0.06337613567425998 0.08166184671265109" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06337613567425998 0.08166184671265109 C 0.06317772823966829 0.08114246219945219 0.060682482223835016 0.07435833665076143 0.060995246459159595 0.07542923255426431 C 0.060682482223835016 0.07435833665076143 0.05950860804963218 0.0682595844803125 0.05962296485036506 0.06881109587061648" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="穴">
<g transform="translate(0.31566103594507383,0.35368865025588025) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.006729399287076907 0.008101260009259884 C 0.006696950638369958 0.008030685911916422 0.006290677988268993 0.007126493944520271 0.006340015502593512 0.007254370841138337 C 0.006290677988268993 0.007126493944520271 0.006120460249565116 0.0065094344505684885 0.006137349115182685 0.006566737249843092" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006137349115182685 0.006566737249843092 C 0.0061795051911582586 0.006521235656464168 0.006721549646883262 0.005960049338124109 0.0066432220268895685 0.006020718129296004 C 0.006721549646883262 0.005960049338124109 0.007113452099125122 0.005823544557987374 0.007077280555107003 0.005838711755780345" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007077280555107003 0.005838711755780345 C 0.007079542191753287 0.005941516148433873 0.007075430089193239 0.00726091015541264 0.007104420194862414 0.007072364467622679 C 0.007075430089193239 0.00726091015541264 0.006698147544761448 0.008187001304396316 0.006729399287076907 0.008101260009259884" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33866972507393844,0.35381839418607586) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.006729399287076943 0.008101260009259884 C 0.006681319683514699 0.00801551871412345 0.0061078438817620635 0.006883818779832717 0.006152444044330019 0.007072364467622679 C 0.0061078438817620635 0.006883818779832717 0.006197676777255763 0.005735907363126818 0.0061941973362614755 0.005838711755780345" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0061941973362614755 0.005838711755780345 C 0.006249845865520122 0.0058538789535733165 0.006982483718124766 0.006081386920467899 0.006861979687365238 0.006020718129296004 C 0.006982483718124766 0.006081386920467899 0.007705101206876684 0.006612238843222016 0.007640245705375803 0.006566737249843092" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007640245705375803 0.006566737249843092 C 0.007614262835194924 0.0066240400491176955 0.007252547395013677 0.0073822477377564035 0.007328451263205249 0.007254370841138337 C 0.007252547395013677 0.0073822477377564035 0.00667947828906625 0.008171834106603345 0.006729399287076943 0.008101260009259884" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31584521398428456,0.3687665415664325) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.006729399287076907 0.00535753856489398 C 0.006760651029392366 0.005443279860030413 0.007133410300531588 0.006574979794321135 0.007104420194862414 0.006386434106531176 C 0.007133410300531588 0.006574979794321135 0.007075018918460719 0.0077228912110270135 0.007077280555107003 0.007620086818373488" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007077280555107003 0.007620086818373488 C 0.0070411090110888835 0.007604919620580517 0.0065648944068958754 0.007377411653685943 0.0066432220268895685 0.007438080444857829 C 0.0065648944068958754 0.007377411653685943 0.006095193039207111 0.006846559730931935 0.006137349115182685 0.00689206132431085" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006137349115182685 0.00689206132431085 C 0.006154237980800253 0.006834758525036239 0.006389353016918031 0.0060765508363974435 0.006340015502593512 0.006204427733015516 C 0.006389353016918031 0.0060765508363974435 0.006761847935783856 0.005286964467550519 0.006729399287076907 0.00535753856489398" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3390749617604635,0.36854028103003145) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.006729399287076943 0.00535753856489398 C 0.006779320285087635 0.005428112662237441 0.007404355131396821 0.006332304629633588 0.007328451263205249 0.006204427733015516 C 0.007404355131396821 0.006332304629633588 0.007666228575556683 0.006949364123585462 0.007640245705375803 0.00689206132431085" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007640245705375803 0.00689206132431085 C 0.007575390203874923 0.006937562917689766 0.006741475656605711 0.007498749236029716 0.006861979687365238 0.007438080444857829 C 0.006741475656605711 0.007498749236029716 0.006138548807002829 0.007635254016166459 0.0061941973362614755 0.007620086818373488" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0061941973362614755 0.007620086818373488 C 0.006190717895267188 0.007517282425719962 0.006197044206897974 0.006197888418741217 0.006152444044330019 0.006386434106531176 C 0.006197044206897974 0.006197888418741217 0.0067774788906391865 0.005271797269757547 0.006729399287076943 0.00535753856489398" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="脚輪上">
<g transform="translate(0.32855172233817936,0.35291562191630454) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M -0.004399412915557286 0.006464332119065907 C -0.0031033976807275836 0.006464332119065907 0.013744800372058547 0.006464332119065907 0.011152769902399143 0.006464332119065907 C 0.013744800372058547 0.006464332119065907 0.028000967955185252 0.006464332119065907 0.02670495272035555 0.006464332119065907" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02670495272035555 0.006464332119065907 C 0.02670495272035555 0.006855035267677009 0.026704952720355557 0.011934176199621338 0.026704952720355557 0.011152769902399133 C 0.026704952720355557 0.011934176199621338 0.02670495272035555 0.01623191083434346 0.02670495272035555 0.01584120768573236" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02670495272035555 0.01584120768573236 C 0.025408937485525848 0.01584120768573236 0.008560739432739729 0.01584120768573236 0.011152769902399133 0.01584120768573236 C 0.008560739432739729 0.01584120768573236 -0.005695428150386988 0.01584120768573236 -0.004399412915557286 0.01584120768573236" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.004399412915557286 0.01584120768573236 C -0.004399412915557286 0.015450504537121258 -0.004399412915557286 0.010371363605176938 -0.004399412915557286 0.011152769902399141 C -0.004399412915557286 0.010371363605176938 -0.004399412915557286 0.006073628970454804 -0.004399412915557286 0.006464332119065907" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32455733835737416,0.3529156219163046) rotate(0) scale(1,1) translate(-0.00775832499658671,-0.0077583249965867095)"><path d="M 0.014140218198399633 0.013959337111079682 C 0.013117794470564695 0.013849112698494086 0.000848709736545442 0.011713366553555947 0.0018711334643803802 0.012636644160052512 C 0.000848709736545442 0.011713366553555947 0.0028935571922153137 0.0019567282266243448 0.0018711334643803767 0.0028800058331209092 C 0.0028935571922153137 0.0019567282266243448 0.015162641926234564 0.001447088469508139 0.014140218198399626 0.0015573128820937367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014140218198399626 0.0015573128820937367 C 0.014140218198399626 0.0016442281895089033 0.014140218198399626 0.0027219780014569707 0.014140218198399626 0.002600296571075737 C 0.014140218198399626 0.0027219780014569707 0.01414021819839963 0.003052256169634608 0.01414021819839963 0.0030174900466685413" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01414021819839963 0.0030174900466685413 C 0.013280142377061677 0.0031012447974504294 0.0029592325210062525 0.004728931463589006 0.0038193083423442046 0.004022547056051199 C 0.0029592325210062525 0.004728931463589006 0.004679384163682157 0.012200487344660041 0.0038193083423442046 0.011494102937122233 C 0.004679384163682157 0.012200487344660041 0.015000294019737586 0.01258291469728678 0.014140218198399633 0.012499159946504891" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014140218198399633 0.012499159946504891 C 0.014140218198399633 0.012533926069470958 0.014140218198399633 0.013038034852478918 0.014140218198399633 0.012916353422097685 C 0.014140218198399633 0.013038034852478918 0.014140218198399633 0.014046252418494849 0.014140218198399633 0.013959337111079682" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31938729714968994,0.35291562191630466) rotate(0) scale(1,1) translate(-0.0022536622055164745,-0.002253662205516475)"><path d="M 0.003559414508702311 0.0031608986572393325 C 0.003349494426672511 0.0031479024141316866 0.0008304534423149092 0.0028667339077680836 0.0010403735243447094 0.0030049437399475806 C 0.0008304534423149092 0.0028667339077680836 0.0012502936063745083 0.0013641708389058721 0.0010403735243447083 0.001502380671085369 C 0.0012502936063745083 0.0013641708389058721 0.00376933459073211 0.001333429510685973 0.0035594145087023098 0.001346425753793619" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0035594145087023098 0.001346425753793619 C 0.00360139852510827 0.0014220287914371902 0.004063222705573829 0.0024048682808036174 0.004063222705573829 0.0022536622055164745 C 0.004063222705573829 0.0024048682808036174 0.003517430492296351 0.003236501694882904 0.003559414508702311 0.0031608986572393325" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3370937845804102,0.35291562191630454) rotate(0) scale(1,1) translate(-0.006469483550722008,-0.0064694835507220095)"><path d="M 0.007492222845884336 0.0009263534554330725 C 0.007833135944271779 0.0027740634871960515 0.007151309747496893 0.013860323677773925 0.007492222845884336 0.012012613646010945 C 0.007151309747496893 0.013860323677773925 0.005105831157172236 0.01016490361424797 0.005446744255559679 0.012012613646010948 C 0.005105831157172236 0.01016490361424797 0.005787657353947122 -0.0009213565763299078 0.005446744255559679 0.0009263534554330714 C 0.005787657353947122 -0.0009213565763299078 0.007833135944271779 0.0027740634871960515 0.007492222845884336 0.0009263534554330725 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31459315206080496,0.3529156219163046) rotate(0) scale(1,1) translate(-0.009906215631991292,-0.007758324996586713)"><path d="M 0.009906215631991292 0.013959337111079679 C 0.00929276139529033 0.013715934585331465 0.0019313105548787778 0.010248407308767167 0.0025447647915797407 0.011038506802101115 C 0.0019313105548787778 0.010248407308767167 0.0031582190282807014 0.003688043697738356 0.002544764791579739 0.004478143191072304 C 0.0031582190282807014 0.003688043697738356 0.01051966986869225 0.001313910356345521 0.009906215631991289 0.001557312882093735" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991289 0.001557312882093735 C 0.009906215631991289 0.0016442281895089016 0.009906215631991289 0.002721978001456968 0.009906215631991289 0.0026002965710757346 C 0.009906215631991289 0.002721978001456968 0.009906215631991292 0.003052256169634606 0.009906215631991292 0.003017490046668539" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991292 0.003017490046668539 C 0.009407904558617917 0.003213697939757114 0.0034281716781374314 0.0059659160289625545 0.003926482751510805 0.005371984763731434 C 0.0034281716781374314 0.0059659160289625545 0.004424793824884179 0.010738596494673108 0.003926482751510805 0.010144665229441987 C 0.004424793824884179 0.010738596494673108 0.010404526705364667 0.012695367839593463 0.009906215631991292 0.012499159946504888" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991292 0.012499159946504888 C 0.009906215631991292 0.012533926069470954 0.009906215631991292 0.013038034852478914 0.009906215631991292 0.012916353422097682 C 0.009906215631991292 0.013038034852478914 0.009906215631991292 0.014046252418494845 0.009906215631991292 0.013959337111079679" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3425102926155538,0.35291562191630454) rotate(0) scale(1,1) translate(-0.005610434361182026,-0.007758324996586713)"><path d="M 0.005610434361182026 0.013959337111079679 C 0.005610434361182026 0.013872421803664513 0.005610434361182026 0.012794671991716449 0.005610434361182026 0.012916353422097682 C 0.005610434361182026 0.012794671991716449 0.005610434361182026 0.012464393823538821 0.005610434361182026 0.012499159946504888" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.012499159946504888 C 0.00610874543455541 0.012302952053416312 0.012088478315036016 0.009550733964210866 0.011590167241662633 0.010144665229441987 C 0.012088478315036016 0.009550733964210866 0.01109185616828925 0.004778053498500313 0.011590167241662633 0.005371984763731434 C 0.01109185616828925 0.004778053498500313 0.005112123287808642 0.0028212821535799643 0.005610434361182026 0.003017490046668539" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.003017490046668539 C 0.005610434361182026 0.002982723923702472 0.005610434361182026 0.002478615140694501 0.005610434361182026 0.0026002965710757346 C 0.005610434361182026 0.002478615140694501 0.005610434361182026 0.0014703975746785684 0.005610434361182026 0.001557312882093735" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.001557312882093735 C 0.006223888597882994 0.001800715407841949 0.013585339438294607 0.005268242684406252 0.01297188520159364 0.004478143191072304 C 0.013585339438294607 0.005268242684406252 0.012358430964892673 0.011828606295435062 0.01297188520159364 0.011038506802101115 C 0.012358430964892673 0.011828606295435062 0.004996980124481058 0.014202739636827893 0.005610434361182026 0.013959337111079679" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="脚輪下">
<g transform="translate(0.32798156962585734,0.41473691906481724) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M 0.0015566554328377332 0.008115233275685023 C 0.002356331638634517 0.008115233275685023 0.012752122313992703 0.008115233275685023 0.011152769902399136 0.008115233275685023 C 0.012752122313992703 0.008115233275685023 0.02154856057775731 0.008115233275685023 0.020748884371960527 0.008115233275685023" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020748884371960527 0.008115233275685023 C 0.020748884371960527 0.0083683613279112 0.02074888437196054 0.011659026006851484 0.02074888437196054 0.011152769902399133 C 0.02074888437196054 0.011659026006851484 0.020748884371960527 0.014443434581339416 0.020748884371960527 0.01419030652911324" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020748884371960527 0.01419030652911324 C 0.019949208166163745 0.01419030652911324 0.009553417490805566 0.01419030652911324 0.011152769902399133 0.01419030652911324 C 0.009553417490805566 0.01419030652911324 0.0007569792270409499 0.01419030652911324 0.0015566554328377332 0.01419030652911324" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0015566554328377332 0.01419030652911324 C 0.0015566554328377332 0.013937178476887066 0.0015566554328377332 0.010646513797946785 0.0015566554328377332 0.011152769902399136 C 0.0015566554328377332 0.010646513797946785 0.0015566554328377332 0.007862105223458846 0.0015566554328377332 0.008115233275685023" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32551692743614924,0.41473691906481724) rotate(0) scale(1,1) translate(-0.00775832499658671,-0.0077583249965867095)"><path d="M 0.011696124494828444 0.01177582555667286 C 0.011065261596446635 0.011704413562772246 0.0034949068158649315 0.010320710197085081 0.00412576971424674 0.010918881629865491 C 0.0034949068158649315 0.010320710197085081 0.004756632612628547 0.003999596930527517 0.004125769714246739 0.004597768363307928 C 0.004756632612628547 0.003999596930527517 0.01232698739321025 0.0036694124425999466 0.01169612449482844 0.0037408244365005608" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01169612449482844 0.0037408244365005608 C 0.01169612449482844 0.0037971349693254174 0.01169612449482844 0.004495385576353643 0.01169612449482844 0.004416550830398843 C 0.01169612449482844 0.004495385576353643 0.01169612449482844 0.004709365601088102 0.01169612449482844 0.004686841387958159" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01169612449482844 0.004686841387958159 C 0.011165434614785896 0.004741104265043931 0.0047971560542753545 0.005795646970673071 0.005327845934317899 0.0053379959129874165 C 0.0047971560542753545 0.005795646970673071 0.005858535814360445 0.010636305137871668 0.005327845934317899 0.010178654080186013 C 0.005858535814360445 0.010636305137871668 0.01222681437487099 0.010884071482301041 0.011696124494828444 0.01082980860521527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011696124494828444 0.01082980860521527 C 0.011696124494828444 0.010852332818345212 0.011696124494828444 0.011178933908729377 0.011696124494828444 0.011100099162774577 C 0.011696124494828444 0.011178933908729377 0.011696124494828444 0.011832136089497718 0.011696124494828444 0.01177582555667286" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3223268731638959,0.41473691906481724) rotate(0) scale(1,1) translate(-0.0022536622055164745,-0.002253662205516475)"><path d="M 0.003059346443988615 0.002841440923833843 C 0.0029298201157427917 0.002833020941256813 0.0013755041767929087 0.00265085799576695 0.0015050305050387323 0.0027404011329094815 C 0.0013755041767929087 0.00265085799576695 0.0016345568332845554 0.001677380140980937 0.0015050305050387318 0.0017669232781234682 C 0.0016345568332845554 0.001677380140980937 0.0031888727722344384 0.0016574635046220777 0.0030593464439886147 0.0016658834871991078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0030593464439886147 0.0016658834871991078 C 0.0030852517096377793 0.0017148650470588883 0.0033702096317785903 0.0023516253252360356 0.0033702096317785903 0.0022536622055164745 C 0.0033702096317785903 0.0023516253252360356 0.0030334411783394504 0.0028904224836936235 0.003059346443988615 0.002841440923833843" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33325225143573955,0.41473691906481724) rotate(0) scale(1,1) translate(-0.006469483550722008,-0.0064694835507220095)"><path d="M 0.007100541162619722 0.0028782104083255487 C 0.007310893699918959 0.004075301455791036 0.006890188625320484 0.011257847740583957 0.007100541162619722 0.01006075669311847 C 0.006890188625320484 0.011257847740583957 0.005628073401525056 0.008863665645652982 0.005838425938824294 0.01006075669311847 C 0.005628073401525056 0.008863665645652982 0.0060487784761235315 0.001681119360860061 0.005838425938824294 0.002878210408325548 C 0.0060487784761235315 0.001681119360860061 0.007310893699918959 0.004075301455791036 0.007100541162619722 0.0028782104083255487 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3193687568920431,0.41473691906481724) rotate(0) scale(1,1) translate(-0.009906215631991292,-0.007758324996586713)"><path d="M 0.009906215631991292 0.01177582555667286 C 0.009527697892962208 0.011618130366683736 0.004985485024613185 0.009371595040111463 0.005364002763642271 0.009883483276803363 C 0.004985485024613185 0.009371595040111463 0.005742520502671355 0.005121278479678157 0.00536400276364227 0.005633166716370057 C 0.005742520502671355 0.005121278479678157 0.010284733371020375 0.0035831292465114363 0.00990621563199129 0.0037408244365005608" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00990621563199129 0.0037408244365005608 C 0.00990621563199129 0.0037971349693254174 0.00990621563199129 0.004495385576353643 0.00990621563199129 0.004416550830398843 C 0.00990621563199129 0.004495385576353643 0.009906215631991292 0.004709365601088102 0.009906215631991292 0.004686841387958159" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991292 0.004686841387958159 C 0.009598744317030937 0.004813960204342075 0.005909088537506674 0.006597062302952661 0.006216559852467029 0.006212267184565152 C 0.005909088537506674 0.006597062302952661 0.006524031167427384 0.009689177926995784 0.006216559852467029 0.009304382808608274 C 0.006524031167427384 0.009689177926995784 0.010213686946951647 0.010956927421599186 0.009906215631991292 0.01082980860521527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991292 0.01082980860521527 C 0.009906215631991292 0.010852332818345212 0.009906215631991292 0.011178933908729377 0.009906215631991292 0.011100099162774577 C 0.009906215631991292 0.011178933908729377 0.009906215631991292 0.011832136089497718 0.009906215631991292 0.01177582555667286" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33659438235967165,0.41473691906481724) rotate(0) scale(1,1) translate(-0.005610434361182026,-0.007758324996586713)"><path d="M 0.005610434361182026 0.01177582555667286 C 0.005610434361182026 0.011719515023848003 0.005610434361182026 0.011021264416819778 0.005610434361182026 0.011100099162774577 C 0.005610434361182026 0.011021264416819778 0.005610434361182026 0.010807284392085328 0.005610434361182026 0.01082980860521527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.01082980860521527 C 0.005917905676142388 0.010702689788831354 0.009607561455666725 0.008919587690220764 0.009300090140706364 0.009304382808608274 C 0.009607561455666725 0.008919587690220764 0.008992618825746002 0.005827472066177643 0.009300090140706364 0.006212267184565152 C 0.008992618825746002 0.005827472066177643 0.0053029630462216645 0.004559722571574243 0.005610434361182026 0.004686841387958159" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.004686841387958159 C 0.005610434361182026 0.004664317174828216 0.005610434361182026 0.004337716084444044 0.005610434361182026 0.004416550830398843 C 0.005610434361182026 0.004337716084444044 0.005610434361182026 0.003684513903675704 0.005610434361182026 0.0037408244365005608" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.0037408244365005608 C 0.005988952100211114 0.0038985196264896852 0.010531164968560176 0.006145054953061957 0.010152647229531088 0.005633166716370057 C 0.010531164968560176 0.006145054953061957 0.009774129490502 0.010395371513495264 0.010152647229531088 0.009883483276803363 C 0.009774129490502 0.010395371513495264 0.005231916622152938 0.011933520746661985 0.005610434361182026 0.01177582555667286" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 309 KiB

View File

@@ -0,0 +1,230 @@
id: LowerArm
original_key: 下腕
resource: 腕左
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name: 下腕
- name: 筋肉
- name: 植性1
- name: 獣性1
- name: 竜性1
- name: 虫性1
- name: 淫タトゥ
- name: 悪タトゥ
- name: 植性2
- name: 獣性2
- name: 竜性2
- name: 虫性2
- name: 傷X1
- name: 傷I1
- name: 傷I2
- name: ハイライト
- name: グローブ
- name:
- name: 腕輪
joints:
- position: [
0.07551640869111194,
0.08037201570194648
]
- position: [
0.07550739062107162,
0.07881663137584644
]
- position: [
0.05419205417122354,
0.07951435776882662
]
- position: [
0.04865732996047142,
0.0790651578338222
]
- position: [
0.09224881764639194,
0.07870666616650525
]
- position: [
0.03615171859473153,
0.0794197511652783
]
- position: [
0.038141594443493514,
0.0686192017326257
]
- position: [
0.03803633007400521,
0.09010850460009992
]
- position: [
0.07738063509356544,
0.08037201570194648
]
- position: [
0.022513710083252956,
0.015355466486504125
]
- position: [
0.022559269673697098,
0.01554274260720842
]
- position: [
0.0225373887621452,
0.01544892382298245
]
- position: [
0.022597612083877054,
0.015731350105065902
]
- position: [
0.022481830680694412,
0.019310000624976943
]
- position: [
0.0035714943348595643,
0.013449723391500308
]
- position: [
0.003571716196332002,
0.012685431177467456
]
- position: [
0.004199819088414027,
0.017548722450527337
]
- position: [
0.004200040949886465,
0.016784430236494483
]
- position: [
0.016843839976272434,
0.012689390062294982
]
- position: [
0.01684383997627243,
0.011588584187858556
]
- position: [
0.004200262811358903,
0.01822174977133449
]
- position: [
0.004200262811358902,
0.017120943896898055
]
- position: [
0.08412477642939539,
0.05688059287924617
]
- position: [
0.016843839976272434,
0.01248954518468498
]
- position: [
0.01684383997627243,
0.011322690957782369
]
- position: [
0.004200262811358903,
0.018353846476266863
]
- position: [
0.004200262811358902,
0.01718699224936424
]
- position: [
0.03402488093749831,
0.011895946234457406
]
- position: [
0.03420525405029605,
0.01659159181946095
]
- position: [
0.03749035567820547,
0.02902856725848721
]
- position: [
0.03740581297774585,
0.02929250386025821
]
- position: [
0.037312126265517914,
0.029551012323715514
]
- position: [
0.03720959791144962,
0.02980386242874717
]
- position: [
0.037281688690074075,
0.030705913345912487
]
- position: [
0.0008778820692602247,
0.02000241966693153
]
- position: [
0.008957294083689117,
0.021124318540371036
]
- position: [
0.016938510371299707,
0.0222841467233524
]
- position: [
0.025005992605264253,
0.022705611621185135
]
- position: [
0.05205934181561566,
0.0791732174084057
]
- position: [
0.05205934181561566,
0.07917440268619945
]
- position: [
0.047009957722034666,
0.023477650909356725
]
- position: [
0.006130349670994406,
0.019521813214735492
]
- position: [
-0.0072968278849671565,
0.016167390064742056
]
- position: [
0.011152769902399134,
0.013044629247219094
]
- position: [
0.011152769902399133,
0.007106994545133555
]
- position: [
0.011152769902399134,
0.01776396495687496
]
- position: [
0.011152769902399133,
0.004541574847923305
]
- position: [
0.007758324996586712,
0.01020701065596839
]
- position: [
0.00990621563199129,
0.00950162629545907
]
- position: [
0.005610434361182024,
0.006015023697714344
]

View File

@@ -0,0 +1,721 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.26674541307533817,0.15457565569840084) rotate(0) scale(1,1) translate(-0.09602289911810039,-0.07853717660256988)"><path d="M 0.09602289911810036 0.07164901924650664 C 0.09627027477971815 0.07173654766749556 0.09946300924989908 0.07299279003319846 0.09899140705751387 0.07269936029837354 C 0.09946300924989908 0.07299279003319846 0.10198842456395359 0.07565734380361425 0.10168212542672285 0.07517017606440565 C 0.10198842456395359 0.07565734380361425 0.10266699670428277 0.0791079060196218 0.10266699670428277 0.07854537316887664 C 0.10266699670428277 0.0791079060196218 0.10137582628949211 0.08240773801255623 0.10168212542672285 0.08192057027334763 C 0.10137582628949211 0.08240773801255623 0.09851980486512868 0.08468344967982022 0.09899140705751389 0.08439138603937976 C 0.09851980486512868 0.08468344967982022 0.09577552345648256 0.08551149628523759 0.09602289911810036 0.08542533395863314" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09602289911810036 0.08542533395863314 C 0.09512584768235877 0.08550104329182014 0.08330756778112958 0.08637237490711706 0.08525828188920132 0.08633384595687715 C 0.08330756778112958 0.08637237490711706 0.07031215853718246 0.08571779261935208 0.0726143298212395 0.08588768136151213 C 0.07031215853718246 0.08571779261935208 0.05563580982545298 0.08410201449321619 0.05763222648051698 0.08429518105095656 C 0.05563580982545298 0.08410201449321619 0.047909421917134286 0.08350922447010047 0.04865732996047142 0.08356968266862785" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04865732996047142 0.08356968266862785 C 0.048450872572209494 0.08351939167730402 0.04582224661526068 0.08277850223795823 0.04617984130132831 0.0829661907727418 C 0.04582224661526068 0.08277850223795823 0.04415973633939794 0.08099233417298173 0.04436619372765986 0.08131742025122503 C 0.04415973633939794 0.08099233417298173 0.0437023526421852 0.07868978076425506 0.0437023526421852 0.0790651578338222 C 0.0437023526421852 0.07868978076425506 0.04457265111592178 0.07648780933817607 0.044366193727659854 0.07681289541641938 C 0.04457265111592178 0.07648780933817607 0.04653743598739594 0.07497643636011904 0.04617984130132831 0.07516412489490261 C 0.04653743598739594 0.07497643636011904 0.04886378734873334 0.07451034200769273 0.04865732996047142 0.07456063299901657" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04865732996047142 0.07456063299901657 C 0.049427440605431396 0.07458857159768334 0.05929125996103358 0.07486806823089645 0.05789865769999113 0.07489589618301794 C 0.05929125996103358 0.07486806823089645 0.06765974382075679 0.07387435672300141 0.06536855709298085 0.07422669757355871 C 0.06765974382075679 0.07387435672300141 0.08794742693539567 0.07045299944907601 0.08539289843330237 0.07066780597633035 C 0.08794742693539567 0.07045299944907601 0.09690873250850018 0.07173078701902133 0.09602289911810036 0.07164901924650664" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="筋肉">
<g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.01713961730213782,-0.01713961730213782)"><path d="M 0.0278344761517722 0.0188348954900365 C 0.02823252237451776 0.018937036282081876 0.03326043672463164 0.02032677585222094 0.03261103082471892 0.02006058499458102 C 0.03326043672463164 0.02032677585222094 0.03587870662789202 0.022193235847310103 0.03562734695072486 0.022029185781715557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03562734695072486 0.022029185781715557 C 0.03437056398593046 0.022253259993221735 0.018179923545079767 0.02472651732525033 0.020545951373192112 0.02471807631978968 C 0.018179923545079767 0.02472651732525033 0.006125768150058778 0.021914844641197848 0.007235013013376727 0.022130477847243372" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007235013013376727 0.022130477847243372 C 0.006761531948353222 0.02207561914855227 0.0005178240784302968 0.021350962921643866 0.0015532402330946625 0.021472173462950144 C 0.0005178240784302968 0.021350962921643866 -0.005751915932236523 0.02060959950895287 -0.005189980842595663 0.020675951351568043" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.005189980842595663 0.020675951351568043 C -0.005579727497822234 0.02056049147902229 -0.010007841910755148 0.018926813727514792 -0.009866940705314518 0.019290432881019 C -0.010007841910755148 0.018926813727514792 -0.006631949858097285 0.016064362228559108 -0.006880795307883226 0.01631252150951756" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.006880795307883226 0.01631252150951756 C -0.004871869575849884 0.01625743154606846 0.020119252764821495 0.01586163977983828 0.017226313476516875 0.01565144194812837 C 0.020119252764821495 0.01586163977983828 0.028718489708043478 0.01910018328519551 0.0278344761517722 0.0188348954900365" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(-0.01713961730213782,-0.01713961730213782)"><path d="M 0.02771533048953719 0.014977318527349104 C 0.02664026006024603 0.015268220066724358 0.011937934656947324 0.01863839025739796 0.01481448533804328 0.018468136999852145 C 0.011937934656947324 0.01863839025739796 -0.008604757935419075 0.016899709336069425 -0.006803277683614278 0.017020357617898864" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.006803277683614278 0.017020357617898864 C -0.006993336304790802 0.01675890219942906 -0.008887704421791492 0.013559729841836909 -0.009083981137732572 0.013882892596261196 C -0.008887704421791492 0.013559729841836909 -0.00406162175520372 0.013080697228852948 -0.004447957092321324 0.013142404564807428" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.004447957092321324 0.013142404564807428 C -0.004004872054511294 0.013101148814605 0.0018426442035405343 0.01257356496621523 0.0008690633613990298 0.012647335562378285 C 0.0018426442035405343 0.01257356496621523 0.0077655088177082015 0.012224642564890136 0.007235013013376727 0.012257157410850763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007235013013376727 0.012257157410850763 C 0.008677370195321839 0.011916859326555757 0.026909472903903782 0.007986819057711491 0.024543299196718073 0.008173580399310695 C 0.026909472903903782 0.007986819057711491 0.03655291402484584 0.010169558054356105 0.035629097499605245 0.010016021311660305" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035629097499605245 0.010016021311660305 C 0.03534375792326366 0.0102684159430184 0.03154554199933394 0.013458198322598192 0.03220502258350628 0.013044756887957459 C 0.03154554199933394 0.013458198322598192 0.02734118948170643 0.01513836533063174 0.02771533048953719 0.014977318527349104" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="植性1">
<g id="通常">
<g id="花弁">
<g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.07738063509356544,-0.08037201570194648)"><path d="M 0.09788712552055386 0.07164901924650664 C 0.09820283273270676 0.07172592242154396 0.1022224329981534 0.07285886390345711 0.10167561206638864 0.07257185734695447 C 0.1022224329981534 0.07285886390345711 0.10476468391388372 0.07559020786250621 0.10444897670173083 0.07509309792453826 C 0.10476468391388372 0.07559020786250621 0.10546409861222342 0.07911118971557515 0.10546409861222342 0.07853717660256988 C 0.10546409861222342 0.07911118971557515 0.10413326948957793 0.08247836521856945 0.10444897670173083 0.0819812552806015 C 0.10413326948957793 0.08247836521856945 0.1011287911346239 0.08478950241468795 0.10167561206638866 0.08450249585818531 C 0.1011287911346239 0.08478950241468795 0.09757141830840095 0.08550223713367046 0.09788712552055386 0.08542533395863314" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09788712552055386 0.08542533395863314 C 0.09678597513429764 0.0856976124878289 0.08201733565580438 0.08872324294635597 0.08467332088547927 0.08869267630898231 C 0.08201733565580438 0.08872324294635597 0.06304702256211563 0.08573176383296152 0.06601530276445523 0.08579213360711704 C 0.06304702256211563 0.08573176383296152 0.04666073123235706 0.08891752271126234 0.049053958457404026 0.08796823901911612 C 0.04666073123235706 0.08891752271126234 0.036316794197765644 0.09795147948735143 0.037296576063891675 0.09718353791287179" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.037296576063891675 0.09718353791287179 C 0.037201171274795 0.09671206284438312 0.03570663503509032 0.09063210940471692 0.03615171859473153 0.09152583709100767 C 0.03570663503509032 0.09063210940471692 0.03176317550275219 0.08544703996816497 0.03195557334819715 0.08645880567738275 C 0.03176317550275219 0.08544703996816497 0.033842944449392016 0.0782051143431531 0.033842944449392016 0.0793846485803944 C 0.033842944449392016 0.0782051143431531 0.032147971193642114 0.07129847955208335 0.03195557334819715 0.07230439483048713 C 0.032147971193642114 0.07129847955208335 0.036609960200558775 0.06641550078136514 0.03615171859473153 0.06731366523954893 C 0.036609960200558775 0.06641550078136514 0.037563035453406834 0.061044151006676095 0.03745447261812412 0.0615264213322817" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03745447261812412 0.0615264213322817 C 0.038376156423268026 0.062295766757293446 0.050868851539846126 0.0717751578577304 0.048514678279851044 0.07075856643242268 C 0.050868851539846126 0.0717751578577304 0.06871777195520078 0.07364776229103062 0.0657045517380651 0.07372551843597447 C 0.06871777195520078 0.07364776229103062 0.08735520203402 0.0696524510939742 0.08467332088547927 0.06982549269309651 C 0.08735520203402 0.0696524510939742 0.09898827590681007 0.07180097979262415 0.09788712552055386 0.07164901924650664" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="影">
<g transform="translate(0.2050100061495158,0.15545823026110928) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.0017492691064673496 0.0007518373665458614 C 0.0024598251825125577 0.0009498426902337691 0.012890769294704115 0.0035325675318578285 0.010275942019009847 0.003127901250800754 C 0.012890769294704115 0.0035325675318578285 0.03503146761444762 0.00581449369659992 0.03312719641479856 0.005607832739230753" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03312719641479856 0.005607832739230753 C 0.0312229252151495 0.0058144936965999205 0.007658831486495611 0.008492164225861824 0.010275942019009852 0.008087764227660757 C 0.007658831486495611 0.008492164225861824 0.0010090306917624856 0.01065837175847545 0.0017218700246276674 0.010460632717643551" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0017218700246276674 0.010460632717643551 C 0.0018528570746127043 0.010052705470733806 0.003295997881268084 0.004756439475468464 0.0032937146244481105 0.005565505754726605 C 0.003295997881268084 0.004756439475468464 0.001620565313302283 0.000350698334197467 0.0017492691064673466 0.0007518373665458622" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.20699988199827782,0.14465768082845665) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.003537793080338 0.00444940523543458 C 0.003960415043249389 0.0047156131235301475 0.009944428618865988 0.008276109481297918 0.008609256635274667 0.007643899892581392 C 0.009944428618865988 0.008276109481297918 0.020472406904113772 0.012401922000653853 0.01955985688343384 0.012035920300032895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01955985688343384 0.012035920300032895 C 0.01856968278696787 0.011835979346054147 0.0060971349171066655 0.009249212988791881 0.007677767725842182 0.009636628852287919 C 0.0060971349171066655 0.009249212988791881 1.8044663381013796E-06 0.007199455028563155 0.000592263178607646 0.0073869299380804445" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.000592263178607646 0.0073869299380804445 C 0.0006338269447598195 0.007347487867527771 0.001265370019831298 0.006756451537185295 0.001091028372433728 0.00691362509144836 C 0.001265370019831298 0.006756451537185295 0.0028882600063705093 0.005295495632255846 0.002684362947378487 0.005500847286923661 C 0.0028882600063705093 0.005295495632255846 0.0036089122580846224 0.0043617850644771545 0.0035377930803379967 0.004449405235434578" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.20689461762878952,0.1661469836959309) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.003566520838377659 0.006747265232743888 C 0.0035002299260527563 0.006667793656817644 0.0025699913936562463 0.005592225103578398 0.002771029890478826 0.005793606321628958 C 0.0025699913936562463 0.005592225103578398 0.0009754114604208659 0.004165801736111969 0.0011540588765067022 0.004330690616137174 C 0.0009754114604208659 0.004165801736111969 0.0005833610658606305 0.00377196052342561 0.0006272608974487899 0.0038149397613264995" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0006272608974487899 0.0038149397613264995 C 0.0012148031331482394 0.0036286145000637526 0.009255484058007604 0.0011927704109320405 0.007677767725842182 0.0015790366261735356 C 0.009255484058007604 0.0011927704109320405 0.02055003097989981 -0.0010201957755501905 0.01955985688343384 -0.0008202548215714422" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01955985688343384 -0.0008202548215714422 C 0.01864730686275391 -0.0004542531209504874 0.007276478631519986 0.00420239225707296 0.008609256635274667 0.0035717655858800157 C 0.007276478631519986 0.00420239225707296 0.003146292855302913 0.007011890203315878 0.0035665208383776634 0.006747265232743888" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.26110710520117625,0.1547451452623362) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.013283083207660324 0.0011743859872178541 C 0.013676357725392382 0.0012752017834394762 0.018032529256685095 0.002626931724932494 0.018002377420445005 0.0023841755418773187 C 0.018032529256685095 0.002626931724932494 0.013281782561049463 0.0042294005707135115 0.013644905242541427 0.004087460183879958" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013644905242541427 0.004087460183879958 C 0.012438685921617704 0.0039643583772394795 -0.003326612979343692 0.002565613854062652 -0.0008297266085432608 0.002610238504194213 C -0.003326612979343692 0.002565613854062652 -0.01760839825694046 0.0036304415388101465 -0.01631773120706375 0.0035519643823012288" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.01631773120706375 0.0035519643823012288 C -0.01501044248853355 0.00333702992807818 0.0018364679498590025 0.0007746193987010255 -0.000630266584701337 0.0009727509316246399 C 0.0018364679498590025 0.0007746193987010255 0.014442529023690462 0.0011911889085172895 0.013283083207660324 0.001174385987217855" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.26110710520117625,0.1547451452623362) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.013604574456424004 0.009543754012524826 C 0.012446891950359971 0.00969537842845187 -0.0027252034873192143 0.011364433726079985 -0.0002876156163443939 0.01136324700364936 C -0.0027252034873192143 0.011364433726079985 -0.016926385360184627 0.009407556988195906 -0.01564647999527384 0.009557994681692326" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.01564647999527384 0.009557994681692326 C -0.014393626467362818 0.009573361543314448 0.001836801401675223 0.009497133379557559 -0.0006122376603415712 0.00974239702115779 C 0.001836801401675223 0.009497133379557559 0.014938174283033456 0.006354200479267191 0.013741988748927686 0.006614830982489545" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013741988748927686 0.006614830982489545 C 0.014115118268772143 0.006733398193495225 0.0182080917960192 0.008281714433727312 0.018219542987061174 0.008037637514557706 C 0.0182080917960192 0.008281714433727312 0.013219993745537574 0.009669263720688753 0.013604574456424004 0.009543754012524826" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
</g>
<g id="欠損">
<g id="花弁">
<g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.07738063509356544,-0.08037201570194648)"><path d="M 0.09788712552055386 0.07164901924650664 C 0.09820283273270676 0.07172592242154396 0.1022224329981534 0.07285886390345711 0.10167561206638864 0.07257185734695447 C 0.1022224329981534 0.07285886390345711 0.10476468391388372 0.07559020786250621 0.10444897670173083 0.07509309792453826 C 0.10476468391388372 0.07559020786250621 0.10546409861222342 0.07911118971557515 0.10546409861222342 0.07853717660256988 C 0.10546409861222342 0.07911118971557515 0.10413326948957793 0.08247836521856945 0.10444897670173083 0.0819812552806015 C 0.10413326948957793 0.08247836521856945 0.1011287911346239 0.08478950241468795 0.10167561206638866 0.08450249585818531 C 0.1011287911346239 0.08478950241468795 0.09757141830840095 0.08550223713367046 0.09788712552055386 0.08542533395863314" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09788712552055386 0.08542533395863314 C 0.09678597513429764 0.0856976124878289 0.08201733565580438 0.08872324294635597 0.08467332088547927 0.08869267630898231 C 0.08201733565580438 0.08872324294635597 0.06324782740723303 0.08566588054484782 0.06601530276445523 0.08579213360711704 C 0.06324782740723303 0.08566588054484782 0.04960866889765253 0.08763714376301969 0.05146361659881283 0.08717763956175162 C 0.04960866889765253 0.08763714376301969 0.04311362316317483 0.09165022939404904 0.0437559303505316 0.09130618402233386" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0437559303505316 0.09130618402233386 C 0.04358033258225291 0.09121517364567772 0.041448515899683125 0.08993003019081881 0.041648757131187354 0.09021405950246017 C 0.041448515899683125 0.08993003019081881 0.041088023207692094 0.0876722513502737 0.04135303557248084 0.08789783228263762 C 0.041088023207692094 0.0876722513502737 0.03827430776957891 0.08720788426578302 0.03846860875372247 0.08750708831409329 C 0.03827430776957891 0.08720788426578302 0.039067491680177716 0.08404074165198279 0.03902142376275808 0.08430738370291437" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03902142376275808 0.08430738370291437 C 0.039088470251926084 0.08428748122004445 0.03993544528855865 0.08403123675309437 0.03982598163277415 0.08406855390847545 C 0.03993544528855865 0.08403123675309437 0.04037740479878856 0.08384216316583024 0.04033498763217207 0.0838595778383414" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04033498763217207 0.0838595778383414 C 0.04044297542976825 0.08388904525863816 0.04181282453106798 0.08415845505401022 0.04163084120332625 0.08421318688190246 C 0.04181282453106798 0.08415845505401022 0.04259278309521837 0.08311859665544542 0.042518787565072824 0.08320279590363443" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.042518787565072824 0.08320279590363443 C 0.04239574851480628 0.08317706019887577 0.040860335634132494 0.08294869927442287 0.04104231896187423 0.08289396744653063 C 0.040860335634132494 0.08294869927442287 0.04027604335469689 0.0839400453709923 0.04033498763217207 0.0838595778383414" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04033498763217207 0.0838595778383414 C 0.04029257046555557 0.08387699251085257 0.03971651797698965 0.08410587106385653 0.03982598163277415 0.08406855390847545 C 0.03971651797698965 0.08410587106385653 0.03895437727359007 0.08432728618578428 0.03902142376275808 0.08430738370291437" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03902142376275808 0.08430738370291437 C 0.038529188746431055 0.08391259226438588 0.03531321770911581 0.08093940604261349 0.03606801366479592 0.0819386350717435 C 0.03531321770911581 0.08093940604261349 0.03460489676324156 0.0772457627359149 0.034492648028677395 0.07831200952813436 C 0.03460489676324156 0.0772457627359149 0.036349241986188746 0.07444422019076802 0.03674150607218093 0.0755411543184267 C 0.036349241986188746 0.07444422019076802 0.031371989752814855 0.0710952798361415 0.032139063512724296 0.07173040476218225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.032139063512724296 0.07173040476218225 C 0.03258618720611986 0.07187726454528019 0.038225325326997794 0.07373306571098176 0.03750454783347103 0.07349272215935754 C 0.038225325326997794 0.07373306571098176 0.041062047235176743 0.07470801115019923 0.040788393435045533 0.07461452738167294" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.040788393435045533 0.07461452738167294 C 0.040841377573322964 0.07472094045104309 0.041662192605927635 0.07597292141697683 0.041424203094374674 0.07589148421411472 C 0.041662192605927635 0.07597292141697683 0.04382927294695656 0.07556679794951023 0.04364426757368103 0.07559177381601827" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04364426757368103 0.07559177381601827 C 0.043546446324475685 0.07550831897226723 0.04223242307166397 0.07450887848814379 0.04247041258321693 0.0745903156910059 C 0.04223242307166397 0.07450887848814379 0.040648225172697915 0.07461654502256186 0.040788393435045533 0.07461452738167294" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.040788393435045533 0.07461452738167294 C 0.040514739634914324 0.07452104361314665 0.03678377033994426 0.07325237860773331 0.03750454783347103 0.07349272215935754 C 0.03678377033994426 0.07325237860773331 0.03169193981932873 0.0715835449790843 0.032139063512724296 0.07173040476218225" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.032139063512724296 0.07173040476218225 C 0.03225325302028548 0.0715667518197303 0.033458944585657305 0.07003610619028466 0.03292657735365753 0.07060176378594092 C 0.033458944585657305 0.07003610619028466 0.03628002402755358 0.06734993449322918 0.03581056164432382 0.06782931791696882 C 0.03628002402755358 0.06734993449322918 0.0362563473089121 0.06712229193858299 0.03616424894439328 0.06729567122654649 C 0.0362563473089121 0.06712229193858299 0.03648653648118275 0.0665375981787598 0.036445722775455096 0.06663359869618796" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036445722775455096 0.06663359869618796 C 0.03670798338062865 0.06672110294424438 0.040111747468202306 0.06769004053198022 0.039592850037537805 0.067683649672865 C 0.040111747468202306 0.06769004053198022 0.042929128768920015 0.0666291756166293 0.04267249194342908 0.06671028900557051" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04267249194342908 0.06671028900557051 C 0.04329073215851195 0.06709398289042331 0.052010712840643264 0.07189921807633788 0.050091374524423596 0.07131461562380421 C 0.052010712840643264 0.07189921807633788 0.0685863806014864 0.07360142485841549 0.0657045517380651 0.07372551843597447 C 0.0685863806014864 0.07360142485841549 0.08735520203402 0.0696524510939742 0.08467332088547927 0.06982549269309651 C 0.08735520203402 0.0696524510939742 0.09898827590681007 0.07180097979262415 0.09788712552055386 0.07164901924650664" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="影">
<g transform="translate(0.2050100061495158,0.15545823026110928) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.0017492691064673496 0.0007518373665458614 C 0.0019812195084407107 0.0008363794397653345 0.004873077497242801 0.0018851170475477717 0.0045326739301476855 0.001766342245179539 C 0.004873077497242801 0.0018851170475477717 0.005942565076730485 0.002211367724113412 0.0058341119116087315 0.0021771349949646526" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0058341119116087315 0.0021771349949646526 C 0.006365397803899914 0.002278734148870539 0.014483966327702068 0.0036822163205241275 0.012209542619102915 0.003396324841835286 C 0.014483966327702068 0.0036822163205241275 0.03487033423110653 0.005792125064013709 0.03312719641479856 0.005607832739230753" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03312719641479856 0.005607832739230753 C 0.0312229252151495 0.0058144936965999205 0.007658831486495611 0.008492164225861824 0.010275942019009852 0.008087764227660757 C 0.007658831486495611 0.008492164225861824 0.0010090306917624856 0.01065837175847545 0.0017218700246276674 0.010460632717643551" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0017218700246276674 0.010460632717643551 C 0.0018528570746127043 0.010052705470733806 0.003295997881268084 0.004756439475468464 0.0032937146244481105 0.005565505754726605 C 0.003295997881268084 0.004756439475468464 0.001620565313302283 0.000350698334197467 0.0017492691064673466 0.0007518373665458622" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.20699988199827782,0.14465768082845665) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.003537793080338 0.00444940523543458 C 0.003960415043249389 0.0047156131235301475 0.009944428618865988 0.008276109481297918 0.008609256635274667 0.007643899892581392 C 0.009944428618865988 0.008276109481297918 0.020472406904113772 0.012401922000653853 0.01955985688343384 0.012035920300032895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01955985688343384 0.012035920300032895 C 0.01856968278696787 0.011835979346054147 0.0060971349171066655 0.009249212988791881 0.007677767725842182 0.009636628852287919 C 0.0060971349171066655 0.009249212988791881 1.8044663381013796E-06 0.007199455028563155 0.000592263178607646 0.0073869299380804445" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.000592263178607646 0.0073869299380804445 C 0.0006338269447598195 0.007347487867527771 0.001265370019831298 0.006756451537185295 0.001091028372433728 0.00691362509144836 C 0.001265370019831298 0.006756451537185295 0.0028882600063705093 0.005295495632255846 0.002684362947378487 0.005500847286923661 C 0.0028882600063705093 0.005295495632255846 0.0036089122580846224 0.0043617850644771545 0.0035377930803379967 0.004449405235434578" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.20689461762878952,0.1661469836959309) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.003566520838377659 0.006747265232743888 C 0.0035002299260527563 0.006667793656817644 0.0025699913936562463 0.005592225103578398 0.002771029890478826 0.005793606321628958 C 0.0025699913936562463 0.005592225103578398 0.0009754114604208659 0.004165801736111969 0.0011540588765067022 0.004330690616137174 C 0.0009754114604208659 0.004165801736111969 0.0005833610658606305 0.00377196052342561 0.0006272608974487899 0.0038149397613264995" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0006272608974487899 0.0038149397613264995 C 0.0009149220255661821 0.003715261311184072 0.004526094791342651 0.0024700935404012264 0.004079194434857497 0.0026187983596173705 C 0.004526094791342651 0.0024700935404012264 0.006149304403638404 0.001981455561659056 0.005990065175270642 0.0020304819307327727" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005990065175270642 0.0020304819307327727 C 0.006302409286543158 0.0019540934516151885 0.010869010486221105 0.000876258785296408 0.00973819451054084 0.0011138201813217592 C 0.010869010486221105 0.000876258785296408 0.020378328747841592 -0.000981427738479209 0.01955985688343384 -0.0008202548215714422" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01955985688343384 -0.0008202548215714422 C 0.01864730686275391 -0.0004542531209504874 0.007276478631519986 0.00420239225707296 0.008609256635274667 0.0035717655858800157 C 0.007276478631519986 0.00420239225707296 0.003146292855302913 0.007011890203315878 0.0035665208383776634 0.006747265232743888" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.26110710520117625,0.1547451452623362) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.013283083207660324 0.0011743859872178541 C 0.013676357725392382 0.0012752017834394762 0.018032529256685095 0.002626931724932494 0.018002377420445005 0.0023841755418773187 C 0.018032529256685095 0.002626931724932494 0.013281782561049463 0.0042294005707135115 0.013644905242541427 0.004087460183879958" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013644905242541427 0.004087460183879958 C 0.012438685921617704 0.0039643583772394795 -0.003326612979343692 0.002565613854062652 -0.0008297266085432608 0.002610238504194213 C -0.003326612979343692 0.002565613854062652 -0.01760839825694046 0.0036304415388101465 -0.01631773120706375 0.0035519643823012288" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.01631773120706375 0.0035519643823012288 C -0.01501044248853355 0.00333702992807818 0.0018364679498590025 0.0007746193987010255 -0.000630266584701337 0.0009727509316246399 C 0.0018364679498590025 0.0007746193987010255 0.014442529023690462 0.0011911889085172895 0.013283083207660324 0.001174385987217855" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.26110710520117625,0.1547451452623362) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.013604574456424004 0.009543754012524826 C 0.012446891950359971 0.00969537842845187 -0.0027252034873192143 0.011364433726079985 -0.0002876156163443939 0.01136324700364936 C -0.0027252034873192143 0.011364433726079985 -0.016926385360184627 0.009407556988195906 -0.01564647999527384 0.009557994681692326" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.01564647999527384 0.009557994681692326 C -0.014393626467362818 0.009573361543314448 0.001836801401675223 0.009497133379557559 -0.0006122376603415712 0.00974239702115779 C 0.001836801401675223 0.009497133379557559 0.014938174283033456 0.006354200479267191 0.013741988748927686 0.006614830982489545" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013741988748927686 0.006614830982489545 C 0.014115118268772143 0.006733398193495225 0.0182080917960192 0.008281714433727312 0.018219542987061174 0.008037637514557706 C 0.0182080917960192 0.008281714433727312 0.013219993745537574 0.009669263720688753 0.013604574456424004 0.009543754012524826" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
</g>
</g>
<g id="獣性1">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01602013802246163)"><path d="M 0.01154770888533825 0.006355488579199009 C 0.012249063790427396 0.006310307827876538 0.021749305642298294 0.005814756250307696 0.019963967746408018 0.005813319563329354 C 0.021749305642298294 0.005814756250307696 0.03483635790726611 0.006400915444348438 0.03297176363602158 0.00637272882293912 C 0.03483635790726611 0.006400915444348438 0.0437035840924391 0.006154536143451694 0.04233909900134241 0.006151559020241175 C 0.0437035840924391 0.006154536143451694 0.04992945853983512 0.006429862241567351 0.04934558472918183 0.006408454301465337" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04934558472918183 0.006408454301465337 C 0.049782660496199345 0.006172508736133823 0.05487599285213687 0.003599243557558313 0.054590493933392034 0.003577107517487167 C 0.05487599285213687 0.003599243557558313 0.05295228403898776 0.006844441409697465 0.05277157175411993 0.006674086782319087 C 0.05295228403898776 0.006844441409697465 0.05704329911457299 0.005677779694175757 0.05675904135180603 0.005621363046027704 C 0.05704329911457299 0.005677779694175757 0.056543763714548945 0.0074017601999981095 0.05618266490732343 0.007351086560095717 C 0.056543763714548945 0.0074017601999981095 0.06131031821162436 0.006295232708978433 0.061092227038512185 0.006229446724856414 C 0.06131031821162436 0.006295232708978433 0.05860871998018264 0.008299774339951898 0.05879975898466953 0.008140518369559938" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05879975898466953 0.008140518369559938 C 0.05904053614196147 0.008215169558277089 0.0621373555693603 0.00928860140574291 0.06168908487217283 0.009036332634165756 C 0.0621373555693603 0.00928860140574291 0.06449252238469322 0.011620689240802897 0.06417900735091914 0.011167743628485789 C 0.06449252238469322 0.011620689240802897 0.0654955248486549 0.015047303237875516 0.06545126527746184 0.014471679981971053 C 0.0654955248486549 0.015047303237875516 0.06442496348906393 0.018610880316386993 0.06471012220523578 0.018075222699339345 C 0.06442496348906393 0.018610880316386993 0.06153030019768999 0.021215151716783235 0.062029360683399655 0.020899571386542817 C 0.06153030019768999 0.021215151716783235 0.058445732684496515 0.021942404601864477 0.05872139637671983 0.02186218666222435" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05872139637671983 0.02186218666222435 C 0.05891088247049984 0.021995952656223616 0.06077559481227674 0.023556319478633285 0.06099522950207988 0.02346737859021552 C 0.06077559481227674 0.023556319478633285 0.05607133509729748 0.023154966013131606 0.05608578009908216 0.022929477323237527 C 0.05607133509729748 0.023154966013131606 0.06053503505473359 0.026270298129007476 0.06082188948066374 0.026173242868944464 C 0.06053503505473359 0.026270298129007476 0.052367467064481414 0.024251015737386094 0.05264352698792026 0.02409414044399367 C 0.052367467064481414 0.024251015737386094 0.057142732740964854 0.028108780022706576 0.05750917039939756 0.028055746389653514 C 0.057142732740964854 0.028108780022706576 0.04747436714400526 0.024453443844878492 0.04824627508672775 0.024730544040630416" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04824627508672775 0.024730544040630416 C 0.047604787198551046 0.024709041541115633 0.03929251306858958 0.024489415545904843 0.040548420428607325 0.024472514046453 C 0.03929251306858958 0.024489415545904843 0.03144911684421426 0.02506827038248365 0.0331753867665148 0.024933362034052525 C 0.03144911684421426 0.02506827038248365 0.01803087487090283 0.026154033013599125 0.019833181361000877 0.02609141422762648 C 0.01803087487090283 0.026154033013599125 0.010857252845699696 0.025650901902232397 0.011547708885338247 0.025684787465724248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011547708885338247 0.025684787465724248 C 0.011159144762984853 0.02557688600683041 0.006211926615183021 0.02398727623219558 0.006884939417097511 0.02438996995899819 C 0.006211926615183021 0.02398727623219558 0.0030829911400109817 0.020154976749381562 0.003471555262364376 0.020852462744092942 C 0.0030829911400109817 0.020154976749381562 0.002222169948856776 0.015214750568856423 0.0022221699488567765 0.01602013802246164 C 0.002222169948856776 0.015214750568856423 0.0038601193847177654 0.01049032730611895 0.003471555262364372 0.01118781330083033 C 0.0038601193847177654 0.01049032730611895 0.00755795221901199 0.007247612359122471 0.0068849394170975 0.00765030608592508 C 0.00755795221901199 0.007247612359122471 0.01193627300769164 0.006247587120305176 0.011547708885338244 0.0063554885791990146" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="竜性1">
<g id="肘">
<g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.09602289911810039,-0.07853717660256988)"><path d="M 0.11652968346932081 0.08367377223957102 C 0.11686314033633989 0.08364101183349641 0.12120001013771331 0.08303129498459177 0.12053116587354969 0.08328064736667573 C 0.12120001013771331 0.08303129498459177 0.1250255839207053 0.08015023407574112 0.12455581463928424 0.0806815436545635 C 0.1250255839207053 0.08015023407574112 0.126213026048763 0.07628959425367755 0.12616839725060275 0.07690493242080726 C 0.126213026048763 0.07628959425367755 0.12462159093578615 0.07273425856641151 0.12509136021720724 0.07329748564900697 C 0.12462159093578615 0.07273425856641151 0.11981769281122581 0.06985139149060474 0.12053116587354969 0.07014620742966171 C 0.11981769281122581 0.06985139149060474 0.11619622660230174 0.06972748495954509 0.11652968346932081 0.06975969438032328" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.11652968346932081 0.06975969438032328 C 0.11650655480283911 0.06990218635327962 0.11569091557631124 0.07210915412999597 0.11625213947154038 0.0714695980557993 C 0.11569091557631124 0.07210915412999597 0.10979690707558672 0.07836417450609337 0.10979499672657117 0.07743436727068324 C 0.10979690707558672 0.07836417450609337 0.11683628755495602 0.08314723529479487 0.11627506365972688 0.0826272848807209 C 0.11683628755495602 0.08314723529479487 0.11655090178678698 0.0837609795194752 0.11652968346932081 0.08367377223957102" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.021587250456204236,-0.02158725045620423)"><path d="M 0.04270865237630052 0.014821958965823239 C 0.04324055576369854 0.015015174573312882 0.05071355774900505 0.017623122202851275 0.049091493025076795 0.017140546255698965 C 0.05071355774900505 0.017623122202851275 0.06326359039996986 0.020902230671313648 0.06217342906343962 0.02061287033165098" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06217342906343962 0.02061287033165098 C 0.061475780356389606 0.020867230293794052 0.05218709354009946 0.024058738793995105 0.053801644578839514 0.023665189877367866 C 0.05218709354009946 0.024058738793995105 0.041881914266868936 0.025474646285662032 0.042798816598558984 0.025335457331177865" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.042798816598558984 0.025335457331177865 C 0.04252444142253795 0.025142002710521184 0.03897660959413945 0.022723504283856413 0.0395063144863066 0.023014001883297698 C 0.03897660959413945 0.022723504283856413 0.03618702817640707 0.021752443159097832 0.03644235789255319 0.021849486137882436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03644235789255319 0.021849486137882436 C 0.03609575493719645 0.021692900861194825 0.032225602900863785 0.019738271421364813 0.03228312242827233 0.019970462817631124 C 0.032225602900863785 0.019738271421364813 0.03604120699159883 0.01898758326310802 0.03575212356365064 0.01906318938268672" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03575212356365064 0.01906318938268672 C 0.03610878673545923 0.018917758850261 0.040611792359741265 0.016964587125506143 0.04003208162535377 0.0173180229935781 C 0.040611792359741265 0.016964587125506143 0.042931699938879415 0.014613953630177 0.04270865237630052 0.014821958965823239" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="鱗">
<g transform="translate(0.24854860170788984,0.155043786403906) rotate(0) scale(1,1) translate(-0.016635516905246322,-0.016635516905246325)"><path d="M 0.019147145594247194 0.007576224293427806 C 0.019446913980991753 0.007511951284955978 0.02337559295487299 0.0068195003600124175 0.02274436623518189 0.006804948191765878 C 0.02337559295487299 0.0068195003600124175 0.02705332456348693 0.007829675489104643 0.02672186623054039 0.007750850312386277" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02672186623054039 0.007750850312386277 C 0.02712552399640604 0.008494898456475788 0.03162909136093699 0.018052095198619524 0.031565759420928194 0.01667942804146041 C 0.03162909136093699 0.018052095198619524 0.027141523684789004 0.024851475211365232 0.027481849510645865 0.02422285619829563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027481849510645865 0.02422285619829563 C 0.027241116196235194 0.024322314692009486 0.024055019134818296 0.025505077160969745 0.024593049737717813 0.025416358122861898 C 0.024055019134818296 0.025505077160969745 0.020728184987362834 0.025276745199983817 0.02102548227585168 0.025287484655589824" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02102548227585168 0.025287484655589824 C 0.02085926874182618 0.025103539350645916 0.018997478766833168 0.02233038475980752 0.0190309198675457 0.023080140996262936 C 0.018997478766833168 0.02233038475980752 0.020756961500614297 0.015724598886613355 0.02062418906730133 0.016290409818124862" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02062418906730133 0.016290409818124862 C 0.02041568275054932 0.01575156111352143 0.01799902631018941 0.009098043235825597 0.018122113266277256 0.009824225362883686 C 0.01799902631018941 0.009098043235825597 0.019232564954911355 0.007388890870973149 0.019147145594247194 0.007576224293427806" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.24262484893943906,0.15613656070194393) rotate(0) scale(1,1) translate(-0.016635516905246322,-0.016635516905246325)"><path d="M 0.01942339435445607 0.0075977903568016794 C 0.019725447535610837 0.007543067197914293 0.023673798852797093 0.006974712597113439 0.023048032528313295 0.006941112450153038 C 0.023673798852797093 0.006974712597113439 0.027256303391590662 0.00808931542617427 0.026932590248261633 0.008000992120326482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026932590248261633 0.008000992120326482 C 0.027297616523420776 0.00867293272166786 0.031294038615288115 0.017325432143799047 0.03131290555017133 0.016064279336423033 C 0.031294038615288115 0.017325432143799047 0.02632229381962077 0.023724038014873286 0.026706187029663122 0.02313482580883865" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026706187029663122 0.02313482580883865 C 0.026501844678603906 0.023207300328833214 0.023790527456027916 0.02404251316510365 0.024254078816952535 0.024004520048773417 C 0.023790527456027916 0.02404251316510365 0.020884361688702262 0.023556261801137138 0.02114357069856767 0.02359074320480147" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02114357069856767 0.02359074320480147 C 0.02099844741797444 0.023434757618661047 0.019422675664535705 0.021018335671202912 0.019402091331448917 0.021718916171116393 C 0.019422675664535705 0.021018335671202912 0.02155629030928914 0.014639182292066625 0.021390582695609124 0.015183777205839685" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.021390582695609124 0.015183777205839685 C 0.021153433594024766 0.014717471288220485 0.018380861114834068 0.00895594062365612 0.01854479347659682 0.009588106194409288 C 0.018380861114834068 0.00895594062365612 0.019496611094277673 0.007431930703667712 0.01942339435445607 0.0075977903568016794" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23672297708254017,0.15732315378420778) rotate(0) scale(1,1) translate(-0.016635516905246322,-0.016635516905246325)"><path d="M 0.01932068016339781 0.007681091718528763 C 0.019621636784498582 0.007621584571622452 0.023573361586896126 0.006999360191456636 0.022932159616607096 0.00696700595565304 C 0.023573361586896126 0.006999360191456636 0.027355349156054438 0.008161203930881818 0.02701510380686618 0.008069342548171913" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02701510380686618 0.008069342548171913 C 0.02733177713589958 0.008668060496843641 0.030738911870932285 0.01637096152279301 0.030815183755266994 0.01525395793223265 C 0.030738911870932285 0.01637096152279301 0.025706895981481567 0.021991671276784856 0.026099841194849677 0.021473385634896223" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026099841194849677 0.021473385634896223 C 0.0259269456749482 0.02152959928679074 0.02361387176432775 0.0221680155710054 0.02402509495603196 0.02214794945763042 C 0.02361387176432775 0.0221680155710054 0.02092683522259642 0.021678031456876447 0.021165162894399157 0.02171417899539598" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.021165162894399157 0.02171417899539598 C 0.021037333398503912 0.021571922412891076 0.019756737820426713 0.019365735386639858 0.019631208943656223 0.020007100005337092 C 0.019756737820426713 0.019365735386639858 0.022924867788310772 0.013518695534836865 0.02267150941564504 0.01401780357102919" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02267150941564504 0.01401780357102919 C 0.02233121483454995 0.013631699376570189 0.018308738671483346 0.00885649391647947 0.01858797444250395 0.009384553237521173 C 0.018308738671483346 0.00885649391647947 0.0193817389734723 0.007539136591946062 0.01932068016339781 0.007681091718528763" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23076088190390942,0.1582273205843882) rotate(0) scale(1,1) translate(-0.016635516905246322,-0.016635516905246325)"><path d="M 0.019836166130933124 0.007693928556136382 C 0.020140136101224594 0.007648821918573083 0.024112378238821584 0.007206224882662022 0.02348380577443074 0.007152648905376797 C 0.024112378238821584 0.007206224882662022 0.027703638197722633 0.008435522898407608 0.027379035703623256 0.008336840283559084" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027379035703623256 0.008336840283559084 C 0.02764483413166379 0.008841308957135136 0.03045614783042416 0.015360941656934149 0.03056861684010966 0.014390464366471713 C 0.03045614783042416 0.015360941656934149 0.02565114014967123 0.0204485763859947 0.026029407587397264 0.01998256776910832" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026029407587397264 0.01998256776910832 C 0.025870510072605248 0.02001709176164787 0.02368890097674606 0.02039839282202901 0.02412263740989307 0.020396855679582958 C 0.02368890097674606 0.02039839282202901 0.02054973147127817 0.019968026628367407 0.020824570389633163 0.02000101347846091" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020824570389633163 0.02000101347846091 C 0.020722938911003547 0.01988305077509329 0.019804906275370755 0.018024320555033793 0.01960499264607775 0.018585461038049467 C 0.019804906275370755 0.018024320555033793 0.023525079049071862 0.012824149902624768 0.02322353394114924 0.013267327682272822" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02322353394114924 0.013267327682272822 C 0.022840814490095583 0.012953170837203437 0.018348619877654015 0.009032995614262166 0.01863090052850536 0.009497445541440202 C 0.018348619877654015 0.009032995614262166 0.019936604931135436 0.00754363547402773 0.019836166130933124 0.007693928556136382" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.016635516905246322,-0.016635516905246325)"><path d="M 0.020256591916863194 0.01109178559657617 C 0.020562108335705546 0.011056350435826687 0.024548884509283275 0.010741018989331164 0.02392278894297141 0.01066656366758236 C 0.024548884509283275 0.010741018989331164 0.028090317860075077 0.012095139940060118 0.027769738712605564 0.011985249457561829" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027769738712605564 0.011985249457561829 C 0.028021503911566232 0.012398588414099222 0.030666371151154562 0.017762399653286572 0.03079092110013359 0.016945316936010556 C 0.030666371151154562 0.017762399653286572 0.0258988241769175 0.022193985825612654 0.0262751393248572 0.02179024206487403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0262751393248572 0.02179024206487403 C 0.02605788036726669 0.021836851457613826 0.023174509516591515 0.02236479232567049 0.023668031833771114 0.022349554777751558 C 0.023174509516591515 0.02236479232567049 0.020076608159112934 0.021941720795080315 0.020352871518702024 0.02197309263990118" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020352871518702024 0.02197309263990118 C 0.020089372502676252 0.021765954096401485 0.017401981121690096 0.019010534558178693 0.01719088332639278 0.019487430117904846 C 0.017401981121690096 0.019010534558178693 0.023360641873592883 0.015980588906960917 0.022886045062269798 0.016250345923187373" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022886045062269798 0.016250345923187373 C 0.02244421246398096 0.01600392033025274 0.017364932787353182 0.01286335878075417 0.01758405388280373 0.01329323880797177 C 0.017364932787353182 0.01286335878075417 0.020479303419701483 0.010908331162293203 0.020256591916863194 0.01109178559657617" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="手首">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.028511229159074496,-0.0285112291590745)"><path d="M 0.0318093001470815 0.02312604654570427 C 0.032080682446011824 0.02327645459372498 0.03550276996302158 0.02535848960775534 0.035065887734245405 0.024930943121952792 C 0.03550276996302158 0.02535848960775534 0.037217386822241495 0.028533742813116693 0.03705188689239564 0.028256604375334855" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03705188689239564 0.028256604375334855 C 0.03684157903283914 0.028548544069926227 0.034027200506868416 0.0321927867720111 0.0345281925777176 0.03175988071043133 C 0.034027200506868416 0.0321927867720111 0.030749297830912688 0.03359244348128051 0.031039982042205372 0.03345147711429211" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031039982042205372 0.03345147711429211 C 0.03086990793613446 0.0334442577058398 0.02853530838812675 0.0332836775826884 0.028999092769354442 0.0333648442128644 C 0.02853530838812675 0.0332836775826884 0.025180859192316288 0.032403530330456454 0.02547456946747307 0.03247747755218014" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02547456946747307 0.03247747755218014 C 0.025966944622070044 0.03210653321500205 0.031397666717709945 0.027300794997659885 0.03138307132263675 0.028026145506043043 C 0.031397666717709945 0.027300794997659885 0.02517193444882768 0.023418865280377156 0.025649714208351455 0.023773271451582225" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.025649714208351455 0.023773271451582225 C 0.02598541933524511 0.023708186575721518 0.030191474559302815 0.022938317532430582 0.029678175731075312 0.022992252941253746 C 0.030191474559302815 0.022938317532430582 0.03198689384841535 0.023137196012741813 0.0318093001470815 0.02312604654570427" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.028511229159074496,-0.0285112291590745)"><path d="M 0.02803399389771862 0.023566994876473256 C 0.028247639144147987 0.023714981506430314 0.030950476638414458 0.025736238565977232 0.030597736854871042 0.02534283443595794 C 0.030950476638414458 0.025736238565977232 0.03240596583735364 0.028533261936766995 0.03226687130023959 0.02828784443670476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03226687130023959 0.02828784443670476 C 0.03208812372798338 0.02854603590334448 0.02972061146558079 0.03175916105856796 0.030121900433164994 0.03138614203638143 C 0.02972061146558079 0.03175916105856796 0.027228862293901174 0.032878900258489885 0.02745140368922916 0.032764072702943084" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02745140368922916 0.032764072702943084 C 0.0273218848648317 0.0327709373628572 0.02564060200827717 0.0328412753751328 0.02589717779645966 0.03284644862191255 C 0.02564060200827717 0.0328412753751328 0.02424543726725425 0.0326899558348923 0.024372494231039283 0.032701993741586166" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024372494231039283 0.032701993741586166 C 0.024647281358337512 0.03231783216447044 0.027630889708293513 0.027337756231373637 0.02766993975861805 0.028092054816197438 C 0.027630889708293513 0.027337756231373637 0.02359005644952205 0.023280273715992464 0.023903893627144818 0.023650410723700537" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.023903893627144818 0.023650410723700537 C 0.024037193997485915 0.023630443234213764 0.025847673093785807 0.023403849529256972 0.02550349807123799 0.023410800849859244 C 0.025847673093785807 0.023403849529256972 0.028244868549925337 0.023580011045357757 0.02803399389771862 0.023566994876473256" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.028511229159074496,-0.0285112291590745)"><path d="M 0.02387978002847966 0.023456511209566412 C 0.02405778008404107 0.023547664677534354 0.026380305403230074 0.024914132398637826 0.0260157806952166 0.024550352825181733 C 0.026380305403230074 0.024914132398637826 0.02844060117709341 0.028094492196527668 0.028254076524641347 0.02782186609103952" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028254076524641347 0.02782186609103952 C 0.028090060107972714 0.028109682114242442 0.025967944345733285 0.03168750892046656 0.026285879524617764 0.031275658369474595 C 0.025967944345733285 0.03168750892046656 0.024284935615811756 0.03288810723073213 0.0244388543780276 0.032764072702943084" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0244388543780276 0.032764072702943084 C 0.024342641010072674 0.0327710358192546 0.02316065737436835 0.03284522865173353 0.02328429396256848 0.03284763009868127 C 0.02316065737436835 0.03284522865173353 0.022927792099380832 0.03272589077631102 0.022955215319626035 0.03273525533957027" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022955215319626035 0.03273525533957027 C 0.023120329393788427 0.03245088137463308 0.025087190001935603 0.02871448769421039 0.02493658420957475 0.02932276776032399 C 0.025087190001935603 0.02871448769421039 0.02461405696490343 0.024942363246900703 0.024762484827956257 0.025435894546207077 C 0.02461405696490343 0.024942363246900703 0.023021530271689548 0.023230766970517555 0.023155449852940834 0.02340039216864752" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023155449852940834 0.02340039216864752 C 0.023202493747896964 0.023400877785488574 0.023780337440375963 0.023410896157483436 0.023719976592414396 0.023406219570740197 C 0.023780337440375963 0.023410896157483436 0.023893096981485097 0.023460702179468596 0.02387978002847966 0.023456511209566412" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="虫性1">
<g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.09602289911810039,-0.07853717660256988)"><path d="M 0.11652968346932081 0.08367377223957102 C 0.11684854775359524 0.08359610003278334 0.12090834402169628 0.08245182913605106 0.12035605488061389 0.08274170575811872 C 0.12090834402169628 0.08245182913605106 0.12347601744658393 0.07969317173741146 0.1231571531623095 0.08019525277475908 C 0.12347601744658393 0.07969317173741146 0.12418242629190702 0.07613698006581184 0.12418242629190702 0.07671673330994716 C 0.12418242629190702 0.07613698006581184 0.12283828887803508 0.0727361328077876 0.1231571531623095 0.07323821384513522 C 0.12283828887803508 0.0727361328077876 0.1198037657395315 0.07040188423970793 0.12035605488061389 0.07069176086177559 C 0.1198037657395315 0.07040188423970793 0.11621081918504639 0.06968202217353558 0.11652968346932081 0.06975969438032328" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.11652968346932081 0.06975969438032328 C 0.11650655480283911 0.06990218635327962 0.11576878727372622 0.07210813752681089 0.11625213947154038 0.0714695980557993 C 0.11576878727372622 0.07210813752681089 0.11073136744456638 0.07835197526787238 0.11072945709555083 0.07742216803246225 C 0.11073136744456638 0.07835197526787238 0.11675841585754104 0.08314825189797996 0.11627506365972688 0.0826272848807209 C 0.11675841585754104 0.08314825189797996 0.11655090178678698 0.0837609795194752 0.11652968346932081 0.08367377223957102" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(-0.01713961730213782,-0.01713961730213782)"><path d="M 0.02771533048953719 0.014977318527349104 C 0.02664026006024603 0.015268220066724358 0.012120107977947615 0.018695601713579868 0.01481448533804328 0.018468136999852145 C 0.012120107977947615 0.018695601713579868 -0.006236504762415286 0.01764345826643425 -0.004617197831610781 0.01770689509208178" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.004617197831610781 0.01770689509208178 C -0.004874765141220364 0.01735293288363193 -0.006720321309843489 0.01300520378391433 -0.007708005546925781 0.013459348590683581 C -0.006720321309843489 0.01300520378391433 0.008480264560068602 0.01215697481253136 0.007235013013376727 0.012257157410850763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007235013013376727 0.012257157410850763 C 0.008677370195321839 0.011916859326555757 0.026909472903903782 0.007986819057711491 0.024543299196718073 0.008173580399310695 C 0.026909472903903782 0.007986819057711491 0.03655291402484584 0.010169558054356105 0.035629097499605245 0.010016021311660305" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035629097499605245 0.010016021311660305 C 0.03534375792326366 0.0102684159430184 0.03154554199933394 0.013458198322598192 0.03220502258350628 0.013044756887957459 C 0.03154554199933394 0.013458198322598192 0.02734118948170643 0.01513836533063174 0.02771533048953719 0.014977318527349104" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="淫タトゥ">
<g id="手首">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.01919286476298845,-0.01919286476298845)"><path d="M 0.015075027802492286 0.014306141769879521 C 0.015106911903235726 0.014307952150431588 0.015520187970520424 0.014331329014182485 0.015457637011413578 0.01432786633650433 C 0.015520187970520424 0.014331329014182485 0.01585630617013784 0.014349346199143477 0.015825639311774435 0.014347693902017388" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015825639311774435 0.014347693902017388 C 0.015798397262058173 0.014752952354131753 0.015446695571920247 0.01996209685924648 0.015498734715179298 0.019210795327389764 C 0.015446695571920247 0.01996209685924648 0.015176372499123037 0.02370935536404036 0.015201169592665827 0.023363312284298006" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015201169592665827 0.023363312284298006 C 0.015171608587187708 0.023361211531890965 0.014784446587888368 0.023333598481245946 0.0148464375269284 0.0233381032554135 C 0.014784446587888368 0.023333598481245946 0.014424848390623511 0.02330685097252687 0.014457278324185426 0.02330925499428738" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014457278324185426 0.02330925499428738 C 0.014481341505892826 0.02296472826131236 0.014797515627866464 0.018424674763219816 0.014746036504674227 0.019174934198587137 C 0.014797515627866464 0.018424674763219816 0.015102443743977123 0.013900409067487223 0.015075027802492286 0.014306141769879524" fill="none" stroke="none" stroke-width="0"/>
</g><g id="ハート1">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.0042155872293395645 0.004410520447868342 C -0.004170304886029913 0.004446384527521084 -0.003591568239953709 0.004902318383708798 -0.0036721991096237494 0.004840889403701252 C -0.003591568239953709 0.004902318383708798 -0.003169696905677701 0.0051950416928257795 -0.0032480167932990795 0.005147668207958893 C -0.003169696905677701 0.0051950416928257795 -0.0026407219108586268 0.0054396111253531085 -0.0027323604581672043 0.0054093712221038835 C -0.0026407219108586268 0.0054396111253531085 -0.002063422960391283 0.0055136907814361345 -0.002148354225596146 0.005510547046949599 C -0.002063422960391283 0.0055136907814361345 -0.0016582199751562512 0.0054249052855369715 -0.0017131852757088502 0.005447096035942315 C -0.0016582199751562512 0.0054249052855369715 -0.0014769476855367911 0.005207127277653624 -0.0014887706189649576 0.005244258042085469 C -0.0014769476855367911 0.005207127277653624 -0.00162661528110656 0.004946909038077093 -0.0015713100745708517 0.005001526862760173 C -0.00162661528110656 0.004946909038077093 -0.002200860015962007 0.004554453919482537 -0.0021524330973934566 0.004588844145888509" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0021524330973934566 0.004588844145888509 C -0.0021081664272845253 0.0045936499695415686 -0.001562616746826074 0.004652642514479709 -0.0016212330560862838 0.004646514029725224 C -0.001562616746826074 0.004652642514479709 -0.001434687747119661 0.004663708624043757 -0.0014490373862709397 0.004662385962942331" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014490373862709397 0.004662385962942331 C -0.0014042091960328401 0.004691478306081316 -0.0008595252610532365 0.005071743165374069 -0.000911099103413744 0.005011494080610158 C -0.0008595252610532365 0.005071743165374069 -0.0008533087675502453 0.005443604872417105 -0.0008301512779448502 0.005385374980109253 C -0.0008533087675502453 0.005443604872417105 -0.0012828447816328734 0.0057473274332160125 -0.0011889889786784855 0.005710252788304378 C -0.0012828447816328734 0.0057473274332160125 -0.0020981765818411055 0.005825658277606444 -0.0019564209133975064 0.005830270719048863 C -0.0020981765818411055 0.005825658277606444 -0.003028877558911845 0.005609898452065488 -0.0028900570000016746 0.005654903490995347 C -0.003028877558911845 0.005609898452065488 -0.0037338521749486027 0.005222315197284359 -0.003622267620319553 0.0052902102518905545 C -0.0037338521749486027 0.005222315197284359 -0.00434411948289342 0.004760546835278613 -0.004229071655550273 0.004840162835721006 C -0.00434411948289342 0.004760546835278613 -0.005067322372844579 0.004292706197486915 -0.005002841548437324 0.004334818246581845" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.005002841548437324 0.004334818246581845 C -0.004989447105799159 0.0043360528635687946 -0.004776503710187862 0.004355942167199119 -0.004842108236779342 0.004349633650425244 C -0.004776503710187862 0.004355942167199119 -0.004163377145386249 0.004415594347655267 -0.0042155872293395645 0.004410520447868342" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.0042155872293395645 0.004410520447868342 C -0.00426779731329288 0.0044054465480814166 -0.004907712763370822 0.00434332513365137 -0.004842108236779342 0.004349633650425244 C -0.004907712763370822 0.00434332513365137 -0.00501623599107549 0.0043335836295948955 -0.005002841548437324 0.004334818246581845" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.005002841548437324 0.004334818246581845 C -0.004937278513728072 0.004304692837159124 -0.00409897239035592 0.003915096460288703 -0.004216085131926297 0.003973313333509189 C -0.00409897239035592 0.003915096460288703 -0.003484180334668879 0.003589049948916151 -0.003597488649592799 0.00363621576793601 C -0.003484180334668879 0.003589049948916151 -0.002716601047519309 0.003387998541825876 -0.0028563853528392547 0.003407323505270882 C -0.002716601047519309 0.003387998541825876 -0.001778574263294009 0.0034258127739829453 -0.0019200769857534545 0.003404316206595941 C -0.001778574263294009 0.0034258127739829453 -0.0010658650508096107 0.0037195329456931893 -0.0011583526833259087 0.0036652823139149355 C -0.0010658650508096107 0.0037195329456931893 -0.0007888740851728351 0.004117656226501872 -0.0008102253955578786 0.004055323787934987 C -0.0007888740851728351 0.004117656226501872 -0.0009553712912648089 0.004463860091301504 -0.0009021369587053872 0.004413271576717558 C -0.0009553712912648089 0.004463860091301504 -0.0014946124219014025 0.004683145495127728 -0.0014490373862709397 0.004662385962942331" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014490373862709397 0.004662385962942331 C -0.0014633870254222184 0.004661063301840905 -0.0016798493653464935 0.004640385544970739 -0.0016212330560862838 0.004646514029725224 C -0.0016798493653464935 0.004640385544970739 -0.002196699767502388 0.004584038322235449 -0.0021524330973934566 0.004588844145888509" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0021524330973934566 0.004588844145888509 C -0.002103132606545759 0.0045649234865447 -0.001504062163163969 0.004258970010647986 -0.0015608272072210854 0.004301796233762799 C -0.001504062163163969 0.004258970010647986 -0.0014819318956663563 0.00403572458470952 -0.0014712525687080571 0.004074929468510754 C -0.0014819318956663563 0.00403572458470952 -0.0017431288640779032 0.003799089327903813 -0.0016889791307206753 0.0038313376281479882 C -0.0017431288640779032 0.003799089327903813 -0.0022058404619165035 0.0036754496414442843 -0.002121049368994793 0.0036879498655806517 C -0.0022058404619165035 0.0036754496414442843 -0.002798762873972019 0.003694621386465821 -0.002706472245781204 0.003681334938511582 C -0.002798762873972019 0.003694621386465821 -0.0033080582664629147 0.003880211894729788 -0.0032285369072845727 0.0038473872410315223 C -0.0033080582664629147 0.003880211894729788 -0.0037429827494258917 0.00412215855012717 -0.0036607285559213092 0.004075230782890769 C -0.0037429827494258917 0.00412215855012717 -0.004261825452124419 0.00443846125328314 -0.0042155872293395645 0.004410520447868342" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ハート3">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.004616616581087022 0.011232153212967985 C -0.004669117687110844 0.011231404921174845 -0.005312591070048315 0.011222166859514871 -0.00524662985337289 0.011223173711450308 C -0.005312591070048315 0.011222166859514871 -0.005421611291843733 0.011219812429600438 -0.00540815118119213 0.011220070989742736" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.00540815118119213 0.011220070989742736 C -0.005338505602522141 0.01118541668814195 -0.004447540934199824 0.01073794300039285 -0.004572404237152264 0.0108042193705333 C -0.004447540934199824 0.01073794300039285 -0.0037899369671853256 0.010369728060535034 -0.003909791545762845 0.010424754548057342 C -0.0037899369671853256 0.010369728060535034 -0.0029903302747083084 0.01011461191513087 -0.0031341492942220314 0.010143901520265605 C -0.0029903302747083084 0.01011461191513087 -0.0020426459416800435 0.010084406380198238 -0.0021839633115981714 0.010073279286440518 C -0.0020426459416800435 0.010084406380198238 -0.0013501547280685086 0.01032462325519859 -0.0014383408552044968 0.010277426645358247 C -0.0013501547280685086 0.01032462325519859 -0.0011105509913931259 0.010700000085548108 -0.0011257297859663133 0.010639638604524623 C -0.0011105509913931259 0.010700000085548108 -0.0013154615071275578 0.011055850532766625 -0.0012561953203262472 0.011001764417640076 C -0.0013154615071275578 0.011055850532766625 -0.0018853180865200231 0.011312580950076808 -0.0018369240275820404 0.011288671986043212" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0018369240275820404 0.011288671986043212 C -0.0018513440177230598 0.011288394987228025 -0.0020689648633083193 0.011284936685017257 -0.002009963909274273 0.011285348000260959 C -0.0020689648633083193 0.011284936685017257 -0.00258951643988362 0.011283601886690272 -0.002544935475990593 0.011283736203118786" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.002544935475990593 0.011283736203118786 C -0.002492259298586716 0.011254967549671908 -0.0018506065149557379 0.010890428931153655 -0.0019128213471440623 0.010938512361756239 C -0.0018506065149557379 0.010890428931153655 -0.0018051146847363538 0.010668571172057991 -0.0017983574897306996 0.010706735035887788 C -0.0018051146847363538 0.010668571172057991 -0.002045488475349479 0.010452431029074179 -0.001993907687211912 0.010480545995798677 C -0.002045488475349479 0.010452431029074179 -0.0025020465851581064 0.010363066175373753 -0.0024173269473815057 0.0103693554351938 C -0.0025020465851581064 0.010363066175373753 -0.003105552676873231 0.010424936714289495 -0.0030105433405311207 0.010405074877958106 C -0.003105552676873231 0.010424936714289495 -0.0036415257995875043 0.010646040756464957 -0.003557438983486829 0.010607697471170477 C -0.0036415257995875043 0.010646040756464957 -0.0041078499335392435 0.010917232279975002 -0.004019585133739227 0.010865194301491876 C -0.0041078499335392435 0.010917232279975002 -0.004666369201699338 0.011262733122257661 -0.004616616581087022 0.011232153212967985" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.004616616581087022 0.011232153212967985 C -0.004574468651374303 0.011265008498993487 -0.004035491303113697 0.011682107587826639 -0.004110841424534405 0.011626416645274008 C -0.004035491303113697 0.011682107587826639 -0.0036378868559058613 0.011941834703515591 -0.003712415124038532 0.011900444523599554 C -0.0036378868559058613 0.011941834703515591 -0.0031266806308562056 0.01214651112456157 -0.0032165022069423526 0.012123098804266456 C -0.0031266806308562056 0.01214651112456157 -0.0025487214045131564 0.012178379349435135 -0.00263455621100477 0.012181392367140916 C -0.0025487214045131564 0.012178379349435135 -0.0021284153324925125 0.012060933931356226 -0.0021864845290429915 0.012086942591797092 C -0.0021284153324925125 0.012060933931356226 -0.0019218704667325992 0.011831558951275722 -0.001937725852399023 0.011869288441850527 C -0.0019218704667325992 0.011831558951275722 -0.0020468207030118683 0.011585392685005115 -0.001996219901045904 0.011634188704899427 C -0.0020468207030118683 0.011585392685005115 -0.0025906617739026505 0.0112545318279704 -0.002544935475990593 0.011283736203118786" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.002544935475990593 0.011283736203118786 C -0.0025003545120975664 0.0112838705195473 -0.001950962955240227 0.01128575931550466 -0.002009963909274273 0.011285348000260959 C -0.001950962955240227 0.01128575931550466 -0.001822504037441021 0.0112889489848584 -0.0018369240275820404 0.011288671986043212" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0018369240275820404 0.011288671986043212 C -0.0017944716469686242 0.011314326052249118 -0.0012814396362658032 0.011652630064304925 -0.0013274954602210457 0.01159652078051408 C -0.0012814396362658032 0.011652630064304925 -0.0013138023557713915 0.012021485695212176 -0.0012842541401191306 0.01196198339153335 C -0.0013138023557713915 0.012021485695212176 -0.001781144929538189 0.012354147946775737 -0.0016820740480481776 0.012310548424659989 C -0.001781144929538189 0.012354147946775737 -0.0026164344504313705 0.012490836861359279 -0.002473104717999267 0.012485177656922327 C -0.0026164344504313705 0.012490836861359279 -0.0035381825788715756 0.012343791212980291 -0.0034020308372334166 0.012378458877903413 C -0.0035381825788715756 0.012343791212980291 -0.0042130664754492465 0.012009797962103944 -0.0041069256176571745 0.012069165677844863 C -0.0042130664754492465 0.012009797962103944 -0.0047841565943661955 0.011595288398337216 -0.004675721130738283 0.011666046289012393 C -0.0047841565943661955 0.011595288398337216 -0.00546918701872995 0.011182906381470265 -0.00540815118119213 0.011220070989742736" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.00540815118119213 0.011220070989742736 C -0.005394691070540527 0.011220329549885034 -0.005180668636697464 0.011224180563385745 -0.00524662985337289 0.011223173711450308 C -0.005180668636697464 0.011224180563385745 -0.004564115475063199 0.011232901504761125 -0.004616616581087022 0.011232153212967985" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ハート2">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.004427884993025813 0.007839753461696134 C -0.004480381767738006 0.007837722112254043 -0.005123810530217971 0.007812704282601538 -0.0050578462895721375 0.00781537726839104 C -0.005123810530217971 0.007812704282601538 -0.005232923346709449 0.0078070359958747 -0.0052194558807758095 0.0078076776322221104" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0052194558807758095 0.0078076776322221104 C -0.005150332941684769 0.007745803329326159 -0.004266118917348147 0.006946744064373943 -0.004389980611683326 0.007065185997470696 C -0.004266118917348147 0.006946744064373943 -0.003614088562613611 0.006288245457549099 -0.0037331155487536592 0.006386374435061078 C -0.003614088562613611 0.006288245457549099 -0.0028182584893558906 0.005836436248356316 -0.00296165677800275 0.005887638267326955 C -0.0028182584893558906 0.005836436248356316 -0.001870810439835652 0.005793924646961156 -0.00201233608499135 0.005771950207413417 C -0.001870810439835652 0.005793924646961156 -0.0011744058651549849 0.006237956345141352 -0.001263349036134375 0.00615133154189983 C -0.0011744058651549849 0.006237956345141352 -0.0009335298358895262 0.006920978855678161 -0.0009450180332386678 0.006811447846311689 C -0.0009335298358895262 0.006920978855678161 -0.0011839289342477038 0.007562909345405755 -0.0011254906679446753 0.007465703654297486 C -0.0011839289342477038 0.007562909345405755 -0.0016896761089525395 0.008020600513387039 -0.0016462772288750114 0.00797791613961092" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0016462772288750114 0.00797791613961092 C -0.0016607050988245396 0.00797722874631652 -0.001878462581731037 0.007968162768832852 -0.001819411668269351 0.007969667420078128 C -0.001878462581731037 0.007968162768832852 -0.0023995112339274026 0.007959043066716721 -0.0023548881904152446 0.0079598603246676" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0023548881904152446 0.0079598603246676 C -0.0023066156038676353 0.007908428497815735 -0.0017141649662217734 0.007256383618731286 -0.001775617151843934 0.007342678402445235 C -0.0017141649662217734 0.007256383618731286 -0.0016208758792274239 0.006855107923238874 -0.0016174619629493174 0.0069243229201002105 C -0.0016208758792274239 0.006855107923238874 -0.0018686156702410186 0.006460508394838471 -0.0018165841471812101 0.0065120984401091965 C -0.0018686156702410186 0.006460508394838471 -0.0023266787963316265 0.006292759609275979 -0.00224184023966702 0.006305242376851506 C -0.0023266787963316265 0.006292759609275979 -0.002929370235703788 0.006397058694983362 -0.0028346468271564906 0.006362305229202876 C -0.002929370235703788 0.006397058694983362 -0.003462031420448477 0.006790654372795999 -0.0033785211422345867 0.006722283966217344 C -0.003462031420448477 0.006790654372795999 -0.003924217153289111 0.007275872566103309 -0.0038367701657231754 0.007182750108146743 C -0.003924217153289111 0.007275872566103309 -0.004477144561967699 0.007894503741158583 -0.004427884993025813 0.007839753461696134" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.004427884993025813 0.007839753461696134 C -0.004385185847208023 0.007899808425375205 -0.0038392299567805844 0.008662258754104812 -0.003915495243212341 0.008560413025844975 C -0.0038392299567805844 0.008662258754104812 -0.0034375100745586465 0.009137833704468946 -0.00351270155584474 0.009061902200814195 C -0.0034375100745586465 0.009137833704468946 -0.0029229889629834045 0.009515155327206907 -0.0030131974677792203 0.009471591069701985 C -0.0029229889629834045 0.009515155327206907 -0.002344390411157357 0.00958032076334459 -0.002430199498294947 0.009584673290873248 C -0.002344390411157357 0.00958032076334459 -0.0019258100422285369 0.009372997650795975 -0.001983488422128139 0.0094193607393581 C -0.0019258100422285369 0.009372997650795975 -0.0017227873966783858 0.008960179161013306 -0.00173805893949972 0.00902831622812774 C -0.0017227873966783858 0.008960179161013306 -0.0018516323458484239 0.008512677942029867 -0.0018002299082721302 0.008601715933984878 C -0.0018516323458484239 0.008512677942029867 -0.0024011097139271706 0.007906372357224493 -0.0023548881904152446 0.0079598603246676" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0023548881904152446 0.0079598603246676 C -0.0023102651469030866 0.007960677582618477 -0.001760360754807665 0.007971172071323404 -0.001819411668269351 0.007969667420078128 C -0.001760360754807665 0.007971172071323404 -0.0016318493589254832 0.00797860353290532 -0.0016462772288750114 0.00797791613961092" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0016462772288750114 0.00797791613961092 C -0.0016034147065981347 0.008024931115055766 -0.0010849856638504246 0.008644322180540358 -0.0011319269615524892 0.00854209584494907 C -0.0010849856638504246 0.008644322180540358 -0.001111610230151733 0.00931203106317908 -0.0010829816564502353 0.00920463216670637 C -0.001111610230151733 0.00931203106317908 -0.001573886010273017 0.0099085809634176 -0.0014754698459704604 0.009830882602621598 C -0.001573886010273017 0.0099085809634176 -0.002407252630781181 0.010145417959162453 -0.002263975628080916 0.010137012496258401 C -0.002407252630781181 0.010145417959162453 -0.0033315193409961604 0.009867200080564605 -0.0031947938783736416 0.009931748157470211 C -0.0033315193409961604 0.009867200080564605 -0.004011773125063626 0.009253533513095723 -0.0039046811795511414 0.009362435573391125 C -0.004011773125063626 0.009253533513095723 -0.004589461782958848 0.00849536027216131 -0.004479897224523459 0.008624923433925393 C -0.004589461782958848 0.00849536027216131 -0.005281085768796838 0.007739573815413504 -0.0052194558807758095 0.0078076776322221104" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0052194558807758095 0.0078076776322221104 C -0.00520598841484217 0.007808319268569521 -0.004991882048926304 0.007818050254180543 -0.0050578462895721375 0.00781537726839104 C -0.004991882048926304 0.007818050254180543 -0.004375388218313619 0.007841784811138225 -0.004427884993025813 0.007839753461696134" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="通常">
<g id="ハート1">
<g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M 0.0009595660788221046 0.010330768310135857 C 0.0008709527922727523 0.01033432981927105 -0.00022650790661627213 0.010378438512863311 -0.00010379335977012236 0.010373506419758174 C -0.00022650790661627213 0.010378438512863311 -0.0005471097436284904 0.010391324011367446 -0.0005130084833316929 0.010389953427397501" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0005130084833316929 0.010389953427397501 C -0.0003649397475777048 0.010257569849045979 0.0015505311528959229 0.008517496064405466 0.0012638163457161645 0.008801350487179237 C 0.0015505311528959229 0.008517496064405466 0.003253669134932619 0.006651953218099932 0.002927569202825408 0.006983700354112249 C 0.003253669134932619 0.006651953218099932 0.0055686216565682435 0.004550541991142838 0.005177015531002699 0.0048203848550314315 C 0.0055686216565682435 0.004550541991142838 0.008029166337904148 0.0036990447678771875 0.007626842709611937 0.0037455859874491295 C 0.008029166337904148 0.0036990447678771875 0.010298096602537929 0.004449451607433312 0.010004899070509244 0.004261890220168128 C 0.010298096602537929 0.004449451607433312 0.011190994380646952 0.006324004028010134 0.011145213093956169 0.005996322634631339 C 0.011190994380646952 0.006324004028010134 0.010332624351483773 0.00852823548916467 0.01055427451079866 0.00819406694071367 C 0.010332624351483773 0.00852823548916467 0.008313005904792448 0.010157368405654134 0.00848541118217754 0.010006345216043329" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.00848541118217754 0.010006345216043329 C 0.008448878062205189 0.010007813540327253 0.007954482051212184 0.010027684103513887 0.008047013742509317 0.010023965107450402 C 0.007954482051212184 0.010027684103513887 0.007319032315287176 0.010053223840584715 0.007375030886611956 0.010050973168805152" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007375030886611956 0.010050973168805152 C 0.007491977760695488 0.009927851217969026 0.008987245024942662 0.008300165515097362 0.008778393375614334 0.008573509758771641 C 0.008987245024942662 0.008300165515097362 0.009923127774813044 0.006503452365122314 0.009881250678551902 0.006770842244713799 C 0.009923127774813044 0.006503452365122314 0.009073062265675256 0.005211608403235011 0.009280918530748031 0.0053648312036738265 C 0.009073062265675256 0.005211608403235011 0.007066340761218371 0.0049710662384177245 0.0073869754976785855 0.004932168639448006 C 0.007066340761218371 0.0049710662384177245 0.005120576275727381 0.006047304392408516 0.005433301693225459 0.005831602391310458 C 0.005120576275727381 0.006047304392408516 0.00338447361423517 0.007766242732538056 0.0036342704877016466 0.007520592652624708 C 0.00338447361423517 0.007766242732538056 0.002212847177554443 0.009013584655063231 0.002435739211627738 0.008779403350270635 C 0.002212847177554443 0.009013584655063231 0.0008365516510883018 0.010460048723457958 0.0009595660788221046 0.010330768310135857" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M 0.0009595660788221046 0.010330768310135857 C 0.001092149294675329 0.010420457390288084 0.0027967763180520014 0.011593046095772955 0.0025505646690607963 0.011407037271962583 C 0.0027967763180520014 0.011593046095772955 0.00418324220190145 0.012784909596955796 0.003914105866716563 0.012562874195860312 C 0.00418324220190145 0.012784909596955796 0.006123247433917348 0.014272900141856124 0.005780200691279438 0.014071462085108392 C 0.006123247433917348 0.014272900141856124 0.0083729716787559 0.01500830266864853 0.00803066677837148 0.014980130876833092 C 0.0083729716787559 0.01500830266864853 0.010072972546939271 0.014220949924340177 0.009887859495892468 0.014409523586893647 C 0.010072972546939271 0.014220949924340177 0.010171414375881167 0.012436358822013927 0.010252023390933111 0.012717246926191465 C 0.010171414375881167 0.012436358822013927 0.008680801939909047 0.010816676856981004 0.008920551315269143 0.011038866336763197 C 0.008680801939909047 0.010816676856981004 0.007246237517557191 0.009968648738141982 0.007375030886611956 0.010050973168805152" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007375030886611956 0.010050973168805152 C 0.007431029457936736 0.010048722497025589 0.008139545433806449 0.010020246111386917 0.008047013742509317 0.010023965107450402 C 0.008139545433806449 0.010020246111386917 0.008521944302149892 0.010004876891759405 0.00848541118217754 0.010006345216043329" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.00848541118217754 0.010006345216043329 C 0.008663875272534434 0.010118395085849427 0.010886137256949696 0.01161166090511948 0.010626980266460261 0.01135094365371651 C 0.010886137256949696 0.01161166090511948 0.011599427606470706 0.013417295877111705 0.011595295068050755 0.013134952232878973 C 0.011599427606470706 0.013417295877111705 0.01041560712522728 0.014930224704476677 0.010676570727499687 0.01473906738450929 C 0.01041560712522728 0.014930224704476677 0.008059509119774167 0.015448802040541058 0.00846373184078187 0.015428840072487605 C 0.008059509119774167 0.015448802040541058 0.005394291610269909 0.014788997382255666 0.005825898075407252 0.014978611001150718 C 0.005394291610269909 0.014788997382255666 0.002934062094368031 0.012880549361745389 0.0032844542591337553 0.013153476645746988 C 0.002934062094368031 0.012880549361745389 0.001304736869679776 0.011473189991602392 0.0016211920982185633 0.011703483593131517 C 0.001304736869679776 0.011473189991602392 -0.0006908585317942143 0.010280492580253 -0.0005130084833316929 0.010389953427397501" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0005130084833316929 0.010389953427397501 C -0.0004789072230348954 0.010388582843427557 1.8921187076027416E-05 0.010368574326653036 -0.00010379335977012236 0.010373506419758174 C 1.8921187076027416E-05 0.010368574326653036 0.0010481793653714568 0.010327206801000664 0.0009595660788221046 0.010330768310135857" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ハート2">
<g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.003413869563234506 0.010332106904498253 C -0.0035636045492848313 0.01033428282541692 -0.005642706078626915 0.010360137425730597 -0.005210689395838413 0.010358217955522268 C -0.005642706078626915 0.010360137425730597 -0.008880351453434701 0.010354884096287853 -0.008598069756696525 0.010355140546998192" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.008598069756696525 0.010355140546998192 C -0.008217984204502078 0.010175120588144106 -0.003159474104090921 0.007533284294419739 -0.004037043130363168 0.008194901040749164 C -0.003159474104090921 0.007533284294419739 0.002732265651168448 0.001769289381100859 0.0019327585585704361 0.0024157395910450923 C 0.002732265651168448 0.001769289381100859 0.006328493603811909 0.00023609641546763318 0.005557041980812976 0.0004374985214183665 C 0.006328493603811909 0.00023609641546763318 0.012037744357024434 5.399864469782903E-05 0.011190178034557623 -1.0856803637077084E-06 C 0.012037744357024434 5.399864469782903E-05 0.0162743835859615 0.0013820261636702962 0.01572783785041472 0.0010985104221568074 C 0.0162743835859615 0.0013820261636702962 0.01791171365220295 0.0038565090793488766 0.017748726861119005 0.003401103217798158 C 0.01791171365220295 0.0038565090793488766 0.01745945960834128 0.007095474963173891 0.017683679343422066 0.006563380760765432 C 0.01745945960834128 0.007095474963173891 0.014839290931543528 0.01005480472052752 0.015058090040149569 0.009786233646699668" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015058090040149569 0.009786233646699668 C 0.01493713185783504 0.009791257581108003 0.013351581004436383 0.00985904151580594 0.013606591852375218 0.00984652085959968 C 0.013351581004436383 0.00985904151580594 0.01186390719925924 0.0099439782429727 0.011997959864883546 0.009936481521174776" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011997959864883546 0.009936481521174776 C 0.012217150144556767 0.0096977042761138 0.014896321388136046 0.006601780383971178 0.014628243220962199 0.007071154580443056 C 0.014896321388136046 0.006601780383971178 0.015123512097718096 0.0038924674638047647 0.015214897870969713 0.004303991163512232 C 0.015123512097718096 0.0038924674638047647 0.013131210737934967 0.001873391518058251 0.013531613941942789 0.0021328701839534534 C 0.013131210737934967 0.001873391518058251 0.009807570305497679 0.0011585078199753687 0.01041005942287586 0.0011902471727698047 C 0.009807570305497679 0.0011585078199753687 0.005673162061701878 0.0019849375399898705 0.006301744533404619 0.0017519979504202199 C 0.005673162061701878 0.0019849375399898705 0.0023402471817667806 0.004415612065136555 0.0028670697624429723 0.003985522247605614 C 0.0023402471817667806 0.004415612065136555 -0.000543538045182805 0.0074419578155325685 -2.0126434709681775E-05 0.006913075760791515 C -0.000543538045182805 0.0074419578155325685 -0.0036966814906115746 0.010617026166473814 -0.003413869563234506 0.010332106904498253" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.003413869563234506 0.010332106904498253 C -0.0031164503794479997 0.010550745348344177 0.0007152745755755585 0.01335763472245756 0.00015516064220356512 0.012955768230649346 C 0.0007152745755755585 0.01335763472245756 0.0038706808018417753 0.015376227923613626 0.0033074976372294137 0.015154504806196801 C 0.0038706808018417753 0.015376227923613626 0.007586579173002035 0.015637693625967702 0.006913358617551905 0.01561644563965124 C 0.007586579173002035 0.015637693625967702 0.012060056506363711 0.015366425954149067 0.011386144302630968 0.015409480641994362 C 0.012060056506363711 0.015366425954149067 0.01537395549261709 0.014985992069096753 0.015000305062344814 0.015099789385507692 C 0.01537395549261709 0.014985992069096753 0.015868896047137374 0.013805839287793949 0.015869949465898286 0.014043912845063088 C 0.015868896047137374 0.013805839287793949 0.014664998237129311 0.011900620754620657 0.014987664037213874 0.012242906698278017 C 0.014664998237129311 0.011900620754620657 0.011748817850522685 0.00974427942308284 0.011997959864883546 0.009936481521174776" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011997959864883546 0.009936481521174776 C 0.012132012530507852 0.009928984799376851 0.013861602700314054 0.009834000203393421 0.013606591852375218 0.00984652085959968 C 0.013861602700314054 0.009834000203393421 0.015179048222464098 0.009781209712291333 0.015058090040149569 0.009786233646699668" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015058090040149569 0.009786233646699668 C 0.015300882972634789 0.00999671219071557 0.018223155621261547 0.012692747350900879 0.017971605229972213 0.012311976174890491 C 0.018223155621261547 0.012692747350900879 0.01782908638831928 0.014587805526375749 0.018076694735621564 0.014355487758824316 C 0.01782908638831928 0.014587805526375749 0.014442759192928931 0.015187622125771863 0.015000305062344814 0.015099789385507692 C 0.014442759192928931 0.015187622125771863 0.010712232098898225 0.015452535329839657 0.011386144302630968 0.015409480641994362 C 0.010712232098898225 0.015452535329839657 0.006070825438886998 0.015594291517001755 0.006913358617551905 0.01561644563965124 C 0.006070825438886998 0.015594291517001755 0.0003202573778604301 0.014815995272898728 0.001275746158652083 0.01514363117020055 C 0.0003202573778604301 0.014815995272898728 -0.005375324744893646 0.011285773986762521 -0.004552506751947929 0.011684814872029384 C -0.005375324744893646 0.011285773986762521 -0.00893520000709224 0.010244334353245593 -0.008598069756696525 0.010355140546998192" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.008598069756696525 0.010355140546998192 C -0.008315788059958348 0.010355396997708531 -0.004778672713049912 0.01035629848531394 -0.005210689395838413 0.010358217955522268 C -0.004778672713049912 0.01035629848531394 -0.0032641345771841804 0.010329930983579585 -0.003413869563234506 0.010332106904498253" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="筋肉">
<g id="ハート1">
<g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M 0.0009595660788221046 0.010620057198153137 C 0.0008709527922727523 0.010624081703475905 -0.00022650790661627213 0.01067392452723516 -0.00010379335977012236 0.010668351262026355 C -0.00022650790661627213 0.01067392452723516 -0.0005471097436284904 0.010688485140544832 -0.0005130084833316929 0.010686936380658795" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0005130084833316929 0.010686936380658795 C -0.0003649397475777048 0.010537342937121576 0.0015505311528959229 0.008571059560477795 0.0012638163457161645 0.008891815058212156 C 0.0015505311528959229 0.008571059560477795 0.003253669134932619 0.006462996144152543 0.002927569202825408 0.006837870407846461 C 0.003253669134932619 0.006462996144152543 0.0055686216565682435 0.004088401457691027 0.005177015531002699 0.004393323893885137 C 0.0055686216565682435 0.004088401457691027 0.008029166337904148 0.003126209595400841 0.007626842709611937 0.0031788011735171358 C 0.008029166337904148 0.003126209595400841 0.010298096602537929 0.003974169324099262 0.010004899070509244 0.0037622249564896034 C 0.010298096602537929 0.003974169324099262 0.011190994380646952 0.006092413559351071 0.011145213093956169 0.005722133584833033 C 0.011190994380646952 0.006092413559351071 0.010332624351483773 0.008583195110455695 0.01055427451079866 0.008205584650706066 C 0.010332624351483773 0.008583195110455695 0.008313005904792448 0.01042411530608879 0.00848541118217754 0.01025345910182858" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.00848541118217754 0.01025345910182858 C 0.008448878062205189 0.010255118308269412 0.007954482051212184 0.010277572044670311 0.008047013742509317 0.010273369579118573 C 0.007954482051212184 0.010277572044670311 0.007319032315287176 0.010306431947560346 0.007375030886611956 0.01030388868844944" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007375030886611956 0.01030388868844944 C 0.00751729693436164 0.010139185961109515 0.00929107510893649 0.008018576965018398 0.009082223459608161 0.008327455960370335 C 0.00929107510893649 0.008018576965018398 0.00989780860114689 0.006320765103182938 0.009881250678551902 0.006597340744226212 C 0.00989780860114689 0.006320765103182938 0.009073062265675256 0.004835406503355181 0.009280918530748031 0.005008548267851043 C 0.009073062265675256 0.004835406503355181 0.007066340761218371 0.0045635938571116485 0.0073869754976785855 0.004519639570275865 C 0.007066340761218371 0.0045635938571116485 0.005120576275727381 0.0057797429711212425 0.005433301693225459 0.005535999709880436 C 0.005120576275727381 0.0057797429711212425 0.00338447361423517 0.0077221432954676225 0.0036342704877016466 0.007444558705165539 C 0.00338447361423517 0.0077221432954676225 0.002212847177554443 0.00913163966792107 0.002435739211627738 0.008867014793505436 C 0.002212847177554443 0.00913163966792107 0.0008365516510883018 0.010766144065207112 0.0009595660788221046 0.010620057198153137" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M 0.0009595660788221046 0.010620057198153137 C 0.001092149294675329 0.010721405858725153 0.0027967763180520014 0.012046431095923057 0.0025505646690607963 0.011836241125017338 C 0.0027967763180520014 0.012046431095923057 0.00418324220190145 0.013393236852259668 0.003914105866716563 0.01314233684902177 C 0.00418324220190145 0.013393236852259668 0.006123247433917348 0.015074666167997039 0.005780200691279438 0.014847041163872102 C 0.006123247433917348 0.015074666167997039 0.0083729716787559 0.015905671023272457 0.00803066677837148 0.015873836898521013 C 0.0083729716787559 0.015905671023272457 0.010072972546939271 0.015015962422204017 0.009887859495892468 0.015229050660889438 C 0.010072972546939271 0.015015962422204017 0.010171414375881167 0.012999374476575357 0.010252023390933111 0.013316778034295974 C 0.010171414375881167 0.012999374476575357 0.008680801939909047 0.011169133856088153 0.008920551315269143 0.011420207968242032 C 0.008680801939909047 0.011169133856088153 0.007246237517557191 0.010210862081800057 0.007375030886611956 0.01030388868844944" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007375030886611956 0.01030388868844944 C 0.007431029457936736 0.010301345429338535 0.008139545433806449 0.010269167113566836 0.008047013742509317 0.010273369579118573 C 0.008139545433806449 0.010269167113566836 0.008521944302149892 0.010251799895387747 0.00848541118217754 0.01025345910182858" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.00848541118217754 0.01025345910182858 C 0.008663875272534434 0.01038007545470947 0.010886137256949696 0.012067465830484632 0.010626980266460261 0.011772855336399275 C 0.010886137256949696 0.012067465830484632 0.011599427606470706 0.014107833348835846 0.011595295068050755 0.013788785030852858 C 0.011599427606470706 0.014107833348835846 0.01041560712522728 0.015817442923758265 0.010676570727499687 0.015601435152195118 C 0.01041560712522728 0.015817442923758265 0.008059509119774167 0.016403435313511013 0.00846373184078187 0.01638087828961061 C 0.008059509119774167 0.016403435313511013 0.005394291610269909 0.015657856049648523 0.005825898075407252 0.01587211943899993 C 0.005394291610269909 0.015657856049648523 0.002934062094368031 0.013501309786471906 0.0032844542591337553 0.013809717617393715 C 0.002934062094368031 0.013501309786471906 0.001304736869679776 0.011910993698210323 0.0016211920982185633 0.012171225467938232 C 0.001304736869679776 0.011910993698210323 -0.0006908585317942143 0.010563245623385509 -0.0005130084833316929 0.010686936380658795" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0005130084833316929 0.010686936380658795 C -0.0004789072230348954 0.010685387620772759 1.8921187076027416E-05 0.01066277799681755 -0.00010379335977012236 0.010668351262026355 C 1.8921187076027416E-05 0.01066277799681755 0.0010481793653714568 0.010616032692830369 0.0009595660788221046 0.010620057198153137" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="ハート2">
<g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.003413869563234506 0.010621569809782645 C -0.0035636045492848313 0.01062402860042074 -0.005642706078626915 0.010653244298775193 -0.005210689395838413 0.010651075297439782 C -0.005642706078626915 0.010653244298775193 -0.008880351453434701 0.01064730803650489 -0.008598069756696525 0.010647597825807575" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.008598069756696525 0.010647597825807575 C -0.008217984204502078 0.010444175272302458 -0.003159474104090921 0.007458900260393924 -0.004037043130363168 0.008206527183746174 C -0.003159474104090921 0.007458900260393924 0.002732265651168448 0.0009530537429200927 0.0019327585585704361 0.001676074745580574 C 0.002732265651168448 0.0009530537429200927 0.006177894289852447 -0.000672416779315589 0.005557041980812976 -0.00046972484817960064 C 0.006177894289852447 -0.000672416779315589 0.010208647234753164 -0.0006641122024257407 0.009382986267044093 -0.0007562284280512856 C 0.010208647234753164 -0.0006641122024257407 0.016162118642828086 0.0009508622129828623 0.015464973593321843 0.0006356698593269384 C 0.016162118642828086 0.0009508622129828623 0.01793361900696069 0.003503349766489603 0.017748726861119005 0.003026079815819801 C 0.01793361900696069 0.003503349766489603 0.01745945960834128 0.0069444637017520945 0.017683679343422066 0.0063629092673645575 C 0.01745945960834128 0.0069444637017520945 0.014839290931543528 0.010308218341895718 0.015058090040149569 0.010004733028470244" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015058090040149569 0.010004733028470244 C 0.01493713185783504 0.010010410074351661 0.013351581004436383 0.01008700592056033 0.013606591852375218 0.010072857579047257 C 0.013351581004436383 0.01008700592056033 0.01186390719925924 0.010182984422258769 0.011997959864883546 0.010174513126627115" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011997959864883546 0.010174513126627115 C 0.012217150144556767 0.009904694839708211 0.014896321388136046 0.00640630084158705 0.014628243220962199 0.006936693683600273 C 0.014896321388136046 0.00640630084158705 0.015101606742960355 0.0033821159146815143 0.015214897870969713 0.003809799022468441 C 0.015101606742960355 0.0033821159146815143 0.012827273940671327 0.00154862417057808 0.013268749684849911 0.001804496390157148 C 0.012827273940671327 0.00154862417057808 0.009336605178206274 0.0006735959805559041 0.009917188940826716 0.0007393323875196253 C 0.009336605178206274 0.0006735959805559041 0.005714234601872641 0.001241542569923688 0.006301744533404619 0.0010156595065924934 C 0.005714234601872641 0.001241542569923688 0.0023402471817667806 0.003928462906727425 0.0028670697624429723 0.0034499291474939632 C 0.0023402471817667806 0.003928462906727425 -0.000543538045182805 0.007355701339251421 -2.0126434709681775E-05 0.006758064617394031 C -0.000543538045182805 0.007355701339251421 -0.0036966814906115746 0.010943528575815029 -0.003413869563234506 0.010621569809782645" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.003413869563234506 0.010621569809782645 C -0.0031164503794479997 0.01086863125132854 0.0006823944729071705 0.01403055167211624 0.00015516064220356512 0.01358630710833338 C 0.0006823944729071705 0.01403055167211624 0.003355971564701944 0.01623174481916247 0.0029129364052087586 0.015952504575176968 C 0.003355971564701944 0.01623174481916247 0.006110259388445146 0.01693908609133013 0.005471582556121793 0.016937190036159414 C 0.006110259388445146 0.01693908609133013 0.011281915827438444 0.015830238313813708 0.010577058393088997 0.015975257237225544 C 0.011281915827438444 0.015830238313813708 0.014356763084756754 0.014994623360880368 0.013929871768315161 0.015196962955217384 C 0.014356763084756754 0.014994623360880368 0.01577655719442898 0.013268471501441106 0.0156997541903881 0.013547182105181339 C 0.01577655719442898 0.013268471501441106 0.014543024956347012 0.01157137996212173 0.014851507816805725 0.01185243571033458 C 0.014543024956347012 0.01157137996212173 0.011760164202223365 0.010034686244651493 0.011997959864883546 0.010174513126627115" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011997959864883546 0.010174513126627115 C 0.012132012530507852 0.01016604183099546 0.013861602700314054 0.010058709237534184 0.013606591852375218 0.010072857579047257 C 0.013861602700314054 0.010058709237534184 0.015179048222464098 0.009999055982588826 0.015058090040149569 0.010004733028470244" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015058090040149569 0.010004733028470244 C 0.01528953662093411 0.010165212294339946 0.018075011224372856 0.012310806581196009 0.017835449009564068 0.011930484218906677 C 0.018075011224372856 0.012310806581196009 0.017607371847750946 0.014840807937301435 0.01793283661785502 0.01456860137594221 C 0.017607371847750946 0.014840807937301435 0.01331689024958466 0.015314184276990996 0.013929871768315161 0.015196962955217384 C 0.01331689024958466 0.015314184276990996 0.00987220095873955 0.01612027616063738 0.010577058393088997 0.015975257237225544 C 0.00987220095873955 0.01612027616063738 0.004751175121666576 0.01699208759932112 0.005471582556121793 0.016937190036159414 C 0.004751175121666576 0.01699208759932112 0.001096828403953916 0.016235106309910464 0.001932169179626393 0.016634027995166015 C 0.001096828403953916 0.016235106309910464 -0.0054300266633081715 0.011651260632312954 -0.004552506751947929 0.012150129813092823 C -0.0054300266633081715 0.011651260632312954 -0.00893520000709224 0.010522386826867137 -0.008598069756696525 0.010647597825807575" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.008598069756696525 0.010647597825807575 C -0.008315788059958348 0.01064788761511026 -0.004778672713049912 0.010648906296104372 -0.005210689395838413 0.010651075297439782 C -0.004778672713049912 0.010648906296104372 -0.0032641345771841804 0.01061911101914455 -0.003413869563234506 0.010621569809782645" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
</g>
<g id="悪タトゥ">
<g id="通常">
<g id="文字1">
<g id="文字a">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.006645971238233944 0.012155989918992005 C 0.006645705924536817 0.012178853105950484 0.00664250983453393 0.012495672028009615 0.006642787473868415 0.012430348162493755 C 0.00664250983453393 0.012495672028009615 0.006642614914945413 0.013024797662297088 0.006642639566220128 0.012939876305182327 C 0.006642614914945413 0.013024797662297088 0.006642479332934474 0.013491865126428276 0.006642491658571832 0.013449404447870895" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006642491658571832 0.013449404447870895 C 0.006471880696143372 0.013449422166961418 0.0042539381845733935 0.013449652515138218 0.004595160109430313 0.013449617076957172 C 0.0042539381845733935 0.013449652515138218 0.002206606635431883 0.013449865144224497 0.0025478285602888013 0.013449829706043451 C 0.002206606635431883 0.013449865144224497 0.00032988604871883587 0.013450060054220251 0.0005004970111472947 0.013450042335129728" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0005004970111472947 0.013450042335129728 C 0.0005005093367846523 0.013407581656572347 0.0005006695700703003 0.012855592835326396 0.0005006449187955853 0.012940514192441157 C 0.0005006695700703003 0.012855592835326396 0.0005008174777185905 0.012345390433883607 0.0005007928264438754 0.01243098604975259 C 0.0005008174777185905 0.012345390433883607 0.0005009530597295235 0.01187023186470175 0.0005009407340921659 0.011913366802013353" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0005009407340921659 0.011913366802013353 C 0.0006715834935827556 0.011921822486689427 0.0028900029610846828 0.01203039031118401 0.0025486538479792425 0.012014835018126242 C 0.0028900029610846828 0.01203039031118401 0.004938573207212008 0.012111793227112049 0.00459713009135745 0.01210003031870657 C 0.004938573207212008 0.012111793227112049 0.006816708000473649 0.012160653219015787 0.006645971238233942 0.012155989918992001" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.22428602151343444,0.15221813001966342) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010482891581657763 0.008057536084316622 C 0.01024743976767509 0.008049445980314632 0.007254441066810571 0.008019513825697513 0.007657469813865699 0.007960454836292744 C 0.007254441066810571 0.008019513825697513 0.005478969683923778 0.00883339305058061 0.005646546616996233 0.00876624395717385" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005646546616996233 0.00876624395717385 C 0.005809117053237526 0.008722494935186594 0.007594221714911678 0.008126219516772854 0.007597391851891745 0.008241255693326765 C 0.007594221714911678 0.008126219516772854 0.005442764400014077 0.007314522683960258 0.005608504973235436 0.007385809838526912" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608504973235436 0.007385809838526912 C 0.005902311266080142 0.0074177545053340805 0.009540379371407096 0.00782512302736207 0.009134180487371902 0.007769145840212929 C 0.009540379371407096 0.00782512302736207 0.010595284172848251 0.008081568604658597 0.010482891581657763 0.008057536084316622" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22428602151343444,0.15221813001966342) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04588652059364108 0.04544181279498606 C 0.04570940427982982 0.04545284018641105 0.044390124722828266 0.04536066173673513 0.044431361600634545 0.045373381023213866 C 0.044390124722828266 0.04536066173673513 0.04548832685609967 0.045264867229537216 0.04539167805996571 0.04528918135724117 C 0.04548832685609967 0.045264867229537216 0.04566205580929747 0.045061736505163506 0.045591147154242125 0.04508161149076638 C 0.04566205580929747 0.045061736505163506 0.04632304943830711 0.04506396826628563 0.04624258192062982 0.04505068153000666 C 0.04632304943830711 0.04506396826628563 0.04652708558912059 0.045273646598195605 0.04655675736636965 0.04524105232611399 C 0.04652708558912059 0.045273646598195605 0.04570940427982982 0.04545284018641105 0.04588652059364108 0.04544181279498606 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.224285799651962,0.15298242223369626) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071166 0.01601981907883221 C 0.007271247809433808 0.01606227975738959 0.007271087576148157 0.016614268578635537 0.007271112227422872 0.016529347221520777 C 0.007271087576148157 0.016614268578635537 0.007270939668499868 0.017123796721324108 0.007270964319774583 0.017038875364209345 C 0.007270939668499868 0.017123796721324108 0.00727080408648893 0.0175908641854553 0.007270816412126288 0.01754840350689792" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01754840350689792 C 0.007100205449697829 0.01754842122598844 0.004882262938127864 0.017548651574165238 0.005223484862984781 0.017548616135984192 C 0.004882262938127864 0.017548651574165238 0.0028349313889863546 0.01754886420325152 0.0031761533138432727 0.017548828765070475 C 0.0028349313889863546 0.01754886420325152 0.0009582108022733046 0.01754905911324728 0.0011288217647017636 0.017549041394156754" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017636 0.017549041394156754 C 0.0011288340903391212 0.017506580715599372 0.0011289943236247706 0.016954591894353416 0.0011289696723500553 0.01703951325146818 C 0.0011289943236247706 0.016954591894353416 0.001129142231273062 0.01644506375166485 0.0011291175799983467 0.01652998510877961 C 0.001129142231273062 0.01644506375166485 0.0011292778132839956 0.01597799628753366 0.001129265487646638 0.016020456966091043" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020456966091043 C 0.0012998764500750971 0.016020439247000518 0.0035178189616450655 0.016020208898823718 0.0031765970367881474 0.016020244337004764 C 0.0035178189616450655 0.016020208898823718 0.005565150510786574 0.016019996269737442 0.0052239285859296564 0.01602003170791849 C 0.005565150510786574 0.016019996269737442 0.007441871097499623 0.016019801359741685 0.007271260135071164 0.01601981907883221" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22428557779048955,0.1537467144477291) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010484091105724097 0.007434520264183998 C 0.010304019484905922 0.007461364525972787 0.008157794855680675 0.007862168668183877 0.008323231655906 0.007756651405649467 C 0.008157794855680675 0.007862168668183877 0.008513484323613046 0.008779400415342543 0.008498849503020196 0.008700727414596921" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008498849503020196 0.008700727414596921 C 0.008625255920315022 0.008669232716194901 0.009775967855991054 0.00821380926005977 0.010015726510558102 0.008322791033772689 C 0.009775967855991054 0.00821380926005977 0.005255580576353755 0.007315459054730996 0.005621745648215628 0.007392946130041895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621745648215628 0.007392946130041895 C 0.005780837689753589 0.007406881513257704 0.007936045601463536 0.00756363523981012 0.0075308501466711635 0.007560170728631611 C 0.007936045601463536 0.00756363523981012 0.010730194518978508 0.0074240493921466965 0.010484091105724097 0.007434520264183998" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22428557779048955,0.1537467144477291) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.042566108649183095 0.044920605294208785 C 0.042598793917746486 0.04488292288232168 0.04326231242580545 0.044792019306597805 0.04317047867385993 0.044790326857379666 C 0.04326231242580545 0.044792019306597805 0.043692980376703404 0.0449736227567939 0.04366811367252935 0.04494091468482646 C 0.043692980376703404 0.0449736227567939 0.04350769894799715 0.04522466162518615 0.04346887912394856 0.045182823720988974 C 0.04350769894799715 0.04522466162518615 0.044076399588374976 0.04544794387511227 0.04413395156111242 0.04544296953519261 C 0.044076399588374976 0.04544794387511227 0.04264760187510517 0.0451989854466096 0.04277825545109928 0.04524251580002492 C 0.04264760187510517 0.0451989854466096 0.042598793917746486 0.04488292288232168 0.042566108649183095 0.044920605294208785 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.2242853559290171,0.15451100666176196) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071166 0.01601981907883221 C 0.007271247809433808 0.01606227975738959 0.007271087576148157 0.016614268578635537 0.007271112227422872 0.016529347221520777 C 0.007271087576148157 0.016614268578635537 0.007270939668499868 0.017123796721324108 0.007270964319774583 0.017038875364209345 C 0.007270939668499868 0.017123796721324108 0.00727080408648893 0.0175908641854553 0.007270816412126288 0.01754840350689792" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01754840350689792 C 0.007100205449697829 0.01754842122598844 0.004882262938127864 0.017548651574165238 0.005223484862984781 0.017548616135984192 C 0.004882262938127864 0.017548651574165238 0.0028349313889863546 0.01754886420325152 0.0031761533138432727 0.017548828765070475 C 0.0028349313889863546 0.01754886420325152 0.0009582108022733046 0.01754905911324728 0.0011288217647017636 0.017549041394156754" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017636 0.017549041394156754 C 0.0011288340903391212 0.017506580715599372 0.0011289943236247706 0.016954591894353416 0.0011289696723500553 0.01703951325146818 C 0.0011289943236247706 0.016954591894353416 0.001129142231273062 0.01644506375166485 0.0011291175799983467 0.01652998510877961 C 0.001129142231273062 0.01644506375166485 0.0011292778132839956 0.01597799628753366 0.001129265487646638 0.016020456966091043" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020456966091043 C 0.0012998764500750971 0.016020439247000518 0.0035178189616450655 0.016020208898823718 0.0031765970367881474 0.016020244337004764 C 0.0035178189616450655 0.016020208898823718 0.005565150510786574 0.016019996269737442 0.0052239285859296564 0.01602003170791849 C 0.005565150510786574 0.016019996269737442 0.007441871097499623 0.016019801359741685 0.007271260135071164 0.01601981907883221" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22428513406754466,0.1552752988757948) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010463646750646115 0.007601802618492911 C 0.010185879485997121 0.007611733859778945 0.00680637453969618 0.00778148776002894 0.007130439574858188 0.007720977513925323 C 0.00680637453969618 0.00778148776002894 0.006723720891531023 0.008411698589167054 0.00657486632870202 0.008327925571736316 C 0.006723720891531023 0.008411698589167054 0.009111846662148246 0.008759447735707322 0.008916694328806228 0.008726253723094168" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008916694328806228 0.008726253723094168 C 0.008657969359659129 0.008712202943443647 0.0055730523303205255 0.008463013081065146 0.005811994699041041 0.008557644367287917 C 0.0055730523303205255 0.008463013081065146 0.006069168504586618 0.007510097781848676 0.006049385904160035 0.007590678288420926" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006049385904160035 0.007590678288420926 C 0.006201982899883906 0.007576604822325741 0.008248404923386991 0.007422723722784702 0.007880549852846485 0.007421796695278703 C 0.008248404923386991 0.007422723722784702 0.01067890482546275 0.0076168031120940945 0.010463646750646115 0.007601802618492911" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22428513406754466,0.1552752988757948) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04618876617258433 0.04502453889532431 C 0.04601165004764077 0.04503491565502411 0.04469236890689728 0.044948193049534915 0.04473360600298606 0.04496016037305099 C 0.04469236890689728 0.044948193049534915 0.045790569398697877 0.0448580532571944 0.04569392101951904 0.04488093101313135 C 0.045790569398697877 0.0448580532571944 0.04596429486734334 0.0446669264926568 0.04589338655313213 0.04468562730180756 C 0.04596429486734334 0.0446669264926568 0.04662528853581827 0.04466902229955945 0.04654482079005355 0.0446565213033223 C 0.04662528853581827 0.04466902229955945 0.04682932828418633 0.04486630738932019 0.04685899950230876 0.044835639256653355 C 0.04682932828418633 0.04486630738932019 0.04601165004764077 0.04503491565502411 0.04618876617258433 0.04502453889532431 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.22428491220607222,0.15603959108982765) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071166 0.01601981907883221 C 0.007271247809433808 0.01606227975738959 0.007271087576148157 0.016614268578635537 0.007271112227422872 0.016529347221520777 C 0.007271087576148157 0.016614268578635537 0.007270939668499868 0.017123796721324108 0.007270964319774583 0.017038875364209345 C 0.007270939668499868 0.017123796721324108 0.00727080408648893 0.0175908641854553 0.007270816412126288 0.01754840350689792" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01754840350689792 C 0.007100205449697829 0.01754842122598844 0.004882262938127864 0.017548651574165238 0.005223484862984781 0.017548616135984192 C 0.004882262938127864 0.017548651574165238 0.0028349313889863546 0.01754886420325152 0.0031761533138432727 0.017548828765070475 C 0.0028349313889863546 0.01754886420325152 0.0009582108022733046 0.01754905911324728 0.0011288217647017636 0.017549041394156754" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017636 0.017549041394156754 C 0.0011288340903391212 0.017506580715599372 0.0011289943236247706 0.016954591894353416 0.0011289696723500553 0.01703951325146818 C 0.0011289943236247706 0.016954591894353416 0.001129142231273062 0.01644506375166485 0.0011291175799983467 0.01652998510877961 C 0.001129142231273062 0.01644506375166485 0.0011292778132839956 0.01597799628753366 0.001129265487646638 0.016020456966091043" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020456966091043 C 0.0012998764500750971 0.016020439247000518 0.0035178189616450655 0.016020208898823718 0.0031765970367881474 0.016020244337004764 C 0.0035178189616450655 0.016020208898823718 0.005565150510786574 0.016019996269737442 0.0052239285859296564 0.01602003170791849 C 0.005565150510786574 0.016019996269737442 0.007441871097499623 0.016019801359741685 0.007271260135071164 0.01601981907883221" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22428469034459977,0.1568038833038605) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.01048408600011787 0.007452108604551178 C 0.01043481840360538 0.007531178403438599 0.009727438882702152 0.008503566426256486 0.009892874841967998 0.008400946191200223 C 0.009727438882702152 0.008503566426256486 0.008382686126174353 0.008707101861395174 0.00849885448892771 0.008683551425226331" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00849885448892771 0.008683551425226331 C 0.008573414467562556 0.00860374612093302 0.009153814709067678 0.007619899318370069 0.00939357423254587 0.007725887773706591 C 0.009153814709067678 0.007619899318370069 0.005307420705076369 0.007385506810144861 0.005621740207189407 0.007411689961188071" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621740207189407 0.007411689961188071 C 0.005749972075774266 0.007436338083815331 0.0075657181129517555 0.007710835652995455 0.007160522630207717 0.007707467432715196 C 0.0075657181129517555 0.007710835652995455 0.01076104961427705 0.007430828702204175 0.01048408600011787 0.007452108604551176" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22428469034459977,0.1568038833038605) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.042631593958355155 0.04498070027845436 C 0.04264105578530756 0.044942556362657524 0.04323582275217862 0.04480939364747943 0.043144977126548294 0.044814246531750465 C 0.04323582275217862 0.04480939364747943 0.04376560698432509 0.04495182777571794 0.04372174146591902 0.0449224656672019 C 0.04376560698432509 0.04495182777571794 0.043734332489111925 0.045203656343415305 0.04367136334742113 0.04516659183394295 C 0.043734332489111925 0.045203656343415305 0.04442404382085008 0.04537602158815098 0.044477371166208556 0.045367239780870185 C 0.04442404382085008 0.04537602158815098 0.04287762043579831 0.0452397618961112 0.04303143520311943 0.04527197352131252 C 0.04287762043579831 0.0452397618961112 0.04264105578530756 0.044942556362657524 0.042631593958355155 0.04498070027845436 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.22428446848312733,0.15756817551789334) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071166 0.01601981907883221 C 0.007271247809433808 0.01606227975738959 0.007271087576148157 0.016614268578635537 0.007271112227422872 0.016529347221520777 C 0.007271087576148157 0.016614268578635537 0.007266586888833333 0.017155584011788263 0.007270964319774583 0.017038875364209345 C 0.007266586888833333 0.017155584011788263 0.007214217950823973 0.018004098961489325 0.007218583056127866 0.01792985099246779" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007218583056127866 0.01792985099246779 C 0.0070555230194349495 0.017915766313013563 0.004924802688249698 0.017732665280994302 0.005261862615812863 0.017760834839017053 C 0.004924802688249698 0.017732665280994302 0.0028294438544439653 0.01756514836362166 0.0031738639253698904 0.017591816296194784 C 0.0028294438544439653 0.01756514836362166 0.0009584015846460859 0.017428236594134974 0.0011288217647017632 0.017440819648139573" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011288217647017632 0.017440819648139573 C 0.001128834090339121 0.017407377448416958 0.0011289943236247706 0.016963610373188182 0.0011289696723500553 0.01703951325146818 C 0.0011289943236247706 0.016963610373188182 0.001129142231273062 0.01644506375166485 0.0011291175799983467 0.01652998510877961 C 0.001129142231273062 0.01644506375166485 0.0011292778132839956 0.01597799628753366 0.001129265487646638 0.016020456966091043" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020456966091043 C 0.0012998764500750971 0.016020439247000518 0.0035178189616450655 0.016020208898823718 0.0031765970367881474 0.016020244337004764 C 0.0035178189616450655 0.016020208898823718 0.005565150510786574 0.016019996269737442 0.0052239285859296564 0.01602003170791849 C 0.005565150510786574 0.016019996269737442 0.007441871097499623 0.016019801359741685 0.007271260135071164 0.01601981907883221" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2242842466216549,0.1583324677319262) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010446900831804417 0.007509933799024918 C 0.010216635051282603 0.007548945264783337 0.007470362722433094 0.008072486785597719 0.007683711465542647 0.00797807138812595 C 0.007470362722433094 0.008072486785597719 0.007903632951902032 0.008698322500399513 0.007886715914489771 0.008642918568686162" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007886715914489771 0.008642918568686162 C 0.007925399788087883 0.008585181290186598 0.008161067997582256 0.007857329083130683 0.0083509223976671 0.007950071226691387 C 0.008161067997582256 0.007857329083130683 0.005379924839788675 0.007495007980896566 0.005608463113471631 0.007530012845957706" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608463113471631 0.007530012845957706 C 0.005816421845342579 0.0075343989413518666 0.008507171039117408 0.007580972736776568 0.00810396789592301 0.007582645990687633 C 0.008507171039117408 0.007580972736776568 0.010642145243127867 0.007503874449719692 0.010446900831804417 0.007509933799024918" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2242842466216549,0.1583324677319262) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04704672705170542 0.044730334917518565 C 0.04707112459796909 0.044801015382826666 0.0466705645772948 0.04539602919717187 0.046715944319877974 0.04538573697110422 C 0.0466705645772948 0.04539602919717187 0.0464277441615052 0.04480396604739626 0.04650217014070732 0.04485384163033032 C 0.0464277441615052 0.04480396604739626 0.04576142149031948 0.04476692162181871 0.04582283256945245 0.04478722997589547 C 0.04576142149031948 0.04476692162181871 0.04581526562405015 0.044589336499035126 0.045765237191111696 0.04461014138140917 C 0.04581526562405015 0.044589336499035126 0.04652996458643008 0.044547587515416105 0.046423173764713936 0.044537571387406986 C 0.04652996458643008 0.044547587515416105 0.04707112459796909 0.044801015382826666 0.04704672705170542 0.044730334917518565 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2242842466216549,0.1583324677319262) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.043206282238210394 0.04453790548312598 C 0.04331307888140054 0.04452786717262887 0.043914193077051855 0.044631133311317746 0.043864176719728316 0.04461033881926488 C 0.043914193077051855 0.044631133311317746 0.04374505565289367 0.044807760498965364 0.04380647852609287 0.0447874393877604 C 0.04374505565289367 0.044807760498965364 0.04305264730152279 0.044904083198938606 0.04312710224133791 0.04485419215372449 C 0.04305264730152279 0.044904083198938606 0.0428676454783205 0.04537584912962193 0.042913019248311444 0.04538613193032979 C 0.0428676454783205 0.04537584912962193 0.042607055583938125 0.0446601130079632 0.04258261700144655 0.04473079854523018 C 0.042607055583938125 0.0446601130079632 0.04331307888140054 0.04452786717262887 0.043206282238210394 0.04453790548312598 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="文字2">
<g id="文字a">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.01991482794617021 0.010663471369289447 C 0.01991482794617021 0.010709986163213638 0.019914827946170215 0.011329319572217068 0.019914827946170215 0.011221648896379742 C 0.019914827946170215 0.011329319572217068 0.019914827946170218 0.012077831243163636 0.019914827946170218 0.011955519479337366 C 0.019914827946170218 0.012077831243163636 0.019914827946170218 0.01275054594420812 0.019914827946170218 0.012689390062294985" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.019914827946170218 0.012689390062294985 C 0.01974421750339812 0.012689390062294985 0.017526281747360827 0.012689390062294985 0.017867502632905027 0.012689390062294985 C 0.017526281747360827 0.012689390062294985 0.015478956434095623 0.012689390062294983 0.015820177319639823 0.012689390062294983 C 0.015478956434095623 0.012689390062294983 0.013602241563602537 0.01268939006229498 0.013772852006374636 0.01268939006229498" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013772852006374636 0.01268939006229498 C 0.013772852006374636 0.012656836612404817 0.013772852006374636 0.012251153456907981 0.013772852006374636 0.012298748663613019 C 0.013772852006374636 0.012251153456907981 0.013772852006374636 0.012070969506281353 0.013772852006374636 0.012118247581834518 C 0.013772852006374636 0.012070969506281353 0.013772852006374636 0.011699175438236743 0.013772852006374636 0.011731411756975034" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.013772852006374636 0.011731411756975034 C 0.013943462449146734 0.011705810289264722 0.016161398205184023 0.01136845823431274 0.015820177319639823 0.011424194144451292 C 0.016161398205184023 0.01136845823431274 0.01820872351844922 0.010999187270715607 0.01786750263290502 0.011062580835312428 C 0.01820872351844922 0.010999187270715607 0.02008543838894231 0.010630212247120862 0.01991482794617021 0.010663471369289444" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.23755814529337485,0.1511212830300545) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010482879170498779 0.008050084052539814 C 0.010247425718152795 0.008038396699988742 0.00725442735451138 0.007994837875529702 0.007657437742346975 0.007909835821926961 C 0.00725442735451138 0.007994837875529702 0.005479197580982027 0.009166798101926527 0.005646754516471638 0.009070108695772714" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005646754516471638 0.009070108695772714 C 0.005809311762864005 0.00900712153597362 0.007594237952748864 0.00817707843088217 0.007597441473180033 0.00831426277818358 C 0.007594237952748864 0.00817707843088217 0.005442551504474079 0.0073496993406534815 0.005608312271297614 0.007423896528155797" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608312271297614 0.007423896528155797 C 0.005902126951092343 0.007441448101713734 0.009540302337101118 0.007686697704549704 0.009134088428834355 0.007634515410851036 C 0.009540302337101118 0.007686697704549704 0.010595278398970814 0.008084714772680544 0.010482879170498779 0.008050084052539814" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.1511212830300545) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04588669941638254 0.04571811053675146 C 0.04570958683776324 0.04573396673467297 0.04439028450151461 0.045601005272905 0.04443152494715127 0.04561933096023931 C 0.04439028450151461 0.045601005272905 0.04548845551544158 0.045463197240346295 0.04539181406874265 0.045498202288739714 C 0.04548845551544158 0.045463197240346295 0.04566212497938956 0.045170655152963944 0.045591222307538384 0.04519927037951827 C 0.04566212497938956 0.045170655152963944 0.046323117262877175 0.04517396842055973 0.04624264613095679 0.045154819570087816 C 0.046323117262877175 0.04517396842055973 0.04652721366436844 0.04547599749906986 0.04655687589058296 0.045429056585181225 C 0.04652721366436844 0.04547599749906986 0.04570958683776324 0.04573396673467297 0.04588669941638254 0.04571811053675146 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.23755814529337485,0.15222208890449093) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.016081293904374766 0.007271250781256685 0.016876320369245516 0.007271250781256685 0.016754008605419247 C 0.007271250781256685 0.016876320369245516 0.007271250781256689 0.017610190952203137 0.007271250781256689 0.017487879188376868 C 0.007271250781256689 0.017610190952203137 0.007271250781256685 0.018282905653247618 0.007271250781256685 0.018221749771334485" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018221749771334485 C 0.007100640338484586 0.018221749771334485 0.004882704582447298 0.018221749771334485 0.005223925467991496 0.018221749771334485 C 0.004882704582447298 0.018221749771334485 0.0028353792691821096 0.01822174977133449 0.0031766001547263076 0.01822174977133449 C 0.0028353792691821096 0.01822174977133449 0.0009586643986890191 0.018221749771334485 0.0011292748414611182 0.018221749771334485" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611182 0.018221749771334485 C 0.0011292748414611182 0.01816059388942135 0.001129274841461119 0.017365567424550598 0.001129274841461119 0.017487879188376868 C 0.001129274841461119 0.017365567424550598 0.0011292748414611182 0.016631696841592977 0.0011292748414611182 0.016754008605419247 C 0.0011292748414611182 0.016631696841592977 0.0011292748414611182 0.015958982140548493 0.0011292748414611182 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611182 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535695 0.01602013802246163 0.005223925467991496 0.01602013802246163 C 0.005565146353535695 0.01602013802246163 0.007441861224028786 0.01602013802246163 0.007271250781256687 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.23755814529337485,0.15332289477892735) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010483897840236636 0.007152757943996606 C 0.010303834554886504 0.0071913946519747305 0.008157732744554082 0.007768349630762724 0.008323138416035056 0.007616398439734103 C 0.008157732744554082 0.007768349630762724 0.0085136873963341 0.009089486719390551 0.008499029782464943 0.008976172236340056" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008499029782464943 0.008976172236340056 C 0.008625426676189029 0.008930829502402003 0.009776002940106028 0.008275057710648811 0.010015792507153964 0.008432059429083415 C 0.009776002940106028 0.008275057710648811 0.00525536851711771 0.006980492630628264 0.005621554977889729 0.007092151615124814" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621554977889729 0.007092151615124814 C 0.005780650584853166 0.007112246469231174 0.007935897499979883 0.00733834039180712 0.007530702261450974 0.007333289864401137 C 0.007935897499979883 0.00733834039180712 0.010729997471802108 0.007137713617296228 0.010483897840236636 0.007152757943996606" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.15332289477892735) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04256614618779907 0.04496692153464617 C 0.04259882041924117 0.04491265265151584 0.04326231053858726 0.044781823979069976 0.043170476572296786 0.04477937261681019 C 0.04326231053858726 0.044781823979069976 0.04369302990705538 0.04504345085910393 0.04366815378328477 0.044996337881763625 C 0.04369302990705538 0.04504345085910393 0.043507821909342964 0.04540499305696969 0.04346899005754405 0.04534472834489389 C 0.043507821909342964 0.04540499305696969 0.044076585649658974 0.04572667033246319 0.044134136004871684 0.04571951442667317 C 0.044076585649658974 0.04572667033246319 0.04264771997690214 0.045367883140038597 0.042778385794991526 0.04543059921437418 C 0.04264771997690214 0.045367883140038597 0.04259882041924117 0.04491265265151584 0.04256614618779907 0.04496692153464617 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.23755814529337485,0.1544237006533638) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.016081293904374766 0.007271250781256685 0.016876320369245516 0.007271250781256685 0.016754008605419247 C 0.007271250781256685 0.016876320369245516 0.007271250781256689 0.017610190952203137 0.007271250781256689 0.017487879188376868 C 0.007271250781256689 0.017610190952203137 0.007271250781256685 0.018282905653247618 0.007271250781256685 0.018221749771334485" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018221749771334485 C 0.007100640338484586 0.018221749771334485 0.004882704582447298 0.018221749771334485 0.005223925467991496 0.018221749771334485 C 0.004882704582447298 0.018221749771334485 0.0028353792691821096 0.01822174977133449 0.0031766001547263076 0.01822174977133449 C 0.0028353792691821096 0.01822174977133449 0.0009586643986890191 0.018221749771334485 0.0011292748414611182 0.018221749771334485" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611182 0.018221749771334485 C 0.0011292748414611182 0.01816059388942135 0.001129274841461119 0.017365567424550598 0.001129274841461119 0.017487879188376868 C 0.001129274841461119 0.017365567424550598 0.0011292748414611182 0.016631696841592977 0.0011292748414611182 0.016754008605419247 C 0.0011292748414611182 0.016631696841592977 0.0011292748414611182 0.015958982140548493 0.0011292748414611182 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611182 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535695 0.01602013802246163 0.005223925467991496 0.01602013802246163 C 0.005565146353535695 0.01602013802246163 0.007441861224028786 0.01602013802246163 0.007271250781256687 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.23755814529337485,0.15552450652780023) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010463502105985425 0.007393690748440789 C 0.010185738561868826 0.007407953111500291 0.006806293083786986 0.007651943207592176 0.00713033957658624 0.007564839105154812 C 0.006806293083786986 0.007651943207592176 0.006723822624178746 0.008559620064113871 0.006574944192394377 0.008438939977689155 C 0.006723822624178746 0.008559620064113871 0.009112042138465703 0.009060838489298263 0.008916880757998678 0.009013000142251409" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008916880757998678 0.009013000142251409 C 0.008658152490392316 0.008992724179774716 0.005573172428757417 0.008633355925068276 0.005812141546722322 0.008769688592531102 C 0.005573172428757417 0.008633355925068276 0.006069010492061276 0.007260951427711375 0.006049251342419818 0.0073770081326975075" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006049251342419818 0.0073770081326975075 C 0.006201843792672073 0.007356761022337691 0.008248214975744022 0.007135433026358307 0.007880360745446888 0.0071340428083797 C 0.008248214975744022 0.007135433026358307 0.010678763886030302 0.007415328076779211 0.010463502105985425 0.007393690748440787" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.15552450652780023) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04618882295644943 0.04511715842594264 C 0.046011710377830126 0.04513207752256699 0.044692408041581505 0.0450069740831895 0.04473364848721816 0.04502421672240236 C 0.044692408041581505 0.0450069740831895 0.045790579055508464 0.04487731050535503 0.045693937608809534 0.0449102467553884 C 0.045790579055508464 0.04487731050535503 0.04596424851945647 0.044602057655336966 0.04589334584760529 0.044628981722001936 C 0.04596424851945647 0.044602057655336966 0.046625240802944085 0.04460517510881783 0.0465447696710237 0.0445871579554088 C 0.046625240802944085 0.04460517510881783 0.04682933720443533 0.04488935426878802 0.046858999430649854 0.0448451875629102 C 0.04682933720443533 0.04488935426878802 0.046011710377830126 0.04513207752256699 0.04618882295644943 0.04511715842594264 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.23755814529337485,0.15662531240223665) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.016081293904374766 0.007271250781256685 0.016876320369245516 0.007271250781256685 0.016754008605419247 C 0.007271250781256685 0.016876320369245516 0.007271250781256689 0.017610190952203137 0.007271250781256689 0.017487879188376868 C 0.007271250781256689 0.017610190952203137 0.007271250781256685 0.018282905653247618 0.007271250781256685 0.018221749771334485" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018221749771334485 C 0.007100640338484586 0.018221749771334485 0.004882704582447298 0.018221749771334485 0.005223925467991496 0.018221749771334485 C 0.004882704582447298 0.018221749771334485 0.0028353792691821096 0.01822174977133449 0.0031766001547263076 0.01822174977133449 C 0.0028353792691821096 0.01822174977133449 0.0009586643986890191 0.018221749771334485 0.0011292748414611182 0.018221749771334485" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611182 0.018221749771334485 C 0.0011292748414611182 0.01816059388942135 0.001129274841461119 0.017365567424550598 0.001129274841461119 0.017487879188376868 C 0.001129274841461119 0.017365567424550598 0.0011292748414611182 0.016631696841592977 0.0011292748414611182 0.016754008605419247 C 0.0011292748414611182 0.016631696841592977 0.0011292748414611182 0.015958982140548493 0.0011292748414611182 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611182 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535695 0.01602013802246163 0.005223925467991496 0.01602013802246163 C 0.005565146353535695 0.01602013802246163 0.007441861224028786 0.01602013802246163 0.007271250781256687 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.23755814529337485,0.15772611827667307) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010483897840236634 0.007178090333941567 C 0.010434653344895106 0.007291966764397806 0.009727558224657318 0.0086923861176937 0.009892963896138291 0.008544607499416438 C 0.009727558224657318 0.0086923861176937 0.008382868606325498 0.008985335941089743 0.008499029782464943 0.00895143375326872" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008499029782464943 0.00895143375326872 C 0.008573566370149903 0.008836501761729133 0.009153679267636534 0.007419559396361856 0.00939346883468447 0.007572249854793678 C 0.009153679267636534 0.007419559396361856 0.005307228823156834 0.007081389785194615 0.005621554977889729 0.00711914825208685" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621554977889729 0.00711914825208685 C 0.005749793614688192 0.007154667990147859 0.0075656138580001975 0.007550296948973516 0.0071604186194712885 0.007545385108818956 C 0.0075656138580001975 0.007550296948973516 0.01076085444196708 0.007147482436035118 0.010483897840236634 0.007178090333941567" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.15772611827667307) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.0426316487440205 0.045053485808282424 C 0.04264109946992014 0.044998548749727196 0.04323582598831602 0.04480684418504928 0.04314498204535788 0.044813820178725546 C 0.04323582598831602 0.04480684418504928 0.043765649968950604 0.045012070530519484 0.04372177605951814 0.04496977388416723 C 0.043765649968950604 0.045012070530519484 0.0437344486695274 0.04537477316499613 0.043671468958547455 0.045321379934952576 C 0.0437344486695274 0.04537477316499613 0.044424207955945386 0.04562313305689284 0.044477532591277485 0.04561049264468986 C 0.044424207955945386 0.04562313305689284 0.04287774968062414 0.04542664764502104 0.04303157333456222 0.045473064881388324 C 0.04287774968062414 0.04542664764502104 0.04264109946992014 0.044998548749727196 0.0426316487440205 0.045053485808282424 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.23755814529337485,0.1588269241511095) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.016081293904374766 0.007271250781256685 0.016876320369245516 0.007271250781256685 0.016754008605419247 C 0.007271250781256685 0.016876320369245516 0.007271250781256689 0.017602406984886736 0.007271250781256689 0.017487879188376868 C 0.007271250781256689 0.017602406984886736 0.007271250781256685 0.01818171407813438 0.007271250781256685 0.018128342163537647" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018128342163537647 C 0.007100640338484586 0.01811051591892089 0.004882704582447298 0.017877781598394572 0.005223925467991496 0.017914427228136576 C 0.004882704582447298 0.017877781598394572 0.00283537926918211 0.017650145933287172 0.003176600154726308 0.017688594606633596 C 0.00283537926918211 0.017650145933287172 0.0009586643986890191 0.01743341385975832 0.0011292748414611182 0.017453043147979495" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611182 0.017453043147979495 C 0.0011292748414611182 0.017428412069076648 0.001129274841461119 0.01709921732259864 0.001129274841461119 0.017157470201145327 C 0.001129274841461119 0.01709921732259864 0.0011292748414611182 0.016659230923862272 0.0011292748414611182 0.016754008605419247 C 0.0011292748414611182 0.016659230923862272 0.0011292748414611182 0.015958982140548493 0.0011292748414611182 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611182 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535695 0.01602013802246163 0.005223925467991496 0.01602013802246163 C 0.005565146353535695 0.01602013802246163 0.007441861224028786 0.01602013802246163 0.007271250781256687 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.23755814529337485,0.15992773002554592) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010446729569716057 0.007261370083863971 C 0.010216475807961962 0.0073175236411081035 0.007470363736110818 0.008071166839248023 0.0076836844286669054 0.007935212770793563 C 0.007470363736110818 0.008071166839248023 0.007903814328241018 0.008972619416527812 0.00788688125904301 0.008892818905317484" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00788688125904301 0.008892818905317484 C 0.007925548255849077 0.008809666004475893 0.008161004471737034 0.007761379692414835 0.008350885220715818 0.007894984095218383 C 0.008161004471737034 0.007761379692414835 0.005379764525512765 0.007239114569712959 0.005608312271297615 0.007289566071674914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608312271297615 0.007289566071674914 C 0.0058162716492333785 0.0072959144482972966 0.00850702624806164 0.007363396925492587 0.00810382480652677 0.007365746591143499 C 0.00850702624806164 0.007363396925492587 0.010641971633315164 0.007252672041590677 0.010446729569716057 0.007261370083863971" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.15992773002554592) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04704669584588775 0.044693546378637386 C 0.04707111383589147 0.044795350716836206 0.046670727745402533 0.04565228595112693 0.04671610436347855 0.045637468902146636 C 0.046670727745402533 0.04565228595112693 0.04642773619620187 0.04479950430335644 0.0465021764289756 0.04487135096640089 C 0.04642773619620187 0.04479950430335644 0.04576140478109498 0.044746049747863906 0.04582282157019382 0.04477530894561325 C 0.04576140478109498 0.044746049747863906 0.04581519720255949 0.04449028291825442 0.04576517495978949 0.0445202405934088 C 0.04581519720255949 0.04449028291825442 0.04652988189060871 0.04443025899252985 0.04642308848343385 0.0444158168437608 C 0.04652988189060871 0.04443025899252985 0.04707111383589147 0.044795350716836206 0.04704669584588775 0.044693546378637386 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.15992773002554592) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04320620675511746 0.04441581684376081 C 0.043313000162292316 0.04440137469499176 0.043914142521531856 0.04455019826856315 0.04386412027876185 0.04452024059340878 C 0.043914142521531856 0.04455019826856315 0.04374505687925868 0.04480456814336259 0.04380647366835752 0.04477530894561325 C 0.04374505687925868 0.04480456814336259 0.043052678576802 0.04494319762944534 0.04312711880957573 0.044871350966400894 C 0.043052678576802 0.04494319762944534 0.04286781425699675 0.04562265185316634 0.04291319087507276 0.045637468902146636 C 0.04286781425699675 0.04562265185316634 0.04260701738266732 0.044591742040438566 0.042582599392663595 0.044693546378637386 C 0.04260701738266732 0.044591742040438566 0.043313000162292316 0.04440137469499176 0.04320620675511746 0.04441581684376081 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M 0.01188668245247199 0.0018217957390243623 C 0.011926636327131148 0.001820647041235335 0.012450269963301583 0.001804777471389357 0.012366128948381887 0.0018080113655560334 C 0.012450269963301583 0.001804777471389357 0.012940561771768874 0.001780903812646597 0.012896374631508337 0.001782989009024246" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.012896374631508337 0.001782989009024246 C 0.012896374631508337 0.002173530220832393 0.012896374631508334 0.007285049257923062 0.012896374631508334 0.006469483550722009 C 0.012896374631508334 0.007285049257923062 0.012896374631508337 0.011994801990829796 0.012896374631508337 0.01156977749543689" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012896374631508337 0.01156977749543689 C 0.012853669176985893 0.011564978754669008 0.012299768162319315 0.0115027762348204 0.01238390917723901 0.011512192606222306 C 0.012299768162319315 0.0115027762348204 0.011845246892074737 0.011452163407980005 0.01188668245247199 0.011456781038614028" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01188668245247199 0.011456781038614028 C 0.01188668245247199 0.011041172914623027 0.01188668245247199 0.005666568109089536 0.01188668245247199 0.006469483550722009 C 0.01188668245247199 0.005666568109089536 0.011886682452471986 0.0014344884213828941 0.011886682452471986 0.0018217957390243645" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M 0.025199615522778412 -0.00025097551071810454 C 0.025241295517896164 -0.0002593762901898137 0.025783916479111116 -0.0003685920510719574 0.02569977546419142 -0.0003517848643786146 C 0.025783916479111116 -0.0003685920510719574 0.0262517687216167 -0.00046106815825985213 0.026209307701814753 -0.00045266175103821847" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026209307701814753 -0.00045266175103821847 C 0.026209307701814753 0.0001241836907751338 0.026209307701814753 0.007585169210108815 0.026209307701814753 0.006469483550722009 C 0.026209307701814753 0.007585169210108815 0.02620930770181476 0.013474406379176908 0.02620930770181476 0.012935566161603454" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02620930770181476 0.012935566161603454 C 0.026168785450327595 0.012932761724261322 0.02563889966904907 0.012895980296679283 0.025723040683968766 0.012901912913497878 C 0.02563889966904907 0.012895980296679283 0.025155996759345878 0.012861246580303862 0.02519961552277841 0.012864374759780325" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02519961552277841 0.012864374759780325 C 0.02519961552277841 0.012331467159025465 0.025199615522778412 0.005376537694847138 0.025199615522778412 0.006469483550722007 C 0.025199615522778412 0.005376537694847138 0.025199615522778412 -0.0008110137658381108 0.025199615522778412 -0.0002509755107181017" fill="none" stroke="none" stroke-width="0"/>
</g><g id="逆十字">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.08412477642939539,-0.05688059287924617)"><path d="M 0.13078797909594359 0.057891514356766635 C 0.13083622338004539 0.057984328828767924 0.1312863524199786 0.05921126030132474 0.1313669105051652 0.05900528802078209 C 0.1312863524199786 0.05921126030132474 0.12969247970441594 0.0604763395318198 0.12982128207370436 0.06036318172327844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.12982128207370436 0.06036318172327844 C 0.12968664451553497 0.06029103893843551 0.12709958842632782 0.05945840621726116 0.12820563137567165 0.059497468305163295 C 0.12709958842632782 0.05945840621726116 0.11403370347589867 0.05994982790128527 0.1165487666815785 0.059894436668452795 C 0.11403370347589867 0.05994982790128527 0.09648121509300822 0.06018447363504473 0.09802487290751363 0.06016216309915304" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09802487290751363 0.06016216309915304 C 0.09802487290751363 0.0602874078712128 0.09804577694843353 0.06182561960806357 0.09802487290751363 0.061665100363870164 C 0.09804577694843353 0.06182561960806357 0.09840703477342448 0.06213854054033721 0.09827572139855233 0.06208839402947392 C 0.09840703477342448 0.06213854054033721 0.09971104273993181 0.06228173053295924 0.09960063340597954 0.0622668584942296" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09960063340597954 0.0622668584942296 C 0.09944510754595899 0.06228999069192387 0.09747670130651102 0.06252928012750905 0.09773432308573299 0.06254444486656077 C 0.09747670130651102 0.06252928012750905 0.09640707613611459 0.062046584688863024 0.096509172055316 0.062084881625609004" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.096509172055316 0.062084881625609004 C 0.09640707613611459 0.06210152883120262 0.09502639924567702 0.06225685066488581 0.09528402102489898 0.062284648092732375 C 0.09502639924567702 0.06225685066488581 0.09326218484463186 0.06170686785800998 0.0934177107046524 0.06175131249145017" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0934177107046524 0.06175131249145017 C 0.09352812003860468 0.061757752888466445 0.09487393608695181 0.061799763180528156 0.09474262271207964 0.061828597255645525 C 0.09487393608695181 0.061799763180528156 0.09501437524403829 0.06126643407700073 0.0949934712031184 0.06140530359004177 C 0.09501437524403829 0.06126643407700073 0.0949934712031184 0.060058568058245644 0.0949934712031184 0.06016216309915304" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0949934712031184 0.06016216309915304 C 0.09425607040341116 0.06013272139203364 0.08513944388394654 0.05977556811426916 0.0861446616066317 0.059808862613720266 C 0.08513944388394654 0.05977556811426916 0.08259866460821515 0.059857299463496 0.08293085853089649 0.05976262910573973 C 0.08259866460821515 0.059857299463496 0.08209395753475213 0.06104343005688356 0.08215833453445553 0.060944906906795576" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08215833453445553 0.060944906906795576 C 0.08202953216516713 0.06080536873300915 0.08053214801780807 0.059038096175570806 0.08061270610299467 0.05927044882135851 C 0.08053214801780807 0.059038096175570806 0.0812398817963181 0.05806386068534177 0.0811916375122163 0.05815667515734306" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0811916375122163 0.05815667515734306 C 0.0811433932281145 0.05806386068534177 0.08069326418818128 0.056808699875853116 0.08061270610299467 0.05704290149332763 C 0.08069326418818128 0.056808699875853116 0.08228713690374394 0.05520486860217571 0.08215833453445553 0.05534625574764893" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08215833453445553 0.05534625574764893 C 0.08222271153415894 0.055446627869423726 0.08326305245357786 0.05669295347018001 0.08293085853089652 0.05655072120894643 C 0.08326305245357786 0.05669295347018001 0.08714987932931685 0.05712434472903008 0.0861446616066317 0.057053042882451895 C 0.08714987932931685 0.05712434472903008 0.09573087200282562 0.05743578507500405 0.0949934712031184 0.05740634336788465" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0949934712031184 0.05740634336788465 C 0.0949934712031184 0.05717903279928427 0.0949725671621985 0.05430373779557793 0.0949934712031184 0.05467861654468007 C 0.0949725671621985 0.05430373779557793 0.09461130933720747 0.052740431459273145 0.09474262271207964 0.05290779837865895 C 0.09461130933720747 0.052740431459273145 0.09330730137070013 0.05265041477316638 0.0934177107046524 0.05267021351205042" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0934177107046524 0.05267021351205042 C 0.09357323656467295 0.05260132433021813 0.09554164280412095 0.051800457316900674 0.09528402102489898 0.051843543330062865 C 0.09554164280412095 0.051800457316900674 0.09661126797451743 0.05217898452277424 0.096509172055316 0.052153181354104135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.096509172055316 0.052153181354104135 C 0.09661126797451743 0.05209211184924468 0.09799194486495495 0.05142816697276346 0.09773432308573299 0.05142034729579062 C 0.09799194486495495 0.05142816697276346 0.09975615926600008 0.05231590665961047 0.09960063340597954 0.05224701747777818" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09960063340597954 0.05224701747777818 C 0.09949022407202726 0.052266816216662224 0.09814440802368017 0.052687235599961864 0.09827572139855233 0.052484602344386705 C 0.09814440802368017 0.052687235599961864 0.09800396886659374 0.05508876162997157 0.09802487290751363 0.05467861654468007 C 0.09800396886659374 0.05508876162997157 0.09802487290751363 0.057633653936485035 0.09802487290751363 0.05740634336788465" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09802487290751363 0.05740634336788465 C 0.09956853072201904 0.05738403283199296 0.11906382988725833 0.057045218357224856 0.1165487666815785 0.05713861693718441 C 0.11906382988725833 0.057045218357224856 0.12931167432501547 0.056114100242527346 0.12820563137567165 0.05628556040837 C 0.12931167432501547 0.056114100242527346 0.12995591963187375 0.054980722825297715 0.12982128207370436 0.05508109494707251" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.12982128207370436 0.05508109494707251 C 0.12995008444299277 0.05522248209254573 0.13144746859035178 0.05701194231022574 0.1313669105051652 0.056777740692751225 C 0.13144746859035178 0.05701194231022574 0.13073973481184178 0.05798432882876792 0.13078797909594359 0.057891514356766635" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.09500000000000001,-0.09499999999999999)"><path d="M 0.1407620373920677 0.09601092147752056 C 0.1408081864414981 0.09605732871352121 0.1413158259852325 0.09668490911826554 0.1413158259852325 0.09656780830952828 C 0.1413158259852325 0.09668490911826554 0.1407158883426373 0.09748682475510423 0.1407620373920677 0.09741613118236762" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1407620373920677 0.09741613118236762 C 0.1406219388549184 0.09735323131938875 0.13796935101795238 0.09664282084635345 0.13908085494627614 0.09666133282662122 C 0.13796935101795238 0.09664282084635345 0.1248337735459147 0.09726068583775717 0.12742399025218265 0.09719398741915439 C 0.1248337735459147 0.09726068583775717 0.10637944315596715 0.09748402438574631 0.10799825447106065 0.09746171384985462" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10799825447106065 0.09746171384985462 C 0.10799825447106065 0.09762107014322777 0.10800672060763321 0.09956089553159746 0.10799825447106065 0.0993739893703324 C 0.10800672060763321 0.09956089553159746 0.10817750409578064 0.0997882940219747 0.10809984810993133 0.09970458778503537 C 0.10817750409578064 0.0997882940219747 0.10899931615052917 0.10043462058265178 0.10893012630125241 0.10037846421360436" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10893012630125241 0.10037846421360436 C 0.10885236337124214 0.10035727833482593 0.10786816025151812 0.10008154396331627 0.1079969711411291 0.10012423366826323 C 0.10786816025151812 0.10008154396331627 0.10733334766631991 0.09984468392807223 0.10738439562592061 0.09986618775424078" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10738439562592061 0.09986618775424078 C 0.10733334766631991 0.09988304914873099 0.10664300922110118 0.10008956446191786 0.10677182011071215 0.10006852448812326 C 0.10664300922110118 0.10008956446191786 0.10576090202057857 0.10012284601908032 0.10583866495058884 0.10011866743977593" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10583866495058884 0.10011866743977593 C 0.1059078547998656 0.10008416080188089 0.10674659912775923 0.09964253127924841 0.10666894314190992 0.09970458778503537 C 0.10674659912775923 0.09964253127924841 0.10677900291735312 0.09918708320906734 0.10677053678078056 0.0993739893703324 C 0.10677900291735312 0.09918708320906734 0.10677053678078056 0.09730235755648148 0.10677053678078056 0.09746171384985462" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10677053678078056 0.09746171384985462 C 0.10595798248048521 0.09743227214273523 0.09593951395396305 0.09706381167920042 0.09701988517723634 0.09710841336442183 C 0.09593951395396305 0.09706381167920042 0.09346842719983992 0.09697423351207451 0.09380608210150114 0.09692649362719766 C 0.09346842719983992 0.09697423351207451 0.09289818837861831 0.09774419184592292 0.0929680263573016 0.09768129198294406" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0929680263573016 0.09768129198294406 C 0.09292187730787121 0.09761059841020744 0.0924142377641369 0.09671586830136747 0.0924142377641369 0.09683296911010472 C 0.0924142377641369 0.09671586830136747 0.09301417540673199 0.09622967504209635 0.0929680263573016 0.096276082278097" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0929680263573016 0.096276082278097 C 0.09292187730787121 0.09622967504209635 0.0924142377641369 0.09560209463735203 0.0924142377641369 0.09571919544608928 C 0.0924142377641369 0.09560209463735203 0.09301417540673199 0.09480017900051332 0.0929680263573016 0.09487087257324994" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0929680263573016 0.09487087257324994 C 0.09303786433598489 0.0949337724362288 0.09414373700316236 0.09571912374566369 0.09380608210150114 0.09562567092899635 C 0.09414373700316236 0.09571912374566369 0.09810025640050962 0.09605230103406596 0.09701988517723634 0.09599230637325809 C 0.09810025640050962 0.09605230103406596 0.10758309108107592 0.09637504856581028 0.10677053678078056 0.09634560685869088" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10677053678078056 0.09634560685869088 C 0.10677053678078056 0.0960499749259195 0.10676207064420801 0.09235482355216117 0.10677053678078056 0.09279802366543431 C 0.10676207064420801 0.09235482355216117 0.1065912871560606 0.09085876398955571 0.10666894314190992 0.09102720549941316 C 0.1065912871560606 0.09085876398955571 0.10576947510131209 0.0907558522177891 0.10583866495058884 0.0907767255471448" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10583866495058884 0.0907767255471448 C 0.10591642788059911 0.09075059038568499 0.10690063100032313 0.09046310360962696 0.10677182011071215 0.09046310360962696 C 0.10690063100032313 0.09046310360962696 0.10743544358552132 0.09080286070860462 0.10738439562592061 0.0907767255471448" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10738439562592061 0.0907767255471448 C 0.10743544358552132 0.09073233134896967 0.1081257820307401 0.09019549330590369 0.1079969711411291 0.09024399516904316 C 0.1081257820307401 0.09019549330590369 0.10900788923126269 0.09019059552450691 0.10893012630125241 0.09019470318947123" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10893012630125241 0.09019470318947123 C 0.10886093645197566 0.09026407838196639 0.10802219212408201 0.09124414887241009 0.10809984810993133 0.09102720549941316 C 0.10802219212408201 0.09124414887241009 0.1079897883344881 0.09324122377870746 0.10799825447106065 0.09279802366543431 C 0.1079897883344881 0.09324122377870746 0.10799825447106065 0.09664123879146226 0.10799825447106065 0.09634560685869088" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10799825447106065 0.09634560685869088 C 0.10961706578615416 0.09632329632279919 0.13001420695845062 0.0959957890338014 0.12742399025218265 0.09607788042799065 C 0.13001420695845062 0.0959957890338014 0.14019235887460005 0.09523782940714348 0.13908085494627628 0.09536051012841991 C 0.14019235887460005 0.09523782940714348 0.14090213592921697 0.09454281190969463 0.1407620373920677 0.0946057117726735" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1407620373920677 0.0946057117726735 C 0.1408081864414981 0.09467640534541011 0.1413158259852325 0.0955711354542501 0.1413158259852325 0.09545403464551284 C 0.1413158259852325 0.0955711354542501 0.1407158883426373 0.09605732871352121 0.1407620373920677 0.09601092147752056" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="筋肉">
<g id="文字1">
<g id="文字a">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.006645971238233944 0.011808586757053053 C 0.006645705924536817 0.011860400207506444 0.00664250983453393 0.012524622291504528 0.006642787473868415 0.012430348162493755 C 0.00664250983453393 0.012524622291504528 0.006642614914945413 0.013024797662297088 0.006642639566220128 0.012939876305182327 C 0.006642614914945413 0.013024797662297088 0.006642479332934474 0.013491865126428276 0.006642491658571832 0.013449404447870895" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.006642491658571832 0.013449404447870895 C 0.006471880696143372 0.013449422166961418 0.0042539381845733935 0.013449652515138218 0.004595160109430313 0.013449617076957172 C 0.0042539381845733935 0.013449652515138218 0.002206606635431883 0.013449865144224497 0.0025478285602888013 0.013449829706043451 C 0.002206606635431883 0.013449865144224497 0.00032988604871883587 0.013450060054220251 0.0005004970111472947 0.013450042335129728" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0005004970111472947 0.013450042335129728 C 0.0005005093367846523 0.013407581656572347 0.0005006695700703003 0.012855592835326396 0.0005006449187955853 0.012940514192441157 C 0.0005006695700703003 0.012855592835326396 0.0005008174777185905 0.012345390433883607 0.0005007928264438754 0.01243098604975259 C 0.0005008174777185905 0.012345390433883607 0.0005009530597295235 0.01187023186470175 0.0005009407340921659 0.011913366802013353" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0005009407340921659 0.011913366802013353 C 0.0006715834935827556 0.011921116382701746 0.0028900029610846828 0.01201344381547967 0.0025486538479792425 0.012006361770274072 C 0.0028900029610846828 0.01201344381547967 0.004938573207212008 0.011981870093378783 0.00459713009135745 0.011998351344480533 C 0.004938573207212008 0.011981870093378783 0.006816708000473649 0.011792773041434093 0.006645971238233942 0.01180858675705305" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.22428602151343444,0.15221813001966342) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010482891581657763 0.008057536084316622 C 0.01024743976767509 0.008049445980314632 0.007254441066810571 0.008019513825697513 0.007657469813865699 0.007960454836292744 C 0.007254441066810571 0.008019513825697513 0.005478969683923778 0.00883339305058061 0.005646546616996233 0.00876624395717385" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005646546616996233 0.00876624395717385 C 0.005809117053237526 0.008722494935186594 0.007594221714911678 0.008126219516772854 0.007597391851891745 0.008241255693326765 C 0.007594221714911678 0.008126219516772854 0.005442764400014077 0.007314522683960258 0.005608504973235436 0.007385809838526912" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608504973235436 0.007385809838526912 C 0.005902311266080142 0.0074177545053340805 0.009540379371407096 0.00782512302736207 0.009134180487371902 0.007769145840212929 C 0.009540379371407096 0.00782512302736207 0.010595284172848251 0.008081568604658597 0.010482891581657763 0.008057536084316622" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22428602151343444,0.15221813001966342) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04588652059364108 0.04544181279498606 C 0.04570940427982982 0.04545284018641105 0.044390124722828266 0.04536066173673513 0.044431361600634545 0.045373381023213866 C 0.044390124722828266 0.04536066173673513 0.04548832685609967 0.045264867229537216 0.04539167805996571 0.04528918135724117 C 0.04548832685609967 0.045264867229537216 0.04566205580929747 0.045061736505163506 0.045591147154242125 0.04508161149076638 C 0.04566205580929747 0.045061736505163506 0.04632304943830711 0.04506396826628563 0.04624258192062982 0.04505068153000666 C 0.04632304943830711 0.04506396826628563 0.04652708558912059 0.045273646598195605 0.04655675736636965 0.04524105232611399 C 0.04652708558912059 0.045273646598195605 0.04570940427982982 0.04545284018641105 0.04588652059364108 0.04544181279498606 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.224285799651962,0.15298242223369626) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071166 0.01601981907883221 C 0.007271247809433808 0.01606227975738959 0.007271087576148157 0.016614268578635537 0.007271112227422872 0.016529347221520777 C 0.007271087576148157 0.016614268578635537 0.007270939668499868 0.017123796721324108 0.007270964319774583 0.017038875364209345 C 0.007270939668499868 0.017123796721324108 0.00727080408648893 0.0175908641854553 0.007270816412126288 0.01754840350689792" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01754840350689792 C 0.007100205449697829 0.01754842122598844 0.004882262938127864 0.017548651574165238 0.005223484862984781 0.017548616135984192 C 0.004882262938127864 0.017548651574165238 0.0028349313889863546 0.01754886420325152 0.0031761533138432727 0.017548828765070475 C 0.0028349313889863546 0.01754886420325152 0.0009582108022733046 0.01754905911324728 0.0011288217647017636 0.017549041394156754" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017636 0.017549041394156754 C 0.0011288340903391212 0.017506580715599372 0.0011289943236247706 0.016954591894353416 0.0011289696723500553 0.01703951325146818 C 0.0011289943236247706 0.016954591894353416 0.001129142231273062 0.01644506375166485 0.0011291175799983467 0.01652998510877961 C 0.001129142231273062 0.01644506375166485 0.0011292778132839956 0.01597799628753366 0.001129265487646638 0.016020456966091043" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020456966091043 C 0.0012998764500750971 0.016020439247000518 0.0035178189616450655 0.016020208898823718 0.0031765970367881474 0.016020244337004764 C 0.0035178189616450655 0.016020208898823718 0.005565150510786574 0.016019996269737442 0.0052239285859296564 0.01602003170791849 C 0.005565150510786574 0.016019996269737442 0.007441871097499623 0.016019801359741685 0.007271260135071164 0.01601981907883221" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22428557779048955,0.1537467144477291) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010484091105724097 0.007434520264183998 C 0.010304019484905922 0.007461364525972787 0.008157794855680675 0.007862168668183877 0.008323231655906 0.007756651405649467 C 0.008157794855680675 0.007862168668183877 0.008513484323613046 0.008779400415342543 0.008498849503020196 0.008700727414596921" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008498849503020196 0.008700727414596921 C 0.008625255920315022 0.008669232716194901 0.009775967855991054 0.00821380926005977 0.010015726510558102 0.008322791033772689 C 0.009775967855991054 0.00821380926005977 0.005255580576353755 0.007315459054730996 0.005621745648215628 0.007392946130041895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621745648215628 0.007392946130041895 C 0.005780837689753589 0.007406881513257704 0.007936045601463536 0.00756363523981012 0.0075308501466711635 0.007560170728631611 C 0.007936045601463536 0.00756363523981012 0.010730194518978508 0.0074240493921466965 0.010484091105724097 0.007434520264183998" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22428557779048955,0.1537467144477291) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.042566108649183095 0.044920605294208785 C 0.042598793917746486 0.04488292288232168 0.04326231242580545 0.044792019306597805 0.04317047867385993 0.044790326857379666 C 0.04326231242580545 0.044792019306597805 0.043692980376703404 0.0449736227567939 0.04366811367252935 0.04494091468482646 C 0.043692980376703404 0.0449736227567939 0.04350769894799715 0.04522466162518615 0.04346887912394856 0.045182823720988974 C 0.04350769894799715 0.04522466162518615 0.044076399588374976 0.04544794387511227 0.04413395156111242 0.04544296953519261 C 0.044076399588374976 0.04544794387511227 0.04264760187510517 0.0451989854466096 0.04277825545109928 0.04524251580002492 C 0.04264760187510517 0.0451989854466096 0.042598793917746486 0.04488292288232168 0.042566108649183095 0.044920605294208785 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.2242853559290171,0.15451100666176196) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071166 0.01601981907883221 C 0.007271247809433808 0.01606227975738959 0.007271087576148157 0.016614268578635537 0.007271112227422872 0.016529347221520777 C 0.007271087576148157 0.016614268578635537 0.007270939668499868 0.017123796721324108 0.007270964319774583 0.017038875364209345 C 0.007270939668499868 0.017123796721324108 0.00727080408648893 0.0175908641854553 0.007270816412126288 0.01754840350689792" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01754840350689792 C 0.007100205449697829 0.01754842122598844 0.004882262938127864 0.017548651574165238 0.005223484862984781 0.017548616135984192 C 0.004882262938127864 0.017548651574165238 0.0028349313889863546 0.01754886420325152 0.0031761533138432727 0.017548828765070475 C 0.0028349313889863546 0.01754886420325152 0.0009582108022733046 0.01754905911324728 0.0011288217647017636 0.017549041394156754" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017636 0.017549041394156754 C 0.0011288340903391212 0.017506580715599372 0.0011289943236247706 0.016954591894353416 0.0011289696723500553 0.01703951325146818 C 0.0011289943236247706 0.016954591894353416 0.001129142231273062 0.01644506375166485 0.0011291175799983467 0.01652998510877961 C 0.001129142231273062 0.01644506375166485 0.0011292778132839956 0.01597799628753366 0.001129265487646638 0.016020456966091043" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020456966091043 C 0.0012998764500750971 0.016020439247000518 0.0035178189616450655 0.016020208898823718 0.0031765970367881474 0.016020244337004764 C 0.0035178189616450655 0.016020208898823718 0.005565150510786574 0.016019996269737442 0.0052239285859296564 0.01602003170791849 C 0.005565150510786574 0.016019996269737442 0.007441871097499623 0.016019801359741685 0.007271260135071164 0.01601981907883221" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22428513406754466,0.1552752988757948) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010463646750646115 0.007601802618492911 C 0.010185879485997121 0.007611733859778945 0.00680637453969618 0.00778148776002894 0.007130439574858188 0.007720977513925323 C 0.00680637453969618 0.00778148776002894 0.006723720891531023 0.008411698589167054 0.00657486632870202 0.008327925571736316 C 0.006723720891531023 0.008411698589167054 0.009111846662148246 0.008759447735707322 0.008916694328806228 0.008726253723094168" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008916694328806228 0.008726253723094168 C 0.008657969359659129 0.008712202943443647 0.0055730523303205255 0.008463013081065146 0.005811994699041041 0.008557644367287917 C 0.0055730523303205255 0.008463013081065146 0.006069168504586618 0.007510097781848676 0.006049385904160035 0.007590678288420926" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006049385904160035 0.007590678288420926 C 0.006201982899883906 0.007576604822325741 0.008248404923386991 0.007422723722784702 0.007880549852846485 0.007421796695278703 C 0.008248404923386991 0.007422723722784702 0.01067890482546275 0.0076168031120940945 0.010463646750646115 0.007601802618492911" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22428513406754466,0.1552752988757948) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04618876617258433 0.04502453889532431 C 0.04601165004764077 0.04503491565502411 0.04469236890689728 0.044948193049534915 0.04473360600298606 0.04496016037305099 C 0.04469236890689728 0.044948193049534915 0.045790569398697877 0.0448580532571944 0.04569392101951904 0.04488093101313135 C 0.045790569398697877 0.0448580532571944 0.04596429486734334 0.0446669264926568 0.04589338655313213 0.04468562730180756 C 0.04596429486734334 0.0446669264926568 0.04662528853581827 0.04466902229955945 0.04654482079005355 0.0446565213033223 C 0.04662528853581827 0.04466902229955945 0.04682932828418633 0.04486630738932019 0.04685899950230876 0.044835639256653355 C 0.04682932828418633 0.04486630738932019 0.04601165004764077 0.04503491565502411 0.04618876617258433 0.04502453889532431 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.22428491220607222,0.15603959108982765) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071166 0.01601981907883221 C 0.007271247809433808 0.01606227975738959 0.007271087576148157 0.016614268578635537 0.007271112227422872 0.016529347221520777 C 0.007271087576148157 0.016614268578635537 0.007270939668499868 0.017123796721324108 0.007270964319774583 0.017038875364209345 C 0.007270939668499868 0.017123796721324108 0.00727080408648893 0.0175908641854553 0.007270816412126288 0.01754840350689792" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01754840350689792 C 0.007100205449697829 0.01754842122598844 0.004882262938127864 0.017548651574165238 0.005223484862984781 0.017548616135984192 C 0.004882262938127864 0.017548651574165238 0.0028349313889863546 0.01754886420325152 0.0031761533138432727 0.017548828765070475 C 0.0028349313889863546 0.01754886420325152 0.0009582108022733046 0.01754905911324728 0.0011288217647017636 0.017549041394156754" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017636 0.017549041394156754 C 0.0011288340903391212 0.017506580715599372 0.0011289943236247706 0.016954591894353416 0.0011289696723500553 0.01703951325146818 C 0.0011289943236247706 0.016954591894353416 0.001129142231273062 0.01644506375166485 0.0011291175799983467 0.01652998510877961 C 0.001129142231273062 0.01644506375166485 0.0011292778132839956 0.01597799628753366 0.001129265487646638 0.016020456966091043" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020456966091043 C 0.0012998764500750971 0.016020439247000518 0.0035178189616450655 0.016020208898823718 0.0031765970367881474 0.016020244337004764 C 0.0035178189616450655 0.016020208898823718 0.005565150510786574 0.016019996269737442 0.0052239285859296564 0.01602003170791849 C 0.005565150510786574 0.016019996269737442 0.007441871097499623 0.016019801359741685 0.007271260135071164 0.01601981907883221" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22428469034459977,0.1568038833038605) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.01048408600011787 0.007452108604551178 C 0.01043481840360538 0.007531178403438599 0.009727438882702152 0.008503566426256486 0.009892874841967998 0.008400946191200223 C 0.009727438882702152 0.008503566426256486 0.008382686126174353 0.008707101861395174 0.00849885448892771 0.008683551425226331" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00849885448892771 0.008683551425226331 C 0.008573414467562556 0.00860374612093302 0.009153814709067678 0.007619899318370069 0.00939357423254587 0.007725887773706591 C 0.009153814709067678 0.007619899318370069 0.005307420705076369 0.007385506810144861 0.005621740207189407 0.007411689961188071" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621740207189407 0.007411689961188071 C 0.005749972075774266 0.007436338083815331 0.0075657181129517555 0.007710835652995455 0.007160522630207717 0.007707467432715196 C 0.0075657181129517555 0.007710835652995455 0.01076104961427705 0.007430828702204175 0.01048408600011787 0.007452108604551176" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22428469034459977,0.1568038833038605) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.042631593958355155 0.04498070027845436 C 0.04264105578530756 0.044942556362657524 0.04323582275217862 0.04480939364747943 0.043144977126548294 0.044814246531750465 C 0.04323582275217862 0.04480939364747943 0.04376560698432509 0.04495182777571794 0.04372174146591902 0.0449224656672019 C 0.04376560698432509 0.04495182777571794 0.043734332489111925 0.045203656343415305 0.04367136334742113 0.04516659183394295 C 0.043734332489111925 0.045203656343415305 0.04442404382085008 0.04537602158815098 0.044477371166208556 0.045367239780870185 C 0.04442404382085008 0.04537602158815098 0.04287762043579831 0.0452397618961112 0.04303143520311943 0.04527197352131252 C 0.04287762043579831 0.0452397618961112 0.04264105578530756 0.044942556362657524 0.042631593958355155 0.04498070027845436 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.22428446848312733,0.15756817551789334) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071166 0.01601981907883221 C 0.007271247809433808 0.01606227975738959 0.007271087576148157 0.016614268578635537 0.007271112227422872 0.016529347221520777 C 0.007271087576148157 0.016614268578635537 0.007266586888833333 0.017165090263759446 0.007270964319774583 0.017038875364209345 C 0.007266586888833333 0.017165090263759446 0.007214217950823973 0.01812768023711471 0.007218583056127866 0.01804392601612199" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007218583056127866 0.01804392601612199 C 0.0070555230194349495 0.01802484235933809 0.004924802688249698 0.017777719661473058 0.005261862615812863 0.01781492213471517 C 0.004924802688249698 0.017777719661473058 0.0028294438544439653 0.017566648931794125 0.0031738639253698904 0.017597496337216648 C 0.0028294438544439653 0.017566648931794125 0.0009584015846460859 0.01743202468068058 0.0011288217647017632 0.01744475326964489" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011288217647017632 0.01744475326964489 C 0.001128834090339121 0.017410983268130165 0.0011289943236247706 0.016963282571396072 0.0011289696723500553 0.01703951325146818 C 0.0011289943236247706 0.016963282571396072 0.001129142231273062 0.01644506375166485 0.0011291175799983467 0.01652998510877961 C 0.001129142231273062 0.01644506375166485 0.0011292778132839956 0.01597799628753366 0.001129265487646638 0.016020456966091043" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020456966091043 C 0.0012998764500750971 0.016020439247000518 0.0035178189616450655 0.016020208898823718 0.0031765970367881474 0.016020244337004764 C 0.0035178189616450655 0.016020208898823718 0.005565150510786574 0.016019996269737442 0.0052239285859296564 0.01602003170791849 C 0.005565150510786574 0.016019996269737442 0.007441871097499623 0.016019801359741685 0.007271260135071164 0.01601981907883221" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2242842466216549,0.1583324677319262) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010446900831804417 0.007509933799024918 C 0.010216635051282603 0.007548945264783337 0.007470362722433094 0.008072486785597719 0.007683711465542647 0.00797807138812595 C 0.007470362722433094 0.008072486785597719 0.007903632951902032 0.008698322500399513 0.007886715914489771 0.008642918568686162" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007886715914489771 0.008642918568686162 C 0.007925399788087883 0.008585181290186598 0.008161067997582256 0.007857329083130683 0.0083509223976671 0.007950071226691387 C 0.008161067997582256 0.007857329083130683 0.005379924839788675 0.007495007980896566 0.005608463113471631 0.007530012845957706" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608463113471631 0.007530012845957706 C 0.005816421845342579 0.0075343989413518666 0.008507171039117408 0.007580972736776568 0.00810396789592301 0.007582645990687633 C 0.008507171039117408 0.007580972736776568 0.010642145243127867 0.007503874449719692 0.010446900831804417 0.007509933799024918" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2242842466216549,0.1583324677319262) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04704672705170542 0.044730334917518565 C 0.04707112459796909 0.044801015382826666 0.0466705645772948 0.04539602919717187 0.046715944319877974 0.04538573697110422 C 0.0466705645772948 0.04539602919717187 0.0464277441615052 0.04480396604739626 0.04650217014070732 0.04485384163033032 C 0.0464277441615052 0.04480396604739626 0.04576142149031948 0.04476692162181871 0.04582283256945245 0.04478722997589547 C 0.04576142149031948 0.04476692162181871 0.04581526562405015 0.044589336499035126 0.045765237191111696 0.04461014138140917 C 0.04581526562405015 0.044589336499035126 0.04652996458643008 0.044547587515416105 0.046423173764713936 0.044537571387406986 C 0.04652996458643008 0.044547587515416105 0.04707112459796909 0.044801015382826666 0.04704672705170542 0.044730334917518565 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2242842466216549,0.1583324677319262) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.043206282238210394 0.04453790548312598 C 0.04331307888140054 0.04452786717262887 0.043914193077051855 0.044631133311317746 0.043864176719728316 0.04461033881926488 C 0.043914193077051855 0.044631133311317746 0.04374505565289367 0.044807760498965364 0.04380647852609287 0.0447874393877604 C 0.04374505565289367 0.044807760498965364 0.04305264730152279 0.044904083198938606 0.04312710224133791 0.04485419215372449 C 0.04305264730152279 0.044904083198938606 0.0428676454783205 0.04537584912962193 0.042913019248311444 0.04538613193032979 C 0.0428676454783205 0.04537584912962193 0.042607055583938125 0.0446601130079632 0.04258261700144655 0.04473079854523018 C 0.042607055583938125 0.0446601130079632 0.04331307888140054 0.04452786717262887 0.043206282238210394 0.04453790548312598 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="文字2">
<g id="文字a">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.01991482794617021 0.010049822177258009 C 0.01991482794617021 0.010123481958221077 0.019914827946170215 0.011072224564605819 0.019914827946170215 0.010933739548814827 C 0.019914827946170215 0.011072224564605819 0.019914827946170218 0.011841292836405753 0.019914827946170218 0.011711642366749908 C 0.019914827946170218 0.011841292836405753 0.019914827946170218 0.01255437041951291 0.019914827946170218 0.012489545184684986" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.019914827946170218 0.012489545184684986 C 0.01974421750339812 0.012489545184684986 0.017526281747360827 0.012489545184684986 0.017867502632905027 0.012489545184684986 C 0.017526281747360827 0.012489545184684986 0.015478956434095623 0.012489545184684984 0.015820177319639823 0.012489545184684984 C 0.015478956434095623 0.012489545184684984 0.013602241563602537 0.012489545184684979 0.013772852006374636 0.012489545184684979" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013772852006374636 0.012489545184684979 C 0.013772852006374636 0.012455038527801405 0.013772852006374636 0.012025014382974758 0.013772852006374636 0.0120754653020821 C 0.013772852006374636 0.012025014382974758 0.013772852006374636 0.011819406935668481 0.013772852006374636 0.01188413415539689 C 0.013772852006374636 0.011819406935668481 0.013772852006374636 0.011249955707836533 0.013772852006374636 0.011298738665341175" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.013772852006374636 0.011298738665341175 C 0.013943462449146734 0.011284745464259765 0.016161398205184023 0.011074662679545804 0.015820177319639823 0.011130820252364258 C 0.016161398205184023 0.011074662679545804 0.01820872351844922 0.010534764618594223 0.01786750263290502 0.010624847791519744 C 0.01820872351844922 0.010534764618594223 0.02008543838894231 0.010001903376069527 0.01991482794617021 0.010049822177258005" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.23755814529337485,0.15085538979997834) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010482879170498779 0.008048572347022664 C 0.010247425718152795 0.00803618375331853 0.00725442735451138 0.007990011399391947 0.007657437742346975 0.00789990922257304 C 0.00725442735451138 0.007990011399391947 0.005479197580982027 0.00923228923937258 0.005646754516471638 0.009129798468849539" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005646754516471638 0.009129798468849539 C 0.005809311762864005 0.009063032079462498 0.007594237952748864 0.008183186388065563 0.007597441473180033 0.008328601796205056 C 0.007594237952748864 0.008183186388065563 0.005442551504474079 0.007306164552423153 0.005608312271297614 0.007384813571175607" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608312271297614 0.007384813571175607 C 0.005902126951092343 0.00740341823914702 0.009540302337101118 0.007663382818153148 0.009134088428834355 0.00760806958683256 C 0.009540302337101118 0.007663382818153148 0.010595278398970814 0.00808528091037184 0.010482879170498779 0.008048572347022664" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.15085538979997834) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04588669941638254 0.045772318311800016 C 0.04570958683776324 0.045789125881596816 0.04439028450151461 0.045648186732122766 0.04443152494715127 0.04566761196069714 C 0.04439028450151461 0.045648186732122766 0.04548845551544158 0.04550211021761054 0.04539181406874265 0.04553921556890756 C 0.04548845551544158 0.04550211021761054 0.04566212497938956 0.04519201560498525 0.045591222307538384 0.04522234774513283 C 0.04566212497938956 0.04519201560498525 0.046323117262877175 0.04519552766863678 0.04624264613095679 0.04517522988713655 C 0.046323117262877175 0.04519552766863678 0.04652721366436844 0.04551567849185752 0.04655687589058296 0.045465921123135564 C 0.04652721366436844 0.04551567849185752 0.04570958683776324 0.045789125881596816 0.04588669941638254 0.045772318311800016 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.23755814529337485,0.15202224402688094) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01608496325728955 0.007271250781256685 0.01692769131005255 0.007271250781256685 0.016798040840396704 C 0.007271250781256685 0.01692769131005255 0.007271250781256689 0.01770559412798763 0.007271250781256689 0.01757594365833178 C 0.007271250781256689 0.01770559412798763 0.007271250781256685 0.018418671711094778 0.007271250781256685 0.018353846476266856" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018353846476266856 C 0.007100640338484586 0.018353846476266856 0.004882704582447298 0.018353846476266856 0.005223925467991496 0.018353846476266856 C 0.004882704582447298 0.018353846476266856 0.0028353792691821096 0.018353846476266863 0.0031766001547263076 0.018353846476266863 C 0.0028353792691821096 0.018353846476266863 0.0009586643986890191 0.018353846476266856 0.0011292748414611182 0.018353846476266856" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611182 0.018353846476266856 C 0.0011292748414611182 0.018289021241438934 0.001129274841461119 0.017446293188675934 0.001129274841461119 0.01757594365833178 C 0.001129274841461119 0.017446293188675934 0.0011292748414611182 0.016668390370740856 0.0011292748414611182 0.016798040840396704 C 0.0011292748414611182 0.016668390370740856 0.0011292748414611182 0.015955312787633708 0.0011292748414611182 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611182 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535695 0.01602013802246163 0.005223925467991496 0.01602013802246163 C 0.005565146353535695 0.01602013802246163 0.007441861224028786 0.01602013802246163 0.007271250781256687 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.23755814529337485,0.15318909825378355) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010483897840236636 0.007097406671966864 C 0.010303834554886504 0.007138361582423676 0.008157732744554082 0.0077499338599389496 0.008323138416035056 0.007588865597448612 C 0.008157732744554082 0.0077499338599389496 0.0085136873963341 0.009150339173884447 0.008499029782464943 0.009030225821850922" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008499029782464943 0.009030225821850922 C 0.008625426676189029 0.008982162523876585 0.009776002940106028 0.008287044424618202 0.010015792507153964 0.008453466246158881 C 0.009776002940106028 0.008287044424618202 0.00525536851711771 0.006914805439796421 0.005621554977889729 0.007033163963362764" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621554977889729 0.007033163963362764 C 0.005780650584853166 0.007054464508715506 0.007935897499979883 0.007294124066646009 0.007530702261450974 0.007288770507595667 C 0.007935897499979883 0.007294124066646009 0.010729997471802108 0.007081459685664464 0.010483897840236636 0.007097406671966864" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.15318909825378355) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04256614618779907 0.044976057969568405 C 0.04259882041924117 0.04491853295345025 0.04326231053858726 0.04477985456065764 0.043170476572296786 0.044777256116662265 C 0.04326231053858726 0.04477985456065764 0.04369302990705538 0.045057179053493636 0.04366815378328477 0.04500723929751291 C 0.04369302990705538 0.045057179053493636 0.043507821909342964 0.04544041378323133 0.04346899005754405 0.04537653318843099 C 0.043507821909342964 0.04544041378323133 0.044076585649658974 0.04578139169525445 0.044134136004871684 0.045773806435117026 C 0.044076585649658974 0.04578139169525445 0.04264771997690214 0.045401077271284375 0.042778385794991526 0.04546755631008009 C 0.04264771997690214 0.045401077271284375 0.04259882041924117 0.04491853295345025 0.04256614618779907 0.044976057969568405 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.23755814529337485,0.1544237006533638) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01608496325728955 0.007271250781256685 0.01692769131005255 0.007271250781256685 0.016798040840396704 C 0.007271250781256685 0.01692769131005255 0.007271250781256689 0.01770559412798763 0.007271250781256689 0.01757594365833178 C 0.007271250781256689 0.01770559412798763 0.007271250781256685 0.018418671711094778 0.007271250781256685 0.018353846476266856" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018353846476266856 C 0.007100640338484586 0.018353846476266856 0.004882704582447298 0.018353846476266856 0.005223925467991496 0.018353846476266856 C 0.004882704582447298 0.018353846476266856 0.0028353792691821096 0.018353846476266863 0.0031766001547263076 0.018353846476266863 C 0.0028353792691821096 0.018353846476266863 0.0009586643986890191 0.018353846476266856 0.0011292748414611182 0.018353846476266856" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611182 0.018353846476266856 C 0.0011292748414611182 0.018289021241438934 0.001129274841461119 0.017446293188675934 0.001129274841461119 0.01757594365833178 C 0.001129274841461119 0.017446293188675934 0.0011292748414611182 0.016668390370740856 0.0011292748414611182 0.016798040840396704 C 0.0011292748414611182 0.016668390370740856 0.0011292748414611182 0.015955312787633708 0.0011292748414611182 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611182 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535695 0.01602013802246163 0.005223925467991496 0.01602013802246163 C 0.005565146353535695 0.01602013802246163 0.007441861224028786 0.01602013802246163 0.007271250781256687 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.23755814529337485,0.15552450652780023) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010463502105985425 0.007352795444677698 C 0.010185738561868826 0.00736791354952077 0.006806293083786986 0.007626543051378168 0.00713033957658624 0.007534212702794562 C 0.006806293083786986 0.007626543051378168 0.006723822624178746 0.008588680519291165 0.006574944192394377 0.008460759627680966 C 0.006723822624178746 0.008588680519291165 0.009112042138465703 0.009119972049986621 0.008916880757998678 0.009069263402116955" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008916880757998678 0.009069263402116955 C 0.008658152490392316 0.009047770881891662 0.005573172428757417 0.008666840531902835 0.005812141546722322 0.00881135315941343 C 0.005573172428757417 0.008666840531902835 0.006069010492061276 0.007212091764704518 0.006049251342419818 0.007335111871989819" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006049251342419818 0.007335111871989819 C 0.006201843792672073 0.007313649935008413 0.008248214975744022 0.0070790422592702665 0.007880360745446888 0.007077568628212944 C 0.008248214975744022 0.0070790422592702665 0.010678763886030302 0.007375731012716426 0.010463502105985425 0.007352795444677696" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.15552450652780023) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04618882295644943 0.04513530907434266 C 0.046011710377830126 0.04515112331676447 0.044692408041581505 0.045018513671024336 0.04473364848721816 0.045036790868589964 C 0.044692408041581505 0.045018513671024336 0.045790579055508464 0.04488107027851979 0.045693937608809534 0.044915982703555166 C 0.045790579055508464 0.04488107027851979 0.04596424851945647 0.04458930225750065 0.04589334584760529 0.044617841768165516 C 0.04596424851945647 0.04458930225750065 0.046625240802944085 0.04459260675819036 0.0465447696710237 0.04457350857557679 C 0.046625240802944085 0.04459260675819036 0.04682933720443533 0.044893836667758764 0.046858999430649854 0.04484701995952828 C 0.04682933720443533 0.044893836667758764 0.046011710377830126 0.04515112331676447 0.04618882295644943 0.04513530907434266 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.23755814529337485,0.15662531240223665) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01608496325728955 0.007271250781256685 0.01692769131005255 0.007271250781256685 0.016798040840396704 C 0.007271250781256685 0.01692769131005255 0.007271250781256689 0.01770559412798763 0.007271250781256689 0.01757594365833178 C 0.007271250781256689 0.01770559412798763 0.007271250781256685 0.018418671711094778 0.007271250781256685 0.018353846476266856" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018353846476266856 C 0.007100640338484586 0.018353846476266856 0.004882704582447298 0.018353846476266856 0.005223925467991496 0.018353846476266856 C 0.004882704582447298 0.018353846476266856 0.0028353792691821096 0.018353846476266863 0.0031766001547263076 0.018353846476266863 C 0.0028353792691821096 0.018353846476266863 0.0009586643986890191 0.018353846476266856 0.0011292748414611182 0.018353846476266856" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611182 0.018353846476266856 C 0.0011292748414611182 0.018289021241438934 0.001129274841461119 0.017446293188675934 0.001129274841461119 0.01757594365833178 C 0.001129274841461119 0.017446293188675934 0.0011292748414611182 0.016668390370740856 0.0011292748414611182 0.016798040840396704 C 0.0011292748414611182 0.016668390370740856 0.0011292748414611182 0.015955312787633708 0.0011292748414611182 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611182 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535695 0.01602013802246163 0.005223925467991496 0.01602013802246163 C 0.005565146353535695 0.01602013802246163 0.007441861224028786 0.01602013802246163 0.007271250781256687 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.23755814529337485,0.15779216662913925) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010483897840236634 0.007124259005308523 C 0.010434653344895106 0.007244968021592136 0.009727558224657318 0.008729412536085786 0.009892963896138291 0.008572767200711887 C 0.009727558224657318 0.008729412536085786 0.008382868606325498 0.00903993934888559 0.008499029782464943 0.009004003029795305" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008499029782464943 0.009004003029795305 C 0.008573566370149903 0.008882175118763344 0.009153679267636534 0.007380216211474028 0.00939346883468447 0.00754206809741176 C 0.009153679267636534 0.007380216211474028 0.005307228823156834 0.007021756423636753 0.005621554977889729 0.007061780398542523" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621554977889729 0.007061780398542523 C 0.005749793614688192 0.0070994313208871925 0.0075656138580001975 0.007518798017242388 0.0071604186194712885 0.007513591466678555 C 0.0075656138580001975 0.007518798017242388 0.01076085444196708 0.007091814633527687 0.010483897840236634 0.007124259005308523" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.15779216662913925) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.0426316487440205 0.045067816099622834 C 0.04264109946992014 0.04500958281755429 0.04323582598831602 0.0448063759789957 0.04314498204535788 0.04481377053229254 C 0.04323582598831602 0.0448063759789957 0.043765649968950604 0.04502391590519412 0.04372177605951814 0.04497908146006073 C 0.043765649968950604 0.04502391590519412 0.0437344486695274 0.04540838069773936 0.043671468958547455 0.045351783873893194 C 0.0437344486695274 0.04540838069773936 0.044424207955945386 0.045671642183149876 0.044477532591277485 0.04565824334621472 C 0.044424207955945386 0.045671642183149876 0.04287774968062414 0.045463367646565764 0.04303157333456222 0.04551256991711509 C 0.04287774968062414 0.045463367646565764 0.04264109946992014 0.04500958281755429 0.0426316487440205 0.045067816099622834 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.23755814529337485,0.15895902085604188) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01608496325728955 0.007271250781256685 0.01692769131005255 0.007271250781256685 0.016798040840396704 C 0.007271250781256685 0.01692769131005255 0.007271250781256689 0.017736211512497425 0.007271250781256689 0.01757594365833178 C 0.007271250781256689 0.017736211512497425 0.007271250781256685 0.018816697709722146 0.007271250781256685 0.018721255090384425" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018721255090384425 C 0.007100640338484586 0.018676655981018527 0.004882704582447298 0.01810020319692053 0.005223925467991496 0.01818606577799365 C 0.004882704582447298 0.01810020319692053 0.00283537926918211 0.017628206690771378 0.003176600154726308 0.017690904117506998 C 0.00283537926918211 0.017628206690771378 0.0009586643986890191 0.017412262702137794 0.0011292748414611182 0.017433696657166195" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611182 0.017433696657166195 C 0.0011292748414611182 0.01741636444672454 0.001129274841461119 0.01717273881380222 0.001129274841461119 0.017225710131866346 C 0.001129274841461119 0.01717273881380222 0.0011292748414611182 0.01669757649794631 0.0011292748414611182 0.016798040840396704 C 0.0011292748414611182 0.01669757649794631 0.0011292748414611182 0.015955312787633708 0.0011292748414611182 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611182 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535695 0.01602013802246163 0.005223925467991496 0.01602013802246163 C 0.005565146353535695 0.01602013802246163 0.007441861224028786 0.01602013802246163 0.007271250781256687 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.23755814529337485,0.16012587508294449) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010446729569716057 0.007212535540226271 C 0.010216475807961962 0.007272058310905051 0.007470363736110818 0.008070920100933366 0.0076836844286669054 0.00792680878837164 C 0.007470363736110818 0.008070920100933366 0.007903814328241018 0.009026459832849942 0.00788688125904301 0.008941871290966996" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00788688125904301 0.008941871290966996 C 0.007925548255849077 0.008853729216074909 0.008161004471737034 0.007742545725290186 0.008350885220715818 0.007884166392261947 C 0.008161004471737034 0.007742545725290186 0.005379764525512765 0.007188944695226198 0.005608312271297615 0.0072424232873058705" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608312271297615 0.0072424232873058705 C 0.0058162716492333785 0.0072491525665255956 0.00850702624806164 0.0073206839923526034 0.00810382480652677 0.00732317463794257 C 0.00850702624806164 0.0073206839923526034 0.010641971633315164 0.007203315615416579 0.010446729569716057 0.007212535540226271" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.16012587508294449) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04704669584588775 0.04468628030419909 C 0.04707111383589147 0.04479419290268984 0.046670727745402533 0.04570254425103801 0.04671610436347855 0.0456868381791189 C 0.046670727745402533 0.04570254425103801 0.04642773619620187 0.044798595704401284 0.0465021764289756 0.0448747531672284 C 0.04642773619620187 0.044798595704401284 0.04576140478109498 0.044741933875579204 0.04582282157019382 0.04477294862519351 C 0.04576140478109498 0.044741933875579204 0.04581519720255949 0.04447082103619315 0.04576517495978949 0.04450257617185679 C 0.04581519720255949 0.04447082103619315 0.04652988189060871 0.044407195674925105 0.04642308848343385 0.044391886997229915 C 0.04652988189060871 0.044407195674925105 0.04707111383589147 0.04479419290268984 0.04704669584588775 0.04468628030419909 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23755814529337485,0.16012587508294449) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04320620675511746 0.04439188699722992 C 0.043313000162292316 0.04437657831953473 0.043914142521531856 0.04453433130752041 0.04386412027876185 0.044502576171856774 C 0.043914142521531856 0.04453433130752041 0.04374505687925868 0.04480396337480781 0.04380647366835752 0.04477294862519351 C 0.04374505687925868 0.04480396337480781 0.043052678576802 0.044950910630055525 0.04312711880957573 0.04487475316722841 C 0.043052678576802 0.044950910630055525 0.04286781425699675 0.045671132107199794 0.04291319087507276 0.0456868381791189 C 0.04286781425699675 0.045671132107199794 0.04260701738266732 0.04457836770570835 0.042582599392663595 0.04468628030419909 C 0.04260701738266732 0.04457836770570835 0.043313000162292316 0.04437657831953473 0.04320620675511746 0.04439188699722992 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M 0.01188668245247199 0.0012520850242654677 C 0.011926636327131148 0.0012492816286971372 0.012450269963301583 0.0012127425659967956 0.012366128948381887 0.0012184442774455019 C 0.012450269963301583 0.0012127425659967956 0.012940561771768874 0.0011807661710006175 0.012896374631508337 0.0011836644868809933" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.012896374631508337 0.0011836644868809933 C 0.012896374631508337 0.0016241494088677446 0.012896374631508334 0.007349191376047115 0.012896374631508334 0.006469483550722009 C 0.012896374631508334 0.007349191376047115 0.012896374631508337 0.012179381294120625 0.012896374631508337 0.01174015839078227" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012896374631508337 0.01174015839078227 C 0.012853669176985893 0.011735221752147466 0.012299768162319315 0.011671080789728257 0.01238390917723901 0.011680918727164617 C 0.012299768162319315 0.011671080789728257 0.011845246892074737 0.011617201842744392 0.01188668245247199 0.011622103141545949" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01188668245247199 0.011622103141545949 C 0.01188668245247199 0.011192718175643953 0.01188668245247199 0.005605315374281969 0.01188668245247199 0.006469483550722009 C 0.01188668245247199 0.005605315374281969 0.011886682452471986 0.0008173018137274254 0.011886682452471986 0.0012520850242654703" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M 0.025199615522778412 -0.0010973931865148284 C 0.025241295517896164 -0.0011084971084925226 0.025783916479111116 -0.0012528692877914148 0.02569977546419142 -0.0012306402502471577 C 0.025783916479111116 -0.0012528692877914148 0.0262517687216167 -0.001375266752612478 0.026209307701814753 -0.0013641416370459149" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026209307701814753 -0.0013641416370459149 C 0.026209307701814753 -0.0007113395380652546 0.026209307701814753 0.007779135489727745 0.026209307701814753 0.006469483550722009 C 0.026209307701814753 0.007779135489727745 0.02620930770181476 0.015008531471047996 0.02620930770181476 0.01435168163102292" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02620930770181476 0.01435168163102292 C 0.026168785450327595 0.014343704072652487 0.02563889966904907 0.01423878621769502 0.025723040683968766 0.014255950930577736 C 0.02563889966904907 0.01423878621769502 0.025155996759345878 0.014136517921918038 0.02519961552277841 0.014145705076430322" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02519961552277841 0.014145705076430322 C 0.02519961552277841 0.013506019949287962 0.025199615522778412 0.005199225362143244 0.025199615522778412 0.006469483550722006 C 0.025199615522778412 0.005199225362143244 0.025199615522778412 -0.0017279662479512277 0.025199615522778412 -0.0010973931865148252" fill="none" stroke="none" stroke-width="0"/>
</g><g id="逆十字">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.08412477642939539,-0.05688059287924617)"><path d="M 0.13078797909594359 0.057891514356766635 C 0.13083622338004539 0.057984328828767924 0.1312863524199786 0.05921126030132474 0.1313669105051652 0.05900528802078209 C 0.1312863524199786 0.05921126030132474 0.12969247970441594 0.0604763395318198 0.12982128207370436 0.06036318172327844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.12982128207370436 0.06036318172327844 C 0.12968664451553497 0.06029103893843551 0.12709958842632782 0.05945840621726116 0.12820563137567165 0.059497468305163295 C 0.12709958842632782 0.05945840621726116 0.11403370347589867 0.05994982790128527 0.1165487666815785 0.059894436668452795 C 0.11403370347589867 0.05994982790128527 0.09648121509300822 0.06018447363504473 0.09802487290751363 0.06016216309915304" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09802487290751363 0.06016216309915304 C 0.09802487290751363 0.06029852756243645 0.09804577694843353 0.06197017559397104 0.09802487290751363 0.06179853665855398 C 0.09804577694843353 0.06197017559397104 0.09840703477342448 0.06227197683502103 0.09827572139855233 0.06222183032415774 C 0.09840703477342448 0.06227197683502103 0.09971104273993181 0.06241516682764306 0.09960063340597954 0.06240029478891342" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09960063340597954 0.06240029478891342 C 0.09944510754595899 0.06242342698660769 0.09747670130651102 0.06266271642219287 0.09773432308573299 0.06267788116124459 C 0.09747670130651102 0.06266271642219287 0.09640707613611459 0.062180020983546844 0.096509172055316 0.06221831792029282" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.096509172055316 0.06221831792029282 C 0.09640707613611459 0.062234965125886436 0.09502639924567702 0.06239028695956963 0.09528402102489898 0.062418084387416195 C 0.09502639924567702 0.06239028695956963 0.09326218484463186 0.0618403041526938 0.0934177107046524 0.06188474878613399" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0934177107046524 0.06188474878613399 C 0.09352812003860468 0.061891189183150265 0.09487393608695181 0.061922079783988324 0.09474262271207964 0.061962033550329344 C 0.09487393608695181 0.061922079783988324 0.09501437524403829 0.061255314385777075 0.0949934712031184 0.06140530359004177 C 0.09501437524403829 0.061255314385777075 0.0949934712031184 0.060058568058245644 0.0949934712031184 0.06016216309915304" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0949934712031184 0.06016216309915304 C 0.09425607040341116 0.06013272139203364 0.08513944388394654 0.05977556811426916 0.0861446616066317 0.059808862613720266 C 0.08513944388394654 0.05977556811426916 0.08259866460821515 0.05985685382263804 0.08293085853089649 0.05976262910573973 C 0.08259866460821515 0.05985685382263804 0.08209395753475213 0.06103763672573004 0.08215833453445553 0.06093955921650002" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08215833453445553 0.06093955921650002 C 0.08202953216516713 0.06080046668357156 0.08053214801780807 0.059038541816428765 0.08061270610299467 0.05927044882135851 C 0.08053214801780807 0.059038541816428765 0.0812398817963181 0.05806386068534177 0.0811916375122163 0.05815667515734306" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0811916375122163 0.05815667515734306 C 0.0811433932281145 0.05806386068534177 0.08069326418818128 0.056808699875853116 0.08061270610299467 0.05704290149332763 C 0.08069326418818128 0.056808699875853116 0.08228713690374394 0.05520486860217571 0.08215833453445553 0.05534625574764893" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08215833453445553 0.05534625574764893 C 0.08222271153415894 0.055446627869423726 0.08326305245357786 0.05669295347018001 0.08293085853089652 0.05655072120894643 C 0.08326305245357786 0.05669295347018001 0.08714987932931685 0.05712434472903008 0.0861446616066317 0.057053042882451895 C 0.08714987932931685 0.05712434472903008 0.09573087200282562 0.05743578507500405 0.0949934712031184 0.05740634336788465" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0949934712031184 0.05740634336788465 C 0.0949934712031184 0.05717903279928427 0.0949725671621985 0.05428705825874245 0.0949934712031184 0.05467861654468007 C 0.0949725671621985 0.05428705825874245 0.09461130933720747 0.05252359748041194 0.09474262271207964 0.05270764393663322 C 0.09461130933720747 0.05252359748041194 0.09330730137070013 0.05245026033114065 0.0934177107046524 0.052470059070024694" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0934177107046524 0.052470059070024694 C 0.09357323656467295 0.0524011698881924 0.09554164280412095 0.051600302874874944 0.09528402102489898 0.051643388888037135 C 0.09554164280412095 0.051600302874874944 0.09661126797451743 0.05197883008074851 0.096509172055316 0.051953026912078405" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.096509172055316 0.051953026912078405 C 0.09661126797451743 0.05189195740721895 0.09799194486495495 0.05122801253073773 0.09773432308573299 0.05122019285376489 C 0.09799194486495495 0.05122801253073773 0.09975615926600008 0.05211575221758474 0.09960063340597954 0.05204686303575245" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09960063340597954 0.05204686303575245 C 0.09949022407202726 0.052066661774636494 0.09814440802368017 0.05250376069477161 0.09827572139855233 0.052284447902360975 C 0.09814440802368017 0.05250376069477161 0.09800396886659374 0.055105441166807045 0.09802487290751363 0.05467861654468007 C 0.09800396886659374 0.055105441166807045 0.09802487290751363 0.057633653936485035 0.09802487290751363 0.05740634336788465" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09802487290751363 0.05740634336788465 C 0.09956853072201904 0.05738403283199296 0.11906382988725833 0.057045218357224856 0.1165487666815785 0.05713861693718441 C 0.11906382988725833 0.057045218357224856 0.12931167432501547 0.056114100242527346 0.12820563137567165 0.05628556040837 C 0.12931167432501547 0.056114100242527346 0.12995591963187375 0.054980722825297715 0.12982128207370436 0.05508109494707251" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.12982128207370436 0.05508109494707251 C 0.12995008444299277 0.05522248209254573 0.13144746859035178 0.05701194231022574 0.1313669105051652 0.056777740692751225 C 0.13144746859035178 0.05701194231022574 0.13073973481184178 0.05798432882876792 0.13078797909594359 0.057891514356766635" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.09500000000000001,-0.09499999999999999)"><path d="M 0.1407620373920677 0.09601092147752056 C 0.1408081864414981 0.09605732871352121 0.1413158259852325 0.09668490911826554 0.1413158259852325 0.09656780830952828 C 0.1413158259852325 0.09668490911826554 0.1407158883426373 0.09748682475510423 0.1407620373920677 0.09741613118236762" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1407620373920677 0.09741613118236762 C 0.1406219388549184 0.09735323131938875 0.13796935101795238 0.09664282084635345 0.13908085494627614 0.09666133282662122 C 0.13796935101795238 0.09664282084635345 0.1248337735459147 0.09726068583775717 0.12742399025218265 0.09719398741915439 C 0.1248337735459147 0.09726068583775717 0.10637944315596715 0.09748402438574631 0.10799825447106065 0.09746171384985462" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10799825447106065 0.09746171384985462 C 0.10799825447106065 0.09762107014322777 0.10800672060763321 0.09957201522282111 0.10799825447106065 0.0993739893703324 C 0.10800672060763321 0.09957201522282111 0.10817750409578064 0.09993285000788217 0.10809984810993133 0.09983802407971919 C 0.10817750409578064 0.09993285000788217 0.10899931615052917 0.1005680568773356 0.10893012630125241 0.10051190050828818" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10893012630125241 0.10051190050828818 C 0.10885236337124214 0.10049071462950974 0.10786816025151812 0.10021498025800009 0.1079969711411291 0.10025766996294705 C 0.10786816025151812 0.10021498025800009 0.10733334766631991 0.09997812022275605 0.10738439562592061 0.0999996240489246" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10738439562592061 0.0999996240489246 C 0.10733334766631991 0.10001648544341481 0.10664300922110118 0.10022300075660168 0.10677182011071215 0.10020196078280708 C 0.10664300922110118 0.10022300075660168 0.10576090202057857 0.10025628231376414 0.10583866495058884 0.10025210373445975" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10583866495058884 0.10025210373445975 C 0.1059078547998656 0.1002175970965647 0.10674659912775923 0.09976484788270858 0.10666894314190992 0.09983802407971919 C 0.10674659912775923 0.09976484788270858 0.10677900291735312 0.09917596351784369 0.10677053678078056 0.0993739893703324 C 0.10677900291735312 0.09917596351784369 0.10677053678078056 0.09730235755648148 0.10677053678078056 0.09746171384985462" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10677053678078056 0.09746171384985462 C 0.10595798248048521 0.09743227214273523 0.09593951395396305 0.09706381167920042 0.09701988517723634 0.09710841336442183 C 0.09593951395396305 0.09706381167920042 0.09346842719983992 0.09697423351207451 0.09380608210150114 0.09692649362719766 C 0.09346842719983992 0.09697423351207451 0.09289818837861831 0.09774419184592292 0.0929680263573016 0.09768129198294406" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0929680263573016 0.09768129198294406 C 0.09292187730787121 0.09761059841020744 0.0924142377641369 0.09671586830136747 0.0924142377641369 0.09683296911010472 C 0.0924142377641369 0.09671586830136747 0.09301417540673199 0.09622967504209635 0.0929680263573016 0.096276082278097" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0929680263573016 0.096276082278097 C 0.09292187730787121 0.09622967504209635 0.0924142377641369 0.09560209463735203 0.0924142377641369 0.09571919544608928 C 0.0924142377641369 0.09560209463735203 0.09301417540673199 0.09480017900051332 0.0929680263573016 0.09487087257324994" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0929680263573016 0.09487087257324994 C 0.09303786433598489 0.0949337724362288 0.09414373700316236 0.09571912374566369 0.09380608210150114 0.09562567092899635 C 0.09414373700316236 0.09571912374566369 0.09810025640050962 0.09605230103406596 0.09701988517723634 0.09599230637325809 C 0.09810025640050962 0.09605230103406596 0.10758309108107592 0.09637504856581028 0.10677053678078056 0.09634560685869088" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10677053678078056 0.09634560685869088 C 0.10677053678078056 0.0960499749259195 0.10676207064420801 0.0923381440153257 0.10677053678078056 0.09279802366543431 C 0.10676207064420801 0.0923381440153257 0.1065912871560606 0.0906419300106945 0.10666894314190992 0.09082705105738743 C 0.1065912871560606 0.0906419300106945 0.10576947510131209 0.09055569777576337 0.10583866495058884 0.09057657110511907" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10583866495058884 0.09057657110511907 C 0.10591642788059911 0.09055043594365926 0.10690063100032313 0.09026294916760123 0.10677182011071215 0.09026294916760123 C 0.10690063100032313 0.09026294916760123 0.10743544358552132 0.09060270626657889 0.10738439562592061 0.09057657110511907" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10738439562592061 0.09057657110511907 C 0.10743544358552132 0.09053217690694394 0.1081257820307401 0.08999533886387796 0.1079969711411291 0.09004384072701743 C 0.1081257820307401 0.08999533886387796 0.10900788923126269 0.08999044108248118 0.10893012630125241 0.0899945487474455" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10893012630125241 0.0899945487474455 C 0.10886093645197566 0.09006392393994066 0.10802219212408201 0.09106067396721984 0.10809984810993133 0.09082705105738743 C 0.10802219212408201 0.09106067396721984 0.1079897883344881 0.09325790331554293 0.10799825447106065 0.09279802366543431 C 0.1079897883344881 0.09325790331554293 0.10799825447106065 0.09664123879146226 0.10799825447106065 0.09634560685869088" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.10799825447106065 0.09634560685869088 C 0.10961706578615416 0.09632329632279919 0.13001420695845062 0.0959957890338014 0.12742399025218265 0.09607788042799065 C 0.13001420695845062 0.0959957890338014 0.14019235887460005 0.09523782940714348 0.13908085494627628 0.09536051012841991 C 0.14019235887460005 0.09523782940714348 0.14090213592921697 0.09454281190969463 0.1407620373920677 0.0946057117726735" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.1407620373920677 0.0946057117726735 C 0.1408081864414981 0.09467640534541011 0.1413158259852325 0.0955711354542501 0.1413158259852325 0.09545403464551284 C 0.1413158259852325 0.0955711354542501 0.1407158883426373 0.09605732871352121 0.1407620373920677 0.09601092147752056" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
</g>
<g id="植性2">
<g id="通常">
<g id="萼">
<g transform="translate(0.2655025754684065,0.15225492011714623) rotate(0) scale(1,1) translate(-0.03631794868147695,-0.01653660046337694)"><path d="M 0.038630328490974974 0.011299173148335688 C 0.03899848612614593 0.011465905024505427 0.04354546398433697 0.013824508286384247 0.0430482201130265 0.013299955662372548 C 0.04354546398433697 0.013824508286384247 0.044336704503374895 0.018079447886363335 0.044597254946700644 0.017593804636476088 C 0.044336704503374895 0.018079447886363335 0.03916079247830065 0.019094409214533856 0.039921614793117524 0.019127674661019493 C 0.03916079247830065 0.019094409214533856 0.03509620153354653 0.017033531330117514 0.03546738716889814 0.017194619278648435" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03546738716889814 0.017194619278648435 C 0.03522599854477678 0.016900499999858223 0.03181491696631523 0.01267904365366701 0.032570723679441776 0.013665187933165903 C 0.03181491696631523 0.01267904365366701 0.025883288522374353 0.0046688629239530445 0.02639770661137954 0.005360887924661726" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02639770661137954 0.005360887924661726 C 0.027029184135796823 0.005834724370717201 0.034994822061019885 0.011541782379300257 0.03397543690438693 0.011046925277327427 C 0.034994822061019885 0.011541782379300257 0.039018236123190636 0.011320193804253038 0.03863032849097497 0.011299173148335683" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2656829485812043,0.15695056570214977) rotate(0) scale(1,1) translate(-0.03631794868147695,-0.01653660046337694)"><path d="M 0.039026574557066096 0.021614630158285655 C 0.038641224807862175 0.021660198762179686 0.0334234470160785 0.022719749345334102 0.03440237756661907 0.022161453405014048 C 0.0334234470160785 0.022719749345334102 0.02668582714924267 0.028826908778552332 0.027279407950579315 0.02831418144212631" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027279407950579315 0.02831418144212631 C 0.027739472396802814 0.027591220368702672 0.03347847796892652 0.018606977014772614 0.0328001813052613 0.019638648561042672 C 0.03347847796892652 0.018606977014772614 0.03563720013200372 0.015625412414039173 0.035418967914562 0.015934122886885595" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035418967914562 0.015934122886885595 C 0.03577688874038421 0.01574988861229504 0.04047043428605653 0.013641879649334972 0.03971401782442855 0.013723311591798949 C 0.04047043428605653 0.013641879649334972 0.044793145646309526 0.015424877024512304 0.04449596545409775 0.01495693957731787 C 0.044793145646309526 0.015424877024512304 0.0428243975562172 0.019893368506546147 0.043280180130969834 0.019338560958132165 C 0.0428243975562172 0.019893368506546147 0.03867210742590746 0.02180430259163178 0.0390265745570661 0.021614630158285655" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.26110710520117625,0.1547451452623362) rotate(0) scale(1,1) translate(-0.029629410670268037,-0.014386171379647386)"><path d="M 0.03354225873164099 0.010980312012581149 C 0.03405842474819396 0.010967067362908365 0.04060885671547301 0.011067144462930585 0.03973625093027666 0.010821376216507757 C 0.04060885671547301 0.011067144462930585 0.04403427103227351 0.014469529438870041 0.04401352815399722 0.013929530969655097 C 0.04403427103227351 0.014469529438870041 0.03913354362708309 0.017601863689453923 0.039985165469592104 0.01730135784708709 C 0.03913354362708309 0.017601863689453923 0.03327814109174705 0.017555121347304567 0.03379406604388898 0.01753560107805707" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03379406604388898 0.01753560107805707 C 0.03345167108301557 0.01739445316733242 0.028623926293963743 0.015602051400138152 0.029685326513408064 0.015841826149361256 C 0.028623926293963743 0.015602051400138152 0.0203382581519862 0.014559677248881377 0.021057263410557112 0.01465830408737983" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.021057263410557112 0.01465830408737983 C 0.021766949361938022 0.014514321797592636 0.030613911103885005 0.01262401727036696 0.029573494827128018 0.012930516609933516 C 0.030613911103885005 0.01262401727036696 0.033872989057017064 0.010817794962801785 0.03354225873164098 0.010980312012581149" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="欠損">
<g id="萼">
<g transform="translate(0.2655025754684065,0.15225492011714623) rotate(0) scale(1,1) translate(-0.03631794868147695,-0.01653660046337694)"><path d="M 0.038630328490974974 0.011299173148335688 C 0.03899848612614593 0.011465905024505427 0.04354546398433697 0.013824508286384247 0.0430482201130265 0.013299955662372548 C 0.04354546398433697 0.013824508286384247 0.044336704503374895 0.018079447886363335 0.044597254946700644 0.017593804636476088 C 0.044336704503374895 0.018079447886363335 0.03916079247830065 0.019094409214533856 0.039921614793117524 0.019127674661019493 C 0.03916079247830065 0.019094409214533856 0.03509620153354653 0.017033531330117514 0.03546738716889814 0.017194619278648435" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03546738716889814 0.017194619278648435 C 0.03522599854477678 0.016900499999858223 0.03181491696631523 0.01267904365366701 0.032570723679441776 0.013665187933165903 C 0.03181491696631523 0.01267904365366701 0.025883288522374353 0.0046688629239530445 0.02639770661137954 0.005360887924661726" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02639770661137954 0.005360887924661726 C 0.027029184135796823 0.005834724370717201 0.034994822061019885 0.011541782379300257 0.03397543690438693 0.011046925277327427 C 0.034994822061019885 0.011541782379300257 0.039018236123190636 0.011320193804253038 0.03863032849097497 0.011299173148335683" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2656829485812043,0.15695056570214977) rotate(0) scale(1,1) translate(-0.03631794868147695,-0.01653660046337694)"><path d="M 0.039026574557066096 0.021614630158285655 C 0.038689495507264936 0.02163668878832414 0.034295002612182636 0.02216623185307497 0.034981625959452194 0.021879333718747472 C 0.034295002612182636 0.02216623185307497 0.030437550092362983 0.025322247274504644 0.030787094389831383 0.02505740777021563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030787094389831383 0.02505740777021563 C 0.030743729464338673 0.02503055943773806 0.030179985432933414 0.024681531115529613 0.03026671528391884 0.02473522778048476 C 0.030179985432933414 0.024681531115529613 0.029702971252513585 0.024386199458276317 0.029746336178006295 0.02441304779075389" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029746336178006295 0.02441304779075389 C 0.030000823271944213 0.024015181188277956 0.03327290061664094 0.018932071485720313 0.0328001813052613 0.019638648561042672 C 0.03327290061664094 0.018932071485720313 0.03563720013200372 0.015625412414039173 0.035418967914562 0.015934122886885595" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035418967914562 0.015934122886885595 C 0.03577688874038421 0.01574988861229504 0.04047043428605653 0.013641879649334972 0.03971401782442855 0.013723311591798949 C 0.04047043428605653 0.013641879649334972 0.044793145646309526 0.015424877024512304 0.04449596545409775 0.01495693957731787 C 0.044793145646309526 0.015424877024512304 0.0428243975562172 0.019893368506546147 0.043280180130969834 0.019338560958132165 C 0.0428243975562172 0.019893368506546147 0.03867210742590746 0.02180430259163178 0.0390265745570661 0.021614630158285655" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.26110710520117625,0.1547451452623362) rotate(0) scale(1,1) translate(-0.029629410670268037,-0.014386171379647386)"><path d="M 0.03354225873164099 0.010980312012581149 C 0.03405842474819396 0.010967067362908365 0.04060885671547301 0.011067144462930585 0.03973625093027666 0.010821376216507757 C 0.04060885671547301 0.011067144462930585 0.04403427103227351 0.014469529438870041 0.04401352815399722 0.013929530969655097 C 0.04403427103227351 0.014469529438870041 0.03913354362708309 0.017601863689453923 0.039985165469592104 0.01730135784708709 C 0.03913354362708309 0.017601863689453923 0.03327814109174705 0.017555121347304567 0.03379406604388898 0.01753560107805707" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03379406604388898 0.01753560107805707 C 0.03345167108301557 0.01739445316733242 0.028623926293963743 0.015602051400138152 0.029685326513408064 0.015841826149361256 C 0.028623926293963743 0.015602051400138152 0.0203382581519862 0.014559677248881377 0.021057263410557112 0.01465830408737983" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.021057263410557112 0.01465830408737983 C 0.021766949361938022 0.014514321797592636 0.030613911103885005 0.01262401727036696 0.029573494827128018 0.012930516609933516 C 0.030613911103885005 0.01262401727036696 0.033872989057017064 0.010817794962801785 0.03354225873164098 0.010980312012581149" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
</g>
<g id="獣性2">
<g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.025302150321020518,-0.02530215032102052)"><path d="M 0.05340944660624613 0.02308570366417678 C 0.05286981898082602 0.023301217319683643 0.044081357694205826 0.02595931167396585 0.0469339151012048 0.02567186753025917 C 0.044081357694205826 0.02595931167396585 0.01686582794067959 0.026606963876856737 0.019178757722258452 0.026535033388656926" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019178757722258452 0.026535033388656926 C 0.019458010009971993 0.026708189454012193 0.023095285307526515 0.02893313307092696 0.022529785174820943 0.028612906172920127 C 0.023095285307526515 0.02893313307092696 0.026251007159717343 0.030524826997390477 0.025964759314725312 0.030377756164738912" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.025964759314725312 0.030377756164738912 C 0.02638933770202225 0.03052735006020143 0.032074305726609596 0.0325053179297124 0.0310596999622886 0.03217288291028912 C 0.032074305726609596 0.0325053179297124 0.038730055863601336 0.03454981752177908 0.03814002848657728 0.034366976397818313" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03814002848657728 0.034366976397818313 C 0.03795731968441074 0.034180063399115404 0.03660248954585953 0.03210993713524243 0.03594752286057884 0.03212402041338336 C 0.03660248954585953 0.03210993713524243 0.046837304197392855 0.034370806780689184 0.045999628709945624 0.0341979770601272" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.045999628709945624 0.0341979770601272 C 0.04575533770277631 0.033982369079987515 0.04379644688952397 0.03139898522911444 0.043068136623913844 0.03161068129845096 C 0.04379644688952397 0.03139898522911444 0.05571195317004656 0.03166153613889211 0.05473935189726712 0.031657624228088946" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05473935189726712 0.031657624228088946 C 0.05435102188393792 0.031474071487833016 0.050321924941786764 0.029289009600872263 0.05007939173731673 0.029454991345017757 C 0.050321924941786764 0.029289009600872263 0.058280613568706806 0.02968341429445345 0.057649750350907566 0.02966584329834301" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.057649750350907566 0.02966584329834301 C 0.05726014649027654 0.029427748970057836 0.05324289029989465 0.02641895538397502 0.0529745040233352 0.026808711358920937 C 0.05324289029989465 0.02641895538397502 0.0615283758068115 0.024837109952331272 0.06087038566962102 0.024988771598992016" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06087038566962102 0.024988771598992016 C 0.06048943632066858 0.02490339564590745 0.05567724856024385 0.023805671167409306 0.05629899348219176 0.023964260161977242 C 0.05567724856024385 0.023805671167409306 0.05316865103325066 0.023012490622693407 0.05340944660624613 0.02308570366417678" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="竜性2">
<g id="刺">
<g transform="translate(0.2576516006005122,0.15843393545055423) rotate(0) scale(1,1) translate(-0.029118048343184166,-0.029118048343184173)"><path d="M 0.03675142159135515 0.02641129159322342 C 0.0370365417215129 0.026542619421325277 0.04072387334658387 0.028335536902356285 0.040172863153248056 0.027987225530445685 C 0.04072387334658387 0.028335536902356285 0.04362943397456305 0.03080801159995936 0.04336354391138497 0.030591028056150615" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04336354391138497 0.030591028056150615 C 0.04426133998235567 0.03116346305216762 0.05346600376646019 0.03773685764588029 0.05413709676303338 0.03746024800835468 C 0.05346600376646019 0.03773685764588029 0.0337415388849628 0.03361451834796656 0.03531042795250669 0.03391034370645796" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03531042795250669 0.03391034370645796 C 0.03480050988648411 0.03379877091066019 0.028348996397698983 0.03238074742577163 0.02919141116023574 0.032571470156884746 C 0.028348996397698983 0.03238074742577163 0.024868954105551462 0.03154252099778514 0.025201450802065636 0.03162167093310049" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025201450802065636 0.03162167093310049 C 0.025563143431285122 0.03144633518188983 0.02995750214980854 0.029181100589721017 0.029541762352699483 0.029517641918572524 C 0.02995750214980854 0.029181100589721017 0.030244375535263886 0.02742196940924157 0.030190328367374317 0.02758317498688241" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030190328367374317 0.02758317498688241 C 0.030480206702920343 0.027540947552634743 0.03421562616259169 0.026978788826438824 0.03366886839392662 0.027076445775910406 C 0.03421562616259169 0.026978788826438824 0.037008301024474194 0.026355862077999507 0.03675142159135515 0.02641129159322342" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2493638359659505,0.15825947993348022) rotate(0) scale(1,1) translate(-0.029118048343184166,-0.029118048343184173)"><path d="M 0.0374607306626938 0.027656612275276566 C 0.037655572461983935 0.027879354999465415 0.04009132261492553 0.030627236842408378 0.039798832254175395 0.030329524965542764 C 0.04009132261492553 0.030627236842408378 0.041068263553155473 0.03130412395034069 0.040970614991695464 0.031229154797663927" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.040970614991695464 0.031229154797663927 C 0.041430205076368395 0.03174952160230377 0.046006566492197414 0.0377030254679934 0.04648569600777064 0.037473556453342036 C 0.046006566492197414 0.0377030254679934 0.0342823412045706 0.03369188518349185 0.03522106080481675 0.03398278297348033" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03522106080481675 0.03398278297348033 C 0.03470758725602444 0.0338623426825875 0.028219909000899622 0.03232829604281119 0.029059378219308988 0.03253749948276635 C 0.028219909000899622 0.03232829604281119 0.02482143451428732 0.0313835785449561 0.025147430183904373 0.03147234169401843" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025147430183904373 0.03147234169401843 C 0.025511987944558532 0.031310209430446406 0.029976734386790802 0.029210076767813155 0.029522123311754297 0.029526754531154154 C 0.029976734386790802 0.029210076767813155 0.030692816398724784 0.02751766303415744 0.030602763084342437 0.027672208533926417" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030602763084342437 0.027672208533926417 C 0.030930685788634147 0.027643037754798608 0.035109332834038914 0.027320859496171863 0.03453783553584297 0.027322159184392684 C 0.035109332834038914 0.027320859496171863 0.037704305256598035 0.027684483366183555 0.0374607306626938 0.027656612275276566" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.24116975804361673,0.1578265159529489) rotate(0) scale(1,1) translate(-0.029118048343184166,-0.029118048343184173)"><path d="M 0.037748368582723846 0.02816620507857967 C 0.03791368843735518 0.028375490473915542 0.03998366547981791 0.030962054435995683 0.03973220683829991 0.030677629822610134 C 0.03998366547981791 0.030962054435995683 0.040852011067826495 0.03165443965725595 0.040765872280939836 0.03157930043920627" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.040765872280939836 0.03157930043920627 C 0.0409675476264443 0.0319767298881242 0.042715960794777 0.036536368021595086 0.043185976426993414 0.036348453826221414 C 0.042715960794777 0.036536368021595086 0.034453993716621945 0.033624755530146044 0.035125684694342824 0.03383427078369031" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035125684694342824 0.03383427078369031 C 0.034609379584240645 0.03372305972933801 0.028094520724685372 0.03229045590749566 0.028930023373116686 0.03249973813146277 C 0.028094520724685372 0.03229045590749566 0.02478045537483793 0.031224812926470075 0.025099652913167066 0.0313228840960849" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025099652913167066 0.0313228840960849 C 0.025466543853517643 0.03117390663045963 0.029976364600996928 0.02925095568874953 0.029502344197374002 0.02953515450858168 C 0.029976364600996928 0.02925095568874953 0.03089502721991452 0.027777276903892218 0.03078789775664217 0.0279124982580991" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03078789775664217 0.0279124982580991 C 0.03110897130602947 0.02788117271638433 0.03522081958479655 0.027557733992561922 0.034640780349289746 0.027536591757521874 C 0.03522081958479655 0.027557733992561922 0.038007334268843354 0.028218672855334487 0.037748368582723846 0.02816620507857967" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23307820847535127,0.1571407018673859) rotate(0) scale(1,1) translate(-0.029118048343184166,-0.029118048343184173)"><path d="M 0.0377234844684555 0.02854691412481976 C 0.03788428159810303 0.02875300338583512 0.03988859060229949 0.03130102046209188 0.03965305002422587 0.03101998525700408 C 0.03988859060229949 0.03130102046209188 0.04062471485376511 0.03199428252994574 0.040549971405339016 0.0319193365858733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.040549971405339016 0.0319193365858733 C 0.04073945451169408 0.032268970259075665 0.042331098362664736 0.036255977406054046 0.042823768681599775 0.03611494066430168 C 0.042331098362664736 0.036255977406054046 0.033955774152828466 0.033403180555451696 0.034637927578118566 0.033611777486901695" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034637927578118566 0.033611777486901695 C 0.034151722160924165 0.03351565520023501 0.02800514013092149 0.03225511989032006 0.028803462571785763 0.03245831004690147 C 0.02800514013092149 0.03225511989032006 0.02474594126407743 0.03106642773801002 0.025058058287747303 0.031173495607924744" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025058058287747303 0.031173495607924744 C 0.025426757894410814 0.031037608051963136 0.029979348548637832 0.029266713355424395 0.02948245356770943 0.029542844936385433 C 0.029979348548637832 0.029266713355424395 0.03114899343315302 0.027719672611392868 0.03102079805888813 0.027859916636392295" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03102079805888813 0.027859916636392295 C 0.031330272668441496 0.027850924056360173 0.03529305057432584 0.0278092554667091 0.03473449337352856 0.027752005676006813 C 0.03529305057432584 0.0278092554667091 0.03797256705969941 0.02861315649555417 0.0377234844684555 0.02854691412481976" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.029118048343184166,-0.029118048343184173)"><path d="M 0.03840423368057176 0.02945392859813453 C 0.03849985965320197 0.029641971605973424 0.039752367804855165 0.03196217472909802 0.03955174535213424 0.03171044469220127 C 0.039752367804855165 0.03196217472909802 0.04091669959331366 0.03253837606995339 0.040811703113222936 0.03247468904089554" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.040811703113222936 0.03247468904089554 C 0.04093453416653313 0.032802953195433304 0.04164991734336483 0.036574472998914184 0.04228567575294523 0.03641385889534869 C 0.04164991734336483 0.036574472998914184 0.03242401273536761 0.034234408232709214 0.03318260219825819 0.03440205828368148" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03318260219825819 0.03440205828368148 C 0.03295184155581454 0.03435388380350888 0.029822093423958883 0.03365386976727036 0.03041347448893438 0.03382396452161027 C 0.029822093423958883 0.03365386976727036 0.0257254089960204 0.03223900095743531 0.026086029418552245 0.03236092123160261" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026086029418552245 0.03236092123160261 C 0.026433608925976484 0.03219242702100404 0.03064081689697048 0.029892302071530215 0.030256983507643127 0.03033899070441976 C 0.03064081689697048 0.029892302071530215 0.030728283972383582 0.0267224632146371 0.03069203009048047 0.027000657636928074" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03069203009048047 0.027000657636928074 C 0.030995738304968233 0.026962685940376725 0.03497921229684124 0.026749436525079103 0.034336528664333635 0.0265449972783119 C 0.03497921229684124 0.026749436525079103 0.03874320909859161 0.029696339541453082 0.03840423368057176 0.02945392859813453" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="虫性2">
<g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.01713961730213782,-0.01713961730213782)"><path d="M 0.0278344761517722 0.0188348954900365 C 0.02823252237451776 0.018937036282081876 0.03326043672463164 0.02032677585222094 0.03261103082471892 0.02006058499458102 C 0.03326043672463164 0.02032677585222094 0.03587870662789202 0.022193235847310103 0.03562734695072486 0.022029185781715557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03562734695072486 0.022029185781715557 C 0.03437056398593046 0.022253259993221735 0.018179923545079767 0.024717483937432134 0.020545951373192112 0.02471807631978968 C 0.018179923545079767 0.024717483937432134 0.006125768150058778 0.021797410599561303 0.007235013013376727 0.022022077193425024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007235013013376727 0.022022077193425024 C 0.005979091642706597 0.021859435772946367 -0.008830187473769542 0.01965179529687075 -0.007836043434664838 0.02007038014768113 C -0.008830187473769542 0.01965179529687075 -0.004432938124314304 0.016743115553368756 -0.004694715455879729 0.016999058983700476" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.004694715455879729 0.016999058983700476 C -0.0028679630448466787 0.016886757564069467 0.019937079443821202 0.01580442832365637 0.017226313476516875 0.01565144194812837 C 0.019937079443821202 0.01580442832365637 0.028718489708043478 0.01910018328519551 0.0278344761517722 0.0188348954900365" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22997718741547216,0.15927329716257116) rotate(0) scale(1,1) translate(-0.007009790924038447,-0.007009790924038445)"><path d="M 0.009271839610210185 0.006696103049420017 C 0.009243929455016994 0.006907837407433873 0.008986748698310825 0.009672362699474659 0.00893691774789189 0.009236915345586294 C 0.008986748698310825 0.009672362699474659 0.009947552120849523 0.012145184291954911 0.009869811015237397 0.011921471296080403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009869811015237397 0.011921471296080403 C 0.009565886184448246 0.011737508676917346 0.005772949956451948 0.009290576961199153 0.006222713045767586 0.00971391986612371 C 0.005772949956451948 0.009290576961199153 0.004326815684923251 0.006601976151224223 0.0044726539434497385 0.006841356436985722" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0044726539434497385 0.006841356436985722 C 0.004683533281279606 0.006725934018797619 0.007403138136304849 0.005444182969764686 0.007003205997408146 0.005456287418728495 C 0.007403138136304849 0.005444182969764686 0.009460892411277018 0.0067994210186443065 0.009271839610210181 0.006696103049420013" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.23805659942990104,0.16039519603601066) rotate(0) scale(1,1) translate(-0.007009790924038447,-0.007009790924038445)"><path d="M 0.009271839610210185 0.006696103049420017 C 0.009243929455016994 0.006907837407433873 0.008986748698310825 0.009672362699474659 0.00893691774789189 0.009236915345586294 C 0.008986748698310825 0.009672362699474659 0.009947552120849523 0.012145184291954911 0.009869811015237397 0.011921471296080403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009869811015237397 0.011921471296080403 C 0.009565886184448246 0.011737508676917346 0.005772949956451948 0.009290576961199153 0.006222713045767586 0.00971391986612371 C 0.005772949956451948 0.009290576961199153 0.004326815684923251 0.006601976151224223 0.0044726539434497385 0.006841356436985722" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0044726539434497385 0.006841356436985722 C 0.004683533281279606 0.006725934018797619 0.007403138136304849 0.005444182969764686 0.007003205997408146 0.005456287418728495 C 0.007403138136304849 0.005444182969764686 0.009460892411277018 0.0067994210186443065 0.009271839610210181 0.006696103049420013" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.24603781571751163,0.16155502421899204) rotate(0) scale(1,1) translate(-0.007009790924038447,-0.007009790924038445)"><path d="M 0.009271839610210185 0.006696103049420017 C 0.009243929455016994 0.006907837407433873 0.008986748698310825 0.009672362699474659 0.00893691774789189 0.009236915345586294 C 0.008986748698310825 0.009672362699474659 0.009947552120849523 0.012145184291954911 0.009869811015237397 0.011921471296080403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009869811015237397 0.011921471296080403 C 0.009565886184448246 0.011737508676917346 0.005772949956451948 0.009290576961199153 0.006222713045767586 0.00971391986612371 C 0.005772949956451948 0.009290576961199153 0.004326815684923251 0.006601976151224223 0.0044726539434497385 0.006841356436985722" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0044726539434497385 0.006841356436985722 C 0.004683533281279606 0.006725934018797619 0.007403138136304849 0.005444182969764686 0.007003205997408146 0.005456287418728495 C 0.007403138136304849 0.005444182969764686 0.009460892411277018 0.0067994210186443065 0.009271839610210181 0.006696103049420013" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2541052979514762,0.16197648911682477) rotate(0) scale(1,1) translate(-0.007009790924038447,-0.007009790924038445)"><path d="M 0.009271839610210185 0.006696103049420017 C 0.009243929455016994 0.006907837407433873 0.008986748698310825 0.009672362699474659 0.00893691774789189 0.009236915345586294 C 0.008986748698310825 0.009672362699474659 0.009947552120849523 0.012145184291954911 0.009869811015237397 0.011921471296080403" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009869811015237397 0.011921471296080403 C 0.009565886184448246 0.011737508676917346 0.005772949956451948 0.009290576961199153 0.006222713045767586 0.00971391986612371 C 0.005772949956451948 0.009290576961199153 0.004326815684923251 0.006601976151224223 0.0044726539434497385 0.006841356436985722" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0044726539434497385 0.006841356436985722 C 0.004683533281279606 0.006725934018797619 0.007403138136304849 0.005444182969764686 0.007003205997408146 0.005456287418728495 C 0.007403138136304849 0.005444182969764686 0.009460892411277018 0.0067994210186443065 0.009271839610210181 0.006696103049420013" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.02205677125180655,-0.022056771251806547)"><path d="M 0.029747357738990846 0.023240973114453365 C 0.030079471430572078 0.023882768175815583 0.030504276906175257 0.02857657173862082 0.031071634704267503 0.028049864880591434 C 0.030504276906175257 0.02857657173862082 0.02182595389320563 0.02930511627361021 0.022939064161883908 0.029561455410805997 C 0.02182595389320563 0.02930511627361021 0.017474986406305154 0.024211677854601547 0.017714311480128156 0.02497379523424197 C 0.017474986406305154 0.024211677854601547 0.02084815985310494 0.020030590930954485 0.020067163276007893 0.020416046855120915 C 0.02084815985310494 0.020030590930954485 0.02789295327720797 0.02058373466585584 0.027086270405292722 0.0203483241442448 C 0.02789295327720797 0.02058373466585584 0.030079471430572078 0.023882768175815583 0.029747357738990846 0.023240973114453365 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.03274651656633133 0.04784283115573837 C 0.0331860813226216 0.04809581137092989 0.03851879058479336 0.05116311025267261 0.038021293641814585 0.05087859373803667 C 0.03851879058479336 0.05116311025267261 0.03877441206876513 0.051288565630814 0.038716479882076625 0.05125702933136959" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.038716479882076625 0.05125702933136959 C 0.038784024076420495 0.05124176399778715 0.04009051922008975 0.05091654616146507 0.03952701021420305 0.051073845328380316 C 0.04009051922008975 0.05091654616146507 0.04597455276425983 0.049227405495053854 0.045478587952717 0.04936943932838666" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.045478587952717 0.04936943932838666 C 0.045062140054118835 0.04956781435674119 0.040011946430846004 0.05197401358521165 0.040481213169539024 0.051749939668641026 C 0.040011946430846004 0.05197401358521165 0.03979456824830589 0.05208402521545022 0.03984738708840075 0.05205832632723413" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03984738708840075 0.05205832632723413 C 0.039887183444187624 0.0520960349552761 0.040707177165420425 0.05277848897139234 0.04032494335784323 0.05251082986373775 C 0.040707177165420425 0.05277848897139234 0.044776630231117394 0.05550018609870187 0.04443419277932707 0.055270235619089246" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04443419277932707 0.055270235619089246 C 0.04399382184066794 0.055073615713903436 0.038651438390069896 0.05268264055222933 0.03914974151541753 0.05291079675685954 C 0.038651438390069896 0.05268264055222933 0.038396623088467 0.05250082486408221 0.038454555275155504 0.05253236116352662" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.038454555275155504 0.05253236116352662 C 0.038387011080811634 0.05254762649710906 0.037076064565149947 0.05279523271259127 0.03764402494302907 0.052715545166515894 C 0.037076064565149947 0.05279523271259127 0.03113861455707082 0.05355303392892409 0.03163903074060607 0.05348861171643115" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03163903074060607 0.05348861171643115 C 0.03205993001119665 0.053367848308916485 0.0371635400983785 0.05189298853052443 0.036689821987693064 0.05203945082625518 C 0.0371635400983785 0.05189298853052443 0.03737646690892621 0.051705365279446 0.03732364806883135 0.051731064167662086" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03732364806883135 0.051731064167662086 C 0.03728385171304448 0.051693355539620116 0.03646466417418055 0.05095454121349815 0.036846091799388886 0.05127856063115846 C 0.03646466417418055 0.05095454121349815 0.032404885296909866 0.04755652036612003 0.03274651656633133 0.04784283115573837" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.013606407254807723 0.009445380739224329 C 0.01374891060663759 0.009642769875253775 0.015601454180425873 0.012208828643636555 0.015316447476766139 0.011814050371577666 C 0.015601454180425873 0.012208828643636555 0.017168991050554402 0.014380109139960441 0.017026487698724536 0.014182720003930997" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.017026487698724536 0.014182720003930997 C 0.017058161480430763 0.014280714069160112 0.01747552415120908 0.01553977515534388 0.017406573079199274 0.015358648786680364 C 0.01747552415120908 0.01553977515534388 0.017891177853145757 0.016439368731327605 0.01785390056284218 0.016356236427893203" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01785390056284218 0.016356236427893203 C 0.017766018834208988 0.01629654435099181 0.016629159870574797 0.01550568558947901 0.01679931981924384 0.015639931505076504 C 0.016629159870574797 0.01550568558947901 0.01572970295877782 0.014670731602027174 0.015811981178813668 0.014745285440723276" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015811981178813668 0.014745285440723276 C 0.01572008226531342 0.01452445607816082 0.014525396389810203 0.011653674364848892 0.014709194216810698 0.012095333089973804 C 0.014525396389810203 0.011653674364848892 0.013514508341307475 0.009224551376661873 0.013606407254807723 0.009445380739224329" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.021327215817225166 0.009030790660998952 C 0.02144980156920879 0.008730919441736894 0.023012729506512522 0.004911635448029734 0.02279824484102865 0.005432336029854254 C 0.023012729506512522 0.004911635448029734 0.023992930716531864 0.0025615543165422583 0.023901031803031617 0.0027823836791047193" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.023901031803031617 0.0027823836791047193 C 0.023983310023067465 0.0027078298404086183 0.025058530392130844 0.0017534916991540118 0.024888370443461802 0.0018877376147515045 C 0.025058530392130844 0.0017534916991540118 0.026030832915693337 0.001111740615033415 0.025942951187060144 0.0011714326919348066" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.025942951187060144 0.0011714326919348066 C 0.02590567389675657 0.001254564995369213 0.02542667263140743 0.002350146701811206 0.025495623703417236 0.0021690203331476833 C 0.02542667263140743 0.002350146701811206 0.025083864541236272 0.0034429431811261956 0.0251155383229425 0.003344949115897079" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0251155383229425 0.003344949115897079 C 0.024973034971112633 0.003542338251926516 0.02308980455884099 0.006187438877008813 0.0234054981009841 0.005713618748250323 C 0.02308980455884099 0.006187438877008813 0.02115402562691192 0.009307221653728005 0.021327215817225166 0.009030790660998952" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.019984416194788614,-0.019984416194788614)"><path d="M -0.003623636797415672 0.021865053076405787 C -0.0012399473277626702 0.021926373458479958 0.0287320561139383 0.022504976170500766 0.02498063683842035 0.02260089766129584 C 0.0287320561139383 0.022504976170500766 0.04276112431466464 0.02055675331399565 0.0413933945087997 0.020713995186864894" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0413933945087997 0.020713995186864894 C 0.04156353901615941 0.020710675772629656 0.043724763693758814 0.020689064394758507 0.04343512859711625 0.020674162216042038 C 0.043724763693758814 0.020689064394758507 0.045035509564475676 0.020955813741813496 0.04486901566851052 0.020892821331462537 C 0.045035509564475676 0.020955813741813496 0.04543305534869807 0.02154273824786663 0.04543305534869807 0.02143007114025355 C 0.04543305534869807 0.02154273824786663 0.04470252177254537 0.022372375881075105 0.04486901566851052 0.0222448266228195 C 0.04470252177254537 0.022372375881075105 0.043145493500473676 0.0230584271682174 0.04343512859711625 0.0229606622393208 C 0.043145493500473676 0.0230584271682174 0.04122325000143997 0.023456117730433566 0.04139339450879968 0.02341800576957874" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04139339450879968 0.02341800576957874 C 0.04001866445779952 0.02352433676873731 0.0211452146212798 0.024564565035050508 0.02489663389679775 0.024693977759481588 C 0.0211452146212798 0.024564565035050508 -0.006000326021933457 0.021629309352816137 -0.003623636797415672 0.021865053076405787" fill="none" stroke="none" stroke-width="0"/>
</g><g id="グローブ">
<g id="通常">
<g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(-0.07737243684807424,-0.07881663137584644)"><path d="M 0.09788794542250914 0.07164901923797797 C 0.09817495198170503 0.0717259224138998 0.10182913407541115 0.07285886390853978 0.10133202413285979 0.07257185734904 C 0.10182913407541115 0.07285886390853978 0.10414027129209899 0.07559020789483074 0.10385326473312557 0.07509309795197547 C 0.10414027129209899 0.07559020789483074 0.10477610284023683 0.07911118978177649 0.10477610284054074 0.07853717666330329 C 0.10477610284023683 0.07911118978177649 0.10356625816997893 0.0824783653162053 0.10385326472947871 0.08198125537365393 C 0.10356625816997893 0.0824783653162053 0.10083491418368797 0.08478950253289314 0.10133202412654324 0.08450249597391972 C 0.10083491418368797 0.08478950253289314 0.09760093885593812 0.0855022372569528 0.09788794541521544 0.08542533408133487" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09788794541521544 0.08542533408133487 C 0.09699901971635458 0.08550730774978092 0.08526771203097092 0.08645343958435696 0.08722083702888522 0.08640901810268746 C 0.08526771203097092 0.08645343958435696 0.0721252524433462 0.08578680423178714 0.07445044544024379 0.08595839186136879 C 0.0721252524433462 0.08578680423178714 0.0574525957640617 0.0841674574919595 0.059318521066114044 0.08434996654770766 C 0.0574525957640617 0.0841674574919595 0.05145441021140746 0.08371980957944787 0.05205934181561566 0.08376828319239094" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05205934181561566 0.08376828319239094 C 0.05205934181561566 0.0833853610437255 0.05205934181561566 0.07840737311107483 0.05205934181561566 0.0791732174084057 C 0.05205934181561566 0.07840737311107483 0.05205934181561566 0.07419522947575502 0.05205934181561566 0.07457815162442046" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05205934181561566 0.07457815162442046 C 0.05268669804746293 0.07460136305830956 0.0608436893618735 0.07482357604868259 0.05958761659778293 0.07485668883108965 C 0.0608436893618735 0.07482357604868259 0.06944631357975627 0.07382493397647295 0.06713221498470257 0.07418079823553582 C 0.06944631357975627 0.07382493397647295 0.08991977727491117 0.07037533613920537 0.08735679973842729 0.07058631772233519 C 0.08991977727491117 0.07037533613920537 0.09876554089618263 0.07173757769761487 0.09788794542250914 0.07164901923797797" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22091680954585083,0.15521169650423666) rotate(0) scale(1,1) translate(-0.031948092046045706,-0.031099577484201123)"><path d="M 0.031212026447528192 0.026368683137365956 C 0.03127336524740465 0.026368683137365956 0.03207076964579863 0.026368683137365956 0.03194809204604571 0.026368683137365956 C 0.03207076964579863 0.026368683137365956 0.032745496444439665 0.026368683137365956 0.03268415764456321 0.026368683137365956" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03268415764456321 0.026368683137365956 C 0.03268415764456321 0.026762924332935555 0.03268415764456321 0.03188805987534032 0.03268415764456321 0.031099577484201123 C 0.03268415764456321 0.03188805987534032 0.03268415764456321 0.03622471302660587 0.03268415764456321 0.03583047183103627" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03268415764456321 0.03583047183103627 C 0.03262281884468675 0.03583047183103627 0.0318254144462928 0.03583047183103627 0.03194809204604571 0.03583047183103627 C 0.0318254144462928 0.03583047183103627 0.03115068764765173 0.035830471831036284 0.031212026447528192 0.035830471831036284" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031212026447528192 0.035830471831036284 C 0.031212026447528192 0.035436230635466685 0.031212026447528192 0.03031109509306193 0.031212026447528192 0.031099577484201123 C 0.031212026447528192 0.03031109509306193 0.031212026447528192 0.025974441941796364 0.031212026447528192 0.02636868313736596" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="筋肉">
<g transform="translate(0.2462299045783094,0.15485511047167738) rotate(0) scale(1,1) translate(-0.07737243684807424,-0.07881663137584644)"><path d="M 0.09788794542250914 0.07164901923797797 C 0.09817495198170503 0.0717259224138998 0.10182913407541115 0.07285886390853978 0.10133202413285979 0.07257185734904 C 0.10182913407541115 0.07285886390853978 0.10414027129209899 0.07559020789483074 0.10385326473312557 0.07509309795197547 C 0.10414027129209899 0.07559020789483074 0.10477610284023683 0.07911118978177649 0.10477610284054074 0.07853717666330329 C 0.10477610284023683 0.07911118978177649 0.10356625816997893 0.0824783653162053 0.10385326472947871 0.08198125537365393 C 0.10356625816997893 0.0824783653162053 0.10083491418368797 0.08478950253289314 0.10133202412654324 0.08450249597391972 C 0.10083491418368797 0.08478950253289314 0.09760093885593812 0.0855022372569528 0.09788794541521544 0.08542533408133487" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09788794541521544 0.08542533408133487 C 0.09751795532631381 0.08548113896474394 0.09206027268807113 0.0863255305591779 0.09344806434839599 0.08609499268224369 C 0.09206027268807113 0.0863255305591779 0.0789970136637509 0.08813309028305541 0.08123444549131716 0.08819178860454539 C 0.0789970136637509 0.08813309028305541 0.06416762377795915 0.08502208614650048 0.06659888241760094 0.08539061282436387 C 0.06416762377795915 0.08502208614650048 0.05084771343211689 0.08363437310733642 0.05205934181561566 0.08376946847018468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05205934181561566 0.08376946847018468 C 0.05205934181561566 0.08338654632151925 0.05205934181561566 0.07840855838886858 0.05205934181561566 0.07917440268619945 C 0.05205934181561566 0.07840855838886858 0.05205934181561566 0.07419641475354877 0.05205934181561566 0.0745793369022142" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05205934181561566 0.0745793369022142 C 0.05329444124514818 0.07450511722293399 0.06954146411225327 0.07329783322279763 0.06688053497000589 0.07368870075085154 C 0.06954146411225327 0.07329783322279763 0.08615854698469588 0.0696411685268029 0.0839904915225843 0.06988892656556729 C 0.08615854698469588 0.0696411685268029 0.09405532167367202 0.0708622786750464 0.09289720051534495 0.07071560428567884 C 0.09405532167367202 0.0708622786750464 0.09830384083143949 0.07172680381733623 0.09788794542250914 0.07164901923797797" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22091680954585083,0.15521169650423666) rotate(0) scale(1,1) translate(-0.031948092046045706,-0.031099577484201123)"><path d="M 0.031212026447528192 0.026368683137365956 C 0.03127336524740465 0.026368683137365956 0.03207076964579863 0.026368683137365956 0.03194809204604571 0.026368683137365956 C 0.03207076964579863 0.026368683137365956 0.032745496444439665 0.026368683137365956 0.03268415764456321 0.026368683137365956" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03268415764456321 0.026368683137365956 C 0.03268415764456321 0.026762924332935555 0.03268415764456321 0.03188805987534032 0.03268415764456321 0.031099577484201123 C 0.03268415764456321 0.03188805987534032 0.03268415764456321 0.03622471302660587 0.03268415764456321 0.03583047183103627" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03268415764456321 0.03583047183103627 C 0.03262281884468675 0.03583047183103627 0.0318254144462928 0.03583047183103627 0.03194809204604571 0.03583047183103627 C 0.0318254144462928 0.03583047183103627 0.03115068764765173 0.035830471831036284 0.031212026447528192 0.035830471831036284" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031212026447528192 0.035830471831036284 C 0.031212026447528192 0.035436230635466685 0.031212026447528192 0.03031109509306193 0.031212026447528192 0.031099577484201123 C 0.031212026447528192 0.03031109509306193 0.031212026447528192 0.025974441941796364 0.031212026447528192 0.02636868313736596" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="鎧">
<g id="ベルト">
<g transform="translate(0.22444499815253585,0.15808078825167274) rotate(0) scale(1,1) translate(-0.01139702177694213,-0.015449704851955683)"><path d="M 0.008952255560970991 0.006573825020126086 C 0.009155986078968587 0.006573825020126086 0.01180448281293732 0.006573825020126086 0.01139702177694213 0.006573825020126086 C 0.01180448281293732 0.006573825020126086 0.014045518510910864 0.006573825020126085 0.013841787992913268 0.006573825020126085" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013841787992913268 0.006573825020126085 C 0.013841787992913268 0.006933440333630339 0.013841787992913268 0.011628865434829605 0.013841787992913268 0.010889208782177138 C 0.013841787992913268 0.011628865434829605 0.013841787992913268 0.015829746191103895 0.013841787992913268 0.015449704851955683" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013841787992913268 0.015449704851955683 C 0.013642334769453719 0.015449704851955683 0.011040888275403487 0.015449704851955683 0.011448349311398676 0.015449704851955683 C 0.011040888275403487 0.015449704851955683 0.00874424774843535 0.015449704851955686 0.008952255560970991 0.015449704851955686" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008952255560970991 0.015449704851955686 C 0.008952255560970991 0.015069663512807474 0.00895225556097099 0.01014955212952467 0.00895225556097099 0.010889208782177136 C 0.00895225556097099 0.01014955212952467 0.008952255560970991 0.006214209706621831 0.008952255560970991 0.006573825020126086" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="通常">
<g transform="translate(0.2563082718291271,0.15633900070961787) rotate(0) scale(1,1) translate(-0.01139702177694213,-0.015449704851955683)"><path d="M 0.008609988290735032 0.005057899667700519 C 0.00884224108125229 0.005022875984612159 0.011861527357976649 0.00460653129454101 0.011397021776942132 0.0046376154706401895 C 0.011861527357976649 0.00460653129454101 0.014416308053666487 0.004688829061499552 0.014184055263149229 0.00468488955451037" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014184055263149229 0.00468488955451037 C 0.014184055263149229 0.005237445662229036 0.014184055263149229 0.012212630788588136 0.014184055263149229 0.01131556284713436 C 0.014184055263149229 0.012212630788588136 0.014184055263149229 0.015794216685690792 0.014184055263149229 0.015449704851955683" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014184055263149229 0.015449704851955683 C 0.013956678588405344 0.015449704851955683 0.01099102958518808 0.015449704851955683 0.011455535166222596 0.015449704851955683 C 0.01099102958518808 0.015449704851955683 0.008372859384444402 0.015449704851955685 0.008609988290735032 0.015449704851955685" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008609988290735032 0.015449704851955685 C 0.008609988290735032 0.015105193018220574 0.008609988290735029 0.010449579081779762 0.008609988290735029 0.011315562847134359 C 0.008609988290735029 0.010449579081779762 0.008609988290735032 0.004536427736081033 0.008609988290735032 0.005057899667700519" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="筋肉">
<g transform="translate(0.2563082718291271,0.15633900070961787) rotate(0) scale(1,1) translate(-0.01139702177694213,-0.015449704851955683)"><path d="M 0.008609988290735032 0.004101787511096379 C 0.00884224108125229 0.004079794148757435 0.011861527357976649 0.003837278313128406 0.011397021776942132 0.003837867163029045 C 0.011861527357976649 0.003837278313128406 0.014416308053666487 0.004116125824727014 0.014184055263149229 0.004094721312288709" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014184055263149229 0.004094721312288709 C 0.014184055263149229 0.00469645810685918 0.014184055263149229 0.012261811475439942 0.014184055263149229 0.01131556284713436 C 0.014184055263149229 0.012261811475439942 0.014184055263149229 0.015794216685690792 0.014184055263149229 0.015449704851955683" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014184055263149229 0.015449704851955683 C 0.013956678588405344 0.015449704851955683 0.01099102958518808 0.015449704851955683 0.011455535166222596 0.015449704851955683 C 0.01099102958518808 0.015449704851955683 0.008372859384444402 0.015449704851955685 0.008609988290735032 0.015449704851955685" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008609988290735032 0.015449704851955685 C 0.008609988290735032 0.015105193018220574 0.008609988290735029 0.010369903068729416 0.008609988290735029 0.011315562847134359 C 0.008609988290735029 0.010369903068729416 0.008609988290735032 0.003500639566426547 0.008609988290735032 0.004101787511096379" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="鎧">
<g transform="translate(0.23787217570849742,0.16143521140166617) rotate(0) scale(1,1) translate(-0.028573861601405022,-0.02857386160140503)"><path d="M 0.04328467533100909 0.022503884991751863 C 0.04362765892247284 0.022503884991751863 0.04802135882707837 0.022503884991751863 0.04740047842857411 0.022503884991751863 C 0.04802135882707837 0.022503884991751863 0.051013136920100774 0.022503884991751863 0.05073524011306026 0.022503884991751863" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05073524011306026 0.022503884991751863 C 0.05115016836375842 0.022889967962989723 0.05679644691247457 0.02765722272077772 0.055714379121438194 0.027136880646606205 C 0.05679644691247457 0.02765722272077772 0.06438719314583496 0.028882248984743723 0.06372005360549675 0.028747989881810068" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06372005360549675 0.028747989881810068 C 0.06383463010852838 0.028887954644417187 0.0652105482091211 0.030682138070872125 0.06509497164187639 0.03042756703309551 C 0.0652105482091211 0.030682138070872125 0.06510797247664636 0.03191744861029893 0.06510697241243328 0.031802842335129436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06510697241243328 0.031802842335129436 C 0.06394617337469151 0.031886595783916484 0.048657876284416 0.032782551770657586 0.05117738395953199 0.03280788372057404 C 0.048657876284416 0.032782551770657586 0.03351417167366718 0.03138977353742851 0.034872880311041396 0.03149885893613201" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034872880311041396 0.03149885893613201 C 0.033670130750363764 0.0310649205024559 0.019800496170796607 0.025792586862992396 0.020439885582909822 0.026291597732018678 C 0.019800496170796607 0.025792586862992396 0.027763567514247207 0.025445656072466436 0.027200207365682794 0.025510728507816608" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027200207365682794 0.025510728507816608 C 0.02790765648028219 0.02544133051950448 0.03702996907131938 0.02442738235506565 0.03568959674087552 0.024677952648071048 C 0.03702996907131938 0.02442738235506565 0.04391759854685354 0.0223227126870586 0.043284675331009076 0.022503884991751863" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.24623892264834973,0.15641049479777744) rotate(0) scale(1,1) translate(-0.014497096610846734,-0.014497096610846737)"><path d="M -0.010199041137985166 0.0145627467372568 C -0.009957637936773844 0.0145627467372568 -0.00681939632102666 0.0145627467372568 -0.007302202723449304 0.0145627467372568 C -0.00681939632102666 0.0145627467372568 -0.004163961107702117 0.0145627467372568 -0.004405364308913439 0.0145627467372568" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.004405364308913439 0.0145627467372568 C -0.004163961107702117 0.01470729011565127 -0.0007450209156954409 0.016455261726647956 -0.0015085258943775765 0.016297267277990433 C -0.0007450209156954409 0.016455261726647956 0.005278797212743002 0.01647213119141011 0.004756695435272188 0.016458680121147058" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004756695435272188 0.016458680121147058 C 0.004759776114467775 0.01656210860538755 0.005331889988736729 0.018070919696802 0.004793663585619233 0.017699821932032997 C 0.005331889988736729 0.018070919696802 0.011851721005599768 0.021307435683160864 0.011215412272682138 0.020911853298375076 C 0.011851721005599768 0.021307435683160864 0.01253053138962651 0.022574723653719743 0.012429368380630789 0.02244681054946246" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.012429368380630789 0.02244681054946246 C 0.011227933084478801 0.02228862830147 -0.0038658075396940106 0.02036930925269579 -0.0019878551731930664 0.020548623573552936 C -0.0038658075396940106 0.02036930925269579 -0.010782577087729494 0.020273906626311997 -0.010106060017380538 0.020295038699176683" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.010106060017380538 0.020295038699176683 C -0.010302353494212534 0.020226253638761998 -0.012513237917478173 0.019247519561912327 -0.012461581739364489 0.01946961797420045 C -0.012513237917478173 0.019247519561912327 -0.010537389104629794 0.017220951815307216 -0.010725934154744737 0.017629857751719186 C -0.010537389104629794 0.017220951815307216 -0.010155133386588541 0.014307154152718268 -0.010199041137985171 0.0145627467372568" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="腕輪">
<g transform="translate(0.22491456812846133,0.1555528368646576) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M 0.008910834215220528 0.018518747369234465 C 0.008910834215220528 0.017904915913664853 0.008910834215220528 0.00992510699125991 0.008910834215220528 0.011152769902399131 C 0.008910834215220528 0.00992510699125991 0.008910834215220527 0.0031729609799941976 0.008910834215220527 0.003786792435563808" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008910834215220527 0.003786792435563808 C 0.009097662189152077 0.0037867924355638066 0.011526425850262232 0.003786792435563794 0.011152769902399131 0.003786792435563794 C 0.011526425850262232 0.003786792435563794 0.01358153356350929 0.003786792435563809 0.013394705589577739 0.003786792435563808" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013394705589577739 0.003786792435563808 C 0.013394705589577739 0.004400623891133418 0.013394705589577739 0.012380432813538355 0.013394705589577739 0.011152769902399133 C 0.013394705589577739 0.012380432813538355 0.013394705589577739 0.019132578824804077 0.013394705589577739 0.018518747369234465" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013394705589577739 0.018518747369234465 C 0.013207877615646188 0.018518747369234465 0.010779113954536037 0.018518747369234465 0.011152769902399138 0.018518747369234465 C 0.010779113954536037 0.018518747369234465 0.008724006241288978 0.018518747369234465 0.008910834215220528 0.018518747369234465" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.15744469620947754) rotate(0) scale(1,1) translate(-0.00775832499658671,-0.0077583249965867095)"><path d="M 0.010723549448434913 0.004735670101736355 C 0.01067084190370596 0.005219920462534231 0.00964956238110839 0.011030924792108748 0.01009105891168747 0.010546674431310871 C 0.00964956238110839 0.011030924792108748 0.0049840945509068675 0.010062424070512997 0.005425591081485948 0.010546674431310873 C 0.0049840945509068675 0.010062424070512997 0.004740393000009557 0.00425141974093848 0.00479310054473851 0.004735670101736356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00479310054473851 0.004735670101736356 C 0.004834662049542702 0.004735670101736356 0.00535002470911469 0.004735670101736356 0.00529183860238882 0.004735670101736356 C 0.00535002470911469 0.004735670101736356 0.0055079584273706236 0.004735670101736356 0.005491333825448946 0.004735670101736356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005491333825448946 0.004735670101736356 C 0.005531384002805713 0.005143027653657014 0.006309717638229681 0.010031318276704906 0.005971935953730154 0.009623960724784249 C 0.006309717638229681 0.010031318276704906 0.009882495723942798 0.009216603172863592 0.00954471403944327 0.009623960724784249 C 0.009882495723942798 0.009216603172863592 0.01006536634508125 0.004328312549815696 0.010025316167724481 0.004735670101736355" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010025316167724481 0.004735670101736355 C 0.010041940769646159 0.004735670101736355 0.010282997497510476 0.004735670101736355 0.010224811390784606 0.004735670101736355 C 0.010282997497510476 0.004735670101736355 0.010765110953239105 0.004735670101736355 0.010723549448434913 0.004735670101736355" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.1598933818688592) rotate(0) scale(1,1) translate(-0.0022536622055164745,-0.002253662205516475)"><path d="M 0.0026874881133822546 0.0016352189840652595 C 0.002681273518549439 0.0017346433936267537 0.0025468232522436523 0.0029277363083646843 0.002612912975388467 0.00282831189880319 C 0.0025468232522436523 0.0029277363083646843 0.0018283217124996677 0.0027288874892416964 0.001894411435644482 0.0028283118988031903 C 0.0018283217124996677 0.0027288874892416964 0.0018136217028178788 0.0015357945745037658 0.0018198362976506945 0.00163521898406526" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0018198362976506945 0.00163521898406526 C 0.0018559884566395094 0.0016153341021529612 0.002325966523494104 0.001396600401117675 0.002253662205516474 0.001396600401117675 C 0.002325966523494104 0.001396600401117675 0.0027236402723710695 0.0016551038659775583 0.0026874881133822546 0.0016352189840652595" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.15150706150739202) rotate(0) scale(1,1) translate(-0.006469483550722008,-0.0064694835507220095)"><path d="M 0.0038188477198532354 0.005985083727829324 C 0.004702392996809493 0.005823617120198429 0.01000366465854704 0.006146550335460219 0.009120119381590783 0.005985083727829324 C 0.01000366465854704 0.006146550335460219 0.008236574104634525 0.00711534998124559 0.009120119381590783 0.006953883373614695 C 0.008236574104634525 0.00711534998124559 0.0029353024428969763 0.0067924167659838 0.003818847719853234 0.006953883373614695 C 0.0029353024428969763 0.0067924167659838 0.004702392996809493 0.005823617120198429 0.0038188477198532354 0.005985083727829324 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.16216403191913342) rotate(0) scale(1,1) translate(-0.009906215631991292,-0.007758324996586713)"><path d="M 0.012871440083839492 0.007758324996586713 C 0.012755048903228289 0.008048875213065439 0.011096933021808211 0.01153547781081015 0.011474745916505042 0.011244927594331424 C 0.011096933021808211 0.01153547781081015 0.007959872452780709 0.010954377377852698 0.008337685347477537 0.011244927594331424 C 0.007959872452780709 0.010954377377852698 0.006824599999531882 0.0074677747801079886 0.006940991180143087 0.007758324996586715" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006940991180143087 0.007758324996586715 C 0.006982552684947279 0.007758324996586715 0.007497915344519266 0.007758324996586715 0.007439729237793397 0.007758324996586715 C 0.007497915344519266 0.007758324996586715 0.007655849062775201 0.007758324996586713 0.007639224460853524 0.007758324996586713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007639224460853524 0.007758324996586713 C 0.0077330479257153445 0.007994339977950281 0.00904911443618985 0.010826519754313106 0.008765106039195378 0.010590504772949538 C 0.00904911443618985 0.010826519754313106 0.011331333621781677 0.01035448979158597 0.011047325224787203 0.010590504772949538 C 0.011331333621781677 0.01035448979158597 0.012267030267990881 0.007522310015223144 0.01217320680312906 0.007758324996586713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01217320680312906 0.007758324996586713 C 0.012189831405050738 0.007758324996586713 0.012430888132915052 0.007758324996586713 0.012372702026189182 0.007758324996586713 C 0.012430888132915052 0.007758324996586713 0.012913001588643684 0.007758324996586713 0.012871440083839492 0.007758324996586713" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.22491456812846133,0.14894164181018177) rotate(0) scale(1,1) translate(-0.005610434361182026,-0.007758324996586713)"><path d="M 0.008575658813030226 0.007758324996586713 C 0.008534097308226034 0.007758324996586713 0.008018734648654043 0.007758324996586713 0.008076920755379913 0.007758324996586713 C 0.008018734648654043 0.007758324996586713 0.007860800930398117 0.007758324996586713 0.007877425532319795 0.007758324996586713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007877425532319795 0.007758324996586713 C 0.007783602067457973 0.0075223100152231395 0.006467535556983464 0.0046901302388602595 0.006751543953977937 0.004926145220223833 C 0.006467535556983464 0.0046901302388602595 0.0041853163713916385 0.005162160201587406 0.004469324768386112 0.004926145220223833 C 0.0041853163713916385 0.005162160201587406 0.0032496197251824367 0.007994339977950286 0.003343443190044258 0.007758324996586713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003343443190044258 0.007758324996586713 C 0.0033268185881225806 0.007758324996586713 0.0030857618602582637 0.007758324996586713 0.003143947966984133 0.007758324996586713 C 0.0030857618602582637 0.007758324996586713 0.0026036484045296312 0.007758324996586713 0.002645209909333824 0.007758324996586713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.002645209909333824 0.007758324996586713 C 0.002761601089945028 0.007467774780107985 0.004419716971365101 0.003981172182363247 0.004041904076668271 0.004271722398841975 C 0.004419716971365101 0.003981172182363247 0.007556777540392606 0.004562272615320702 0.007178964645695777 0.004271722398841975 C 0.007556777540392606 0.004562272615320702 0.00869204999364143 0.00804887521306544 0.008575658813030226 0.007758324996586713" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 284 KiB

View File

@@ -0,0 +1,139 @@
id: Neck
original_key:
resource: 胴体
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name: 植性
- name:
- name: 虫性
- name:
- name: 淫タトゥ
- name: 悪タトゥ
- name: ヴィオラ
- name: 首輪
joints:
- position: [
-0.004995337548714474,
0.0004979414188921913
]
- position: [
0.016211003027175944,
0.000497941418892187
]
- position: [
-0.0037357220581254146,
0.005588012340224058
]
- position: [
0.014951387536586905,
0.005588012340224053
]
- position: [
0.5,
0.4887225994119858
]
- position: [
0.5,
0.5073680233284092
]
- position: [
0.011869046253740682,
0.0028891069362062425
]
- position: [
0.011869046253740675,
0.0028891069362062425
]
- position: [
0.011869046253740677,
0.0034307818046324995
]
- position: [
0.015058466988291015,
0.01001728973385724
]
- position: [
0.015058466988291015,
0.01776672804746955
]
- position: [
0.015058466988291015,
0.017380462313904214
]
- position: [
0.015058466988291015,
0.017049287730588635
]
- position: [
0.015058466988291015,
0.016765346922218434
]
- position: [
0.015058466988291015,
0.01652190317164204
]
- position: [
-4.469779268346951E-05,
0.014092319898051394
]
- position: [
-0.0014606006442214666,
0.014092319898051394
]
- position: [
0.0070320685144348955,
0.01602013802246163
]
- position: [
0.005616165662896898,
0.01602013802246163
]
- position: [
-0.0020009652566640285,
0.002418865533895344
]
- position: [
-0.003517875083207439,
0.010573208435388086
]
- position: [
0.013216630735125356,
0.002418865533895344
]
- position: [
0.014733540561668867,
0.010573208435388086
]
- position: [
0.008564895603205596,
0.011152769902399134
]
- position: [
0.016686985802775445,
0.011152769902399133
]
- position: [
0.0021093165318941576,
0.011152769902399134
]
- position: [
0.020196223272904115,
0.011152769902399133
]
- position: [
0.004408768010720679,
0.007758324996586713
]
- position: [
0.007521553876108054,
0.0077583249965867095
]
- position: [
0.007995096117065285,
0.00775832499658671
]

View File

@@ -0,0 +1,199 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g id="植性">
<g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.005607832739230755 -0.016887348938471065 C 0.006511702550134282 -0.016071581735497685 0.017452385780786773 -0.005484285483548832 0.01645427047007308 -0.007098142502790497 C 0.017452385780786773 -0.005484285483548832 0.01732912119178225 0.003899445894583598 0.017585216467795057 0.0024789352924289134 C 0.01732912119178225 0.003899445894583598 0.013030786382096406 0.010570405508952113 0.013381127157919379 0.009947984723065713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013381127157919379 0.009947984723065713 C 0.01273335262302866 0.009771210856014761 0.004312283669449324 0.00782669831845429 0.005607832739230761 0.00782669831845429 C 0.004312283669449324 0.00782669831845429 -0.0028132362143485756 0.010124758590116665 -0.002165461679457857 0.009947984723065713" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.002165461679457857 0.009947984723065713 C -0.002515802455280833 0.009325563937179314 -0.006625646265346379 0.001058424690274233 -0.006369550989333571 0.002478935292428917 C -0.006625646265346379 0.001058424690274233 -0.004240489680897871 -0.008711999522032159 -0.0052386049916115646 -0.007098142502790494 C -0.004240489680897871 -0.008711999522032159 0.006511702550134278 -0.017703116141444444 0.005607832739230751 -0.016887348938471065" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32674028254072546,0.13518806941532685) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.001314951733866789 0.004274966602162994 C 0.0015127445106586361 0.004252514694821034 0.004059289550652383 0.00403418980101276 0.003688465055368955 0.004005543714059472 C 0.004059289550652383 0.00403418980101276 0.005937877395759508 0.004669817639897707 0.005764845677267927 0.004618719645602458" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005764845677267927 0.004618719645602458 C 0.005814973065471353 0.00470761088862233 0.006329121180784609 0.005844465068105948 0.006366374335709049 0.0056854145618409225 C 0.006329121180784609 0.005844465068105948 0.005230427275046769 0.006597484984027919 0.005317807818174637 0.0065273257207827656" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005317807818174637 0.0065273257207827656 C 0.005176866237577176 0.006422577986331618 0.003292937510646117 0.005082656314150679 0.0036265088510051046 0.005270352907368993 C 0.003292937510646117 0.005082656314150679 0.0011223219741052603 0.004192017743395829 0.0013149517338667868 0.0042749666021629955" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3279998980313145,0.1402781403366587) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.001314951733866789 0.004274966602162994 C 0.0015127445106586361 0.004252514694821034 0.004059289550652383 0.00403418980101276 0.003688465055368955 0.004005543714059472 C 0.004059289550652383 0.00403418980101276 0.005937877395759508 0.004669817639897707 0.005764845677267927 0.004618719645602458" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005764845677267927 0.004618719645602458 C 0.005807389411085928 0.004716363595851838 0.006238117328159503 0.005949497554860046 0.006275370483083943 0.00579044704859502 C 0.006238117328159503 0.005949497554860046 0.005238010929432195 0.006588732276798411 0.005317807818174637 0.0065273257207827656" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005317807818174637 0.0065273257207827656 C 0.005176866237577176 0.006422577986331618 0.003292937510646117 0.005082656314150679 0.0036265088510051046 0.005270352907368993 C 0.003292937510646117 0.005082656314150679 0.0011223219741052603 0.004192017743395829 0.0013149517338667868 0.0042749666021629955" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34794662311661584,0.13518806941532685) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.009900713744594641 0.004274966602162962 C 0.009708083984833115 0.004357915460930128 0.0072555852870973365 0.0054580495005872726 0.007589156627456321 0.005270352907368958 C 0.0072555852870973365 0.0054580495005872726 0.005756916079689365 0.0066320734552338945 0.005897857660286824 0.006527325720782746" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005897857660286824 0.006527325720782746 C 0.005810477117158952 0.006457166457537591 0.004812037987827929 0.005526364055575859 0.004849291142752369 0.005685414561840884 C 0.004812037987827929 0.005526364055575859 0.005500947189396969 0.004529828402582569 0.005450819801193539 0.00461871964560244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005450819801193539 0.00461871964560244 C 0.005623851519685118 0.0045676216513071905 0.007898024918375914 0.0039768976271061535 0.007527200423092488 0.004005543714059444 C 0.007898024918375914 0.0039768976271061535 0.010098506521386491 0.004297418509504921 0.009900713744594645 0.004274966602162961" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34668700762602683,0.1402781403366587) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.009900713744594641 0.004274966602162962 C 0.009708083984833115 0.004357915460930128 0.0072555852870973365 0.0054580495005872726 0.007589156627456321 0.005270352907368958 C 0.0072555852870973365 0.0054580495005872726 0.005756916079689365 0.0066320734552338945 0.005897857660286824 0.006527325720782746" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005897857660286824 0.006527325720782746 C 0.005818060771544378 0.006465919164767099 0.004903041840453036 0.0056313965423299564 0.004940294995377476 0.005790447048594982 C 0.004903041840453036 0.0056313965423299564 0.005493363535011544 0.004521075695353061 0.005450819801193539 0.00461871964560244" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005450819801193539 0.00461871964560244 C 0.005623851519685118 0.0045676216513071905 0.007898024918375914 0.0039768976271061535 0.007527200423092488 0.004005543714059444 C 0.007898024918375914 0.0039768976271061535 0.010098506521386491 0.004297418509504921 0.009900713744594645 0.004274966602162961" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3373434528286707,0.14472922449489684) rotate(0) scale(1,1) translate(-0.5,-0.5117992870876407)"><path d="M 0.4917714262970716 0.4887225994119858 C 0.4918632946170116 0.4884190433041556 0.49321670337397344 0.4845541515163135 0.49287384613635143 0.48507992611802325 C 0.49321670337397344 0.4845541515163135 0.49647955930383997 0.4821097480836381 0.4958857131485359 0.48241330419146833 C 0.49647955930383997 0.4821097480836381 0.500685714475244 0.4814372528240605 0.5 0.4814372528240605 C 0.500685714475244 0.4814372528240605 0.5047081330067681 0.48271686029929856 0.5041142868514641 0.48241330419146833 C 0.5047081330067681 0.48271686029929856 0.5074690111012706 0.485605700719733 0.5071261538636486 0.48507992611802325 C 0.5074690111012706 0.485605700719733 0.5083204420228684 0.48902615551981604 0.5082285737029284 0.4887225994119858" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5082285737029284 0.4887225994119858 C 0.5081541620213321 0.49008642556911947 0.5073097784309128 0.5070115706038943 0.5073356335237734 0.5050885132975897 C 0.5073097784309128 0.5070115706038943 0.5079668691773374 0.5123585182368116 0.5079183125886017 0.5117992870876407" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.49208168741139857 0.5117992870876407 C 0.4921302440001342 0.5112400559384698 0.492638511383366 0.5031654559912851 0.4926643664762266 0.5050885132975897 C 0.492638511383366 0.5031654559912851 0.4916970146154753 0.48735877325485216 0.4917714262970716 0.4887225994119858" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="虫性">
<g transform="translate(0.3373434528286707,0.1392728086047507) rotate(0) scale(1,1) translate(-0.01186904625374068,0.0008174492228904934)"><path d="M 0.004529272391151996 -0.0008174492228904934 C 0.005140920213034386 -0.0008174492228904934 0.013092341897505461 -0.0008174492228904934 0.01186904625374068 -0.0008174492228904934 C 0.013092341897505461 -0.0008174492228904934 0.01982046793821176 -0.0008174492228904934 0.019208820116329368 -0.0008174492228904934" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019208820116329368 -0.0008174492228904934 C 0.019225333311366853 -0.0005756311358099535 0.01945519108801594 0.002539075164716017 0.019406978456779182 0.002084367822075986 C 0.01945519108801594 0.002539075164716017 0.019819071127369695 0.00485192814434937 0.019787371691170424 0.004639038888789879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019787371691170424 0.004639038888789879 C 0.01912751123805128 0.00464765106603694 0.010549325347502385 0.004742385015754611 0.011869046253740675 0.004742385015754611 C 0.010549325347502385 0.004742385015754611 0.0032908603631917883 0.004630426711542819 0.003950720816310933 0.004639038888789879" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003950720816310933 0.004639038888789879 C 0.003982420252510205 0.004426149633230388 0.004379326681938944 0.001629660479435955 0.004331114050702189 0.002084367822075986 C 0.004379326681938944 0.001629660479435955 0.00454578558618948 -0.0010592673099710335 0.004529272391151996 -0.0008174492228904934" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.13556625244565396) rotate(0) scale(1,1) translate(-0.01186904625374068,0.0008174492228904934)"><path d="M 0.004434397634210883 -0.0008174492228904934 C 0.005053951685838366 -0.0008174492228904934 0.01310815435699565 -0.0008174492228904934 0.01186904625374068 -0.0008174492228904934 C 0.01310815435699565 -0.0008174492228904934 0.01992324892489801 -0.0008174492228904934 0.01930369487327052 -0.0008174492228904934" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01930369487327052 -0.0008174492228904934 C 0.019295177648248184 -0.0005611412628216818 0.01920145248166486 0.0027215658178223376 0.01920148817300246 0.0022582462979352457 C 0.01920145248166486 0.0027215658178223376 0.01931174811090411 0.0049493965755728914 0.019303266577219366 0.004742385015754611" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019303266577219366 0.004742385015754611 C 0.018683748216929474 0.004742385015754611 0.010630009533160893 0.004742385015754611 0.011869046253740675 0.004742385015754611 C 0.010630009533160893 0.004742385015754611 0.0038153075699720834 0.004742385015754611 0.004434825930261975 0.004742385015754611" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004434825930261975 0.004742385015754611 C 0.004443307463946719 0.004535373455936331 0.004536568643141314 0.001794926778048153 0.004536604334478905 0.0022582462979352453 C 0.004536568643141314 0.001794926778048153 0.004425880409188548 -0.001073757182959305 0.004434397634210883 -0.0008174492228904934" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.13185969628655722) rotate(0) scale(1,1) translate(-0.011869046253740682,0.0008174492228904934)"><path d="M 0.004260127102606229 -0.0008174492228904934 C 0.0048942036985341 -0.0008174492228904934 0.013137199445596421 -0.0008174492228904934 0.01186904625374068 -0.0008174492228904934 C 0.013137199445596421 -0.0008174492228904934 0.020112042000802993 -0.0008174492228904934 0.019477965404875123 -0.0008174492228904934" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019477965404875123 -0.0008174492228904934 C 0.019464240386909856 -0.0005347931868257085 0.019291481406263744 0.003037742729774018 0.01931326518929192 0.002574423209886926 C 0.019291481406263744 0.003037742729774018 0.019208501243474122 0.004923048499576918 0.01921656000853703 0.004742385015754611" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01921656000853703 0.004742385015754611 C 0.018604267195637333 0.004742385015754611 0.010644460627941287 0.004742385015754611 0.011869046253740675 0.004742385015754611 C 0.010644460627941287 0.004742385015754611 0.003909239686044675 0.004742385015754611 0.004521532498944368 0.004742385015754611" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004521532498944368 0.004742385015754611 C 0.004513473733881458 0.004561721531932304 0.004403043535161278 0.0021111036899998338 0.004424827318189456 0.0025744232098869257 C 0.004403043535161278 0.0021111036899998338 0.00424640208464096 -0.0011001052589552783 0.004260127102606229 -0.0008174492228904934" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.011869046253740675,-0.011869046253740675)"><path d="M 0.004045884399118473 -0.0002757743544642387 C 0.004697814553670324 -0.0002757743544642387 0.013172906562844384 -0.0002757743544642387 0.01186904625374068 -0.0002757743544642387 C 0.013172906562844384 -0.0002757743544642387 0.020344138262914768 -0.0002757743544642387 0.019692208108362915 -0.0002757743544642387" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019692208108362915 -0.0002757743544642387 C 0.019677401373936972 -1.4366766783303279E-05 0.019487746952850892 0.003324436217594078 0.019514527295251598 0.002861116697706986 C 0.019487746952850892 0.003324436217594078 0.019358870391579682 0.005485971816387022 0.019370843999554445 0.0052840598841808655" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019370843999554445 0.0052840598841808655 C 0.018745694187403298 0.0052840598841808655 0.010618746629438382 0.0052840598841808655 0.011869046253740675 0.0052840598841808655 C 0.010618746629438382 0.0052840598841808655 0.0037420986957757774 0.0052840598841808655 0.004367248507926923 0.0052840598841808655" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004367248507926923 0.0052840598841808655 C 0.0043552748999521615 0.005082147951974709 0.004196784869829075 0.002397797177819894 0.004223565212229779 0.002861116697706986 C 0.004196784869829075 0.002397797177819894 0.004031077664692531 -0.000537181942145174 0.004045884399118473 -0.0002757743544642387" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="鱗">
<g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.015058466988291021,-0.015058466988291016)"><path d="M 0.015058466988291011 0.006166407722884363 C 0.015577254404057335 0.006081894243999459 0.02192456001352415 0.005152453078590644 0.021283915977486904 0.0051522459762655135 C 0.02192456001352415 0.005152453078590644 0.022868052041008863 0.006253613531995967 0.02274619542073794 0.006168892950785932" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02274619542073794 0.006168892950785932 C 0.022636289954531045 0.006307703936371517 0.021192133979287313 0.00815532450973556 0.02142732982625519 0.007834624777812951 C 0.021192133979287313 0.00815532450973556 0.019798554876362433 0.010199178480194263 0.019923845257123415 0.01001728973385724" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019923845257123415 0.01001728973385724 C 0.01951839706805405 0.010069598443341128 0.014247570610152277 0.010644994247663917 0.015058466988291011 0.010644994247663917 C 0.014247570610152277 0.010644994247663917 0.009787640530389245 0.00996498102437335 0.010193088719458612 0.01001728973385724" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010193088719458612 0.01001728973385724 C 0.010067798338697632 0.009835400987520216 0.008454408303358965 0.007513925045890342 0.008689604150326841 0.007834624777812951 C 0.008454408303358965 0.007513925045890342 0.0072608330896371965 0.006030081965200347 0.007370738555844092 0.006168892950785932" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007370738555844092 0.006168892950785932 C 0.007492595176115013 0.006084172369575897 0.009473662035132379 0.005152038873940383 0.008833017999095135 0.0051522459762655135 C 0.009473662035132379 0.005152038873940383 0.015577254404057335 0.0062509212017692675 0.015058466988291011 0.006166407722884363" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.13525678348123163) rotate(0) scale(1,1) translate(-0.015058466988291021,-0.015058466988291016)"><path d="M 0.015058466988291011 0.01446507808331168 C 0.015503262348883664 0.014392618339352735 0.020945283495800274 0.013595738720160355 0.02039601131540284 0.013595561155804346 C 0.020945283495800274 0.013595738720160355 0.02175420997286498 0.014539846163898742 0.0216497331530602 0.014467208855583788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0216497331530602 0.014467208855583788 C 0.021555502953971063 0.01458622192435023 0.020317319724696466 0.016170325613438227 0.02051897076399055 0.01589536568078108 C 0.020317319724696466 0.016170325613438227 0.019122499841326253 0.017922674911360258 0.019229920681531197 0.01776672804746955" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019229920681531197 0.01776672804746955 C 0.018882299540427847 0.0178115762272633 0.014363224706084313 0.018304906204994552 0.015058466988291011 0.018304906204994552 C 0.014363224706084313 0.018304906204994552 0.010539392153947488 0.017721879867675802 0.010887013295050835 0.01776672804746955" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010887013295050835 0.01776672804746955 C 0.01077959245484589 0.017610781183578846 0.009396312173297401 0.015620405748123931 0.009597963212591484 0.01589536568078108 C 0.009396312173297401 0.015620405748123931 0.008372970624432697 0.014348195786817347 0.008467200823521835 0.014467208855583788" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008467200823521835 0.014467208855583788 C 0.008571677643326616 0.014394571547268835 0.010270194841576633 0.013595383591448337 0.009720922661179202 0.013595561155804346 C 0.010270194841576633 0.013595383591448337 0.015503262348883662 0.014537537827270625 0.015058466988291011 0.01446507808331168" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.13796504454041017) rotate(0) scale(1,1) translate(-0.015058466988291021,-0.015058466988291016)"><path d="M 0.015058466988291011 0.01454971017588436 C 0.015439823410579137 0.01448758500290756 0.020105676291416765 0.013804360339402492 0.019634744055748516 0.013804208100162758 C 0.020105676291416765 0.013804360339402492 0.020799229629690115 0.014613814458977692 0.020709653816309993 0.014551537046761159" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020709653816309993 0.014551537046761159 C 0.020628863199365945 0.014653575876594787 0.019567275853166637 0.016011746777026607 0.019740166412981403 0.015776003004764685 C 0.019567275853166637 0.016011746777026607 0.0185428671556621 0.017514167256332508 0.018634967098532816 0.017380462313904214" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.018634967098532816 0.017380462313904214 C 0.018336925422679333 0.01741891402205488 0.014462383636584045 0.01784188281171221 0.015058466988291011 0.01784188281171221 C 0.014462383636584045 0.01784188281171221 0.011183925202195735 0.01734201060575355 0.011481966878049218 0.017380462313904214" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011481966878049218 0.017380462313904214 C 0.011389866935178503 0.01724675737147592 0.010203877003785868 0.015540259232502764 0.010376767563600632 0.015776003004764685 C 0.010203877003785868 0.015540259232502764 0.009326489543327994 0.014449498216927531 0.009407280160272043 0.014551537046761159" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009407280160272043 0.014551537046761159 C 0.009496855973652166 0.014489259634544626 0.010953122156501773 0.013804055860923025 0.010482189920833525 0.013804208100162758 C 0.010953122156501773 0.013804055860923025 0.015439823410579135 0.014611835348861159 0.015058466988291011 0.01454971017588436" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.015058466988291021,-0.015058466988291016)"><path d="M 0.015058466988291011 0.01462227161625386 C 0.015385432450850292 0.014569007046072877 0.019385818064558455 0.01398322730020022 0.01898205253900239 0.013983096774082054 C 0.019385818064558455 0.01398322730020022 0.01998045335796057 0.014677233025971006 0.019903653294963786 0.014623837929671856" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019903653294963786 0.014623837929671856 C 0.019834385439761383 0.014711323471400462 0.018924206988813752 0.015875785247158197 0.019072439032534937 0.01567366443041513 C 0.018924206988813752 0.015875785247158197 0.018045904581790798 0.017163923005603092 0.01812486877030958 0.017049287730588635" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01812486877030958 0.017049287730588635 C 0.0178693352884747 0.017082255263864313 0.014547400024621251 0.017444898129896764 0.015058466988291011 0.017444898129896764 C 0.014547400024621251 0.017444898129896764 0.011736531724437577 0.017016320197312956 0.011992065206272457 0.017049287730588635" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011992065206272457 0.017049287730588635 C 0.011913101017753678 0.016934652455574177 0.010896262900325917 0.015471543613672065 0.011044494944047101 0.01567366443041513 C 0.010896262900325917 0.015471543613672065 0.010144012826415846 0.01453635238794325 0.010213280681618251 0.014623837929671856" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010213280681618251 0.014623837929671856 C 0.010290080744615035 0.014570442833372705 0.011538646963135715 0.013982966247963888 0.011134881437579652 0.013983096774082054 C 0.011538646963135715 0.013982966247963888 0.01538543245085029 0.014675536186434843 0.015058466988291011 0.01462227161625386" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.14228878147796303) rotate(0) scale(1,1) translate(-0.015058466988291021,-0.015058466988291016)"><path d="M 0.015058466988291011 0.01468448398119066 C 0.015338799001752775 0.014638816270331739 0.018768629617305813 0.014136583360714172 0.01842245114983218 0.01413647145088361 C 0.018768629617305813 0.014136583360714172 0.01927845505198645 0.014731606519846898 0.019212608597974582 0.014685826899157414" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019212608597974582 0.014685826899157414 C 0.01915322007062042 0.014760834815496978 0.0183728558212392 0.015759215230487265 0.01849994626972465 0.015585921895232181 C 0.0183728558212392 0.015759215230487265 0.017619821295017893 0.016863632341133954 0.017687523216149182 0.016765346922218434" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017687523216149182 0.016765346922218434 C 0.017468435197161 0.016793612461060668 0.014620290950314651 0.017104533388325245 0.015058466988291011 0.017104533388325245 C 0.014620290950314651 0.017104533388325245 0.012210322741444676 0.0167370813833762 0.012429410760432856 0.016765346922218434" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.012429410760432856 0.016765346922218434 C 0.012361708839301567 0.016667061503302914 0.01148989725837194 0.015412628559977095 0.01161698770685739 0.015585921895232181 C 0.01148989725837194 0.015412628559977095 0.010844936851253296 0.01461081898281785 0.010904325378607457 0.014685826899157414" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010904325378607457 0.014685826899157414 C 0.010970171832619325 0.01464004727846793 0.012040661294223492 0.014136359541053047 0.011694482826749862 0.01413647145088361 C 0.012040661294223492 0.014136359541053047 0.015338799001752773 0.014730151692049581 0.015058466988291011 0.01468448398119066" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.14399566141189044) rotate(0) scale(1,1) translate(-0.015058466988291021,-0.015058466988291016)"><path d="M 0.015058466988291011 0.01473782330757835 C 0.015298816648332792 0.014698668953980682 0.018239467672342576 0.01426806701309732 0.017942662908792373 0.014267971064406342 C 0.018239467672342576 0.01426806701309732 0.01867657925440189 0.014778224994158743 0.018620124150893466 0.014738974691870096" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.018620124150893466 0.014738974691870096 C 0.01856920591225319 0.01480328460414173 0.017900141113939963 0.015659271012444027 0.018009105287210177 0.015510693639129698 C 0.017900141113939963 0.015659271012444027 0.017254508137020973 0.016606170632684734 0.01731255407165091 0.01652190317164204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01731255407165091 0.01652190317164204 C 0.01712471348137092 0.0165461373380069 0.014682785807731028 0.016812713168020365 0.015058466988291011 0.016812713168020365 C 0.014682785807731028 0.016812713168020365 0.012616539314651136 0.016497669005277178 0.012804379904931126 0.01652190317164204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.012804379904931126 0.01652190317164204 C 0.012746333970301187 0.016437635710599342 0.01199886451610165 0.01536211626581537 0.012107828689371863 0.015510693639129698 C 0.01199886451610165 0.01536211626581537 0.0114458915870483 0.014674664779598463 0.011496809825688575 0.014738974691870096" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011496809825688575 0.014738974691870096 C 0.011553264929197 0.01469972438958145 0.012471075831339874 0.014267875115715364 0.01217427106778967 0.014267971064406342 C 0.012471075831339874 0.014267875115715364 0.01529881664833279 0.014776977661176019 0.015058466988291011 0.01473782330757835" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="淫タトゥ">
<g id="ハート">
<g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.0014957944219115926 0.014003296268374951 C -0.0014957944219115926 0.014060056929183882 -0.0014957944219115924 0.014757466836101045 -0.0014957944219115924 0.014684424198082125 C -0.0014957944219115924 0.014757466836101045 -0.0014957944219115922 0.01489608990181197 -0.0014957944219115922 0.014879807924601982" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014957944219115922 0.014879807924601982 C -0.001582222368808961 0.014800768758597389 -0.002697838857204149 0.01379023340157753 -0.002532929784680017 0.013931337932546865 C -0.002697838857204149 0.01379023340157753 -0.003616043715911151 0.013045576723328138 -0.0034747032922011747 0.013186553552969974 C -0.003616043715911151 0.013045576723328138 -0.004305982001533207 0.012070283135885066 -0.00422901486919973 0.012239615976844845 C -0.004305982001533207 0.012070283135885066 -0.004375656842695046 0.010987300572338984 -0.004398308880202893 0.011154559461452633 C -0.004375656842695046 0.010987300572338984 -0.0038479250002202586 0.010119251904708663 -0.003957190419105561 0.01023250930748105 C -0.0038479250002202586 0.010119251904708663 -0.0029416524100105514 0.009767805901055292 -0.003087123853579261 0.009795470628183998 C -0.0029416524100105514 0.009767805901055292 -0.002078922310308743 0.00996423378853267 -0.002211533096281049 0.009900532581936568 C -0.002078922310308743 0.00996423378853267 -0.0014361495323808042 0.010614831151120588 -0.0014957944219115922 0.010559885107337201" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014957944219115922 0.010559885107337201 C -0.0014957944219115922 0.01057732819951686 -0.0014957944219115924 0.01081962701418656 -0.0014957944219115924 0.01076920221349311 C -0.0014957944219115924 0.01081962701418656 -0.0014957944219115926 0.011197964424172379 -0.0014957944219115926 0.011164982715658588" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014957944219115926 0.011164982715658588 C -0.001562937637112398 0.011118148657612768 -0.0024192491209081286 0.010546720184623371 -0.002301513004321256 0.010602974019108742 C -0.0024192491209081286 0.010546720184623371 -0.0030073175695245744 0.010504715242544134 -0.0029086278209540647 0.010489936701834136 C -0.0030073175695245744 0.010504715242544134 -0.003556170947378955 0.010851978684806207 -0.0034857899871673717 0.01078031650762871 C -0.003556170947378955 0.010851978684806207 -0.003765295783785617 0.011461349353366098 -0.003753199343493061 0.011349882827964104 C -0.003765295783785617 0.011461349353366098 -0.0035746746804021868 0.01223871177956573 -0.0036309472706780414 0.012117914812452644 C -0.0035746746804021868 0.01223871177956573 -0.002974244931174429 0.012903109943185657 -0.003077928260182804 0.012799446433321137 C -0.002974244931174429 0.012903109943185657 -0.00225490283605494 0.013462197750414701 -0.002386747322577541 0.013361876930826884 C -0.00225490283605494 0.013462197750414701 -0.001421548346856097 0.01405674787983729 -0.0014957944219115926 0.014003296268374951" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M -0.0014957944219115926 0.014003296268374951 C -0.0014215483468560965 0.013949844656912612 -0.0004729970347230404 0.013261556111239067 -0.0006048415212456397 0.013361876930826884 C -0.0004729970347230404 0.013261556111239067 0.00019002274536797332 0.012695782923456616 8.633941635959859E-05 0.012799446433321137 C 0.00019002274536797332 0.012695782923456616 0.0006956310171307135 0.011997117845339557 0.0006393584268548572 0.012117914812452644 C 0.0006956310171307135 0.011997117845339557 0.0007495140593773178 0.01123841630256211 0.0007616104996698742 0.011349882827964104 C 0.0007495140593773178 0.01123841630256211 0.00042382018313259697 0.010708654330451213 0.0004942011433441806 0.01078031650762871 C 0.00042382018313259697 0.010708654330451213 -0.00018165077143964125 0.010475158161124138 -8.296102286912961E-05 0.010489936701834136 C -0.00018165077143964125 0.010475158161124138 -0.0008078119560888309 0.010659227853594112 -0.000690075839501959 0.010602974019108742 C -0.0008078119560888309 0.010659227853594112 -0.0015629376371123955 0.011211816773704409 -0.0014957944219115926 0.011164982715658588" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014957944219115926 0.011164982715658588 C -0.0014957944219115926 0.011132001007144798 -0.0014957944219115924 0.010718777412799661 -0.0014957944219115924 0.01076920221349311 C -0.0014957944219115924 0.010718777412799661 -0.0014957944219115922 0.010542442015157543 -0.0014957944219115922 0.010559885107337201" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014957944219115922 0.010559885107337201 C -0.0014361495323808016 0.010504939063553815 -0.0006474449615698032 0.009836831375340468 -0.0007800557475421062 0.009900532581936568 C -0.0006474449615698032 0.009836831375340468 0.00024100645332474638 0.009823135355312705 9.553500975604337E-05 0.009795470628183998 C 0.00024100645332474638 0.009823135355312705 0.0010748669941676348 0.010345766710253437 0.00096560157528233 0.01023250930748105 C 0.0010748669941676348 0.010345766710253437 0.001429372073887552 0.011321818350566282 0.0014067200363796998 0.011154559461452633 C 0.001429372073887552 0.011321818350566282 0.0011604588930430775 0.012408948817804624 0.0012374260253765561 0.012239615976844845 C 0.0011604588930430775 0.012408948817804624 0.00034177402466797826 0.01332753038261181 0.0004831144483779573 0.013186553552969974 C 0.00034177402466797826 0.01332753038261181 -0.0006235681316673214 0.014072442463516199 -0.00045865905914319223 0.013931337932546865 C -0.0006235681316673214 0.014072442463516199 -0.001582222368808959 0.014958847090606575 -0.0014957944219115922 0.014879807924601982" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0014957944219115922 0.014879807924601982 C -0.0014957944219115922 0.014863525947391994 -0.0014957944219115924 0.014611381560063206 -0.0014957944219115924 0.014684424198082125 C -0.0014957944219115924 0.014611381560063206 -0.0014957944219115926 0.01394653560756602 -0.0014957944219115926 0.014003296268374951" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.016032243425911998,-0.016032243425912)"><path d="M 0.008253548296563242 0.01948195548803172 C 0.00827983522552578 0.019289780547574648 0.00860574274469366 0.016793949091223198 0.008568991444113693 0.017175856202546858 C 0.00860574274469366 0.016793949091223198 0.008705028275140286 0.014709337981281243 0.008694563903522856 0.01489907015214783" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008694563903522856 0.01489907015214783 C 0.008770135045462119 0.01506305079339721 0.009813640235474166 0.017210871540236334 0.009601417606794 0.016866837847140395 C 0.009813640235474166 0.017210871540236334 0.0115661725165742 0.019443870098227192 0.011241235447684851 0.01902747446929911 C 0.0115661725165742 0.019443870098227192 0.013688948015614629 0.022099927971358912 0.013500662433466185 0.02186358539427739" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013500662433466185 0.02186358539427739 C 0.013230079237785585 0.021686760103635943 0.009879526849839842 0.019494323375319388 0.010253664085298986 0.019741681906580044 C 0.009879526849839842 0.019494323375319388 0.008844339292228479 0.018873639150937146 0.009011015607956457 0.018895283019149507 C 0.008844339292228479 0.018873639150937146 0.008190426020613812 0.019530844860438577 0.008253548296563246 0.019481955488031725" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.016032243425911998,-0.016032243425912)"><path d="M 0.02381093855526084 0.019481955488031725 C 0.023747816279311405 0.019433066115624873 0.022886794928139637 0.01891692688736187 0.023053471243867613 0.018895283019149507 C 0.022886794928139637 0.01891692688736187 0.021436685531065966 0.0199890404378407 0.02181082276652511 0.019741681906580044 C 0.021436685531065966 0.0199890404378407 0.018293241222677264 0.022040410684918837 0.01856382441835787 0.02186358539427739" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01856382441835787 0.02186358539427739 C 0.018752110000506313 0.021627242817195868 0.021148188473028535 0.018611078840371026 0.02082325140413919 0.01902747446929911 C 0.021148188473028535 0.018611078840371026 0.02267529187371021 0.016522804154044456 0.02246306924503004 0.016866837847140395 C 0.02267529187371021 0.016522804154044456 0.02344549409024048 0.014735089510898448 0.023369922948301213 0.01489907015214783" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.023369922948301213 0.01489907015214783 C 0.02338038731991865 0.015088802323014416 0.0235322467082904 0.017557763313870517 0.02349549540771043 0.017175856202546858 C 0.0235322467082904 0.017557763313870517 0.023837225484223377 0.019674130428488795 0.02381093855526084 0.01948195548803172" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="悪タトゥ">
<g id="文字">
<g id="文字a">
<g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M -0.002947298638336362 0.011775445912153334 C -0.002862737773591732 0.011808129913731277 -0.0017693461271262798 0.012223155065843646 -0.0019325682614007988 0.01216765393108865 C -0.0017693461271262798 0.012223155065843646 -0.0008313104879823563 0.012483196725148658 -0.0009886330270421338 0.012441459529213304 C -0.0008313104879823563 0.012483196725148658 3.396347684641971E-05 0.012687420345071214 -4.4697792683469024E-05 0.012668500282312914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -4.4697792683469024E-05 0.012668500282312914 C -4.4697792683469065E-05 0.01277665952791651 -4.469779268346963E-05 0.014182729720763275 -4.469779268346951E-05 0.01396641122955608 C -4.469779268346963E-05 0.014182729720763275 -4.469779268347055E-05 0.01548064066800644 -4.4697792683470433E-05 0.015264322176799246 C -4.469779268347055E-05 0.01548064066800644 -4.469779268347096E-05 0.01667039236964601 -4.469779268347092E-05 0.016562233124042414" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -4.469779268347092E-05 0.016562233124042414 C -0.00012335906221335962 0.016543313061284114 -0.0011459555661019127 0.016293455175007444 -0.0009886330270421353 0.0163351923709428 C -0.0011459555661019127 0.016293455175007444 -0.00209223442387775 0.01600588563806315 -0.0019325682614007988 0.016061386772818147 C -0.00209223442387775 0.01600588563806315 -0.002985631869712609 0.015636494752304872 -0.002904626976765547 0.015669178753882816" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.002904626976765547 0.015669178753882816 C -0.0029022833533483734 0.01556101950827922 -0.0028753324168912194 0.014154949315432465 -0.0028765034957594633 0.014371267806639658 C -0.0028753324168912194 0.014154949315432465 -0.0028964736255613637 0.012857038368189308 -0.002890574030346622 0.013073356859396501 C -0.0028964736255613637 0.012857038368189308 -0.002952025689002175 0.011667286666549738 -0.002947298638336363 0.011775445912153334" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3316825893730903,0.1383701426112552) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.00804287215669479 0.006733974230442759 C 0.008027839391891948 0.006883240989069733 0.007971812198366322 0.008803482686912395 0.00786247897906067 0.008525175333966451 C 0.007971812198366322 0.008803482686912395 0.009479236772471106 0.010202703060113049 0.00935487078836261 0.01007366246579408" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00935487078836261 0.01007366246579408 C 0.00927385405213246 0.00995704163564116 0.008169557064964207 0.00860717531111431 0.008382669953600794 0.008674212503959031 C 0.008169557064964207 0.00860717531111431 0.006665419972317121 0.009318799788965623 0.006797516124723557 0.009269216151657423" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006797516124723557 0.009269216151657423 C 0.006856752304110656 0.009115635036062497 0.007612129946699679 0.00721497260441709 0.007508350277368743 0.007426242764518312 C 0.007612129946699679 0.00721497260441709 0.008087415646638625 0.006676285185936463 0.008042872156694789 0.006733974230442759" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3316825893730903,0.1383701426112552) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04597671965288264 0.044593825016440165 C 0.045997114562078695 0.044706106319853466 0.04582609393325228 0.04536611360469924 0.04584966520367844 0.04535353598563966 C 0.04582609393325228 0.04536611360469924 0.04564883944106983 0.04468349017212305 0.04569386440776874 0.04474475644515511 C 0.04564883944106983 0.04468349017212305 0.045272559494406554 0.04457339164650064 0.045309365603291483 0.044618340709254946 C 0.045272559494406554 0.04457339164650064 0.045276821158652454 0.044154352661722206 0.04525219110114959 0.044205367692103446 C 0.045276821158652454 0.044154352661722206 0.04566530367263689 0.04403853178837476 0.0456049262933258 0.04400616034468003 C 0.04566530367263689 0.04403853178837476 0.045997114562078695 0.044706106319853466 0.04597671965288264 0.044593825016440165 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.33309849222462834,0.1383701426112552) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.014596318406723147 C 0.00427892408088879 0.014607452893633872 0.005301520584777345 0.01475171301904721 0.005144198045717568 0.014729932249651845 C 0.005301520584777345 0.01475171301904721 0.006245455819136009 0.014876042412890356 0.006088133280076231 0.014857687639467522 C 0.006245455819136009 0.014876042412890356 0.007110729783964785 0.014957898021664046 0.007032068514434896 0.014950189530725851" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007032068514434896 0.014950189530725851 C 0.007032068514434896 0.015058348776329448 0.0070320685144348955 0.01646441896917621 0.0070320685144348955 0.016248100477969016 C 0.0070320685144348955 0.01646441896917621 0.007032068514434895 0.01776232991641937 0.007032068514434895 0.017546011425212178 C 0.007032068514434895 0.01776232991641937 0.007032068514434895 0.018952081618058936 0.007032068514434895 0.01884392237245534" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007032068514434895 0.01884392237245534 C 0.006953407244905006 0.018836213881517145 0.005930810741016453 0.01873306570777418 0.00608813328007623 0.018751420481197014 C 0.005930810741016453 0.01873306570777418 0.004986875506657789 0.01860188432198598 0.005144198045717566 0.018623665091381345 C 0.004986875506657789 0.01860188432198598 0.004121601541829013 0.018478916761541914 0.004200262811358902 0.01849005124845264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004200262811358902 0.01849005124845264 C 0.004200262811358902 0.018381892002849044 0.004200262811358902 0.01697582181000229 0.004200262811358902 0.017192140301209483 C 0.004200262811358902 0.01697582181000229 0.004200262811358902 0.015677910862759124 0.004200262811358902 0.015894229353966317 C 0.004200262811358902 0.015677910862759124 0.004200262811358902 0.014488159161119549 0.004200262811358902 0.014596318406723147" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33451439507616637,0.1383701426112552) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.006888693545051495 0.007007134038376759 C 0.006938389705174437 0.0071367029372632375 0.0076804934844563145 0.00869549606910312 0.007485047466526798 0.008561960825014503 C 0.0076804934844563145 0.00869549606910312 0.009379795618012266 0.008613523312642287 0.009234045760205692 0.00860955696744015" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009234045760205692 0.00860955696744015 C 0.009175724027218677 0.008527885398831292 0.008332242745492338 0.007752838215584968 0.008534184964361518 0.007629498144133853 C 0.008332242745492338 0.007752838215584968 0.006667118647893359 0.010294649464913512 0.006810739133775525 0.010089637824853538" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006810739133775525 0.010089637824853538 C 0.0068365859809728135 0.009991861856770114 0.007127397501082648 0.008659450892312714 0.007120901300142984 0.008916326207852446 C 0.007127397501082648 0.008659450892312714 0.00686934289879387 0.006848034690920452 0.006888693545051494 0.007007134038376759" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33451439507616637,0.1383701426112552) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04501050873883806 0.046883908220560155 C 0.04494070581703465 0.04685147734064038 0.044772428471609116 0.04644565514436118 0.04476927542628624 0.046500790297527045 C 0.044772428471609116 0.04644565514436118 0.04510894397727781 0.04621823295998795 0.04504834528271258 0.046222286382569755 C 0.04510894397727781 0.04621823295998795 0.04557397477044242 0.04643770681020093 0.04549645976106902 0.04645214922654539 C 0.04557397477044242 0.04643770681020093 0.04598772962243156 0.04608546168893775 0.045978525395193384 0.046048977386436166 C 0.04598772962243156 0.04608546168893775 0.045526242433230855 0.04695953842607471 0.04560691048792713 0.04688996085656438 C 0.045526242433230855 0.04695953842607471 0.04494070581703465 0.04685147734064038 0.04501050873883806 0.046883908220560155 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.33593029792770435,0.1383701426112552) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.014950189530725851 C 0.00427892408088879 0.01495339626295614 0.005301520584777345 0.014991877049719606 0.005144198045717568 0.014988670317489317 C 0.005301520584777345 0.014991877049719606 0.006245455819136009 0.014985463585259028 0.006088133280076231 0.014988670317489317 C 0.006245455819136009 0.014985463585259028 0.007110729783964785 0.014946982798495562 0.007032068514434896 0.014950189530725851" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007032068514434896 0.014950189530725851 C 0.007032068514434896 0.015058348776329448 0.0070320685144348955 0.01646441896917621 0.0070320685144348955 0.016248100477969016 C 0.0070320685144348955 0.01646441896917621 0.007032068514434895 0.01776232991641937 0.007032068514434895 0.017546011425212178 C 0.007032068514434895 0.01776232991641937 0.007032068514434895 0.018952081618058936 0.007032068514434895 0.01884392237245534" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007032068514434895 0.01884392237245534 C 0.006953407244905006 0.01884712910468563 0.005930810741016453 0.018885609891449093 0.00608813328007623 0.018882403159218804 C 0.005930810741016453 0.018885609891449093 0.004986875506657789 0.018879196426988515 0.005144198045717566 0.018882403159218804 C 0.004986875506657789 0.018879196426988515 0.004121601541829013 0.01884071564022505 0.004200262811358902 0.01884392237245534" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004200262811358902 0.01884392237245534 C 0.004200262811358902 0.018735763126851743 0.004200262811358902 0.01732969293400499 0.004200262811358902 0.01754601142521218 C 0.004200262811358902 0.01732969293400499 0.004200262811358902 0.016031781986761823 0.004200262811358902 0.016248100477969016 C 0.004200262811358902 0.016031781986761823 0.004200262811358902 0.014842030285122255 0.004200262811358902 0.014950189530725851" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373462007792424,0.1383701426112552) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007198591459628137 0.007438172552898723 C 0.007216936311335943 0.007614261981539172 0.007530766643119371 0.0097628431982185 0.007418729680121819 0.009551245696584101 C 0.007530766643119371 0.0097628431982185 0.008698258822503026 0.00988296043149595 0.008543035015598754 0.009977342572511514 C 0.008698258822503026 0.00988296043149595 0.00934294705858761 0.008288769790387819 0.009281415362973082 0.008418660004397335" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009281415362973082 0.008418660004397335 C 0.00925533556656654 0.008582681935212031 0.008793100990600468 0.01053841870458601 0.008968457806094591 0.010386923174173683 C 0.008793100990600468 0.01053841870458601 0.007027856557956018 0.01022407996894289 0.007177133577043601 0.010236606369345258" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007177133577043601 0.010236606369345258 C 0.007151090891444247 0.010139869709877498 0.006866409506733399 0.008842563637694922 0.006864621349851354 0.009075766455732133 C 0.006866409506733399 0.008842563637694922 0.007226422302109535 0.007301706394329272 0.007198591459628137 0.007438172552898723" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373462007792424,0.1383701426112552) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04520374975229266 0.04489440252200314 C 0.04522293932235523 0.04500668382541644 0.04506202601269246 0.0458430613829281 0.045084204221036435 0.045816916819817304 C 0.04506202601269246 0.0458430613829281 0.044895247260997986 0.045146871006300715 0.04493761125216499 0.045208137279332775 C 0.044895247260997986 0.045146871006300715 0.04454120545918251 0.045036772480678285 0.04457583632703234 0.04508172154343259 C 0.04454120545918251 0.045036772480678285 0.04454521525907147 0.04461773349589985 0.04452204083796703 0.04466874852628109 C 0.04454521525907147 0.04461773349589985 0.04491073845647943 0.04448834567850117 0.04485392938028563 0.044469541178857666 C 0.04491073845647943 0.04448834567850117 0.04522293932235523 0.04500668382541644 0.04520374975229266 0.04489440252200314 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.33876210363078035,0.1383701426112552) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.014950189530725851 C 0.00427892408088879 0.014942481039787656 0.005301520584777345 0.014839332866044688 0.005144198045717568 0.014857687639467522 C 0.005301520584777345 0.014839332866044688 0.006245455819136009 0.014708151480256481 0.006088133280076231 0.014729932249651845 C 0.006245455819136009 0.014708151480256481 0.007110729783964785 0.014585183919812422 0.007032068514434896 0.014596318406723147" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007032068514434896 0.014596318406723147 C 0.007032068514434896 0.014704477652326745 0.0070320685144348955 0.01611054784517351 0.0070320685144348955 0.015894229353966317 C 0.0070320685144348955 0.01611054784517351 0.007032068514434895 0.017408458792416672 0.007032068514434895 0.01719214030120948 C 0.007032068514434895 0.017408458792416672 0.007032068514434895 0.018598210494056237 0.007032068514434895 0.01849005124845264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007032068514434895 0.01849005124845264 C 0.006953407244905006 0.018501185735363367 0.005930810741016453 0.01864544586077671 0.00608813328007623 0.018623665091381345 C 0.005930810741016453 0.01864544586077671 0.004986875506657789 0.01876977525461985 0.005144198045717566 0.018751420481197014 C 0.004986875506657789 0.01876977525461985 0.004121601541829013 0.018851630863393535 0.004200262811358902 0.01884392237245534" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004200262811358902 0.01884392237245534 C 0.004200262811358902 0.018735763126851743 0.004200262811358902 0.01732969293400499 0.004200262811358902 0.01754601142521218 C 0.004200262811358902 0.01732969293400499 0.004200262811358902 0.016031781986761823 0.004200262811358902 0.016248100477969016 C 0.004200262811358902 0.016031781986761823 0.004200262811358902 0.014842030285122255 0.004200262811358902 0.014950189530725851" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3401780064823184,0.1383701426112552) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.006921277131306161 0.007351241073857745 C 0.007067749789519859 0.007369201235304617 0.008869028109092604 0.0076429470827286536 0.008678949029870535 0.0075667630112202025 C 0.008869028109092604 0.0076429470827286536 0.009245832502979372 0.00832367384202074 0.009202226081971 0.00826544993195916" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009202226081971 0.00826544993195916 C 0.009054395716660536 0.00824533102027466 0.007231864803464192 0.008204714235776442 0.007428261698245432 0.008024022991745162 C 0.007231864803464192 0.008204714235776442 0.006796896815125348 0.010634555016050307 0.006845463344596124 0.010433744860334528" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006845463344596124 0.010433744860334528 C 0.006891150326810144 0.010350905710549021 0.007400024946723528 0.009182799747368724 0.007393707131164358 0.009439675062908456 C 0.007400024946723528 0.009182799747368724 0.0068819079646513116 0.007177204908103519 0.006921277131306161 0.007351241073857745" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3401780064823184,0.1383701426112552) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04512185135130879 0.0468423825850193 C 0.0450511889941486 0.046848724840991555 0.044804610513706475 0.04645936174589542 0.04481358333041096 0.04651695266576152 C 0.044804610513706475 0.04645936174589542 0.04506858127777126 0.04612347748748177 0.045014177550855 0.04615129154662606 C 0.04506858127777126 0.04612347748748177 0.04553510467335065 0.046127840707524057 0.04546642805340602 0.046183183956030105 C 0.04553510467335065 0.046127840707524057 0.04585455562043454 0.045508644367725476 0.045838296990190604 0.04548717256455345 C 0.04585455562043454 0.045508644367725476 0.0456018278130931 0.046553779762466566 0.04566153161633325 0.046440845594094414 C 0.0456018278130931 0.046553779762466566 0.0450511889941486 0.046848724840991555 0.04512185135130879 0.0468423825850193 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.34159390933385636,0.1383701426112552) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.004200262811358902 0.014596318406723147 C 0.00427892408088879 0.014577398343964846 0.005301520584777345 0.014327540457688184 0.005144198045717568 0.014369277653623539 C 0.005301520584777345 0.014327540457688184 0.00625135541435075 0.014039970920743888 0.006088133280076231 0.014095472055498886 C 0.00625135541435075 0.014039970920743888 0.007187424521756427 0.013670580034985615 0.007102863657011797 0.01370326403656356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007102863657011797 0.01370326403656356 C 0.007098136606345984 0.013811423282167156 0.007040239453807313 0.01521749347501392 0.0070461390490220545 0.015001174983806724 C 0.007040239453807313 0.01521749347501392 0.0070332395933031385 0.016515404422257088 0.007032068514434895 0.016299085931049895 C 0.0070332395933031385 0.016515404422257088 0.007062535618858152 0.017705156123896653 0.007060191995440978 0.017596996878293057" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007060191995440978 0.017596996878293057 C 0.006979187102493916 0.017629680879870997 0.005928467117599279 0.018044706031983365 0.00608813328007623 0.017989204897228366 C 0.005928467117599279 0.018044706031983365 0.004986875506657789 0.01830474769128838 0.005144198045717566 0.018263010495353026 C 0.004986875506657789 0.01830474769128838 0.004121601541829013 0.01850897131121094 0.004200262811358902 0.01849005124845264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004200262811358902 0.01849005124845264 C 0.004200262811358902 0.018381892002849044 0.004200262811358902 0.01697582181000229 0.004200262811358902 0.017192140301209483 C 0.004200262811358902 0.01697582181000229 0.004200262811358902 0.015677910862759124 0.004200262811358902 0.015894229353966317 C 0.004200262811358902 0.015677910862759124 0.004200262811358902 0.014488159161119549 0.004200262811358902 0.014596318406723147" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3430098121853944,0.1383701426112552) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.007028395051121834 0.006941895212434444 C 0.007100622120101344 0.007072448622311744 0.008069989724389277 0.00859937082071946 0.00789511987887595 0.008508536130962039 C 0.008069989724389277 0.00859937082071946 0.009229475973815578 0.007992192769403626 0.00912683319728176 0.008031911489523504" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00912683319728176 0.008031911489523504 C 0.009019878436093242 0.008036382301620869 0.007671528456370076 0.008250337884041933 0.007843376063019544 0.008085561234691887 C 0.007671528456370076 0.008250337884041933 0.006999769072027202 0.010169537118976746 0.007064661917488151 0.010009231281724065" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007064661917488151 0.010009231281724065 C 0.007072827466719863 0.009871227720553823 0.007159626269404834 0.008097577208573695 0.007162648508268693 0.008353188547681164 C 0.007159626269404834 0.008097577208573695 0.007017207263026262 0.006824287434497218 0.007028395051121834 0.006941895212434444" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3430098121853944,0.1383701426112552) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04465888210609444 0.043584634545739166 C 0.044789827131100274 0.04353092053780785 0.04589205330012105 0.043475174076576396 0.04587299498803372 0.04344640736863402 C 0.04589205330012105 0.043475174076576396 0.04479516964891807 0.04400601068213962 0.044887581851142375 0.04392983504104767 C 0.04479516964891807 0.04400601068213962 0.0447264141495996 0.044408700696246264 0.044764048561342015 0.04436051506173741 C 0.0447264141495996 0.044408700696246264 0.044397436087451905 0.044485601021993275 0.04443596891023343 0.044508062655153904 C 0.044397436087451905 0.044485601021993275 0.044320230787618785 0.044014023121358624 0.0443016546879637 0.04409097546380985 C 0.044320230787618785 0.044014023121358624 0.044789827131100274 0.04353092053780785 0.04465888210609444 0.043584634545739166 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3430098121853944,0.1383701426112552) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.0443016546879637 0.04613033187879477 C 0.04428307858830862 0.04607187991459521 0.044474501733014954 0.0456722826760384 0.04443596891023343 0.0457132446874507 C 0.044474501733014954 0.0456722826760384 0.04480168297308443 0.045668472998104385 0.044764048561342015 0.045638787741847195 C 0.04480168297308443 0.045668472998104385 0.04497999405336668 0.04608767555177369 0.044887581851142375 0.04606946776253696 C 0.04497999405336668 0.04608767555177369 0.04585393667594639 0.0458860479206303 0.04587299498803372 0.04585728121268793 C 0.04585393667594639 0.0458860479206303 0.04452793708108861 0.046437422480021015 0.04465888210609444 0.046414668257845446 C 0.04452793708108861 0.046437422480021015 0.04428307858830862 0.04607187991459521 0.0443016546879637 0.04613033187879477 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.0064004102468552225,-0.006400410246855223)"><path d="M -0.0010265485309686742 0.0071396227423216035 C -0.0007252517238585075 0.007220062615889834 0.003207926385838649 0.008211037677937232 0.002589013154353324 0.00810490122514037 C 0.003207926385838649 0.008211037677937232 0.007035643095605538 0.008413260175883955 0.006400410246855222 0.008413260175883955 C 0.007035643095605538 0.008413260175883955 0.010830720570842447 0.007998764772343507 0.01021180733935712 0.00810490122514037 C 0.010830720570842447 0.007998764772343507 0.01412866583178931 0.007059182868753373 0.013827369024679141 0.0071396227423216035" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013827369024679141 0.0071396227423216035 C 0.013829271631667455 0.007159421583811551 0.013853890093368766 0.007418503631586902 0.013850200308538905 0.0073772088402009744 C 0.013853890093368766 0.007418503631586902 0.01387343362047903 0.007656656188848712 0.013871646442637482 0.007635160238952733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.013871646442637482 0.007635160238952733 C 0.013566659850697452 0.007716681924303799 0.009589204323041937 0.00872063872774522 0.010211807339357126 0.008613420463165522 C 0.009589204323041937 0.00872063872774522 0.005765177398104909 0.008921779413909108 0.006400410246855226 0.008921779413909108 C 0.005765177398104909 0.008921779413909108 0.0019664101380381374 0.008506202198585824 0.0025890131543533272 0.008613420463165522 C 0.0019664101380381374 0.008506202198585824 -0.0013758125408670839 0.007553638553601667 -0.0010708259489270522 0.007635160238952733" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0010708259489270522 0.007635160238952733 C -0.001069038771085503 0.007613664289056753 -0.0010456900299985964 0.007335914048815047 -0.0010493798148284612 0.0073772088402009744 C -0.0010456900299985964 0.007335914048815047 -0.0010246459239803586 0.007119823900831656 -0.0010265485309686742 0.0071396227423216035" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="ヴィオラ">
<g id="左">
<g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M -0.007492807838368464 -0.011337164278572022 C -0.007035154289893094 -0.010190828460866408 -0.0010938344412816615 0.004334460341640416 -0.0020009652566640285 0.002418865533895344 C -0.0010938344412816615 0.004334460341640416 0.0038422392131269366 0.012419232404408303 0.0033927619462199394 0.011649973414368844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0033927619462199394 0.011649973414368844 C 0.0028168755271009913 0.01156024299945378 -0.004609265152254464 0.010558253366235575 -0.003517875083207439 0.010573208435388086 C -0.004609265152254464 0.010558253366235575 -0.010219422532272428 0.011545287930301277 -0.009703918882344353 0.011470512584538723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.009703918882344353 0.011470512584538723 C -0.00916970821545084 0.011021215929855199 -0.003109131625957537 0.004178312989743867 -0.003293390879622194 0.006078952728336429 C -0.003109131625957537 0.004178312989743867 -0.007842759251597326 -0.01278850736248106 -0.007492807838368469 -0.011337164278572022" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32821774500623246,0.14526333643182274) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M 0.005000535099838494 0.011113795468371821 C 0.005513221333385214 0.011042495010589902 0.012240694526672322 0.010348156074536562 0.011152769902399133 0.010258189974988782 C 0.012240694526672322 0.010348156074536562 0.01863086898184324 0.01235465522027489 0.01805563059111677 0.01219338866294519" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01805563059111677 0.01219338866294519 C 0.018098363622509585 0.012231195655449474 0.018614643234725812 0.012741829962555452 0.01856842696783053 0.012647072572996602 C 0.018614643234725812 0.012741829962555452 0.01857590203685832 0.013430160766098752 0.01861022579386014 0.013330477337651374 C 0.01857590203685832 0.013430160766098752 0.018061784494249885 0.013889489981260415 0.018156541883808733 0.013843273714365134 C 0.018061784494249885 0.013889489981260415 0.0174161867220994 0.01388855577589721 0.017473137119153964 0.013885072540394743" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017473137119153964 0.013885072540394743 C 0.016946439851091063 0.013731928981179305 0.01011338640078951 0.011965506728375968 0.011152769902399133 0.012047349829809486 C 0.01011338640078951 0.011965506728375968 0.004487848866291774 0.012974255780974447 0.005000535099838494 0.012902955323192527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005000535099838494 0.012902955323192527 C 0.004947821472089725 0.012881120623657101 0.00429342323956907 0.012566390601483207 0.004367971566853266 0.012640938928767402 C 0.00429342323956907 0.012566390601483207 0.004105955172428144 0.011902948140284636 0.004105955172428144 0.012008375395782174 C 0.004105955172428144 0.011902948140284636 0.004442519894137462 0.011301263535512751 0.004367971566853266 0.011375811862796946 C 0.004442519894137462 0.011301263535512751 0.005053248727587263 0.011091960768836395 0.005000535099838494 0.011113795468371821" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32973465483277586,0.13710899353033) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M 0.006438934656817298 -0.003032552591864814 C 0.006900376357697647 -0.0018795707360562267 0.012944248050834162 0.012783434662857689 0.011976235067381493 0.010803229677838234 C 0.012944248050834162 0.012783434662857689 0.018561661740821658 0.0215571303575795 0.018055090458249337 0.020729907228368635" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.018055090458249337 0.020729907228368635 C 0.01805558836661034 0.020786961875344165 0.01802157161354626 0.02151231344120358 0.01806106535858138 0.021414562992074976 C 0.01802157161354626 0.02151231344120358 0.017484119217456223 0.021944106328425972 0.017581165517827877 0.021902912617911892 C 0.017484119217456223 0.021944106328425972 0.016798759304992923 0.02186939377320882 0.01689650975412153 0.021908887518243943 C 0.016798759304992923 0.02186939377320882 0.01636746432613154 0.02138899602409431 0.016408160128284617 0.021428987677490435" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.016408160128284617 0.021428987677490435 C 0.015901588845712297 0.02060176454827957 0.0093612917539641 0.009522105141940579 0.01032930473741677 0.011502310126960033 C 0.0093612917539641 0.009522105141940579 0.0043305626259722285 -0.0034864539985516004 0.004792004326852578 -0.0023334721427430132" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004792004326852578 -0.0023334721427430132 C 0.004791506418491574 -0.002390526789718542 0.004825523171555652 -0.0031158783555779632 0.0047860294265205305 -0.003018127906449358 C 0.004825523171555652 -0.0031158783555779632 0.005362975567645691 -0.0035476712428003537 0.005265929267274036 -0.0035064775322862732 C 0.005362975567645691 -0.0035476712428003537 0.0060483354801089875 -0.0034729586875832 0.005950585030980382 -0.0035124524326183215 C 0.0060483354801089875 -0.0034729586875832 0.006479630458970374 -0.0029925609384686886 0.006438934656817298 -0.003032552591864814" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="右">
<g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.0187084733168299 -0.011337164278572022 C 0.018358521903601044 -0.009885821194662983 0.014693315611748303 0.007979592466928991 0.014509056358083638 0.006078952728336429 C 0.014693315611748303 0.007979592466928991 0.021453795027699396 0.011919809239222248 0.020919584360805876 0.011470512584538723" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020919584360805876 0.011470512584538723 C 0.020404080710877792 0.01139573723877617 0.013642150492621833 0.010588163504540596 0.014733540561668867 0.010573208435388086 C 0.013642150492621833 0.010588163504540596 0.007247017113122515 0.011739703829283908 0.007822903532241465 0.011649973414368844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007822903532241465 0.011649973414368844 C 0.008272380799148457 0.010880714424329386 0.014123761550507727 0.0005032707261502717 0.013216630735125356 0.002418865533895344 C 0.014123761550507727 0.0005032707261502717 0.019166126865305277 -0.012483500096277635 0.0187084733168299 -0.011337164278572022" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3464691606511088,0.14526333643182274) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M 0.01730500470495977 0.011113795468371821 C 0.017357718332708532 0.011135630167907248 0.01801211656522909 0.011450360190081142 0.0179375682379449 0.011375811862796946 C 0.01801211656522909 0.011450360190081142 0.018199584632370036 0.012113802651279712 0.018199584632370036 0.012008375395782174 C 0.018199584632370036 0.012113802651279712 0.01786301991066071 0.012715487256051598 0.0179375682379449 0.012640938928767402 C 0.01786301991066071 0.012715487256051598 0.017252291077211008 0.012924790022727953 0.01730500470495977 0.012902955323192527" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01730500470495977 0.012902955323192527 C 0.016792318471413048 0.012831654865410607 0.010113386400789478 0.012129192931243003 0.011152769902399107 0.012047349829809486 C 0.010113386400789478 0.012129192931243003 0.004305705417581314 0.01403821609961018 0.0048324026856442215 0.013885072540394743" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0048324026856442215 0.013885072540394743 C 0.004775452288589656 0.013881589304892276 0.00405424053143059 0.013797057447469854 0.004148997920989439 0.013843273714365134 C 0.00405424053143059 0.013797057447469854 0.0036609902539362174 0.013230793909203996 0.0036953140109380334 0.013330477337651374 C 0.0036609902539362174 0.013230793909203996 0.0037833291038629293 0.012552315183437752 0.0037371128369676487 0.012647072572996602 C 0.0037833291038629293 0.012552315183437752 0.0042926422450742146 0.012155581670440905 0.004249909213681402 0.01219338866294519" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004249909213681402 0.01219338866294519 C 0.004825147604407877 0.01203212210561549 0.012240694526672305 0.010168223875441001 0.011152769902399107 0.010258189974988782 C 0.012240694526672305 0.010168223875441001 0.017817690938506492 0.011185095926153741 0.01730500470495977 0.011113795468371821" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34495225082456527,0.13710899353033) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M 0.015866605147980883 -0.003032552591864814 C 0.015907300950133967 -0.0030725442452609396 0.01645270522294649 -0.003551946177653443 0.016354954773817876 -0.0035124524326183215 C 0.01645270522294649 -0.003551946177653443 0.01713665683789588 -0.003465283821772193 0.01703961053752423 -0.0035064775322862732 C 0.01713665683789588 -0.003465283821772193 0.01755900412331282 -0.002920377457320753 0.017519510378277703 -0.003018127906449358 C 0.01755900412331282 -0.002920377457320753 0.01751303756958465 -0.0022764174957674846 0.017513535477945652 -0.0023334721427430132" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017513535477945652 -0.0023334721427430132 C 0.017052093777065302 -0.001180490286934426 0.011008222083928765 0.013482515111979487 0.011976235067381436 0.011502310126960033 C 0.011008222083928765 0.013482515111979487 0.005390808393941284 0.0222562108067013 0.005897379676513603 0.021428987677490435" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005897379676513603 0.021428987677490435 C 0.00585668387436053 0.02146897933088656 0.005311279601548119 0.021948381263279065 0.005409030050676722 0.021908887518243943 C 0.005311279601548119 0.021948381263279065 0.004627327986598706 0.021861718907397812 0.0047243742869703675 0.021902912617911892 C 0.004627327986598706 0.021861718907397812 0.004204980701181656 0.021316812542946373 0.004244474446216784 0.021414562992074976 C 0.004204980701181656 0.021316812542946373 0.004250947254909839 0.020672852581393106 0.004250449346548835 0.020729907228368635" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.004250449346548835 0.020729907228368635 C 0.004757020629121154 0.01990268409915777 0.011297317720869338 0.00882302469281878 0.010329304737416667 0.010803229677838234 C 0.011297317720869338 0.00882302469281878 0.016328046848861234 -0.004185534447673401 0.015866605147980883 -0.003032552591864814" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="首輪">
<g transform="translate(0.3373434528286707,0.14029796073566542) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M 0.0010768497093596636 0.008202559503492655 C 0.0019165097254462864 0.008202559503492655 0.012832089934572383 0.008202559503492655 0.011152769902399138 0.008202559503492655 C 0.012832089934572383 0.008202559503492655 0.022068350111525217 0.008202559503492655 0.021228690095438596 0.008202559503492655" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.021228690095438596 0.008202559503492655 C 0.021228690095438596 0.008448410370068195 0.02122869009543861 0.011644471635550213 0.02122869009543861 0.011152769902399133 C 0.02122869009543861 0.011644471635550213 0.021228690095438596 0.01434883116788115 0.021228690095438596 0.01410298030130561" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.021228690095438596 0.01410298030130561 C 0.020389030079351975 0.01410298030130561 0.009473449870225888 0.01410298030130561 0.011152769902399133 0.01410298030130561 C 0.009473449870225888 0.01410298030130561 0.00023718969327304125 0.01410298030130561 0.0010768497093596636 0.01410298030130561" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0010768497093596636 0.01410298030130561 C 0.0010768497093596636 0.01385712943473007 0.0010768497093596636 0.010661068169248056 0.0010768497093596636 0.011152769902399136 C 0.0010768497093596636 0.010661068169248056 0.0010768497093596636 0.007956708636917116 0.0010768497093596636 0.008202559503492655" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3347555785294772,0.14029796073566542) rotate(0) scale(1,1) translate(-0.00775832499658671,-0.0077583249965867095)"><path d="M 0.011893014469740532 0.011660326317571704 C 0.011230608426439633 0.011590967349136764 0.003281735906828843 0.010247044111289867 0.003944141950129742 0.010828018696352425 C 0.003281735906828843 0.010247044111289867 0.004606547993430639 0.004107656711758434 0.0039441419501297405 0.004688631296820993 C 0.004606547993430639 0.004107656711758434 0.012555420513041426 0.0037869647071667755 0.011893014469740528 0.0038563236756017152" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011893014469740528 0.0038563236756017152 C 0.011893014469740528 0.003911015335299518 0.011893014469740528 0.004589191915552262 0.011893014469740528 0.004512623591975339 C 0.011893014469740528 0.004589191915552262 0.011893014469740528 0.004797020222403912 0.011893014469740528 0.0047751435585247914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011893014469740528 0.0047751435585247914 C 0.011335790095695856 0.004827846430597219 0.004649097607159787 0.005852072057665148 0.0052063219812044596 0.005407578023393922 C 0.004649097607159787 0.005852072057665148 0.005763546355249132 0.01055356600405073 0.0052063219812044596 0.010109071969779504 C 0.005763546355249132 0.01055356600405073 0.012450238843785204 0.010794209306721063 0.011893014469740532 0.010741506434648634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011893014469740532 0.010741506434648634 C 0.011893014469740532 0.010763383098527755 0.011893014469740532 0.011080594724775005 0.011893014469740532 0.011004026401198082 C 0.011893014469740532 0.011080594724775005 0.011893014469740532 0.011715017977269506 0.011893014469740532 0.011660326317571704" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33140602154361115,0.14029796073566542) rotate(0) scale(1,1) translate(-0.0022536622055164745,-0.002253662205516475)"><path d="M 0.003099630655912222 0.0028245428565628694 C 0.0029636280112541073 0.002816364940307013 0.0013315962753567305 0.002639439002574046 0.0014675989200148452 0.0027264078614925883 C 0.0013315962753567305 0.002639439002574046 0.0016036015646729595 0.0016939476906218187 0.0014675989200148448 0.001780916549540361 C 0.0016036015646729595 0.0016939476906218187 0.0032356333005703363 0.0016746036382142243 0.0030996306559122216 0.001682781554470081" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0030996306559122216 0.001682781554470081 C 0.0031268311848438443 0.0017303549420572804 0.003426037003091696 0.0023488089806908735 0.003426037003091696 0.0022536622055164745 C 0.003426037003091696 0.0023488089806908735 0.0030724301269805993 0.002872116244150069 0.003099630655912222 0.0028245428565628694" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.342877668729047,0.14029796073566542) rotate(0) scale(1,1) translate(-0.006469483550722008,-0.0064694835507220095)"><path d="M 0.007132094043214607 0.0029814560231419193 C 0.007352964207378807 0.0041441318656686155 0.0069112238790504064 0.011120186920828794 0.007132094043214607 0.009957511078302098 C 0.0069112238790504064 0.011120186920828794 0.005586002894065209 0.008794835235775404 0.005806873058229408 0.0099575110783021 C 0.005586002894065209 0.008794835235775404 0.006027743222393607 0.0018187801806152217 0.005806873058229408 0.0029814560231419185 C 0.006027743222393607 0.0018187801806152217 0.007352964207378807 0.0041441318656686155 0.007132094043214607 0.0029814560231419193 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.32829999945816574,0.14029796073566542) rotate(0) scale(1,1) translate(-0.009906215631991292,-0.007758324996586713)"><path d="M 0.009906215631991292 0.011660326317571704 C 0.009508772006010753 0.01150716471113316 0.0047394484942442795 0.009325215093250223 0.005136892120224819 0.009822387040309178 C 0.0047394484942442795 0.009325215093250223 0.0055343357462053575 0.005197091005805287 0.0051368921202248185 0.005694262952864242 C 0.0055343357462053575 0.005197091005805287 0.01030365925797183 0.003703162069163171 0.00990621563199129 0.0038563236756017152" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00990621563199129 0.0038563236756017152 C 0.00990621563199129 0.003911015335299518 0.00990621563199129 0.004589191915552262 0.00990621563199129 0.004512623591975339 C 0.00990621563199129 0.004589191915552262 0.009906215631991292 0.004797020222403912 0.009906215631991292 0.0047751435585247914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991292 0.0047751435585247914 C 0.009583370751282919 0.0048986078324019435 0.0057092321827824435 0.006630447477517121 0.006032077063490816 0.00625671484505062 C 0.0057092321827824435 0.006630447477517121 0.006354921944199189 0.009633667780589304 0.006032077063490816 0.009259935148122803 C 0.006354921944199189 0.009633667780589304 0.010229060512699666 0.010864970708525786 0.009906215631991292 0.010741506434648634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009906215631991292 0.010741506434648634 C 0.009906215631991292 0.010763383098527755 0.009906215631991292 0.011080594724775005 0.009906215631991292 0.011004026401198082 C 0.009906215631991292 0.011080594724775005 0.009906215631991292 0.011715017977269506 0.009906215631991292 0.011660326317571704" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34638690619917567,0.14029796073566542) rotate(0) scale(1,1) translate(-0.005610434361182026,-0.007758324996586713)"><path d="M 0.005610434361182026 0.011660326317571704 C 0.005610434361182026 0.011605634657873901 0.005610434361182026 0.010927458077621159 0.005610434361182026 0.011004026401198082 C 0.005610434361182026 0.010927458077621159 0.005610434361182026 0.010719629770769514 0.005610434361182026 0.010741506434648634" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.010741506434648634 C 0.005933279241890406 0.010618042160771482 0.009807417810390961 0.008886202515656302 0.009484572929682581 0.009259935148122803 C 0.009807417810390961 0.008886202515656302 0.0091617280489742 0.005882982212584119 0.009484572929682581 0.00625671484505062 C 0.0091617280489742 0.005882982212584119 0.005287589480473647 0.004651679284647639 0.005610434361182026 0.0047751435585247914" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.0047751435585247914 C 0.005610434361182026 0.004753266894645671 0.005610434361182026 0.004436055268398416 0.005610434361182026 0.004512623591975339 C 0.005610434361182026 0.004436055268398416 0.005610434361182026 0.0038016320159039133 0.005610434361182026 0.0038563236756017152" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005610434361182026 0.0038563236756017152 C 0.006007877987162569 0.004009485282040259 0.010777201498929082 0.006191434899923197 0.01037975787294854 0.005694262952864242 C 0.010777201498929082 0.006191434899923197 0.009982314246967997 0.010319558987368133 0.01037975787294854 0.009822387040309178 C 0.009982314246967997 0.010319558987368133 0.005212990735201484 0.011813487924010248 0.005610434361182026 0.011660326317571704" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 79 KiB

View File

@@ -0,0 +1,33 @@
id: Shoulder
original_key:
resource: 肩左
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name:
- name:
joints:
- position: [
0.030850908155102816,
0.06745715429702073
]
- position: [
0.03969795971544586,
0.07221140108871305
]
- position: [
0.0562503924684768,
0.06022872118377538
]
- position: [
0.03825814978767629,
0.06551608770860626
]
- position: [
0.03016810701801849,
0.06728509033885754
]

View File

@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g id="脇">
<g transform="translate(0.33477974683282136,0.1473054698071506) rotate(0) scale(1,1) translate(-0.0562503924684768,-0.06022872118377538)"><path d="M 0.05419794385553391 0.05893542271918039 C 0.054308097335002366 0.05895310091924155 0.05570384969608789 0.05922941407563852 0.055519785609155325 0.05914756111991434 C 0.05570384969608789 0.05922941407563852 0.05652236970102196 0.06006615292174101 0.056406712898724655 0.059917658187870586 C 0.05652236970102196 0.06006615292174101 0.05694941343155614 0.06101381790456677 0.05690766723672295 0.06092949792635937" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05690766723672295 0.06092949792635937 C 0.05663625830761927 0.062022383290396645 0.055855183922657405 0.07680236532231377 0.05365076008747879 0.07404412229480667 C 0.055855183922657405 0.07680236532231377 0.08583658602314866 0.09569377191991446 0.08336075325886635 0.09402841425644463" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08336075325886635 0.09402841425644463 C 0.07953638679978083 0.09299587293877212 0.042300391774301074 0.08252724342379794 0.04805890934486978 0.08449726371917542 C 0.042300391774301074 0.08252724342379794 0.027601112790336058 0.07431409843365122 0.03020520694105016 0.075843611696637 C 0.027601112790336058 0.07431409843365122 0.023225372251806212 0.06916513197431823 0.02402111740485715 0.07037867988261942 C 0.023225372251806212 0.06916513197431823 0.023051777070800125 0.06358498198481603 0.02285986713409018 0.0646416311073475 C 0.023051777070800125 0.06358498198481603 0.026564218298754914 0.060022533891617054 0.025792593727473848 0.06062499576407742 C 0.026564218298754914 0.060022533891617054 0.030436467939813378 0.05891311827037525 0.02998255541906228 0.05908044464332452" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02998255541906228 0.05908044464332452 C 0.031268511916451316 0.05912149973581486 0.04743198242410336 0.05956102059286325 0.04541403338773072 0.059573105753208594 C 0.04743198242410336 0.05956102059286325 0.054929936394517515 0.05888228246634471 0.05419794385553391 0.05893542271918039" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31822731407979044,0.15928814971208824) rotate(0) scale(1,1) translate(-0.03935448257433991,-0.07209276069361464)"><path d="M 0.08301727611776027 0.09390977386134618 C 0.07998696289159445 0.09299621314920652 0.04168198723270844 0.08091342513658582 0.04665351740377027 0.08294704531567029 C 0.04168198723270844 0.08091342513658582 0.021417697120122245 0.06838627224538779 0.023358914065018246 0.0695063317123326" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.023358914065018246 0.0695063317123326 C 0.02390167215705553 0.07002582749194851 0.031104708666326416 0.07690266171584317 0.029872011169465647 0.07574028106772344 C 0.031104708666326416 0.07690266171584317 0.04001087537726797 0.08456872963866043 0.03815128402734747 0.08345489948976938 C 0.04001087537726797 0.08456872963866043 0.055925940042712625 0.0899774823853807 0.05218710736851156 0.08910624285441597 C 0.055925940042712625 0.0899774823853807 0.08558645684686433 0.09431006811192369 0.08301727611776027 0.09390977386134618" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="肩">
<g transform="translate(0.33477974683282136,0.1473054698071506) rotate(0) scale(1,1) translate(-0.05535453287641017,-0.06022872118377538)"><path d="M 0.05305714429758805 0.058948355703826345 C 0.05316619624226183 0.05896585712188689 0.054547991079736645 0.05923940714671989 0.054365767633673394 0.059158372720552944 C 0.054547991079736645 0.05923940714671989 0.05535832588462137 0.060067778604361355 0.05524382565034704 0.059920768817829644 C 0.05535832588462137 0.060067778604361355 0.05578109917785018 0.061005966937358845 0.05573977044496532 0.06092249015893352" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05573977044496532 0.06092249015893352 C 0.054620297570000254 0.06167056836754983 0.04017512399313894 0.07115830206898059 0.04230609594538451 0.06989942866232923 C 0.04017512399313894 0.07115830206898059 0.02915660794073799 0.07653976623678492 0.03016810701801849 0.07602897103874987" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03016810701801849 0.07602897103874987 C 0.029803778655522976 0.07593134954823944 0.02516513143359173 0.07449318479012923 0.02579616666807233 0.07485751315262475 C 0.02516513143359173 0.07449318479012923 0.022231355841755774 0.0710259954543231 0.022595684204251287 0.0716570306888037 C 0.022231355841755774 0.0710259954543231 0.021424226318126172 0.06655643361386651 0.021424226318126172 0.06728509033885754 C 0.021424226318126172 0.06655643361386651 0.022960012566746797 0.06228211475443078 0.022595684204251284 0.06291314998891138 C 0.022960012566746797 0.06228211475443078 0.02642720190255293 0.059348339162594826 0.02579616666807233 0.05971266752509034 C 0.02642720190255293 0.059348339162594826 0.030532435380514002 0.05844358814845478 0.03016810701801849 0.05854120963896521" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03016810701801849 0.05854120963896521 C 0.031350854177722196 0.05861890951852775 0.04626849270776042 0.05950753703245415 0.04436107293446296 0.05947360819371572 C 0.04626849270776042 0.05950753703245415 0.05378181691118181 0.05890458466300223 0.05305714429758805 0.058948355703826345" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="虫性">
<g transform="translate(0.3176833637440875,0.15259283633198148) rotate(0) scale(1,1) translate(-0.005607832739230754,-0.005607832739230756)"><path d="M 0.008746316336569793 0.001189492495506699 C 0.00924292084609089 0.0015032741625538592 0.015218406020625568 0.005501653759894851 0.014705570450822956 0.004954872500072622 C 0.015218406020625568 0.005501653759894851 0.014916574234482644 0.00798386720614851 0.01490034317420113 0.007750867613373442" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01490034317420113 0.007750867613373442 C 0.014383562327757613 0.008124135707690161 0.00782043590788649 0.012754909588858982 0.008698973016878941 0.012230084745174062 C 0.00782043590788649 0.012754909588858982 0.00399614160374279 0.014200322486960683 0.0043578978662917245 0.014048765737592481" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0043578978662917245 0.014048765737592481 C 0.004302055714534837 0.014032989965248464 0.0036385612639256606 0.013791911801290573 0.00368779204520907 0.013859456469464262 C 0.0036385612639256606 0.013791911801290573 0.0037737398613642923 0.013186460823678532 0.0037671284908908135 0.013238229719508204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0037671284908908135 0.013238229719508204 C 0.003987300067517087 0.012810016423463312 0.006824119730879343 0.007095608731636033 0.006409187410406095 0.008099670166969492 C 0.006824119730879343 0.007095608731636033 0.008941077080416764 0.0006136443562181328 0.00874631633656979 0.001189492495506699" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3176833637440875,0.15259283633198148) rotate(0) scale(1,1) translate(-0.016635516905246325,-0.01663551690524633)"><path d="M 0.03328492999032068 0.00970282789683401 C 0.03340708660208927 0.009725902445933444 0.03495280164089374 0.010050409269128934 0.03475080933154378 0.009979722486027211 C 0.03495280164089374 0.010050409269128934 0.03581523859107307 0.01070840881113011 0.03570883770252023 0.010551069294054678 C 0.03581523859107307 0.01070840881113011 0.03598407490631708 0.012069833391419637 0.036027619994177904 0.011867796690932396 C 0.03598407490631708 0.012069833391419637 0.03511618636935809 0.013067819117315669 0.03518629664819039 0.01297550969990157" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03518629664819039 0.01297550969990157 C 0.03473325142649414 0.013253046571950344 0.02895283468071913 0.01685547214501608 0.0297497539878354 0.016305952164486857 C 0.02895283468071913 0.01685547214501608 0.025279390877375144 0.0198417325747327 0.025623264962795163 0.01956974946625225" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.025623264962795163 0.01956974946625225 C 0.025583664503126744 0.019584563114562206 0.025078274095144393 0.019747249851457975 0.025148059446774132 0.019747513245971716 C 0.025078274095144393 0.019747249851457975 0.024755655851276988 0.019551511689263657 0.024785840743238308 0.019566588732087355" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024785840743238308 0.019566588732087355 C 0.024642551919146844 0.019401082137678577 0.02271729048610039 0.01719936160228483 0.02306637485414074 0.01758050959918201 C 0.02271729048610039 0.01719936160228483 0.020288576937198537 0.014581857589057747 0.020596828326754073 0.014992812769321165 C 0.020288576937198537 0.014581857589057747 0.01917623138556512 0.012234114578588128 0.0193673581794743 0.012649047436020994 C 0.01917623138556512 0.012234114578588128 0.018214635851541365 0.009793999400468927 0.018303306799843898 0.010013618480126777" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.018303306799843898 0.010013618480126777 C 0.01849142751171201 0.009950756842721158 0.021434447632776965 0.009270634356685946 0.020560755342261264 0.009259278831259352 C 0.021434447632776965 0.009270634356685946 0.029847962173370598 0.010186847207377135 0.028787614286032312 0.010149884785245913 C 0.029847962173370598 0.010186847207377135 0.033659706299011376 0.009665573156133018 0.03328492999032068 0.00970282789683401" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3176833637440875,0.15259283633198148) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M -0.001648160846595952 0.005322940084788146 C -0.0015827796925954101 0.005441372009331892 -0.0007221118431555362 0.007020501573254548 -0.000863586998589449 0.006744123179313095 C -0.0007221118431555362 0.007020501573254548 0.00012563502004437293 0.00879742728148329 4.9541018611002014E-05 0.008639480812085583" fill="none" stroke="none" stroke-width="0"/>
<path d="M 4.9541018611002014E-05 0.008639480812085583 C 9.182249829884146E-05 0.00886988986255847 0.0006414817342407544 0.011865207518705994 0.0005569187748650754 0.011404389417760221 C 0.0006414817342407544 0.011865207518705994 0.001106578010806989 0.014399707073907735 0.0010642965311191495 0.01416929802343485" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0010642965311191495 0.01416929802343485 C 0.0009693860931623882 0.013952979646109403 -0.00026444960027550784 0.01114084074087859 -7.462872436198503E-05 0.011573477495529486 C -0.00026444960027550784 0.01114084074087859 -0.0013084644177998863 0.008761338590298654 -0.0012135539798431246 0.008977656967624103" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0012135539798431246 0.008977656967624103 C -0.001237019023007573 0.008805619825078957 -0.0015313517367125762 0.006608651516846021 -0.0014951344978165072 0.006913211257082351 C -0.0015313517367125762 0.006608651516846021 -0.0016609130423275724 0.005190417487096963 -0.001648160846595952 0.005322940084788146" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3176833637440875,0.15259283633198148) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.010484240807408216 0.004130609146637233 C 0.01054882568500108 0.004300761057830564 0.011381005736387664 0.006450688775489539 0.011259259338522586 0.006172432080957212 C 0.011381005736387664 0.006450688775489539 0.01200235910206137 0.007577794264364161 0.011945197581789156 0.007469689481025165" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011945197581789156 0.007469689481025165 C 0.011987479061476996 0.0077692212466399175 0.012537138297418907 0.011663134199631702 0.012452575338043228 0.011064070668402199 C 0.012537138297418907 0.011663134199631702 0.013002234573985146 0.014957983621393962 0.012959953094297306 0.01465845185577921" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012959953094297306 0.01465845185577921 C 0.012865042656340545 0.01437723796525613 0.011631206962902646 0.010721457388456075 0.011821027838816169 0.011283885169502239 C 0.011631206962902646 0.010721457388456075 0.01058719214537827 0.007628104592702158 0.010682102583335032 0.007909318483225241" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.010682102583335032 0.007909318483225241 C 0.010677570021331741 0.007782895824794575 0.010611223357968297 0.006077354137341577 0.010627711839295532 0.006392246582057244 C 0.010611223357968297 0.006077354137341577 0.010472284888084273 0.003942139360352232 0.010484240807408216 0.004130609146637233" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3176833637440875,0.15259283633198148) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.014971238842602402 0.004386848082701861 C 0.015031090599904977 0.00453564674922314 0.015806473207808088 0.006429335530817487 0.0156894599302333 0.006172432080957212 C 0.015806473207808088 0.006429335530817487 0.016432559693772084 0.007577794264364161 0.01637539817349987 0.007469689481025165" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01637539817349987 0.007469689481025165 C 0.01641767965318771 0.0077692212466399175 0.01696733888912962 0.011663134199631702 0.01688277592975394 0.011064070668402199 C 0.01696733888912962 0.011663134199631702 0.017432435165695856 0.014957983621393962 0.017390153686008016 0.01465845185577921" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.017390153686008016 0.01465845185577921 C 0.017295243248051255 0.01437723796525613 0.01606140755461336 0.010721457388456075 0.01625122843052688 0.011283885169502239 C 0.01606140755461336 0.010721457388456075 0.015017392737088983 0.007628104592702158 0.015112303175045744 0.007909318483225241" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015112303175045744 0.007909318483225241 C 0.015107770613042453 0.007782895824794575 0.015046157069969299 0.006098707382013629 0.015057912431006244 0.006392246582057244 C 0.015046157069969299 0.006098707382013629 0.01496401604356875 0.004219731541088912 0.014971238842602402 0.004386848082701861" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3176833637440875,0.15259283633198148) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.019204322153702203 0.004520991294923963 C 0.019261667869894535 0.004658611360426734 0.020006977984474712 0.006418156929798979 0.019892470748010167 0.006172432080957212 C 0.020006977984474712 0.006418156929798979 0.020635570511548948 0.007577794264364161 0.020578408991276734 0.007469689481025165" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.020578408991276734 0.007469689481025165 C 0.020620690470964573 0.0077692212466399175 0.021170349706906486 0.011663134199631702 0.021085786747530807 0.011064070668402199 C 0.021170349706906486 0.011663134199631702 0.021635445983472723 0.014957983621393962 0.021593164503784883 0.01465845185577921" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.021593164503784883 0.01465845185577921 C 0.021498254065828122 0.01437723796525613 0.020264418372390226 0.010721457388456075 0.020454239248303748 0.011283885169502239 C 0.020264418372390226 0.010721457388456075 0.019220403554865848 0.007628104592702158 0.01931531399282261 0.007909318483225241" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01931531399282261 0.007909318483225241 C 0.019310781430819317 0.007782895824794575 0.019251673928856412 0.006109885983032138 0.01926092324878311 0.006392246582057244 C 0.019251673928856412 0.006109885983032138 0.019199605395778793 0.004365053354329523 0.019204322153702203 0.004520991294923963" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3176833637440875,0.15259283633198148) rotate(0) scale(1,1) translate(-0.037606046155996865,-0.06556896137385457)"><path d="M 0.049977840703221116 0.05952009157448904 C 0.04980101645511702 0.05998764614453399 0.047426169085904184 0.06577236260294765 0.047855949725971965 0.06513074641502847 C 0.047426169085904184 0.06577236260294765 0.04456751663044403 0.06739354744739338 0.04482047302240772 0.06721948582951916" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04482047302240772 0.06721948582951916 C 0.04446033337923418 0.06749991937024835 0.03979172980475713 0.07117031273523838 0.040498797304325304 0.07058468831826947 C 0.03979172980475713 0.07117031273523838 0.03598873517119498 0.07455216970938582 0.03633566302758962 0.0742469788331461" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03633566302758962 0.0742469788331461 C 0.036158000747057197 0.07436525039503936 0.03389149472757103 0.0757860909434577 0.034203715661200514 0.07566623757586512 C 0.03389149472757103 0.0757860909434577 0.03245445317093881 0.07568680104995643 0.03258901182403587 0.0756852192442571" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03258901182403587 0.0756852192442571 C 0.032581712853044086 0.07506383744800663 0.032395042684001965 0.06707188079885791 0.032501424172134474 0.06822863768925135 C 0.032395042684001965 0.06707188079885791 0.031044053894033977 0.06081022536809467 0.0313124339664458 0.06180413655953593 C 0.031044053894033977 0.06081022536809467 0.02911156574792152 0.055843167294657894 0.029280863303192618 0.056301703391956205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029280863303192618 0.056301703391956205 C 0.030476443332679723 0.05617159645377849 0.03990383971345333 0.05605745979331205 0.036454343480115246 0.055521061762889914 C 0.03990383971345333 0.05605745979331205 0.052231756907072095 0.06018659654308889 0.049977840703221116 0.05952009157448904" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.049977840703221116 0.05952009157448904 C 0.050235462720603016 0.059716870567986635 0.05367102129079076 0.06215940965843744 0.05306930491180391 0.06188143949646024 C 0.05367102129079076 0.06215940965843744 0.05754253161266829 0.06293692468669514 0.05719843725106334 0.06285573351821552" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3176833637440875,0.15259283633198148) rotate(0) scale(1,1) translate(-0.037606046155996865,-0.06556896137385457)"><path d="M 0.049977840703221116 0.05952009157448904 C 0.04980101645511702 0.05998764614453399 0.047426169085904184 0.06577236260294765 0.047855949725971965 0.06513074641502847 C 0.047426169085904184 0.06577236260294765 0.04456751663044403 0.06739354744739338 0.04482047302240772 0.06721948582951916" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04482047302240772 0.06721948582951916 C 0.04446033337923418 0.06749991937024835 0.03979172980475713 0.07117031273523838 0.040498797304325304 0.07058468831826947 C 0.03979172980475713 0.07117031273523838 0.03598873517119498 0.07455216970938582 0.03633566302758962 0.0742469788331461" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03633566302758962 0.0742469788331461 C 0.036158000747057197 0.07436525039503936 0.03389149472757103 0.0757860909434577 0.034203715661200514 0.07566623757586512 C 0.03389149472757103 0.0757860909434577 0.03245445317093881 0.07568680104995643 0.03258901182403587 0.0756852192442571" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03258901182403587 0.0756852192442571 C 0.032581712853044086 0.07506383744800663 0.032395042684001965 0.06707188079885791 0.032501424172134474 0.06822863768925135 C 0.032395042684001965 0.06707188079885791 0.031044053894033977 0.06081022536809467 0.0313124339664458 0.06180413655953593 C 0.031044053894033977 0.06081022536809467 0.02911156574792152 0.055843167294657894 0.029280863303192618 0.056301703391956205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029280863303192618 0.056301703391956205 C 0.030476443332679723 0.05617159645377849 0.03990383971345333 0.05605745979331205 0.036454343480115246 0.055521061762889914 C 0.03990383971345333 0.05605745979331205 0.052231756907072095 0.06018659654308889 0.049977840703221116 0.05952009157448904" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.049977840703221116 0.05952009157448904 C 0.050235462720603016 0.059716870567986635 0.05367102129079076 0.06215940965843744 0.05306930491180391 0.06188143949646024 C 0.05367102129079076 0.06215940965843744 0.05754253161266829 0.06293692468669514 0.05719843725106334 0.06285573351821552" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,47 @@
id: Torso
original_key:
resource: 胴体
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name:
- name: 筋肉
- name: 獣性
- name: 植タトゥ
joints:
- position: [
0.5,
0.525925439940814
]
- position: [
0.49084942215127053,
0.531891026214109
]
- position: [
0.5091505778487299,
0.531891026214109
]
- position: [
0.47950612315817276,
0.5342460034502376
]
- position: [
0.5204938768418274,
0.5342460034502376
]
- position: [
0.5000000000000002,
0.531891026214109
]
- position: [
0.011819984866887245,
0.0048159168484769345
]
- position: [
0.0016388137072666491,
0.0048159168484769345
]

View File

@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286707,0.2174876545767787) rotate(0) scale(1,1) translate(-0.5,-0.5353553390593273)"><path d="M 0.4797070435193672 0.528667127597696 C 0.47993360524024326 0.5278215877443363 0.4832713240232397 0.5170561313715363 0.48242578416987997 0.5185206493573796 C 0.4832713240232397 0.5170561313715363 0.49131803974552696 0.5102473719142163 0.4898535217596836 0.511092911767576 C 0.49131803974552696 0.5102473719142163 0.5016910797067193 0.5083741711170633 0.49999999999999994 0.5083741711170633 C 0.5016910797067193 0.5083741711170633 0.5116109962261597 0.5119384516209357 0.5101464782403163 0.511092911767576 C 0.5116109962261597 0.5119384516209357 0.5184197556834796 0.519985167343223 0.51757421583012 0.5185206493573796 C 0.5184197556834796 0.519985167343223 0.5205195182015089 0.5295126674510556 0.5202929564806328 0.528667127597696" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5202929564806328 0.528667127597696 C 0.520309023344533 0.5289471446505595 0.5205028404606348 0.5325846831871943 0.5204857588474355 0.5320273322320583 C 0.5205028404606348 0.5325846831871943 0.5204989505883221 0.5356326729615997 0.5204979358390232 0.5353553390593273" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5204979358390232 0.5353553390593273 C 0.5193591616257441 0.5354333875300765 0.5045550968531163 0.5363699691790668 0.5068326452796744 0.5362919207083175 C 0.5045550968531163 0.5363699691790668 0.49088980629376755 0.5362138722375683 0.4931673547203257 0.5362919207083175 C 0.49088980629376755 0.5362138722375683 0.4783632899476979 0.5352772905885781 0.47950206416097696 0.5353553390593273" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.47950206416097696 0.5353553390593273 C 0.47950307891027594 0.535078005157055 0.47953132276576366 0.5314699812769224 0.47951424115256447 0.5320273322320583 C 0.47953132276576366 0.5314699812769224 0.4797231103832674 0.5283871105448325 0.4797070435193672 0.528667127597696" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="筋肉">
<g transform="translate(0.3281928749799412,0.2140233417315604) rotate(0) scale(1,1) translate(-0.03902359100054435,-0.023714552641113516)"><path d="M 0.04317048634950904 0.03327392524020258 C 0.04276115674340394 0.033250611894314504 0.037617653526815606 0.032859661886361684 0.03825853107624779 0.032994165089545634 C 0.037617653526815606 0.032859661886361684 0.03524840781299571 0.031548696944699334 0.03547995575632279 0.031659886801995205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03547995575632279 0.031659886801995205 C 0.03528289206507763 0.031222687130509883 0.03313498090179289 0.025585475874675308 0.03311519146138084 0.02641349074417136 C 0.03313498090179289 0.025585475874675308 0.03593428217292462 0.021332893170031852 0.0357174290412674 0.021723708368042584" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0357174290412674 0.021723708368042584 C 0.03614436900052407 0.021714772643439142 0.0417209454544381 0.021603656885237407 0.040840708552347456 0.021616479672801305 C 0.0417209454544381 0.021603656885237407 0.04673356880918909 0.021565947854315346 0.04628027186635512 0.021569834917275803" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04628027186635512 0.021569834917275803 C 0.04636345736374451 0.021842621936852796 0.047370995030766035 0.025544714709932515 0.04727849783502784 0.024843279152199704 C 0.047370995030766035 0.025544714709932515 0.04739954991356222 0.030415710148225358 0.04739023821521342 0.02998706161006954" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04739023821521342 0.02998706161006954 C 0.04733901171143784 0.030224402151935517 0.0464238741810978 0.033109053414972375 0.0467755201699065 0.032835148112461285 C 0.0464238741810978 0.033109053414972375 0.04287006686447592 0.03331049000084769 0.04317048634950904 0.03327392524020258" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34649403067740053,0.2140233417315604) rotate(0) scale(1,1) translate(-0.03902359100054435,-0.023714552641113516)"><path d="M 0.03487669565157957 0.03327392524020258 C 0.034576276166546446 0.03323736047955748 0.03092001584237343 0.032561242809950194 0.03127166183118213 0.032835148112461285 C 0.03092001584237343 0.032561242809950194 0.030605717282099598 0.02974972106820356 0.030656943785875176 0.02998706161006954" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030656943785875176 0.02998706161006954 C 0.030666255484223977 0.02955841307191372 0.03086118136179896 0.024141843594466895 0.030768684166060767 0.024843279152199707 C 0.03086118136179896 0.024141843594466895 0.03185009563212287 0.02129704789769881 0.03176691013473348 0.021569834917275803" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03176691013473348 0.021569834917275803 C 0.032220207077567446 0.02157372198023626 0.03808671035083179 0.021629302460365204 0.037206473448741145 0.021616479672801305 C 0.03808671035083179 0.021629302460365204 0.042756692919077854 0.021732644092646025 0.042329752959821186 0.021723708368042584" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.042329752959821186 0.021723708368042584 C 0.042546606091478395 0.022114523566053316 0.04495177998011979 0.027241505613667415 0.044931990539707735 0.02641349074417136 C 0.04495177998011979 0.027241505613667415 0.042370162553520635 0.03209708647348052 0.0425672262447658 0.031659886801995205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0425672262447658 0.031659886801995205 C 0.04233567830143871 0.031771076659291075 0.03914777337540859 0.033128668292729584 0.039788650924840775 0.032994165089545634 C 0.03914777337540859 0.033128668292729584 0.034467366045474464 0.03329723858609066 0.03487669565157957 0.03327392524020258" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="獣性">
<g transform="translate(0.31684957598684343,0.21637831896768905) rotate(0) scale(1,1) translate(-0.009302710415341272,-0.009302710415341276)"><path d="M 0.005377704467856876 0.006345958972611827 C 0.005607791613106347 0.006233527511391396 0.00850755848323093 0.004773934698724074 0.008138750210850521 0.004996781437966665 C 0.00850755848323093 0.004773934698724074 0.009942124863552705 0.003561382823678567 0.009803403736421768 0.003671798101700728" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009632630390369714 0.0104321149917104 C 0.009541397769499124 0.01038606949247728 0.008183860421461532 0.009897095587543052 0.00853783893992265 0.009879569000912969 C 0.008183860421461532 0.009897095587543052 0.005122142271245755 0.010706006117134598 0.005384888168836285 0.010642434031271396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005384888168836285 0.010642434031271396 C 0.0057143838417589915 0.010328192377440632 0.009338237602160472 0.006513494597080595 0.009338836243908756 0.006871534185302225 C 0.009338237602160472 0.006513494597080595 0.005047610153185884 0.00630216103822096 0.005377704467856874 0.006345958972611827" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35783732967049803,0.21637831896768905) rotate(0) scale(1,1) translate(-0.009302710415341272,-0.009302710415341276)"><path d="M 0.013227716362825603 0.006345958972611827 C 0.012897622048154617 0.006389756907002693 0.009265985945025479 0.007229573773523856 0.009266584586773763 0.006871534185302225 C 0.009265985945025479 0.007229573773523856 0.013550028334768902 0.01095667568510216 0.0132205326618462 0.010642434031271396" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0132205326618462 0.010642434031271396 C 0.01295778676425567 0.010578861945408195 0.009713603372298724 0.009862042414282885 0.010067581890759845 0.009879569000912969 C 0.009713603372298724 0.009862042414282885 0.008881557819442146 0.01047816049094352 0.008972790440312739 0.0104321149917104" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008802017094260761 0.003671798101700728 C 0.008940738221391695 0.0037822133797228894 0.010835478892212378 0.005219628177209256 0.010466670619831975 0.004996781437966665 C 0.010835478892212378 0.005219628177209256 0.013457803508075072 0.006458390433832257 0.013227716362825603 0.006345958972611827" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="植タトゥ">
<g id="左">
<g transform="translate(0.3219401615666538,0.21446483652908907) rotate(0) scale(1,1) translate(-0.004602515971465629,-0.004673193949358962)"><path d="M 0.0027659243489766964 0.004807765640333156 C 0.002908133249222949 0.004819957447477396 0.004737914618311542 0.0050175960219960535 0.004472431151931725 0.004954067326064043 C 0.004737914618311542 0.0050175960219960535 0.006144802816695883 0.005723285349026019 0.005951725945534499 0.0055701099915172764 C 0.006144802816695883 0.005723285349026019 0.006887368679508386 0.007037438090026482 0.0067893536058683274 0.006792171616168956 C 0.006887368679508386 0.007037438090026482 0.007156119597827437 0.008656735682944144 0.007127906829215197 0.00851330767780759" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007127906829215197 0.00851330767780759 C 0.006983160953627195 0.008320972894670502 0.005027457782139292 0.005896495110372999 0.005390956322159167 0.006205290280162535 C 0.005027457782139292 0.005896495110372999 0.002547171684544824 0.004691305253680707 0.0027659243489766964 0.004807765640333156" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31684957598684343,0.21637831896768905) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.006930319582675924 0.0011505212316218255 C 0.007284718624405776 0.0014103383253453734 0.01188230665414352 0.0043691971660275225 0.01118310808343415 0.004268326356304401 C 0.01188230665414352 0.0043691971660275225 0.01566550196016787 0.0022020246642988554 0.015320702431188354 0.002360970948299282" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015320702431188354 0.002360970948299282 C 0.015000953886415605 0.0026315166409609965 0.010772043313519072 0.005705545764775532 0.011483719893915351 0.0056075192602398575 C 0.010772043313519072 0.005705545764775532 0.0063886554308094645 0.003364769814601333 0.006780583466432994 0.0035372890027273733" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006780583466432994 0.0035372890027273733 C 0.00678627325205319 0.0034394481144532424 0.006861338903562254 0.0021643010291790056 0.0068488608938753436 0.002363198343437801 C 0.006861338903562254 0.0021643010291790056 0.006937107806742634 0.0010494648056371618 0.0069303195826759196 0.0011505212316218264" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="右">
<g transform="translate(0.3527467440906878,0.21446483652908907) rotate(0) scale(1,1) translate(-0.004602515971465629,-0.004673193949358962)"><path d="M 0.006439107593954607 0.004807765640333156 C 0.006220354929522738 0.004924226026985604 0.003450577080752313 0.0065140854499520714 0.0038140756207721838 0.006205290280162535 C 0.003450577080752313 0.0065140854499520714 0.0019323792381281586 0.00870564246094468 0.0020771251137161606 0.00851330767780759" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0020771251137161606 0.00851330767780759 C 0.002105337882328399 0.008369879672671037 0.0025136934107030753 0.00654690514231143 0.002415678337063021 0.006792171616168956 C 0.0025136934107030753 0.00654690514231143 0.0034463828685581954 0.005416934634008534 0.003253305997396816 0.0055701099915172764 C 0.0034463828685581954 0.005416934634008534 0.004998084257379391 0.004890538630132033 0.004732600790999575 0.004954067326064043 C 0.004998084257379391 0.004890538630132033 0.00658131649420086 0.0047955738331889155 0.006439107593954607 0.004807765640333156" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35783732967049803,0.21637831896768905) rotate(0) scale(1,1) translate(-0.006729399287076907,-0.006729399287076907)"><path d="M 0.006528478991478015 0.0011505212316218264 C 0.006535267215544723 0.001251577657606491 0.00662241568996542 0.0025620956576965967 0.00660993768027851 0.002363198343437801 C 0.00662241568996542 0.0025620956576965967 0.006683904893341132 0.0036351298910015043 0.006678215107720931 0.0035372890027273733" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006678215107720931 0.0035372890027273733 C 0.006286287072097394 0.0037098081908534136 0.0012634020998422034 0.005509492755704183 0.0019750786802384896 0.0056075192602398575 C 0.0012634020998422034 0.005509492755704183 -0.002181652401807255 0.0020904252556375675 -0.0018619038570345055 0.002360970948299282" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0018619038570345055 0.002360970948299282 C -0.0015171043280549892 0.0025199172322997085 0.0029748890614290664 0.00416745554658128 0.0022756904907196896 0.004268326356304401 C 0.0029748890614290664 0.00416745554658128 0.006882878033207876 0.0008907041378982776 0.006528478991478015 0.0011505212316218255" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1,31 @@
id: T字剃刀
original_key: T字剃刀
resource: カーソル
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name: ヘッド
- name:
- name:
- name: グリップ
joints:
- position: [
0.09437924547149004,
0.09265034207925384
]
- position: [
0.016020138022461626,
0.008737801282823494
]
- position: [
0.016020138022461633,
0.005066197399102398
]
- position: [
0.01602013802246163,
0.0191025105165327
]

View File

@@ -0,0 +1,89 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.4093106485408542,0.35388875871219855) rotate(0) scale(1,1) translate(-0.09500000000000003,-0.09657508035509305)"><path d="M 0.08723800401010155 0.09343147197918418 C 0.08788483700925975 0.09343147197918418 0.09629366599831644 0.09343147197918418 0.09500000000000003 0.09343147197918418 C 0.09629366599831644 0.09343147197918418 0.10340882898905673 0.09343147197918418 0.10276199598989852 0.09343147197918418" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10276199598989852 0.09343147197918418 C 0.10276199598989852 0.0936061168889569 0.10276199598989852 0.0958765007160022 0.10276199598989852 0.09552721089645677 C 0.10276199598989852 0.0958765007160022 0.10276199598989852 0.09779759472350207 0.10276199598989852 0.09762294981372935" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10276199598989852 0.09762294981372935 C 0.1021151629907403 0.09762294981372935 0.09370633400168361 0.09762294981372935 0.09500000000000003 0.09762294981372935 C 0.09370633400168361 0.09762294981372935 0.08659117101094335 0.09762294981372935 0.08723800401010155 0.09762294981372935" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08723800401010155 0.09762294981372935 C 0.08723800401010155 0.09744830490395663 0.08723800401010154 0.09517792107691134 0.08723800401010154 0.09552721089645677 C 0.08723800401010154 0.09517792107691134 0.08723800401010154 0.09325682706941146 0.08723800401010154 0.09343147197918418" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="刃">
<g transform="translate(0.4093106485408542,0.35388875871219855) rotate(0) scale(1,1) translate(-0.09437924547149004,-0.09342863686317893)"><path d="M 0.08762630896027838 0.09151864306392664 C 0.08818905366954602 0.09151864306392664 0.09550473489002533 0.09151864306392664 0.09437924547149004 0.09151864306392664 C 0.09550473489002533 0.09151864306392664 0.10169492669196936 0.09151864306392664 0.10113218198270173 0.09151864306392664" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10113218198270173 0.09151864306392664 C 0.10113218198270173 0.09156579718956527 0.10113218198270173 0.0921788008228675 0.10113218198270173 0.09208449257159024 C 0.10113218198270173 0.0921788008228675 0.10113218198270173 0.09269749620489247 0.10113218198270173 0.09265034207925384" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10113218198270173 0.09265034207925384 C 0.10056943727343409 0.09265034207925384 0.09325375605295476 0.09265034207925384 0.09437924547149004 0.09265034207925384 C 0.09325375605295476 0.09265034207925384 0.08706356425101075 0.09265034207925384 0.08762630896027838 0.09265034207925384" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08762630896027838 0.09265034207925384 C 0.08762630896027838 0.0926031879536152 0.08762630896027838 0.09199018432031297 0.08762630896027838 0.09208449257159024 C 0.08762630896027838 0.09199018432031297 0.08762630896027838 0.091471488938288 0.08762630896027838 0.09151864306392664" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.35311046392827344) rotate(0) scale(1,1) translate(-0.09500000000000003,-0.09184983928981395)"><path d="M 0.08824706348878837 0.09184983928981395 C 0.088809808198056 0.09184983928981395 0.09612548941853531 0.09184983928981395 0.09500000000000003 0.09184983928981395 C 0.09612548941853531 0.09184983928981395 0.10231568122047935 0.09184983928981395 0.10175293651121171 0.09184983928981395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10175293651121171 0.09184983928981395 C 0.10175293651121171 0.09189699341545259 0.10175293651121171 0.09250999704875483 0.10175293651121171 0.09241568879747757 C 0.10175293651121171 0.09250999704875483 0.10175293651121171 0.09302869243077977 0.10175293651121171 0.09298153830514114" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10175293651121171 0.09298153830514114 C 0.10119019180194408 0.09298153830514114 0.09387451058146475 0.09298153830514114 0.09500000000000003 0.09298153830514114 C 0.09387451058146475 0.09298153830514114 0.08768431877952074 0.09298153830514114 0.08824706348878837 0.09298153830514114" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08824706348878837 0.09298153830514114 C 0.08824706348878837 0.0929343841795025 0.08824706348878836 0.0923213805462003 0.08824706348878836 0.09241568879747757 C 0.08824706348878836 0.0923213805462003 0.08824706348878836 0.09180268516417532 0.08824706348878836 0.09184983928981395" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.4093106485408542,0.36117109545183673) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01602013802246163)"><path d="M 0.009220033749663068 0.008541744673957512 C 0.009220033749663068 0.008489093235114549 0.009220033749663068 0.007804624530156039 0.009220033749663068 0.007909927407841964 C 0.009220033749663068 0.007804624530156039 0.009220033749663068 0.007225458702883458 0.009220033749663068 0.00727811014172642" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009220033749663068 0.00727811014172642 C 0.009786709105729619 0.00727811014172642 0.017153488734594772 0.0072781101417264136 0.01602013802246167 0.007278110141726414 C 0.017153488734594772 0.0072781101417264136 0.023386917651326822 0.007278110141726411 0.022820242295260272 0.007278110141726411" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022820242295260272 0.007278110141726411 C 0.022820242295260272 0.007330761580569374 0.022820242295260272 0.008015230285527888 0.022820242295260272 0.007909927407841962 C 0.022820242295260272 0.008015230285527888 0.022820242295260272 0.00859439611280048 0.022820242295260272 0.008541744673957517" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022820242295260272 0.008541744673957517 C 0.022381206790934232 0.008638514111759199 0.017061116989507734 0.010416469503586732 0.01755181624334779 0.0097029779275777 C 0.017061116989507734 0.010416469503586732 0.01688018749966557 0.017720365724273244 0.016931851249179588 0.017103643586065895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.016931851249179588 0.017103643586065895 C 0.01685587514695309 0.017103643586065895 0.015868185818008636 0.01710364358606589 0.01602013802246163 0.01710364358606589 C 0.015868185818008636 0.01710364358606589 0.015032448693517171 0.017103643586065895 0.015108424795743668 0.017103643586065895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015108424795743668 0.017103643586065895 C 0.015056761046229649 0.016486921447858547 0.01399776054773539 0.00898948635156867 0.01448845980157544 0.009702977927577702 C 0.01399776054773539 0.00898948635156867 0.008780998245337037 0.00844497523615583 0.009220033749663068 0.008541744673957512" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="グリップ">
<g transform="translate(0.4093106485408542,0.3721250360751959) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01602013802246163)"><path d="M 0.01417733766295795 0.005024116747220732 C 0.014330904359583257 0.005024116747220732 0.016327271415712247 0.005024116747220732 0.016020138022461633 0.005024116747220732 C 0.016327271415712247 0.005024116747220732 0.018016505078590622 0.005024116747220732 0.017862938381965315 0.005024116747220732" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017862938381965315 0.005024116747220732 C 0.017862938381965315 0.005940451853490806 0.01786293838196531 0.017852808235001776 0.01786293838196531 0.016020138022461626 C 0.01786293838196531 0.017852808235001776 0.017862938381965315 0.027932494403972597 0.017862938381965315 0.027016159297702524" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017862938381965315 0.027016159297702524 C 0.01770937168534001 0.027016159297702524 0.01571300462921102 0.027016159297702517 0.016020138022461633 0.027016159297702517 C 0.01571300462921102 0.027016159297702517 0.014023770966332644 0.027016159297702524 0.01417733766295795 0.027016159297702524" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01417733766295795 0.027016159297702524 C 0.01417733766295795 0.02609982419143245 0.01417733766295795 0.014187467809921485 0.01417733766295795 0.016020138022461633 C 0.01417733766295795 0.014187467809921485 0.01417733766295795 0.004107781640950665 0.01417733766295795 0.00502411674722074" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.36117109545183673) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.36262482201696916) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.3640785485821017) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.36553227514723424) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.3669860017123668) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.3684397282774993) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.36989345484263186) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.3713471814077644) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.37280090797289694) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.3742546345380295) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.375708361103162) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.37716208766829457) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.3786158142334271) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.38006954079855965) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.4093106485408542,0.3815232673636922) rotate(0) scale(1,1) translate(-0.01602013802246163,-0.01764878395140021)"><path d="M 0.014834298326317625 0.0191025105165327 C 0.014834298326317625 0.019041938576318855 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.018375647233966553 C 0.014834298326317625 0.01825450335353885 0.014834298326317625 0.01758821201118639 0.014834298326317625 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014834298326317625 0.017648783951400248 C 0.014933118300996293 0.017648783951400248 0.016217777971818965 0.017648783951400248 0.01602013802246163 0.017648783951400248 C 0.016217777971818965 0.017648783951400248 0.0173047976932843 0.017648783951400248 0.017205977718605634 0.017648783951400248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605634 0.017648783951400248 C 0.017205977718605634 0.017709355891614105 0.017205977718605634 0.018496791114394256 0.017205977718605634 0.018375647233966553 C 0.017205977718605634 0.018496791114394256 0.017205977718605638 0.019163082456746548 0.017205977718605638 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017205977718605638 0.0191025105165327 C 0.01710715774392697 0.0191025105165327 0.015822498073104294 0.0191025105165327 0.01602013802246163 0.0191025105165327 C 0.015822498073104294 0.0191025105165327 0.014735478351638966 0.0191025105165327 0.014834298326317632 0.0191025105165327" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

View File

@@ -0,0 +1,104 @@
id: UpperArm
original_key: 上腕
resource: 腕左
morph_x: 1
morph_y: 1
variants:
- x: 0
y: 0
file: x0y0.svg
fields:
- name: 筋肉上
- name: 上腕
- name: 筋肉下
- name: 虫性
- name: 淫タトゥ
- name: 悪タトゥ
- name: 植タトゥ
- name: 獣性
- name: 紋柄
- name:
- name: ハイライト
- name: 植性
- name: 傷X
- name: グローブ
- name: シャツ
- name: ナース
- name:
joints:
- position: [
0.07814964004132166,
0.06697964060192962
]
- position: [
0.05740038952425257,
0.06703750188040752
]
- position: [
0.010555487495621272,
0.011749948329940287
]
- position: [
0.010555487495621272,
0.010338658747329484
]
- position: [
0.004200262811358903,
0.018842717187683242
]
- position: [
0.004200262811358902,
0.017431427605072432
]
- position: [
-0.002716858145791588,
0.01204127508642238
]
- position: [
-0.002716636284319151,
0.010731191619331898
]
- position: [
0.004199819088414027,
0.018640304956642605
]
- position: [
0.004200040949886464,
0.017330221489552114
]
- position: [
0.026869317529760166,
0.030271893733198652
]
- position: [
0.02752606661803168,
0.027501172559863132
]
- position: [
0.0875053695160822,
0.06643890580352285
]
- position: [
0.08748706963117976,
0.06643746838038998
]
- position: [
0.09894680594361244,
0.08947767346697902
]
- position: [
0.09138717458072837,
0.09108990260088277
]
- position: [
0.0062629437883077056,
0.011952414894564908
]
- position: [
0.05828671255163689,
0.024613770291503877
]
- position: [
0.04664787353630749,
0.029830521185509957
]

View File

@@ -0,0 +1,439 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.01713961730213782,-0.01713961730213782)"><path d="M 0.006362183862219579 0.01058093626311882 C 0.007362309706977757 0.01042491204582697 0.020513848771921587 0.008769408804078786 0.018363693999317716 0.008708645655616642 C 0.020513848771921587 0.008769408804078786 0.03331407006131174 0.011526881410418546 0.03216404113346605 0.011310094044664553" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3096532596274547,0.15436183896223277) rotate(0) scale(1,1) translate(-0.10030823607636913,-0.06682368514423945)"><path d="M 0.09557807836953092 0.07441795962441568 C 0.09510948105138929 0.07443067732106275 0.08850154002281034 0.07459725400862734 0.08995491055183143 0.07457057198418052 C 0.08850154002281034 0.07459725400862734 0.07622491374657477 0.07470313999798915 0.07813763202127785 0.07473814391777758 C 0.07622491374657477 0.07470313999798915 0.06527418771397554 0.0740918497178245 0.06700229125539432 0.07415052494671931 C 0.06527418771397554 0.0740918497178245 0.05660023104665742 0.07402433418973313 0.05740038952425257 0.07403404117103976" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05740038952425257 0.07403404117103976 C 0.057149015859441224 0.07395592796050902 0.053907054797645126 0.07280516017422799 0.05438390554651642 0.073096682644671 C 0.053907054797645126 0.07280516017422799 0.051370173112999934 0.07003083979536835 0.05167818053779706 0.07053577152572364 C 0.051370173112999934 0.07003083979536835 0.0506878164489509 0.06645445693952151 0.0506878164489509 0.06703750188040752 C 0.0506878164489509 0.06645445693952151 0.05198618796259419 0.06303430050473612 0.05167818053779706 0.0635392322350914 C 0.05198618796259419 0.06303430050473612 0.05486075629538771 0.06068679864570104 0.05438390554651642 0.06097832111614405 C 0.05486075629538771 0.06068679864570104 0.05765176318906391 0.059962849379244565 0.05740038952425257 0.060040962589775294" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05740038952425257 0.060040962589775294 C 0.05819306618239061 0.06001678386184239 0.0686426143000018 0.05968366502733191 0.06691250942190907 0.0597508178545805 C 0.0686426143000018 0.05968366502733191 0.08009330742644366 0.059166544033242265 0.07816164806136537 0.05923512866279226 C 0.08009330742644366 0.059166544033242265 0.09193797080409893 0.05883064675507807 0.09009242180284861 0.058927802299980576 C 0.09193797080409893 0.05883064675507807 0.1011595539324959 0.057997717109294 0.10030823607636918 0.0580692621239622" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10030823607636918 0.0580692621239622 C 0.10067099205757855 0.05831520547095338 0.10517297771343967 0.061678720598152714 0.10466130785088162 0.06102058228785645 C 0.10517297771343967 0.061678720598152714 0.10647538004862377 0.06680011892445042 0.10644827442706566 0.0659669218475174 C 0.10647538004862377 0.06680011892445042 0.10451876326398818 0.07170895009056118 0.104986575309579 0.07101894721105274 C 0.10451876326398818 0.07170895009056118 0.10005048846830517 0.07453020743606545 0.10083452987997583 0.07424695640161853 C 0.10005048846830517 0.07453020743606545 0.0951400407436605 0.0744322098929821 0.09557807836953092 0.07441795962441568" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.01713961730213782,-0.01713961730213782)"><path d="M 0.027481174637154188 0.014205064393423568 C 0.027814240590317278 0.014554172245097474 0.03151756469521433 0.01917627244870848 0.03147796607511129 0.018394358613510447 C 0.03151756469521433 0.01917627244870848 0.02766289074533066 0.024020836399324126 0.027956358078390708 0.023588030415799998" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.027956358078390708 0.023588030415799998 C 0.02707585307713077 0.023809063336310114 0.015590783545257203 0.026249614455701127 0.017390298063271463 0.026240425461921388 C 0.015590783545257203 0.026249614455701127 0.005443174345465256 0.023486454414426497 0.006362183862219579 0.023698298341156873" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006362183862219579 0.023698298341156873 C 0.006056400364870568 0.023201154613611295 0.002775818810746402 0.01686400492359075 0.0026927818940314374 0.017732573610609953 C 0.002775818810746402 0.01686400492359075 0.007747447276863132 0.012904049137452824 0.007358626862799155 0.01327547409692645" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007358626862799155 0.01327547409692645 C 0.008222584145488454 0.013192411531446907 0.019402993236267 0.012356189169213353 0.017726114255070747 0.012278723311171927 C 0.019402993236267 0.012356189169213353 0.028294096335661142 0.014365592816944538 0.027481174637154188 0.014205064393423568" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="虫性">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.02164779978928289,-0.021647799789282902)"><path d="M 0.029486878648248664 0.013736586183606412 C 0.030058404200651055 0.013514520412088522 0.037198440512043865 0.01102054071058737 0.036345185277077356 0.011071796925391725 C 0.037198440512043865 0.01102054071058737 0.04000767115041086 0.013292321162667693 0.03972594146784674 0.013121511605954157" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03972594146784674 0.013121511605954157 C 0.03952141905767168 0.013348289723752536 0.03695727231522327 0.01655452165111808 0.03727167254574606 0.01584284901953471 C 0.03695727231522327 0.01655452165111808 0.03584326088122556 0.02214647769873959 0.03595313870157329 0.021661583184954602" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03595313870157329 0.021661583184954602 C 0.035998546815084 0.022027999315649974 0.036634017452909236 0.026681250263346046 0.03649803606370184 0.026058576753299065 C 0.036634017452909236 0.026681250263346046 0.037675488647758736 0.029389922684869986 0.03758491537206205 0.029133665305518378" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03758491537206205 0.029133665305518378 C 0.03732786816132583 0.029240519543578095 0.03378249253924589 0.03043647856814424 0.03450034884322738 0.03041591616223498 C 0.03378249253924589 0.03043647856814424 0.02768679726326388 0.02934655580517401 0.028970639724284156 0.02938041417642948 C 0.02768679726326388 0.02934655580517401 0.017478800237365137 0.02996899340887536 0.019094239310984036 0.03000961570716935 C 0.017478800237365137 0.02996899340887536 0.008069062604165306 0.028783995177547757 0.009585370840857366 0.028892946596901607 C 0.008069062604165306 0.028783995177547757 0.00017463793983114948 0.02868630301475828 0.0008985404706793199 0.028702198674923154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0008985404706793199 0.028702198674923154 C 0.0005778664084820963 0.028624085070337996 -0.003504971739560298 0.027473312512001805 -0.002949548275687364 0.027764835419901258 C -0.003504971739560298 0.027473312512001805 -0.006087214326023094 0.024698992325252366 -0.005766541095795883 0.025203923780129735 C -0.006087214326023094 0.024698992325252366 -0.006797625901921717 0.021122613935084994 -0.00679762703841389 0.021705657961372818 C -0.006797625901921717 0.021122613935084994 -0.005445852259200408 0.017702465042973167 -0.005766527457889805 0.018207395464675834 C -0.005445852259200408 0.017702465042973167 -0.002394100053776019 0.015354971782552443 -0.002949524654141126 0.015646492900940816 C -0.002394100053776019 0.015354971782552443 0.0012192421132108662 0.014631029472604902 0.0008985677464914822 0.014709142044015357" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0008985677464914822 0.014709142044015357 C 0.0018223542507663885 0.01466528858720965 0.013656913701290883 0.014039405920092207 0.011984005797790359 0.014182900562346857 C 0.013656913701290883 0.014039405920092207 0.022432035326035972 0.012950013472064531 0.02097346258849778 0.012987206336959569 C 0.022432035326035972 0.012950013472064531 0.030196329986561236 0.013799034504160316 0.029486878648248664 0.013736586183606412" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.01713961730213782,-0.01713961730213782)"><path d="M 0.027481174637154188 0.014205064393423568 C 0.027814240590317278 0.014554172245097474 0.03151756469521433 0.01917627244870848 0.03147796607511129 0.018394358613510447 C 0.03151756469521433 0.01917627244870848 0.02766289074533066 0.024020836399324126 0.027956358078390708 0.023588030415799998" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.027956358078390708 0.023588030415799998 C 0.02707585307713077 0.023809063336310114 0.015590783545257203 0.026249614455701127 0.017390298063271463 0.026240425461921388 C 0.015590783545257203 0.026249614455701127 0.005443174345465256 0.023486454414426497 0.006362183862219579 0.023698298341156873" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006362183862219579 0.023698298341156873 C 0.006056400364870568 0.023201154613611295 0.002775818810746402 0.01686400492359075 0.0026927818940314374 0.017732573610609953 C 0.002775818810746402 0.01686400492359075 0.007747447276863132 0.012904049137452824 0.007358626862799155 0.01327547409692645" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007358626862799155 0.01327547409692645 C 0.008222584145488454 0.013192411531446907 0.019402993236267 0.012356189169213353 0.017726114255070747 0.012278723311171927 C 0.019402993236267 0.012356189169213353 0.028294096335661142 0.014365592816944538 0.027481174637154188 0.014205064393423568" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="淫タトゥ">
<g id="ハート">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M 0.014109514127930895 0.0027250754907996474 C 0.014027198134357741 0.0027285658794605756 0.01298567108356285 0.0027770462291717367 0.013121722205053045 0.0027669601547307835 C 0.01298567108356285 0.0027770462291717367 0.012423165542131524 0.0028527040698711125 0.012476900670048564 0.002846108384091087" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012476900670048564 0.002846108384091087 C 0.012781882565907282 0.002679819966736638 0.016615523807866885 0.0005800659626731058 0.016136683420353175 0.0008506473758377025 C 0.016615523807866885 0.0005800659626731058 0.01856173190344993 -0.0005364668570054458 0.01822298532021308 -0.00040086857388407424 C 0.01856173190344993 -0.0005364668570054458 0.020495218078508758 -0.0008139473702289785 0.020201642419195396 -0.0007765320216187556 C 0.020495218078508758 -0.0008139473702289785 0.02200824250882125 -0.0008403131950524879 0.021745893231973398 -0.0008498527572067492 C 0.02200824250882125 -0.0008403131950524879 0.023600328399830908 -0.0006038938263577655 0.023349833741369626 -0.0006620572757676201 C 0.023600328399830908 -0.0006038938263577655 0.024981064159258153 -2.9897881690322303E-05 0.02475182913350879 -0.00015189136428849474 C 0.024981064159258153 -2.9897881690322303E-05 0.02600417770503322 0.0009600147844190872 0.02610065405036199 0.0008018645154104492 C 0.02600417770503322 0.0009600147844190872 0.023385234567830336 0.0018245824761822201 0.02359411298956354 0.0017459118638151608" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02359411298956354 0.0017459118638151608 C 0.023548139239286094 0.0017533121321673072 0.022936678410780023 0.0018489137144977329 0.023042427986234192 0.0018347150840409179 C 0.022936678410780023 0.0018489137144977329 0.022265342258936793 0.0019230937914016101 0.022325118084113516 0.0019162954292969415" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.022325118084113516 0.0019162954292969415 C 0.022510476021461244 0.0018055763542658477 0.02475163925306918 0.00041531762945836283 0.02454941333228624 0.0005876665289238158 C 0.02475163925306918 0.00041531762945836283 0.024651864167599073 -0.0002560350146794477 0.02475182913350879 -0.00015189136428849474 C 0.024651864167599073 -0.0002560350146794477 0.023099339082908343 -0.0007202207251774746 0.023349833741369626 -0.0006620572757676201 C 0.023099339082908343 -0.0007202207251774746 0.021483543955125545 -0.0008593923193610106 0.021745893231973398 -0.0008498527572067492 C 0.021483543955125545 -0.0008593923193610106 0.019938002029274732 -0.0007002773889118103 0.020201642419195396 -0.0007765320216187556 C 0.019938002029274732 -0.0007002773889118103 0.018327978397047907 0.00021597048915428173 0.018582208552925444 6.520283527659387E-05 C 0.018327978397047907 0.00021597048915428173 0.01677815601324874 0.0012543358795404197 0.017150880548664954 0.0010326798249134985 C 0.01677815601324874 0.0012543358795404197 0.013856066926203057 0.0028661084629568265 0.014109514127930895 0.0027250754907996474" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(0.0014957944219115837,-0.008105469171541388)"><path d="M 0.014109514127930895 0.0027250754907996474 C 0.014306130765664981 0.0028494558622258227 0.016856557714458584 0.004493533856307799 0.016468913780739922 0.004217639947913752 C 0.016856557714458584 0.004493533856307799 0.019140900469619637 0.006346564678236522 0.01876124133255484 0.006035802391528208 C 0.019140900469619637 0.006346564678236522 0.021377118643673962 0.00812732219019491 0.02102482342551752 0.007946787388413524 C 0.021377118643673962 0.00812732219019491 0.023285512921151188 0.00815097620223014 0.022988783950432152 0.008202220012904835 C 0.023285512921151188 0.00815097620223014 0.024783024422688312 0.007112333393929655 0.024585571074145957 0.007331861660317181 C 0.024783024422688312 0.007112333393929655 0.025362973102341008 0.005264041479678094 0.025358224132940414 0.005567880816254509 C 0.025362973102341008 0.005264041479678094 0.02438979986955086 0.0033814908391537365 0.0246425587069531 0.0036857896214002005 C 0.02438979986955086 0.0033814908391537365 0.022131998032210217 0.0017688375799550032 0.022325118084113516 0.0019162954292969415" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.022325118084113516 0.0019162954292969415 C 0.02238489390929024 0.0019094970671922728 0.02314817756168836 0.0018205164535841029 0.023042427986234192 0.0018347150840409179 C 0.02314817756168836 0.0018205164535841029 0.023640086739840985 0.0017385115954630145 0.02359411298956354 0.0017459118638151608" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02359411298956354 0.0017459118638151608 C 0.023808232919905404 0.0019124467119560808 0.02642593812627792 0.004094080798576255 0.026163552153665916 0.003744330041506201 C 0.02642593812627792 0.004094080798576255 0.026706055712359206 0.006316449309181155 0.026742744660907595 0.00594292094865582 C 0.026706055712359206 0.006316449309181155 0.025440514788844116 0.00852621335972504 0.02572328477108523 0.00822667036781022 C 0.025440514788844116 0.00852621335972504 0.022913329351635967 0.00961777640496862 0.023349504874014215 0.009537436851633642 C 0.022913329351635967 0.00961777640496862 0.020012810493707577 0.008953805265927445 0.02048917850254624 0.00919074500782994 C 0.020012810493707577 0.008953805265927445 0.017224983624639322 0.0063426655020883856 0.017633088767950264 0.006694159948803711 C 0.017224983624639322 0.0063426655020883856 0.015162234441323119 0.0046521406835199845 0.015591916782814927 0.004972811647246036 C 0.015162234441323119 0.0046521406835199845 0.012217315993984701 0.002668883112161508 0.012476900670048564 0.002846108384091087" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012476900670048564 0.002846108384091087 C 0.012530635797965605 0.0028395126983110615 0.013257773326543239 0.00275687408028983 0.013121722205053045 0.0027669601547307835 C 0.013257773326543239 0.00275687408028983 0.014191830121504049 0.0027215851021387192 0.014109514127930895 0.0027250754907996474" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.012599631584496921,-0.012599631584496921)"><path d="M 0.017042350784867436 0.006686242894967819 C 0.017455414825961437 0.006629637094652231 0.02277971543189607 0.0058319911316715226 0.021999119277995444 0.006006973291180764 C 0.02277971543189607 0.0058319911316715226 0.02708411519599308 0.004429362015224145 0.026409504631674952 0.004586456980856918 C 0.02708411519599308 0.004429362015224145 0.030771927801062 0.004050190289787257 0.030094446049812942 0.004121833703587482 C 0.030771927801062 0.004050190289787257 0.03511751180119151 0.0037084338629559408 0.034539285646663635 0.0037267360152542263 C 0.03511751180119151 0.0037084338629559408 0.037395446749895214 0.003968861931870087 0.03703315990414747 0.003902207876008058 C 0.037395446749895214 0.003968861931870087 0.03916019554622911 0.004645315562864925 0.038886727795636594 0.004526584685598568 C 0.03916019554622911 0.004645315562864925 0.04051129082107906 0.005449015503791714 0.04031477291125772 0.005326978403204347 C 0.04051129082107906 0.005449015503791714 0.04132245686367883 0.006046367516767185 0.04124494271349259 0.005991029892646967" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04124494271349259 0.005991029892646967 C 0.04103982736125362 0.005881949619526991 0.038414859233788436 0.0045202923624544375 0.038783558486624944 0.004682066615207259 C 0.038414859233788436 0.0045202923624544375 0.03645509014629802 0.0039807012072971435 0.03682055167945446 0.004049738859613113 C 0.03645509014629802 0.0039807012072971435 0.03384252520949988 0.0038852899439967186 0.03439802008874767 0.003853614787415626 C 0.03384252520949988 0.0038852899439967186 0.02938437893545605 0.0046336747604997916 0.030154613128480987 0.004429840738586219 C 0.02938437893545605 0.0046336747604997916 0.024380678607193913 0.006495733118945651 0.025155209772448398 0.006299623050378493 C 0.024380678607193913 0.006495733118945651 0.020184167563128748 0.006815379881774562 0.020860239145427163 0.006783161561392118 C 0.020184167563128748 0.006815379881774562 0.016724193421487458 0.006678166339432461 0.017042350784867436 0.006686242894967819" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.012599631584496921,-0.012599631584496921)"><path d="M 0.017106649067236076 0.008202245713636164 C 0.017417604532328792 0.008208102977639947 0.02149888219678665 0.008348803378518453 0.020838114648348668 0.008272532881681546 C 0.02149888219678665 0.008348803378518453 0.02569197742078833 0.009378383072187286 0.02503585964849188 0.009117491675679042 C 0.02569197742078833 0.009378383072187286 0.029479115648175666 0.011962318422636608 0.028711527915906063 0.011403229639780481 C 0.029479115648175666 0.011962318422636608 0.035257244220856264 0.016103128567711213 0.03424691243572713 0.015826557069952552 C 0.035257244220856264 0.016103128567711213 0.04155017533125717 0.014220842441091487 0.04083550933745568 0.014722087612884393 C 0.04155017533125717 0.014220842441091487 0.04285702380934806 0.009084026865084579 0.042822904361344984 0.009811615008437698 C 0.04285702380934806 0.009084026865084579 0.041113445909504893 0.005672647799664406 0.04124494271349259 0.005991029892646967" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04124494271349259 0.005991029892646967 C 0.041463529056786165 0.0062537120766201736 0.044108963797157105 0.009815397663544806 0.043867978833015506 0.00914321610032545 C 0.044108963797157105 0.009815397663544806 0.04385780710293637 0.014766358381974596 0.04413676228319181 0.014057208651279228 C 0.04385780710293637 0.014766358381974596 0.03975793438254327 0.018007077161625386 0.04052051666995022 0.01765301286866987 C 0.03975793438254327 0.018007077161625386 0.03418304464688016 0.018205062494954363 0.034985774834308425 0.01830598016674541 C 0.03418304464688016 0.018205062494954363 0.03014488958855558 0.015914687592825796 0.030887754420811042 0.016442000807177313 C 0.03014488958855558 0.015914687592825796 0.025340986747278124 0.011396297639553656 0.02607139684724288 0.011978221594527202 C 0.025340986747278124 0.011396297639553656 0.02137577090623342 0.00914424869075383 0.022122833221233987 0.00945891334749475 C 0.02137577090623342 0.00914424869075383 0.016688633721069584 0.008097523410814616 0.017106649067236076 0.008202245713636164" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.016032243425911998,-0.016032243425912)"><path d="M 0.0186696573494695 0.008195127991243884 C 0.018860712637154914 0.008192097629286261 0.021410346046111972 0.00815226765976543 0.020962320801694436 0.008158763647752403 C 0.021410346046111972 0.00815226765976543 0.024302930239212057 0.00811371050937085 0.024045960282479933 0.008117176135400202" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024045960282479933 0.008117176135400202 C 0.023513703083579817 0.008226695252993922 0.016266995894972585 0.009596001346308572 0.017658873895678526 0.009431405546524852 C 0.016266995894972585 0.009596001346308572 0.006483803472202806 0.010147402414994832 0.007343424274008631 0.010092325732804833" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007343424274008631 0.010092325732804833 C 0.00787277927876728 0.009995454265229034 0.01448578777049421 0.00878371414822548 0.013695684331112417 0.008929868121895236 C 0.01448578777049421 0.00878371414822548 0.017239163298119912 0.008277249704546814 0.016824665546590154 0.008338478048767759 C 0.017239163298119912 0.008277249704546814 0.018823406666376108 0.008183182153116895 0.018669657349469498 0.008195127991243884" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.012599631584496921,-0.012599631584496921)"><path d="M 0.00412524215328921 0.009262064504175804 C 0.004939452980201762 0.009289930642280151 0.015132102432052241 0.009717318872947304 0.01389577207623984 0.009596458161427962 C 0.015132102432052241 0.009717318872947304 0.019709178970718038 0.010973588609361002 0.018961206423038026 0.010712393042407916 C 0.019709178970718038 0.010973588609361002 0.023412785453793255 0.013082896425617866 0.0228714426484 0.012730804964864985 C 0.023412785453793255 0.013082896425617866 0.02583836567036685 0.015283127661994383 0.02545732008775709 0.014937490571442492 C 0.02583836567036685 0.015283127661994383 0.027855602789899073 0.017195703412587145 0.027443989639717153 0.016878450051487692 C 0.027855602789899073 0.017195703412587145 0.0310009226386862 0.01900226704426584 0.03039667788994012 0.018744530904635917 C 0.0310009226386862 0.01900226704426584 0.035053114019230995 0.020073513128914335 0.03469492662467016 0.019971283727046766" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03469492662467016 0.019971283727046766 C 0.03438151880664131 0.019977761158490984 0.03040170030455973 0.02001809470287624 0.03093403280832397 0.020049012904377383 C 0.03040170030455973 0.02001809470287624 0.027844754444245313 0.01943593842499045 0.028306936579499273 0.019600265309033034 C 0.027844754444245313 0.01943593842499045 0.024911277705672082 0.017728310615102508 0.02538784718527646 0.01807709029586637 C 0.024911277705672082 0.017728310615102508 0.022138419696449776 0.015029603733044688 0.022588102824246743 0.015414909139866696 C 0.022138419696449776 0.015029603733044688 0.01944863392793758 0.013150699384842871 0.01999164965171285 0.013453425414002275 C 0.01944863392793758 0.013150699384842871 0.015301315008948222 0.011526548023296085 0.016071914138943492 0.011782196789953847 C 0.015301315008948222 0.011526548023296085 0.009748904092965086 0.0101756291902943 0.01074446009176961 0.010385640214109136 C 0.009748904092965086 0.0101756291902943 0.003573640658415843 0.009168433195014692 0.00412524215328921 0.009262064504175804" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="悪タトゥ">
<g id="通常">
<g id="文字1">
<g id="文字a">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.01362647546551906 0.008817287706194495 C 0.01362647546551906 0.008904866137883221 0.01362647546551906 0.010034212294959653 0.01362647546551906 0.009868228886459215 C 0.01362647546551906 0.010034212294959653 0.01362647546551906 0.010965898561823178 0.01362647546551906 0.010809088608199756 C 0.01362647546551906 0.010965898561823178 0.01362647546551906 0.011828353306752002 0.01362647546551906 0.01174994832994029" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.01362647546551906 0.01174994832994029 C 0.01345586502274696 0.01174994832994029 0.011237929266709665 0.01174994832994029 0.011579150152253866 0.01174994832994029 C 0.011237929266709665 0.01174994832994029 0.00919060395344447 0.01174994832994029 0.009531824838988668 0.01174994832994029 C 0.00919060395344447 0.01174994832994029 0.007313889082951387 0.011749948329940287 0.007484499525723485 0.011749948329940287" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007484499525723485 0.011749948329940287 C 0.007484499525723485 0.011671543353128574 0.007484499525723485 0.010652278654576325 0.007484499525723485 0.010809088608199747 C 0.007484499525723485 0.010652278654576325 0.007484499525723485 0.009712573874187565 0.007484499525723485 0.009868228886459215 C 0.007484499525723485 0.009712573874187565 0.007484499525723485 0.008863978425480016 0.007484499525723485 0.008941228460939954" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007484499525723485 0.008941228460939954 C 0.007655109968495583 0.008938213258875841 0.009873045724532866 0.008899015632042383 0.009531824838988668 0.008905046036170608 C 0.009873045724532866 0.008899015632042383 0.011920371037798066 0.008861550417236592 0.011579150152253866 0.008868863611401268 C 0.011920371037798066 0.008861550417236592 0.01379708590829116 0.008812989714093927 0.01362647546551906 0.008817287706194492" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.2938498882766697,0.1488363151447908) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010482879170498777 0.008042977744553216 C 0.010247425718152793 0.00802799395923133 0.00725442735451138 0.007972149312488973 0.007657437742346975 0.007863172320690587 C 0.00725442735451138 0.007972149312488973 0.005479197580982029 0.009474662423254135 0.00564675451647164 0.009350701646133861" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00564675451647164 0.009350701646133861 C 0.0058093117628640065 0.009269948877160664 0.007594237952748864 0.00816924989035787 0.007597441473180033 0.008381668418455482 C 0.007594237952748864 0.00816924989035787 0.005442551504474079 0.0066700135498381 0.005608312271297614 0.006801679308962514" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608312271297614 0.006801679308962514 C 0.005902126951092343 0.0068607224861069556 0.009540302337101118 0.007613638970995035 0.009134088428834355 0.00751019743469581 C 0.009540302337101118 0.007613638970995035 0.010595278398970813 0.008087376103707999 0.010482879170498777 0.008042977744553216" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.1488363151447908) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.045886699416382536 0.045972933410911306 C 0.04570958683776323 0.04599326186978503 0.04439028450151461 0.045822798457262 0.04443152494715127 0.04584629292820342 C 0.04439028450151461 0.045822798457262 0.045488455515441575 0.04564612149244315 0.045391814068742646 0.0456909997596142 C 0.045488455515441575 0.04564612149244315 0.04566212497938957 0.045271067534260634 0.04559122230753839 0.0453077537221508 C 0.04566212497938957 0.045271067534260634 0.046323117262877175 0.04527531531322959 0.04624264613095679 0.04525076550493227 C 0.046323117262877175 0.04527531531322959 0.04652721366436844 0.04566253208055028 0.04655687589058296 0.045602351421718694 C 0.04652721366436844 0.04566253208055028 0.04570958683776323 0.04599326186978503 0.045886699416382536 0.045972933410911306 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.2938498882766697,0.1502476047274016) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01609854299927334 0.007271250781256685 0.017117807697825588 0.007271250781256685 0.016960997744202164 C 0.007271250781256685 0.017117807697825588 0.007271250781256687 0.018058667419566125 0.007271250781256687 0.0179018574659427 C 0.007271250781256687 0.018058667419566125 0.007271250781256685 0.018921122164494954 0.007271250781256685 0.018842717187683242" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018842717187683242 C 0.007100640338484586 0.018842717187683242 0.004882704582447299 0.018842717187683242 0.005223925467991496 0.018842717187683242 C 0.004882704582447299 0.018842717187683242 0.0028353792691821105 0.018842717187683242 0.0031766001547263085 0.018842717187683242 C 0.0028353792691821105 0.018842717187683242 0.0009586643986890204 0.018842717187683232 0.0011292748414611195 0.018842717187683232" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611195 0.018842717187683232 C 0.0011292748414611195 0.01876431221087152 0.0011292748414611195 0.017745047512319277 0.0011292748414611195 0.0179018574659427 C 0.0011292748414611195 0.017745047512319277 0.0011292748414611189 0.01680418779057874 0.0011292748414611189 0.016960997744202164 C 0.0011292748414611189 0.01680418779057874 0.0011292748414611184 0.015941733045649917 0.0011292748414611184 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611184 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535694 0.01602013802246163 0.005223925467991495 0.01602013802246163 C 0.005565146353535694 0.01602013802246163 0.007441861224028784 0.01602013802246163 0.007271250781256685 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2938498882766697,0.1516588943100124) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010483897840236636 0.00689255965667731 C 0.010303834554886504 0.006942093897674906 0.008157732744554082 0.007681779767915923 0.008323138416035056 0.007486970548648461 C 0.008157732744554082 0.007681779767915923 0.0085136873963341 0.009375545266156726 0.008499029782464943 0.009230270287886859" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008499029782464943 0.009230270287886859 C 0.008625426676189029 0.009172138577709868 0.00977600294010603 0.008331405511359627 0.010015792507153965 0.008532689765762965 C 0.00977600294010603 0.008331405511359627 0.0052553685171177105 0.006671706690820461 0.00562155497788973 0.006814859235046808" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00562155497788973 0.006814859235046808 C 0.005780650584853167 0.006840621868516501 0.007935897499979883 0.007130485871818994 0.007530702261450974 0.0071240108366831196 C 0.007935897499979883 0.007130485871818994 0.010729997471802108 0.006873272058343493 0.010483897840236636 0.00689255965667731" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.1516588943100124) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04256614618779906 0.04500987058769938 C 0.042598820419241165 0.04494029509650665 0.043262310538587256 0.044772566029268386 0.04317047657229678 0.04476942325714045 C 0.043262310538587256 0.044772566029268386 0.04369302990705538 0.04510798510623498 0.04366815378328477 0.04504758385323459 C 0.04369302990705538 0.04510798510623498 0.04350782190934296 0.045571500744524415 0.043468990057544045 0.04549423829314519 C 0.04350782190934296 0.045571500744524415 0.04407658564965898 0.04598390750797762 0.04413413600487169 0.04597473326978528 C 0.04407658564965898 0.04598390750797762 0.04264771997690214 0.04552392392794609 0.042778385794991526 0.045604329151453245 C 0.04264771997690214 0.04552392392794609 0.042598820419241165 0.04494029509650665 0.04256614618779906 0.04500987058769938 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.2938498882766697,0.1530701838926232) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01609854299927334 0.007271250781256685 0.017117807697825588 0.007271250781256685 0.016960997744202164 C 0.007271250781256685 0.017117807697825588 0.007271250781256687 0.018058667419566125 0.007271250781256687 0.0179018574659427 C 0.007271250781256687 0.018058667419566125 0.007271250781256685 0.018921122164494954 0.007271250781256685 0.018842717187683242" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018842717187683242 C 0.007100640338484586 0.018842717187683242 0.004882704582447299 0.018842717187683242 0.005223925467991496 0.018842717187683242 C 0.004882704582447299 0.018842717187683242 0.0028353792691821105 0.018842717187683242 0.0031766001547263085 0.018842717187683242 C 0.0028353792691821105 0.018842717187683242 0.0009586643986890204 0.018842717187683232 0.0011292748414611195 0.018842717187683232" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611195 0.018842717187683232 C 0.0011292748414611195 0.01876431221087152 0.0011292748414611195 0.017745047512319277 0.0011292748414611195 0.0179018574659427 C 0.0011292748414611195 0.017745047512319277 0.0011292748414611189 0.01680418779057874 0.0011292748414611189 0.016960997744202164 C 0.0011292748414611189 0.01680418779057874 0.0011292748414611184 0.015941733045649917 0.0011292748414611184 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611184 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535694 0.01602013802246163 0.005223925467991495 0.01602013802246163 C 0.005565146353535694 0.01602013802246163 0.007441861224028784 0.01602013802246163 0.007271250781256685 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2938498882766697,0.154481473475234) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010463502105985427 0.007201447867503186 C 0.010185738561868827 0.007219732948348701 0.006806293083786986 0.007532540763851119 0.00713033957658624 0.007420868837649371 C 0.006806293083786986 0.007532540763851119 0.006723822624178748 0.008696229041443036 0.0065749441923943774 0.008541510981924169 C 0.006723822624178748 0.008696229041443036 0.009112042138465705 0.00933881676603841 0.00891688075799868 0.009277485551875776" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00891688075799868 0.009277485551875776 C 0.008658152490392316 0.00925149072818771 0.005573172428757416 0.008790762196512786 0.005812141546722322 0.008965547667618971 C 0.005573172428757416 0.008790762196512786 0.006069010492061277 0.0070312692511834245 0.0060492513424198185 0.007180059898601544" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0060492513424198185 0.007180059898601544 C 0.006201843792672074 0.007154102064806906 0.008248214975744022 0.0068703482238076955 0.007880360745446888 0.006868565893065892 C 0.008248214975744022 0.0068703482238076955 0.010678763886030306 0.007229188032039625 0.010463502105985427 0.0072014478675031844" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.154481473475234) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04618882295644943 0.045202481986797424 C 0.046011710377830126 0.04522160903375171 0.04469240804158151 0.04506122000890879 0.04473364848721817 0.04508332595661758 C 0.04469240804158151 0.04506122000890879 0.04579057905550847 0.044894984652710745 0.04569393760880954 0.04493721061429199 C 0.04579057905550847 0.044894984652710745 0.045964248519456456 0.04454209638345682 0.04589334584760528 0.04457661441764267 C 0.045964248519456456 0.04454209638345682 0.04662524080294407 0.04454609311868869 0.04654476967102369 0.04452299420406174 C 0.04662524080294407 0.04454609311868869 0.046829337204435335 0.044910425375060736 0.046858999430649854 0.044853801393166096 C 0.046829337204435335 0.044910425375060736 0.046011710377830126 0.04522160903375171 0.04618882295644943 0.045202481986797424 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.2938498882766697,0.1558927630578448) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01609854299927334 0.007271250781256685 0.017117807697825588 0.007271250781256685 0.016960997744202164 C 0.007271250781256685 0.017117807697825588 0.007271250781256687 0.018058667419566125 0.007271250781256687 0.0179018574659427 C 0.007271250781256687 0.018058667419566125 0.007271250781256685 0.018921122164494954 0.007271250781256685 0.018842717187683242" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018842717187683242 C 0.007100640338484586 0.018842717187683242 0.004882704582447299 0.018842717187683242 0.005223925467991496 0.018842717187683242 C 0.004882704582447299 0.018842717187683242 0.0028353792691821105 0.018842717187683242 0.0031766001547263085 0.018842717187683242 C 0.0028353792691821105 0.018842717187683242 0.0009586643986890204 0.018842717187683232 0.0011292748414611195 0.018842717187683232" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611195 0.018842717187683232 C 0.0011292748414611195 0.01876431221087152 0.0011292748414611195 0.017745047512319277 0.0011292748414611195 0.0179018574659427 C 0.0011292748414611195 0.017745047512319277 0.0011292748414611189 0.01680418779057874 0.0011292748414611189 0.016960997744202164 C 0.0011292748414611189 0.01680418779057874 0.0011292748414611184 0.015941733045649917 0.0011292748414611184 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611184 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535694 0.01602013802246163 0.005223925467991495 0.01602013802246163 C 0.005565146353535694 0.01602013802246163 0.007441861224028784 0.01602013802246163 0.007271250781256685 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2938498882766697,0.1573040526404556) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010483897840236636 0.006925037079683671 C 0.010434653344895108 0.007071032503345517 0.00972755822465732 0.008866441930647945 0.009892963896138293 0.008676982163625814 C 0.00972755822465732 0.008866441930647945 0.008382868606325498 0.009242018627309539 0.008499029782464943 0.009198554283949252" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008499029782464943 0.009198554283949252 C 0.008573566370149903 0.009051205576847219 0.009153679267636536 0.007234612800735325 0.00939346883468447 0.007430369798724841 C 0.009153679267636536 0.007234612800735325 0.005307228823156835 0.006801062017187578 0.00562155497788973 0.006849470308075059" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00562155497788973 0.006849470308075059 C 0.005749793614688193 0.006895008433794302 0.0075656138580001975 0.00740222504767335 0.0071604186194712885 0.007395927816705966 C 0.0075656138580001975 0.00740222504767335 0.010760854441967081 0.0068857961849318125 0.010483897840236636 0.0069250370796836705" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.1573040526404556) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.0426316487440205 0.04512085042569459 C 0.04264109946992014 0.04505041829934173 0.043235825988316025 0.04480464321642133 0.04314498204535789 0.04481358679805757 C 0.043235825988316025 0.04480464321642133 0.043765649968950604 0.045067753915742095 0.04372177605951814 0.04501352744605972 C 0.043765649968950604 0.045067753915742095 0.0437344486695274 0.04553275729327626 0.043671468958547455 0.04546430443424606 C 0.0437344486695274 0.04553275729327626 0.044424207955945386 0.04585116741109256 0.044477532591277485 0.045834961754422074 C 0.044424207955945386 0.04585116741109256 0.04287774968062415 0.045599263036897944 0.04303157333456223 0.0456587723142919 C 0.04287774968062415 0.045599263036897944 0.04264109946992014 0.04505041829934173 0.0426316487440205 0.04512085042569459 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.2938498882766697,0.1587153422230664) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01609854299927334 0.007271250781256685 0.017117807697825588 0.007271250781256685 0.016960997744202164 C 0.007271250781256685 0.017117807697825588 0.007271250781256687 0.018048687974288685 0.007271250781256687 0.0179018574659427 C 0.007271250781256687 0.018048687974288685 0.007271250781256685 0.01879138937588823 0.007271250781256685 0.018722963844353957" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018722963844353957 C 0.007100640338484586 0.01872676486627292 0.004882704582447299 0.018775625304473093 0.005223925467991496 0.018768576107381547 C 0.004882704582447299 0.018775625304473093 0.0028353792691821105 0.018813732632810973 0.0031766001547263085 0.0188075542094525 C 0.0028353792691821105 0.018813732632810973 0.0009586643986890204 0.018845647435869126 0.0011292748414611195 0.018842717187683232" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611195 0.018842717187683232 C 0.0011292748414611195 0.01876431221087152 0.0011292748414611195 0.017745047512319277 0.0011292748414611195 0.0179018574659427 C 0.0011292748414611195 0.017745047512319277 0.0011292748414611189 0.01680418779057874 0.0011292748414611189 0.016960997744202164 C 0.0011292748414611189 0.01680418779057874 0.0011292748414611184 0.015941733045649917 0.0011292748414611184 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611184 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535694 0.01602013802246163 0.005223925467991495 0.01602013802246163 C 0.005565146353535694 0.01602013802246163 0.007441861224028784 0.01602013802246163 0.007271250781256685 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2938498882766697,0.1601266318056772) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010446729569716057 0.007031805989840598 C 0.010216475807961962 0.0071037977298971785 0.007470363736110818 0.008070006958281691 0.0076836844286669054 0.007895706870519563 C 0.007470363736110818 0.008070006958281691 0.007903814328241016 0.009225715390691674 0.007886881259043008 0.009123407042986127" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007886881259043008 0.009123407042986127 C 0.007925548255849076 0.009016800759855882 0.008161004471737033 0.007672843949521197 0.008350885220715816 0.007844131645423181 C 0.008161004471737033 0.007672843949521197 0.005379764525512764 0.007003273279390583 0.005608312271297614 0.007067954692162321" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608312271297614 0.007067954692162321 C 0.005816271649233378 0.00707609363654999 0.00850702624806164 0.00716260963295421 0.00810382480652677 0.007165622024814354 C 0.00850702624806164 0.00716260963295421 0.010641971633315164 0.007020654653592785 0.010446729569716057 0.007031805989840598" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.1601266318056772) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04704669584588775 0.04465938961845736 C 0.04707111383589147 0.04478990800076354 0.046670727745402533 0.04588854291652088 0.04671610436347855 0.04586954669987948 C 0.046670727745402533 0.04588854291652088 0.046427736196201864 0.04479523311168692 0.04650217642897559 0.044887344218154164 C 0.046427736196201864 0.04479523311168692 0.04576140478109497 0.044726701630286234 0.045822821570193815 0.04476421342227257 C 0.04576140478109497 0.044726701630286234 0.045815197202559485 0.044398795438479195 0.04576517495978948 0.044437202714318134 C 0.045815197202559485 0.044398795438479195 0.046529881890608714 0.04432184168755027 0.04642308848343386 0.04430332611220533 C 0.046529881890608714 0.04432184168755027 0.04707111383589147 0.04478990800076354 0.04704669584588775 0.04465938961845736 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.1601266318056772) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04320620675511745 0.04430332611220533 C 0.04331300016229231 0.0442848105368604 0.04391414252153186 0.044475609990157074 0.04386412027876185 0.044437202714318134 C 0.04391414252153186 0.044475609990157074 0.043745056879258684 0.0448017252142589 0.04380647366835753 0.04476421342227257 C 0.043745056879258684 0.0448017252142589 0.043052678576802 0.04497945532462141 0.04312711880957573 0.044887344218154164 C 0.043052678576802 0.04497945532462141 0.04286781425699674 0.04585055048323808 0.042913190875072754 0.04586954669987948 C 0.04286781425699674 0.04585055048323808 0.04260701738266732 0.044528871236151187 0.042582599392663595 0.04465938961845736 C 0.04260701738266732 0.044528871236151187 0.04331300016229231 0.0442848105368604 0.04320620675511745 0.04430332611220533 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="文字2">
<g id="文字a">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.0003576187575827913 0.009189333834119209 C 0.00035735344388566394 0.009281385216674034 0.0003541573538827779 0.010458784222170305 0.0003544349932172629 0.01029395042477712 C 0.0003541573538827779 0.010458784222170305 0.000354262434294256 0.011312904232514165 0.0003542870855689713 0.011167339402837444 C 0.000354262434294256 0.011312904232514165 0.0003541268522833217 0.012113510795736129 0.00035413917792067933 0.012040728380897769" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.00035413917792067933 0.012040728380897769 C 0.00018352821549221955 0.012040758753426913 -0.002034414296077757 0.012041153596305804 -0.0016931923712208378 0.012041092851247513 C -0.002034414296077757 0.012041153596305804 -0.004081745845219271 0.012041518066655545 -0.0037405239203623522 0.012041457321597254 C -0.004081745845219271 0.012041518066655545 -0.0059584664319323145 0.012041852164476147 -0.005787855469503856 0.012041821791947" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.005787855469503856 0.012041821791947 C -0.005787843143866498 0.01196903937710864 -0.00578768291058085 0.011022867984209955 -0.005787707561855565 0.011168432813886676 C -0.00578768291058085 0.011022867984209955 -0.00578753500293256 0.01015507149991716 -0.0057875596542072754 0.010295043835826351 C -0.00578753500293256 0.01015507149991716 -0.005787399420921625 0.009421574861905539 -0.005787411746558983 0.00948876478297637" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M -0.005787411746558983 0.00948876478297637 C -0.0056167689870683934 0.00948076461913327 -0.00339834951956647 0.009376687437289678 -0.0037396986326719097 0.00939276281685917 C -0.00339834951956647 0.009376687437289678 -0.0013497792734391448 0.009278907812914135 -0.0016912223892937032 0.009295860228142465 C -0.0013497792734391448 0.009278907812914135 0.0005283555198224992 0.009180456634617263 0.0003576187575827913 0.009189333834119202" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.2805777644967292,0.1492288480167932) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010482891581657765 0.008044865528646226 C 0.010247439767675092 0.008030998173588237 0.007254441066810573 0.007979691068559166 0.007657469813865701 0.007878457267950367 C 0.007254441066810573 0.007979691068559166 0.005478969683923779 0.00937477229161861 0.005646546616996234 0.009259671135951822" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005646546616996234 0.009259671135951822 C 0.005809117053237526 0.009184680354475118 0.007594221714911678 0.008162596715320417 0.007597391851891745 0.008359781758231379 C 0.007594221714911678 0.008162596715320417 0.005442764400014077 0.006771256359586029 0.005608504973235436 0.006893450621020287" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608504973235436 0.006893450621020287 C 0.005902311266080142 0.006948207400007946 0.009540379371407096 0.0076464832111743505 0.009134180487371902 0.007550531968872189 C 0.009540379371407096 0.0076464832111743505 0.010595284172848253 0.008086059991960728 0.010482891581657765 0.008044865528646226" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2805777644967292,0.1492288480167932) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04588652059364107 0.045889679802971026 C 0.04570940427982981 0.04590858200153561 0.044390124722828266 0.04575057769281022 0.044431361600634545 0.04577237999122834 C 0.044390124722828266 0.04575057769281022 0.04548832685609967 0.04558637505170798 0.04539167805996571 0.04562805222195364 C 0.04548832685609967 0.04558637505170798 0.045662055809297476 0.04523818597065493 0.04559114715424213 0.0452722539482804 C 0.045662055809297476 0.04523818597065493 0.046323049438307104 0.04524201146212913 0.04624258192062981 0.04521923649044805 C 0.046323049438307104 0.04524201146212913 0.046527085589120595 0.0456014238844969 0.046556757366369654 0.04554555360845332 C 0.046527085589120595 0.0456014238844969 0.04570940427982981 0.04590858200153561 0.04588652059364107 0.045889679802971026 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.2805775426352568,0.1505389314838837) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071167 0.016019591316937008 C 0.007271247809433809 0.01609237373177537 0.007271087576148158 0.017038545124674054 0.007271112227422873 0.016892980294997334 C 0.007271087576148158 0.017038545124674054 0.007270939668499867 0.017911934102734377 0.007270964319774582 0.017766369273057657 C 0.007270939668499867 0.017911934102734377 0.00727080408648893 0.018712540665956352 0.007270816412126288 0.01863975825111799" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01863975825111799 C 0.007100205449697829 0.018639788623647135 0.004882262938127864 0.01864018346652602 0.005223484862984781 0.01864012272146773 C 0.004882262938127864 0.01864018346652602 0.002834931388986354 0.018640547936875765 0.0031761533138432723 0.018640487191817476 C 0.002834931388986354 0.018640547936875765 0.0009582108022733041 0.018640882034696358 0.0011288217647017632 0.018640851662167213" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017632 0.018640851662167213 C 0.001128834090339121 0.01856806924732885 0.0011289943236247706 0.01762189785443017 0.0011289696723500553 0.01776746268410689 C 0.0011289943236247706 0.01762189785443017 0.001129142231273062 0.016748508876369844 0.0011291175799983467 0.016894073706046564 C 0.001129142231273062 0.016748508876369844 0.0011292778132839956 0.015947902313147886 0.001129265487646638 0.016020684727986245" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020684727986245 C 0.0012998764500750971 0.0160206543554571 0.003517818961645066 0.01602025951257821 0.003176597036788148 0.0160203202576365 C 0.003517818961645066 0.01602025951257821 0.005565150510786574 0.016019895042228463 0.0052239285859296564 0.016019955787286756 C 0.005565150510786574 0.016019895042228463 0.007441871097499624 0.016019560944407863 0.007271260135071165 0.016019591316937008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2805773207737844,0.1518490149509742) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010484091105724099 0.006976945810630508 C 0.010304019484905924 0.0070229599174211205 0.008157794855680673 0.007709983637683123 0.008323231655905998 0.00752911509211786 C 0.008157794855680673 0.007709983637683123 0.008513484323613046 0.009282222796188323 0.008498849503020196 0.009147368357413673" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008498849503020196 0.009147368357413673 C 0.008625255920315022 0.009093382875264415 0.009775967855991056 0.008312735461286963 0.010015726510558104 0.008499542571622585 C 0.009775967855991056 0.008312735461286963 0.005255580576353755 0.006772861405199849 0.005621745648215628 0.006905683033386213" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621745648215628 0.006905683033386213 C 0.005780837689753589 0.006929569859423954 0.007936045601463536 0.0071982635106094634 0.0075308501466711635 0.007192324945839106 C 0.007936045601463536 0.0071982635106094634 0.01073019451897851 0.006958997549363125 0.010484091105724099 0.006976945810630508" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2805773207737844,0.1518490149509742) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.042566108649183095 0.0449962710816014 C 0.04259879391774648 0.044931679157325606 0.043262312425805444 0.044775860127027146 0.043170478673859924 0.04477295907727306 C 0.043262312425805444 0.044775860127027146 0.043692980376703404 0.04508714902059459 0.04366811367252935 0.0450310836786505 C 0.043692980376703404 0.04508714902059459 0.04350769894799715 0.04551745808961208 0.04346887912394856 0.04544574318060205 C 0.04350769894799715 0.04551745808961208 0.044076399588374976 0.04590018916910259 0.04413395156111242 0.045891662586770875 C 0.044076399588374976 0.04590018916910259 0.04264760187510517 0.045473446209818455 0.04277825545109928 0.04554806216858258 C 0.04264760187510517 0.045473446209818455 0.04259879391774648 0.044931679157325606 0.042566108649183095 0.0449962710816014 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.280577098912312,0.15315909841806466) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071167 0.016019591316937008 C 0.007271247809433809 0.01609237373177537 0.007271087576148158 0.017038545124674054 0.007271112227422873 0.016892980294997334 C 0.007271087576148158 0.017038545124674054 0.007270939668499867 0.017911934102734377 0.007270964319774582 0.017766369273057657 C 0.007270939668499867 0.017911934102734377 0.00727080408648893 0.018712540665956352 0.007270816412126288 0.01863975825111799" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01863975825111799 C 0.007100205449697829 0.018639788623647135 0.004882262938127864 0.01864018346652602 0.005223484862984781 0.01864012272146773 C 0.004882262938127864 0.01864018346652602 0.002834931388986354 0.018640547936875765 0.0031761533138432723 0.018640487191817476 C 0.002834931388986354 0.018640547936875765 0.0009582108022733041 0.018640882034696358 0.0011288217647017632 0.018640851662167213" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017632 0.018640851662167213 C 0.001128834090339121 0.01856806924732885 0.0011289943236247706 0.01762189785443017 0.0011289696723500553 0.01776746268410689 C 0.0011289943236247706 0.01762189785443017 0.001129142231273062 0.016748508876369844 0.0011291175799983467 0.016894073706046564 C 0.001129142231273062 0.016748508876369844 0.0011292778132839956 0.015947902313147886 0.001129265487646638 0.016020684727986245" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020684727986245 C 0.0012998764500750971 0.0160206543554571 0.003517818961645066 0.01602025951257821 0.003176597036788148 0.0160203202576365 C 0.003517818961645066 0.01602025951257821 0.005565150510786574 0.016019895042228463 0.0052239285859296564 0.016019955787286756 C 0.005565150510786574 0.016019895042228463 0.007441871097499624 0.016019560944407863 0.007271260135071165 0.016019591316937008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.28057687705083956,0.15446918188515513) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010463646750646115 0.0072636867229311786 C 0.010185879485997121 0.007280709995938066 0.006806374539696178 0.00757168741806589 0.007130439574858186 0.0074679659990138335 C 0.006806374539696178 0.00757168741806589 0.006723720891531022 0.00865194019688033 0.006574866328702018 0.008508343751555854 C 0.006723720891531022 0.00865194019688033 0.009111846662148246 0.009248021642186858 0.008916694328806228 0.00919112334290755" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008916694328806228 0.00919112334290755 C 0.008657969359659129 0.00916703871430359 0.0055730523303205255 0.008739899051129435 0.005811994699041041 0.008902107799660046 C 0.0055730523303205255 0.008739899051129435 0.006069168504586619 0.007106494240613571 0.006049385904160036 0.007244618360540223" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006049385904160036 0.007244618360540223 C 0.006201982899883907 0.007220494844799203 0.00824840492338699 0.006956725201847227 0.007880549852846483 0.00695513617164798 C 0.00824840492338699 0.006956725201847227 0.010678904825462751 0.007289399268871444 0.010463646750646115 0.007263686722931178" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.28057687705083956,0.15446918188515513) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.046188766172584314 0.0451744250520287 C 0.046011650047640754 0.04519221199408448 0.04469236890689728 0.04504355962057027 0.04473360600298606 0.045064072969255346 C 0.04469236890689728 0.04504355962057027 0.045790569398697877 0.04488904980154544 0.04569392101951904 0.04492826486780784 C 0.045790569398697877 0.04488904980154544 0.045964294867343346 0.044561436867981766 0.04589338655313214 0.044593492174106554 C 0.045964294867343346 0.044561436867981766 0.046625288535818266 0.044565029318517003 0.046544820790053544 0.04454360119431038 C 0.046625288535818266 0.044565029318517003 0.04682932828418633 0.04490319831939588 0.04685899950230877 0.04485062966458602 C 0.04682932828418633 0.04490319831939588 0.046011650047640754 0.04519221199408448 0.046188766172584314 0.0451744250520287 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.28057665518936714,0.15577926535224562) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071167 0.016019591316937008 C 0.007271247809433809 0.01609237373177537 0.007271087576148158 0.017038545124674054 0.007271112227422873 0.016892980294997334 C 0.007271087576148158 0.017038545124674054 0.007270939668499867 0.017911934102734377 0.007270964319774582 0.017766369273057657 C 0.007270939668499867 0.017911934102734377 0.00727080408648893 0.018712540665956352 0.007270816412126288 0.01863975825111799" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01863975825111799 C 0.007100205449697829 0.018639788623647135 0.004882262938127864 0.01864018346652602 0.005223484862984781 0.01864012272146773 C 0.004882262938127864 0.01864018346652602 0.002834931388986354 0.018640547936875765 0.0031761533138432723 0.018640487191817476 C 0.002834931388986354 0.018640547936875765 0.0009582108022733041 0.018640882034696358 0.0011288217647017632 0.018640851662167213" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017632 0.018640851662167213 C 0.001128834090339121 0.01856806924732885 0.0011289943236247706 0.01762189785443017 0.0011289696723500553 0.01776746268410689 C 0.0011289943236247706 0.01762189785443017 0.001129142231273062 0.016748508876369844 0.0011291175799983467 0.016894073706046564 C 0.001129142231273062 0.016748508876369844 0.0011292778132839956 0.015947902313147886 0.001129265487646638 0.016020684727986245" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020684727986245 C 0.0012998764500750971 0.0160206543554571 0.003517818961645066 0.01602025951257821 0.003176597036788148 0.0160203202576365 C 0.003517818961645066 0.01602025951257821 0.005565150510786574 0.016019895042228463 0.0052239285859296564 0.016019955787286756 C 0.005565150510786574 0.016019895042228463 0.007441871097499624 0.016019560944407863 0.007271260135071165 0.016019591316937008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2805764333278947,0.15708934881933612) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010484086000117868 0.007007094219191442 C 0.010434818403605379 0.007142628814947676 0.00972743888270215 0.008809412080432786 0.009892874841967996 0.008633509368266245 C 0.00972743888270215 0.008809412080432786 0.008382686126174353 0.009158294881600243 0.00849885448892771 0.009117926765189936" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00849885448892771 0.009117926765189936 C 0.008573414467562556 0.008981131429817987 0.00915381470906768 0.007294706517301274 0.009393574232545871 0.007476382740726555 C 0.00915381470906768 0.007294706517301274 0.005307420705076368 0.006892931196033228 0.005621740207189407 0.006937812084086561" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621740207189407 0.006937812084086561 C 0.005749972075774266 0.006980061759480225 0.007565718112951755 0.007450581700069268 0.007160522630207717 0.007444808188810528 C 0.007565718112951755 0.007450581700069268 0.010761049614277048 0.006970618055056516 0.010484086000117868 0.00700709421919144" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2805764333278947,0.15708934881933612) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04263159395835514 0.04509928069476985 C 0.042641055785307545 0.045033897700493555 0.04323582275217862 0.04480564171621867 0.043144977126548294 0.044813960109804866 C 0.04323582275217862 0.04480564171621867 0.043765606984325085 0.04504978995314771 0.04372174146591901 0.04499945997173549 C 0.043765606984325085 0.04504978995314771 0.043734332489111925 0.04548145265626563 0.04367136334742113 0.04541791988675155 C 0.043734332489111925 0.04548145265626563 0.04442404382085007 0.04577690621876851 0.04447737116620855 0.04576185320590444 C 0.04442404382085007 0.04577690621876851 0.04287762043579831 0.04554334166519255 0.04303143520311943 0.04559855604112043 C 0.04287762043579831 0.04554334166519255 0.042641055785307545 0.045033897700493555 0.04263159395835514 0.04509928069476985 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.2805762114664223,0.15839943228642658) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071167 0.016019591316937008 C 0.007271247809433809 0.01609237373177537 0.007271087576148158 0.017038545124674054 0.007271112227422873 0.016892980294997334 C 0.007271087576148158 0.017038545124674054 0.007266586888833332 0.017940477932399276 0.007270964319774582 0.017766369273057657 C 0.007266586888833332 0.017940477932399276 0.007214217950823973 0.0190836104516 0.007218583056127866 0.018982284207096745" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007218583056127866 0.018982284207096745 C 0.0070555230194349495 0.018972110879545655 0.004924802688249699 0.01883885946513715 0.005261862615812864 0.018860204276483657 C 0.004924802688249699 0.01883885946513715 0.0028294438544439657 0.01870537998590247 0.003173863925369891 0.018726146470938648 C 0.0028294438544439657 0.01870537998590247 0.0009584015846460859 0.01860141145480874 0.0011288217647017632 0.018611006456049503" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011288217647017632 0.018611006456049503 C 0.001128834090339121 0.018540711141720952 0.0011289943236247706 0.017624384954939978 0.0011289696723500553 0.01776746268410689 C 0.0011289943236247706 0.017624384954939978 0.001129142231273062 0.016748508876369844 0.0011291175799983467 0.016894073706046564 C 0.001129142231273062 0.016748508876369844 0.0011292778132839956 0.015947902313147886 0.001129265487646638 0.016020684727986245" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020684727986245 C 0.0012998764500750971 0.0160206543554571 0.003517818961645066 0.01602025951257821 0.003176597036788148 0.0160203202576365 C 0.003517818961645066 0.01602025951257821 0.005565150510786574 0.016019895042228463 0.0052239285859296564 0.016019955787286756 C 0.005565150510786574 0.016019895042228463 0.007441871097499624 0.016019560944407863 0.007271260135071165 0.016019591316937008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2805759896049499,0.15970951575351705) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010446900831804416 0.007106213155470548 C 0.010216635051282601 0.0071730832286947595 0.007470362722433092 0.008070492724907228 0.007683711465542645 0.007908654034161092 C 0.007470362722433092 0.008070492724907228 0.007903632951902032 0.009143246061946116 0.007886715914489771 0.00904827744442419" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007886715914489771 0.00904827744442419 C 0.007925399788087881 0.008949309206087764 0.008161067997582254 0.007701688040463422 0.008350922397667099 0.00786065858438707 C 0.008161067997582254 0.007701688040463422 0.005379924839788673 0.007080628611753199 0.005608463113471629 0.007140630917340419" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608463113471629 0.007140630917340419 C 0.005816421845342578 0.007148149181893516 0.008507171039117406 0.007227981945155099 0.008103967895923008 0.007230850091977588 C 0.008507171039117406 0.007227981945155099 0.010642145243127865 0.007095826744094961 0.010446900831804416 0.007106213155470548" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2805759896049499,0.15970951575351705) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04704672705170542 0.04467012609385694 C 0.04707112459796909 0.044791280421149916 0.04667056457729479 0.045811201527961774 0.04671594431987797 0.04579355948613116 C 0.04667056457729479 0.045811201527961774 0.0464277441615052 0.0447963381946017 0.04650217014070732 0.04488183059582431 C 0.0464277441615052 0.0447963381946017 0.04576142149031948 0.044732839851159285 0.04582283256945245 0.04476765067145981 C 0.04576142149031948 0.044732839851159285 0.04581526562405015 0.04442843882614767 0.045765237191111696 0.04446410075221803 C 0.04581526562405015 0.04442843882614767 0.046529964586430085 0.04435687633708539 0.04642317376471394 0.04433970755861548 C 0.046529964586430085 0.04435687633708539 0.04707112459796909 0.044791280421149916 0.04704672705170542 0.04467012609385694 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2805759896049499,0.15970951575351705) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04320628223821039 0.04434028023653872 C 0.043313078881400534 0.0443230734347706 0.04391419307705186 0.04450008329895946 0.04386417671972832 0.044464439183077055 C 0.04391419307705186 0.04450008329895946 0.04374505565289367 0.04480284231459153 0.04380647852609287 0.044768009627127583 C 0.04374505565289367 0.04480284231459153 0.04305264730152279 0.044967950337967286 0.04312710224133791 0.04488243143264442 C 0.04305264730152279 0.044967950337967286 0.0428676454783205 0.04577661060530613 0.042913019248311444 0.04579423649100195 C 0.0428676454783205 0.04577661060530613 0.042607055583938125 0.04454975778308926 0.04258261700144655 0.04467092080429453 C 0.042607055583938125 0.04454975778308926 0.043313078881400534 0.0443230734347706 0.04320628223821039 0.04434028023653872 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M 0.005371870181035466 -0.001232926965246531 C 0.005431591749165534 -0.0012352433082937367 0.006210533470229839 -0.0012652394429920736 0.006088528998596281 -0.0012607230818130002 C 0.006210533470229839 -0.0012652394429920736 0.0068982067441416516 -0.0012893233175272794 0.006835923840638161 -0.0012871232993954117" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006835923840638161 -0.0012871232993954117 C 0.006835923840638161 -0.0006407393952189601 0.006835923840638161 0.007762914024283248 0.006835923840638161 0.006469483550722008 C 0.006835923840638161 0.007762914024283248 0.006835923840638161 0.014881088952724256 0.006835923840638161 0.014234042383339468" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006835923840638161 0.014234042383339468 C 0.006773879213015198 0.014232909955068561 0.00596938383752905 0.014217598532876002 0.006091388309162608 0.014220453244088582 C 0.00596938383752905 0.014217598532876002 0.005311910337024871 0.014198063565846842 0.005371870181035466 0.014199785848788515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005371870181035466 0.014199785848788515 C 0.005371870181035466 0.013555593990616305 0.005371870181035466 0.005183424149552421 0.005371870181035466 0.006469483550722008 C 0.005371870181035466 0.005183424149552421 0.005371870181035466 -0.0018747945082439055 0.005371870181035466 -0.0012329269652465275" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="筋肉">
<g id="文字1">
<g id="文字a">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.01362647546551906 0.008817287706194495 C 0.01362647546551906 0.008904866137883221 0.01362647546551906 0.010034212294959653 0.01362647546551906 0.009868228886459215 C 0.01362647546551906 0.010034212294959653 0.01362647546551906 0.010965898561823178 0.01362647546551906 0.010809088608199756 C 0.01362647546551906 0.010965898561823178 0.01362647546551906 0.011828353306752002 0.01362647546551906 0.01174994832994029" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.01362647546551906 0.01174994832994029 C 0.01345586502274696 0.01174994832994029 0.011237929266709665 0.01174994832994029 0.011579150152253866 0.01174994832994029 C 0.011237929266709665 0.01174994832994029 0.00919060395344447 0.01174994832994029 0.009531824838988668 0.01174994832994029 C 0.00919060395344447 0.01174994832994029 0.007313889082951387 0.011749948329940287 0.007484499525723485 0.011749948329940287" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007484499525723485 0.011749948329940287 C 0.007484499525723485 0.011671543353128574 0.007484499525723485 0.010652278654576325 0.007484499525723485 0.010809088608199747 C 0.007484499525723485 0.010652278654576325 0.007484499525723485 0.009677027743525675 0.007484499525723485 0.009868228886459215 C 0.007484499525723485 0.009677027743525675 0.007484499525723485 0.008401878726875443 0.007484499525723485 0.008514674892997271" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007484499525723485 0.008514674892997271 C 0.007655109968495583 0.008535862585507715 0.009873045724532866 0.008797588424118218 0.009531824838988668 0.008768927203122591 C 0.009873045724532866 0.008797588424118218 0.011920371037798066 0.008862639586867452 0.011579150152253866 0.008858609544944794 C 0.011920371037798066 0.008862639586867452 0.01379708590829116 0.008813844219631967 0.01362647546551906 0.008817287706194492" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.2938498882766697,0.1488363151447908) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010482879170498777 0.008042977744553216 C 0.010247425718152793 0.00802799395923133 0.00725442735451138 0.007972149312488973 0.007657437742346975 0.007863172320690587 C 0.00725442735451138 0.007972149312488973 0.005479197580982029 0.009474662423254135 0.00564675451647164 0.009350701646133861" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00564675451647164 0.009350701646133861 C 0.0058093117628640065 0.009269948877160664 0.007594237952748864 0.008165565537127733 0.007597441473180033 0.008381668418455482 C 0.007594237952748864 0.008165565537127733 0.005442551504474079 0.006622116957846312 0.005608312271297614 0.006757467070200863" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608312271297614 0.006757467070200863 C 0.005902126951092343 0.006820194600575442 0.009540302337101118 0.007617323324225173 0.009134088428834355 0.00751019743469581 C 0.009540302337101118 0.007617323324225173 0.010595278398970813 0.008087376103707999 0.010482879170498777 0.008042977744553216" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.1488363151447908) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.045886699416382536 0.045972933410911306 C 0.04570958683776323 0.04599326186978503 0.04439028450151461 0.045822798457262 0.04443152494715127 0.04584629292820342 C 0.04439028450151461 0.045822798457262 0.045488455515441575 0.04564612149244315 0.045391814068742646 0.0456909997596142 C 0.045488455515441575 0.04564612149244315 0.04566212497938957 0.045271067534260634 0.04559122230753839 0.0453077537221508 C 0.04566212497938957 0.045271067534260634 0.046323117262877175 0.04527531531322959 0.04624264613095679 0.04525076550493227 C 0.046323117262877175 0.04527531531322959 0.04652721366436844 0.04566253208055028 0.04655687589058296 0.045602351421718694 C 0.04652721366436844 0.04566253208055028 0.04570958683776323 0.04599326186978503 0.045886699416382536 0.045972933410911306 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.2938498882766697,0.1502476047274016) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01609854299927334 0.007271250781256685 0.017117807697825588 0.007271250781256685 0.016960997744202164 C 0.007271250781256685 0.017117807697825588 0.007271250781256687 0.018058667419566125 0.007271250781256687 0.0179018574659427 C 0.007271250781256687 0.018058667419566125 0.007271250781256685 0.018921122164494954 0.007271250781256685 0.018842717187683242" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018842717187683242 C 0.007100640338484586 0.018842717187683242 0.004882704582447299 0.018842717187683242 0.005223925467991496 0.018842717187683242 C 0.004882704582447299 0.018842717187683242 0.0028353792691821105 0.018842717187683242 0.0031766001547263085 0.018842717187683242 C 0.0028353792691821105 0.018842717187683242 0.0009586643986890204 0.018842717187683232 0.0011292748414611195 0.018842717187683232" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611195 0.018842717187683232 C 0.0011292748414611195 0.01876431221087152 0.0011292748414611195 0.017745047512319277 0.0011292748414611195 0.0179018574659427 C 0.0011292748414611195 0.017745047512319277 0.0011292748414611189 0.01680418779057874 0.0011292748414611189 0.016960997744202164 C 0.0011292748414611189 0.01680418779057874 0.0011292748414611184 0.015941733045649917 0.0011292748414611184 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611184 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535694 0.01602013802246163 0.005223925467991495 0.01602013802246163 C 0.005565146353535694 0.01602013802246163 0.007441861224028784 0.01602013802246163 0.007271250781256685 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2938498882766697,0.1516588943100124) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010483897840236636 0.00689255965667731 C 0.010303834554886504 0.006942093897674906 0.008157732744554082 0.007681779767915923 0.008323138416035056 0.007486970548648461 C 0.008157732744554082 0.007681779767915923 0.0085136873963341 0.009375545266156726 0.008499029782464943 0.009230270287886859" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008499029782464943 0.009230270287886859 C 0.008625426676189029 0.009172138577709868 0.00977600294010603 0.008331405511359627 0.010015792507153965 0.008532689765762965 C 0.00977600294010603 0.008331405511359627 0.0052553685171177105 0.006671706690820461 0.00562155497788973 0.006814859235046808" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00562155497788973 0.006814859235046808 C 0.005780650584853167 0.006840621868516501 0.007935897499979883 0.007130485871818994 0.007530702261450974 0.0071240108366831196 C 0.007935897499979883 0.007130485871818994 0.010729997471802108 0.006873272058343493 0.010483897840236636 0.00689255965667731" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.1516588943100124) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04256614618779906 0.04500987058769938 C 0.042598820419241165 0.04494029509650665 0.043262310538587256 0.044772566029268386 0.04317047657229678 0.04476942325714045 C 0.043262310538587256 0.044772566029268386 0.04369302990705538 0.04510798510623498 0.04366815378328477 0.04504758385323459 C 0.04369302990705538 0.04510798510623498 0.04350782190934296 0.045571500744524415 0.043468990057544045 0.04549423829314519 C 0.04350782190934296 0.045571500744524415 0.04407658564965898 0.04598390750797762 0.04413413600487169 0.04597473326978528 C 0.04407658564965898 0.04598390750797762 0.04264771997690214 0.04552392392794609 0.042778385794991526 0.045604329151453245 C 0.04264771997690214 0.04552392392794609 0.042598820419241165 0.04494029509650665 0.04256614618779906 0.04500987058769938 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.2938498882766697,0.1530701838926232) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01609854299927334 0.007271250781256685 0.017117807697825588 0.007271250781256685 0.016960997744202164 C 0.007271250781256685 0.017117807697825588 0.007271250781256687 0.018058667419566125 0.007271250781256687 0.0179018574659427 C 0.007271250781256687 0.018058667419566125 0.007271250781256685 0.018921122164494954 0.007271250781256685 0.018842717187683242" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018842717187683242 C 0.007100640338484586 0.018842717187683242 0.004882704582447299 0.018842717187683242 0.005223925467991496 0.018842717187683242 C 0.004882704582447299 0.018842717187683242 0.0028353792691821105 0.018842717187683242 0.0031766001547263085 0.018842717187683242 C 0.0028353792691821105 0.018842717187683242 0.0009586643986890204 0.018842717187683232 0.0011292748414611195 0.018842717187683232" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611195 0.018842717187683232 C 0.0011292748414611195 0.01876431221087152 0.0011292748414611195 0.017745047512319277 0.0011292748414611195 0.0179018574659427 C 0.0011292748414611195 0.017745047512319277 0.0011292748414611189 0.01680418779057874 0.0011292748414611189 0.016960997744202164 C 0.0011292748414611189 0.01680418779057874 0.0011292748414611184 0.015941733045649917 0.0011292748414611184 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611184 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535694 0.01602013802246163 0.005223925467991495 0.01602013802246163 C 0.005565146353535694 0.01602013802246163 0.007441861224028784 0.01602013802246163 0.007271250781256685 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2938498882766697,0.154481473475234) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010463502105985427 0.007201447867503186 C 0.010185738561868827 0.007219732948348701 0.006806293083786986 0.007532540763851119 0.00713033957658624 0.007420868837649371 C 0.006806293083786986 0.007532540763851119 0.006723822624178748 0.008696229041443036 0.0065749441923943774 0.008541510981924169 C 0.006723822624178748 0.008696229041443036 0.009112042138465705 0.00933881676603841 0.00891688075799868 0.009277485551875776" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00891688075799868 0.009277485551875776 C 0.008658152490392316 0.00925149072818771 0.005573172428757416 0.008790762196512786 0.005812141546722322 0.008965547667618971 C 0.005573172428757416 0.008790762196512786 0.006069010492061277 0.0070312692511834245 0.0060492513424198185 0.007180059898601544" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0060492513424198185 0.007180059898601544 C 0.006201843792672074 0.007154102064806906 0.008248214975744022 0.0068703482238076955 0.007880360745446888 0.006868565893065892 C 0.008248214975744022 0.0068703482238076955 0.010678763886030306 0.007229188032039625 0.010463502105985427 0.0072014478675031844" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.154481473475234) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04618882295644943 0.045202481986797424 C 0.046011710377830126 0.04522160903375171 0.04469240804158151 0.04506122000890879 0.04473364848721817 0.04508332595661758 C 0.04469240804158151 0.04506122000890879 0.04579057905550847 0.044894984652710745 0.04569393760880954 0.04493721061429199 C 0.04579057905550847 0.044894984652710745 0.045964248519456456 0.04454209638345682 0.04589334584760528 0.04457661441764267 C 0.045964248519456456 0.04454209638345682 0.04662524080294407 0.04454609311868869 0.04654476967102369 0.04452299420406174 C 0.04662524080294407 0.04454609311868869 0.046829337204435335 0.044910425375060736 0.046858999430649854 0.044853801393166096 C 0.046829337204435335 0.044910425375060736 0.046011710377830126 0.04522160903375171 0.04618882295644943 0.045202481986797424 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.2938498882766697,0.1558927630578448) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01609854299927334 0.007271250781256685 0.017117807697825588 0.007271250781256685 0.016960997744202164 C 0.007271250781256685 0.017117807697825588 0.007271250781256687 0.018058667419566125 0.007271250781256687 0.0179018574659427 C 0.007271250781256687 0.018058667419566125 0.007271250781256685 0.018921122164494954 0.007271250781256685 0.018842717187683242" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018842717187683242 C 0.007100640338484586 0.018842717187683242 0.004882704582447299 0.018842717187683242 0.005223925467991496 0.018842717187683242 C 0.004882704582447299 0.018842717187683242 0.0028353792691821105 0.018842717187683242 0.0031766001547263085 0.018842717187683242 C 0.0028353792691821105 0.018842717187683242 0.0009586643986890204 0.018842717187683232 0.0011292748414611195 0.018842717187683232" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011292748414611195 0.018842717187683232 C 0.0011292748414611195 0.01876431221087152 0.0011292748414611195 0.017745047512319277 0.0011292748414611195 0.0179018574659427 C 0.0011292748414611195 0.017745047512319277 0.0011292748414611189 0.01680418779057874 0.0011292748414611189 0.016960997744202164 C 0.0011292748414611189 0.01680418779057874 0.0011292748414611184 0.015941733045649917 0.0011292748414611184 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611184 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535694 0.01602013802246163 0.005223925467991495 0.01602013802246163 C 0.005565146353535694 0.01602013802246163 0.007441861224028784 0.01602013802246163 0.007271250781256685 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2938498882766697,0.1573040526404556) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010483897840236636 0.006925037079683671 C 0.010434653344895108 0.007071032503345517 0.00972755822465732 0.008866441930647945 0.009892963896138293 0.008676982163625814 C 0.00972755822465732 0.008866441930647945 0.008382868606325498 0.009242018627309539 0.008499029782464943 0.009198554283949252" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008499029782464943 0.009198554283949252 C 0.008573566370149903 0.009051205576847219 0.009153679267636536 0.007234612800735325 0.00939346883468447 0.007430369798724841 C 0.009153679267636536 0.007234612800735325 0.005307228823156835 0.006801062017187578 0.00562155497788973 0.006849470308075059" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00562155497788973 0.006849470308075059 C 0.005749793614688193 0.006895008433794302 0.0075656138580001975 0.00740222504767335 0.0071604186194712885 0.007395927816705966 C 0.0075656138580001975 0.00740222504767335 0.010760854441967081 0.0068857961849318125 0.010483897840236636 0.0069250370796836705" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.1573040526404556) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.0426316487440205 0.04512085042569459 C 0.04264109946992014 0.04505041829934173 0.043235825988316025 0.04480464321642133 0.04314498204535789 0.04481358679805757 C 0.043235825988316025 0.04480464321642133 0.043765649968950604 0.045067753915742095 0.04372177605951814 0.04501352744605972 C 0.043765649968950604 0.045067753915742095 0.0437344486695274 0.04553275729327626 0.043671468958547455 0.04546430443424606 C 0.0437344486695274 0.04553275729327626 0.044424207955945386 0.04585116741109256 0.044477532591277485 0.045834961754422074 C 0.044424207955945386 0.04585116741109256 0.04287774968062415 0.045599263036897944 0.04303157333456223 0.0456587723142919 C 0.04287774968062415 0.045599263036897944 0.04264109946992014 0.04505041829934173 0.0426316487440205 0.04512085042569459 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.2938498882766697,0.1587153422230664) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271250781256687 0.01602013802246163 C 0.007271250781256687 0.01609854299927334 0.007271250781256685 0.017117807697825588 0.007271250781256685 0.016960997744202164 C 0.007271250781256685 0.017117807697825588 0.007271250781256687 0.018048155377567442 0.007271250781256687 0.0179018574659427 C 0.007271250781256687 0.018048155377567442 0.007271250781256685 0.018784465618512092 0.007271250781256685 0.018716572683699063" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007271250781256685 0.018716572683699063 C 0.007100640338484586 0.018731051878443955 0.004882704582447299 0.018942874482219256 0.005223925467991496 0.018890323020637766 C 0.004882704582447299 0.018942874482219256 0.0028353792691821105 0.019420911037492033 0.0031766001547263085 0.01934719022267695 C 0.0028353792691821105 0.019420911037492033 0.0009586643986890204 0.019810621346397224 0.0011292748414611195 0.019774972798418743" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611195 0.019774972798418743 C 0.0011292748414611195 0.01961887985404574 0.0011292748414611195 0.017667359544757986 0.0011292748414611195 0.0179018574659427 C 0.0011292748414611195 0.017667359544757986 0.0011292748414611189 0.01680418779057874 0.0011292748414611189 0.016960997744202164 C 0.0011292748414611189 0.01680418779057874 0.0011292748414611184 0.015941733045649917 0.0011292748414611184 0.01602013802246163" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011292748414611184 0.01602013802246163 C 0.0012998852842332174 0.01602013802246163 0.0035178210402705056 0.01602013802246163 0.0031766001547263076 0.01602013802246163 C 0.0035178210402705056 0.01602013802246163 0.005565146353535694 0.01602013802246163 0.005223925467991495 0.01602013802246163 C 0.005565146353535694 0.01602013802246163 0.007441861224028784 0.01602013802246163 0.007271250781256685 0.01602013802246163" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2938498882766697,0.1601266318056772) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010446729569716057 0.007031805989840598 C 0.010216475807961962 0.0071037977298971785 0.007470363736110818 0.008082902194587172 0.0076836844286669054 0.007895706870519563 C 0.007470363736110818 0.008082902194587172 0.007903814328241016 0.009393353462662932 0.007886881259043008 0.009278149878651904" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007886881259043008 0.009278149878651904 C 0.007925548255849076 0.009158648359216178 0.008161004471737033 0.007659948713215715 0.008350885220715816 0.007844131645423181 C 0.008161004471737033 0.007659948713215715 0.005379764525512764 0.007003273279390583 0.005608312271297614 0.007067954692162321" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608312271297614 0.007067954692162321 C 0.005816271649233378 0.00707609363654999 0.00850702624806164 0.00716260963295421 0.00810382480652677 0.007165622024814354 C 0.00850702624806164 0.00716260963295421 0.010641971633315164 0.007020654653592785 0.010446729569716057 0.007031805989840598" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.1601266318056772) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04704669584588775 0.04465938961845736 C 0.04707111383589147 0.04478990800076354 0.046670727745402533 0.04588854291652088 0.04671610436347855 0.04586954669987948 C 0.046670727745402533 0.04588854291652088 0.046427736196201864 0.04479523311168692 0.04650217642897559 0.044887344218154164 C 0.046427736196201864 0.04479523311168692 0.04576140478109497 0.044726701630286234 0.045822821570193815 0.04476421342227257 C 0.04576140478109497 0.044726701630286234 0.045815197202559485 0.044398795438479195 0.04576517495978948 0.044437202714318134 C 0.045815197202559485 0.044398795438479195 0.046529881890608714 0.04432184168755027 0.04642308848343386 0.04430332611220533 C 0.046529881890608714 0.04432184168755027 0.04707111383589147 0.04478990800076354 0.04704669584588775 0.04465938961845736 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2938498882766697,0.1601266318056772) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04320620675511745 0.04430332611220533 C 0.04331300016229231 0.04427375747716998 0.04391414252153186 0.044475609990157074 0.04386412027876185 0.044437202714318134 C 0.04391414252153186 0.044475609990157074 0.043745056879258684 0.044821989157024664 0.04380647366835753 0.04476421342227257 C 0.043745056879258684 0.044821989157024664 0.043052678576802 0.04527236140641734 0.04312711880957573 0.04513051153134324 C 0.043052678576802 0.04527236140641734 0.04286781425699674 0.046438204823445024 0.042913190875072754 0.04646641192316177 C 0.04286781425699674 0.046438204823445024 0.04260701738266732 0.04461176918382928 0.042582599392663595 0.044792026334742316 C 0.04260701738266732 0.04461176918382928 0.04331300016229231 0.04427375747716998 0.04320620675511745 0.04430332611220533 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="文字2">
<g id="文字a">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.0003576187575827913 0.008784227055460775 C 0.00035735344388566394 0.008910037336237138 0.0003541573538827779 0.010492543120391842 0.0003544349932172629 0.01029395042477712 C 0.0003541573538827779 0.010492543120391842 0.000354262434294256 0.011312904232514165 0.0003542870855689713 0.011167339402837444 C 0.000354262434294256 0.011312904232514165 0.0003541268522833217 0.012113510795736129 0.00035413917792067933 0.012040728380897769" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.00035413917792067933 0.012040728380897769 C 0.00018352821549221955 0.012040758753426913 -0.002034414296077757 0.012041153596305804 -0.0016931923712208378 0.012041092851247513 C -0.002034414296077757 0.012041153596305804 -0.004081745845219271 0.012041518066655545 -0.0037405239203623522 0.012041457321597254 C -0.004081745845219271 0.012041518066655545 -0.0059584664319323145 0.012041852164476147 -0.005787855469503856 0.012041821791947" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.005787855469503856 0.012041821791947 C -0.005787843143866498 0.01196903937710864 -0.00578768291058085 0.011022867984209955 -0.005787707561855565 0.011168432813886676 C -0.00578768291058085 0.011022867984209955 -0.00578753500293256 0.01015507149991716 -0.0057875596542072754 0.010295043835826351 C -0.00578753500293256 0.01015507149991716 -0.005787399420921625 0.009421574861905539 -0.005787411746558983 0.00948876478297637" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M -0.005787411746558983 0.00948876478297637 C -0.0056167689870683934 0.009480145045208839 -0.00339834951956647 0.009357596161131295 -0.0037396986326719097 0.009385327929766006 C -0.00339834951956647 0.009357596161131295 -0.0013497792734391448 0.009105891819834407 -0.0016912223892937032 0.009155983559359843 C -0.0013497792734391448 0.009105891819834407 0.0005283555198224992 0.008753247346802513 0.0003576187575827913 0.008784227055460768" fill="none" stroke="#000000" stroke-width="0.0015"/>
</g><g transform="translate(0.2805777644967292,0.1492288480167932) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010482891581657765 0.007931418154788107 C 0.010247439767675092 0.007927004747551628 0.007254441066810573 0.007989145016380676 0.007657469813865701 0.007878457267950367 C 0.007254441066810573 0.007989145016380676 0.005478969683923779 0.00937477229161861 0.005646546616996234 0.009259671135951822" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005646546616996234 0.009259671135951822 C 0.005809117053237526 0.009184680354475118 0.007594221714911678 0.008162596715320417 0.007597391851891745 0.008359781758231379 C 0.007594221714911678 0.008162596715320417 0.005442764400014077 0.006771256359586029 0.005608504973235436 0.006893450621020287" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608504973235436 0.006893450621020287 C 0.005902311266080142 0.006938753452186436 0.009540379371407096 0.007523581889494722 0.009134180487371902 0.007437084595014071 C 0.009540379371407096 0.007523581889494722 0.010595284172848253 0.00797261261810261 0.010482891581657765 0.007931418154788107" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2805777644967292,0.1492288480167932) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04588652059364107 0.045889679802971026 C 0.04570940427982981 0.04590858200153561 0.044390124722828266 0.04575057769281022 0.044431361600634545 0.04577237999122834 C 0.044390124722828266 0.04575057769281022 0.04548832685609967 0.04558637505170798 0.04539167805996571 0.04562805222195364 C 0.04548832685609967 0.04558637505170798 0.045662055809297476 0.04523818597065493 0.04559114715424213 0.0452722539482804 C 0.045662055809297476 0.04523818597065493 0.046323049438307104 0.04524201146212913 0.04624258192062981 0.04521923649044805 C 0.046323049438307104 0.04524201146212913 0.046527085589120595 0.0456014238844969 0.046556757366369654 0.04554555360845332 C 0.046527085589120595 0.0456014238844969 0.04570940427982981 0.04590858200153561 0.04588652059364107 0.045889679802971026 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字b">
<g transform="translate(0.2805775426352568,0.1505389314838837) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071167 0.016019591316937008 C 0.007271247809433809 0.01609237373177537 0.007271087576148158 0.017038545124674054 0.007271112227422873 0.016892980294997334 C 0.007271087576148158 0.017038545124674054 0.007270939668499867 0.017911934102734377 0.007270964319774582 0.017766369273057657 C 0.007270939668499867 0.017911934102734377 0.00727080408648893 0.018712540665956352 0.007270816412126288 0.01863975825111799" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01863975825111799 C 0.007100205449697829 0.018639788623647135 0.004882262938127864 0.01864018346652602 0.005223484862984781 0.01864012272146773 C 0.004882262938127864 0.01864018346652602 0.002834931388986354 0.018640547936875765 0.0031761533138432723 0.018640487191817476 C 0.002834931388986354 0.018640547936875765 0.0009582108022733041 0.018640882034696358 0.0011288217647017632 0.018640851662167213" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017632 0.018640851662167213 C 0.001128834090339121 0.01856806924732885 0.0011289943236247706 0.01762189785443017 0.0011289696723500553 0.01776746268410689 C 0.0011289943236247706 0.01762189785443017 0.001129142231273062 0.016748508876369844 0.0011291175799983467 0.016894073706046564 C 0.001129142231273062 0.016748508876369844 0.0011292778132839956 0.015947902313147886 0.001129265487646638 0.016020684727986245" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020684727986245 C 0.0012998764500750971 0.0160206543554571 0.003517818961645066 0.01602025951257821 0.003176597036788148 0.0160203202576365 C 0.003517818961645066 0.01602025951257821 0.005565150510786574 0.016019895042228463 0.0052239285859296564 0.016019955787286756 C 0.005565150510786574 0.016019895042228463 0.007441871097499624 0.016019560944407863 0.007271260135071165 0.016019591316937008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2805773207737844,0.1518490149509742) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010484091105724099 0.006976945810630508 C 0.010304019484905924 0.0070229599174211205 0.008157794855680673 0.007709983637683123 0.008323231655905998 0.00752911509211786 C 0.008157794855680673 0.007709983637683123 0.008513484323613046 0.009282222796188323 0.008498849503020196 0.009147368357413673" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008498849503020196 0.009147368357413673 C 0.008625255920315022 0.009093382875264415 0.009775967855991056 0.008312735461286963 0.010015726510558104 0.008499542571622585 C 0.009775967855991056 0.008312735461286963 0.005255580576353755 0.006772861405199849 0.005621745648215628 0.006905683033386213" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621745648215628 0.006905683033386213 C 0.005780837689753589 0.006929569859423954 0.007936045601463536 0.0071982635106094634 0.0075308501466711635 0.007192324945839106 C 0.007936045601463536 0.0071982635106094634 0.01073019451897851 0.006958997549363125 0.010484091105724099 0.006976945810630508" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2805773207737844,0.1518490149509742) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.042566108649183095 0.0449962710816014 C 0.04259879391774648 0.044931679157325606 0.043262312425805444 0.044775860127027146 0.043170478673859924 0.04477295907727306 C 0.043262312425805444 0.044775860127027146 0.043692980376703404 0.04508714902059459 0.04366811367252935 0.0450310836786505 C 0.043692980376703404 0.04508714902059459 0.04350769894799715 0.04551745808961208 0.04346887912394856 0.04544574318060205 C 0.04350769894799715 0.04551745808961208 0.044076399588374976 0.04590018916910259 0.04413395156111242 0.045891662586770875 C 0.044076399588374976 0.04590018916910259 0.04264760187510517 0.045473446209818455 0.04277825545109928 0.04554806216858258 C 0.04264760187510517 0.045473446209818455 0.04259879391774648 0.044931679157325606 0.042566108649183095 0.0449962710816014 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字c">
<g transform="translate(0.280577098912312,0.15315909841806466) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071167 0.016019591316937008 C 0.007271247809433809 0.01609237373177537 0.007271087576148158 0.017038545124674054 0.007271112227422873 0.016892980294997334 C 0.007271087576148158 0.017038545124674054 0.007270939668499867 0.017911934102734377 0.007270964319774582 0.017766369273057657 C 0.007270939668499867 0.017911934102734377 0.00727080408648893 0.018712540665956352 0.007270816412126288 0.01863975825111799" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01863975825111799 C 0.007100205449697829 0.018639788623647135 0.004882262938127864 0.01864018346652602 0.005223484862984781 0.01864012272146773 C 0.004882262938127864 0.01864018346652602 0.002834931388986354 0.018640547936875765 0.0031761533138432723 0.018640487191817476 C 0.002834931388986354 0.018640547936875765 0.0009582108022733041 0.018640882034696358 0.0011288217647017632 0.018640851662167213" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017632 0.018640851662167213 C 0.001128834090339121 0.01856806924732885 0.0011289943236247706 0.01762189785443017 0.0011289696723500553 0.01776746268410689 C 0.0011289943236247706 0.01762189785443017 0.001129142231273062 0.016748508876369844 0.0011291175799983467 0.016894073706046564 C 0.001129142231273062 0.016748508876369844 0.0011292778132839956 0.015947902313147886 0.001129265487646638 0.016020684727986245" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020684727986245 C 0.0012998764500750971 0.0160206543554571 0.003517818961645066 0.01602025951257821 0.003176597036788148 0.0160203202576365 C 0.003517818961645066 0.01602025951257821 0.005565150510786574 0.016019895042228463 0.0052239285859296564 0.016019955787286756 C 0.005565150510786574 0.016019895042228463 0.007441871097499624 0.016019560944407863 0.007271260135071165 0.016019591316937008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.28057687705083956,0.15446918188515513) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010463646750646115 0.0072636867229311786 C 0.010185879485997121 0.007280709995938066 0.006806374539696178 0.00757168741806589 0.007130439574858186 0.0074679659990138335 C 0.006806374539696178 0.00757168741806589 0.006723720891531022 0.00865194019688033 0.006574866328702018 0.008508343751555854 C 0.006723720891531022 0.00865194019688033 0.009111846662148246 0.009248021642186858 0.008916694328806228 0.00919112334290755" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008916694328806228 0.00919112334290755 C 0.008657969359659129 0.00916703871430359 0.0055730523303205255 0.008739899051129435 0.005811994699041041 0.008902107799660046 C 0.0055730523303205255 0.008739899051129435 0.006069168504586619 0.007106494240613571 0.006049385904160036 0.007244618360540223" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006049385904160036 0.007244618360540223 C 0.006201982899883907 0.007220494844799203 0.00824840492338699 0.006956725201847227 0.007880549852846483 0.00695513617164798 C 0.00824840492338699 0.006956725201847227 0.010678904825462751 0.007289399268871444 0.010463646750646115 0.007263686722931178" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.28057687705083956,0.15446918188515513) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.046188766172584314 0.0451744250520287 C 0.046011650047640754 0.04519221199408448 0.04469236890689728 0.04504355962057027 0.04473360600298606 0.045064072969255346 C 0.04469236890689728 0.04504355962057027 0.045790569398697877 0.04488904980154544 0.04569392101951904 0.04492826486780784 C 0.045790569398697877 0.04488904980154544 0.045964294867343346 0.044561436867981766 0.04589338655313214 0.044593492174106554 C 0.045964294867343346 0.044561436867981766 0.046625288535818266 0.044565029318517003 0.046544820790053544 0.04454360119431038 C 0.046625288535818266 0.044565029318517003 0.04682932828418633 0.04490319831939588 0.04685899950230877 0.04485062966458602 C 0.04682932828418633 0.04490319831939588 0.046011650047640754 0.04519221199408448 0.046188766172584314 0.0451744250520287 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字d">
<g transform="translate(0.28057665518936714,0.15577926535224562) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071167 0.016019591316937008 C 0.007271247809433809 0.01609237373177537 0.007271087576148158 0.017038545124674054 0.007271112227422873 0.016892980294997334 C 0.007271087576148158 0.017038545124674054 0.007270939668499867 0.017911934102734377 0.007270964319774582 0.017766369273057657 C 0.007270939668499867 0.017911934102734377 0.00727080408648893 0.018712540665956352 0.007270816412126288 0.01863975825111799" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007270816412126288 0.01863975825111799 C 0.007100205449697829 0.018639788623647135 0.004882262938127864 0.01864018346652602 0.005223484862984781 0.01864012272146773 C 0.004882262938127864 0.01864018346652602 0.002834931388986354 0.018640547936875765 0.0031761533138432723 0.018640487191817476 C 0.002834931388986354 0.018640547936875765 0.0009582108022733041 0.018640882034696358 0.0011288217647017632 0.018640851662167213" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0011288217647017632 0.018640851662167213 C 0.001128834090339121 0.01856806924732885 0.0011289943236247706 0.01762189785443017 0.0011289696723500553 0.01776746268410689 C 0.0011289943236247706 0.01762189785443017 0.001129142231273062 0.016748508876369844 0.0011291175799983467 0.016894073706046564 C 0.001129142231273062 0.016748508876369844 0.0011292778132839956 0.015947902313147886 0.001129265487646638 0.016020684727986245" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020684727986245 C 0.0012998764500750971 0.0160206543554571 0.003517818961645066 0.01602025951257821 0.003176597036788148 0.0160203202576365 C 0.003517818961645066 0.01602025951257821 0.005565150510786574 0.016019895042228463 0.0052239285859296564 0.016019955787286756 C 0.005565150510786574 0.016019895042228463 0.007441871097499624 0.016019560944407863 0.007271260135071165 0.016019591316937008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2805764333278947,0.15708934881933612) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010484086000117868 0.007007094219191442 C 0.010434818403605379 0.007142628814947676 0.00972743888270215 0.008809412080432786 0.009892874841967996 0.008633509368266245 C 0.00972743888270215 0.008809412080432786 0.008382686126174353 0.009158294881600243 0.00849885448892771 0.009117926765189936" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00849885448892771 0.009117926765189936 C 0.008573414467562556 0.008981131429817987 0.00915381470906768 0.007294706517301274 0.009393574232545871 0.007476382740726555 C 0.00915381470906768 0.007294706517301274 0.005307420705076368 0.006892931196033228 0.005621740207189407 0.006937812084086561" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005621740207189407 0.006937812084086561 C 0.005749972075774266 0.006980061759480225 0.007565718112951755 0.007450581700069268 0.007160522630207717 0.007444808188810528 C 0.007565718112951755 0.007450581700069268 0.010761049614277048 0.006970618055056516 0.010484086000117868 0.00700709421919144" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2805764333278947,0.15708934881933612) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04263159395835514 0.04509928069476985 C 0.042641055785307545 0.045033897700493555 0.04323582275217862 0.04480564171621867 0.043144977126548294 0.044813960109804866 C 0.04323582275217862 0.04480564171621867 0.043765606984325085 0.04504978995314771 0.04372174146591901 0.04499945997173549 C 0.043765606984325085 0.04504978995314771 0.043734332489111925 0.04548145265626563 0.04367136334742113 0.04541791988675155 C 0.043734332489111925 0.04548145265626563 0.04442404382085007 0.04577690621876851 0.04447737116620855 0.04576185320590444 C 0.04442404382085007 0.04577690621876851 0.04287762043579831 0.04554334166519255 0.04303143520311943 0.04559855604112043 C 0.04287762043579831 0.04554334166519255 0.042641055785307545 0.045033897700493555 0.04263159395835514 0.04509928069476985 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="文字e">
<g transform="translate(0.2805762114664223,0.15839943228642658) rotate(0) scale(1,1) translate(-0.004200262811358902,-0.01602013802246163)"><path d="M 0.007271260135071167 0.016019591316937008 C 0.007271247809433809 0.01609237373177537 0.007271087576148158 0.017038545124674054 0.007271112227422873 0.016892980294997334 C 0.007271087576148158 0.017038545124674054 0.007266586888833332 0.018015746621606495 0.007270964319774582 0.017766369273057657 C 0.007266586888833332 0.018015746621606495 0.007214217950823973 0.02006210341129387 0.007218583056127866 0.01988550847758339" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.007218583056127866 0.01988550847758339 C 0.0070555230194349495 0.019844277783977862 0.004924802688249699 0.019298179771470126 0.005261862615812864 0.019390740154317087 C 0.004924802688249699 0.019298179771470126 0.0028294438544439657 0.018709806075230876 0.003173863925369891 0.01877478388341984 C 0.0028294438544439657 0.018709806075230876 0.0009584015846460859 0.018597358337101973 0.0011288217647017632 0.0186110064560495" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.0011288217647017632 0.0186110064560495 C 0.001128834090339121 0.01854071114172095 0.0011289943236247706 0.017624384954939978 0.0011289696723500553 0.01776746268410689 C 0.0011289943236247706 0.017624384954939978 0.001129142231273062 0.016748508876369844 0.0011291175799983467 0.016894073706046564 C 0.001129142231273062 0.016748508876369844 0.0011292778132839956 0.015947902313147886 0.001129265487646638 0.016020684727986245" fill="none" stroke="#000000" stroke-width="0.0015"/>
<path d="M 0.001129265487646638 0.016020684727986245 C 0.0012998764500750971 0.0160206543554571 0.003517818961645066 0.01602025951257821 0.003176597036788148 0.0160203202576365 C 0.003517818961645066 0.01602025951257821 0.005565150510786574 0.016019895042228463 0.0052239285859296564 0.016019955787286756 C 0.005565150510786574 0.016019895042228463 0.007441871097499624 0.016019560944407863 0.007271260135071165 0.016019591316937008" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2805759896049499,0.15970951575351705) rotate(0) scale(1,1) translate(-0.008075279144492289,-0.008075279144492289)"><path d="M 0.010446900831804416 0.007106213155470548 C 0.010216635051282601 0.0071730832286947595 0.007470362722433092 0.008078744617053176 0.007683711465542645 0.007908654034161092 C 0.007470362722433092 0.008078744617053176 0.007903632951902032 0.009250520659843444 0.007886715914489771 0.00914730015017557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007886715914489771 0.00914730015017557 C 0.007925399788087881 0.009040080019693196 0.008161067997582254 0.007693436148317473 0.008350922397667099 0.00786065858438707 C 0.008161067997582254 0.007693436148317473 0.005379924839788673 0.007080628611753199 0.005608463113471629 0.007140630917340419" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005608463113471629 0.007140630917340419 C 0.005816421845342578 0.007148149181893516 0.008507171039117406 0.007227981945155099 0.008103967895923008 0.007230850091977588 C 0.008507171039117406 0.007227981945155099 0.010642145243127865 0.007095826744094961 0.010446900831804416 0.007106213155470548" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2805759896049499,0.15970951575351705) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04704672705170542 0.04467012609385694 C 0.04707112459796909 0.04483872880098912 0.04667056457729479 0.04639295992425113 0.04671594431987797 0.04636294004420159 C 0.04667056457729479 0.04639295992425113 0.0464277441615052 0.04489742387338956 0.04650217014070732 0.04503036465445138 C 0.0464277441615052 0.04489742387338956 0.04576142149031948 0.04472046201294037 0.04582283256945245 0.04476765067145981 C 0.04576142149031948 0.04472046201294037 0.04581526562405015 0.04442843882614767 0.045765237191111696 0.04446410075221803 C 0.04581526562405015 0.04442843882614767 0.046529964586430085 0.04435687633708539 0.04642317376471394 0.04433970755861548 C 0.046529964586430085 0.04435687633708539 0.04707112459796909 0.04483872880098912 0.04704672705170542 0.04467012609385694 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2805759896049499,0.15970951575351705) rotate(0) scale(1,1) translate(-0.044814647619275665,-0.04481464761927565)"><path d="M 0.04320628223821039 0.04434028023653872 C 0.043313078881400534 0.0443230734347706 0.04391419307705186 0.04450008329895946 0.04386417671972832 0.044464439183077055 C 0.04391419307705186 0.04450008329895946 0.04374505565289367 0.04480284231459153 0.04380647852609287 0.044768009627127583 C 0.04374505565289367 0.04480284231459153 0.04305264730152279 0.044967950337967286 0.04312710224133791 0.04488243143264442 C 0.04305264730152279 0.044967950337967286 0.0428676454783205 0.04577661060530613 0.042913019248311444 0.04579423649100195 C 0.0428676454783205 0.04577661060530613 0.042607055583938125 0.04454975778308926 0.04258261700144655 0.04467092080429453 C 0.042607055583938125 0.04454975778308926 0.043313078881400534 0.0443230734347706 0.04320628223821039 0.04434028023653872 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M 0.005371870181035466 -0.001879913615879981 C 0.005431591749165534 -0.001884396904275556 0.006210533470229839 -0.0019406485230589001 0.006088528998596281 -0.0019337130766268816 C 0.006210533470229839 -0.0019406485230589001 0.0068982067441416516 -0.001965591131100648 0.006835923840638161 -0.0019631389730642044" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.006835923840638161 -0.0019631389730642044 C 0.006835923840638161 -0.0012604204294153535 0.006835923840638161 0.007930492266518123 0.006835923840638161 0.006469483550722007 C 0.006835923840638161 0.007930492266518123 0.006835923840638161 0.01632725578863645 0.006835923840638161 0.015568965616489185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.006835923840638161 0.015568965616489185 C 0.006773879213015198 0.015568014845043405 0.00596938383752905 0.015551232221271208 0.006091388309162608 0.015557556359139833 C 0.00596938383752905 0.015551232221271208 0.005311910337024871 0.015487702595642852 0.005371870181035466 0.015493075962065696" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005371870181035466 0.015493075962065696 C 0.005371870181035466 0.014741109927787056 0.005371870181035466 0.0050217344192265345 0.005371870181035466 0.006469483550722007 C 0.005371870181035466 0.0050217344192265345 0.005371870181035466 -0.0025756967130968087 0.005371870181035466 -0.001879913615879977" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.006469483550722009,-0.006469483550722009)"><path d="M 0.018683803609908328 -0.0015971186478233423 C 0.018743458881913203 -0.0016007005866388601 0.019521671345600393 -0.0016478722442113307 0.019399666873966836 -0.0016401019136095573 C 0.019521671345600393 -0.0016478722442113307 0.020210206469139708 -0.0016945510068308803 0.020147857269511026 -0.0016903626150446248" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020147857269511026 -0.0016903626150446248 C 0.020147857269511026 -0.001010375434564072 0.020147857269511026 0.00777869099155958 0.020147857269511026 0.006469483550722008 C 0.020147857269511026 0.00777869099155958 0.020147857269511026 0.01464934693536326 0.020147857269511026 0.014020126675006241" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.020147857269511026 0.014020126675006241 C 0.020089100004854636 0.014021508283591451 0.019320765622000784 0.014039414733573351 0.01944277009363434 0.014036705978028766 C 0.019320765622000784 0.014039414733573351 0.01862055640293116 0.014053958888500636 0.018683803609908328 0.014052631741541262" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.018683803609908328 0.014052631741541262 C 0.018683803609908328 0.013420702725639657 0.018683803609908328 0.005165337684941624 0.018683803609908328 0.006469483550722008 C 0.018683803609908328 0.005165337684941624 0.018683803609908328 -0.0022693354977021177 0.018683803609908328 -0.0015971186478233388" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="植タトゥ">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.005084728283883356,-0.005084728283883356)"><path d="M 0.030756171789100752 -0.002633419420449369 C 0.030326849924605017 -0.002213870868270513 0.028114276949889105 0.0009583777724626814 0.028180240602126344 -0.00011612810737623174 C 0.028114276949889105 0.0009583777724626814 0.030723748087935827 0.004468573186244168 0.03036038987567733 0.0038136158585841107" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03036038987567733 0.0038136158585841107 C 0.030038887659523943 0.00355636718908728 0.02577776464080277 0.00036074765208017964 0.026502363281836666 0.0007266318246221416 C 0.02577776464080277 0.00036074765208017964 0.021262109758390067 -0.000685629714964563 0.021665206183270575 -0.0005769942119194319" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.021665206183270575 -0.0005769942119194319 C 0.022089708443574604 -0.0006259036587472936 0.027516813774071436 -0.0013352763412312675 0.02675923330691892 -0.0011639075738537725 C 0.027516813774071436 -0.0013352763412312675 0.031089249995949232 -0.002755878740999004 0.030756171789100745 -0.0026334194204493708" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="獣性">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.02164779978928289,-0.021647799789282902)"><path d="M 0.030232755078397865 0.011752443527729289 C 0.030085323715479336 0.011851766422907702 0.028242421117319068 0.013120014016137937 0.02846357872337554 0.012944318269870246 C 0.028242421117319068 0.013120014016137937 0.027505137562582247 0.013937165334030877 0.027578863805720194 0.013860792482941598" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027578863805720194 0.013860792482941598 C 0.027541204005011328 0.014126522966873997 0.027238031302255977 0.01731619366125143 0.027126946197213783 0.01704955829013037 C 0.027238031302255977 0.01731619366125143 0.029060629971977576 0.01706132182358298 0.028911885066226516 0.017060416936394318" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028911885066226516 0.017060416936394318 C 0.028713056038928323 0.01729713676144508 0.026465767556563536 0.020159013520712834 0.026525936738648222 0.019901054837003426 C 0.026465767556563536 0.020159013520712834 0.028328514726423767 0.020177159999565875 0.028189854881210265 0.020155921140907224" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028189854881210265 0.020155921140907224 C 0.027989389097981685 0.02037519895990042 0.02548045777942616 0.02318504601695495 0.0257842654824673 0.022787254968825565 C 0.02548045777942616 0.02318504601695495 0.024440820524904053 0.02510792694759604 0.02454416244471661 0.024929413718459848" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02454416244471661 0.024929413718459848 C 0.024389519602009673 0.025136932626039245 0.022346182524580944 0.02779029381399175 0.022688448332233397 0.02741964060941262 C 0.022346182524580944 0.02779029381399175 0.020249349787941653 0.02954038647040913 0.02043697275288717 0.029377252173409397" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02043697275288717 0.029377252173409397 C 0.02045644231543811 0.029431105148316518 0.020776244994452544 0.030204470251269547 0.02067060750349845 0.030023487872294845 C 0.020776244994452544 0.030204470251269547 0.02179079057273947 0.03167617012517342 0.021704622644336317 0.031549040721105835" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.021704622644336317 0.031549040721105835 C 0.021271200899066502 0.03144438141035793 0.014769721519960475 0.030055892154949075 0.016503561701098558 0.030293128992130967 C 0.014769721519960475 0.030055892154949075 -0.00040187796518894995 0.02856962114848917 0.0008985404706793199 0.028702198674923154" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0008985404706793199 0.028702198674923154 C 0.0005778664084820963 0.028624085070337996 -0.003504971739560298 0.027473312512001805 -0.002949548275687364 0.027764835419901258 C -0.003504971739560298 0.027473312512001805 -0.006087214326023094 0.024698992325252366 -0.005766541095795883 0.025203923780129735 C -0.006087214326023094 0.024698992325252366 -0.006797625901921717 0.021122613935084994 -0.00679762703841389 0.021705657961372818 C -0.006797625901921717 0.021122613935084994 -0.005445852259200408 0.017702465042973167 -0.005766527457889805 0.018207395464675834 C -0.005445852259200408 0.017702465042973167 -0.002394100053776019 0.015354971782552443 -0.002949524654141126 0.015646492900940816 C -0.002394100053776019 0.015354971782552443 0.0012192421132108662 0.014631029472604902 0.0008985677464914822 0.014709142044015357" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0008985677464914822 0.014709142044015357 C 0.0016209219403559866 0.014628434628407063 0.010784594377223379 0.013475756670254396 0.009566818072865538 0.013740653056715837 C 0.010784594377223379 0.013475756670254396 0.016007305509278907 0.0113461964356249 0.015511883398785571 0.01153038540647805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015511883398785571 0.01153038540647805 C 0.01551636489992383 0.011672086021427573 0.016313326908221137 0.013143595210163457 0.015565661412444674 0.013230792785872324 C 0.016313326908221137 0.013143595210163457 0.025227053342741328 0.010255116307313263 0.024483869348103125 0.010484014497971653" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024483869348103125 0.010484014497971653 C 0.024376931095265255 0.01067819621615062 0.023679684124906595 0.012919897535265717 0.0232006103140487 0.012814195116119247 C 0.023679684124906595 0.012919897535265717 0.03081876714209363 0.011663964228696793 0.030232755078397865 0.011752443527729289" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M 0.030190747849037643 0.0013615058181273114 C 0.03011476485754664 0.0014297011401753499 0.029161903889263565 0.0022898078597613546 0.029278951951145597 0.0021798496827037726 C 0.029161903889263565 0.0022898078597613546 0.028745106036062226 0.0027227667978278395 0.028786171106453255 0.002681003942818296" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028786171106453255 0.002681003942818296 C 0.02842172082855627 0.0035079151171249785 0.023688592516194557 0.013946839816520624 0.02441276777168943 0.012603938034498484 C 0.023688592516194557 0.013946839816520624 0.0197363430629169 0.019311815934799442 0.020096068040514788 0.018795825327083984" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.020096068040514788 0.018795825327083984 C 0.020073306350647843 0.018823381151218056 0.01976855165908396 0.019171179149662272 0.01982292776211146 0.01912649521669285 C 0.01976855165908396 0.019171179149662272 0.01941194039102422 0.0193491606315524 0.019443554804184776 0.019332032522717053" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019443554804184776 0.019332032522717053 C 0.019317408225782776 0.019347622392223054 0.01750475439647179 0.019564032360809912 0.01792979586336079 0.019519110956789057 C 0.01750475439647179 0.019564032360809912 0.01404416231302975 0.019900420905482157 0.014343057201516754 0.019871089370967304" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014343057201516754 0.019871089370967304 C 0.014367945216367582 0.01983456826163309 0.014694273041627258 0.01935326430615466 0.014641713379726697 0.019432836058956765 C 0.014694273041627258 0.01935326430615466 0.015001444791373213 0.01887317769387415 0.014973773144323481 0.018916228337342043" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014973773144323481 0.018916228337342043 C 0.015382210495513516 0.018303442859186142 0.020605686077226133 0.010242419090266287 0.019875021358603896 0.011562802599471246 C 0.020605686077226133 0.010242419090266287 0.024063977135222542 0.0023640281958334846 0.023741749767790338 0.003071626226882543" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023741749767790338 0.003071626226882543 C 0.02376593751410162 0.0030453273798517902 0.024123951309656867 0.0026996115489284628 0.024032002723525736 0.002756040062513509 C 0.024123951309656867 0.0026996115489284628 0.02491289364118375 0.0023643543973076962 0.024845132801363905 0.0023944840638619896" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.024845132801363905 0.0023944840638619896 C 0.02503411069459692 0.0023499568659110736 0.027558335440799546 0.0017740761679731092 0.027112867520160067 0.0018601576884509992 C 0.027558335440799546 0.0017740761679731092 0.030447237876444107 0.0013199514956003374 0.030190747849037643 0.0013615058181273114" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="紋柄">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.035617225035340996 0.007492867963988272 C 0.03531412694406451 0.007501217565511211 0.033724066505306266 0.005004876423366137 0.03358991123105372 0.005203967712512091 C 0.033724066505306266 0.005004876423366137 0.037396031143395486 0.005294514181859841 0.037227088326371546 0.005103772494236825 C 0.037396031143395486 0.005294514181859841 0.03531412694406451 0.007501217565511211 0.035617225035340996 0.007492867963988272 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.033740768090795834 0.011493088731592032 C 0.03354373114974234 0.011619366283346632 0.030674287803085638 0.010500791411514592 0.030728290648860117 0.010693685868524795 C 0.030674287803085638 0.010500791411514592 0.03334377372833007 0.009244972152725205 0.03309273394150209 0.009178355247469601 C 0.03334377372833007 0.009244972152725205 0.03354373114974234 0.011619366283346632 0.033740768090795834 0.011493088731592032 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.030675842147524654 0.007487481374245105 C 0.0305102548500141 0.00751861726971485 0.02923789813499106 0.00626570642814918 0.029195659399791594 0.006388429942897862 C 0.02923789813499106 0.00626570642814918 0.031306055532229295 0.00610638681653986 0.031182706969918206 0.006014799197260923 C 0.031306055532229295 0.00610638681653986 0.0305102548500141 0.00751861726971485 0.030675842147524654 0.007487481374245105 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.024883741026520217 0.007669486269516667 C 0.02463219794025853 0.007698642762217285 0.02265073192775836 0.006028631372166542 0.022590308240344636 0.006181764665224814 C 0.02265073192775836 0.006028631372166542 0.02579994467433285 0.005955863553175055 0.025608825275484887 0.0058318867528174 C 0.02579994467433285 0.005955863553175055 0.02463219794025853 0.007698642762217285 0.024883741026520217 0.007669486269516667 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="鱗">
<g transform="translate(0.29341316757194846,0.1479987003567153) rotate(0) scale(1,1) translate(-0.02063301031509196,-0.03024193851082053)"><path d="M 0.016991254269703264 0.029844440615896695 C 0.017523480509222537 0.029702068519783333 0.024420437479319195 0.02790049093574531 0.02337796914393454 0.028135975462536347 C 0.024420437479319195 0.02790049093574531 0.030011116390184507 0.026925513863726595 0.029500874294319124 0.02701862629440427" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029500874294319124 0.02701862629440427 C 0.02924249410345211 0.027430649264740172 0.026065554902476896 0.03275191742275011 0.026400312003914954 0.03196290193843511 C 0.026065554902476896 0.03275191742275011 0.025407412166491408 0.03686380462016336 0.02548378907706245 0.03648681210618426" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02548378907706245 0.03648681210618426 C 0.025187548744070174 0.03663962587014105 0.021410300233122473 0.038259164787277256 0.021928905081155123 0.03832057727366575 C 0.021410300233122473 0.038259164787277256 0.019038166385630294 0.03553563601917703 0.019260530900670664 0.035749862269522314" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019260530900670664 0.035749862269522314 C 0.019201547890419432 0.03549823015317179 0.018363628391741927 0.03223815840218056 0.01855273477765588 0.03273027687331603 C 0.018363628391741927 0.03223815840218056 0.016861130894040545 0.02960395426111175 0.016991254269703264 0.029844440615896695" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.28717686035728024,0.1479687451343372) rotate(0) scale(1,1) translate(-0.02063301031509196,-0.03024193851082053)"><path d="M 0.016991254269703264 0.029844440615896695 C 0.017523480509222537 0.029702068519783333 0.024420437479319195 0.02790049093574531 0.02337796914393454 0.028135975462536347 C 0.024420437479319195 0.02790049093574531 0.030011116390184507 0.026925513863726595 0.029500874294319124 0.02701862629440427" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029500874294319124 0.02701862629440427 C 0.02924249410345211 0.027430649264740172 0.026065554902476896 0.03275191742275011 0.026400312003914954 0.03196290193843511 C 0.026065554902476896 0.03275191742275011 0.025407412166491408 0.03686380462016336 0.02548378907706245 0.03648681210618426" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02548378907706245 0.03648681210618426 C 0.025187548744070174 0.03663962587014105 0.021410300233122473 0.038259164787277256 0.021928905081155123 0.03832057727366575 C 0.021410300233122473 0.038259164787277256 0.019038166385630294 0.03553563601917703 0.019260530900670664 0.035749862269522314" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019260530900670664 0.035749862269522314 C 0.019201547890419432 0.03549823015317179 0.018363628391741927 0.03223815840218056 0.01855273477765588 0.03273027687331603 C 0.018363628391741927 0.03223815840218056 0.016861130894040545 0.02960395426111175 0.016991254269703264 0.029844440615896695" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.280940553142612,0.14793878991195908) rotate(0) scale(1,1) translate(-0.02063301031509196,-0.03024193851082053)"><path d="M 0.016991254269703264 0.029844440615896695 C 0.017523480509222537 0.029702068519783333 0.024420437479319195 0.02790049093574531 0.02337796914393454 0.028135975462536347 C 0.024420437479319195 0.02790049093574531 0.030011116390184507 0.026925513863726595 0.029500874294319124 0.02701862629440427" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029500874294319124 0.02701862629440427 C 0.02924249410345211 0.027430649264740172 0.026065554902476896 0.03275191742275011 0.026400312003914954 0.03196290193843511 C 0.026065554902476896 0.03275191742275011 0.025407412166491408 0.03686380462016336 0.02548378907706245 0.03648681210618426" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02548378907706245 0.03648681210618426 C 0.025187548744070174 0.03663962587014105 0.021410300233122473 0.038259164787277256 0.021928905081155123 0.03832057727366575 C 0.021410300233122473 0.038259164787277256 0.019038166385630294 0.03553563601917703 0.019260530900670664 0.035749862269522314" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019260530900670664 0.035749862269522314 C 0.019201547890419432 0.03549823015317179 0.018363628391741927 0.03223815840218056 0.01855273477765588 0.03273027687331603 C 0.018363628391741927 0.03223815840218056 0.016861130894040545 0.02960395426111175 0.016991254269703264 0.029844440615896695" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.03408017706782698,-0.03408017706782699)"><path d="M 0.01764800335797478 0.027073719442561175 C 0.018180229597494053 0.026931347346447813 0.025077186567590715 0.02512976976240979 0.02403471823220606 0.025365254289200827 C 0.025077186567590715 0.02512976976240979 0.030667865478456024 0.02415479269039107 0.03015762338259064 0.024247905121068742" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03015762338259064 0.024247905121068742 C 0.029899243191723626 0.024659928091404645 0.026722303990748413 0.029981196249414605 0.02705706109218647 0.029192180765099603 C 0.026722303990748413 0.029981196249414605 0.026064161254762925 0.034093083446827877 0.026140538165333967 0.03371609093284878" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026140538165333967 0.03371609093284878 C 0.02584429783234169 0.03386890469680557 0.022067049321393993 0.035488443613941774 0.022585654169426643 0.03554985610033027 C 0.022067049321393993 0.035488443613941774 0.019694915473901814 0.03276491484584154 0.019917279988942185 0.032979141096186826" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019917279988942185 0.032979141096186826 C 0.019858296978690952 0.032727508979836305 0.01902037748001344 0.029467437228845074 0.01920948386592739 0.029959555699980545 C 0.01902037748001344 0.029467437228845074 0.01751787998231206 0.02683323308777623 0.01764800335797478 0.027073719442561175" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2996494747866167,0.14802865557909342) rotate(0) scale(1,1) translate(-0.02063301031509196,-0.03024193851082053)"><path d="M 0.02872143899942418 0.027452760598610543 C 0.029189721626780598 0.027484558200275563 0.035196735259476676 0.028087389896930656 0.03434083052770119 0.027834331818590775 C 0.035196735259476676 0.028087389896930656 0.03937991788514907 0.030710718015363972 0.038992295780730005 0.030489457538689112" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.038992295780730005 0.030489457538689112 C 0.03872432230522981 0.03074723764678851 0.03527630230089419 0.03416049253148883 0.035776614074727695 0.03358281883588185 C 0.03527630230089419 0.03416049253148883 0.032756216196394614 0.037741435473480495 0.03298855449472793 0.03742154188597291" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03298855449472793 0.03742154188597291 C 0.032650183826536686 0.03745698013408391 0.028477123543915902 0.037606056682874686 0.02892810647643302 0.037846800863304976 C 0.028477123543915902 0.037606056682874686 0.027464147040196635 0.03425642929226816 0.02757675930452251 0.03453261172080945" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02757675930452251 0.03453261172080945 C 0.02763061770817938 0.03428003177446323 0.028318450122980066 0.030911664771138284 0.028223060148404925 0.03150165236465486 C 0.028318450122980066 0.030911664771138284 0.028762970570342453 0.027115352951440182 0.02872143899942418 0.027452760598610543" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="ハイライト">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.019984416194788614,-0.019984416194788614)"><path d="M 0.0007122874240002778 0.015055279226736117 C 0.0023097814895107318 0.014923931426107243 0.022776716139006035 0.013302264255382536 0.019882216210125727 0.013479105619189627 C 0.022776716139006035 0.013302264255382536 0.03674329243393383 0.01288768929787281 0.03544628657056398 0.012933182861051027" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03544628657056398 0.012933182861051027 C 0.035554516195545595 0.012935483431761553 0.03692901859542028 0.012991990309894206 0.03674504207034339 0.01296078970957734 C 0.03692901859542028 0.012991990309894206 0.03775975563770415 0.013384970224136917 0.03765400487148665 0.01330759006485341 C 0.03775975563770415 0.013384970224136917 0.038016214208322976 0.014002001568846298 0.038014051264953386 0.013889351620979425 C 0.038016214208322976 0.014002001568846298 0.03757389351030976 0.014766045868044463 0.03767996019192178 0.014659389439255892 C 0.03757389351030976 0.014766045868044463 0.036555375260697257 0.015232213372153386 0.036741251085609106 0.015169228766442265 C 0.036555375260697257 0.015232213372153386 0.035341800226927136 0.015435702702901594 0.03544945029297959 0.015415204707789338" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03544945029297959 0.015415204707789338 C 0.03423320182451629 0.015399247610127741 0.017959705099005026 0.015193725745762405 0.02085446867141997 0.015223719535850173 C 0.017959705099005026 0.015193725745762405 -0.0009662276799513631 0.015041242534309947 0.0007122874240002778 0.015055279226736117" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.03152698640040582,-0.03152698640040582)"><path d="M 0.05511107660974876 0.024710226818663278 C 0.05528416318257284 0.02490100528845191 0.05493799003692468 0.026427233046760947 0.05511107660974876 0.026236454576972316 C 0.05493799003692468 0.026427233046760947 0.05268786459021165 0.02699956845612684 0.05303403773585981 0.02699956845612684 C 0.05268786459021165 0.02699956845612684 0.050783912289146776 0.026045676107183693 0.05095699886197086 0.026236454576972323 C 0.050783912289146776 0.026045676107183693 0.05113008543479493 0.024519448348874647 0.05095699886197085 0.024710226818663278 C 0.05113008543479493 0.024519448348874647 0.05338021088150797 0.02394711293950876 0.05303403773585981 0.02394711293950876 C 0.05338021088150797 0.02394711293950876 0.05528416318257284 0.02490100528845191 0.05511107660974876 0.024710226818663278 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="植性">
<g id="通常">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.08016405786268961,-0.06697964060192962)"><path d="M 0.08541135019117498 0.07827911150219127 C 0.08453833184724424 0.07802433649144044 0.07359383438511499 0.07471241572754175 0.07493513006400622 0.0752218113731813 C 0.07359383438511499 0.07471241572754175 0.06840897818195654 0.07189890766089156 0.0693158020444803 0.07216636375451667 C 0.06840897818195654 0.07189890766089156 0.06352872005426886 0.0719653620035081 0.06405324371372104 0.07201233824968006 C 0.06352872005426886 0.0719653620035081 0.06293554099916528 0.0715685080130175 0.06302151813105418 0.07160264880045308" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06302151813105418 0.07160264880045308 C 0.06320655398071118 0.07159226154215867 0.0659341222479364 0.07141571402094454 0.06524194832693814 0.07147800170092013 C 0.0659341222479364 0.07141571402094454 0.07232261685929499 0.07096657815428134 0.07132760518303344 0.07085519664074603 C 0.07232261685929499 0.07096657815428134 0.07835573385942195 0.0734332394351309 0.07718208844207682 0.0728145798633438 C 0.07835573385942195 0.0734332394351309 0.08609712200359983 0.0787344891387619 0.08541135019117498 0.07827911150219127" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.08016405786268961,-0.06697964060192962)"><path d="M 0.10456417194037983 0.05257082111277214 C 0.10379039151292645 0.05304680540561843 0.09349775600842743 0.0595153644767835 0.0952788068109393 0.05828263262692761 C 0.09349775600842743 0.0595153644767835 0.08133632686627632 0.06834891690515116 0.08319156231023746 0.06736360331104288 C 0.08133632686627632 0.06834891690515116 0.07103469027430193 0.07066220293634043 0.07301598148340555 0.07010639575622703 C 0.07103469027430193 0.07066220293634043 0.05828274166079314 0.07436053061541839 0.05941606780099409 0.07403328947240367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05941606780099409 0.07403328947240367 C 0.06053899828004152 0.07335268880088756 0.0748313420504855 0.06461044873417567 0.07289123354956323 0.06586608141421031 C 0.0748313420504855 0.06461044873417567 0.08432610953797953 0.058151231932830005 0.0826973698120613 0.05896569731198798 C 0.08432610953797953 0.058151231932830005 0.09425834377127532 0.05555959051437993 0.0924361102605821 0.056092496864314584 C 0.09425834377127532 0.05555959051437993 0.10557484374702963 0.05227734813347694 0.10456417194037983 0.05257082111277214" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.08016405786268961,-0.06697964060192962)"><path d="M 0.10672275226309522 0.04411642947076752 C 0.10550644872265902 0.04504420219629275 0.09004519554523989 0.056913822755347496 0.09212710977786076 0.05524970217707033 C 0.09004519554523989 0.056913822755347496 0.0798507333372834 0.06520299370098136 0.0817397814716447 0.06408587641009354 C 0.0798507333372834 0.06520299370098136 0.06759822269297086 0.06948406075624998 0.06945853216552508 0.06865510966772413 C 0.06759822269297086 0.06948406075624998 0.05857919577061651 0.0744814711227936 0.05941606780099409 0.07403328947240365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05941606780099409 0.07403328947240365 C 0.06042409875457092 0.07305421199704719 0.07319278488488054 0.06075234641896046 0.07151243924391604 0.06228435976812613 C 0.07319278488488054 0.06075234641896046 0.08119504949719142 0.05468351883674311 0.07958021549256822 0.0556491292824156 C 0.08119504949719142 0.05468351883674311 0.09315232536360507 0.049735976102418866 0.09089044729939448 0.05069703442005621 C 0.09315232536360507 0.049735976102418866 0.10804211101007027 0.04356804572499346 0.10672275226309522 0.04411642947076752" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="欠損">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.08016405786268961,-0.06697964060192962)"><path d="M 0.08263948109327239 0.07634727892844535 C 0.0824267898826569 0.07634954114847463 0.08095570970819789 0.07644453243420453 0.08136333382957951 0.076360852248621 C 0.08095570970819789 0.07644453243420453 0.0799988034542165 0.07693077800750077 0.08019373636498264 0.07684936004194652" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08019373636498264 0.07684936004194652 C 0.07969782746420814 0.07668969277412173 0.07333633502898003 0.07454310313742982 0.07424282955568856 0.07493335282804897 C 0.07333633502898003 0.07454310313742982 0.06846666989098302 0.07192294587298592 0.0693158020444803 0.07216636375451667 C 0.06846666989098302 0.07192294587298592 0.06352872005426886 0.0719653620035081 0.06405324371372104 0.07201233824968006 C 0.06352872005426886 0.0719653620035081 0.06293554099916528 0.0715685080130175 0.06302151813105418 0.07160264880045308" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.06302151813105418 0.07160264880045308 C 0.06320655398071118 0.07159226154215867 0.0659341222479364 0.07141571402094454 0.06524194832693814 0.07147800170092013 C 0.0659341222479364 0.07141571402094454 0.07228541091600364 0.07094748810213276 0.07132760518303344 0.07085519664074603 C 0.07228541091600364 0.07094748810213276 0.07767827344843385 0.07304317276153581 0.0767356171225806 0.07258549923756087 C 0.07767827344843385 0.07304317276153581 0.0831314697574967 0.07666076056935239 0.08263948109327239 0.07634727892844535" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.08016405786268961,-0.06697964060192962)"><path d="M 0.09431368383861764 0.05554478477866178 C 0.09435370423041003 0.055683664482418335 0.09471670207357316 0.0566151133276357 0.094553806189372 0.056378063001201094 C 0.09471670207357316 0.0566151133276357 0.0956086785225891 0.057079371614050356 0.09529105914382467 0.056967086737269405 C 0.0956086785225891 0.057079371614050356 0.09649597933515429 0.05724451974565099 0.09645952246195855 0.05705177226188678 C 0.09649597933515429 0.05724451974565099 0.09535151336983921 0.05830220486951604 0.09550980038299912 0.05812357163985472" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09550980038299912 0.05812357163985472 C 0.09510209447599105 0.058441635090738756 0.08952190305147113 0.06274745709473052 0.09061732949890221 0.06194033305046321 C 0.08952190305147113 0.06274745709473052 0.08089790401253477 0.06848956539654275 0.08236468301382616 0.06780906017106243 C 0.08089790401253477 0.06848956539654275 0.07110359688233621 0.0706250815313388 0.07301598148340555 0.07010639575622703 C 0.07110359688233621 0.0706250815313388 0.05828274166079314 0.07436053061541839 0.05941606780099409 0.07403328947240367" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05941606780099409 0.07403328947240367 C 0.06053899828004152 0.07335268880088756 0.0748313420504855 0.06461044873417567 0.07289123354956323 0.06586608141421031 C 0.0748313420504855 0.06461044873417567 0.08432610953797953 0.058151231932830005 0.0826973698120613 0.05896569731198798 C 0.08432610953797953 0.058151231932830005 0.0934041364294618 0.05580742081987074 0.0924361102605821 0.056092496864314584 C 0.0934041364294618 0.05580742081987074 0.09447014830345393 0.05549914210485738 0.09431368383861764 0.05554478477866178" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.08016405786268961,-0.06697964060192962)"><path d="M 0.08994946375166694 0.051091205543800755 C 0.08995760420945527 0.05130358479243052 0.09035792430522308 0.05249513365780433 0.0899983064983969 0.052365481035579343 C 0.09035792430522308 0.05249513365780433 0.09277103998853653 0.05182254026595755 0.092107170592624 0.05186912127715067 C 0.09277103998853653 0.05182254026595755 0.09487498072487686 0.05196085868260769 0.09398152287387213 0.05208599496842063 C 0.09487498072487686 0.05196085868260769 0.09804898350278245 0.05095702166124842 0.0974679176986524 0.051118303562273024" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0974679176986524 0.051118303562273024 C 0.09702285037191977 0.0514625867801728 0.09081643175894345 0.05633033324772204 0.09212710977786076 0.05524970217707033 C 0.09081643175894345 0.05633033324772204 0.0798507333372834 0.06520299370098136 0.0817397814716447 0.06408587641009354 C 0.0798507333372834 0.06520299370098136 0.06759822269297086 0.06948406075624998 0.06945853216552508 0.06865510966772413 C 0.06759822269297086 0.06948406075624998 0.05857919577061651 0.0744814711227936 0.05941606780099409 0.07403328947240365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05941606780099409 0.07403328947240365 C 0.06021020237543927 0.07324424390412695 0.0704422831825695 0.06315350215954123 0.0689456826943362 0.06456474265308339 C 0.0704422831825695 0.06315350215954123 0.0785230531236288 0.0562191897512389 0.07737527365979364 0.057098403549897696 C 0.0785230531236288 0.0562191897512389 0.08376688543468083 0.05351357723533641 0.08271903626035806 0.05401417706917782 C 0.08376688543468083 0.05351357723533641 0.09055199937594269 0.050847624583352666 0.08994946375166694 0.051091205543800755" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.06516690117243282 0.05224070845252287 C 0.06450980616246858 0.051979476977256786 0.056556264408854535 0.04882530366645144 0.05728176105286194 0.04910593074932988 C 0.056556264408854535 0.04882530366645144 0.05639253981030081 0.04885378785036921 0.05646094144434397 0.04887318345798157" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05646094144434397 0.04887318345798157 C 0.056396782898813974 0.0488967167643805 0.05503353940664277 0.04947937869742365 0.05569103889798397 0.04915558313476878 C 0.05503353940664277 0.04947937869742365 0.04797760660243838 0.05305899246609594 0.04857094754824958 0.05275873020984" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04857094754824958 0.05275873020984 C 0.049066489420600774 0.05242026792195093 0.05505903949481542 0.04832811308095105 0.05451745001646387 0.04869718275517112 C 0.05505903949481542 0.04832811308095105 0.05511606889446864 0.048299286732868214 0.055070021288468274 0.048329894119199204" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.055070021288468274 0.048329894119199204 C 0.055018225085966405 0.04830234080392497 0.05383431409947859 0.04773961242468303 0.0544484668584458 0.047999254335908355 C 0.05383431409947859 0.04773961242468303 0.04713783162439643 0.04498210258854425 0.04770018818086177 0.045214191184495336" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04770018818086177 0.045214191184495336 C 0.04835221406765008 0.0454022281590723 0.05624492634315294 0.04767806746160827 0.055524498822321466 0.04747063487941894 C 0.05624492634315294 0.04767806746160827 0.05641372006488259 0.047722777778379695 0.05634531843083943 0.047703382170767326" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05634531843083943 0.047703382170767326 C 0.05640947697636943 0.04767984886436839 0.057777789591716575 0.047170381432014345 0.05711522097719944 0.04742098249398011 C 0.057777789591716575 0.047170381432014345 0.06489455187403216 0.04446910167161137 0.06429614180504503 0.044696169427178196" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.06429614180504503 0.044696169427178196 C 0.06379553080951791 0.044961437214378154 0.057742151257192065 0.04817525804710864 0.05828880985871956 0.04787938287357769 C 0.057742151257192065 0.04817525804710864 0.05769019098071477 0.048277278895880675 0.05773623858671514 0.04824667150954968" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05773623858671514 0.04824667150954968 C 0.05778803478921701 0.048274224824823915 0.05897701489888075 0.048910147704754964 0.05835779301673761 0.048577311292840535 C 0.05897701489888075 0.048910147704754964 0.06573432685207409 0.05254599154916306 0.06516690117243282 0.05224070845252287" fill="none" stroke="none" stroke-width="0"/>
</g><g id="グローブ">
<g id="通常">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.08016405786268961,-0.06697964060192962)"><path d="M 0.0783094999479124 0.0751755867050713 C 0.07791870010848434 0.07513888735678671 0.07293386189199592 0.074679732219623 0.07361990187477563 0.07473519452565626 C 0.07293386189199592 0.074679732219623 0.06939027151435603 0.0744678219038933 0.07007702015455591 0.07451003903267221 C 0.06939027151435603 0.0744678219038933 0.0644904004782924 0.07418892244013903 0.065378918192377 0.07422858898030935 C 0.0644904004782924 0.07418892244013903 0.05891779836830432 0.07401782818148835 0.05941480758554068 0.07403404055062843" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05941480758554068 0.07403404055062843 C 0.059123285101262774 0.07395592736105921 0.05541160600755353 0.07280515983755224 0.05591653777420584 0.07309668227579796 C 0.05541160600755353 0.07280515983755224 0.053064103867737106 0.07003083957105967 0.05335562638571291 0.0705357712916798 C 0.053064103867737106 0.07003083957105967 0.05241826751246404 0.06645445667213488 0.052418267558496226 0.06703750162835641 C 0.05241826751246404 0.06645445667213488 0.05364714827157241 0.06303430005036925 0.05335562583332669 0.06353923181702156 C 0.05364714827157241 0.06303430005036925 0.056421468538064984 0.06068679791055282 0.05591653681744485 0.060978320428528625 C 0.056421468538064984 0.06068679791055282 0.059706328952711885 0.059962848365710565 0.059414806480768266 0.060040961601311955" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.059414806480768266 0.060040961601311955 C 0.059908075767322565 0.06001823282734686 0.06654472677600129 0.059720731459707285 0.06533403791941984 0.059768216313730846 C 0.06654472677600129 0.059720731459707285 0.0753932813712664 0.05941309224128884 0.07394307275974568 0.05947114335302919 C 0.0753932813712664 0.05941309224128884 0.08465155392275524 0.05896678036873382 0.08273654125766851 0.059071602972846526 C 0.08465155392275524 0.05896678036873382 0.09810544836437955 0.05814174453124584 0.09692322474078639 0.05821327210367666" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09692322474078639 0.05821327210367666 C 0.09613840347206104 0.058898741578663844 0.0859542257833427 0.06785243202030573 0.0875053695160822 0.06643890580352285 C 0.0859542257833427 0.06785243202030573 0.07754317748389826 0.075903643446867 0.0783094999479124 0.0751755867050713" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.29483597524579985,0.15397705962151617) rotate(0) scale(1,1) translate(-0.011151072488719693,-0.011148687172719409)"><path d="M 0.0010046437786326978 0.019871923432593232 C 0.0018015637387056283 0.019110457260316578 0.012127438305000267 0.00932101623994031 0.010567683299507864 0.010734329365273396 C 0.012127438305000267 0.00932101623994031 0.020484538889960997 0.002260318975539767 0.019721703844541527 0.0029121659285962" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019721703844541527 0.0029121659285962 C 0.019792212588521933 0.002909918101428053 0.020715844996669532 0.002880418927830984 0.02056780877230638 0.0028851920025784374 C 0.020715844996669532 0.002880418927830984 0.021575666017282114 0.0028523637840474547 0.021498138536899365 0.002854889031626761" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.021498138536899365 0.002854889031626761 C 0.020684498798652046 0.0035805686940049825 0.010180539700473314 0.012987647115095586 0.011734461677931523 0.011563044980165419 C 0.010180539700473314 0.012987647115095586 0.0021107925681899528 0.020649037123340708 0.0028510748074008427 0.01995011465078876" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0028510748074008427 0.01995011465078876 C 0.0027746929958624863 0.019947782113339408 0.0017806238165432198 0.019915608266546897 0.0019344930689405653 0.019922124201396524 C 0.0017806238165432198 0.019915608266546897 0.0009271563377737088 0.019867740035192958 0.0010046437786326978 0.019871923432593232" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="筋肉">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.08016405786268961,-0.06697964060192962)"><path d="M 0.0781893697002349 0.076238739438223 C 0.07787962225224951 0.07617750495520866 0.07386427217621383 0.07538107994637283 0.07447240032441005 0.07550392564205093 C 0.07386427217621383 0.07538107994637283 0.07013404174421094 0.07465831303494075 0.07089183192188035 0.07476459109008587 C 0.07013404174421094 0.07465831303494075 0.06442249949768203 0.07416770976868789 0.065378918192377 0.07422858898030935 C 0.06442249949768203 0.07416770976868789 0.05891779836830432 0.07401782818148835 0.05941480758554068 0.07403404055062843" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05941480758554068 0.07403404055062843 C 0.059123285101262774 0.07395592736105921 0.05541160600755353 0.07280515983755224 0.05591653777420584 0.07309668227579796 C 0.05541160600755353 0.07280515983755224 0.053064103867737106 0.07003083957105967 0.05335562638571291 0.0705357712916798 C 0.053064103867737106 0.07003083957105967 0.05241826751246404 0.06645445667213488 0.052418267558496226 0.06703750162835641 C 0.05241826751246404 0.06645445667213488 0.05364714827157241 0.06303430005036925 0.05335562583332669 0.06353923181702156 C 0.05364714827157241 0.06303430005036925 0.056421468538064984 0.06068679791055282 0.05591653681744485 0.060978320428528625 C 0.056421468538064984 0.06068679791055282 0.059706328952711885 0.059962848365710565 0.059414806480768266 0.060040961601311955" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.059414806480768266 0.060040961601311955 C 0.06034082867320793 0.05998971266002753 0.07222557772592689 0.059292557710947776 0.07052707279004423 0.05942597430589889 C 0.07222557772592689 0.059292557710947776 0.08120254874654304 0.058382299102292944 0.07979686571136002 0.05843996246189859 C 0.08120254874654304 0.058382299102292944 0.0888209408076174 0.05871500334218491 0.08739526921224042 0.05873401399063114 C 0.0888209408076174 0.05871500334218491 0.09769739615952092 0.05816831973803651 0.09690492485588395 0.05821183468054379" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09690492485588395 0.05821183468054379 C 0.0961201035871586 0.058897304155530975 0.08592744003487568 0.06793971044352992 0.08748706963117976 0.06643746838038998 C 0.08592744003487568 0.06793971044352992 0.07741456137265616 0.07705551202637576 0.0781893697002349 0.076238739438223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.29483597524579985,0.15397705962151617) rotate(0) scale(1,1) translate(-0.011152136999266773,-0.011139887960781771)"><path d="M 0.0009212695931047426 0.02086629652331315 C 0.001725226111183926 0.020021232659148368 0.012135539373553602 0.009228619336114543 0.010568747810054947 0.010725530153335758 C 0.012135539373553602 0.009228619336114543 0.020485603400508087 0.002251519763602129 0.019722768355088613 0.002903366716658562" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019722768355088613 0.002903366716658562 C 0.019790496451296172 0.002900107744845745 0.02068632238171533 0.0028564525462232886 0.020535505509579333 0.0028642590549047536 C 0.02068632238171533 0.0028564525462232886 0.021615659596649014 0.002805141075612337 0.021532570820720576 0.002809688612480984" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.021532570820720576 0.002809688612480984 C 0.02071615043470041 0.0035384017087932173 0.010159424728241597 0.013080151548173508 0.011735526188478604 0.011554245768227781 C 0.010159424728241597 0.013080151548173508 0.0018596722236596482 0.021917750655463215 0.002619353297876491 0.02112055797182972" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.002619353297876491 0.02112055797182972 C 0.0025527414179044687 0.021112057238691716 0.0016785037628145778 0.02099736072013064 0.0018200107382122235 0.021018549174173687 C 0.0016785037628145778 0.02099736072013064 0.0008463744976791192 0.020853608802408104 0.0009212695931047426 0.02086629652331315" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g id="シャツ">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.0896951850180319,-0.08969518501803192)"><path d="M 0.09305156377043332 0.07946733851520538 C 0.09551871434172331 0.07974972315881437 0.11173535054329849 0.0812260457195428 0.10785446719817322 0.08116164637685938 C 0.11173535054329849 0.0812260457195428 0.11775059661502016 0.07963574927038028 0.11633686384118488 0.07985373457130586" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.11633686384118488 0.07985373457130586 C 0.11673506777934617 0.08004184397610972 0.12175490959097414 0.0826430661470803 0.1211153110991203 0.0821110474289522 C 0.12175490959097414 0.0826430661470803 0.12427334399062813 0.08698942750123696 0.12401204574343094 0.08623795918884292 C 0.12427334399062813 0.08698942750123696 0.12406387341370698 0.09189822975689721 0.12425089006548659 0.09112866717768077 C 0.12406387341370698 0.09189822975689721 0.1211826253321347 0.0960541633138528 0.1217678459220756 0.09547271013944023 C 0.1211826253321347 0.0960541633138528 0.11640162784256237 0.0983436491317201 0.11722824298619583 0.09810610527063174 C 0.11640162784256237 0.0983436491317201 0.11140014929949735 0.0983413307393229 0.11184846419847415 0.0983232364725005" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.11184846419847415 0.0983232364725005 C 0.11113636920772646 0.09848439071114251 0.10161098444728475 0.10047595776489399 0.10330332430950191 0.10025708733620453 C 0.10161098444728475 0.10047595776489399 0.09056014098039876 0.10100739780682143 0.09154038585186823 0.10094968161677398" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09154038585186823 0.10094968161677398 C 0.09152761824593991 0.10012803336544972 0.09151310607394213 0.08929970734241872 0.09138717458072837 0.09108990260088277 C 0.09151310607394213 0.08929970734241872 0.09319026286957538 0.0784987915080656 0.0930515637704333 0.07946733851520539" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2967462845179878,0.15430028286887004) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.0033198539179752533 -0.0018620785680426247 C 0.0036027403807316633 -0.001869697337573076 0.007303386287943148 -0.0018362541617746818 0.006714491471052171 -0.0019535038024080407 C 0.007303386287943148 -0.0018362541617746818 0.010692600074801543 -0.0003302144702785077 0.010386591720666976 -0.00045508288044231795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010386591720666976 -0.00045508288044231795 C 0.010653591997239614 -6.935101790044669E-05 0.014200431581648753 0.004970618631999216 0.013590595039538621 0.004173699470060137 C 0.014200431581648753 0.004970618631999216 0.018047466491526047 0.009519134362223845 0.017704630225988553 0.009107947062826636" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017704630225988553 0.009107947062826636 C 0.018174637611482504 0.009487315066154673 0.02426373288749821 0.014406371390991485 0.023344718851915962 0.01366036310276308 C 0.02426373288749821 0.014406371390991485 0.029181805303063822 0.01842668680646787 0.028732798652975525 0.0180600465215675" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.028732798652975525 0.0180600465215675 C 0.02825364052757094 0.01810200537944228 0.021532453164858745 0.01822418891573479 0.022982901148120502 0.018563552816064845 C 0.021532453164858745 0.01822418891573479 0.010356132995977261 0.013606356959401995 0.011327422853834434 0.01398767971760683" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.002130703610506661 0.01130256410729449 C 0.002166301564487391 0.010668658697669262 0.002656974917231138 0.002598645635513648 0.002557879058275422 0.003695699191791741 C 0.002656974917231138 0.002598645635513648 0.0033833518229502394 -0.0023252267146954887 0.0033198539179752533 -0.0018620785680426247" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2891866531551037,0.15591251200277378) rotate(0) scale(1,1) translate(-0.012700361571616135,-0.012700361571616131)"><path d="M 0.011688072669055676 -0.0007808799659522307 C 0.0118910572762597 -0.0007808799659522304 0.014588192546038813 -0.0007829769012413653 0.014123887955503952 -0.0007808799659522272 C 0.014588192546038813 -0.0007829769012413653 0.01752104773880484 -0.0008081401247110261 0.017259727755474005 -0.0008060431894218877" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017259727755474005 -0.0008060431894218877 C 0.017141100556816686 0.0003173936053754761 0.01574963557797138 0.014624775272801493 0.01583620137158618 0.012675198348146479 C 0.01574963557797138 0.014624775272801493 0.016252999637138922 0.023415020036295933 0.016220938232096402 0.02258887990643828" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.016220938232096402 0.02258887990643828 C 0.015959618248765566 0.02259097684172742 0.012620793841591491 0.02261614006519706 0.013085098432126352 0.02261404312990792 C 0.012620793841591491 0.02261614006519706 0.01044629853847405 0.022614043129907946 0.010649283145678073 0.022614043129907942" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010649283145678073 0.022614043129907942 C 0.010617221740635554 0.021787903000050294 0.010351112078782657 0.01075078464696113 0.010264546285167856 0.012700361571616144 C 0.010351112078782657 0.01075078464696113 0.01180669986771299 -0.0019043167607495914 0.011688072669055673 -0.0007808799659522272" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="ナース">
<g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.0896951850180319,-0.08969518501803192)"><path d="M 0.09305156377043332 0.07946733851520538 C 0.09551871434172331 0.07974972315881437 0.11173535054329849 0.0812260457195428 0.10785446719817322 0.08116164637685938 C 0.11173535054329849 0.0812260457195428 0.11775059661502016 0.07963574927038028 0.11633686384118488 0.07985373457130586" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.11633686384118488 0.07985373457130586 C 0.11673506777934617 0.08004184397610972 0.12175490959097414 0.0826430661470803 0.1211153110991203 0.0821110474289522 C 0.12175490959097414 0.0826430661470803 0.12427334399062813 0.08698942750123696 0.12401204574343094 0.08623795918884292 C 0.12427334399062813 0.08698942750123696 0.12406387341370698 0.09189822975689721 0.12425089006548659 0.09112866717768077 C 0.12406387341370698 0.09189822975689721 0.1211826253321347 0.0960541633138528 0.1217678459220756 0.09547271013944023 C 0.1211826253321347 0.0960541633138528 0.11640162784256237 0.0983436491317201 0.11722824298619583 0.09810610527063174 C 0.11640162784256237 0.0983436491317201 0.11140014929949735 0.0983413307393229 0.11184846419847415 0.0983232364725005" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.11184846419847415 0.0983232364725005 C 0.11113636920772646 0.09848439071114251 0.10161098444728475 0.10047595776489399 0.10330332430950191 0.10025708733620453 C 0.10161098444728475 0.10047595776489399 0.09056014098039876 0.10100739780682143 0.09154038585186823 0.10094968161677398" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09154038585186823 0.10094968161677398 C 0.09152761824593991 0.10012803336544972 0.09151310607394213 0.08929970734241872 0.09138717458072837 0.09108990260088277 C 0.09151310607394213 0.08929970734241872 0.09319026286957538 0.0784987915080656 0.0930515637704333 0.07946733851520539" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2967462845179878,0.15430028286887004) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.0033198539179752533 -0.0018620785680426247 C 0.0036027403807316633 -0.001869697337573076 0.007303386287943148 -0.0018362541617746818 0.006714491471052171 -0.0019535038024080407 C 0.007303386287943148 -0.0018362541617746818 0.010692600074801543 -0.0003302144702785077 0.010386591720666976 -0.00045508288044231795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010386591720666976 -0.00045508288044231795 C 0.010653591997239614 -6.935101790044669E-05 0.014200431581648753 0.004970618631999216 0.013590595039538621 0.004173699470060137 C 0.014200431581648753 0.004970618631999216 0.018047466491526047 0.009519134362223845 0.017704630225988553 0.009107947062826636" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017704630225988553 0.009107947062826636 C 0.018174637611482504 0.009487315066154673 0.02426373288749821 0.014406371390991485 0.023344718851915962 0.01366036310276308 C 0.02426373288749821 0.014406371390991485 0.029181805303063822 0.01842668680646787 0.028732798652975525 0.0180600465215675" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.028732798652975525 0.0180600465215675 C 0.02825364052757094 0.01810200537944228 0.021532453164858745 0.01822418891573479 0.022982901148120502 0.018563552816064845 C 0.021532453164858745 0.01822418891573479 0.010356132995977261 0.013606356959401995 0.011327422853834434 0.01398767971760683" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.002130703610506661 0.01130256410729449 C 0.002166301564487391 0.010668658697669262 0.002656974917231138 0.002598645635513648 0.002557879058275422 0.003695699191791741 C 0.002656974917231138 0.002598645635513648 0.0033833518229502394 -0.0023252267146954887 0.0033198539179752533 -0.0018620785680426247" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2891866531551037,0.15591251200277378) rotate(0) scale(1,1) translate(-0.012700361571616135,-0.012700361571616131)"><path d="M 0.011688072669055676 -0.0007808799659522307 C 0.0118910572762597 -0.0007808799659522304 0.014588192546038813 -0.0007829769012413653 0.014123887955503952 -0.0007808799659522272 C 0.014588192546038813 -0.0007829769012413653 0.01752104773880484 -0.0008081401247110261 0.017259727755474005 -0.0008060431894218877" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.017259727755474005 -0.0008060431894218877 C 0.017141100556816686 0.0003173936053754761 0.01574963557797138 0.014624775272801493 0.01583620137158618 0.012675198348146479 C 0.01574963557797138 0.014624775272801493 0.016252999637138922 0.023415020036295933 0.016220938232096402 0.02258887990643828" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.016220938232096402 0.02258887990643828 C 0.015959618248765566 0.02259097684172742 0.012620793841591491 0.02261614006519706 0.013085098432126352 0.02261404312990792 C 0.012620793841591491 0.02261614006519706 0.01044629853847405 0.022614043129907946 0.010649283145678073 0.022614043129907942" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010649283145678073 0.022614043129907942 C 0.010617221740635554 0.021787903000050294 0.010351112078782657 0.01075078464696113 0.010264546285167856 0.012700361571616144 C 0.010351112078782657 0.01075078464696113 0.01180669986771299 -0.0019043167607495914 0.011688072669055673 -0.0007808799659522272" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="鎧">
<g id="ベルト">
<g transform="translate(0.3026155507283089,0.15282132920502708) rotate(0) scale(1,1) translate(-0.008280203840919388,-0.00828020384091939)"><path d="M 0.005404002667618196 0.007950623208273716 C 0.005643120859018727 0.007946559421883789 0.008751657347225642 0.007893730198814737 0.008273420964424578 0.00790185777159459 C 0.008751657347225642 0.007893730198814737 0.011381957452631493 0.00784902854852554 0.01114283926123096 0.007853092334915468" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01114283926123096 0.007853092334915468 C 0.011059069378892757 0.008021865548372564 0.009970060908496118 0.010215917323314823 0.010137600673172525 0.00987837089640063 C 0.009970060908496118 0.010215917323314823 0.009048592202775882 0.012072422671342883 0.009132362085114086 0.011903649457885787" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009132362085114086 0.011903649457885787 C 0.008893243893713553 0.011907713244275715 0.0057847074055066405 0.011960542467344765 0.006262943788307704 0.011952414894564911 C 0.0057847074055066405 0.011960542467344765 0.0031544073001007903 0.012005244117633963 0.003393525491501322 0.012001180331244036" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003393525491501322 0.012001180331244036 C 0.003477295373839525 0.01183240711778694 0.004566303844236165 0.009638355342844684 0.004398764079559759 0.009975901769758877 C 0.004566303844236165 0.009638355342844684 0.005487772549956395 0.007781849994816624 0.005404002667618192 0.00795062320827372" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.30059829067569727,0.1564935402586726) rotate(0) scale(1,1) translate(-0.008280203840919388,-0.007792377991453716)"><path d="M 0.005410785544113005 0.007841143428132837 C 0.005649903735513537 0.007837079641742909 0.008758440223720451 0.007784250418673862 0.008280203840919388 0.007792377991453716 C 0.008758440223720451 0.007784250418673862 0.011388740329126302 0.007739548768384662 0.01114962213772577 0.0077436125547745895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01114962213772577 0.0077436125547745895 C 0.011154341958939926 0.008006882246572533 0.01122029726601875 0.011484695534760182 0.011206259992295648 0.010902848856349921 C 0.01122029726601875 0.011484695534760182 0.011327386874911936 0.015044349682310042 0.011318069422402991 0.014725772695697725" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011318069422402991 0.014725772695697725 C 0.011078951231002459 0.014729836482087652 0.00797041474279554 0.014782665705156711 0.008448651125596604 0.014774538132376856 C 0.00797041474279554 0.014782665705156711 0.00534011463738969 0.014827367355445906 0.005579232828790221 0.014823303569055979" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.005579232828790221 0.014823303569055979 C 0.005569915376281276 0.014504726582443662 0.0054533861249597805 0.01041853305129791 0.005467423398682882 0.01100037972970817 C 0.0054533861249597805 0.01041853305129791 0.005406065722898846 0.0075778737363349 0.0054107855441130025 0.007841143428132843" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="鎧">
<g transform="translate(0.3142543897436383,0.147604578311021) rotate(0) scale(1,1) translate(-0.011152769902399133,-0.011152769902399133)"><path d="M 0.01083338004164556 0.005951172898383464 C 0.011205984107648736 0.0061471254332270495 0.016004364847160016 0.008863597756262966 0.01530462883368366 0.008302603316506493 C 0.016004364847160016 0.008863597756262966 0.01955734415083502 0.013048148080374033 0.019230212203361838 0.012683106175461145" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.019230212203361838 0.012683106175461145 C 0.019176410698713654 0.012894577350942302 0.017806409422047774 0.016048473740151156 0.01858459414758365 0.015220760281235026 C 0.017806409422047774 0.016048473740151156 0.009167612276043657 0.023231909965889655 0.00989199549693135 0.022615667682454682" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00989199549693135 0.022615667682454682 C 0.009399669571347158 0.022539064897345643 0.0034913514301833145 0.02074119277947491 0.003984084389921064 0.021696434261146206 C 0.0034913514301833145 0.02074119277947491 0.0039787929459247995 0.010274131205836878 0.003979199980078358 0.011152769902399134" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.2874946635924073,0.15451779441992294) rotate(0) scale(1,1) translate(-0.031526986400405826,-0.03152698640040582)"><path d="M 0.05132823705713047 0.018435487445417415 C 0.05158996797710353 0.018457541371488927 0.0550222652329532 0.018781525045114808 0.05446900809680713 0.018700134558275575 C 0.0550222652329532 0.018781525045114808 0.05825884890705634 0.019471509848255946 0.057967322690883324 0.019412173287488226" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.057967322690883324 0.019412173287488226 C 0.05805785791978038 0.019533201595712077 0.05922531357990715 0.02126868765558541 0.05905374543764802 0.020864512986174456 C 0.05922531357990715 0.02126868765558541 0.06010717331135497 0.024545415681606782 0.060026140397992894 0.02426226932041968" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.060026140397992894 0.02426226932041968 C 0.059355393564096685 0.024847244401870687 0.05121897092386232 0.03214725630875882 0.05197717839123836 0.03128197029783178 C 0.05121897092386232 0.03214725630875882 0.050840190156000595 0.03492601238102023 0.05092765078948042 0.03464570145154419" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05092765078948042 0.03464570145154419 C 0.05061241160651889 0.03439985473469494 0.046238554221823686 0.031112750107185706 0.047144780593942004 0.03169554084935311 C 0.046238554221823686 0.031112750107185706 0.03946194713490377 0.027315268520217217 0.04005293432406056 0.027652212545535362" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04005293432406056 0.027652212545535362 C 0.03994886523475634 0.02748922881891173 0.038624824767772105 0.025230587359998256 0.038804105252409855 0.025696407826051797 C 0.038624824767772105 0.025230587359998256 0.037826357113074055 0.02175953021346293 0.037901568508407577 0.022062366952892844" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.037901568508407577 0.022062366952892844 C 0.03847477157151763 0.02191237819565074 0.045898894311455135 0.019960261907031283 0.04478000526572823 0.02026250186598757 C 0.045898894311455135 0.019960261907031283 0.05187392303974731 0.018283236243703236 0.05132823705713046 0.018435487445417415" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 177 KiB

View File

@@ -0,0 +1,367 @@
id: Waist
original_key:
resource: 胴体
morph_x: 1
morph_y: 5
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
- x: 0
y: 3
file: x0y3.svg
- x: 0
y: 4
file: x0y4.svg
fields:
- name:
- name:
- name: 下腹
- name: 腰皺
- name: 筋肉
- name: ハイライト
- name:
- name: 虫性
- name: 淫タトゥ
- name: 獣性
- name: 紋柄
- name:
- name: 傷X左
- name: 傷X右
- name: 傷I左
- name: 傷I右
- name: ハイライト上左
- name: ハイライト上右
- name: ハイライト下左
- name: ハイライト下右
joints:
- position: [
0.5000000000000002,
0.4732245506977483
]
- position: [
0.47938456472027985,
0.5179248041533326
]
- position: [
0.5206154352797204,
0.5179248041533326
]
- position: [
0.5000000000000001,
0.48510796701365455
]
- position: [
0.5000000000000001,
0.5216135717769247
]
- position: [
0.5000000000000001,
0.527034541777027
]
- position: [
0.5000000000000001,
0.47870237904216456
]
- position: [
0.5000000000000002,
0.4953870876261485
]
- position: [
0.4934556365038463,
0.48323250154800246
]
- position: [
0.506544363496155,
0.48323250154800246
]
- position: [
0.4778895056651132,
0.4756384440899468
]
- position: [
0.5221104943348872,
0.4756384440899468
]
- position: [
0.5000000000000001,
0.5028792172788893
]
- position: [
0.09500000000000003,
0.09851030131002228
]
- position: [
0.07470698472545342,
0.09930024362971097
]
- position: [
0.11529301527454647,
0.09930024362971097
]
- position: [
0.01919286476298848,
0.026044966334642206
]
- position: [
0.5000000000000002,
0.4726661654790053
]
- position: [
0.47917098232966115,
0.5171088415793125
]
- position: [
0.5208290176703392,
0.5171088415793125
]
- position: [
0.5000000000000001,
0.48219787831765754
]
- position: [
0.5000000000000001,
0.5208087756772546
]
- position: [
0.5000000000000002,
0.526791606898426
]
- position: [
0.5000000000000001,
0.47657965637744015
]
- position: [
0.5000000000000002,
0.4937290419693564
]
- position: [
0.4934578603950188,
0.4804447267889169
]
- position: [
0.506542139604982,
0.4804447267889169
]
- position: [
0.4781614766567406,
0.47504325143562276
]
- position: [
0.5218385233432598,
0.47504325143562276
]
- position: [
0.5000000000000002,
0.5028176270761189
]
- position: [
0.09500000000000003,
0.09810801732194308
]
- position: [
0.07466509350993522,
0.09922520377873464
]
- position: [
0.11533490649006484,
0.09922520377873464
]
- position: [
0.5000000000000002,
0.47210778026026223
]
- position: [
0.47895739993904246,
0.5162928790052923
]
- position: [
0.5210426000609578,
0.5162928790052923
]
- position: [
0.5000000000000001,
0.4792877896216606
]
- position: [
0.5000000000000001,
0.5194526853797667
]
- position: [
0.5000000000000002,
0.5265486720198249
]
- position: [
0.5000000000000001,
0.47478418869358446
]
- position: [
0.5000000000000002,
0.49207099631256435
]
- position: [
0.49346008428619137,
0.4776569520298313
]
- position: [
0.506539915713809,
0.4776569520298313
]
- position: [
0.478433447648368,
0.47444805878129875
]
- position: [
0.5215665523516323,
0.47444805878129875
]
- position: [
0.5000000000000002,
0.5027560368733484
]
- position: [
0.09500000000000003,
0.09770573333386386
]
- position: [
0.07462320229441693,
0.09915016392775831
]
- position: [
0.11537679770558314,
0.09915016392775831
]
- position: [
0.5000000000000002,
0.47233384179720206
]
- position: [
0.47888211546377446,
0.5143186009474842
]
- position: [
0.5211178845362259,
0.5143186009474842
]
- position: [
0.5000000000000001,
0.47777018251311604
]
- position: [
0.5000000000000001,
0.5142010488322678
]
- position: [
0.5000000000000002,
0.5248698124788598
]
- position: [
0.5000000000000001,
0.47453302966104693
]
- position: [
0.5000000000000002,
0.49261972333743
]
- position: [
0.49349365146754204,
0.47604627504399655
]
- position: [
0.506506348532458,
0.47604627504399655
]
- position: [
0.47811426267356383,
0.4746485176712184
]
- position: [
0.5218857373264365,
0.47464851767121846
]
- position: [
0.5000000000000002,
0.5023010568767862
]
- position: [
0.09500000000000003,
0.09968780133751481
]
- position: [
0.07399390065866218,
0.0967993680424499
]
- position: [
0.11600609934133789,
0.0967993680424499
]
- position: [
0.5000000000000002,
0.47255990333414194
]
- position: [
0.4788068309885065,
0.512344322889676
]
- position: [
0.5211931690114939,
0.512344322889676
]
- position: [
0.5000000000000001,
0.4761151160455526
]
- position: [
0.5000000000000001,
0.5089494122847689
]
- position: [
0.5000000000000001,
0.5225946076752476
]
- position: [
0.5000000000000001,
0.4742429803777582
]
- position: [
0.5000000000000002,
0.49316845036229556
]
- position: [
0.4935272186488927,
0.47443559805816177
]
- position: [
0.5064727813511071,
0.47443559805816177
]
- position: [
0.4777950776987596,
0.4748489765611381
]
- position: [
0.5222049223012407,
0.47484897656113817
]
- position: [
0.5000000000000002,
0.501846076880224
]
- position: [
0.09500000000000001,
0.10044515484456887
]
- position: [
0.07336459902290743,
0.09444857215714147
]
- position: [
0.11663540097709264,
0.09444857215714147
]

View File

@@ -0,0 +1,178 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.33734345282867056,0.24714232115791965) rotate(0) scale(1,1) translate(-0.5000000000000001,-0.5028792172788893)"><path d="M 0.4795151556033088 0.4732245506977483 C 0.4797438596663576 0.47244668763583747 0.4831131395430897 0.46254289561025713 0.48225960435989423 0.46389019395481784 C 0.4831131395430897 0.46254289561025713 0.4912359441049966 0.4562791075011087 0.48975757780165446 0.4570569705630196 C 0.4912359441049966 0.4562791075011087 0.5017070703663912 0.4545558372118874 0.5000000000000002 0.4545558372118874 C 0.5017070703663912 0.4545558372118874 0.5117207885016881 0.45783483362493044 0.5102424221983459 0.4570569705630196 C 0.5117207885016881 0.45783483362493044 0.5185939308233019 0.46523749229937855 0.5177403956401063 0.46389019395481784 C 0.5185939308233019 0.46523749229937855 0.5207135484597404 0.4740024137596592 0.5204848443966916 0.4732245506977483" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5204848443966916 0.4732245506977483 C 0.5208912568812405 0.47382802404579794 0.5261129051724903 0.48172823093583955 0.5253617942112783 0.48046623087434376 C 0.5261129051724903 0.48172823093583955 0.5298428744078988 0.48902707814914403 0.5294981759312357 0.48836855143569785" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5294981759312357 0.48836855143569785 C 0.5297040486174225 0.4889534294515687 0.5324659746655522 0.4965397491036395 0.531968648165477 0.4953870876261485 C 0.5324659746655522 0.4965397491036395 0.5357575477460271 0.5027682726272096 0.5354660939321386 0.5022004891655895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5354660939321386 0.5022004891655895 C 0.5356637619308082 0.5027870545883756 0.5381561608440879 0.5106430811554783 0.5378381099161745 0.5092392742390224 C 0.5381561608440879 0.5106430811554783 0.5392082350435039 0.5206781347866262 0.5392827050670997 0.5190461721630608 C 0.5392082350435039 0.5206781347866262 0.536172515325174 0.5303204615534739 0.5369444696330242 0.5288228257218072 C 0.536172515325174 0.5303204615534739 0.5285616592165303 0.5379677573958175 0.5300192533728967 0.537017802143061 C 0.5285616592165303 0.5379677573958175 0.517607222028664 0.5402202138022907 0.5194533397566278 0.5402222887548846 C 0.517607222028664 0.5402202138022907 0.506244728990946 0.5361299380749643 0.5078658406373316 0.5369929027119335 C 0.506244728990946 0.5361299380749643 0.4993445132802226 0.5292728639778649 0.5000000000000002 0.5298667131112548" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5000000000000002 0.5298667131112548 C 0.4993445132802226 0.5304605622446447 0.49051304771628323 0.5378558673489027 0.49213415936266885 0.5369929027119336 C 0.49051304771628323 0.5378558673489027 0.47870054251540883 0.5402243637074787 0.48054666024337256 0.5402222887548848 C 0.47870054251540883 0.5402243637074787 0.46852315247073745 0.5360678468903047 0.4699807466271038 0.5370178021430612 C 0.46852315247073745 0.5360678468903047 0.46228357605912584 0.5273251898901405 0.4630555303669761 0.5288228257218073 C 0.46228357605912584 0.5273251898901405 0.460642824909305 0.5174142095394954 0.4607172949329008 0.5190461721630608 C 0.460642824909305 0.5174142095394954 0.46247994101173984 0.5078354673225663 0.4621618900838264 0.5092392742390223 C 0.46247994101173984 0.5078354673225663 0.4647315740665313 0.5016139237428034 0.4645339060678617 0.5022004891655895" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.4645339060678617 0.5022004891655895 C 0.4648253598817502 0.5016327057039693 0.4685286783345987 0.49423442614865754 0.4680313518345235 0.4953870876261485 C 0.4685286783345987 0.49423442614865754 0.4707076967549512 0.487783673419827 0.47050182406876445 0.48836855143569785" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.47050182406876445 0.48836855143569785 C 0.4708465225454276 0.48771002472225167 0.475389316749934 0.47920423081284796 0.474638205788722 0.48046623087434376 C 0.475389316749934 0.47920423081284796 0.4799215680878577 0.4726210773496987 0.47951515560330876 0.4732245506977483" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.265876675655955) rotate(0) scale(1,1) translate(-0.095,-0.10100113652504013)"><path d="M 0.10468303217917428 0.09389590638815927 C 0.10452914413700116 0.09417582886111132 0.10259441352793337 0.09782657960288688 0.10283637567309695 0.09725497606358399 C 0.10259441352793337 0.09782657960288688 0.10169141233422097 0.10104682992614472 0.10177948643721142 0.10075514885979389" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10177948643721142 0.10075514885979389 C 0.10175117522899993 0.10085284241372668 0.10137174669247828 0.10212032669748629 0.10143975193867351 0.10192747150698733 C 0.10137174669247828 0.10212032669748629 0.10092372944488487 0.10316457278234759 0.10096342348286862 0.10306941114578141" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10096342348286862 0.10306941114578141 C 0.10092807830845905 0.10312978908259365 0.10044482983479272 0.1039172341785193 0.10053928138995383 0.10379394638752822 C 0.10044482983479272 0.1039172341785193 0.09977089844018386 0.10461177449185322 0.09983000482093539 0.10454886463767436" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09983000482093539 0.10454886463767436 C 0.09967906717028116 0.1046181461523352 0.09761625261134003 0.10547511806355897 0.09801875301308464 0.10538024281360442 C 0.09761625261134003 0.10547511806355897 0.09449687449781928 0.10568736763712896 0.09500000000000004 0.10568736763712896 C 0.09449687449781928 0.10568736763712896 0.09157874658517084 0.10528536756364987 0.09198124698691545 0.10538024281360442 C 0.09157874658517084 0.10528536756364987 0.09001905752841045 0.10447958312301353 0.09016999517906468 0.10454886463767436" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09016999517906468 0.10454886463767436 C 0.09011088879831315 0.10448595478349551 0.08936626705488517 0.10367065859653714 0.08946071861004627 0.10379394638752822 C 0.08936626705488517 0.10367065859653714 0.08900123134272185 0.10300903320896918 0.08903657651713143 0.10306941114578141" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08903657651713143 0.10306941114578141 C 0.08899688247914768 0.10297424950921524 0.08849224281513128 0.10173461631648838 0.08856024806132651 0.10192747150698733 C 0.08849224281513128 0.10173461631648838 0.08819220235457714 0.10065745530586111 0.08822051356278864 0.10075514885979389" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08822051356278864 0.10075514885979389 C 0.08813243945979816 0.10046346779344306 0.08692166218173945 0.09668337252428111 0.08716362432690303 0.09725497606358399 C 0.08692166218173945 0.09668337252428111 0.08516307977865267 0.09361598391520722 0.08531696782082578 0.09389590638815927" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.2396501915051788) rotate(0) scale(1,1) translate(-0.095,-0.09632994090643211)"><path d="M 0.07497818711520883 0.07653922078693011 C 0.07591099396729321 0.07590137127215574 0.08857603130226896 0.06824717709486335 0.08617186934022149 0.06888502660963772 C 0.08857603130226896 0.06824717709486335 0.10623229262182597 0.06952287612441209 0.1038281306597785 0.06888502660963772 C 0.10623229262182597 0.06952287612441209 0.1159546197368755 0.07717707030170448 0.11502181288479112 0.07653922078693011" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11502181288479112 0.07653922078693011 C 0.11537560933830317 0.07731892497693181 0.11912437239889913 0.08835094682729724 0.11926737032693574 0.08589567106695048 C 0.11912437239889913 0.08835094682729724 0.11280904336680318 0.1076781014814363 0.11330583774835185 0.10600252991109124" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11330583774835185 0.10600252991109124 C 0.11296540358237954 0.10639852846347812 0.10847431007933787 0.11159262341905685 0.1092206277566842 0.11075451253973377 C 0.10847431007933787 0.11159262341905685 0.10394414210882194 0.1165019727899044 0.10435002562019596 0.11605986046296819" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10435002562019596 0.11605986046296819 C 0.1040411682735967 0.11624094198397525 0.09986456865932182 0.118537725452391 0.10064373746100481 0.11823283871505286 C 0.09986456865932182 0.118537725452391 0.09405937708983254 0.1197185013110259 0.09500000000000001 0.1197185013110259 C 0.09405937708983254 0.1197185013110259 0.08857709373731215 0.11792795197771472 0.08935626253899515 0.11823283871505286 C 0.08857709373731215 0.11792795197771472 0.08534111703320474 0.11587877894196114 0.085649974379804 0.11605986046296819" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.085649974379804 0.11605986046296819 C 0.08524409086842998 0.11561774813603198 0.08003305456596939 0.1099164016604107 0.08077937224331572 0.11075451253973377 C 0.08003305456596939 0.1099164016604107 0.0763537280856758 0.10560653135870436 0.0766941622516481 0.10600252991109124" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0766941622516481 0.10600252991109124 C 0.07619736787009944 0.10432695834074618 0.07058963174502761 0.08344039530660372 0.07073262967306422 0.08589567106695048 C 0.07058963174502761 0.08344039530660372 0.07533198356872088 0.07575951659692841 0.07497818711520883 0.07653922078693011" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33734345282867056,0.22296548292119495) rotate(0) scale(1,1) translate(-0.027392108961499424,-0.025875389182202276)"><path d="M 0.040599321041707895 0.0245780556502559 C 0.040296960306036134 0.024662540950586738 0.03633639143946436 0.025699597709954475 0.0369709922136468 0.025591879254225954 C 0.03633639143946436 0.025699597709954475 0.03265187171300797 0.025893910274395814 0.03298411175151865 0.025870677118998132" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03298411175151865 0.025870677118998132 C 0.03251811151901705 0.025918803804302754 0.026460108496496222 0.026448197342653603 0.027392108961499427 0.026448197342653603 C 0.026460108496496222 0.026448197342653603 0.021334105938978606 0.025822550433693515 0.021800106171480208 0.025870677118998136" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.021800106171480208 0.025870677118998136 C 0.02146786613296953 0.025847443963600454 0.017178624935169622 0.025484160798497437 0.017813225709352058 0.025591879254225958 C 0.017178624935169622 0.025484160798497437 0.013882536145619236 0.024493570349925064 0.014184896881290992 0.024578055650255903" fill="none" stroke="none" stroke-width="0"/>
</g><g id="筋肉">
<g transform="translate(0.3373434528286707,0.2396501915051789) rotate(0) scale(1,1) translate(-0.006218922926089482,-0.0055825370047060605)"><path d="M 0.011635866959872709 0.006412440049660989 C 0.011547301617983058 0.006473728373830545 0.010322185762485938 0.007298819402576552 0.010573082857196896 0.007147899939695668 C 0.010322185762485938 0.007298819402576552 0.008462770070519909 0.008313104742942924 0.008625101823341216 0.008223473604231597" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008625101823341216 0.008223473604231597 C 0.008424586915236905 0.008362488290442279 0.00581789310988086 0.00988572381305985 0.006218922926089482 0.009891649838759772 C 0.00581789310988086 0.00988572381305985 0.00361222912073344 0.008007420583921922 0.003812744028837751 0.008152361295832525" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003812744028837751 0.008152361295832525 C 0.0036504122760164445 0.008056804131421276 0.0016138659002711158 0.0068429038086167985 0.0018647629949820734 0.0070056753228975276 C 0.0016138659002711158 0.0068429038086167985 0.0007134135504166093 0.006131888774594301 0.0008019788923062604 0.0061991031244637805" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3307990893325167,0.22749560542703284) rotate(0) scale(1,1) translate(-0.03649433879459807,-0.02487077539596666)"><path d="M 0.036165054023246546 0.03508686541412226 C 0.035959282876937566 0.03486036481266298 0.033325338635225556 0.03191745186581592 0.03369580026753882 0.03236885819661096 C 0.033325338635225556 0.03191745186581592 0.031554823949483085 0.029445083715246057 0.03171951443548737 0.02966998944458182" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03171951443548737 0.02966998944458182 C 0.03158356629046793 0.02925925220145705 0.03009285341112644 0.024144735030492727 0.03008813669525401 0.02474114252708456 C 0.03009285341112644 0.024144735030492727 0.03191677988684844 0.022327429232012738 0.031776115025956564 0.0225130994854798" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031776115025956564 0.0225130994854798 C 0.03231427347502231 0.022522842867838073 0.038980871018160834 0.022663308299778688 0.03823401641474555 0.02263002007377906 C 0.038980871018160834 0.022663308299778688 0.04094706642128947 0.022936103041116672 0.04073837026693994 0.022912558197475317" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04073837026693994 0.022912558197475317 C 0.04084033919905746 0.023074152382916775 0.04206848872237339 0.025512366831609398 0.041961997452350186 0.02485168842277282 C 0.04206848872237339 0.025512366831609398 0.04202078784512406 0.03133978332690937 0.042016265507218375 0.03084069910351425" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.042016265507218375 0.03084069910351425 C 0.04179160959219266 0.031217576881443884 0.03883279356991218 0.03571707963122054 0.03932039452690983 0.03536323243866987 C 0.03883279356991218 0.03571707963122054 0.035902108981274605 0.03506383482874329 0.036165054023246546 0.03508686541412226" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3438878163248254,0.22749560542703284) rotate(0) scale(1,1) translate(-0.03649433879459807,-0.02487077539596666)"><path d="M 0.03682362356594955 0.03508686541412226 C 0.03656067852397761 0.03510989599950123 0.03318068210528865 0.035009385246119205 0.033668283062286294 0.03536323243866987 C 0.03318068210528865 0.035009385246119205 0.03074775616695209 0.030463821325584613 0.030972412081977797 0.03084069910351425" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030972412081977797 0.03084069910351425 C 0.03097693441988348 0.03034161488011913 0.031133171406869168 0.024191010013936243 0.031026680136845966 0.02485168842277282 C 0.031133171406869168 0.024191010013936243 0.03235227625437376 0.02275096401203386 0.032250307322256234 0.022912558197475317" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.032250307322256234 0.022912558197475317 C 0.03245900347660577 0.022889013353833962 0.035501515777865915 0.022596731847779432 0.034754661174450634 0.02263002007377906 C 0.035501515777865915 0.022596731847779432 0.04175072101230537 0.022503356103121527 0.04121256256323962 0.0225130994854798" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04121256256323962 0.0225130994854798 C 0.0413532274241315 0.022698769738946863 0.04290525760981457 0.025337550023676395 0.042900540893942136 0.02474114252708456 C 0.04290525760981457 0.025337550023676395 0.041133215008689335 0.03008072668770659 0.04126916315370878 0.02966998944458182" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04126916315370878 0.02966998944458182 C 0.04110447266770449 0.029894895173917583 0.03892241568934408 0.032820264527405996 0.039292877321657343 0.03236885819661096 C 0.03892241568934408 0.032820264527405996 0.036617852419640565 0.035313366015581535 0.03682362356594955 0.03508686541412226" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31523295849378363,0.2199015479689772) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.012507841991558502 0.01624121429250156 C 0.012134561207089313 0.01572718161557364 0.009648516343642595 0.012047225362254827 0.01026815728474336 0.013157018230934042 C 0.009648516343642595 0.012047225362254827 0.008543636188322327 0.00898669688867497 0.008789996344953904 0.009582457080426265" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35945394716355766,0.2199015479689772) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.0041660930843990815 0.009582457080426265 C 0.003919732927767502 0.010178217272177562 0.002068291203508833 0.014266811099613258 0.0026879321446096043 0.013157018230934042 C 0.002068291203508833 0.014266811099613258 7.49666533252628E-05 0.016755246969429483 0.0004482474377944544 0.01624121429250156" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3170504375541242,0.24262049422845777) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.008464168310773257 0.01697814294823012 C 0.008263182318153758 0.016653289526027622 0.0057099118173709815 0.012390406722984392 0.006052336399339262 0.013079901881800136 C 0.0057099118173709815 0.012390406722984392 0.004213634737805107 0.00833955930582795 0.004355073327153888 0.008704201042441195" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35763646810321725,0.24262049422845777) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.0086010161021991 0.008704201042441195 C 0.008459577512850322 0.00906884277905444 0.006561328448045495 0.01376939704061588 0.006903753030013772 0.013079901881800136 C 0.006561328448045495 0.01376939704061588 0.004290935125960267 0.01730299637043262 0.004491921118579767 0.01697814294823012" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.33734345282867056,0.22937107089268494) rotate(0) scale(1,1) translate(-0.017697491909778828,-0.017697491909778828)"><path d="M 0.015936232638433596 0.017697491909778835 C 0.015979221046529372 0.01759370871192918 0.01659886514152837 0.016305321929637507 0.016452093535582933 0.016452093535582944 C 0.01659886514152837 0.016305321929637507 0.017905058305478137 0.015936232638433603 0.01769749190977882 0.015936232638433603 C 0.017905058305478137 0.015936232638433603 0.01908966188992015 0.016598865141528377 0.018942890283974712 0.01645209353558294 C 0.01908966188992015 0.016598865141528377 0.019501739589219837 0.017801275107628484 0.019458751181124057 0.017697491909778828" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019458751181124057 0.017697491909778828 C 0.01937215593361625 0.01791590980336726 0.018272836605084934 0.020851233202567876 0.01841960821103037 0.020318506632839996 C 0.018272836605084934 0.020851233202567876 0.017637315551341202 0.02440451942265283 0.01769749190977883 0.02409021074651338" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01769749190977883 0.02409021074651338 C 0.017637315551341202 0.02377590207037393 0.016828604002581845 0.019785780063112116 0.01697537560852728 0.020318506632839996 C 0.016828604002581845 0.019785780063112116 0.015849637390925788 0.017479074016190404 0.015936232638433596 0.017697491909778835" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33734345282867056,0.22937107089268494) rotate(0) scale(1,1) translate(-0.35878523175949983,-0.35878523175950006)"><path d="M 0.35913273752617225 0.35767019309603804 C 0.35917959387131915 0.3577056853352607 0.3597597675443392 0.3581890198553321 0.3596950136679348 0.35809609996671027 C 0.3597597675443392 0.3581890198553321 0.3599097840430249 0.35890008705829834 0.3599097840430249 0.35878523175950006 C 0.3599097840430249 0.35890008705829834 0.35963025979153046 0.3595672834409118 0.3596950136679348 0.35947436355229 C 0.35963025979153046 0.3595672834409118 0.3590279635532466 0.35993576266218474 0.35913273752617225 0.3599002704229621 C 0.3590279635532466 0.35993576266218474 0.35833295201990184 0.3598647781837394 0.35843772599282747 0.3599002704229621 C 0.35833295201990184 0.3598647781837394 0.3578106959746606 0.3593814436636682 0.35787544985106495 0.35947436355229 C 0.3578106959746606 0.3593814436636682 0.35766067947597485 0.35867037646070177 0.35766067947597485 0.35878523175950006 C 0.35766067947597485 0.35867037646070177 0.3579402037274693 0.35800318007808846 0.35787544985106495 0.35809609996671027 C 0.3579402037274693 0.35800318007808846 0.35848458233797437 0.35763470085681537 0.35843772599282747 0.35767019309603804" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="虫性">
<g transform="translate(0.33734345282867073,0.24650229307683266) rotate(0) scale(1,1) translate(-0.019192864762988458,-0.012340763191334692)"><path d="M -0.007528776208798203 -0.006985080963241022 C -0.0069533344564939766 -0.006650018170822622 0.00020720433038456097 -0.002383306615305489 -0.0006234751811474923 -0.0029643274542202258 C 0.00020720433038456097 -0.002383306615305489 0.002694615688814264 0.0002331271502321605 0.0024393779295864364 -1.283089626417694E-05" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0024393779295864364 -1.283089626417694E-05 C 0.0026844766920001294 0.0005871433869293975 0.0058707606033781366 0.008386809068445866 0.005380563078550751 0.007186860502058716 C 0.0058707606033781366 0.008386809068445866 0.00856684698992876 0.014986526183575183 0.008321748227515066 0.014386551900381609" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008321748227515066 0.014386551900381609 C 0.009227674605471184 0.015067132708468644 0.021004717518900717 0.022553521597426022 0.019192864762988482 0.022553521597426022 C 0.021004717518900717 0.022553521597426022 0.030969907676418013 0.013705971092294574 0.030063981298461894 0.014386551900381609" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.030063981298461894 0.014386551900381609 C 0.030309080060875584 0.013786577617188035 0.03349536397225355 0.005986911935671566 0.03300516644742617 0.0071868605020587156 C 0.03349536397225355 0.005986911935671566 0.036191450358804125 -0.0006128051794577513 0.03594635159639044 -1.283089626417694E-05" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03594635159639044 -1.283089626417694E-05 C 0.03620158935561826 -0.0002587889427605144 0.039839884218656405 -0.003545348293134963 0.03900920470712435 -0.0029643274542202258 C 0.039839884218656405 -0.003545348293134963 0.046489947487079325 -0.007320143755659423 0.045914505734775096 -0.006985080963241024" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.045914505734775096 -0.006985080963241024 C 0.04638824937548946 -0.00608118337297644 0.04963069195800906 0.0005154594937345817 0.04875696757906126 -0.001561695421653522 C 0.04963069195800906 0.0005154594937345817 0.051556832746695314 0.006651105854211118 0.05115685200846188 0.005477848529087598" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05115685200846188 0.005477848529087598 C 0.05036487872148271 0.005860591073121067 0.040388531831311136 0.011077819419466122 0.04165317256471181 0.010070759057489236 C 0.040388531831311136 0.011077819419466122 0.03550849576123231 0.01818689069075365 0.03598116320765381 0.017562572872810232" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03598116320765381 0.017562572872810232 C 0.03537429204008974 0.01819673287990378 0.02729968432649622 0.026575564400471395 0.028698709196884997 0.025172492957932783 C 0.02729968432649622 0.026575564400471395 0.018711679731602524 0.035380061714557494 0.01919286476298849 0.03439943018327358 C 0.018711679731602524 0.035380061714557494 0.02323545749169218 0.03715179142917864 0.022924488820253434 0.03694007133333979" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022924488820253434 0.03694007133333979 C 0.022302551477375948 0.03724421201306835 0.019192864762988506 0.03876491541171114 0.019192864762988506 0.03876491541171114 C 0.019192864762988506 0.03876491541171114 0.02354642616313092 0.03663593065361123 0.022924488820253434 0.03694007133333979" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022924488820253434 0.03694007133333979 C 0.023004663490714533 0.03731344878935013 0.024209037304605205 0.04225404786003554 0.023886584865786622 0.04142060080546387 C 0.024209037304605205 0.04225404786003554 0.027036195854433922 0.04740150558676117 0.026793918086076438 0.04694143598819984" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.026793918086076438 0.04694143598819984 C 0.026437575535258256 0.04674431566612696 0.02188438636600092 0.044024912926753056 0.02251780747625825 0.04457599212332534 C 0.02188438636600092 0.044024912926753056 0.01891578620354934 0.03997452675483308 0.01919286476298849 0.040328485629332486" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01919286476298849 0.040328485629332486 C 0.01891578620354934 0.04068244450383189 0.015234500939461378 0.04512707131989762 0.015867922049718708 0.04457599212332534 C 0.015234500939461378 0.04512707131989762 0.01123546888908235 0.047138556310272715 0.011591811439900531 0.04694143598819984" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.011591811439900531 0.04694143598819984 C 0.011834089208258016 0.046481366389638505 0.014821597099008928 0.040587153750892196 0.014499144660190342 0.041420600805463864 C 0.014821597099008928 0.040587153750892196 0.015541415376184666 0.03656669387732945 0.015461240705723564 0.03694007133333979" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015461240705723564 0.03694007133333979 C 0.016083178048601054 0.03724421201306835 0.019192864762988506 0.03876491541171114 0.019192864762988506 0.03876491541171114 C 0.019192864762988506 0.03876491541171114 0.014839303362846074 0.03663593065361123 0.015461240705723564 0.03694007133333979" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015461240705723564 0.03694007133333979 C 0.015772209377162307 0.03672835123750094 0.018711679731602524 0.03341879865198966 0.01919286476298849 0.03439943018327358 C 0.018711679731602524 0.03341879865198966 0.008287995458703224 0.02376942151539417 0.009687020329091998 0.025172492957932783 C 0.008287995458703224 0.02376942151539417 0.0017976951507591276 0.016928412865716686 0.0024045663183231945 0.017562572872810232" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0024045663183231945 0.017562572872810232 C 0.0019318988719016948 0.016938255054866815 -0.004532083772135478 0.009063698695512351 -0.0032674430387348015 0.010070759057489236 C -0.004532083772135478 0.009063698695512351 -0.0135630957694641 0.005095105985054135 -0.012771122482484925 0.005477848529087605" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.012771122482484925 0.005477848529087605 C -0.012371141744251486 0.004304591203964085 -0.00949751367413651 -0.0036388503370416198 -0.010371238053084295 -0.001561695421653516 C -0.00949751367413651 -0.0036388503370416198 -0.007055032568083862 -0.007888978553505602 -0.00752877620879821 -0.0069850809632410185" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.2396501915051789) rotate(0) scale(1,1) translate(-0.01919286476298845,-0.01919286476298845)"><path d="M -0.0012942131163592235 -0.0029681008064721204 C -0.0010279640523828165 -0.002713005399228742 0.0026285967418071456 0.0005651698874855751 0.0019007756513576592 9.30440804484187E-05 C 0.0026285967418071456 0.0005651698874855751 0.007901211995507695 0.0029144392777675342 0.007439639969034615 0.0026974088779737563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007439639969034615 0.0026974088779737563 C 0.007880991140506636 0.003355580639162025 0.01333214595037634 0.011816343394853995 0.012735854026698868 0.010595470012232981 C 0.01333214595037634 0.011816343394853995 0.014750083805369739 0.017910591090858664 0.014595143053164287 0.01734788946942592" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014595143053164287 0.01734788946942592 C 0.014978286528982969 0.01759353738131104 0.019959151714625825 0.020295664412047387 0.01919286476298846 0.020295664412047387 C 0.019959151714625825 0.020295664412047387 0.024173729948631317 0.0171022415575408 0.023790586472812635 0.01734788946942592" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023790586472812635 0.01734788946942592 C 0.023945527225018085 0.016785187847993176 0.02624616742295549 0.009374596629611967 0.02564987549927802 0.010595470012232981 C 0.02624616742295549 0.009374596629611967 0.0313874407284143 0.0020392371167854877 0.030946089556942273 0.0026974088779737563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030946089556942273 0.0026974088779737563 C 0.031407661583415354 0.002480378478179978 0.03721277496506874 -0.0003790817265887387 0.036484953874619246 9.304408044841784E-05 C 0.03721277496506874 -0.0003790817265887387 0.03994619170631259 -0.0032231962137155004 0.03967994264233618 -0.002968100806472122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03967994264233618 -0.002968100806472122 C 0.040254165652316515 -0.0022661918785622025 0.04416437455095801 0.002857889925410492 0.04312528070221818 0.0012433527609873951 C 0.04416437455095801 0.002857889925410492 0.046379376573534616 0.007631750416579638 0.045914505734775124 0.00671912218006646" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.045914505734775124 0.00671912218006646 C 0.045339063982470895 0.007054184972484862 0.038178525195592325 0.011320896528002024 0.03900920470712438 0.010739875689087283 C 0.038178525195592325 0.011320896528002024 0.035691113837162634 0.013937330293539706 0.03594635159639046 0.013691372247043365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03594635159639046 0.013691372247043365 C 0.03570125283397677 0.01429134653023694 0.03251496892259881 0.022091012211753396 0.03300516644742619 0.020891063645366248 C 0.03251496892259881 0.022091012211753396 0.029818882536048225 0.0286907293268827 0.030063981298461915 0.028090755043689127" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030063981298461915 0.028090755043689127 C 0.029158054920505796 0.028771335851776162 0.017381012007076268 0.03625772474073354 0.019192864762988503 0.03625772474073354 C 0.017381012007076268 0.03625772474073354 0.007415821849558969 0.027410174235602092 0.008321748227515087 0.028090755043689127" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008321748227515087 0.028090755043689127 C 0.008076649465101395 0.027490780760495555 0.004890365553723386 0.0196911150789791 0.005380563078550772 0.020891063645366248 C 0.004890365553723386 0.0196911150789791 0.0021942791671727643 0.013091397963849791 0.0024393779295864572 0.013691372247043365" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0024393779295864572 0.013691372247043365 C 0.0021841401703586298 0.013445414200547026 -0.0014541546926795258 0.010158854850172545 -0.0006234751811474723 0.010739875689087287 C -0.0014541546926795258 0.010158854850172545 -0.008104217961102412 0.006384059387648066 -0.007528776208798185 0.006719122180066467" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.007528776208798185 0.006719122180066467 C -0.007063905370038696 0.005806493943553289 -0.003700457327501424 -0.00037118440343570226 -0.00473955117624125 0.0012433527609873951 C -0.003700457327501424 -0.00037118440343570226 -0.0007199901063788939 -0.0036700097343820358 -0.0012942131163592304 -0.002968100806472117" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="淫タトゥ">
<g id="渦">
<g transform="translate(0.3373434528286707,0.2396501915051789) rotate(0) scale(1,1) translate(-0.004044276755330287,-0.0037120127838791922)"><path d="M -0.019744604678764894 -0.013673918693075795 C -0.01966355261453635 -0.013793498696662701 -0.018596969577591126 -0.015362957186732591 -0.018771979908022363 -0.015108878736118674 C -0.018596969577591126 -0.015362957186732591 -0.01755052244738735 -0.016857358547469822 -0.017644480713590042 -0.01672286010044281" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.017644480713590042 -0.01672286010044281 C -0.017627801238837393 -0.01661706568127126 -0.017348713565878755 -0.015247766450942092 -0.01744432701655827 -0.015453327070384203 C -0.017348713565878755 -0.015247766450942092 -0.016251475870433144 -0.014029819802277067 -0.016497119305435872 -0.014256132667137475 C -0.016251475870433144 -0.014029819802277067 -0.014177552405097991 -0.01244136618019699 -0.014496605796525527 -0.012737572692059308 C -0.014177552405097991 -0.01244136618019699 -0.012423989422696888 -0.010266727292717687 -0.012668478608305445 -0.01070165452478966 C -0.012423989422696888 -0.010266727292717687 -0.01150894324866851 -0.006954551128319891 -0.011562735569222838 -0.007518445907195645 C -0.01150894324866851 -0.006954551128319891 -0.012250976090290182 -0.00344368319171716 -0.012022970761653502 -0.003934917178280608 C -0.012250976090290182 -0.00344368319171716 -0.014711562504137323 -0.0014272467953677598 -0.014298799512863001 -0.0016236380684342723 C -0.014711562504137323 -0.0014272467953677598 -0.01734814829255564 -0.0017327872981049428 -0.016976126656945374 -0.0015782219014824587 C -0.01734814829255564 -0.0017327872981049428 -0.018925369304887637 -0.0038507304420212457 -0.018763059140186174 -0.003478422827904083 C -0.018925369304887637 -0.0038507304420212457 -0.018851697816301218 -0.0063792103676424145 -0.018923848633362918 -0.006045913270888411 C -0.018851697816301218 -0.0063792103676424145 -0.01767892612017938 -0.007592599331890997 -0.017897249335445793 -0.00747798798895213 C -0.01767892612017938 -0.007592599331890997 -0.01610113300608227 -0.007320145563329904 -0.016303970050165973 -0.00742124938615481 C -0.01610113300608227 -0.007320145563329904 -0.015406602804658727 -0.006053315215620133 -0.01546320480644138 -0.006264742115053256 C -0.015406602804658727 -0.006053315215620133 -0.015697423669270037 -0.004688224802283802 -0.015624746028774138 -0.0048841265929573325 C -0.015697423669270037 -0.004688224802283802 -0.016394552364360333 -0.0038330701298053592 -0.016335336492392164 -0.003913920626970896" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.016335336492392164 -0.003913920626970896 C -0.016310569874157688 -0.00399488175170818 -0.016017940099833924 -0.0050673439743698975 -0.016038137073578443 -0.0048854541238182985 C -0.016017940099833924 -0.0050673439743698975 -0.01617834687210438 -0.006256107951100924 -0.016092972807457917 -0.006096598833590078 C -0.01617834687210438 -0.006256107951100924 -0.017224778844138186 -0.006806643181243893 -0.017062625849336002 -0.0067995635339484556 C -0.017224778844138186 -0.006806643181243893 -0.018125180255983402 -0.005961503204576802 -0.018038808745084105 -0.006181554601135333 C -0.018125180255983402 -0.005961503204576802 -0.018002350728338105 -0.0038585762635777072 -0.018099083980127547 -0.004158946775246074 C -0.018002350728338105 -0.0038585762635777072 -0.01661173214232693 -0.00244550956908646 -0.016878009723610813 -0.002577108461114928 C -0.01661173214232693 -0.00244550956908646 -0.014617734887005757 -0.0027230404566812062 -0.014903753004720926 -0.002579760070904458 C -0.014617734887005757 -0.0027230404566812062 -0.013310313277549111 -0.0046548010973110595 -0.013445792311028791 -0.004296473090435909 C -0.013310313277549111 -0.0046548010973110595 -0.013326857479616223 -0.0072743503016394545 -0.01327800460296477 -0.006879696153406267 C -0.013326857479616223 -0.0072743503016394545 -0.014222992822206317 -0.009355475847110061 -0.014032026830846233 -0.009032322869234157 C -0.014222992822206317 -0.009355475847110061 -0.01586364445720277 -0.010998036519114634 -0.015569596499285781 -0.010757531887917119 C -0.01586364445720277 -0.010998036519114634 -0.017847151053418466 -0.012096809624393568 -0.01756060232585009 -0.011918378443604345 C -0.017847151053418466 -0.012096809624393568 -0.019190181426182527 -0.013045001078177097 -0.019008181230106294 -0.01289870605738781 C -0.019190181426182527 -0.013045001078177097 -0.019805973299486444 -0.013738519746049794 -0.019744604678764894 -0.013673918693075795" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.2396501915051789) rotate(0) scale(1,1) translate(-0.004044276755330287,-0.0037120127838791922)"><path d="M 0.027833158189425333 -0.013673918693075795 C 0.027771789568703797 -0.013609317640101795 0.026914734544690677 -0.012752411036598521 0.027096734740766903 -0.01289870605738781 C 0.026914734544690677 -0.012752411036598521 0.025362607108942226 -0.011739947262815121 0.025649155836510618 -0.011918378443604345 C 0.025362607108942226 -0.011739947262815121 0.023364102052029212 -0.010517027256719604 0.0236581500099462 -0.010757531887917119 C 0.023364102052029212 -0.010517027256719604 0.021929614350146693 -0.008709169891358254 0.022120580341506768 -0.009032322869234157 C 0.021929614350146693 -0.008709169891358254 0.02131770523697385 -0.00648504200517308 0.02136655811362531 -0.006879696153406267 C 0.02131770523697385 -0.00648504200517308 0.0216698248551689 -0.003938145083560759 0.021534345821689227 -0.004296473090435909 C 0.0216698248551689 -0.003938145083560759 0.023278324633096592 -0.00243647968512771 0.022992306515381422 -0.002579760070904458 C 0.023278324633096592 -0.00243647968512771 0.025232840815555158 -0.0027087073531433963 0.024966563234271266 -0.002577108461114928 C 0.025232840815555158 -0.0027087073531433963 0.026284370742577556 -0.004459317286914441 0.026187637490788118 -0.004158946775246074 C 0.026284370742577556 -0.004459317286914441 0.026040990744845227 -0.0064016059976938645 0.026127362255744524 -0.006181554601135333 C 0.026040990744845227 -0.0064016059976938645 0.024989026365194383 -0.006792483886653018 0.025151179359996556 -0.0067995635339484556 C 0.024989026365194383 -0.006792483886653018 0.024096152253471965 -0.005937089716079232 0.02418152631811843 -0.006096598833590078 C 0.024096152253471965 -0.005937089716079232 0.024146887557983516 -0.0047035642732666996 0.024126690584238997 -0.0048854541238182985 C 0.024146887557983516 -0.0047035642732666996 0.024448656621287146 -0.0038329595022336123 0.024423890003052673 -0.003913920626970896" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.024423890003052673 -0.003913920626970896 C 0.024364674131084507 -0.003994771124136432 0.023640621898938785 -0.005080028383630863 0.023713299539434685 -0.0048841265929573325 C 0.023640621898938785 -0.005080028383630863 0.023608360318884525 -0.0064761690144863795 0.02355175831710188 -0.006264742115053256 C 0.023608360318884525 -0.0064761690144863795 0.02459536060491015 -0.007522353208979716 0.02439252356082644 -0.00742124938615481 C 0.02459536060491015 -0.007522353208979716 0.026204126061372828 -0.007363376646013264 0.02598580284610641 -0.00747798798895213 C 0.026204126061372828 -0.007363376646013264 0.02708455296108514 -0.005712616174134407 0.02701240214402345 -0.006045913270888411 C 0.02708455296108514 -0.005712616174134407 0.026689302486145223 -0.0031061152137869205 0.02685161265084668 -0.003478422827904083 C 0.026689302486145223 -0.0031061152137869205 0.02469265853199572 -0.0014236565048599745 0.02506468016760599 -0.0015782219014824587 C 0.02469265853199572 -0.0014236565048599745 0.021974590032249126 -0.0018200293415007848 0.02238735302352346 -0.0016236380684342723 C 0.021974590032249126 -0.0018200293415007848 0.01988351894367733 -0.004426151164844056 0.020111524272313996 -0.003934917178280608 C 0.01988351894367733 -0.004426151164844056 0.01970508140043779 -0.0080823406860714 0.01965128907988345 -0.007518445907195645 C 0.01970508140043779 -0.0080823406860714 0.02100152130457461 -0.011136581756861632 0.020757032118966068 -0.01070165452478966 C 0.02100152130457461 -0.011136581756861632 0.022904212698613497 -0.013033779203921627 0.022585159307185965 -0.012737572692059308 C 0.022904212698613497 -0.013033779203921627 0.024831316251099207 -0.014482445531997883 0.02458567281609647 -0.014256132667137475 C 0.024831316251099207 -0.014482445531997883 0.02562849397789831 -0.015658887689826314 0.025532880527218804 -0.015453327070384203 C 0.02562849397789831 -0.015658887689826314 0.025749713699003196 -0.01682865451961436 0.02573303422425055 -0.01672286010044281" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02573303422425055 -0.01672286010044281 C 0.025826992490453244 -0.016588361653415797 0.027035543749114117 -0.014854800285504757 0.026860533418682886 -0.015108878736118674 C 0.027035543749114117 -0.014854800285504757 0.02791421025365387 -0.013554338689488889 0.027833158189425333 -0.013673918693075795" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.2396501915051789) rotate(0) scale(1,1) translate(-0.0050491035115750255,-0.003435371609681657)"><path d="M -0.024197286858003302 -0.004074108431305946 C -0.024123677629255207 -0.004221321821162319 -0.023163498902366235 -0.006139308111172884 -0.023313976113026175 -0.005840669109582424 C -0.023163498902366235 -0.006139308111172884 -0.022314692348172193 -0.007809202062125557 -0.022391560330084038 -0.00765777645039147" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.022391560330084038 -0.00765777645039147 C -0.02238368247389957 -0.007558111733422409 -0.02222572400696182 -0.006272821244285192 -0.02229702605587045 -0.006461799846762745 C -0.02222572400696182 -0.006272821244285192 -0.021326945415071918 -0.005179955808341943 -0.021535935743180454 -0.00539003322066084 C -0.021326945415071918 -0.005179955808341943 -0.019495872353865677 -0.003644037226786985 -0.019789142118568005 -0.003940870898935978 C -0.019495872353865677 -0.003644037226786985 -0.017776849684177674 -0.0013866916247348396 -0.018016698566752514 -0.0018280291548729284 C -0.017776849684177674 -0.0013866916247348396 -0.016857163207115576 0.001919074241596843 -0.016910955527669906 0.0013551794627210886 C -0.016857163207115576 0.001919074241596843 -0.017599172410320208 0.005429992774167275 -0.017371190720100564 0.004938708191636122 C -0.017599172410320208 0.005429992774167275 -0.020059475163162938 0.007447036322129145 -0.01964673581030565 0.007250594453094927 C -0.020059475163162938 0.007447036322129145 -0.022696084589998295 0.007141445223424255 -0.02232406295438803 0.00729601062004674 C -0.022696084589998295 0.007141445223424255 -0.02427330560233029 0.0050235020795079514 -0.024110995437628825 0.005395809693625114 C -0.02427330560233029 0.0050235020795079514 -0.02419963411374387 0.002495022153886788 -0.02427178493080557 0.0028283192506407913 C -0.02419963411374387 0.002495022153886788 -0.023026862417622026 0.0012816331896382035 -0.023245185632888438 0.0013962445325770702 C -0.023026862417622026 0.0012816331896382035 -0.02144906930352493 0.0015540869581992984 -0.021651906347608628 0.0014529831353743922 C -0.02144906930352493 0.0015540869581992984 -0.02075453910210138 0.002820917305909068 -0.02081114110388403 0.002609490406475945 C -0.02075453910210138 0.002820917305909068 -0.02104535996671269 0.004186007719245398 -0.02097268232621679 0.003990105928571869 C -0.02104535996671269 0.004186007719245398 -0.02174248866180298 0.0050411623917238375 -0.021683272789834812 0.004960311894558302" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.021683272789834812 0.004960311894558302 C -0.021658506171600336 0.004879350769821019 -0.021365876397276575 0.0038068885471593036 -0.021386073371021094 0.003988778397710902 C -0.021365876397276575 0.0038068885471593036 -0.021526283169547036 0.002618124570428277 -0.021440909104900572 0.002777633687939123 C -0.021526283169547036 0.002618124570428277 -0.022572715141580837 0.0020675893402853085 -0.022410562146778657 0.0020746689875807463 C -0.022572715141580837 0.0020675893402853085 -0.023473116553426047 0.0029127293169524003 -0.023386745042526753 0.002692677920393869 C -0.023473116553426047 0.0029127293169524003 -0.02335028702578075 0.00501565625795149 -0.02344702027757019 0.0047152857462831235 C -0.02335028702578075 0.00501565625795149 -0.02195966843976958 0.006428722952442739 -0.022225946021053464 0.006297124060414271 C -0.02195966843976958 0.006428722952442739 -0.019965671184448405 0.006151192064847992 -0.020251689302163575 0.00629447245062474 C -0.019965671184448405 0.006151192064847992 -0.01865824957499176 0.00421943142421814 -0.01879372860847144 0.00457775943109329 C -0.01865824957499176 0.00421943142421814 -0.018674793777058878 0.0015998822198897476 -0.018625940900407423 0.001994536368122935 C -0.018674793777058878 0.0015998822198897476 -0.019560808726643123 -0.0004736530308264756 -0.019379963128288883 -0.00015809034770495524 C -0.019560808726643123 -0.0004736530308264756 -0.021044531519307585 -0.002011586628369687 -0.020796088080658286 -0.001792215829335309 C -0.021044531519307585 -0.002011586628369687 -0.022595700463688088 -0.002938228476393655 -0.022361284392080467 -0.0027905399361174933 C -0.022595700463688088 -0.002938228476393655 -0.023762081145443283 -0.003671442353914956 -0.023609080939949713 -0.0035644783126492514 C -0.023762081145443283 -0.003671442353914956 -0.0242463040178411 -0.00411657760786067 -0.024197286858003302 -0.004074108431305946" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.2396501915051789) rotate(0) scale(1,1) translate(-0.0050491035115750255,-0.003435371609681657)"><path d="M 0.034295493881153494 -0.004074108431305946 C 0.03424647672131568 -0.004031639254751221 0.03355428775760616 -0.003457514271383547 0.03370728796309974 -0.0035644783126492514 C 0.03355428775760616 -0.003457514271383547 0.03222507534362292 -0.0026428513958413314 0.032459491415230524 -0.0027905399361174933 C 0.03222507534362292 -0.0026428513958413314 0.03064585166515919 -0.0015728450303009308 0.030894295103808478 -0.001792215829335309 C 0.03064585166515919 -0.0015728450303009308 0.029297324553084814 0.00015747233541656507 0.029478170151439054 -0.00015809034770495524 C 0.029297324553084814 0.00015747233541656507 0.028675295046906135 0.002389190516356122 0.028724147923557597 0.001994536368122935 C 0.028675295046906135 0.002389190516356122 0.029027414665101187 0.004936087437968441 0.028891935631621513 0.00457775943109329 C 0.029027414665101187 0.004936087437968441 0.030635914443028878 0.006437752836401489 0.030349896325313708 0.00629447245062474 C 0.030635914443028878 0.006437752836401489 0.03259043062548744 0.006165525168385803 0.03232415304420355 0.006297124060414271 C 0.03259043062548744 0.006165525168385803 0.03364196055250984 0.004414915234614757 0.033545227300720404 0.0047152857462831235 C 0.03364196055250984 0.004414915234614757 0.03339858055477751 0.0024726265238353374 0.03348495206567681 0.002692677920393869 C 0.03339858055477751 0.0024726265238353374 0.032346616175126665 0.002081748634876184 0.03250876916992884 0.0020746689875807463 C 0.032346616175126665 0.002081748634876184 0.031453742063404254 0.002937142805449969 0.031539116128050715 0.002777633687939123 C 0.031453742063404254 0.002937142805449969 0.031504477367915805 0.0041706682482625 0.03148428039417128 0.003988778397710902 C 0.031504477367915805 0.0041706682482625 0.03180624643121943 0.005041273019295585 0.03178147981298496 0.004960311894558302" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03178147981298496 0.004960311894558302 C 0.03172226394101679 0.004879461397392766 0.03099821170887107 0.003794204137898339 0.03107088934936697 0.003990105928571869 C 0.03099821170887107 0.003794204137898339 0.03096595012881681 0.0023980635070428215 0.030909348127034164 0.002609490406475945 C 0.03096595012881681 0.0023980635070428215 0.03195295041484242 0.001351879312549486 0.031750113370758726 0.0014529831353743922 C 0.03195295041484242 0.001351879312549486 0.03356171587130489 0.0015108558755159368 0.03334339265603847 0.0013962445325770702 C 0.03356171587130489 0.0015108558755159368 0.034442142771017446 0.0031616163473947947 0.034369991953955736 0.0028283192506407913 C 0.034442142771017446 0.0031616163473947947 0.03404689229607749 0.005768117307742276 0.034209202460778965 0.005395809693625114 C 0.03404689229607749 0.005768117307742276 0.03205024834192779 0.007450576016669225 0.032422269977538054 0.00729601062004674 C 0.03205024834192779 0.007450576016669225 0.02933220348059847 0.007054152584060709 0.029744942833455745 0.007250594453094927 C 0.02933220348059847 0.007054152584060709 0.027241416053031098 0.0044474236091049685 0.027469397743250745 0.004938708191636122 C 0.027241416053031098 0.0044474236091049685 0.027062954871374296 0.0007912846838453344 0.027009162550819976 0.0013551794627210886 C 0.027062954871374296 0.0007912846838453344 0.028354754472477445 -0.002269366685011017 0.028114905589902595 -0.0018280291548729284 C 0.028354754472477445 -0.002269366685011017 0.030180618906420525 -0.00423770457108497 0.0298873491417182 -0.003940870898935978 C 0.030180618906420525 -0.00423770457108497 0.031843133094439 -0.005600110632979737 0.031634142766330475 -0.00539003322066084 C 0.031843133094439 -0.005600110632979737 0.03246653512792911 -0.006650778449240297 0.03239523307902048 -0.006461799846762745 C 0.03246653512792911 -0.006650778449240297 0.03249764520941852 -0.00775744116736053 0.032489767353234056 -0.00765777645039147" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.032489767353234056 -0.00765777645039147 C 0.0325666353351459 -0.007506350838657382 0.03356266034683617 -0.005542030107991963 0.03341218313617622 -0.005840669109582424 C 0.03356266034683617 -0.005542030107991963 0.0343691031099016 -0.003926895041449573 0.034295493881153494 -0.004074108431305946" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="ハート">
<g transform="translate(0.3373434528286707,0.2396501915051789) rotate(0) scale(1,1) translate(4.531817165381619E-05,-0.007618185234386916)"><path d="M -0.038838502516338136 0.0258633412100367 C -0.03876773274677165 0.02561020331898801 -0.03784518694490174 0.02241515728252946 -0.03798926528154029 0.022825686517452436 C -0.03784518694490174 0.02241515728252946 -0.03695203217821982 0.020647004462146245 -0.03710956247667559 0.020936990390960995 C -0.03695203217821982 0.020647004462146245 -0.0359283671765383 0.019083401477095238 -0.036098901700071066 0.019345855371675432 C -0.0359283671765383 0.019083401477095238 -0.03495932004853637 0.017558629623135175 -0.035063148194282405 0.01778754365599866 C -0.03495932004853637 0.017558629623135175 -0.03488339009862505 0.016496557356186086 -0.03485296395111862 0.016598886977313574 C -0.03488339009862505 0.016496557356186086 -0.03553767617634333 0.01660408008600107 -0.03542826196435953 0.016559588202468823 C -0.03553767617634333 0.01660408008600107 -0.036294525066936166 0.017282701198759087 -0.036165934494924265 0.01713278957970056 C -0.036294525066936166 0.017282701198759087 -0.03703846668963386 0.018460672468793675 -0.03697134882850236 0.01835852763117113" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03697134882850236 0.01835852763117113 C -0.03695514199852654 0.01831230370445657 -0.03674291651370622 0.017709041221935617 -0.036776866868792585 0.01780384051059644 C -0.03674291651370622 0.017709041221935617 -0.036546201042355425 0.01717236080529496 -0.03656394456746598 0.017220936167241227" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.03656394456746598 0.017220936167241227 C -0.03650215443927503 0.0171353954585205 -0.03567284887851235 0.016058185590707392 -0.0358224630291746 0.016194447662592527 C -0.03567284887851235 0.016058185590707392 -0.034603460083879635 0.015573476446680747 -0.034768574759519 0.015585791304619616 C -0.034603460083879635 0.015573476446680747 -0.03377916650364502 0.0162209813971074 -0.03384108692150225 0.016046669367326113 C -0.03377916650364502 0.0162209813971074 -0.03415425278134915 0.017982770233441456 -0.034025529745232284 0.017677535661995075 C -0.03415425278134915 0.017982770233441456 -0.03559350775276797 0.020019837424851816 -0.03538576335490462 0.019709484224682706 C -0.03559350775276797 0.020019837424851816 -0.03670655844919343 0.02171746389266633 -0.03651846251959248 0.021401774064024395 C -0.03670655844919343 0.02171746389266633 -0.037857507507169805 0.023998099538121626 -0.037642914510116025 0.023497762168385904 C -0.037857507507169805 0.023998099538121626 -0.03921446714874798 0.027731494195225304 -0.039093578484237834 0.027405822500853043" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.039093578484237834 0.027405822500853043 C -0.03908413504195711 0.027344363445365245 -0.03895900084621087 0.02653977372743143 -0.03898025717686918 0.026668313834999458 C -0.03895900084621087 0.02653977372743143 -0.03882668962796055 0.025796260157956472 -0.038838502516338136 0.0258633412100367" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.2396501915051789) rotate(0) scale(1,1) translate(4.531817165381619E-05,-0.007618185234386916)"><path d="M 0.0387478661730305 0.0258633412100367 C 0.0387596790614081 0.02593042226211693 0.03891087716422004 0.026796853942567485 0.038889620833561726 0.026668313834999458 C 0.03891087716422004 0.026796853942567485 0.039012385583210935 0.02746728155634084 0.039002942140930225 0.027405822500853043" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.039002942140930225 0.027405822500853043 C 0.038882053476420084 0.027080150806480782 0.037337685169754734 0.022997424798650183 0.037552278166808506 0.023497762168385904 C 0.037337685169754734 0.022997424798650183 0.03623973024668398 0.02108608423538246 0.03642782617628493 0.021401774064024395 C 0.03623973024668398 0.02108608423538246 0.03508738261373375 0.019399131024513596 0.035295127011597094 0.019709484224682706 C 0.03508738261373375 0.019399131024513596 0.03380617036580793 0.017372301090548693 0.03393489340192479 0.017677535661995075 C 0.03380617036580793 0.017372301090548693 0.03381237099605192 0.015872357337544826 0.0337504505781947 0.016046669367326113 C 0.03381237099605192 0.015872357337544826 0.03484305309185084 0.015598106162558485 0.03467793841621147 0.015585791304619616 C 0.03484305309185084 0.015598106162558485 0.035881440836529305 0.01633070973447766 0.03573182668586705 0.016194447662592527 C 0.035881440836529305 0.01633070973447766 0.036535098352349506 0.017306476875961953 0.03647330822415855 0.017220936167241227" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03647330822415855 0.017220936167241227 C 0.036491051749269095 0.017269511529187494 0.03672018088057148 0.017898639799257265 0.03668623052548513 0.01780384051059644 C 0.03672018088057148 0.017898639799257265 0.03689691931517063 0.018404751557885686 0.036880712485194825 0.01835852763117113" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036880712485194825 0.01835852763117113 C 0.03681359462406332 0.018256382793548583 0.03594670757960491 0.016982877960642035 0.03607529815161681 0.01713278957970056 C 0.03594670757960491 0.016982877960642035 0.03522821140906821 0.016515096318936575 0.03533762562105203 0.016559588202468823 C 0.03522821140906821 0.016515096318936575 0.03473190146030461 0.016701216598441062 0.03476232760781103 0.016598886977313574 C 0.03473190146030461 0.016701216598441062 0.03507633999672098 0.018016457688862147 0.03497251185097494 0.01778754365599866 C 0.03507633999672098 0.018016457688862147 0.03617879988029624 0.019608309266255626 0.03600826535676349 0.019345855371675432 C 0.03617879988029624 0.019608309266255626 0.03717645643182377 0.021226976319775746 0.03701892613336799 0.020936990390960995 C 0.03717645643182377 0.021226976319775746 0.03804270727487136 0.023236215752375413 0.037898628938232815 0.022825686517452436 C 0.03804270727487136 0.023236215752375413 0.03881863594259697 0.02611647910108539 0.0387478661730305 0.0258633412100367" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286707,0.2396501915051789) rotate(0) scale(1,1) translate(0.00011198358255654973,-0.007639437628074994)"><path d="M -0.03936621895427589 0.029346064977010426 C -0.03920882656030793 0.028976431639413446 -0.03718596154825017 0.024343679424121235 -0.037477510226660384 0.02491046492584669 C -0.03718596154825017 0.024343679424121235 -0.03552267248621507 0.022094012475775533 -0.03586763481335334 0.02254463895630496 C -0.03552267248621507 0.022094012475775533 -0.032997992747534524 0.019032809943087693 -0.03333796230100124 0.01950294715949357 C -0.032997992747534524 0.019032809943087693 -0.031614387561813076 0.016486139756622425 -0.031788000171752775 0.01690299235943444 C -0.031614387561813076 0.016486139756622425 -0.03128967594495156 0.01418109404885877 -0.031254610981724815 0.014500715925749379 C -0.03128967594495156 0.01418109404885877 -0.032447135052974245 0.012983100856128395 -0.032208779730473674 0.013067529836747126 C -0.032447135052974245 0.012983100856128395 -0.03443817652636911 0.013716468728019076 -0.034114874851731654 0.013487568158324595 C -0.03443817652636911 0.013716468728019076 -0.03625286024065574 0.01600823404931059 -0.03608839982612312 0.0158143366730809" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03608839982612312 0.0158143366730809 C -0.036003311095122156 0.015587337325983497 -0.03546943239706818 0.014180702744850004 -0.03557786744011731 0.014452340590496495 C -0.03546943239706818 0.014180702744850004 -0.03541444325578016 0.014139871100652866 -0.03543778956782832 0.014184509599201957" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.03543778956782832 0.014184509599201957 C -0.03530609260332544 0.014022681063099882 -0.033529671061398265 0.012029079788331143 -0.03385742599379377 0.01224256716597705 C -0.033529671061398265 0.012029079788331143 -0.031154712087728083 0.011706708801609912 -0.03150473037908223 0.011622661067451094 C -0.031154712087728083 0.011706708801609912 -0.029527920564821977 0.013665643478248097 -0.029657206497543966 0.013251139975882863 C -0.029527920564821977 0.013665643478248097 -0.03015586038201138 0.017174753811270902 -0.029953299186418373 0.016596703095833915 C -0.03015586038201138 0.017174753811270902 -0.03248940769429867 0.02072429898101657 -0.032087940844660066 0.020187748561126703 C -0.03248940769429867 0.02072429898101657 -0.035163118569864725 0.02349221086647931 -0.03477090138208166 0.023035308134512326 C -0.035163118569864725 0.02349221086647931 -0.037181104250693486 0.02631280095418724 -0.03679454709805685 0.02567058134473053 C -0.037181104250693486 0.02631280095418724 -0.03962750722335996 0.03116455695659806 -0.03940958721372126 0.030741943447992866" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03940958721372126 0.030741943447992866 C -0.03940900553702378 0.030687835589628128 -0.039398993071730996 0.029976325941700792 -0.039402607093351444 0.030092649147615995 C -0.039398993071730996 0.029976325941700792 -0.039363186609352924 0.02928384962945996 -0.03936621895427589 0.029346064977010426" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286707,0.2396501915051789) rotate(0) scale(1,1) translate(0.00011198358255654973,-0.007639437628074994)"><path d="M 0.03914225178916287 0.029346064977010426 C 0.03914528413408584 0.02940828032456089 0.03918225394985901 0.030208972353531198 0.039178639928238564 0.030092649147615995 C 0.03918225394985901 0.030208972353531198 0.039186201725305736 0.030796051306357604 0.03918562004860826 0.030741943447992866" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03918562004860826 0.030741943447992866 C 0.038967700038969565 0.03031932993938767 0.036184022780307246 0.02502836173527382 0.03657057993294388 0.02567058134473053 C 0.036184022780307246 0.02502836173527382 0.03415471702918558 0.02257840540254534 0.03454693421696864 0.023035308134512326 C 0.03415471702918558 0.02257840540254534 0.03146250682990859 0.019651198141236836 0.031863973679547186 0.020187748561126703 C 0.03146250682990859 0.019651198141236836 0.02952677082571244 0.016018652380396927 0.029729332021305455 0.016596703095833915 C 0.02952677082571244 0.016018652380396927 0.029562525265153017 0.012836636473517628 0.029433239332431027 0.013251139975882863 C 0.029562525265153017 0.012836636473517628 0.03163078150532348 0.011538613333292277 0.03128076321396933 0.011622661067451094 C 0.03163078150532348 0.011538613333292277 0.03396121376107636 0.012456054543622955 0.03363345882868085 0.01224256716597705 C 0.03396121376107636 0.012456054543622955 0.03534551936721834 0.014346338135304032 0.03521382240271546 0.014184509599201957" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03521382240271546 0.014184509599201957 C 0.035237168714763595 0.014229148097751047 0.035462335318053415 0.014723978436142985 0.0353539002750043 0.014452340590496495 C 0.035462335318053415 0.014723978436142985 0.035949521392011144 0.0160413360201783 0.035864432661010165 0.0158143366730809" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035864432661010165 0.0158143366730809 C 0.03569997224647754 0.015620439296851207 0.033567606011981284 0.013258667588630113 0.03389090768661873 0.013487568158324595 C 0.033567606011981284 0.013258667588630113 0.03174645724286022 0.013151958817365857 0.03198481256536079 0.013067529836747126 C 0.03174645724286022 0.013151958817365857 0.030995578853385164 0.014820337802639989 0.031030643816611914 0.014500715925749379 C 0.030995578853385164 0.014820337802639989 0.03173764561657949 0.017319844962246454 0.03156403300663979 0.01690299235943444 C 0.03173764561657949 0.017319844962246454 0.03345396468935502 0.01997308437589945 0.03311399513588831 0.01950294715949357 C 0.03345396468935502 0.01997308437589945 0.035988629975378605 0.02299526543683439 0.03564366764824034 0.02254463895630496 C 0.035988629975378605 0.02299526543683439 0.0375450917399577 0.025477250427572148 0.03725354306154749 0.02491046492584669 C 0.0375450917399577 0.025477250427572148 0.03929964418313082 0.029715698314607405 0.03914225178916287 0.029346064977010426" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="獣性">
<g transform="translate(0.31523295849378363,0.2199015479689772) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.010245222809575618 0.00881439430788761 C 0.010530324086113419 0.00918036107720165 0.014172913846905184 0.014021820971252381 0.013666438128029233 0.013205995539656084 C 0.014172913846905184 0.014021820971252381 0.01654430587842519 0.019054158149325442 0.016322931436087037 0.018604299487043185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.016322931436087037 0.018604299487043185 C 0.015889346508678657 0.018237741196326332 0.010413097635554569 0.013681017932926462 0.011119912307186484 0.014205599998440961 C 0.010413097635554569 0.013681017932926462 0.007567925632280513 0.01215129092607155 0.007841155376504049 0.012309314700869196" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007841155376504049 0.012309314700869196 C 0.007937400596861103 0.012167032508213247 0.00919643697354465 0.010310685022916006 0.008996098020788686 0.010601928388997805 C 0.00919643697354465 0.010310685022916006 0.010349316541974522 0.008665433134461761 0.010245222809575611 0.008814394307887611" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35945394716355766,0.2199015479689772) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.009135447137205932 0.008814394307887611 C 0.009239540869604842 0.00896335548131346 0.010584910878748808 0.010893171755079603 0.010384571925992847 0.010601928388997805 C 0.010584910878748808 0.010893171755079603 0.011635759790634517 0.012451596893525145 0.011539514570277465 0.012309314700869196" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011539514570277465 0.012309314700869196 C 0.011266284826053935 0.012467338475666842 0.007553942967963199 0.01473018206395546 0.008260757639595107 0.014205599998440961 C 0.007553942967963199 0.01473018206395546 0.0026241535832861964 0.018970857777760038 0.0030577385106945743 0.018604299487043185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0030577385106945743 0.018604299487043185 C 0.003279112953032718 0.018154440824760927 0.006220707537628249 0.012390170108059786 0.005714231818752302 0.013205995539656084 C 0.006220707537628249 0.012390170108059786 0.009420548413743735 0.008448427538573569 0.009135447137205932 0.00881439430788761" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋柄">
<g id="紋左">
<g transform="translate(0.31523295849378363,0.2199015479689772) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.014470911125705626 0.022261977066945226 C 0.014592117876056677 0.022034862278751947 0.016947573899928705 0.02254842965890027 0.016868944533004825 0.022316750424263777 C 0.016947573899928705 0.02254842965890027 0.015214627411517273 0.02503756343613992 0.015414463528792206 0.025042127882583132 C 0.015214627411517273 0.02503756343613992 0.014592117876056677 0.022034862278751947 0.014470911125705626 0.022261977066945226 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31523295849378363,0.2199015479689772) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.00756263829877302 0.023453180021648923 C 0.007469599349577409 0.023244157166969145 0.009315368420213641 0.020998185603871334 0.009094660919306875 0.0209940871547652 C 0.009315368420213641 0.020998185603871334 0.010083459757943052 0.02370728581649619 0.010211128309654207 0.02350236141092255 C 0.010083459757943052 0.02370728581649619 0.007469599349577409 0.023244157166969145 0.00756263829877302 0.023453180021648923 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31523295849378363,0.2199015479689772) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.011266199065352757 0.01670003666634686 C 0.011290332072898496 0.01646882328837134 0.01353629154087134 0.015160082273130083 0.013383945665104438 0.015065112569861662 C 0.01353629154087134 0.015160082273130083 0.012917870691242932 0.017975916780275016 0.013094349574555573 0.017839673105567916 C 0.012917870691242932 0.017975916780275016 0.011290332072898496 0.01646882328837134 0.011266199065352757 0.01670003666634686 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋右">
<g transform="translate(0.35945394716355766,0.2199015479689772) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.0074038663020621715 0.025042127882583132 C 0.0072040301847872395 0.025046692329026343 0.006028014664773479 0.022085071189627284 0.005949385297849595 0.022316750424263777 C 0.006028014664773479 0.022085071189627284 0.008468625455499826 0.022489091855138504 0.008347418705148778 0.022261977066945226 C 0.008468625455499826 0.022489091855138504 0.0072040301847872395 0.025046692329026343 0.0074038663020621715 0.025042127882583132 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35945394716355766,0.2199015479689772) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.012607201521200168 0.02350236141092255 C 0.012479532969489013 0.023297437005348906 0.013944376412454298 0.020989988705659064 0.01372366891154753 0.0209940871547652 C 0.013944376412454298 0.020989988705659064 0.015162652582885782 0.0236622028763287 0.015255691532081395 0.023453180021648923 C 0.015162652582885782 0.0236622028763287 0.012479532969489013 0.023297437005348906 0.012607201521200168 0.02350236141092255 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35945394716355766,0.2199015479689772) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.009723980256298823 0.017839673105567916 C 0.009547501372986185 0.017703429430860815 0.00958673004151687 0.01497014286659324 0.00943438416574997 0.015065112569861662 C 0.00958673004151687 0.01497014286659324 0.011576263773047357 0.01693125004432238 0.01155213076550162 0.01670003666634686 C 0.011576263773047357 0.01693125004432238 0.009547501372986185 0.017703429430860815 0.009723980256298823 0.017839673105567916 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="鱗">
<g id="左">
<g transform="translate(0.31523295849378363,0.2199015479689772) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08847074395269172 0.09582604171264732 C 0.08783646190414415 0.09575827132683572 0.08544436277201382 0.09377219682340651 0.0857766126347958 0.09431396181250275 C 0.08544436277201382 0.09377219682340651 0.08600658673377316 0.0910309875426019 0.0858127450504359 0.09149192179987742 C 0.08600658673377316 0.0910309875426019 0.08790558075656849 0.09079062587877218 0.08732734610149391 0.09062648775429862 C 0.08790558075656849 0.09079062587877218 0.09087906265624282 0.09333373143875304 0.09043862229103253 0.09280502679566592 C 0.09087906265624282 0.09333373143875304 0.09060488423088371 0.09523375176361824 0.09085086902317631 0.09485612489899557 C 0.09060488423088371 0.09523375176361824 0.08783646190414415 0.09575827132683572 0.08847074395269172 0.09582604171264732 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31523295849378363,0.2199015479689772) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08534867338581746 0.10118807252594901 C 0.08473895086040062 0.1011571414248335 0.08273980409836179 0.09964997762245334 0.08304749443801306 0.10016718308841886 C 0.08273980409836179 0.09964997762245334 0.08308713223272733 0.09656493501781865 0.08288715066860738 0.09705042879822488 C 0.08308713223272733 0.09656493501781865 0.08520102208291648 0.09641053168494645 0.08464734695097262 0.09628323284516897 C 0.08520102208291648 0.09641053168494645 0.08772629268545516 0.09858524439796651 0.08731655172415827 0.09806881951644475 C 0.08772629268545516 0.09858524439796651 0.0876792898490552 0.10080453852353106 0.08792527464134779 0.10041463189734304 C 0.0876792898490552 0.10080453852353106 0.08473895086040062 0.1011571414248335 0.08534867338581746 0.10118807252594901 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="右">
<g transform="translate(0.35945394716355766,0.2199015479689772) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08074328100600817 0.09485612489899557 C 0.08049729621371556 0.0944784980343729 0.08159596810336217 0.0922763221525788 0.08115552773815188 0.09280502679566592 C 0.08159596810336217 0.0922763221525788 0.08484503858276508 0.09046234962982505 0.08426680392769051 0.09062648775429862 C 0.08484503858276508 0.09046234962982505 0.0859752466620858 0.09195285605715293 0.08578140497874852 0.09149192179987742 C 0.0859752466620858 0.09195285605715293 0.08548528753160671 0.09485572680159898 0.08581753739438869 0.09431396181250275 C 0.08548528753160671 0.09485572680159898 0.08248912402794517 0.09589381209845892 0.08312340607649274 0.09582604171264732 C 0.08248912402794517 0.09589381209845892 0.08049729621371556 0.0944784980343729 0.08074328100600817 0.09485612489899557 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35945394716355766,0.2199015479689772) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08366887538783667 0.10041463189734304 C 0.08342289059554406 0.10002472527115501 0.08468733926632303 0.09755239463492299 0.08427759830502614 0.09806881951644475 C 0.08468733926632303 0.09755239463492299 0.08750047821015568 0.09615593400539149 0.08694680307821182 0.09628323284516897 C 0.08750047821015568 0.09615593400539149 0.08890698092469697 0.09753592257863111 0.08870699936057702 0.09705042879822488 C 0.08890698092469697 0.09753592257863111 0.08823896525152018 0.10068438855438439 0.08854665559117143 0.10016718308841886 C 0.08823896525152018 0.10068438855438439 0.08563575411795016 0.10121900362706453 0.086245476643367 0.10118807252594901 C 0.08563575411795016 0.10121900362706453 0.08342289059554406 0.10002472527115501 0.08366887538783667 0.10041463189734304 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.31523295849378363,0.2199015479689772) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.053906824017354645 0.0541732625434311 C 0.053694486626594776 0.05469902173585982 0.051114480432403735 0.06109019016053499 0.051358775328236225 0.06048237285257573 C 0.051114480432403735 0.06109019016053499 0.05094332776229213 0.06154912835447272 0.05097528526736475 0.06146707023894218" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05097528526736475 0.06146707023894218 C 0.05098569898208783 0.06154924353307151 0.05118496110765542 0.06306186142097828 0.05110024984404175 0.062453149768494115 C 0.05118496110765542 0.06306186142097828 0.052066117979619436 0.06929814842710688 0.05199182043072884 0.06877161006875206" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05199182043072884 0.06877161006875206 C 0.05186169756519464 0.06836109051295008 0.050279471442460436 0.06337416751263278 0.0504303460443184 0.06384537539912837 C 0.050279471442460436 0.06337416751263278 0.050160573472109594 0.06305642710011149 0.050181325208433346 0.06311711543080509" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.050181325208433346 0.06311711543080509 C 0.05014467181518547 0.06317764771589937 0.04946713590930471 0.06431355484510365 0.04974148448945883 0.06384350285193642 C 0.04946713590930471 0.06431355484510365 0.046651447059677706 0.06916725905688484 0.04688914224658395 0.06875773934881188" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04688914224658395 0.06875773934881188 C 0.04710147963734382 0.06823198015638315 0.049681485831534866 0.061840811731707926 0.049437190935702376 0.06244862903966719 C 0.049681485831534866 0.061840811731707926 0.04985263850164647 0.06138187353777018 0.04982068099657385 0.06146393165330072" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04982068099657385 0.06146393165330072 C 0.04981026728185077 0.06138175835917139 0.04961100515628319 0.05986914047126464 0.04969571641989686 0.06047785212374879 C 0.04961100515628319 0.05986914047126464 0.048729848284319165 0.0536328534651361 0.04880414583320976 0.05415939182349092" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04880414583320976 0.05415939182349092 C 0.04893426869874396 0.05456991137929289 0.05051649482147817 0.059556834379610124 0.05036562021962022 0.059085626493114544 C 0.05051649482147817 0.059556834379610124 0.050635392791829 0.059874574792131485 0.05061464105550525 0.05981388646143788" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05061464105550525 0.05981388646143788 C 0.050651294448753124 0.059753354176343594 0.0513288303546339 0.058617447047139254 0.051054481774479785 0.05908749904030649 C 0.0513288303546339 0.058617447047139254 0.05414451920426088 0.05376374283535815 0.053906824017354645 0.0541732625434311" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35945394716355766,0.2199015479689772) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.0474022371610495 0.054173262543431105 C 0.047639932347955743 0.05458278225150406 0.050528927984078535 0.059557551033473724 0.050254579403924415 0.059087499040306496 C 0.050528927984078535 0.059557551033473724 0.05073107351614683 0.05987441874653217 0.05069442012289895 0.059813886461437885" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05069442012289895 0.059813886461437885 C 0.050715171859222696 0.05975319813074428 0.05109431556064188 0.05861441860661898 0.05094344095878392 0.05908562649311456 C 0.05109431556064188 0.05861441860661898 0.052635038210728666 0.05374887226768896 0.052504915345194456 0.05415939182349093" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.052504915345194456 0.05415939182349093 C 0.05243061779630386 0.054685930181845754 0.05152863349489365 0.06108656377623295 0.051613344758507325 0.0604778521237488 C 0.05152863349489365 0.06108656377623295 0.05147796646710729 0.061546104947430055 0.05148838018183037 0.061463931653300725" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05148838018183037 0.061463931653300725 C 0.05152033768690299 0.061545989768831265 0.052116165138534294 0.06305644634762647 0.051871870242701804 0.062448629039667206 C 0.052116165138534294 0.06305644634762647 0.05463225632258017 0.0692834985412406 0.05441991893182029 0.06875773934881188" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05441991893182029 0.06875773934881188 C 0.05418222374491405 0.06834821964073892 0.05129322810879126 0.0633734508587692 0.05156757668894538 0.06384350285193643 C 0.05129322810879126 0.0633734508587692 0.051091082576722964 0.0630565831457108 0.05112773596997084 0.06311711543080509" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05112773596997084 0.06311711543080509 C 0.05110698423364709 0.06317780376149869 0.0507278405322279 0.06431658328562394 0.05087871513408586 0.06384537539912835 C 0.0507278405322279 0.06431658328562394 0.049187117882141126 0.06918212962455404 0.04931724074767534 0.06877161006875207" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04931724074767534 0.06877161006875207 C 0.04939153829656593 0.06824507171039725 0.050293522597976134 0.061844438116009974 0.05020881133436246 0.06245314976849413 C 0.050293522597976134 0.061844438116009974 0.050344189625762495 0.061384896944812854 0.050333775911039415 0.061467070238942184" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.050333775911039415 0.061467070238942184 C 0.05030181840596679 0.061385012123411645 0.04970599095433549 0.05987455554461648 0.04995028585016798 0.06048237285257574 C 0.04970599095433549 0.05987455554461648 0.047189899770289624 0.053647503351002386 0.0474022371610495 0.054173262543431105" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31523295849378363,0.2199015479689772) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.0020617360425233154 0.03482057148390282 C 0.002278054419848765 0.034731952961067375 0.005090193325079605 0.03357991216420659 0.004657556570428708 0.033757149209877484 C 0.005090193325079605 0.03357991216420659 0.00746969547565953 0.03260510841301668 0.007253377098334082 0.032693726935852124" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007253377098334082 0.032693726935852124 C 0.0074837861488069694 0.032654248430074494 0.010479103804954506 0.03214102785496533 0.010018285704008732 0.032219984866520585 C 0.010479103804954506 0.03214102785496533 0.013013603360156266 0.03170676429141142 0.012783194309683379 0.03174624279718905" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012783194309683379 0.03174624279718905 C 0.01256687593235793 0.0318348613200245 0.00975473702712709 0.03298690211688528 0.01018737378177799 0.03280966507121439 C 0.00975473702712709 0.03298690211688528 0.007375234876547149 0.033961705868075176 0.007591553253872598 0.03387308734523973" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007591553253872598 0.03387308734523973 C 0.007361144203399712 0.03391256585101736 0.004365826547252189 0.03442578642612654 0.004826644648197962 0.03434682941457128 C 0.004365826547252189 0.03442578642612654 0.0018313269920504282 0.03486004998968045 0.0020617360425233154 0.03482057148390282" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35945394716355766,0.2199015479689772) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.019070241742806714 0.034820571483902794 C 0.01883983269233383 0.03478109297812517 0.015844515036186346 0.03426787240301607 0.016305333137132116 0.034346829414571324 C 0.015844515036186346 0.03426787240301607 0.013310015480984578 0.03383360883946212 0.013540424531457465 0.03387308734523975" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013540424531457465 0.03387308734523975 C 0.013324106154132013 0.0337844688224043 0.010511967248901145 0.03263242802554348 0.010944604003552042 0.03280966507121437 C 0.010511967248901145 0.03263242802554348 0.008132465098321242 0.03165762427435363 0.008348783475646689 0.03174624279718907" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008348783475646689 0.03174624279718907 C 0.008579192526119573 0.031785721302966696 0.011574510182267059 0.0322989418780758 0.011113692081321286 0.03221998486652054 C 0.011574510182267059 0.0322989418780758 0.01410900973746884 0.032733205441629734 0.013878600686995951 0.032693726935852103" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013878600686995951 0.032693726935852103 C 0.014094919064321402 0.03278234545868755 0.01690705796955225 0.0339343862555484 0.016474421214901353 0.033757149209877504 C 0.01690705796955225 0.0339343862555484 0.01928656012013216 0.034909190006738235 0.019070241742806714 0.034820571483902794" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3170504375541242,0.24262049422845777) rotate(0) scale(1,1) translate(-0.022986364471475812,-0.022986364471475812)"><path d="M 0.017341837192536094 0.01582025042895819 C 0.01757520379793631 0.015473597968570105 0.02033284708123666 0.011762246231212678 0.020142236457338654 0.01166042090430118 C 0.02033284708123666 0.011762246231212678 0.019586408697809955 0.01749063213919575 0.019629164679312163 0.01704215435189617" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019629164679312163 0.01704215435189617 C 0.019597652176317 0.01728783166737101 0.01914005886572172 0.020533749969614427 0.019251014643370194 0.01999028213759427 C 0.01914005886572172 0.020533749969614427 0.0182182520728772 0.02386155885268338 0.018297695347530507 0.023563768336138064" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.018297695347530507 0.023563768336138064 C 0.0180396253745473 0.02395589792726944 0.014994826316359006 0.028264789211089957 0.015200855671732023 0.028269323429714565 C 0.014994826316359006 0.028264789211089957 0.015877383700664487 0.0231126939028868 0.015825343083054298 0.023509357712642783" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015825343083054298 0.023509357712642783 C 0.015823947989108217 0.02317578817433972 0.01593497646482481 0.01886576431269895 0.01580860195570133 0.019506523253006 C 0.01593497646482481 0.01886576431269895 0.017469606795605656 0.015513061026954204 0.017341837192536094 0.01582025042895819" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35763646810321725,0.24262049422845777) rotate(0) scale(1,1) translate(-0.022986364471475812,-0.022986364471475812)"><path d="M 0.028630891750415555 0.01582025042895819 C 0.02875866135348512 0.016127439830962174 0.03029050149637384 0.02014728219331305 0.03016412698725035 0.019506523253006 C 0.03029050149637384 0.02014728219331305 0.030145990765951324 0.023842927250945847 0.030147385859897402 0.023509357712642783" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.030147385859897402 0.023509357712642783 C 0.03019942647750759 0.023906021522398766 0.030565843915846647 0.028273857648339173 0.030771873271219663 0.028269323429714565 C 0.030565843915846647 0.028273857648339173 0.027416963622438024 0.02317163874500669 0.027675033595421228 0.023563768336138064" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.027675033595421228 0.023563768336138064 C 0.027595590320767915 0.023265977819592748 0.026610758521933 0.019446814305574114 0.026721714299581478 0.01999028213759427 C 0.026610758521933 0.019446814305574114 0.026312051760644318 0.01679647703642133 0.026343564263639485 0.01704215435189617" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.026343564263639485 0.01704215435189617 C 0.026300808282137277 0.016593676564596586 0.026021103109510984 0.011558595577389683 0.025830492485612977 0.01166042090430118 C 0.026021103109510984 0.011558595577389683 0.02886425835581577 0.016166902889346274 0.028630891750415555 0.01582025042895819" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.265876675655955) rotate(0) scale(1,1) translate(-0.032753407916317374,-0.032753407916317374)"><path d="M 0.028595592495859894 0.03366082561751439 C 0.028670556132018438 0.03387491483158032 0.02852062885970135 0.03558762854410774 0.028595592495859894 0.035373539330041816 C 0.02852062885970135 0.03558762854410774 0.027546101589640284 0.03622989618630553 0.02769602886195737 0.03622989618630553 C 0.027546101589640284 0.03622989618630553 0.026721501591896315 0.03515945011597589 0.026796465228054858 0.035373539330041816 C 0.026721501591896315 0.03515945011597589 0.0268714288642134 0.03344673640344847 0.026796465228054858 0.03366082561751439 C 0.0268714288642134 0.03344673640344847 0.027845956134274458 0.03280446876125068 0.02769602886195737 0.03280446876125068 C 0.027845956134274458 0.03280446876125068 0.028670556132018438 0.03387491483158032 0.028595592495859894 0.03366082561751439 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.2658766756559551) rotate(0) scale(1,1) translate(-0.032753407916317374,-0.032753407916317374)"><path d="M 0.037810786970677523 0.03280446876125068 C 0.0379607142429946 0.03280446876125068 0.03878531424073848 0.03387491483158032 0.038710350604579946 0.03366082561751439 C 0.03878531424073848 0.03387491483158032 0.03863538696842141 0.03558762854410774 0.038710350604579946 0.035373539330041816 C 0.03863538696842141 0.03558762854410774 0.037660859698360444 0.03622989618630553 0.037810786970677523 0.03622989618630553 C 0.037660859698360444 0.03622989618630553 0.03683625970061643 0.03515945011597589 0.036911223336774976 0.035373539330041816 C 0.03683625970061643 0.03515945011597589 0.03698618697293352 0.03344673640344847 0.036911223336774976 0.03366082561751439 C 0.03698618697293352 0.03344673640344847 0.0379607142429946 0.03280446876125068 0.037810786970677523 0.03280446876125068 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 84 KiB

View File

@@ -0,0 +1,178 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.24749286274126736) rotate(0) scale(1,1) translate(-0.5000000000000002,-0.5028176270761189)"><path d="M 0.4796165657240845 0.4726661654790053 C 0.47984413758880134 0.47187188581782014 0.48319673786218326 0.4617590768161918 0.48234742810068676 0.46313480954478314 C 0.48319673786218326 0.4617590768161918 0.49127933052031847 0.4553630930747243 0.48980828286204237 0.45615737273590945 C 0.49127933052031847 0.4553630930747243 0.5016986195229932 0.45360345361056104 0.5000000000000002 0.45360345361056104 C 0.5016986195229932 0.45360345361056104 0.5116627647962341 0.4569516523970946 0.510191717137958 0.45615737273590945 C 0.5116627647962341 0.4569516523970946 0.5185018816608102 0.46451054227337446 0.5176525718993137 0.46313480954478314 C 0.5185018816608102 0.46451054227337446 0.5206110061406328 0.4734604451401905 0.5203834342759159 0.4726661654790053" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5203834342759159 0.4726661654790053 C 0.5207472065427519 0.47326043696815967 0.5254960940680644 0.4810134930098648 0.5247487014779475 0.4797974233488578 C 0.5254960940680644 0.4810134930098648 0.5297357656805997 0.4878807995829422 0.5293521453573187 0.4872590014110896" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5293521453573187 0.4872590014110896 C 0.5295311392909938 0.48779817145761184 0.5320247966957922 0.49495201024144064 0.5315000725614207 0.4937290419693564 C 0.5320247966957922 0.49495201024144064 0.5359945651704726 0.5026184189016624 0.5356488349697763 0.5019346206761004" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5356488349697763 0.5019346206761004 C 0.5358307310968446 0.5025224143588597 0.5381318055331983 0.5103937697303915 0.5378315884945967 0.5089881448692123 C 0.5381318055331983 0.5103937697303915 0.5391754217867507 0.5204053696206066 0.5392514394329957 0.5188021190102505 C 0.5391754217867507 0.5204053696206066 0.5361460176899892 0.5296841024512058 0.5369193767396573 0.5282271521934854 C 0.5361460176899892 0.5296841024512058 0.5285050310155601 0.5372238761222669 0.5299711308369778 0.5362855221028955 C 0.5285050310155601 0.5372238761222669 0.5174885269819803 0.5394958794380699 0.5193261788826459 0.5394874004259423 C 0.5174885269819803 0.5394958794380699 0.5063087931221036 0.5355657652625363 0.5079193080289908 0.5363872702484256 C 0.5063087931221036 0.5355657652625363 0.499340057664251 0.5290661797908413 0.5000000000000002 0.5296293405952708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5000000000000002 0.5296293405952708 C 0.49934005766425105 0.5301925013997003 0.4904701770641229 0.5372087752343149 0.49208069197101 0.5363872702484256 C 0.4904701770641229 0.5372087752343149 0.47883616921668903 0.5394789214138149 0.4806738211173547 0.5394874004259425 C 0.47883616921668903 0.5394789214138149 0.46856276934160496 0.5353471680835243 0.47002886916302256 0.5362855221028957 C 0.46856276934160496 0.5353471680835243 0.46230726421067536 0.5267702019357652 0.4630806232603435 0.5282271521934856 C 0.46230726421067536 0.5267702019357652 0.4606725429207599 0.5171988683998947 0.46074856056700486 0.5188021190102508 C 0.4606725429207599 0.5171988683998947 0.46246862854400517 0.5075825200080332 0.46216841150540355 0.5089881448692124 C 0.46246862854400517 0.5075825200080332 0.46453306115729226 0.5013468269933411 0.4643511650302239 0.5019346206761004" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.4643511650302239 0.5019346206761004 C 0.4646968952309202 0.5012508224505384 0.46902465157295115 0.4925060736972722 0.4684999274385797 0.4937290419693564 C 0.46902465157295115 0.4925060736972722 0.4708268485763566 0.4867198313645673 0.47064785464268144 0.4872590014110896" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.47064785464268144 0.4872590014110896 C 0.47103147496596237 0.4866372032392369 0.4759986911121697 0.47858135368785076 0.4752512985220528 0.4797974233488578 C 0.4759986911121697 0.47858135368785076 0.47998033799092044 0.47207189398985094 0.47961656572408445 0.4726661654790053" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286705,0.26548401134240307) rotate(0) scale(1,1) translate(-0.095,-0.10089292610842032)"><path d="M 0.10551144219783498 0.09192888134555754 C 0.10532004131652797 0.09228936492866162 0.1029301099101423 0.0969829540673594 0.10321463162215094 0.09625468434280642 C 0.1029301099101423 0.0969829540673594 0.10200406082302964 0.10103590418164232 0.10209718165373127 0.1006681180401934" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10209718165373127 0.1006681180401934 C 0.10206491180076149 0.10079091329844135 0.10163124012494286 0.10236797756637107 0.10170994341809397 0.10214166113916882 C 0.10163124012494286 0.10236797756637107 0.10110630869573656 0.10348743633557471 0.10115274213591789 0.1033839151666204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10115274213591789 0.1033839151666204 C 0.10109517739350064 0.1034615705296314 0.10033102245909979 0.10446587907670565 0.10046196522691091 0.1043157795227523 C 0.10033102245909979 0.10446587907670565 0.09950805089679066 0.10525755400500299 0.09958142892218452 0.10518510981406062" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09958142892218452 0.10518510981406062 C 0.09942571289639654 0.10526722702543213 0.09733105086921337 0.10628583255027269 0.09771283661272874 0.10617051635051875 C 0.09733105086921337 0.10628583255027269 0.09454786056454524 0.10656890421110782 0.09500000000000003 0.10656890421110782 C 0.09454786056454524 0.10656890421110782 0.09190537764375595 0.1060552001507648 0.09228716338727132 0.10617051635051875 C 0.09190537764375595 0.1060552001507648 0.09026285505202757 0.10510299260268911 0.09041857107781555 0.10518510981406062" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09041857107781555 0.10518510981406062 C 0.09034519305242168 0.10511266562311826 0.08940709200527808 0.10416567996879894 0.08953803477308919 0.1043157795227523 C 0.08940709200527808 0.10416567996879894 0.08878969312166493 0.10330625980360941 0.08884725786408218 0.1033839151666204" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08884725786408218 0.1033839151666204 C 0.08880082442390083 0.1032803939976661 0.08821135328875497 0.10191534471196657 0.08829005658190608 0.10214166113916882 C 0.08821135328875497 0.10191534471196657 0.08787054849329898 0.10054532278194546 0.08790281834626876 0.1006681180401934" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08790281834626876 0.1006681180401934 C 0.08780969751556711 0.10030033189874449 0.08650084666584042 0.09552641461825342 0.08678536837784906 0.09625468434280642 C 0.08650084666584042 0.09552641461825342 0.0842971569208581 0.09156839776245347 0.08448855780216509 0.09192888134555754" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23840427763450495) rotate(0) scale(1,1) translate(-0.095,-0.09632994090643211)"><path d="M 0.07497818711520889 0.07653922078693011 C 0.07591099396729327 0.07590137127215574 0.08857603130226899 0.06824717709486335 0.08617186934022152 0.06888502660963772 C 0.08857603130226899 0.06824717709486335 0.10623229262182599 0.06952287612441209 0.10382813065977851 0.06888502660963772 C 0.10623229262182599 0.06952287612441209 0.11595461973687554 0.07717707030170448 0.11502181288479116 0.07653922078693011" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11502181288479116 0.07653922078693011 C 0.11535022509976832 0.07732980393630391 0.11883769005768766 0.08846667487870434 0.11896275946451702 0.08602621857941567 C 0.11883769005768766 0.08846667487870434 0.11306749838103222 0.10747456952830901 0.11352098000283875 0.10582469637839415" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11352098000283875 0.10582469637839415 C 0.11324140254941205 0.10612986300238317 0.10949917485158432 0.11020325622252512 0.11016605056171833 0.1094866958662625 C 0.10949917485158432 0.11020325622252512 0.10513117322452338 0.11483481438581923 0.10551847148123068 0.11442342065354563" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10551847148123068 0.11442342065354563 C 0.10521793290914087 0.1145958040135057 0.10103546932605036 0.11679563624723685 0.1019120086161529 0.11649202097306652 C 0.10103546932605036 0.11679563624723685 0.09384799856397455 0.11806680394358954 0.09500000000000003 0.11806680394358954 C 0.09384799856397455 0.11806680394358954 0.0872114520937446 0.11618840569889619 0.08808799138384715 0.11649202097306652 C 0.0872114520937446 0.11618840569889619 0.08418098994667957 0.11425103729358556 0.08448152851876937 0.11442342065354563" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08448152851876937 0.11442342065354563 C 0.08409423026206207 0.11401202692127203 0.0791670737281477 0.10877013550999988 0.0798339494382817 0.1094866958662625 C 0.0791670737281477 0.10877013550999988 0.0761994425437346 0.10551952975440512 0.07647901999716131 0.10582469637839415" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07647901999716131 0.10582469637839415 C 0.07602553837535479 0.10417482322847928 0.0709121711286537 0.083585762280127 0.07103724053548306 0.08602621857941567 C 0.0709121711286537 0.083585762280127 0.07530659933018603 0.07574863763755631 0.07497818711520889 0.07653922078693011" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.22125489204258864) rotate(0) scale(1,1) translate(-0.027392108961499424,-0.025875389182202276)"><path d="M 0.040599321041707895 0.0245780556502559 C 0.040296960306036134 0.024662540950586738 0.03633639143946436 0.025699597709954475 0.0369709922136468 0.025591879254225954 C 0.03633639143946436 0.025699597709954475 0.03265187171300797 0.025893910274395814 0.03298411175151865 0.025870677118998132" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03298411175151865 0.025870677118998132 C 0.03251811151901705 0.025918803804302754 0.026460108496496222 0.026448197342653603 0.027392108961499427 0.026448197342653603 C 0.026460108496496222 0.026448197342653603 0.021334105938978606 0.025822550433693515 0.021800106171480208 0.025870677118998136" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.021800106171480208 0.025870677118998136 C 0.02146786613296953 0.025847443963600454 0.017178624935169622 0.025484160798497437 0.017813225709352058 0.025591879254225958 C 0.017178624935169622 0.025484160798497437 0.013882536145619236 0.024493570349925064 0.014184896881290992 0.024578055650255903" fill="none" stroke="none" stroke-width="0"/>
</g><g id="筋肉">
<g transform="translate(0.3373434528286706,0.2384042776345049) rotate(0) scale(1,1) translate(-0.006218922926089482,-0.007615023398503552)"><path d="M 0.011543856848186082 0.007001973403826097 C 0.01145856955303216 0.007060688797209478 0.010276960792822872 0.007848329237171844 0.010520409306339022 0.0077065581244266735 C 0.010276960792822872 0.007848329237171844 0.008464313467630042 0.008786282476129925 0.008622474685992271 0.008703226756768136" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008622474685992271 0.008703226756768136 C 0.008422178706000372 0.00882183002239693 0.005818330966105684 0.010120969555476993 0.006218922926089482 0.010126465944313672 C 0.005818330966105684 0.010120969555476993 0.003615075186194798 0.008513170436262525 0.003815371166186697 0.008637270090727997" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003815371166186697 0.008637270090727997 C 0.003657209947824468 0.00854871798252953 0.001673988032323797 0.007421880901927874 0.0019174365458399477 0.0075746447923464 C 0.001673988032323797 0.007421880901927874 0.0008087017088389667 0.006739891623485626 0.0008939890039928882 0.006804103405705686" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3308013132236892,0.2251199624540654) rotate(0) scale(1,1) translate(-0.03649433879459807,-0.02487077539596666)"><path d="M 0.036165054023246546 0.03483146316366837 C 0.035959282876937566 0.03463366154483415 0.033325338635225556 0.03203052060268181 0.03369580026753882 0.03245784373765776 C 0.033325338635225556 0.03203052060268181 0.031554823949483085 0.02947406402781522 0.03171951443548737 0.029703585543956953" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03171951443548737 0.029703585543956953 C 0.03158356629046793 0.029290318694361092 0.03009285341112644 0.024150088002080364 0.03008813669525401 0.024744383348806614 C 0.03009285341112644 0.024150088002080364 0.03191677988684844 0.02239101288611159 0.031776115025956564 0.022572041383241974" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031776115025956564 0.022572041383241974 C 0.03231427347502231 0.02258154118104129 0.038980871018160834 0.022718494977183385 0.03823401641474555 0.02268603895683375 C 0.038980871018160834 0.022718494977183385 0.04094706642128947 0.02298446984998792 0.04073837026693994 0.0229615136274376" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04073837026693994 0.0229615136274376 C 0.04084033919905746 0.023119067958243023 0.04206848872237339 0.02549632704571833 0.041961997452350186 0.02485216559710267 C 0.04206848872237339 0.02549632704571833 0.04202078784512406 0.031178058128635798 0.042016265507218375 0.030691451010825557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.042016265507218375 0.030691451010825557 C 0.04179160959219266 0.03105890684430695 0.03883279356991218 0.035445922025339194 0.03932039452690983 0.035100921012602294 C 0.03883279356991218 0.035445922025339194 0.035902108981274605 0.03480900834292388 0.036165054023246546 0.03483146316366837" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34388559243365235,0.2251199624540654) rotate(0) scale(1,1) translate(-0.03649433879459807,-0.02487077539596666)"><path d="M 0.03682362356594955 0.03483146316366837 C 0.03656067852397761 0.03485391798441286 0.03318068210528865 0.034755919999865395 0.033668283062286294 0.035100921012602294 C 0.03318068210528865 0.034755919999865395 0.03074775616695209 0.030323995177344163 0.030972412081977797 0.030691451010825557" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030972412081977797 0.030691451010825557 C 0.03097693441988348 0.030204843893015317 0.031133171406869168 0.024208004148487006 0.031026680136845966 0.02485216559710267 C 0.031133171406869168 0.024208004148487006 0.03235227625437376 0.02280395929663218 0.032250307322256234 0.0229615136274376" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.032250307322256234 0.0229615136274376 C 0.03245900347660577 0.02293855740488728 0.035501515777865915 0.022653582936484114 0.034754661174450634 0.02268603895683375 C 0.035501515777865915 0.022653582936484114 0.04175072101230537 0.022562541585442658 0.04121256256323962 0.022572041383241974" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04121256256323962 0.022572041383241974 C 0.0413532274241315 0.02275306988037236 0.04290525760981457 0.025338678695532864 0.042900540893942136 0.024744383348806614 C 0.04290525760981457 0.025338678695532864 0.041133215008689335 0.030116852393552815 0.04126916315370878 0.029703585543956953" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04126916315370878 0.029703585543956953 C 0.04110447266770449 0.029933107060098687 0.03892241568934408 0.032885166872633716 0.039292877321657343 0.03245784373765776 C 0.03892241568934408 0.032885166872633716 0.036617852419640565 0.03502926478250259 0.03682362356594955 0.03483146316366837" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.315504929485411,0.21971848710077124) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.012441367119184914 0.015924867085506104 C 0.012026251968667488 0.015441393573938646 0.009311948248318228 0.01198973551313825 0.009950676216080362 0.013024026016101356 C 0.009311948248318228 0.01198973551313825 0.008385386495367391 0.009168307076331825 0.008608999312612102 0.009719124067727472" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35918197617193015,0.21971848710077124) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.004347090116740885 0.009719124067727472 C 0.004123477299496172 0.010269941059123119 0.002366685245510467 0.014058316519064461 0.0030054132132726072 0.013024026016101356 C 0.002366685245510467 0.014058316519064461 9.960715965061443E-05 0.01640834059707356 0.000514722310168042 0.015924867085506104" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31700854633860587,0.24129954050680744) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.0082906271411456 0.016871568729878987 C 0.008100996572872651 0.016546277473171823 0.005687097504037578 0.012287459675439856 0.006015060321870221 0.012968073649393005 C 0.005687097504037578 0.012287459675439856 0.004216741077594194 0.00834887832519521 0.004355073327153888 0.008704201042441195" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3576783593187355,0.24129954050680744) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.0086010161021991 0.008704201042441195 C 0.008462683852639409 0.00905952375968718 0.0066130662896501735 0.013648687623346154 0.006941029107482814 0.012968073649393005 C 0.0066130662896501735 0.013648687623346154 0.004475831719934467 0.01719685998658615 0.004665462288207417 0.016871568729878987" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3373434528286705,0.22687311398280602) rotate(0) scale(1,1) translate(-0.017697491909778828,-0.017697491909778828)"><path d="M 0.015936232638433596 0.01769749190977883 C 0.015979221046529372 0.017597600581848536 0.01659886514152837 0.016357528303892806 0.016452093535582933 0.016498795974615288 C 0.01659886514152837 0.016357528303892806 0.017905058305478137 0.016002279861109046 0.01769749190977882 0.016002279861109046 C 0.017905058305478137 0.016002279861109046 0.01908966188992015 0.01664006364533777 0.018942890283974712 0.016498795974615288 C 0.01908966188992015 0.01664006364533777 0.019501739589219837 0.017797383237709123 0.019458751181124057 0.017697491909778828" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019458751181124057 0.017697491909778828 C 0.01937215593361625 0.017907719132357693 0.018272836605084934 0.020732967904088285 0.01841960821103037 0.020220218580725202 C 0.018272836605084934 0.020732967904088285 0.017637315551341202 0.024153005890920055 0.01769749190977883 0.023850483790135834" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01769749190977883 0.023850483790135834 C 0.017637315551341202 0.023547961689351613 0.016828604002581845 0.01970746925736212 0.01697537560852728 0.020220218580725202 C 0.016828604002581845 0.01970746925736212 0.015849637390925788 0.017487264687199966 0.015936232638433596 0.01769749190977883" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.22687311398280602) rotate(0) scale(1,1) translate(-0.35878523175949983,-0.35878523175950006)"><path d="M 0.3591310172005947 0.35754811952121623 C 0.3591776415836369 0.35758749742347673 0.3597549431097608 0.3581237470348658 0.359690509797101 0.3580206543483422 C 0.3597549431097608 0.3581237470348658 0.3599042169525124 0.3589126613280264 0.3599042169525124 0.35878523175950006 C 0.3599042169525124 0.3589126613280264 0.35962607648444117 0.3596529018571818 0.359690509797101 0.35954980917065815 C 0.35962607648444117 0.3596529018571818 0.3590267619107034 0.36006172190004443 0.3591310172005947 0.36002234399778393 C 0.3590267619107034 0.36006172190004443 0.35833519102851374 0.35998296609552344 0.3584394463184051 0.36002234399778393 C 0.35833519102851374 0.35998296609552344 0.35781552040923903 0.3594467164841345 0.35787995372189885 0.35954980917065815 C 0.35781552040923903 0.3594467164841345 0.3576662465664874 0.3586578021909737 0.3576662465664874 0.35878523175950006 C 0.3576662465664874 0.3586578021909737 0.35794438703455866 0.35791756166181854 0.35787995372189885 0.3580206543483422 C 0.35794438703455866 0.35791756166181854 0.3584860707014473 0.35750874161895574 0.3584394463184051 0.35754811952121623" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="虫性">
<g transform="translate(0.3373434528286707,0.24525637920615864) rotate(0) scale(1,1) translate(-0.019192864762988458,-0.012340763191334692)"><path d="M -0.007400133530692217 -0.005469808934900922 C -0.006990596486685038 -0.005365776289024039 -0.0016602614011134737 -0.003747471009315143 -0.0024856890026060618 -0.004221417184378327 C -0.0016602614011134737 -0.003747471009315143 0.0029208882447042447 0.0005874586950435851 0.0025049976872188367 0.00021754516585728418" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0025049976872188367 0.00021754516585728418 C 0.0028043435972282217 0.0007963480405270418 0.006640214203764329 0.008307868021104664 0.006097148607331458 0.007163179661894376 C 0.006640214203764329 0.008307868021104664 0.00926550453083678 0.014519690960921275 0.009021784844413294 0.013953805476380744" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.009021784844413294 0.013953805476380744 C 0.009869374837627893 0.014574056899120629 0.02088804474941768 0.021396822549259367 0.019192864762988482 0.021396822549259367 C 0.02088804474941768 0.021396822549259367 0.03021153467477826 0.013333554053640858 0.029363944681563663 0.013953805476380744" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.029363944681563663 0.013953805476380744 C 0.029607664367987147 0.013387919991840212 0.032831646515078326 0.006018491302684087 0.03228858091864546 0.007163179661894375 C 0.032831646515078326 0.006018491302684087 0.03618007774876742 -0.00036125770881247337 0.03588073183875804 0.00021754516585728418" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03588073183875804 0.00021754516585728418 C 0.03629662239624345 -0.0001523683633290167 0.04169684613007551 -0.0046953633594415106 0.04087141852858292 -0.004221417184378327 C 0.04169684613007551 -0.0046953633594415106 0.046195400100676284 -0.0055738415807778064 0.0457858630566691 -0.005469808934900924" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0457858630566691 -0.005469808934900924 C 0.04624647429385591 -0.0047221244751326765 0.04946989226968825 0.0010667385713121508 0.04854953047978992 -0.0009837021762914395 C 0.04946989226968825 0.0010667385713121508 0.05176778434877066 0.008135591838555962 0.051308033796059124 0.006832835550720619" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.051308033796059124 0.006832835550720619 C 0.05053105115074201 0.007135858284404929 0.040722069894780034 0.011346140436987109 0.041984242052253755 0.010469108354932347 C 0.040722069894780034 0.011346140436987109 0.03567677839421787 0.017931229883748213 0.03616196790637448 0.017357220535377763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03616196790637448 0.017357220535377763 C 0.03554002968058369 0.017970761638618486 0.027284617268269497 0.026183192559427557 0.028698709196884997 0.024719713774266433 C 0.027284617268269497 0.026183192559427557 0.018711679731602524 0.03603592328519153 0.01919286476298849 0.034918965957311254 C 0.018711679731602524 0.03603592328519153 0.02323545749169218 0.03839022135478955 0.022924488820253434 0.03812320170882968" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022924488820253434 0.03812320170882968 C 0.022302551477375948 0.03842734238855824 0.019192864762988506 0.03994804578720102 0.019192864762988506 0.03994804578720102 C 0.019192864762988506 0.03994804578720102 0.02354642616313092 0.03781906102910112 0.022924488820253434 0.03812320170882968" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022924488820253434 0.03812320170882968 C 0.023004663490714533 0.03852994595154059 0.02427839522857346 0.04386356828636693 0.023886584865786622 0.04300413262136066 C 0.02427839522857346 0.04386356828636693 0.027937848866021235 0.04888912111120029 0.027626213173695496 0.048436429688904936" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.027626213173695496 0.048436429688904936 C 0.027231956795284225 0.04825788700124645 0.022192357598534652 0.045750216416696715 0.022895136632760237 0.04629391743700302 C 0.022192357598534652 0.045750216416696715 0.018884342107174178 0.04154685911258145 0.01919286476298849 0.041912017445229266" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01919286476298849 0.041912017445229266 C 0.018884342107174174 0.04227717577787708 0.014787813858991137 0.04683761845730933 0.015490592893216719 0.04629391743700302 C 0.014787813858991137 0.04683761845730933 0.010365259973870247 0.048614972376563426 0.010759516352281513 0.048436429688904936" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.010759516352281513 0.048436429688904936 C 0.01107115204460725 0.04798373826660958 0.01489095502297718 0.04214469695635437 0.014499144660190342 0.043004132621360644 C 0.01489095502297718 0.04214469695635437 0.015541415376184666 0.037716457466118763 0.015461240705723564 0.03812320170882968" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015461240705723564 0.03812320170882968 C 0.016083178048601054 0.03842734238855824 0.019192864762988506 0.03994804578720102 0.019192864762988506 0.03994804578720102 C 0.019192864762988506 0.03994804578720102 0.014839303362846074 0.03781906102910112 0.015461240705723564 0.03812320170882968" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015461240705723564 0.03812320170882968 C 0.015772209377162307 0.03785618206286981 0.018711679731602524 0.03380200862943098 0.01919286476298849 0.034918965957311254 C 0.018711679731602524 0.03380200862943098 0.0082729284004765 0.02325623498910531 0.009687020329091998 0.024719713774266433 C 0.0082729284004765 0.02325623498910531 0.001601823393811732 0.01674367943213704 0.0022237616196025215 0.017357220535377763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0022237616196025215 0.017357220535377763 C 0.0017385721074459157 0.01678321118700731 -0.004860684683750479 0.009592076272877585 -0.0035985125262767478 0.010469108354932347 C -0.004860684683750479 0.009592076272877585 -0.01369928691539937 0.006529812817036316 -0.012922304270082246 0.006832835550720626" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.012922304270082246 0.006832835550720626 C -0.01246255371737069 0.005530079262885282 -0.009243439163914574 -0.003034142923895024 -0.010163800953812911 -0.0009837021762914334 C -0.009243439163914574 -0.003034142923895024 -0.006939522293505443 -0.006217493394669166 -0.007400133530692224 -0.0054698089349009184" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.2384042776345049) rotate(0) scale(1,1) translate(-0.01919286476298845,-0.01919286476298845)"><path d="M -0.0011905684228371955 -0.0018700169646189773 C -0.0009042624344865128 -0.0016569619501146148 0.002957538708735074 0.0010828023510408877 0.002245103437370997 0.0006866432094333718 C 0.002957538708735074 0.0010828023510408877 0.007784784116545121 0.003066996861774367 0.007358654833531727 0.0028838927346712135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007358654833531727 0.0028838927346712135 C 0.0077990893864682284 0.003533085117686598 0.013250741588497306 0.011838842207525678 0.01264386946876974 0.010674201330855827 C 0.013250741588497306 0.011838842207525678 0.014807557837053594 0.017375031748363898 0.014641120270262528 0.01685958325470943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014641120270262528 0.01685958325470943 C 0.015020432311323023 0.0170880487467172 0.01995148884510945 0.019601169158802664 0.01919286476298846 0.019601169158802664 C 0.01995148884510945 0.019601169158802664 0.02412392129677489 0.016631117762701663 0.023744609255714394 0.01685958325470943" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023744609255714394 0.01685958325470943 C 0.023911046822505458 0.016344134761054965 0.026348732176934713 0.009509560454185976 0.02574186005720715 0.010674201330855827 C 0.026348732176934713 0.009509560454185976 0.03146750924538166 0.002234700351655829 0.03102707469244516 0.0028838927346712135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03102707469244516 0.0028838927346712135 C 0.03145320397545855 0.00270078860756806 0.03685306135997 0.00029048406782585494 0.03614062608860591 0.000686643209433371 C 0.03685306135997 0.00029048406782585494 0.03986260393716492 -0.0020830719791233416 0.039576297948814225 -0.001870016964618979" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.039576297948814225 -0.001870016964618979 C 0.04017619536854381 -0.0010091791270735071 0.04421060998516757 0.004979078589491442 0.04317568246719175 0.0032950100606538527 C 0.04421060998516757 0.004979078589491442 0.04622089315491536 0.009057624899698677 0.04578586305666913 0.008234394208406558" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04578586305666913 0.008234394208406558 C 0.04537632601266195 0.008338426854283444 0.04004599092709036 0.009956732133992379 0.04087141852858295 0.00948278595892919 C 0.04004599092709036 0.009956732133992379 0.035464841281272655 0.014291661838351124 0.03588073183875806 0.013921748309164822" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03588073183875806 0.013921748309164822 C 0.03558138592874868 0.014500551183834578 0.03174551532221263 0.022012071164412186 0.03228858091864549 0.020867382805201902 C 0.03174551532221263 0.022012071164412186 0.0291202249951402 0.02822389410422878 0.029363944681563683 0.027658008619688253" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029363944681563683 0.027658008619688253 C 0.028516354688349087 0.028278260042428137 0.017497684776559306 0.035101025692566845 0.019192864762988503 0.035101025692566845 C 0.017497684776559306 0.035101025692566845 0.008174194851198715 0.02703775719694837 0.009021784844413313 0.027658008619688253" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009021784844413313 0.027658008619688253 C 0.008778065157989828 0.027092123135147726 0.005554083010898606 0.019722694445991618 0.006097148607331478 0.020867382805201902 C 0.005554083010898606 0.019722694445991618 0.0022056517772094724 0.013342945434495065 0.0025049976872188575 0.013921748309164822" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0025049976872188575 0.013921748309164822 C 0.002089107129733449 0.01355183477997852 -0.00331111660409863 0.009008839783866006 -0.002485689002606042 0.009482785958929194 C -0.00331111660409863 0.009008839783866006 -0.0078096705746993796 0.00813036156252968 -0.0074001335306922 0.008234394208406565" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0074001335306922 0.008234394208406565 C -0.00696510343244597 0.007411163517114447 -0.003755025423238985 0.001610941531816263 -0.004789952941214818 0.0032950100606538527 C -0.003755025423238985 0.001610941531816263 -0.0005906710031075999 -0.0027308548021644447 -0.0011905684228372025 -0.0018700169646189738" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="淫タトゥ">
<g id="渦">
<g transform="translate(0.3373434528286706,0.2384042776345049) rotate(0) scale(1,1) translate(-0.004044276755330287,-0.0037120127838791922)"><path d="M -0.01889145421521419 -0.013177018001567576 C -0.01881440349714795 -0.013303301451703258 -0.017816934505736886 -0.014937569344356865 -0.017966845598419327 -0.014692419403195753 C -0.017816934505736886 -0.014937569344356865 -0.017019660728408707 -0.01623768378652636 -0.017092521103024907 -0.01611881729550093" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.017092521103024907 -0.01611881729550093 C -0.01707744146884379 -0.016023678735656355 -0.016817551882743507 -0.014791317287848108 -0.016911565492851492 -0.014977154577366016 C -0.016817551882743507 -0.014791317287848108 -0.01574933282510032 -0.013696804214305063 -0.015964357781729093 -0.013888769821286052 C -0.01574933282510032 -0.013696804214305063 -0.014056609415520884 -0.012427246020997242 -0.014331266013306188 -0.012673567293594161 C -0.014056609415520884 -0.012427246020997242 -0.012438588393158005 -0.010549164145468507 -0.012668478608305445 -0.010932914550123005 C -0.012438588393158005 -0.010549164145468507 -0.011519611766175422 -0.007558380441989596 -0.011572583431536911 -0.008068562437740196 C -0.011519611766175422 -0.007558380441989596 -0.012260003297411415 -0.004361681530557429 -0.012032818623967574 -0.004810730601115806 C -0.012260003297411415 -0.004361681530557429 -0.014710741848944485 -0.0024989698053080977 -0.014298799512863001 -0.0026799735910396777 C -0.014710741848944485 -0.0024989698053080977 -0.01734814829255564 -0.002779202552843424 -0.016976126656945374 -0.002638685172336847 C -0.01734814829255564 -0.002779202552843424 -0.018925369304887637 -0.004704651774649976 -0.018763059140186174 -0.0043661821571186026 C -0.018925369304887637 -0.004704651774649976 -0.018851697816301218 -0.00700332523957523 -0.018923848633362918 -0.0067003205827133264 C -0.018851697816301218 -0.00700332523957523 -0.01767892612017938 -0.008106432678352359 -0.017897249335445793 -0.008002238039461446 C -0.01767892612017938 -0.008106432678352359 -0.01610113300608227 -0.007858741469945231 -0.016303970050165973 -0.007950656249404286 C -0.01610113300608227 -0.007858741469945231 -0.015406602804658727 -0.006707049785413827 -0.01546320480644138 -0.006899260685952792 C -0.015406602804658727 -0.006707049785413827 -0.015697423669270037 -0.005466028617492479 -0.015624746028774138 -0.005644125442936706 C -0.015697423669270037 -0.005466028617492479 -0.016394552364360333 -0.004688596558762519 -0.016335336492392164 -0.0047620987806220715" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.016335336492392164 -0.0047620987806220715 C -0.016310569874157688 -0.004835701575423132 -0.016017940099833924 -0.005810690709561351 -0.016038137073578443 -0.005645332318234806 C -0.016017940099833924 -0.005810690709561351 -0.01617834687210438 -0.006891411256986429 -0.016092972807457917 -0.006746399476540614 C -0.01617834687210438 -0.006891411256986429 -0.017224778844138186 -0.007391909881560348 -0.017062625849336002 -0.00738547368358458 C -0.017224778844138186 -0.007391909881560348 -0.018125180255983402 -0.006623582310980595 -0.018038808745084105 -0.006823633852249832 C -0.018125180255983402 -0.006623582310980595 -0.018002350728338105 -0.0047117845114534734 -0.018099083980127547 -0.004984855188353735 C -0.018002350728338105 -0.0047117845114534734 -0.01661173214232693 -0.0034271474922377893 -0.016878009723610813 -0.0035467857294466877 C -0.01661173214232693 -0.0034271474922377893 -0.014617734887005757 -0.0036794543745455347 -0.014903753004720926 -0.0035491963418469545 C -0.014617734887005757 -0.0036794543745455347 -0.013310313277549111 -0.005435642699478336 -0.013445792311028791 -0.005109882121829648 C -0.013310313277549111 -0.005435642699478336 -0.013326857479616223 -0.007817108411363094 -0.01327800460296477 -0.007458323273631206 C -0.013326857479616223 -0.007817108411363094 -0.01420475144698087 -0.009698184178123237 -0.014032026830846233 -0.009415303774612308 C -0.01420475144698087 -0.009698184178123237 -0.015587305293288063 -0.011046510221836434 -0.015350699996580416 -0.010852888115762344 C -0.015587305293288063 -0.011046510221836434 -0.017112801523747733 -0.011883085054954943 -0.016871290391338008 -0.011738769047501395 C -0.017112801523747733 -0.011883085054954943 -0.018417180570820115 -0.012704534284710434 -0.0182488335854971 -0.012584680205204918 C -0.018417180570820115 -0.012704534284710434 -0.01894500593435728 -0.013226379484597798 -0.01889145421521419 -0.013177018001567576" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.2384042776345049) rotate(0) scale(1,1) translate(-0.004044276755330287,-0.0037120127838791922)"><path d="M 0.02698000772587461 -0.013177018001567576 C 0.02692645600673153 -0.013127656518537355 0.026169040110834613 -0.012464826125699402 0.026337387096157627 -0.012584680205204918 C 0.026169040110834613 -0.012464826125699402 0.024718332769588736 -0.011594453040047846 0.024959843901998457 -0.011738769047501395 C 0.024718332769588736 -0.011594453040047846 0.023202648210533323 -0.010659266009688254 0.023439253507240965 -0.010852888115762344 C 0.023202648210533323 -0.010659266009688254 0.02194785572537213 -0.00913242337110138 0.022120580341506768 -0.009415303774612308 C 0.02194785572537213 -0.00913242337110138 0.02131770523697385 -0.007099538135899317 0.02136655811362531 -0.007458323273631206 C 0.02131770523697385 -0.007099538135899317 0.0216698248551689 -0.004784121544180961 0.021534345821689227 -0.005109882121829648 C 0.0216698248551689 -0.004784121544180961 0.023278324633096592 -0.0034189383091483743 0.022992306515381422 -0.0035491963418469545 C 0.023278324633096592 -0.0034189383091483743 0.025232840815555158 -0.003666423966655586 0.024966563234271266 -0.0035467857294466877 C 0.025232840815555158 -0.003666423966655586 0.026284370742577556 -0.005257925865253997 0.026187637490788118 -0.004984855188353735 C 0.026284370742577556 -0.005257925865253997 0.026040990744845227 -0.00702368539351907 0.026127362255744524 -0.006823633852249832 C 0.026040990744845227 -0.00702368539351907 0.024989026365194383 -0.007379037485608812 0.025151179359996556 -0.00738547368358458 C 0.024989026365194383 -0.007379037485608812 0.024096152253471965 -0.0066013876960948 0.02418152631811843 -0.006746399476540614 C 0.024096152253471965 -0.0066013876960948 0.024146887557983516 -0.005479973926908261 0.024126690584238997 -0.005645332318234806 C 0.024146887557983516 -0.005479973926908261 0.024448656621287146 -0.004688495985821011 0.024423890003052673 -0.0047620987806220715" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.024423890003052673 -0.0047620987806220715 C 0.024364674131084507 -0.004835601002481624 0.023640621898938785 -0.005822222268380933 0.023713299539434685 -0.005644125442936706 C 0.023640621898938785 -0.005822222268380933 0.023608360318884525 -0.0070914715864917564 0.02355175831710188 -0.006899260685952792 C 0.023608360318884525 -0.0070914715864917564 0.02459536060491015 -0.00804257102886334 0.02439252356082644 -0.007950656249404286 C 0.02459536060491015 -0.00804257102886334 0.026204126061372828 -0.007898043400570534 0.02598580284610641 -0.008002238039461446 C 0.026204126061372828 -0.007898043400570534 0.02708455296108514 -0.006397315925851423 0.02701240214402345 -0.0067003205827133264 C 0.02708455296108514 -0.006397315925851423 0.026689302486145223 -0.004027712539587229 0.02685161265084668 -0.0043661821571186026 C 0.026689302486145223 -0.004027712539587229 0.02469265853199572 -0.00249816779183027 0.02506468016760599 -0.002638685172336847 C 0.02469265853199572 -0.00249816779183027 0.021975410687441965 -0.0028609773767712576 0.02238735302352346 -0.0026799735910396777 C 0.021975410687441965 -0.0028609773767712576 0.019894187461184227 -0.0052597796716741824 0.020121372134628057 -0.004810730601115806 C 0.019894187461184227 -0.0052597796716741824 0.01971410860755901 -0.008578744433490796 0.01966113694219751 -0.008068562437740196 C 0.01971410860755901 -0.008578744433490796 0.020986922334113495 -0.011316664954777502 0.020757032118966068 -0.010932914550123005 C 0.020986922334113495 -0.011316664954777502 0.022694476121751943 -0.012919888566191081 0.022419819523966655 -0.012673567293594161 C 0.022694476121751943 -0.012919888566191081 0.024267936249018296 -0.01408073542826704 0.02405291129238951 -0.013888769821286052 C 0.024267936249018296 -0.01408073542826704 0.025094132613620052 -0.015162991866883923 0.025000119003512067 -0.014977154577366016 C 0.025094132613620052 -0.015162991866883923 0.02519615424786646 -0.016213955855345505 0.02518107461368535 -0.01611881729550093" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02518107461368535 -0.01611881729550093 C 0.025253934988301568 -0.0159999508044755 0.026205310201762384 -0.01444726946203464 0.026055399109079946 -0.014692419403195753 C 0.026205310201762384 -0.01444726946203464 0.027057058443940834 -0.013050734551431895 0.02698000772587461 -0.013177018001567576" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.2384042776345049) rotate(0) scale(1,1) translate(-0.0050491035115750255,-0.003435371609681657)"><path d="M -0.023363310714006796 -0.0045563237972301605 C -0.023284008764500583 -0.004685249239668195 -0.022250626476545708 -0.0063642713753078685 -0.022411687319932247 -0.0061034291064865735 C -0.022250626476545708 -0.0063642713753078685 -0.02134882169948801 -0.007818347849468965 -0.021430580593368335 -0.007686431023085704" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.021430580593368335 -0.007686431023085704 C -0.021425049317500527 -0.0075992377773806494 -0.02130171875424381 -0.006474687363165336 -0.021364205282954657 -0.006640112074625046 C -0.02130171875424381 -0.006474687363165336 -0.02051317774589039 -0.005528403548486292 -0.02068074224883817 -0.005701334485569184 C -0.02051317774589039 -0.005528403548486292 -0.019126306363334965 -0.004327236553868501 -0.019353431247581328 -0.004564940829630336 C -0.019126306363334965 -0.004327236553868501 -0.01775170399455587 -0.0024682244061521026 -0.01795524363788182 -0.002848883176427175 C -0.01775170399455587 -0.0024682244061521026 -0.016862284451188134 0.0005121043658973743 -0.016910955527669906 2.9644136705329893E-06 C -0.016862284451188134 0.0005121043658973743 -0.017599172410320208 0.003707429352716649 -0.017371190720100564 0.003260796250294921 C -0.017599172410320208 0.003707429352716649 -0.020059475163162938 0.005541149460326198 -0.01964673581030565 0.005362561642731267 C -0.020059475163162938 0.005541149460326198 -0.022696084589998295 0.00526333268092752 -0.02232406295438803 0.005403850061434097 C -0.022696084589998295 0.00526333268092752 -0.02427330560233029 0.003337883459120965 -0.024110995437628825 0.003676353076652338 C -0.02427330560233029 0.003337883459120965 -0.02419963411374387 0.0010392099941957168 -0.02427178493080557 0.00134221465105762 C -0.02419963411374387 0.0010392099941957168 -0.023026862417622026 -6.389744458141332E-05 -0.023245185632888438 4.0297194309499925E-05 C -0.023026862417622026 -6.389744458141332E-05 -0.02144906930352493 0.00018379376382571526 -0.021651906347608628 9.187898436666087E-05 C -0.02144906930352493 0.00018379376382571526 -0.02075453910210138 0.0013354854483571177 -0.02081114110388403 0.0011432745478181527 C -0.02075453910210138 0.0013354854483571177 -0.02104535996671269 0.0025765066162784663 -0.02097268232621679 0.00239840979083424 C -0.02104535996671269 0.0025765066162784663 -0.02174248866180298 0.003353938675008424 -0.021683272789834812 0.0032804364531488716" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.021683272789834812 0.0032804364531488716 C -0.021658506171600336 0.003206833658347811 -0.021365876397276575 0.002231844524209595 -0.021386073371021094 0.00239720291553614 C -0.021365876397276575 0.002231844524209595 -0.021526283169547036 0.001151123976784516 -0.021440909104900572 0.0012961357572303304 C -0.021526283169547036 0.001151123976784516 -0.022572715141580837 0.0006506253522105979 -0.022410562146778657 0.0006570615501863658 C -0.022572715141580837 0.0006506253522105979 -0.023473116553426047 0.0014189529227903524 -0.023386745042526753 0.0012189013815211154 C -0.023473116553426047 0.0014189529227903524 -0.02335028702578075 0.003330750722317471 -0.02344702027757019 0.003057680045417209 C -0.02335028702578075 0.003330750722317471 -0.02195966843976958 0.004615387741533154 -0.022225946021053464 0.004495749504324255 C -0.02195966843976958 0.004615387741533154 -0.019965671184448405 0.004363080859225407 -0.020251689302163575 0.004493338891923987 C -0.019965671184448405 0.004363080859225407 -0.01865824957499176 0.00260689253429261 -0.01879372860847144 0.0029326531119412973 C -0.01865824957499176 0.00260689253429261 -0.01866967253298632 0.00022893083151012905 -0.018625940900407423 0.0005842119601397405 C -0.01866967253298632 0.00022893083151012905 -0.019469622638780316 -0.0016001323807141562 -0.01931850819941819 -0.0013307204316140393 C -0.019469622638780316 -0.0016001323807141562 -0.020621073652622855 -0.002816552293673651 -0.02043931417275295 -0.0026487314290616617 C -0.020621073652622855 -0.002816552293673651 -0.02168549504572371 -0.0034582255980467676 -0.021499621957857054 -0.0033445708069579096 C -0.02168549504572371 -0.0034582255980467676 -0.022825098623498602 -0.004113568337983979 -0.02266979122715279 -0.004012588922127958 C -0.022825098623498602 -0.004113568337983979 -0.023421104004577965 -0.0046016350368220105 -0.023363310714006796 -0.0045563237972301605" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.2384042776345049) rotate(0) scale(1,1) translate(-0.0050491035115750255,-0.003435371609681657)"><path d="M 0.03346151773715689 -0.0045563237972301605 C 0.033403724446585716 -0.0045110125576383105 0.03261269085395705 -0.0039116095062719375 0.032767998250302854 -0.004012588922127958 C 0.03261269085395705 -0.0039116095062719375 0.03141195589314063 -0.0032309160158690516 0.03159782898100727 -0.0033445708069579096 C 0.03141195589314063 -0.0032309160158690516 0.03035576171603323 -0.0024809105644496726 0.03053752119590314 -0.0026487314290616617 C 0.03035576171603323 -0.0024809105644496726 0.029265600783206263 -0.0010613084825139224 0.02941671522256839 -0.0013307204316140393 C 0.029265600783206263 -0.0010613084825139224 0.02868041629097869 0.0009394930887693519 0.028724147923557597 0.0005842119601397405 C 0.02868041629097869 0.0009394930887693519 0.029027414665101187 0.0032584136895899844 0.028891935631621513 0.0029326531119412973 C 0.029027414665101187 0.0032584136895899844 0.030635914443028878 0.0046235969246225675 0.030349896325313708 0.004493338891923987 C 0.030635914443028878 0.0046235969246225675 0.03259043062548744 0.004376111267115357 0.03232415304420355 0.004495749504324255 C 0.03259043062548744 0.004376111267115357 0.03364196055250984 0.0027846093685169474 0.033545227300720404 0.003057680045417209 C 0.03364196055250984 0.0027846093685169474 0.03339858055477751 0.0010188498402518783 0.03348495206567681 0.0012189013815211154 C 0.03339858055477751 0.0010188498402518783 0.032346616175126665 0.0006634977481621337 0.03250876916992884 0.0006570615501863658 C 0.032346616175126665 0.0006634977481621337 0.031453742063404254 0.001441147537676145 0.031539116128050715 0.0012961357572303304 C 0.031453742063404254 0.001441147537676145 0.031504477367915805 0.002562561306862685 0.03148428039417128 0.00239720291553614 C 0.031504477367915805 0.002562561306862685 0.03180624643121943 0.0033540392479499324 0.03178147981298496 0.0032804364531488716" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03178147981298496 0.0032804364531488716 C 0.03172226394101679 0.003206934231289319 0.03099821170887107 0.0022203129653900135 0.03107088934936697 0.00239840979083424 C 0.03099821170887107 0.0022203129653900135 0.03096595012881681 0.0009510636472791878 0.030909348127034164 0.0011432745478181527 C 0.03096595012881681 0.0009510636472791878 0.03195295041484242 -3.579509239351724E-08 0.031750113370758726 9.187898436666087E-05 C 0.03195295041484242 -3.579509239351724E-08 0.03356171587130489 0.0001444918332004132 0.03334339265603847 4.0297194309499925E-05 C 0.03356171587130489 0.0001444918332004132 0.034442142771017446 0.001645219307919523 0.034369991953955736 0.00134221465105762 C 0.034442142771017446 0.001645219307919523 0.03404689229607749 0.004014822694183711 0.034209202460778965 0.003676353076652338 C 0.03404689229607749 0.004014822694183711 0.03205024834192779 0.005544367441940675 0.032422269977538054 0.005403850061434097 C 0.03205024834192779 0.005544367441940675 0.02933220348059847 0.005183973825136336 0.029744942833455745 0.005362561642731267 C 0.02933220348059847 0.005183973825136336 0.027241416053031098 0.002814163147873193 0.027469397743250745 0.003260796250294921 C 0.027241416053031098 0.002814163147873193 0.02705783362730174 -0.0005061755385563084 0.027009162550819976 2.9644136705329893E-06 C 0.02705783362730174 -0.0005061755385563084 0.028256990304357892 -0.0032295419467022472 0.02805345066103193 -0.002848883176427175 C 0.028256990304357892 -0.0032295419467022472 0.02967876315497786 -0.00480264510539217 0.029451638270731495 -0.004564940829630336 C 0.02967876315497786 -0.00480264510539217 0.030946513774936086 -0.005874265422652077 0.03077894927198832 -0.005701334485569184 C 0.030946513774936086 -0.005874265422652077 0.03152489883481554 -0.0068055367860847555 0.03146241230610469 -0.006640112074625046 C 0.03152489883481554 -0.0068055367860847555 0.03153431889238626 -0.0077736242687907586 0.03152878761651845 -0.007686431023085704" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03152878761651845 -0.007686431023085704 C 0.031610546510398775 -0.007554514196702443 0.03267095518646892 -0.005842586837665279 0.03250989434308238 -0.0061034291064865735 C 0.03267095518646892 -0.005842586837665279 0.033540819686663094 -0.004427398354792126 0.03346151773715689 -0.0045563237972301605" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="ハート">
<g transform="translate(0.3373434528286706,0.2384042776345049) rotate(0) scale(1,1) translate(4.531817165381619E-05,-0.007618185234386916)"><path d="M -0.03794901136985858 0.023211752075286415 C -0.037890129747540434 0.022985169928269003 -0.03710595392744405 0.02010881765366998 -0.037242431902040865 0.02049276631107747 C -0.03710595392744405 0.02010881765366998 -0.03615482076609964 0.018324232484746208 -0.03631127567469682 0.01860436818639654 C -0.03615482076609964 0.018324232484746208 -0.035202780487147686 0.016885189015370464 -0.035364972998874686 0.017131137891273494 C -0.035202780487147686 0.016885189015370464 -0.03426161535509303 0.015440569099422444 -0.034364965533972794 0.015652981675560187 C -0.03426161535509303 0.015440569099422444 -0.034143308296952474 0.014486584709585556 -0.03412477085231748 0.014582186977620568 C -0.034143308296952474 0.014486584709585556 -0.03466771882129362 0.014535804696920781 -0.0345874148695927 0.014505754459140027 C -0.03466771882129362 0.014535804696920781 -0.035183811221283 0.015062630141645127 -0.03508841827272851 0.014942789830989615 C -0.035183811221283 0.015062630141645127 -0.035785772917206395 0.016027258883340882 -0.03573213025224656 0.01594383818700617" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03573213025224656 0.01594383818700617 C -0.03572581270708927 0.01592352818742946 -0.03562671595055747 0.01568385630788983 -0.035694224981302855 0.015821978189545907 C -0.03562671595055747 0.01568385630788983 -0.03526588458218612 0.014997295014990341 -0.03532707606777423 0.015115106897069708" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.03532707606777423 0.015115106897069708 C -0.0352784663835388 0.015033715916602032 -0.03462927059606462 0.014012627830748895 -0.0347437598569491 0.014138415131457594 C -0.03462927059606462 0.014012627830748895 -0.03382068307070234 0.013601007718729036 -0.03395320493716041 0.01360565928856531 C -0.03382068307070234 0.013601007718729036 -0.033106374547881144 0.014247120474133915 -0.03315349745945223 0.01408259629342231 C -0.033106374547881144 0.014247120474133915 -0.03351845369769933 0.01586210701010216 -0.03338772999830741 0.015579949457104557 C -0.03351845369769933 0.01586210701010216 -0.03492598901838345 0.017756936333322527 -0.034722181852155365 0.017468486929393547 C -0.03492598901838345 0.017756936333322527 -0.03601854047082113 0.019335358499569175 -0.03583341599304446 0.019041342304252314 C -0.03601854047082113 0.019335358499569175 -0.03714412655346068 0.021453979992779006 -0.03694367558547537 0.02099668127319588 C -0.03714412655346068 0.021453979992779006 -0.038346756944150906 0.024823280744754334 -0.038238827608868174 0.024528926939249837" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.038238827608868174 0.024528926939249837 C -0.03822637708357862 0.02447249695643147 -0.038065269952142725 0.023742002573432452 -0.03808942130539352 0.023851767145429404 C -0.038065269952142725 0.023742002573432452 -0.037937310541897334 0.02315841748610783 -0.03794901136985858 0.023211752075286415" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.2384042776345049) rotate(0) scale(1,1) translate(4.531817165381619E-05,-0.007618185234386916)"><path d="M 0.037858375026551004 0.023211752075286415 C 0.03787007585451225 0.023265086664464998 0.038022936315336715 0.023961531717426356 0.037998784962085905 0.023851767145429404 C 0.038022936315336715 0.023961531717426356 0.03816064179085026 0.024585356922068206 0.038148191265560696 0.024528926939249837" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.038148191265560696 0.024528926939249837 C 0.03804026193027795 0.02423457313374534 0.03665258827418245 0.02053938255361275 0.03685303924216776 0.02099668127319588 C 0.03665258827418245 0.02053938255361275 0.03555765517196028 0.018747326108935453 0.03574277964973693 0.019041342304252314 C 0.03555765517196028 0.018747326108935453 0.03442773834261986 0.017180037525464566 0.03463154550884795 0.017468486929393547 C 0.03442773834261986 0.017180037525464566 0.033166369955607955 0.015297791904106954 0.03329709365499989 0.015579949457104557 C 0.033166369955607955 0.015297791904106954 0.033109984027715846 0.013918072112710705 0.03306286111614476 0.01408259629342231 C 0.033109984027715846 0.013918072112710705 0.03399509046031102 0.013610310858401583 0.03386256859385295 0.01360565928856531 C 0.03399509046031102 0.013610310858401583 0.03476761277452606 0.014264202432166294 0.03465312351364158 0.014138415131457594 C 0.03476761277452606 0.014264202432166294 0.035285049408702085 0.015196497877537385 0.03523643972446666 0.015115106897069708" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03523643972446666 0.015115106897069708 C 0.03529763121005477 0.015232918779149075 0.03567109766874067 0.015960100071201983 0.03560358863799529 0.015821978189545907 C 0.03567109766874067 0.015960100071201983 0.03564781145409626 0.01596414818658288 0.03564149390893898 0.01594383818700617" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03564149390893898 0.01594383818700617 C 0.035587851243979146 0.015860417490671457 0.03490238898086644 0.014822949520334104 0.034997781929420935 0.014942789830989615 C 0.03490238898086644 0.014822949520334104 0.03441647457458417 0.014475704221359274 0.03449677852628508 0.014505754459140027 C 0.03441647457458417 0.014475704221359274 0.03401559706437507 0.014677789245655581 0.03403413450901005 0.014582186977620568 C 0.03401559706437507 0.014677789245655581 0.034377679369545076 0.01586539425169793 0.03427432919066531 0.015652981675560187 C 0.034377679369545076 0.01586539425169793 0.03543652916729423 0.017377086767176524 0.03527433665556723 0.017131137891273494 C 0.03543652916729423 0.017377086767176524 0.036377094239986474 0.018884503888046873 0.036220639331389304 0.01860436818639654 C 0.036377094239986474 0.018884503888046873 0.03728827353333012 0.020876714968484957 0.03715179555873331 0.02049276631107747 C 0.03728827353333012 0.020876714968484957 0.03791725664886914 0.023438334222303826 0.037858375026551004 0.023211752075286415" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.2384042776345049) rotate(0) scale(1,1) translate(0.00011198358255654973,-0.007639437628074994)"><path d="M -0.03872052070097486 0.02651250916723038 C -0.03856165382223266 0.02616367814846819 -0.036523693435551716 0.021794525303287023 -0.03681411815606841 0.022326536942084075 C -0.036523693435551716 0.021794525303287023 -0.03489810662337173 0.019710678972253138 -0.03523542405477455 0.02012836950166577 C -0.03489810662337173 0.019710678972253138 -0.032433428362408756 0.016877954572975924 -0.03276630897923458 0.017314250589132458 C -0.032433428362408756 0.016877954572975924 -0.031067840419806092 0.014502630050462303 -0.031240856652864663 0.01489281730778738 C -0.031067840419806092 0.014502630050462303 -0.030704003217943743 0.012330200812382227 -0.03069011418253172 0.012632003501231545 C -0.030704003217943743 0.012330200812382227 -0.031576538000032475 0.011163124782621792 -0.03140752507780896 0.011271185041595569 C -0.031576538000032475 0.011163124782621792 -0.03297277741288436 0.011510168130362984 -0.032718269249213915 0.011335280393546218 C -0.03297277741288436 0.011510168130362984 -0.03460690252457435 0.013539384340884308 -0.034461623041854315 0.013369837883396763" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.034461623041854315 0.013369837883396763 C -0.03437207849340365 0.013199097041994757 -0.033796813690219675 0.012101647430438213 -0.03392435575115035 0.012345392834984724 C -0.033796813690219675 0.012101647430438213 -0.033658373163790264 0.011834360892973192 -0.03369637067627028 0.011907365456117697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.03369637067627028 0.011907365456117697 C -0.033593659173761115 0.011762277519776012 -0.03221460634872989 0.009999278768244897 -0.03246383264616029 0.010166310220017467 C -0.03221460634872989 0.009999278768244897 -0.030430769979067615 0.010014011816747794 -0.030705655107105538 0.009902988034846846 C -0.030430769979067615 0.010014011816747794 -0.029061107629009045 0.011894240927065765 -0.029165211109705234 0.01149859560282886 C -0.029061107629009045 0.011894240927065765 -0.029657948760812604 0.015192129395740026 -0.029456413338751257 0.014650731925689695 C -0.029657948760812604 0.015192129395740026 -0.031978593072640955 0.018492941885967642 -0.0315836361744414 0.017995365243432843 C -0.031978593072640955 0.018492941885967642 -0.034578472601314546 0.021044050374762938 -0.03419589611714596 0.02062165163610727 C -0.034578472601314546 0.021044050374762938 -0.03657301528169803 0.023670595302866918 -0.036174553984464355 0.023064150107300868 C -0.03657301528169803 0.023670595302866918 -0.039211004825573936 0.028301897639199772 -0.038977431683950126 0.027898993982899856" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.038977431683950126 0.027898993982899856 C -0.038966944444028054 0.027840203453938533 -0.03883017555630396 0.027077967234058198 -0.038851584804885236 0.02719350763536399 C -0.03883017555630396 0.027077967234058198 -0.03870959869231567 0.02645575929488591 -0.03872052070097486 0.02651250916723038" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.2384042776345049) rotate(0) scale(1,1) translate(0.00011198358255654973,-0.007639437628074994)"><path d="M 0.03849655353586199 0.02651250916723038 C 0.03850747554452118 0.026569259039574848 0.03864902688835353 0.02730904803666978 0.038627617639772266 0.02719350763536399 C 0.03864902688835353 0.02730904803666978 0.03876395175875928 0.027957784511861178 0.038753464518837204 0.027898993982899856" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.038753464518837204 0.027898993982899856 C 0.03851989137721339 0.02749609032659994 0.035552125522117804 0.022457704911734818 0.03595058681935148 0.023064150107300868 C 0.035552125522117804 0.022457704911734818 0.033589352467864465 0.0201992528974516 0.03397192895203305 0.02062165163610727 C 0.033589352467864465 0.0201992528974516 0.030964712111128945 0.017497788600898043 0.03135966900932852 0.017995365243432843 C 0.030964712111128945 0.017497788600898043 0.02903091075157682 0.014109334455639364 0.029232446173638182 0.014650731925689695 C 0.02903091075157682 0.014109334455639364 0.029045347425288377 0.011102950278591955 0.028941243944592188 0.01149859560282886 C 0.029045347425288377 0.011102950278591955 0.030756573070030397 0.009791964252945897 0.030481687941992464 0.009902988034846846 C 0.030756573070030397 0.009791964252945897 0.03248909177847781 0.010333341671790038 0.0322398654810474 0.010166310220017467 C 0.03248909177847781 0.010333341671790038 0.03357511501366648 0.012052453392459382 0.03347240351115732 0.011907365456117697" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03347240351115732 0.011907365456117697 C 0.03351040102363734 0.011980370019262202 0.033827930646968096 0.012589138239531235 0.03370038858603741 0.012345392834984724 C 0.033827930646968096 0.012589138239531235 0.034327200425192106 0.013540578724798769 0.034237655876741435 0.013369837883396763" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034237655876741435 0.013369837883396763 C 0.034092376394021386 0.013200291425909217 0.032239793920430415 0.011160392656729452 0.03249430208410087 0.011335280393546218 C 0.032239793920430415 0.011160392656729452 0.031014544990472497 0.011379245300569345 0.031183557912696003 0.011271185041595569 C 0.031014544990472497 0.011379245300569345 0.030452257982006754 0.012933806190080863 0.030466147017418788 0.012632003501231545 C 0.030452257982006754 0.012933806190080863 0.03118990572081017 0.015283004565112456 0.03101688948775161 0.01489281730778738 C 0.03118990572081017 0.015283004565112456 0.03287522243094735 0.01775054660528899 0.03254234181412152 0.017314250589132458 C 0.03287522243094735 0.01775054660528899 0.03534877432106439 0.020546060031078405 0.03501145688966156 0.02012836950166577 C 0.03534877432106439 0.020546060031078405 0.036880575711472116 0.022858548580881127 0.03659015099095542 0.022326536942084075 C 0.036880575711472116 0.022858548580881127 0.0386554204146042 0.02686134018599257 0.03849655353586199 0.02651250916723038" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="獣性">
<g transform="translate(0.315504929485411,0.21971848710077124) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.010226769576342908 0.008815702222809722 C 0.010513408622316768 0.009149150854487857 0.014174451616341243 0.01355893024512439 0.013666438128029233 0.012817085802947353 C 0.014174451616341243 0.01355893024512439 0.01654430587842519 0.01812623133943306 0.016322931436087037 0.01771783552893416" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.016322931436087037 0.01771783552893416 C 0.015889346508678657 0.01739107408256936 0.010432778701215202 0.013347680140882178 0.011119912307186484 0.013796698172556533 C 0.010432778701215202 0.013347680140882178 0.00782377948586875 0.012207362563532356 0.008077328164431652 0.012329619148841908" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008077328164431652 0.012329619148841908 C 0.008173862312708325 0.012171222210800777 0.009414858061411001 0.010136029481845662 0.00923573794375173 0.010428855892348344 C 0.009414858061411001 0.010136029481845662 0.010309355545725499 0.008681272750348173 0.0102267695763429 0.008815702222809724" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35918197617193015,0.21971848710077124) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.009153900370438617 0.008815702222809724 C 0.009236486339821215 0.008950131695271275 0.01032405212068907 0.010721682302851025 0.010144932003029794 0.010428855892348344 C 0.01032405212068907 0.010721682302851025 0.011399875930626607 0.012488016086883038 0.01130334178234993 0.012329619148841908" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01130334178234993 0.012329619148841908 C 0.011049793103787028 0.01245187573415146 0.007573624033623827 0.014245716204230888 0.008260757639595107 0.013796698172556533 C 0.007573624033623827 0.014245716204230888 0.0026241535832861964 0.018044596975298963 0.0030577385106945743 0.01771783552893416" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0030577385106945743 0.01771783552893416 C 0.003279112953032718 0.017309439718435262 0.006222245307064306 0.012075241360770317 0.005714231818752302 0.012817085802947353 C 0.006222245307064306 0.012075241360770317 0.009440539416412477 0.008482253591131587 0.009153900370438617 0.008815702222809722" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋柄">
<g id="紋左">
<g transform="translate(0.315504929485411,0.21971848710077124) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.014429421411523882 0.02131056891779287 C 0.014530027457194597 0.021085535659772954 0.016879808336825744 0.021337535656835892 0.016784184153960106 0.02112773828489112 C 0.016879808336825744 0.021337535656835892 0.015380681377375178 0.023843373267205273 0.01557691160591153 0.023828137381130127 C 0.015380681377375178 0.023843373267205273 0.014530027457194597 0.021085535659772954 0.014429421411523882 0.02131056891779287 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.315504929485411,0.21971848710077124) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.007617130542380123 0.0227677036068472 C 0.007513793834904877 0.022575566911242333 0.00922467309742121 0.020326922594562584 0.009005628247825513 0.02033731803033383 C 0.00922467309742121 0.020326922594562584 0.010129960595408018 0.02284549050896837 0.010245668737528468 0.022642958377592257 C 0.010129960595408018 0.02284549050896837 0.007513793834904877 0.022575566911242333 0.007617130542380123 0.0227677036068472 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.315504929485411,0.21971848710077124) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.011297605179087749 0.016344320196340856 C 0.011305163012325908 0.016124306420636628 0.013425499261095285 0.014698597888139637 0.013268791562391467 0.014622102272735828 C 0.013425499261095285 0.014698597888139637 0.013013832031591574 0.017405785741486986 0.013178097563533551 0.01726226758118657 C 0.013013832031591574 0.017405785741486986 0.011305163012325908 0.016124306420636628 0.011297605179087749 0.016344320196340856 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋右">
<g transform="translate(0.35918197617193015,0.21971848710077124) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.007241418224942844 0.023828137381130127 C 0.007045187996406495 0.02381290149505498 0.006129769859759958 0.02091794091294635 0.006034145676894319 0.02112773828489112 C 0.006129769859759958 0.02091794091294635 0.00848951446500122 0.02153560217581279 0.00838890841933051 0.02131056891779287 C 0.00848951446500122 0.02153560217581279 0.007045187996406495 0.02381290149505498 0.007241418224942844 0.023828137381130127 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35918197617193015,0.21971848710077124) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.012572661093325917 0.022642958377592257 C 0.012456952951205469 0.022440426246216144 0.014031746432624595 0.020347713466105075 0.013812701583028898 0.02033731803033383 C 0.014031746432624595 0.020347713466105075 0.01509786258099903 0.02295984030245207 0.015201199288474278 0.0227677036068472 C 0.01509786258099903 0.02295984030245207 0.012456952951205469 0.022440426246216144 0.012572661093325917 0.022642958377592257 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35918197617193015,0.21971848710077124) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.009640232267320838 0.01726226758118657 C 0.009475966735378864 0.01711874942088615 0.009706245967166762 0.01454560665733202 0.009549538268462946 0.014622102272735828 C 0.009706245967166762 0.01454560665733202 0.011528282485004784 0.016564333972045084 0.011520724651766626 0.016344320196340856 C 0.011528282485004784 0.016564333972045084 0.009475966735378864 0.01711874942088615 0.009640232267320838 0.01726226758118657 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="鱗">
<g id="左">
<g transform="translate(0.315504929485411,0.21971848710077124) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08846626994297813 0.09499608264522486 C 0.08783991642003741 0.09493051479695214 0.08547771852705871 0.09300898771488438 0.08580581526655591 0.09353314534183499 C 0.08547771852705871 0.09300898771488438 0.08603291468929605 0.0903568677357059 0.0858414960270005 0.09080282162961997 C 0.08603291468929605 0.0903568677357059 0.08790817128680645 0.09012431782595065 0.0873371645649203 0.08996551419052248 C 0.08790817128680645 0.09012431782595065 0.09084448466273484 0.09258477245523213 0.09040954980208968 0.09207325071304534 C 0.09084448466273484 0.09258477245523213 0.09057373346769272 0.09442304211953922 0.09081664345008167 0.09405768812801679 C 0.09057373346769272 0.09442304211953922 0.08783991642003741 0.09493051479695214 0.08846626994297813 0.09499608264522486 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.315504929485411,0.21971848710077124) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08534675765976332 0.10018384745709424 C 0.08474465666591419 0.10015392161676498 0.08277049923840084 0.09869574063796219 0.08307434344880646 0.09919613692628382 C 0.08277049923840084 0.09869574063796219 0.08311348577108682 0.09571096191797811 0.08291600397651837 0.09618067715052114 C 0.08311348577108682 0.09571096191797811 0.0852009519981486 0.09556157669342427 0.08465419780535403 0.09543841506593956 C 0.0852009519981486 0.09556157669342427 0.08769465671815556 0.09766561124327117 0.08729003751887487 0.09716597017039887 C 0.08769465671815556 0.09766561124327117 0.08764824141721057 0.09981277830975488 0.08789115139959952 0.09943554364891796 C 0.08764824141721057 0.09981277830975488 0.08474465666591419 0.10015392161676498 0.08534675765976332 0.10018384745709424 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="右">
<g transform="translate(0.35918197617193015,0.21971848710077124) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08077750657910282 0.09405768812801679 C 0.08053459659671387 0.09369233413649436 0.08161953508773989 0.09156172897085856 0.08118460022709473 0.09207325071304534 C 0.08161953508773989 0.09156172897085856 0.08482799218615028 0.08980671055509432 0.08425698546426413 0.08996551419052248 C 0.08482799218615028 0.08980671055509432 0.08594407266447945 0.09124877552353404 0.0857526540021839 0.09080282162961997 C 0.08594407266447945 0.09124877552353404 0.08546023802313138 0.0940573029687856 0.08578833476262858 0.09353314534183499 C 0.08546023802313138 0.0940573029687856 0.08250152656326562 0.09506165049349757 0.08312788008620633 0.09499608264522486 C 0.08250152656326562 0.09506165049349757 0.08053459659671387 0.09369233413649436 0.08077750657910282 0.09405768812801679 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35918197617193015,0.21971848710077124) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08370299862958494 0.09943554364891796 C 0.08346008864719599 0.09905830898808105 0.08470873170959022 0.09666632909752657 0.08430411251030953 0.09716597017039887 C 0.08470873170959022 0.09666632909752657 0.08748670641662497 0.09531525343845484 0.0869399522238304 0.09543841506593956 C 0.08748670641662497 0.09531525343845484 0.08887562784723449 0.09665039238306418 0.08867814605266604 0.09618067715052114 C 0.08887562784723449 0.09665039238306418 0.08821596236997242 0.09969653321460545 0.08851980658037803 0.09919613692628382 C 0.08821596236997242 0.09969653321460545 0.085645291375572 0.10021377329742351 0.08624739236942114 0.10018384745709424 C 0.085645291375572 0.10021377329742351 0.08346008864719599 0.09905830898808105 0.08370299862958494 0.09943554364891796 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.315504929485411,0.21971848710077124) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.053906824017354645 0.05397358268608039 C 0.053694486626594776 0.054469506266728904 0.051114480432403735 0.06049799074277035 0.051358775328236225 0.059924665653862536 C 0.051114480432403735 0.06049799074277035 0.05094332776229213 0.060930885261233414 0.05097528526736475 0.060853483752974113" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05097528526736475 0.060853483752974113 C 0.05098569898208783 0.06093099390371451 0.05118496110765542 0.062357774243319154 0.05110024984404175 0.061783605561858884 C 0.05118496110765542 0.062357774243319154 0.052066117979619436 0.06824016646121725 0.05199182043072884 0.06774350793049738" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05199182043072884 0.06774350793049738 C 0.05186169756519464 0.06735628440502921 0.050279471442460436 0.06265235769038394 0.0504303460443184 0.06309682562487923 C 0.050279471442460436 0.06265235769038394 0.050160573472109594 0.06235264830752676 0.050181325208433346 0.06240989271655387" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.050181325208433346 0.06240989271655387 C 0.05014467181518547 0.062466989935206614 0.04946713590930471 0.06353843697581263 0.04974148448945883 0.06309505934038676 C 0.04946713590930471 0.06353843697581263 0.046651447059677706 0.06811670475843752 0.04688914224658395 0.06773042434166439" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04688914224658395 0.06773042434166439 C 0.04710147963734382 0.06723450076101588 0.049681485831534866 0.06120601628497437 0.049437190935702376 0.06177934137388219 C 0.049681485831534866 0.06120601628497437 0.04985263850164647 0.0607731217665113 0.04982068099657385 0.0608505232747706" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04982068099657385 0.0608505232747706 C 0.04981026728185077 0.060773013124030204 0.04961100515628319 0.059346232784425565 0.04969571641989686 0.05992040146588583 C 0.04961100515628319 0.059346232784425565 0.048729848284319165 0.05346384056652753 0.04880414583320976 0.0539604990972474" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04880414583320976 0.0539604990972474 C 0.04893426869874396 0.054347722622715575 0.05051649482147817 0.059051649337360776 0.05036562021962022 0.058607181402865485 C 0.05051649482147817 0.059051649337360776 0.050635392791829 0.05935135872021802 0.05061464105550525 0.0592941143111909" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05061464105550525 0.0592941143111909 C 0.050651294448753124 0.059237017092538154 0.0513288303546339 0.05816557005193209 0.051054481774479785 0.058608947687357964 C 0.0513288303546339 0.05816557005193209 0.05414451920426088 0.05358730226930726 0.053906824017354645 0.05397358268608039" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35918197617193015,0.21971848710077124) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.0474022371610495 0.05397358268608041 C 0.047639932347955743 0.05435986310285354 0.050528927984078535 0.059052325322783844 0.050254579403924415 0.05860894768735797 C 0.050528927984078535 0.059052325322783844 0.05073107351614683 0.059351211529843656 0.05069442012289895 0.05929411431119091" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05069442012289895 0.05929411431119091 C 0.050715171859222696 0.05923686990216379 0.05109431556064188 0.05816271346837021 0.05094344095878392 0.0586071814028655 C 0.05109431556064188 0.05816271346837021 0.052635038210728666 0.05357327557177923 0.052504915345194456 0.05396049909724741" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.052504915345194456 0.05396049909724741 C 0.05243061779630386 0.054457157627967274 0.05152863349489365 0.060494570147346105 0.051613344758507325 0.05992040146588584 C 0.05152863349489365 0.060494570147346105 0.05147796646710729 0.060928033425510994 0.05148838018183037 0.0608505232747706" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05148838018183037 0.0608505232747706 C 0.05152033768690299 0.0609279247830299 0.052116165138534294 0.06235266646279002 0.051871870242701804 0.061779341373882204 C 0.052116165138534294 0.06235266646279002 0.05463225632258017 0.0682263479223129 0.05441991893182029 0.06773042434166439" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05441991893182029 0.06773042434166439 C 0.05418222374491405 0.06734414392489126 0.05129322810879126 0.0626516817049609 0.05156757668894538 0.06309505934038677 C 0.05129322810879126 0.0626516817049609 0.051091082576722964 0.06235279549790113 0.05112773596997084 0.06240989271655387" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05112773596997084 0.06240989271655387 C 0.05110698423364709 0.06246713712558099 0.0507278405322279 0.06354129355937452 0.05087871513408586 0.06309682562487923 C 0.0507278405322279 0.06354129355937452 0.049187117882141126 0.06813073145596557 0.04931724074767534 0.0677435079304974" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04931724074767534 0.0677435079304974 C 0.04939153829656593 0.06724684939977751 0.050293522597976134 0.06120943688039863 0.05020881133436246 0.0617836055618589 C 0.050293522597976134 0.06120943688039863 0.050344189625762495 0.060775973602233725 0.050333775911039415 0.06085348375297412" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.050333775911039415 0.06085348375297412 C 0.05030181840596679 0.06077608224471482 0.04970599095433549 0.05935134056495474 0.04995028585016798 0.05992466565386255 C 0.04970599095433549 0.05935134056495474 0.047189899770289624 0.053477659105431896 0.0474022371610495 0.05397358268608041" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.315504929485411,0.21971848710077124) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.0022028026413389414 0.03364564429567102 C 0.0024141666202975236 0.033553013780144 0.005161898346759088 0.032348817078292715 0.004739170388841926 0.03253407810934676 C 0.005161898346759088 0.032348817078292715 0.007486902115303472 0.03132988140749546 0.007275538136344891 0.03142251192302248" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007275538136344891 0.03142251192302248 C 0.007499146035283344 0.03137752595332492 0.01040604872148323 0.03079270834725674 0.009958832923606324 0.030882680286651844 C 0.01040604872148323 0.03079270834725674 0.012865735609806209 0.03029786268058366 0.012642127710867757 0.030342848650281213" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012642127710867757 0.030342848650281213 C 0.012430763731909175 0.030435479165808233 0.009683032005447616 0.03163967586765951 0.01010575996336478 0.03145441483660547 C 0.009683032005447616 0.03163967586765951 0.007358028236903217 0.032658611538456755 0.007569392215861798 0.032565981022929735" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007569392215861798 0.032565981022929735 C 0.007345784316923346 0.03261096699262729 0.004438881630723468 0.03319578459869549 0.004886097428600373 0.033105812659300383 C 0.004438881630723468 0.03319578459869549 0.001979194742400489 0.033690630265368574 0.0022028026413389414 0.03364564429567102" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35918197617193015,0.21971848710077124) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.018929175143991093 0.033645644295671 C 0.018705567245052644 0.03360065832597345 0.015798664558852808 0.033015840719905314 0.01624588035672971 0.03310581265930042 C 0.015798664558852808 0.033015840719905314 0.013338977670529821 0.0325209950532322 0.013562585569468273 0.032565981022929756" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013562585569468273 0.032565981022929756 C 0.013351221590509688 0.03247335050740273 0.010603489864048096 0.03126915380555141 0.01102621782196526 0.03145441483660545 C 0.010603489864048096 0.03126915380555141 0.008278486095503737 0.030250218134754217 0.008489850074462315 0.030342848650281234" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008489850074462315 0.030342848650281234 C 0.008713457973400764 0.030387834619978783 0.011620360659600598 0.030972652226046907 0.011173144861723695 0.030882680286651806 C 0.011620360659600598 0.030972652226046907 0.014080047547923599 0.03146749789272002 0.013856439648985145 0.031422511923022464" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013856439648985145 0.031422511923022464 C 0.014067803627943729 0.03151514243854949 0.016815535354405307 0.03271933914040083 0.016392807396488143 0.03253407810934678 C 0.016815535354405307 0.03271933914040083 0.019140539122949673 0.03373827481119802 0.018929175143991093 0.033645644295671" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31700854633860587,0.24129954050680744) rotate(0) scale(1,1) translate(-0.022986364471475812,-0.022986364471475812)"><path d="M 0.017341837192536094 0.0160889797055526 C 0.01757520379793631 0.015755326712429067 0.02033284708123666 0.012183150665222547 0.020142236457338654 0.01208514378807023 C 0.02033284708123666 0.012183150665222547 0.019586408697809955 0.017696722101656254 0.019629164679312163 0.017265062231380406" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019629164679312163 0.017265062231380406 C 0.019597652176317 0.01750152664752494 0.01914005886572172 0.02062572301343423 0.019251014643370194 0.02010263522511483 C 0.01914005886572172 0.02062572301343423 0.0182182520728772 0.023828739063388095 0.018297695347530507 0.023542115691213228" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.018297695347530507 0.023542115691213228 C 0.0180396253745473 0.023919540422677178 0.014994826316359006 0.028066848283354425 0.015200855671732023 0.02807121246878061 C 0.014994826316359006 0.028066848283354425 0.015877383700664487 0.023107956549208886 0.015825343083054298 0.02348974546609902" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015825343083054298 0.02348974546609902 C 0.015823947989108217 0.02316868478548232 0.01593497646482481 0.019020286818653084 0.01580860195570133 0.019637017298698618 C 0.01593497646482481 0.019020286818653084 0.017469606795605656 0.015793309906123765 0.017341837192536094 0.0160889797055526" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3576783593187355,0.24129954050680744) rotate(0) scale(1,1) translate(-0.022986364471475812,-0.022986364471475812)"><path d="M 0.028630891750415555 0.0160889797055526 C 0.02875866135348512 0.016384649504981433 0.03029050149637384 0.02025374777874415 0.03016412698725035 0.019637017298698618 C 0.03029050149637384 0.02025374777874415 0.030145990765951324 0.02381080614671572 0.030147385859897402 0.02348974546609902" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.030147385859897402 0.02348974546609902 C 0.03019942647750759 0.023871534382989154 0.030565843915846647 0.028075576654206794 0.030771873271219663 0.02807121246878061 C 0.030565843915846647 0.028075576654206794 0.027416963622438024 0.023164690959749278 0.027675033595421228 0.023542115691213228" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.027675033595421228 0.023542115691213228 C 0.027595590320767915 0.02325549231903836 0.026610758521933 0.01957954743679543 0.026721714299581478 0.02010263522511483 C 0.026610758521933 0.01957954743679543 0.026312051760644318 0.01702859781523587 0.026343564263639485 0.017265062231380406" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.026343564263639485 0.017265062231380406 C 0.026300808282137277 0.016833402361104557 0.026021103109510984 0.011987136910917913 0.025830492485612977 0.01208514378807023 C 0.026021103109510984 0.011987136910917913 0.02886425835581577 0.01642263269867613 0.028630891750415555 0.0160889797055526" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33734345282867056,0.2626991025559258) rotate(0) scale(1,1) translate(-0.032753407916317374,-0.032753407916317374)"><path d="M 0.028595592495859894 0.033626797453719506 C 0.028670556132018438 0.033832858322257964 0.02852062885970135 0.03548134527056561 0.028595592495859894 0.03527528440202715 C 0.02852062885970135 0.03548134527056561 0.027546101589640284 0.03609952787618098 0.02769602886195737 0.03609952787618098 C 0.027546101589640284 0.03609952787618098 0.026721501591896315 0.035069223533488694 0.026796465228054858 0.03527528440202715 C 0.026721501591896315 0.035069223533488694 0.0268714288642134 0.03342073658518105 0.026796465228054858 0.033626797453719506 C 0.0268714288642134 0.03342073658518105 0.027845956134274458 0.03280255397956568 0.02769602886195737 0.03280255397956568 C 0.027845956134274458 0.03280255397956568 0.028670556132018438 0.033832858322257964 0.028595592495859894 0.033626797453719506 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33734345282867056,0.2626991025559258) rotate(0) scale(1,1) translate(-0.032753407916317374,-0.032753407916317374)"><path d="M 0.037810786970677523 0.03280255397956568 C 0.0379607142429946 0.03280255397956568 0.03878531424073848 0.033832858322257964 0.038710350604579946 0.033626797453719506 C 0.03878531424073848 0.033832858322257964 0.03863538696842141 0.03548134527056561 0.038710350604579946 0.03527528440202715 C 0.03863538696842141 0.03548134527056561 0.037660859698360444 0.03609952787618098 0.037810786970677523 0.03609952787618098 C 0.037660859698360444 0.03609952787618098 0.03683625970061643 0.035069223533488694 0.036911223336774976 0.03527528440202715 C 0.03683625970061643 0.035069223533488694 0.03698618697293352 0.03342073658518105 0.036911223336774976 0.033626797453719506 C 0.03698618697293352 0.03342073658518105 0.0379607142429946 0.03280255397956568 0.037810786970677523 0.03280255397956568 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 84 KiB

View File

@@ -0,0 +1,178 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.24784340432461505) rotate(0) scale(1,1) translate(-0.5000000000000002,-0.5027560368733484)"><path d="M 0.4797179758448602 0.47210778026026223 C 0.4799444155112451 0.47129708399980275 0.48328033618127686 0.4609752580221266 0.48243525184147934 0.4623794251347485 C 0.48328033618127686 0.4609752580221266 0.4913227169356403 0.45444707864833983 0.4898589879224302 0.4552577749087993 C 0.4913227169356403 0.45444707864833983 0.5016901686795953 0.45265107000923466 0.5000000000000002 0.45265107000923466 C 0.5016901686795953 0.45265107000923466 0.5116047410907802 0.4560684711692588 0.5101410120775701 0.4552577749087993 C 0.5116047410907802 0.4560684711692588 0.5184098324983185 0.4637835922473704 0.517564748158521 0.4623794251347485 C 0.5184098324983185 0.4637835922473704 0.520508463821525 0.4729184765207217 0.5202820241551401 0.47210778026026223" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5202820241551401 0.47210778026026223 C 0.5206031562042632 0.47269284989052135 0.5248792829636385 0.4802987550838901 0.5241356087446167 0.47912861582337185 C 0.5248792829636385 0.4802987550838901 0.5296286569533005 0.4867345210167404 0.5292061147834017 0.4861494513864813" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5292061147834017 0.4861494513864813 C 0.5293582299645653 0.4866429134636549 0.5315836187260321 0.4933642713792419 0.5310314969573644 0.49207099631256435 C 0.5315836187260321 0.4933642713792419 0.5362315825949183 0.5024685651761154 0.5358315760074142 0.5016687521866114" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5358315760074142 0.5016687521866114 C 0.5359977002534245 0.5022577741122469 0.5381074501114262 0.510144458087274 0.5378250669595382 0.508737015294237 C 0.5381074501114262 0.510144458087274 0.5391426085859086 0.5201326043112421 0.5392201738300705 0.5185580657030563 C 0.5391426085859086 0.5201326043112421 0.5361195202309377 0.5290477432905308 0.5368942840295949 0.5276314785924671 C 0.5361195202309377 0.5290477432905308 0.5284484027530066 0.5364799948706956 0.5299230082461828 0.5355532420798217 C 0.5284484027530066 0.5364799948706956 0.5173698320480079 0.5387715450664196 0.5191990181114815 0.5387525120829542 C 0.5173698320480079 0.5387715450664196 0.5063728573085428 0.5350015925471205 0.5079727754844995 0.5357816378814061 C 0.5063728573085428 0.5350015925471205 0.4993356020429586 0.5288594955873703 0.5000000000000002 0.5293919680715269" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5000000000000002 0.5293919680715269 C 0.4993356020429585 0.5299244405556834 0.49042730633954307 0.5365616832156918 0.49202722451549996 0.5357816378814061 C 0.49042730633954307 0.5365616832156918 0.4789717958250443 0.5387334790994889 0.48080098188851755 0.5387525120829543 C 0.4789717958250443 0.5387334790994889 0.46860238626064454 0.534626489288948 0.4700769917538206 0.5355532420798219 C 0.46860238626064454 0.534626489288948 0.46233095217174697 0.5262152138944035 0.46310571597040456 0.5276314785924673 C 0.46233095217174697 0.5262152138944035 0.46070226092576744 0.5169835270948705 0.46077982616992935 0.5185580657030564 C 0.46070226092576744 0.5169835270948705 0.46245731619234987 0.5073295725011999 0.4621749330404618 0.508737015294237 C 0.46245731619234987 0.5073295725011999 0.46433454823859643 0.501079730260976 0.46416842399258607 0.5016687521866114" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.46416842399258607 0.5016687521866114 C 0.46456843058009023 0.5008689391971075 0.46952062481130363 0.4907777212458868 0.46896850304263593 0.49207099631256435 C 0.46952062481130363 0.4907777212458868 0.470946000397762 0.4856559893093077 0.4707938852165985 0.4861494513864813" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.4707938852165985 0.4861494513864813 C 0.4712164273864972 0.4855643817562222 0.4766080654744054 0.4779584765628536 0.47586439125538355 0.47912861582337185 C 0.4766080654744054 0.4779584765628536 0.4800391078939832 0.4715227106300031 0.47971797584486014 0.47210778026026223" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286705,0.26454005283103343) rotate(0) scale(1,1) translate(-0.09500000000000001,-0.10078471569180053)"><path d="M 0.1063398522164957 0.0899618563029558 C 0.1061109384960548 0.0904029009962119 0.10326580629235121 0.09613932853183194 0.10359288757120493 0.09525439262202884 C 0.10326580629235121 0.09613932853183194 0.10231670931183832 0.10102497843713991 0.10241487687025114 0.1005810872205929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10241487687025114 0.1005810872205929 C 0.10237864837252308 0.10072898418315603 0.10189073355740742 0.10261562843525586 0.10198013489751442 0.10235585077135032 C 0.10189073355740742 0.10261562843525586 0.10128888794658823 0.1038102998888018 0.10134206078896717 0.10369841918745938" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10134206078896717 0.10369841918745938 C 0.10126227647854223 0.10379335197666913 0.10021721508340686 0.105014523974892 0.10038464906386799 0.10483761265797638 C 0.10021721508340686 0.105014523974892 0.09924520335339745 0.10590333351815276 0.09933285302343364 0.10582135499044688" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.09933285302343364 0.10582135499044688 C 0.09919142643134653 0.10588384324099014 0.09727260723551859 0.10666213743906781 0.09763573391838824 0.10657121399696597 C 0.09727260723551859 0.10666213743906781 0.09453604384259978 0.10691243629566903 0.09497533282899781 0.10691243629566903 C 0.09453604384259978 0.10691243629566903 0.0920052505939092 0.10648029055486412 0.09236426608161181 0.10657121399696597 C 0.0920052505939092 0.10648029055486412 0.0905257203844793 0.10575886673990363 0.09066714697656642 0.10582135499044688" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.09066714697656642 0.10582135499044688 C 0.09057949730653023 0.10573937646274101 0.089447916955671 0.10466070134106076 0.08961535093613213 0.10483761265797638 C 0.089447916955671 0.10466070134106076 0.08857815490060798 0.10360348639824964 0.08865793921103292 0.10369841918745938" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08865793921103292 0.10369841918745938 C 0.08860476636865398 0.10358653848611696 0.08793046376237865 0.10209607310744477 0.08801986510248565 0.10235585077135032 C 0.08793046376237865 0.10209607310744477 0.08754889463202081 0.10043319025802978 0.08758512312974888 0.1005810872205929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08758512312974888 0.1005810872205929 C 0.08748695557133607 0.1001371960040459 0.08608003114994138 0.09436945671222574 0.08640711242879509 0.09525439262202884 C 0.08608003114994138 0.09436945671222574 0.08343123406306352 0.08952081160969971 0.0836601477835044 0.0899618563029558" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23715836376383106) rotate(0) scale(1,1) translate(-0.095,-0.09632994090643211)"><path d="M 0.07497818711520889 0.07653922078693011 C 0.07591099396729327 0.07590137127215574 0.08857603130226899 0.06824717709486335 0.08617186934022152 0.06888502660963772 C 0.08857603130226899 0.06824717709486335 0.10623229262182599 0.06952287612441209 0.10382813065977851 0.06888502660963772 C 0.10623229262182599 0.06952287612441209 0.11595461973687554 0.07717707030170448 0.11502181288479116 0.07653922078693011" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11502181288479116 0.07653922078693011 C 0.11532484086123342 0.077340682895676 0.1185510077164761 0.08858240293011144 0.11865814860209824 0.08615676609188086 C 0.1185510077164761 0.08858240293011144 0.11332595339526119 0.10727103757518172 0.11373612225732559 0.10564686284569703" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11373612225732559 0.10564686284569703 C 0.11351740151644449 0.10586119754128821 0.11049641870710403 0.10882309599823564 0.11111147336675242 0.10821887919279123 C 0.11049641870710403 0.10882309599823564 0.10595913242277756 0.11328734662088316 0.10635546634154486 0.11289746451102993" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10635546634154486 0.11289746451102993 C 0.10601608076609342 0.11305306082439705 0.1013365505743323 0.11505775711019567 0.1022828394361277 0.1147646202714354 C 0.1013365505743323 0.11505775711019567 0.09378619342731208 0.11641510657615319 0.09500000000000003 0.11641510657615319 C 0.09378619342731208 0.11641510657615319 0.08677087170207695 0.11447148343267513 0.08771716056387235 0.1147646202714354 C 0.08677087170207695 0.11447148343267513 0.08330514808300377 0.11274186819766281 0.0836445336584552 0.11289746451102993" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0836445336584552 0.11289746451102993 C 0.0832481997396879 0.1125075824011767 0.07827347197359923 0.10761466238734682 0.07888852663324762 0.10821887919279123 C 0.07827347197359923 0.10761466238734682 0.07604515700179337 0.10543252815010586 0.07626387774267447 0.10564686284569703" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07626387774267447 0.10564686284569703 C 0.07585370888061009 0.10402268811621235 0.07123471051227971 0.08373112925365028 0.07134185139790185 0.08615676609188086 C 0.07123471051227971 0.08373112925365028 0.07528121509165114 0.07573775867818422 0.07497818711520889 0.07653922078693011" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.21987155614485115) rotate(0) scale(1,1) translate(-0.027392108961499424,-0.025875389182202276)"><path d="M 0.04046858311886087 0.0245780556502559 C 0.040169215445940896 0.024662540950586738 0.03624785216975137 0.025699597709954475 0.03687617104382121 0.025591879254225954 C 0.03624785216975137 0.025699597709954475 0.03259980542887289 0.025893910274395814 0.03292875663002276 0.025870677118998132" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03292875663002276 0.025870677118998132 C 0.03246736932431248 0.025918803804302754 0.026469334350078873 0.026448197342653603 0.027392108961499427 0.026448197342653603 C 0.026469334350078873 0.026448197342653603 0.021394073987265828 0.025822550433693515 0.021855461292976105 0.025870677118998136" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.021855461292976105 0.025870677118998136 C 0.021526510091826233 0.025847443963600454 0.017279728005107815 0.025484160798497437 0.017908046879177655 0.025591879254225958 C 0.017279728005107815 0.025484160798497437 0.014016267131218072 0.024493570349925064 0.01431563480413804 0.024578055650255903" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="筋肉">
<g transform="translate(0.3373434528286706,0.23715836376383104) rotate(0) scale(1,1) translate(-0.006218922926089482,-0.009647509792301043)"><path d="M 0.011451846736499455 0.007591506757991204 C 0.011369837488081264 0.007647649220588411 0.010231735823159805 0.008397839071767135 0.010467735755481149 0.00826521630915768 C 0.010231735823159805 0.008397839071767135 0.008465856864740174 0.009259460209316924 0.008619847548643327 0.009182979909304674" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008619847548643327 0.009182979909304674 C 0.00841977049676384 0.009281171754351582 0.005818768822330509 0.010356215297894138 0.006218922926089482 0.010361282049867571 C 0.005818768822330509 0.010356215297894138 0.003617921251656156 0.009018920288603129 0.0038179983035356428 0.00912217888562347" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0038179983035356428 0.00912217888562347 C 0.003664007619632491 0.009040631833637788 0.001734110164376478 0.008000857995238949 0.001970110096697822 0.008143614261795272 C 0.001734110164376478 0.008000857995238949 0.000903989867261324 0.007347894472376951 0.000985999115679516 0.007409103686947591" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33080353711486177,0.22274431948109802) rotate(0) scale(1,1) translate(-0.03649433879459807,-0.02487077539596666)"><path d="M 0.036165054023246546 0.03457606091321448 C 0.035959282876937566 0.03440695827700532 0.033325338635225556 0.032143589339547696 0.03369580026753882 0.032546829278704566 C 0.033325338635225556 0.032143589339547696 0.031554823949483085 0.029503044340384376 0.03171951443548737 0.029737181643332083" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03171951443548737 0.029737181643332083 C 0.03158356629046793 0.029321385187265132 0.03009285341112644 0.024155440973668004 0.03008813669525401 0.024747624170528667 C 0.03009285341112644 0.024155440973668004 0.03191677988684844 0.022454596540210432 0.031776115025956564 0.022630983281004144" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031776115025956564 0.022630983281004144 C 0.03231427347502231 0.022640239494244502 0.038980871018160834 0.022773681654588086 0.03823401641474555 0.02274205783988844 C 0.038980871018160834 0.022773681654588086 0.04094706642128947 0.023032836658859173 0.04073837026693994 0.023010469057399886" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04073837026693994 0.023010469057399886 C 0.04084033919905746 0.02316398353356927 0.04206848872237339 0.02548028725982726 0.041961997452350186 0.024852642771432513 C 0.04206848872237339 0.02548028725982726 0.04202078784512406 0.031016332930362232 0.042016265507218375 0.03054220291813687" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.042016265507218375 0.03054220291813687 C 0.04179160959219266 0.030900236807170023 0.03883279356991218 0.03517476441945785 0.03932039452690983 0.034838609586534716 C 0.03883279356991218 0.03517476441945785 0.035902108981274605 0.03455418185710446 0.036165054023246546 0.03457606091321448" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34388336854247936,0.22274431948109802) rotate(0) scale(1,1) translate(-0.03649433879459807,-0.02487077539596666)"><path d="M 0.03682362356594955 0.03457606091321448 C 0.03656067852397761 0.034597939969324504 0.03318068210528865 0.034502454753611585 0.033668283062286294 0.034838609586534716 C 0.03318068210528865 0.034502454753611585 0.03074775616695209 0.030184169029103716 0.030972412081977797 0.03054220291813687" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030972412081977797 0.03054220291813687 C 0.03097693441988348 0.030068072905911507 0.031133171406869168 0.024224998283037764 0.031026680136845966 0.024852642771432513 C 0.031133171406869168 0.024224998283037764 0.03235227625437376 0.0228569545812305 0.032250307322256234 0.023010469057399886" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.032250307322256234 0.023010469057399886 C 0.03245900347660577 0.022988101455940598 0.035501515777865915 0.022710434025188794 0.034754661174450634 0.02274205783988844 C 0.035501515777865915 0.022710434025188794 0.04175072101230537 0.022621727067763785 0.04121256256323962 0.022630983281004144" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04121256256323962 0.022630983281004144 C 0.0413532274241315 0.022807370021797856 0.04290525760981457 0.02533980736738933 0.042900540893942136 0.024747624170528667 C 0.04290525760981457 0.02533980736738933 0.041133215008689335 0.030152978099399035 0.04126916315370878 0.029737181643332083" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04126916315370878 0.029737181643332083 C 0.04110447266770449 0.02997131894627979 0.03892241568934408 0.032950069217861436 0.039292877321657343 0.032546829278704566 C 0.03892241568934408 0.032950069217861436 0.036617852419640565 0.03474516354942364 0.03682362356594955 0.03457606091321448" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3157769004770384,0.21953542623256544) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.012374892246811325 0.015608519878510644 C 0.011917942730245665 0.015155605532303648 0.008975380152993859 0.011932245664021675 0.009633195147417364 0.012891033801268669 C 0.008975380152993859 0.011932245664021675 0.008227136802412455 0.009349917263988683 0.008428002280270299 0.00985579105502868" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3589100051803027,0.21953542623256544) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.004528087149082688 0.00985579105502868 C 0.004327221671224842 0.010361664846068678 0.002665079287512101 0.013849821938515663 0.0033228942819356106 0.012891033801268669 C 0.002665079287512101 0.013849821938515663 0.00012424766597596612 0.01606143422471764 0.0005811971825416296 0.015608519878510644" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3169666551230875,0.23997858678515727) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.008117085971517946 0.016764994511527853 C 0.007938810827591548 0.016439265420316023 0.005664283190704173 0.01218451262789532 0.005977784244401178 0.012856245416985875 C 0.005664283190704173 0.01218451262789532 0.004219847417383281 0.008358197344562472 0.004355073327153888 0.008704201042441195" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35772025053425377,0.23997858678515727) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.0086010161021991 0.008704201042441195 C 0.008465790192428496 0.009050204740319917 0.006664804131254854 0.01352797820607643 0.0069783051849518565 0.012856245416985875 C 0.006664804131254854 0.01352797820607643 0.004660728313908667 0.017090723602739683 0.004839003457835066 0.016764994511527853" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3373434528286705,0.22437515707292727) rotate(0) scale(1,1) translate(-0.017697491909778828,-0.017697491909778828)"><path d="M 0.015936232638433596 0.01769749190977883 C 0.015979221046529372 0.017601492451767897 0.01659886514152837 0.01640973467814811 0.016452093535582933 0.016545498413647636 C 0.01659886514152837 0.01640973467814811 0.017905058305478137 0.016068327083784494 0.01769749190977882 0.016068327083784494 C 0.017905058305478137 0.016068327083784494 0.01908966188992015 0.01668126214914716 0.018942890283974712 0.016545498413647632 C 0.01908966188992015 0.01668126214914716 0.019501739589219837 0.017793491367789762 0.019458751181124057 0.017697491909778828" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019458751181124057 0.017697491909778828 C 0.01937215593361625 0.017899528461348128 0.018272836605084934 0.020614702605608697 0.01841960821103037 0.02012193052861041 C 0.018272836605084934 0.020614702605608697 0.017637315551341202 0.023901492359187277 0.01769749190977883 0.023610756833758288" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01769749190977883 0.023610756833758288 C 0.017637315551341202 0.0233200213083293 0.016828604002581845 0.01962915845161212 0.01697537560852728 0.02012193052861041 C 0.016828604002581845 0.01962915845161212 0.015849637390925788 0.01749545535820953 0.015936232638433596 0.01769749190977883" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.22437515707292727) rotate(0) scale(1,1) translate(-0.35878523175949983,-0.3587852317595001)"><path d="M 0.3591292968750171 0.3574260459463944 C 0.3591756892959546 0.3574693095116927 0.35975011867518236 0.3580584742143996 0.35968600592626715 0.35794520872997415 C 0.35975011867518236 0.3580584742143996 0.35989864986199993 0.3589252355977544 0.35989864986199993 0.35878523175950006 C 0.35989864986199993 0.3589252355977544 0.35962189317735194 0.3597385202734517 0.35968600592626715 0.35962525478902624 C 0.35962189317735194 0.3597385202734517 0.35902556026816007 0.3601876811379041 0.3591292968750171 0.3601444175726058 C 0.35902556026816007 0.3601876811379041 0.3583374300371256 0.36010115400730747 0.3584411666439826 0.3601444175726058 C 0.3583374300371256 0.36010115400730747 0.3578203448438175 0.35951198930460077 0.3578844575927327 0.35962525478902624 C 0.3578203448438175 0.35951198930460077 0.35767181365699985 0.3586452279212457 0.35767181365699985 0.35878523175950006 C 0.35767181365699985 0.3586452279212457 0.3579485703416479 0.3578319432455487 0.3578844575927327 0.35794520872997415 C 0.3579485703416479 0.3578319432455487 0.35848755906492014 0.35738278238109605 0.3584411666439826 0.3574260459463944" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="虫性">
<g transform="translate(0.3373434528286707,0.2440104653354848) rotate(0) scale(1,1) translate(-0.019192864762988458,-0.012340763191334692)"><path d="M -0.0073220076384178726 -0.004089957097726987 C -0.00687028609731228 -0.004064609079737831 -0.0010769637215450067 -0.003410582191408991 -0.0019013491451507656 -0.003785780881857115 C -0.0010769637215450067 -0.003410582191408991 0.002943281327351403 0.0007622778601094653 0.0025706174448512364 0.0004124271876504976" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0025706174448512364 0.0004124271876504976 C 0.002866944129919426 0.0009638402715725454 0.006694317208003956 0.008093862331544794 0.006126537665669511 0.007029384194715071 C 0.006694317208003956 0.008093862331544794 0.009655424810130823 0.013699229882514848 0.009383971952864568 0.013186164829607173" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.009383971952864568 0.013186164829607173 C 0.01020137968704156 0.013746086866999907 0.020827680231342467 0.01990522927831998 0.019192864762988482 0.01990522927831998 C 0.020827680231342467 0.01990522927831998 0.029819165307289383 0.01262624279221444 0.02900175757311239 0.013186164829607173" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02900175757311239 0.013186164829607173 C 0.02927321043037864 0.012673099776699498 0.03282697140264184 0.005964906057885347 0.0322591918603074 0.00702938419471507 C 0.03282697140264184 0.005964906057885347 0.03611143876619383 -0.00013898589627155014 0.035815112081125644 0.0004124271876504976" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.035815112081125644 0.0004124271876504976 C 0.03618777596362581 6.25765151915299E-05 0.04111146409473341 -0.004160979572305239 0.04028707867112765 -0.003785780881857115 C 0.04111146409473341 -0.004160979572305239 0.04615945870550036 -0.004115305115716145 0.04570773716439477 -0.004089957097726989" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04570773716439477 -0.004089957097726989 C 0.04615713006798952 -0.0034801134871032596 0.049371389786988615 0.0016220507441429706 0.04840409458596331 -0.00043089543398461304 C 0.049371389786988615 0.0016220507441429706 0.05202941066797714 0.00967082253854237 0.05151150837054659 0.008227719971038515" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05151150837054659 0.008227719971038515 C 0.050745158634650685 0.00844036694533559 0.041051250226008085 0.011515831515697975 0.0423153115397957 0.010779483662603414 C 0.041051250226008085 0.011515831515697975 0.03584506102720344 0.017587595086970723 0.03634277260509515 0.01706389420817324" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03634277260509515 0.01706389420817324 C 0.035705767321077636 0.017656816407561136 0.027269550210042775 0.025633547383673655 0.028698709196884997 0.024178960600828026 C 0.027269550210042775 0.025633547383673655 0.018711679731602524 0.035813271611688874 0.01919286476298849 0.0345189356023208 C 0.018711679731602524 0.035813271611688874 0.02323545749169218 0.04014366413915531 0.022924488820253434 0.039710992713244964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022924488820253434 0.039710992713244964 C 0.022302551477375948 0.04001513339297352 0.019192864762988506 0.04153583679161632 0.019192864762988506 0.04153583679161632 C 0.019192864762988506 0.04153583679161632 0.02354642616313092 0.039406852033516404 0.022924488820253434 0.039710992713244964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022924488820253434 0.039710992713244964 C 0.023004663490714533 0.040110050857765 0.024348080962954377 0.04534201059687871 0.023886584865786622 0.044499690447485404 C 0.024348080962954377 0.04534201059687871 0.02884376341297313 0.05026209651083787 0.028462441986266476 0.0498188345059646" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028462441986266476 0.0498188345059646 C 0.02802787789990284 0.04965841430542563 0.022475208181296332 0.047359520496612656 0.02324767294990283 0.047893792099496874 C 0.022475208181296332 0.047359520496612656 0.018854964080745627 0.04303372386900878 0.01919286476298849 0.04340757527135401" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01919286476298849 0.04340757527135401 C 0.018854964080745624 0.04378142667369925 0.014365591807467623 0.04842806370238109 0.015138056576074123 0.047893792099496874 C 0.014365591807467623 0.04842806370238109 0.009488723453346858 0.04997925470650358 0.009923287539710493 0.0498188345059646" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009923287539710493 0.0498188345059646 C 0.010304608966417148 0.049375572501091335 0.014960640757358097 0.04365737029809209 0.014499144660190342 0.04449969044748539 C 0.014960640757358097 0.04365737029809209 0.015541415376184666 0.03931193456872493 0.015461240705723564 0.039710992713244964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015461240705723564 0.039710992713244964 C 0.016083178048601054 0.04001513339297352 0.019192864762988506 0.04153583679161632 0.019192864762988506 0.04153583679161632 C 0.019192864762988506 0.04153583679161632 0.014839303362846074 0.039406852033516404 0.015461240705723564 0.039710992713244964" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015461240705723564 0.039710992713244964 C 0.015772209377162307 0.03927832128733462 0.018711679731602524 0.03322459959295272 0.01919286476298849 0.0345189356023208 C 0.018711679731602524 0.03322459959295272 0.008257861342249777 0.022724373817982396 0.009687020329091998 0.024178960600828026 C 0.008257861342249777 0.022724373817982396 0.001405951636864336 0.01647097200878534 0.0020429569208818485 0.01706389420817324" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0020429569208818485 0.01706389420817324 C 0.0015452453429901365 0.016540193329375754 -0.005193643327606324 0.010043135809508854 -0.0039295820138186945 0.010779483662603414 C -0.005193643327606324 0.010043135809508854 -0.013892128580465627 0.008015072996741448 -0.013125778844569709 0.008227719971038522" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.013125778844569709 0.008227719971038522 C -0.012607876547139138 0.006784617403534667 -0.00905106985896098 -0.0024838416121121913 -0.010018365059986285 -0.00043089543398460697 C -0.00905106985896098 -0.0024838416121121913 -0.006872614734823145 -0.004699800708350713 -0.0073220076384178795 -0.004089957097726984" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23715836376383104) rotate(0) scale(1,1) translate(-0.01919286476298845,-0.01919286476298845)"><path d="M -0.0010891599937096705 -0.0007703532775328377 C -0.0007826107256185034 -0.0005802853952936016 0.0032866670310292105 0.001865616694024347 0.0025894312233843346 0.0015104613093379958 C 0.0032866670310292105 0.001865616694024347 0.0076683562375825486 0.0036565988411504905 0.00727766969802884 0.0034915113387033753" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00727766969802884 0.0034915113387033753 C 0.007717187632429821 0.00408745356235007 0.01316933722661827 0.011706955611986593 0.01255188491084061 0.010642818022463712 C 0.01316933722661827 0.011706955611986593 0.014865031868737449 0.016729357778854145 0.01468709748736077 0.016261162412977957" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01468709748736077 0.016261162412977957 C 0.015062578093663077 0.016472445485108372 0.019943825975593077 0.018796559278542953 0.01919286476298846 0.018796559278542953 C 0.019943825975593077 0.018796559278542953 0.024074112644918457 0.01604987934084754 0.02369863203861615 0.016261162412977957" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02369863203861615 0.016261162412977957 C 0.023876566419992827 0.01579296704710177 0.02645129693091394 0.00957868043294083 0.02583384461513628 0.010642818022463712 C 0.02645129693091394 0.00957868043294083 0.031547577762349024 0.0028955691150566805 0.031108059827948047 0.0034915113387033753" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031108059827948047 0.0034915113387033753 C 0.03149874636750176 0.00332642383625626 0.03649353411023745 0.0011553059246516438 0.035796298302592566 0.001510461309337995 C 0.03649353411023745 0.0011553059246516438 0.039781438787777845 -0.0009604211597720757 0.03947488951968667 -0.0007703532775328395" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03947488951968667 -0.0007703532775328395 C 0.04010008863843311 0.00023448783048067795 0.04426489217295001 0.0069894599244004875 0.04322608423216532 0.005258693370548266 C 0.04426489217295001 0.0069894599244004875 0.04612134598643304 0.010340171491419197 0.045707737164394795 0.009614246045580492" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.045707737164394795 0.009614246045580492 C 0.0452560156232892 0.009639594063569651 0.03946269324752192 0.010293620951898518 0.04028707867112768 0.009918422261450389 C 0.03946269324752192 0.010293620951898518 0.035442448198625506 0.01446648100341701 0.03581511208112567 0.014116630330958039" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03581511208112567 0.014116630330958039 C 0.03551878539605748 0.014668043414880082 0.03169141231797299 0.021798065474852288 0.03225919186030743 0.02073358733802257 C 0.03169141231797299 0.021798065474852288 0.02873030471584615 0.02740343302582232 0.029001757573112404 0.026890367972914647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.029001757573112404 0.026890367972914647 C 0.02818434983893541 0.027450290010307386 0.017558049294634517 0.0336094324216275 0.019192864762988503 0.0336094324216275 C 0.017558049294634517 0.0336094324216275 0.008566564218687593 0.026330445935521907 0.009383971952864585 0.026890367972914647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009383971952864585 0.026890367972914647 C 0.00911251909559833 0.02637730292000697 0.005558758123335087 0.01966910920119285 0.006126537665669531 0.02073358733802257 C 0.005558758123335087 0.01966910920119285 0.0022742907597830676 0.013565217247035995 0.0025706174448512573 0.014116630330958039" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0025706174448512573 0.014116630330958039 C 0.0021979535623510905 0.013766779658499068 -0.002725734568756505 0.009543223571002265 -0.0019013491451507457 0.009918422261450392 C -0.002725734568756505 0.009543223571002265 -0.007773729179523447 0.009588898027591341 -0.007322007638417855 0.0096142460455805" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.007322007638417855 0.0096142460455805 C -0.00690839881637961 0.008888320599741794 -0.00380154676540369 0.003527926816696043 -0.004840354706188386 0.005258693370548266 C -0.00380154676540369 0.003527926816696043 -0.0004639608749632259 -0.0017751943855463508 -0.0010891599937096774 -0.0007703532775328343" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="淫タトゥ">
<g id="渦">
<g transform="translate(0.3373434528286706,0.23715836376383104) rotate(0) scale(1,1) translate(-0.004044276755330287,-0.0037120127838791922)"><path d="M -0.01807782232743366 -0.012746983685705985 C -0.01801526259556657 -0.012865663866163057 -0.017202713948035204 -0.01440873502848567 -0.01732710554502855 -0.014171145851190847 C -0.017202713948035204 -0.01440873502848567 -0.01652329129838727 -0.015716962810081614 -0.016585123163513522 -0.015598053813243863" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.016585123163513522 -0.015598053813243863 C -0.016569233233429813 -0.015512014623992449 -0.016299620096498456 -0.014397913093899376 -0.01639444400250903 -0.01456558354222689 C -0.016299620096498456 -0.014397913093899376 -0.015254940570512427 -0.013424306447892114 -0.015447236291386637 -0.013586008433313692 C -0.015254940570512427 -0.013424306447892114 -0.013855332211761752 -0.012423340229013176 -0.014086895352018517 -0.012625159717167954 C -0.013855332211761752 -0.012423340229013176 -0.012459773270124817 -0.010830301179716085 -0.012668478608305445 -0.011164174575456352 C -0.012459773270124817 -0.010830301179716085 -0.011530280283682333 -0.008162209755659303 -0.011582431293850982 -0.008618678968284749 C -0.011530280283682333 -0.008162209755659303 -0.012269030504532649 -0.005279679869397699 -0.012042666486281647 -0.005686544023951004 C -0.012269030504532649 -0.005279679869397699 -0.014709921193751646 -0.003570692815248436 -0.014298799512863001 -0.0037363091136450835 C -0.014709921193751646 -0.003570692815248436 -0.01734814829255564 -0.0038256178075819058 -0.016976126656945374 -0.0036991484431912356 C -0.01734814829255564 -0.0038256178075819058 -0.018925369304887637 -0.0055585731072787066 -0.018763059140186174 -0.005253941486333123 C -0.018925369304887637 -0.0055585731072787066 -0.018851697816301218 -0.007627440111508047 -0.018923848633362918 -0.007354727894538243 C -0.018851697816301218 -0.007627440111508047 -0.01767892612017938 -0.008620266024813722 -0.017897249335445793 -0.008526488089970762 C -0.01767892612017938 -0.008620266024813722 -0.01610113300608227 -0.008397337376560558 -0.016303970050165973 -0.00848006311265376 C -0.01610113300608227 -0.008397337376560558 -0.015406602804658727 -0.007360784355207522 -0.01546320480644138 -0.0075337792568523285 C -0.015406602804658727 -0.007360784355207522 -0.015697423669270037 -0.006243832432701157 -0.015624746028774138 -0.006404124292916081 C -0.015697423669270037 -0.006243832432701157 -0.016394552364360333 -0.005544122987719677 -0.016335336492392164 -0.005610276934273246" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.016335336492392164 -0.005610276934273246 C -0.016310569874157688 -0.005676521399138085 -0.016017940099833924 -0.0065540374447528044 -0.016038137073578443 -0.006405210512651313 C -0.016017940099833924 -0.0065540374447528044 -0.01617834687210438 -0.007526714562871934 -0.016092972807457917 -0.007396200119491152 C -0.01617834687210438 -0.007526714562871934 -0.017224778844138186 -0.007977176581876803 -0.017062625849336002 -0.007971383833220705 C -0.017224778844138186 -0.007977176581876803 -0.018125180255983402 -0.007285661417384388 -0.018038808745084105 -0.007465713103364331 C -0.018125180255983402 -0.007285661417384388 -0.018002350728338105 -0.005564992759329239 -0.018099083980127547 -0.0058107636014613955 C -0.018002350728338105 -0.005564992759329239 -0.01661173214232693 -0.004408785415389118 -0.016878009723610813 -0.004516462997778447 C -0.01661173214232693 -0.004408785415389118 -0.014617734887005757 -0.004635868292409862 -0.014903753004720926 -0.004518632612789451 C -0.014617734887005757 -0.004635868292409862 -0.013310313277549111 -0.0062164843016456126 -0.013445792311028791 -0.005923291153223388 C -0.013310313277549111 -0.0062164843016456126 -0.013326857479616223 -0.008359866521086733 -0.01327800460296477 -0.008036950393856145 C -0.013326857479616223 -0.008359866521086733 -0.01418205807381487 -0.010040058419074514 -0.014032026830846233 -0.009798284679990457 C -0.01418205807381487 -0.010040058419074514 -0.015258845490200405 -0.011090358298638742 -0.015078379518588404 -0.010938235262864821 C -0.015258845490200405 -0.011090358298638742 -0.016399847361495558 -0.01174017948828053 -0.01619761849019024 -0.011623761109277509 C -0.016399847361495558 -0.01174017948828053 -0.017661809627355838 -0.01242885769227013 -0.01750512597425222 -0.012335255810901091 C -0.017661809627355838 -0.01242885769227013 -0.018125547023532113 -0.012781294341939727 -0.01807782232743366 -0.012746983685705985" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.23715836376383104) rotate(0) scale(1,1) translate(-0.004044276755330287,-0.0037120127838791922)"><path d="M 0.026166375838094114 -0.012746983685705985 C 0.02611865114199567 -0.012712673029472243 0.02543699583180914 -0.012241653929532052 0.025593679484912757 -0.012335255810901091 C 0.02543699583180914 -0.012241653929532052 0.02408394312954539 -0.011507342730274487 0.024286172000850703 -0.011623761109277509 C 0.02408394312954539 -0.011507342730274487 0.022986467057637 -0.0107861122270909 0.023166933029248993 -0.010938235262864821 C 0.022986467057637 -0.0107861122270909 0.021970549098538128 -0.0095565109409064 0.022120580341506768 -0.009798284679990457 C 0.021970549098538128 -0.0095565109409064 0.02131770523697385 -0.007714034266625556 0.02136655811362531 -0.008036950393856145 C 0.02131770523697385 -0.007714034266625556 0.0216698248551689 -0.005630098004801163 0.021534345821689227 -0.005923291153223388 C 0.0216698248551689 -0.005630098004801163 0.023278324633096592 -0.0044013969331690396 0.022992306515381422 -0.004518632612789451 C 0.023278324633096592 -0.0044013969331690396 0.025232840815555158 -0.004624140580167776 0.024966563234271266 -0.004516462997778447 C 0.025232840815555158 -0.004624140580167776 0.026284370742577556 -0.006056534443593552 0.026187637490788118 -0.0058107636014613955 C 0.026284370742577556 -0.006056534443593552 0.026040990744845227 -0.007645764789344273 0.026127362255744524 -0.007465713103364331 C 0.026040990744845227 -0.007645764789344273 0.024989026365194383 -0.007965591084564606 0.025151179359996556 -0.007971383833220705 C 0.024989026365194383 -0.007965591084564606 0.024096152253471965 -0.007265685676110369 0.02418152631811843 -0.007396200119491152 C 0.024096152253471965 -0.007265685676110369 0.024146887557983516 -0.006256383580549821 0.024126690584238997 -0.006405210512651313 C 0.024146887557983516 -0.006256383580549821 0.024448656621287146 -0.005544032469408408 0.024423890003052673 -0.005610276934273246" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.024423890003052673 -0.005610276934273246 C 0.024364674131084507 -0.005676430880826816 0.023640621898938785 -0.006564416153131004 0.023713299539434685 -0.006404124292916081 C 0.023640621898938785 -0.006564416153131004 0.023608360318884525 -0.007706774158497135 0.02355175831710188 -0.0075337792568523285 C 0.023608360318884525 -0.007706774158497135 0.02459536060491015 -0.008562788848746963 0.02439252356082644 -0.00848006311265376 C 0.02459536060491015 -0.008562788848746963 0.026204126061372828 -0.008432710155127802 0.02598580284610641 -0.008526488089970762 C 0.026204126061372828 -0.008432710155127802 0.02708455296108514 -0.007082015677568439 0.02701240214402345 -0.007354727894538243 C 0.02708455296108514 -0.007082015677568439 0.026689302486145223 -0.004949309865387539 0.02685161265084668 -0.005253941486333123 C 0.026689302486145223 -0.004949309865387539 0.02469265853199572 -0.0035726790788005655 0.02506468016760599 -0.0036991484431912356 C 0.02469265853199572 -0.0035726790788005655 0.021976231342634805 -0.003901925412041731 0.02238735302352346 -0.0037363091136450835 C 0.021976231342634805 -0.003901925412041731 0.019904855978691127 -0.00609340817850431 0.020131219996942118 -0.005686544023951004 C 0.019904855978691127 -0.00609340817850431 0.019723135814680232 -0.009075148180910195 0.01967098480451157 -0.008618678968284749 C 0.019723135814680232 -0.009075148180910195 0.020965737457146694 -0.011498047971196619 0.020757032118966068 -0.011164174575456352 C 0.020965737457146694 -0.011498047971196619 0.02240701200293584 -0.012826979205322732 0.02217544886267908 -0.012625159717167954 C 0.02240701200293584 -0.012826979205322732 0.023728085522921383 -0.01374771041873527 0.02353578980204718 -0.013586008433313692 C 0.023728085522921383 -0.01374771041873527 0.02457782141918008 -0.014733253990554404 0.024482997513169513 -0.01456558354222689 C 0.02457782141918008 -0.014733253990554404 0.024689566604257678 -0.015684093002495278 0.024673676674173972 -0.015598053813243863" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.024673676674173972 -0.015598053813243863 C 0.024735508539300233 -0.015479144816406111 0.025540050652682444 -0.013933556673896024 0.0254156590556891 -0.014171145851190847 C 0.025540050652682444 -0.013933556673896024 0.026228935569961198 -0.012628303505248913 0.026166375838094114 -0.012746983685705985" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23715836376383104) rotate(0) scale(1,1) translate(-0.0050491035115750255,-0.003435371609681657)"><path d="M -0.022362325831208833 -0.004886798506670759 C -0.022282349216884014 -0.0049950634951929015 -0.021236467402732724 -0.006413223483445958 -0.02140260645931101 -0.006185978368936472 C -0.021236467402732724 -0.006413223483445958 -0.020282494710015937 -0.0077327200067719365 -0.020368657152269404 -0.007613739880784593" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.020368657152269404 -0.007613739880784593 C -0.02036712359235308 -0.007542762222476321 -0.02030293990518585 -0.006623881276776231 -0.02035025443327351 -0.006762007981085322 C -0.02030293990518585 -0.006623881276776231 -0.019665286191098266 -0.005804768879167521 -0.019800882815217496 -0.005956219429075502 C -0.019665286191098266 -0.005804768879167521 -0.018544965257905936 -0.00474725486871516 -0.018723094943842732 -0.004944601382189548 C -0.018544965257905936 -0.00474725486871516 -0.01751231496596152 -0.0032884487051487213 -0.017663326583975923 -0.0035880612673828485 C -0.01751231496596152 -0.0032884487051487213 -0.01688661087234696 -0.000918338504018642 -0.016910955527669906 -0.0013492506353800227 C -0.01688661087234696 -0.000918338504018642 -0.017599172410320208 0.0019848659312660223 -0.017371190720100564 0.00158288430895372 C -0.017599172410320208 0.0019848659312660223 -0.020059475163162938 0.0036352625985232516 -0.01964673581030565 0.003474528832367607 C -0.020059475163162938 0.0036352625985232516 -0.022696084589998295 0.003385220138430784 -0.02232406295438803 0.0035116895028214547 C -0.022696084589998295 0.003385220138430784 -0.02427330560233029 0.0016522648387339784 -0.024110995437628825 0.0019568964596795623 C -0.02427330560233029 0.0016522648387339784 -0.02419963411374387 -0.0004166021654953541 -0.02427178493080557 -0.00014388994852555142 C -0.02419963411374387 -0.0004166021654953541 -0.023026862417622026 -0.0014094280788010303 -0.023245185632888438 -0.0013156501439580703 C -0.023026862417622026 -0.0014094280788010303 -0.02144906930352493 -0.001186499430547868 -0.021651906347608628 -0.0012692251666410704 C -0.02144906930352493 -0.001186499430547868 -0.02075453910210138 -0.0001499464091948326 -0.02081114110388403 -0.0003229413108396394 C -0.02075453910210138 -0.0001499464091948326 -0.02104535996671269 0.0009670055133115348 -0.02097268232621679 0.0008067136530966114 C -0.02104535996671269 0.0009670055133115348 -0.02174248866180298 0.0016667149582930108 -0.021683272789834812 0.0016005610117394416" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.021683272789834812 0.0016005610117394416 C -0.021658506171600336 0.0015343165468746029 -0.021365876397276575 0.0006568005012598862 -0.021386073371021094 0.0008056274333613782 C -0.021365876397276575 0.0006568005012598862 -0.021526283169547036 -0.00031587661685924493 -0.021440909104900572 -0.00018536217347846218 C -0.021526283169547036 -0.00031587661685924493 -0.022572715141580837 -0.0007663386358641128 -0.022410562146778657 -0.0007605458872080148 C -0.022572715141580837 -0.0007663386358641128 -0.023473116553426047 -7.482347137169562E-05 -0.023386745042526753 -0.0002548751573516381 C -0.023473116553426047 -7.482347137169562E-05 -0.02335028702578075 0.0016458451866834516 -0.02344702027757019 0.0014000743445512951 C -0.02335028702578075 0.0016458451866834516 -0.02195966843976958 0.0028020525306235683 -0.022225946021053464 0.00269437494823424 C -0.02195966843976958 0.0028020525306235683 -0.019965671184448405 0.0025749696536028236 -0.020251689302163575 0.002692205333223235 C -0.019965671184448405 0.0025749696536028236 -0.01865824957499176 0.0009943536443670804 -0.01879372860847144 0.0012875467927893046 C -0.01865824957499176 0.0009943536443670804 -0.018656015654653198 -0.0011334849226089267 -0.018625940900407423 -0.0008261124478434539 C -0.018656015654653198 -0.0011334849226089267 -0.01925564149161282 -0.0026087870786574516 -0.019154625659420735 -0.00240092290439637 C -0.01925564149161282 -0.0026087870786574516 -0.019959686547123653 -0.003440587743309762 -0.019838130886712442 -0.0033204825389764347 C -0.019959686547123653 -0.003440587743309762 -0.020768935641719007 -0.0039325020789986505 -0.020613293584355253 -0.0038421853563963 C -0.020768935641719007 -0.0039325020789986505 -0.02185158826231528 -0.004491334306060844 -0.021705835575077482 -0.004404283210204639 C -0.02185158826231528 -0.004491334306060844 -0.02241703335255311 -0.004927008114709602 -0.022362325831208833 -0.004886798506670759" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.23715836376383104) rotate(0) scale(1,1) translate(-0.0050491035115750255,-0.003435371609681657)"><path d="M 0.032460532854359014 -0.004886798506670759 C 0.032405825333014726 -0.004846588898631915 0.031658289910989755 -0.004317232114348433 0.031804042598227555 -0.004404283210204639 C 0.031658289910989755 -0.004317232114348433 0.03055585855014163 -0.00375186863379395 0.030711500607505382 -0.0038421853563963 C 0.03055585855014163 -0.00375186863379395 0.029814782249451294 -0.0032003773346431074 0.029936337909862498 -0.0033204825389764347 C 0.029814782249451294 -0.0032003773346431074 0.029151816850378875 -0.0021930587301352885 0.02925283268257095 -0.00240092290439637 C 0.029151816850378875 -0.0021930587301352885 0.02869407316931181 -0.0005187399730779811 0.028724147923557597 -0.0008261124478434539 C 0.02869407316931181 -0.0005187399730779811 0.029027414665101187 0.0015807399412115287 0.028891935631621513 0.0012875467927893046 C 0.029027414665101187 0.0015807399412115287 0.030635914443028878 0.0028094410128436465 0.030349896325313708 0.002692205333223235 C 0.030635914443028878 0.0028094410128436465 0.03259043062548744 0.002586697365844912 0.03232415304420355 0.00269437494823424 C 0.03259043062548744 0.002586697365844912 0.03364196055250984 0.0011543035024191386 0.033545227300720404 0.0014000743445512951 C 0.03364196055250984 0.0011543035024191386 0.03339858055477751 -0.00043492684333158065 0.03348495206567681 -0.0002548751573516381 C 0.03339858055477751 -0.00043492684333158065 0.032346616175126665 -0.0007547531385519168 0.03250876916992884 -0.0007605458872080148 C 0.032346616175126665 -0.0007547531385519168 0.031453742063404254 -5.484773009767943E-05 0.031539116128050715 -0.00018536217347846218 C 0.031453742063404254 -5.484773009767943E-05 0.031504477367915805 0.0009544543654628702 0.03148428039417128 0.0008056274333613782 C 0.031504477367915805 0.0009544543654628702 0.03180624643121943 0.0016668054766042803 0.03178147981298496 0.0016005610117394416" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03178147981298496 0.0016005610117394416 C 0.03172226394101679 0.0015344070651858723 0.03099821170887107 0.000646421792881688 0.03107088934936697 0.0008067136530966114 C 0.03099821170887107 0.000646421792881688 0.03096595012881681 -0.0004959362124844462 0.030909348127034164 -0.0003229413108396394 C 0.03096595012881681 -0.0004959362124844462 0.03195295041484242 -0.001351950902734273 0.031750113370758726 -0.0012692251666410704 C 0.03195295041484242 -0.001351950902734273 0.03356171587130489 -0.0012218722091151104 0.03334339265603847 -0.0013156501439580703 C 0.03356171587130489 -0.0012218722091151104 0.034442142771017446 0.00012882226844425126 0.034369991953955736 -0.00014388994852555142 C 0.034442142771017446 0.00012882226844425126 0.03404689229607749 0.002261528080625146 0.034209202460778965 0.0019568964596795623 C 0.03404689229607749 0.002261528080625146 0.03205024834192779 0.0036381588672121253 0.032422269977538054 0.0035116895028214547 C 0.03205024834192779 0.0036381588672121253 0.02933220348059847 0.003313795066211962 0.029744942833455745 0.003474528832367607 C 0.02933220348059847 0.003313795066211962 0.027241416053031098 0.0011809026866414175 0.027469397743250745 0.00158288430895372 C 0.027241416053031098 0.0011809026866414175 0.02703350720614291 -0.0017801627667414033 0.027009162550819976 -0.0013492506353800227 C 0.02703350720614291 -0.0017801627667414033 0.02791254522514038 -0.0038876738296169757 0.027761533607125966 -0.0035880612673828485 C 0.02791254522514038 -0.0038876738296169757 0.028999431652929748 -0.005141947895663936 0.02882130196699295 -0.004944601382189548 C 0.028999431652929748 -0.005141947895663936 0.030034686462486748 -0.006107669978983483 0.029899089838367532 -0.005956219429075502 C 0.030034686462486748 -0.006107669978983483 0.030495775984511215 -0.006900134685394413 0.030448461456423548 -0.006762007981085322 C 0.030495775984511215 -0.006900134685394413 0.030468397735335884 -0.007684717539092866 0.03046686417541955 -0.007613739880784593" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03046686417541955 -0.007613739880784593 C 0.030553026617673007 -0.00749475975479725 0.03166695253903932 -0.0059587332544269855 0.03150081348246103 -0.006185978368936472 C 0.03166695253903932 -0.0059587332544269855 0.032540509468683844 -0.004778533518148616 0.032460532854359014 -0.004886798506670759" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="ハート">
<g transform="translate(0.3373434528286706,0.23715836376383104) rotate(0) scale(1,1) translate(4.531817165381619E-05,-0.007618185234386916)"><path d="M -0.03587690239336134 0.017215967939827038 C -0.0358566846057845 0.017177597184486103 -0.03558100213928624 0.016656136477773947 -0.03563428894243927 0.01675551887573584 C -0.03558100213928624 0.016656136477773947 -0.03514713205818319 0.015872362617860694 -0.035237460755525 0.01602337916428436 C -0.03514713205818319 0.015872362617860694 -0.03441123650400947 0.014727451215627319 -0.03455034457433751 0.014943320318651823 C -0.03441123650400947 0.014727451215627319 -0.03346332067559758 0.013240126956613626 -0.03356816391158851 0.0134329499279903 C -0.03346332067559758 0.013240126956613626 -0.03328255184739747 0.012563819094183377 -0.03329222574244636 0.012629444662131742 C -0.03328255184739747 0.012563819094183377 -0.033486772630428784 0.012679825836474319 -0.03345207717100185 0.012645443112609909 C -0.033486772630428784 0.012679825836474319 -0.03376600379333935 0.013142900245453438 -0.03370857125556955 0.01304203734850467 C -0.03376600379333935 0.013142900245453438 -0.03417732565496194 0.013923611253285988 -0.03414126762423945 0.013855797875995118" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03414126762423945 0.013855797875995118 C -0.03412941010695774 0.013832833453523246 -0.03397421291238859 0.013532226911320935 -0.03399897741685894 0.013580224806332659 C -0.03397421291238859 0.013532226911320935 -0.03383118658340656 0.013254789663314571 -0.0338440935705952 0.013279823135854425" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.0338440935705952 0.013279823135854425 C -0.03380430516363684 0.013204195735673378 -0.03328308188884773 0.012258883892351942 -0.03336663268709489 0.012372294333681876 C -0.03328308188884773 0.012258883892351942 -0.032766423600821576 0.011901969597056144 -0.0328414839916293 0.011918897839895222 C -0.032766423600821576 0.011901969597056144 -0.03245827851904832 0.01229944420397284 -0.03246590799740222 0.012169155419612939 C -0.03245827851904832 0.01229944420397284 -0.03288265461404952 0.013737224436754993 -0.03274993025138253 0.013482363252214039 C -0.03288265461404952 0.013737224436754993 -0.03425847028399893 0.015494035241793234 -0.0340586003494061 0.015227489634104384 C -0.03425847028399893 0.015494035241793234 -0.03531950429022203 0.016956696294667898 -0.03514836946649644 0.016680910544480235 C -0.03531950429022203 0.016956696294667898 -0.03629264517042077 0.018976653324095434 -0.03611221823411316 0.018536918636356346 C -0.03629264517042077 0.018976653324095434 -0.037413598907860675 0.0222427941440987 -0.03731349270218779 0.02195772679734929" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03731349270218779 0.02195772679734929 C -0.03726274117954573 0.02178365369703179 -0.03658475857141412 0.0194737030220791 -0.03670447443048299 0.019868849593539288 C -0.03658475857141412 0.0194737030220791 -0.03580793805693454 0.01699489446868435 -0.03587690239336134 0.017215967939827038" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23715836376383104) rotate(0) scale(1,1) translate(4.531817165381619E-05,-0.007618185234386916)"><path d="M 0.03578626605005386 0.017215967939827038 C 0.035855230386480655 0.017437041410969724 0.03673355394624423 0.020263996164999475 0.03661383808717537 0.019868849593539288 C 0.03673355394624423 0.020263996164999475 0.03727360788152228 0.022131799897666792 0.03722285635888021 0.02195772679734929" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03722285635888021 0.02195772679734929 C 0.037122750153207325 0.02167265945059988 0.035841154954498015 0.018097183948617257 0.03602158189080562 0.018536918636356346 C 0.035841154954498015 0.018097183948617257 0.034886598299463355 0.016405124794292573 0.03505773312318894 0.016680910544480235 C 0.034886598299463355 0.016405124794292573 0.03376809407150575 0.014960944026415533 0.03396796400609858 0.015227489634104384 C 0.03376809407150575 0.014960944026415533 0.03252656954540798 0.013227502067673085 0.03265929390807498 0.013482363252214039 C 0.03252656954540798 0.013227502067673085 0.032382901132448495 0.012038866635253038 0.032375271654094595 0.012169155419612939 C 0.032382901132448495 0.012038866635253038 0.03282590803912955 0.0119358260827343 0.03275084764832181 0.011918897839895222 C 0.03282590803912955 0.0119358260827343 0.03335954714203458 0.01248570477501181 0.03327599634378742 0.012372294333681876 C 0.03335954714203458 0.01248570477501181 0.033793245634246113 0.01335545053603547 0.03375345722728775 0.013279823135854425" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03375345722728775 0.013279823135854425 C 0.033766364214476395 0.013304856608394278 0.0339331055780218 0.013628222701344382 0.03390834107355146 0.013580224806332659 C 0.0339331055780218 0.013628222701344382 0.034062488798213594 0.01387876229846699 0.034050631280931894 0.013855797875995118" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.034050631280931894 0.013855797875995118 C 0.03401457325020941 0.013787984498704248 0.03356050237449226 0.012941174451555904 0.03361793491226206 0.01304203734850467 C 0.03356050237449226 0.012941174451555904 0.03332674536826739 0.012611060388745498 0.03336144082769432 0.012645443112609909 C 0.03332674536826739 0.012611060388745498 0.033211263294187755 0.012695070230080107 0.033201589399138864 0.012629444662131742 C 0.033211263294187755 0.012695070230080107 0.033582370804271976 0.013625772899366975 0.03347752756828104 0.0134329499279903 C 0.033582370804271976 0.013625772899366975 0.0345988163013581 0.015159189421676328 0.03445970823103006 0.014943320318651823 C 0.0345988163013581 0.015159189421676328 0.035237153109559306 0.01617439571070803 0.0351468244122175 0.01602337916428436 C 0.035237153109559306 0.01617439571070803 0.035596939402284755 0.01685490127369773 0.035543652599131725 0.01675551887573584 C 0.035596939402284755 0.01685490127369773 0.03580648383763071 0.017254338695167973 0.03578626605005386 0.017215967939827038" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.23715836376383104) rotate(0) scale(1,1) translate(0.00011198358255654973,-0.007639437628074994)"><path d="M -0.0378118289987688 0.02371462524414032 C -0.03767340375599444 0.023383623886988746 -0.03588334144359535 0.019242398525228646 -0.03615072608547643 0.01974260895832146 C -0.03588334144359535 0.019242398525228646 -0.03427354076052838 0.017327345468730743 -0.034603213296195756 0.017712100047026585 C -0.03427354076052838 0.017327345468730743 -0.031868863977282995 0.014723099202864156 -0.03219465565746793 0.015125554018771345 C -0.031868863977282995 0.014723099202864156 -0.030521293277799108 0.012519120344302184 -0.03069371313397655 0.01288264225614032 C -0.030521293277799108 0.012519120344302184 -0.030101263327691016 0.010486238980509145 -0.030125617383338625 0.01076329107671371 C -0.030101263327691016 0.010486238980509145 -0.03050585991390601 0.00946348760384958 -0.030401464466205255 0.009558017101685547 C -0.03050585991390601 0.00946348760384958 -0.03158804897975846 0.009778573428179201 -0.03137836275574768 0.00962893710268209 C -0.03158804897975846 0.009778573428179201 -0.03304597718755023 0.01149737933306495 -0.03291769915433465 0.011353653007650883" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03291769915433465 0.011353653007650883 C -0.03283196194975681 0.0111816363061761 -0.03228746933209674 0.01008867540756839 -0.03240327592686758 0.010321552798802184 C -0.03228746933209674 0.01008867540756839 -0.03219279019551664 0.009895527970489117 -0.03222285958570963 0.009956388660248127" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.03222285958570963 0.009956388660248127 C -0.03213153282086535 0.009838022750891795 -0.03091684793178498 0.00839517301440847 -0.031126938407578294 0.008535997747972136 C -0.03091684793178498 0.00839517301440847 -0.0294972969857139 0.008367329647634359 -0.029701773876189882 0.008266491857484131 C -0.0294972969857139 0.008367329647634359 -0.028611361856441028 0.010115906971279969 -0.028673215721866506 0.009746051229774857 C -0.028611361856441028 0.010115906971279969 -0.029160037139613824 0.013209504980209154 -0.028959527491084137 0.012704760755545476 C -0.029160037139613824 0.013209504980209154 -0.03146777845098324 0.01626158479091871 -0.031079331504222724 0.015802981925738983 C -0.03146777845098324 0.01626158479091871 -0.03399382663276436 0.01859588988304656 -0.03362089085221027 0.01820799513770221 C -0.03399382663276436 0.01859588988304656 -0.03592785500894691 0.021031893017174275 -0.03555456087087186 0.020457718869871203 C -0.03592785500894691 0.021031893017174275 -0.03831257547896412 0.0254847820749614 -0.03810042050911087 0.025098084905339078" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03810042050911087 0.025098084905339078 C -0.03808767120593624 0.025036040558858996 -0.03792337957848678 0.02423826444247819 -0.037947428871015286 0.024353552747578083 C -0.03792337957848678 0.02423826444247819 -0.03780052900941493 0.023661381285520505 -0.0378118289987688 0.02371462524414032" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23715836376383104) rotate(0) scale(1,1) translate(0.00011198358255654973,-0.007639437628074994)"><path d="M 0.03758786183365573 0.02371462524414032 C 0.037599161823009604 0.023767869202760132 0.03774751099843077 0.024468841052677978 0.03772346170590225 0.024353552747578083 C 0.03774751099843077 0.024468841052677978 0.037889202647172555 0.02516012925181916 0.03787645334399792 0.025098084905339078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03787645334399792 0.025098084905339078 C 0.037664298374144665 0.024711387735716756 0.03495729956768381 0.01988354472256813 0.03533059370575886 0.020457718869871203 C 0.03495729956768381 0.01988354472256813 0.03302398790654315 0.017820100392357856 0.033396923687097235 0.01820799513770221 C 0.03302398790654315 0.017820100392357856 0.03046691739234934 0.015344379060559256 0.030855364339109848 0.015802981925738983 C 0.03046691739234934 0.015344379060559256 0.028535050677441443 0.012200016530881798 0.028735560325971132 0.012704760755545476 C 0.028535050677441443 0.012200016530881798 0.02851110242217904 0.009376195488269746 0.02844924855675357 0.009746051229774857 C 0.02851110242217904 0.009376195488269746 0.029682283601552784 0.008165654067333904 0.029477806711076804 0.008266491857484131 C 0.029682283601552784 0.008165654067333904 0.031113061718258655 0.008676822481535802 0.030902971242465327 0.008535997747972136 C 0.031113061718258655 0.008676822481535802 0.032090219185441006 0.010074754569604459 0.031998892420596725 0.009956388660248127" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.031998892420596725 0.009956388660248127 C 0.0320289618107897 0.010017249350007137 0.03229511535652542 0.010554430190035977 0.03217930876175458 0.010321552798802184 C 0.03229511535652542 0.010554430190035977 0.03277946919379963 0.011525669709125667 0.032693731989221764 0.011353653007650883" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.032693731989221764 0.011353653007650883 C 0.032565453956006185 0.011209926682236818 0.030944709366624024 0.009479300777184977 0.03115439559063482 0.00962893710268209 C 0.030944709366624024 0.009479300777184977 0.030073101853391442 0.009652546599521515 0.030177497301092204 0.009558017101685547 C 0.030073101853391442 0.009652546599521515 0.02992600427387328 0.011040343172918275 0.02990165021822566 0.01076329107671371 C 0.02992600427387328 0.011040343172918275 0.03064216582504109 0.013246164167978457 0.03046974596886365 0.01288264225614032 C 0.03064216582504109 0.013246164167978457 0.03229648017253989 0.015528008834678534 0.03197068849235496 0.015125554018771345 C 0.03229648017253989 0.015528008834678534 0.03470891866675017 0.01809685462532243 0.034379246131082786 0.017712100047026585 C 0.03470891866675017 0.01809685462532243 0.036194143562244645 0.02024281939141427 0.035926758920363566 0.01974260895832146 C 0.036194143562244645 0.02024281939141427 0.037726287076430075 0.024045626601291892 0.03758786183365573 0.02371462524414032" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="獣性">
<g transform="translate(0.3157769004770384,0.21953542623256544) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.010208333364096772 0.008809333994421327 C 0.010496508761091143 0.009110904167072768 0.014175987967361754 0.013096679197605605 0.013666438128029233 0.012428176066238621 C 0.014175987967361754 0.013096679197605605 0.01654430587842519 0.017198304529540676 0.016322931436087037 0.016831371570825135" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.016322931436087037 0.016831371570825135 C 0.015889346508678657 0.016544406968812382 0.01045384548370658 0.013012451182453436 0.011119912307186484 0.013387796346672105 C 0.01045384548370658 0.013012451182453436 0.008097647658256666 0.012238849037995192 0.00833012955432819 0.012327229600201108" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.00833012955432819 0.012327229600201108 C 0.008417623808763094 0.012165664669168855 0.009536577591694413 0.010095292460665756 0.009380060607547033 0.010388450427814071 C 0.009536577591694413 0.010095292460665756 0.010277356093809243 0.008677740958305266 0.010208333364096765 0.008809333994421329" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3589100051803027,0.21953542623256544) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.009172336582684792 0.008809333994421329 C 0.00924135931239727 0.008940927030537392 0.010157126323381902 0.010681608394962386 0.010000609339234523 0.010388450427814071 C 0.010157126323381902 0.010681608394962386 0.011138034646888248 0.01248879453123336 0.011050540392453345 0.012327229600201108" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011050540392453345 0.012327229600201108 C 0.010818058496381825 0.012415610162407024 0.007594690816115209 0.013763141510890774 0.008260757639595107 0.013387796346672105 C 0.007594690816115209 0.013763141510890774 0.0026241535832861964 0.017118336172837888 0.0030577385106945743 0.016831371570825135" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0030577385106945743 0.016831371570825135 C 0.003279112953032718 0.016464438612109594 0.00622378165808482 0.011759672934871637 0.005714231818752302 0.012428176066238621 C 0.00622378165808482 0.011759672934871637 0.009460511979679167 0.008507763821769886 0.009172336582684792 0.008809333994421327" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋柄">
<g id="紋左">
<g transform="translate(0.3157769004770384,0.21953542623256544) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.014387931697342139 0.020359160768640527 C 0.014467937038332516 0.020136209040793975 0.016812042773722783 0.02012664165477152 0.01669942377491539 0.01993872614551847 C 0.016812042773722783 0.02012664165477152 0.015546735343233085 0.022649183098270624 0.015739359683030855 0.022614146879677118 C 0.015546735343233085 0.022649183098270624 0.014467937038332516 0.020136209040793975 0.014387931697342139 0.020359160768640527 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3157769004770384,0.21953542623256544) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.007671622785987226 0.022082227192045483 C 0.007557988320232345 0.021906976655515522 0.009133977774628776 0.019655659585253827 0.00891659557634415 0.019680548905902453 C 0.009133977774628776 0.019655659585253827 0.010176461432872987 0.021983695201440556 0.01028020916540273 0.02178355534426197 C 0.010176461432872987 0.021983695201440556 0.007557988320232345 0.021906976655515522 0.007671622785987226 0.022082227192045483 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3157769004770384,0.21953542623256544) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.011329011292822747 0.01598860372633486 C 0.011319993951753328 0.015779789552901925 0.013314706981319226 0.014237113503149197 0.013153637459678494 0.01417909197561 C 0.013314706981319226 0.014237113503149197 0.013109793371940216 0.01683565470269896 0.013261845552511529 0.016684862056805222 C 0.013109793371940216 0.01683565470269896 0.011319993951753328 0.015779789552901925 0.011329011292822747 0.01598860372633486 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋右">
<g transform="translate(0.3589100051803027,0.21953542623256544) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.007078970147823515 0.022614146879677118 C 0.006886345808025748 0.02257911066108361 0.006231525054746434 0.01975081063626542 0.00611890605593904 0.01993872614551847 C 0.006231525054746434 0.01975081063626542 0.008510403474502614 0.02058211249648708 0.008430398133512242 0.020359160768640527 C 0.008510403474502614 0.02058211249648708 0.006886345808025748 0.02257911066108361 0.007078970147823515 0.022614146879677118 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3589100051803027,0.21953542623256544) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.012538120665451662 0.02178355534426197 C 0.012434372932921921 0.021583415487083382 0.014119116452794893 0.01970543822655108 0.013901734254510268 0.019680548905902453 C 0.014119116452794893 0.01970543822655108 0.015033072579112279 0.022257477728575444 0.015146707044867163 0.022082227192045483 C 0.015033072579112279 0.022257477728575444 0.012434372932921921 0.021583415487083382 0.012538120665451662 0.02178355534426197 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3589100051803027,0.21953542623256544) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.009556484278342854 0.016684862056805222 C 0.009404432097771545 0.016534069410911484 0.009825761892816656 0.014121070448070804 0.009664692371175924 0.01417909197561 C 0.009825761892816656 0.014121070448070804 0.011480301196962209 0.016197417899767797 0.011489318538031632 0.01598860372633486 C 0.011480301196962209 0.016197417899767797 0.009404432097771545 0.016534069410911484 0.009556484278342854 0.016684862056805222 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="鱗">
<g id="左">
<g transform="translate(0.3157769004770384,0.21953542623256544) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08846179593326453 0.09416612357780238 C 0.08784337093593066 0.09410275826706853 0.0855110742821036 0.09224577860636224 0.08583501789831602 0.09275232887116722 C 0.0855110742821036 0.09224577860636224 0.08605924264481896 0.08968274792880992 0.08587024700356512 0.09011372145936253 C 0.08605924264481896 0.08968274792880992 0.0879107618170444 0.08945800977312912 0.08734698302834668 0.08930454062674634 C 0.0879107618170444 0.08945800977312912 0.09080990666922686 0.09183581347171123 0.09038047731314683 0.09134147463042477 C 0.09080990666922686 0.09183581347171123 0.09054258270450173 0.09361233247546019 0.09078241787698701 0.093259251357038 C 0.09054258270450173 0.09361233247546019 0.08784337093593066 0.09410275826706853 0.08846179593326453 0.09416612357780238 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3157769004770384,0.21953542623256544) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08534484193370917 0.09917962238823946 C 0.08475036247142775 0.09915070180869645 0.0828011943784399 0.09774150365347103 0.08310119245959988 0.09822509076414879 C 0.0828011943784399 0.09774150365347103 0.0831398393094463 0.09485698881813757 0.08294485728442935 0.0953109255028174 C 0.0831398393094463 0.09485698881813757 0.08520088191338071 0.09471262170190207 0.08466104865973545 0.09459359728671013 C 0.08520088191338071 0.09471262170190207 0.08766302075085594 0.09674597808857582 0.08726352331359147 0.09626312082435298 C 0.08766302075085594 0.09674597808857582 0.08761719298536597 0.0988210180959787 0.08785702815785125 0.09845645540049289 C 0.08761719298536597 0.0988210180959787 0.08475036247142775 0.09915070180869645 0.08534484193370917 0.09917962238823946 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="右">
<g transform="translate(0.3589100051803027,0.21953542623256544) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08081173215219747 0.093259251357038 C 0.08057189697971218 0.0929061702386158 0.08164310207211761 0.09084713578913832 0.08121367271603758 0.09134147463042477 C 0.08164310207211761 0.09084713578913832 0.08481094578953548 0.08915107148036355 0.08424716700083776 0.08930454062674634 C 0.08481094578953548 0.08915107148036355 0.08591289866687314 0.09054469498991513 0.0857239030256193 0.09011372145936253 C 0.08591289866687314 0.09054469498991513 0.08543518851465605 0.0932588791359722 0.08575913213086847 0.09275232887116722 C 0.08543518851465605 0.0932588791359722 0.08251392909858606 0.09422948888853623 0.08313235409591993 0.09416612357780238 C 0.08251392909858606 0.09422948888853623 0.08057189697971218 0.0929061702386158 0.08081173215219747 0.093259251357038 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3589100051803027,0.21953542623256544) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08373712187133321 0.09845645540049289 C 0.08349728669884791 0.09809189270500708 0.08473012415285741 0.09578026356013014 0.08433062671559294 0.09626312082435298 C 0.08473012415285741 0.09578026356013014 0.08747293462309425 0.09447457287151818 0.08693310136944898 0.09459359728671013 C 0.08747293462309425 0.09447457287151818 0.08884427476977201 0.09576486218749723 0.08864929274475505 0.0953109255028174 C 0.08884427476977201 0.09576486218749723 0.08819295948842465 0.09870867787482654 0.08849295756958461 0.09822509076414879 C 0.08819295948842465 0.09870867787482654 0.08565482863319386 0.09920854296778248 0.08624930809547529 0.09917962238823946 C 0.08565482863319386 0.09920854296778248 0.08349728669884791 0.09809189270500708 0.08373712187133321 0.09845645540049289 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.3157769004770384,0.21953542623256544) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.053906824017354645 0.053773902828729694 C 0.053694486626594776 0.054239990797597996 0.051114480432403735 0.05990579132500571 0.051358775328236225 0.059366958455149346 C 0.051114480432403735 0.05990579132500571 0.05094332776229213 0.060312642167994104 0.05097528526736475 0.06023989726700604" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05097528526736475 0.06023989726700604 C 0.05098569898208783 0.06031274427435751 0.05118496110765542 0.06165368706566004 0.05110024984404175 0.06111406135522365 C 0.05118496110765542 0.06165368706566004 0.052066117979619436 0.06718218449532762 0.05199182043072884 0.0667154057922427" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05199182043072884 0.0667154057922427 C 0.05186169756519464 0.06635147829710832 0.050279471442460436 0.0619305478681351 0.0504303460443184 0.0623482758506301 C 0.050279471442460436 0.0619305478681351 0.050160573472109594 0.06164886951494204 0.050181325208433346 0.06170267000230266" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.050181325208433346 0.06170267000230266 C 0.05014467181518547 0.061756332154513864 0.04946713590930471 0.06276331910652161 0.04974148448945883 0.06234661582883709 C 0.04946713590930471 0.06276331910652161 0.046651447059677706 0.06706615045999022 0.04688914224658395 0.0667031093345169" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04688914224658395 0.0667031093345169 C 0.04710147963734382 0.06623702136564859 0.049681485831534866 0.060571220838240826 0.049437190935702376 0.061110053708097196 C 0.049681485831534866 0.060571220838240826 0.04985263850164647 0.06016436999525241 0.04982068099657385 0.06023711489624047" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04982068099657385 0.06023711489624047 C 0.04981026728185077 0.060164267888889005 0.04961100515628319 0.05882332509758648 0.04969571641989686 0.05936295080802287 C 0.04961100515628319 0.05882332509758648 0.048729848284319165 0.05329482766791896 0.04880414583320976 0.05376160637100388" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04880414583320976 0.05376160637100388 C 0.04893426869874396 0.054125533866138255 0.05051649482147817 0.058546464295111435 0.05036562021962022 0.05812873631261643 C 0.05051649482147817 0.058546464295111435 0.050635392791829 0.05882814264830454 0.05061464105550525 0.05877434216094392" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05061464105550525 0.05877434216094392 C 0.050651294448753124 0.05872068000873271 0.0513288303546339 0.05771369305672492 0.051054481774479785 0.05813039633440944 C 0.0513288303546339 0.05771369305672492 0.05414451920426088 0.05341086170325638 0.053906824017354645 0.053773902828729694" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3589100051803027,0.21953542623256544) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.0474022371610495 0.0537739028287297 C 0.047639932347955743 0.054136943954203015 0.050528927984078535 0.058547099612093964 0.050254579403924415 0.058130396334409445 C 0.050528927984078535 0.058547099612093964 0.05073107351614683 0.05882800431315514 0.05069442012289895 0.05877434216094393" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05069442012289895 0.05877434216094393 C 0.050715171859222696 0.05872054167358331 0.05109431556064188 0.057711008330121445 0.05094344095878392 0.05812873631261645 C 0.05109431556064188 0.057711008330121445 0.052635038210728666 0.053397678875869506 0.052504915345194456 0.053761606371003884" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.052504915345194456 0.053761606371003884 C 0.05243061779630386 0.0542283850740888 0.05152863349489365 0.05990257651845927 0.051613344758507325 0.05936295080802288 C 0.05152863349489365 0.05990257651845927 0.05147796646710729 0.060309961903591947 0.05148838018183037 0.06023711489624048" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05148838018183037 0.06023711489624048 C 0.05152033768690299 0.06030985979722854 0.052116165138534294 0.06164888657795358 0.051871870242701804 0.06111005370809721 C 0.052116165138534294 0.06164888657795358 0.05463225632258017 0.0671691973033852 0.05441991893182029 0.0667031093345169" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05441991893182029 0.0667031093345169 C 0.05418222374491405 0.06634006820904358 0.05129322810879126 0.061929912551152586 0.05156757668894538 0.062346615828837104 C 0.05129322810879126 0.061929912551152586 0.051091082576722964 0.061649007850091454 0.05112773596997084 0.06170267000230266" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05112773596997084 0.06170267000230266 C 0.05110698423364709 0.061756470489663276 0.0507278405322279 0.0627660038331251 0.05087871513408586 0.06234827585063009 C 0.0507278405322279 0.0627660038331251 0.049187117882141126 0.06707933328737711 0.04931724074767534 0.06671540579224272" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04931724074767534 0.06671540579224272 C 0.04939153829656593 0.0662486270891578 0.050293522597976134 0.060574435644787275 0.05020881133436246 0.06111406135522367 C 0.050293522597976134 0.060574435644787275 0.050344189625762495 0.06016705025965459 0.050333775911039415 0.06023989726700606" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.050333775911039415 0.06023989726700606 C 0.05030181840596679 0.060167152366017995 0.04970599095433549 0.05882812558529299 0.04995028585016798 0.05936695845514935 C 0.04970599095433549 0.05882812558529299 0.047189899770289624 0.0533078148598614 0.0474022371610495 0.0537739028287297" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3157769004770384,0.21953542623256544) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.0023438692401545683 0.03247071710743922 C 0.0025502788207462826 0.03237407459922062 0.0052336033684385695 0.03111772199237884 0.004820784207255142 0.03131100700881604 C 0.0052336033684385695 0.03111772199237884 0.0075041087549474125 0.03005465440197424 0.0072976991743556995 0.03015129691019284" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0072976991743556995 0.03015129691019284 C 0.007514505921759718 0.03010080347657536 0.010332993638011958 0.029444388839548155 0.009899380143203922 0.02954537570678311 C 0.010332993638011958 0.029444388839548155 0.01271786785945615 0.028888961069755897 0.012501061112052132 0.028939454503373374" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012501061112052132 0.028939454503373374 C 0.012294651531460418 0.029036097011591974 0.009611326983768138 0.03029244961843375 0.010024146144951566 0.030099164601996554 C 0.009611326983768138 0.03029244961843375 0.007340821597259278 0.031355517208838335 0.007547231177850992 0.031258874700619735" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007547231177850992 0.031258874700619735 C 0.007330424430446975 0.031309368134237216 0.0045119367141947505 0.03196578277126444 0.0049455502090027855 0.031864795904029485 C 0.0045119367141947505 0.03196578277126444 0.0021270624927505503 0.0325212105410567 0.0023438692401545683 0.03247071710743922" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3589100051803027,0.21953542623256544) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.01878810854517547 0.03247071710743919 C 0.018571301797771455 0.03242022367382172 0.01575281408151927 0.03176380903679457 0.0161864275763273 0.031864795904029526 C 0.01575281408151927 0.03176380903679457 0.013367939860075066 0.031208381267002275 0.013584746607479084 0.031258874700619756" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013584746607479084 0.031258874700619756 C 0.013378337026887366 0.031162232192401156 0.010695012479195045 0.029905879585559344 0.011107831640378475 0.03009916460199654 C 0.010695012479195045 0.029905879585559344 0.00842450709268623 0.028842811995154802 0.008630916673277941 0.0289394545033734" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008630916673277941 0.0289394545033734 C 0.008847723420681955 0.028989947936990872 0.011666211136934137 0.029646362574018023 0.011232597642126103 0.029545375706783072 C 0.011666211136934137 0.029646362574018023 0.014051085358378361 0.030201790343810306 0.01383427861097434 0.030151296910192825" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01383427861097434 0.030151296910192825 C 0.014040688191566057 0.03024793941841143 0.016724012739258356 0.03150429202525326 0.01631119357807493 0.03131100700881606 C 0.016724012739258356 0.03150429202525326 0.01899451812576718 0.032567359615657786 0.01878810854517547 0.03247071710743919" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3169666551230875,0.23997858678515727) rotate(0) scale(1,1) translate(-0.022986364471475812,-0.022986364471475812)"><path d="M 0.017341837192536094 0.01635770898214701 C 0.01757520379793631 0.016037055456288033 0.02033284708123666 0.012604055099232413 0.020142236457338654 0.012509866671839278 C 0.02033284708123666 0.012604055099232413 0.019586408697809955 0.017902812064116758 0.019629164679312163 0.017487970110864642" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019629164679312163 0.017487970110864642 C 0.019597652176317 0.01771522162767887 0.01914005886572172 0.020717696057254032 0.019251014643370194 0.020214988312635386 C 0.01914005886572172 0.020717696057254032 0.0182182520728772 0.023795919274092813 0.018297695347530507 0.023520463046288395" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.018297695347530507 0.023520463046288395 C 0.0180396253745473 0.023883182918084916 0.014994826316359006 0.027868907355618897 0.015200855671732023 0.027873101507846658 C 0.014994826316359006 0.027868907355618897 0.015877383700664487 0.023103219195530978 0.015825343083054298 0.02347013321955526" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.015825343083054298 0.02347013321955526 C 0.015823947989108217 0.023161581396624924 0.01593497646482481 0.019174809324607214 0.01580860195570133 0.019767511344391236 C 0.01593497646482481 0.019174809324607214 0.017469606795605656 0.016073558785293325 0.017341837192536094 0.01635770898214701" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35772025053425377,0.23997858678515727) rotate(0) scale(1,1) translate(-0.022986364471475812,-0.022986364471475812)"><path d="M 0.028630891750415555 0.01635770898214701 C 0.02875866135348512 0.016641859179000698 0.03029050149637384 0.020360213364175258 0.03016412698725035 0.019767511344391236 C 0.03029050149637384 0.020360213364175258 0.030145990765951324 0.023778685042485596 0.030147385859897402 0.02347013321955526" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.030147385859897402 0.02347013321955526 C 0.03019942647750759 0.023837047243579542 0.030565843915846647 0.02787729566007442 0.030771873271219663 0.027873101507846658 C 0.030565843915846647 0.02787729566007442 0.027416963622438024 0.023157743174491874 0.027675033595421228 0.023520463046288395" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.027675033595421228 0.023520463046288395 C 0.027595590320767915 0.023245006818483977 0.026610758521933 0.01971228056801674 0.026721714299581478 0.020214988312635386 C 0.026610758521933 0.01971228056801674 0.026312051760644318 0.017260718594050414 0.026343564263639485 0.017487970110864642" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.026343564263639485 0.017487970110864642 C 0.026300808282137277 0.017073128157612527 0.026021103109510984 0.012415678244446143 0.025830492485612977 0.012509866671839278 C 0.026021103109510984 0.012415678244446143 0.02886425835581577 0.01667836250800599 0.028630891750415555 0.01635770898214701" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.26146107047309675) rotate(0) scale(1,1) translate(-0.032753407916317374,-0.032753407916317374)"><path d="M 0.028595592495859894 0.03359276928992462 C 0.028670556132018438 0.0337908018129356 0.02852062885970135 0.03537506199702346 0.028595592495859894 0.03517702947401248 C 0.02852062885970135 0.03537506199702346 0.027546101589640284 0.035969159566056425 0.02769602886195737 0.035969159566056425 C 0.027546101589640284 0.035969159566056425 0.026721501591896315 0.0349789969510015 0.026796465228054858 0.03517702947401248 C 0.026721501591896315 0.0349789969510015 0.0268714288642134 0.03339473676691364 0.026796465228054858 0.03359276928992462 C 0.0268714288642134 0.03339473676691364 0.027845956134274458 0.03280063919788068 0.02769602886195737 0.03280063919788068 C 0.027845956134274458 0.03280063919788068 0.028670556132018438 0.0337908018129356 0.028595592495859894 0.03359276928992462 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.26146107047309675) rotate(0) scale(1,1) translate(-0.032753407916317374,-0.032753407916317374)"><path d="M 0.037810786970677523 0.03280063919788068 C 0.0379607142429946 0.03280063919788068 0.03878531424073848 0.0337908018129356 0.038710350604579946 0.03359276928992462 C 0.03878531424073848 0.0337908018129356 0.03863538696842141 0.03537506199702346 0.038710350604579946 0.03517702947401248 C 0.03863538696842141 0.03537506199702346 0.037660859698360444 0.035969159566056425 0.037810786970677523 0.035969159566056425 C 0.037660859698360444 0.035969159566056425 0.03683625970061643 0.0349789969510015 0.036911223336774976 0.03517702947401248 C 0.03683625970061643 0.0349789969510015 0.03698618697293352 0.03339473676691364 0.036911223336774976 0.03359276928992462 C 0.03698618697293352 0.03339473676691364 0.0379607142429946 0.03280063919788068 0.037810786970677523 0.03280063919788068 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 84 KiB

View File

@@ -0,0 +1,178 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.24784340432461505) rotate(0) scale(1,1) translate(-0.5000000000000002,-0.5023010568767862)"><path d="M 0.4794178018873641 0.47233384179720206 C 0.47964759286081154 0.471532014553832 0.48303288515675974 0.46132310935235155 0.48217529356873323 0.4627119148767614 C 0.48303288515675974 0.46132310935235155 0.4911942931462877 0.4548663482609141 0.48970890094368213 0.4556681755042842 C 0.4911942931462877 0.4548663482609141 0.5017151831760532 0.45308998795632077 0.5000000000000002 0.45308998795632077 C 0.5017151831760532 0.45308998795632077 0.5117764912589237 0.45647000274765426 0.5102910990563181 0.4556681755042842 C 0.5117764912589237 0.45647000274765426 0.5186822980192936 0.46410072040117123 0.5178247064312671 0.4627119148767614 C 0.5186822980192936 0.46410072040117123 0.5208119890860836 0.47313566904057214 0.5205821981126362 0.47233384179720206" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5205821981126362 0.47233384179720206 C 0.5209080829160863 0.4729125107657062 0.5252225627992486 0.4803826040020821 0.5244928157540371 0.4792778694192512 C 0.5252225627992486 0.4803826040020821 0.5297430248969368 0.4861167224054994 0.5293391626551753 0.48559065679117264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5293391626551753 0.48559065679117264 C 0.5295184626932719 0.48617641233669406 0.5320452463432147 0.49394393856417285 0.5314907631123333 0.49261972333743 C 0.5320452463432147 0.49394393856417285 0.5363681446185363 0.5022196991933088 0.5359929614257515 0.5014812395120873" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5359929614257515 0.5014812395120873 C 0.5361450934299837 0.5020613893607242 0.5380848743696337 0.509842198095591 0.5378185454765388 0.5084430376957301 C 0.5380848743696337 0.509842198095591 0.5391097952932898 0.5198169908944258 0.5391889081428903 0.5182711643104183 C 0.5391097952932898 0.5198169908944258 0.5360930227451778 0.5283685358245341 0.5368691912813326 0.5269929567038195 C 0.5360930227451778 0.5283685358245341 0.5283917745377427 0.5356932653253139 0.5298748857090332 0.5347781137589941 C 0.5283917745377427 0.5356932653253139 0.517251136996127 0.5380043624526448 0.5190718572258466 0.5379747754996576 C 0.517251136996127 0.5380043624526448 0.5064369215169108 0.5343945715136894 0.508026242952398 0.5351331571948412 C 0.5064369215169108 0.5343945715136894 0.49933114642063375 0.5286099631700854 0.5000000000000002 0.5291117473258358" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5000000000000002 0.5291117473258358 C 0.4993311464206338 0.5296135314815862 0.49038443561211637 0.535871742875993 0.49197375704760354 0.5351331571948412 C 0.49038443561211637 0.535871742875993 0.47910742254443456 0.5379451885466703 0.48092814277415435 0.5379747754996576 C 0.47910742254443456 0.5379451885466703 0.46864200311967524 0.5338629621926743 0.47012511429096576 0.5347781137589941 C 0.46864200311967524 0.5338629621926743 0.4623546401825133 0.5256173775831049 0.46313080871866785 0.5269929567038195 C 0.4623546401825133 0.5256173775831049 0.4607319790075107 0.5167253377264108 0.46081109185711133 0.5182711643104183 C 0.4607319790075107 0.5167253377264108 0.4624477834165547 0.5070438772958692 0.4621814545234599 0.5084430376957301 C 0.4624477834165547 0.5070438772958692 0.4641591705784811 0.5009010896634505 0.4640070385742487 0.5014812395120873" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.4640070385742487 0.5014812395120873 C 0.46438222176703353 0.5007427798308659 0.46906372011854836 0.4912955081106871 0.468509236887667 0.49261972333743 C 0.46906372011854836 0.4912955081106871 0.4708401373829215 0.4850049012456512 0.470660837344825 0.48559065679117264" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.470660837344825 0.48559065679117264 C 0.47106469958658653 0.48506459117684586 0.47623693129117484 0.4781731348364203 0.4755071842459632 0.4792778694192512 C 0.47623693129117484 0.4781731348364203 0.47974368669081413 0.47175517282869794 0.47941780188736405 0.47233384179720206" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286705,0.2597433962800967) rotate(0) scale(1,1) translate(-0.09500000000000003,-0.10103679588786563)"><path d="M 0.10712140932662359 0.09163813630396205 C 0.106904126927407 0.09197389971474419 0.10418294431490277 0.09640928466625322 0.10451402053602456 0.09566729723334788 C 0.10418294431490277 0.09640928466625322 0.10303470085125685 0.10094820952094928 0.10314849467316206 0.10054198549882609" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10314849467316206 0.10054198549882609 C 0.10310864948883847 0.1007180411811412 0.10258162551647278 0.1029673787885 0.10267035246127887 0.10265465368660737 C 0.10258162551647278 0.1029673787885 0.10203488957500641 0.10443135614111525 0.1020837713354889 0.10429468672153772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1020837713354889 0.10429468672153772 C 0.1020203069082665 0.10439306863188293 0.10117787046549624 0.10565579095327829 0.10132219820881999 0.10547526964568019 C 0.10117787046549624 0.10565579095327829 0.10027097509950261 0.10654308180996791 0.10035183841560395 0.106460942412715" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10035183841560395 0.106460942412715 C 0.10018459346511634 0.10655299378393232 0.09789891247511884 0.10769569874024579 0.09834489900975249 0.1075655588673228 C 0.09789891247511884 0.10769569874024579 0.09444251683170797 0.10802262088779079 0.09500000000000004 0.10802262088779079 C 0.09444251683170797 0.10802262088779079 0.09120911445561394 0.10743541899439982 0.09165510099024761 0.1075655588673228 C 0.09120911445561394 0.10743541899439982 0.08948091663390849 0.10636889104149769 0.08964816158439612 0.106460942412715" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08964816158439612 0.106460942412715 C 0.08956729826829479 0.1063788030154621 0.08853347404785637 0.10529474833808208 0.08867780179118012 0.10547526964568019 C 0.08853347404785637 0.10529474833808208 0.08785276423728877 0.1041963048111925 0.08791622866451118 0.10429468672153772" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08791622866451118 0.10429468672153772 C 0.08786734690402868 0.10415801730196018 0.0872409205939151 0.10234192858471473 0.0873296475387212 0.10265465368660737 C 0.0872409205939151 0.10234192858471473 0.08681166014251436 0.10036592981651099 0.08685150532683797 0.10054198549882609" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08685150532683797 0.10054198549882609 C 0.08673771150493276 0.1001357614767029 0.08515490324285367 0.09492530980044254 0.08548597946397546 0.09566729723334788 C 0.08515490324285367 0.09492530980044254 0.08266130827415992 0.0913023728931799 0.0828785906733765 0.09163813630396205" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33734345282867056,0.23816207078525886) rotate(0) scale(1,1) translate(-0.095,-0.09632994090643211)"><path d="M 0.07497818711520889 0.07653922078693011 C 0.07591099396729327 0.07590137127215574 0.08857603130226899 0.06824717709486335 0.08617186934022152 0.06888502660963772 C 0.08857603130226899 0.06824717709486335 0.10623229262182599 0.06952287612441209 0.10382813065977851 0.06888502660963772 C 0.10623229262182599 0.06952287612441209 0.11595461973687554 0.07717707030170448 0.11502181288479116 0.07653922078693011" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11502181288479116 0.07653922078693011 C 0.11535022509976832 0.07732980393630391 0.11892158916409679 0.08816344541166875 0.11896275946451702 0.08602621857941567 C 0.11892158916409679 0.08816344541166875 0.11415818676435094 0.10353258645684628 0.11452776927974832 0.102185942773967" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11452776927974832 0.102185942773967 C 0.11429901172201552 0.10239083795481024 0.11116920650164465 0.105169842961232 0.11178267858695473 0.10464468494408585 C 0.11116920650164465 0.105169842961232 0.10678138972845001 0.10880810181602368 0.1071661042560273 0.10848783897972078" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.1071661042560273 0.10848783897972078 C 0.10676719316870409 0.10865508438768201 0.10136532918681322 0.11077334157749892 0.10237917120814882 0.11049478387525558 C 0.10136532918681322 0.11077334157749892 0.09377013813197523 0.11183053140664093 0.09500000000000003 0.11183053140664093 C 0.09377013813197523 0.11183053140664093 0.08660698677051563 0.11021622617301223 0.08762082879185124 0.11049478387525558 C 0.08660698677051563 0.11021622617301223 0.08243498465664956 0.10832059357175955 0.08283389574397276 0.10848783897972078" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08283389574397276 0.10848783897972078 C 0.08244918121639548 0.10816757614341788 0.07760384932773523 0.10411952692693971 0.07821732141304531 0.10464468494408585 C 0.07760384932773523 0.10411952692693971 0.07524347316251893 0.10198104759312376 0.07547223072025173 0.102185942773967" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.07547223072025173 0.102185942773967 C 0.07510264820485435 0.10083929909108773 0.07099607023506282 0.08388899174716259 0.07103724053548306 0.08602621857941567 C 0.07099607023506282 0.08388899174716259 0.07530659933018603 0.07574863763755631 0.07497818711520889 0.07653922078693011" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.33734345282867045,0.22007537710887584) rotate(0) scale(1,1) translate(-0.027392108961499424,-0.02565601281319204)"><path d="M 0.040870231160387724 0.02466065373430596 C 0.04055343989038053 0.024738506938560827 0.03634787125548793 0.025694154742318193 0.03706873592030137 0.025594892185364364 C 0.03634787125548793 0.025694154742318193 0.031815781787820296 0.02587321377045089 0.03221985518262653 0.025851804417751926" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03221985518262653 0.025851804417751926 C 0.0318175429975326 0.025896153158260136 0.026587484591311578 0.02638398930385044 0.027392108961499427 0.02638398930385044 C 0.026587484591311578 0.02638398930385044 0.022162050555278402 0.02580745567724372 0.022564362740372327 0.02585180441775193" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022564362740372327 0.02585180441775193 C 0.02216028934556609 0.025830395065052966 0.016994617337884065 0.025495629628410538 0.017715482002697493 0.025594892185364367 C 0.016994617337884065 0.025495629628410538 0.013597195492603974 0.0245828005300511 0.013913986762611168 0.024660653734305964" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="筋肉">
<g transform="translate(0.3373434528286704,0.23812769231362577) rotate(0) scale(1,1) translate(-0.006218922926089482,-0.012421130242836014)"><path d="M 0.011181902737778176 0.007720300693054294 C 0.011105954412627465 0.007774591050028712 0.010055187960055069 0.008507389508151287 0.010270522835969647 0.008371784976747308 C 0.010055187960055069 0.008507389508151287 0.008458497676039364 0.009428869244331605 0.008597884226803233 0.009347555069902043" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.008597884226803233 0.009347555069902043 C 0.008399637451743753 0.009442788290415614 0.0058224293759705234 0.010485153628513218 0.006218922926089482 0.0104903537160649 C 0.0058224293759705234 0.010485153628513218 0.003641714850316254 0.009184720711216607 0.003839961625375733 0.00928515401928186" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.003839961625375733 0.00928515401928186 C 0.0037005750746118655 0.009198639757300616 0.0019519881402947407 0.008100978168999597 0.0021673230162093187 0.008246982875506941 C 0.0019519881402947407 0.008100978168999597 0.0011799947892500865 0.007473607096667644 0.0012559431144007966 0.007533097541193743" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.33083710429621244,0.22158862249182543) rotate(0) scale(1,1) translate(-0.03649433879459807,-0.02487077539596666)"><path d="M 0.036165054023246546 0.03432065866276059 C 0.035959282876937566 0.034154658934078076 0.033325338635225556 0.03194182635270305 0.03369580026753882 0.03232866191857035 C 0.033325338635225556 0.03194182635270305 0.031554823949483085 0.029457796035168123 0.03171951443548737 0.02967863187235291" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03171951443548737 0.02967863187235291 C 0.03158356629046793 0.029267984632344392 0.03009285341112644 0.024168472767785172 0.03008813669525401 0.02475086499225072 C 0.03009285341112644 0.024168472767785172 0.03191677988684844 0.02251818019430928 0.031776115025956564 0.022689925178766314" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031776115025956564 0.022689925178766314 C 0.03231427347502231 0.022698937807447715 0.038980871018160834 0.022828868331992783 0.03823401641474555 0.02279807672294313 C 0.038980871018160834 0.022828868331992783 0.04094706642128947 0.02308120346773042 0.04073837026693994 0.023059424487362166" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04073837026693994 0.023059424487362166 C 0.04084033919905746 0.023208899108895516 0.04206848872237339 0.02546424747393619 0.041961997452350186 0.024853119945762357 C 0.04206848872237339 0.02546424747393619 0.04202078784512406 0.030854607732088667 0.042016265507218375 0.030392954825448182" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.042016265507218375 0.030392954825448182 C 0.04179160959219266 0.030741566770033094 0.03883279356991218 0.03490360681357651 0.03932039452690983 0.03457629816046714 C 0.03883279356991218 0.03490360681357651 0.035902108981274605 0.03429935537128505 0.036165054023246546 0.03432065866276059" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3438498013611284,0.22158862249182543) rotate(0) scale(1,1) translate(-0.03649433879459807,-0.02487077539596666)"><path d="M 0.03682362356594955 0.03432065866276059 C 0.03656067852397761 0.03434196195423614 0.03318068210528865 0.03424898950735777 0.033668283062286294 0.03457629816046714 C 0.03318068210528865 0.03424898950735777 0.03074775616695209 0.03004434288086327 0.030972412081977797 0.030392954825448182" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030972412081977797 0.030392954825448182 C 0.03097693441988348 0.029931301918807697 0.031133171406869168 0.024241992417588523 0.031026680136845966 0.024853119945762357 C 0.031133171406869168 0.024241992417588523 0.03235227625437376 0.022909949865828817 0.032250307322256234 0.023059424487362166" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.032250307322256234 0.023059424487362166 C 0.03245900347660577 0.023037645506993915 0.035501515777865915 0.022767285113893476 0.034754661174450634 0.02279807672294313 C 0.035501515777865915 0.022767285113893476 0.04175072101230537 0.022680912550084913 0.04121256256323962 0.022689925178766314" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04121256256323962 0.022689925178766314 C 0.0413532274241315 0.02286167016322335 0.04290525760981457 0.025333257216716268 0.042900540893942136 0.02475086499225072 C 0.04290525760981457 0.025333257216716268 0.041133215008689335 0.030089279112361426 0.04126916315370878 0.02967863187235291" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04126916315370878 0.02967863187235291 C 0.04110447266770449 0.029899467709537695 0.03892241568934408 0.03271549748443766 0.039292877321657343 0.03232866191857035 C 0.03892241568934408 0.03271549748443766 0.036617852419640565 0.03448665839144311 0.03682362356594955 0.03432065866276059" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3154577155022342,0.22019086511904729) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.012988097583132381 0.014760334571810772 C 0.012501375659960672 0.014376114550339778 0.009356362973730785 0.011610094270350011 0.010067766044102122 0.012455014442984802 C 0.009356362973730785 0.011610094270350011 0.008494998013704739 0.009230113384838232 0.008719679160904365 0.009690813536002029" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3592291901551069,0.22019086511904734) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.004236410268448617 0.009690813536002029 C 0.0040117291212489895 0.010151513687165825 0.002176920314879514 0.013299934615619593 0.0028883233852508533 0.012455014442984802 C 0.002176920314879514 0.013299934615619593 -0.0005187300769511286 0.015144554593281767 -3.200815377941692E-05 0.014760334571810772" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3163373534873328,0.23863149792127664) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.007953769246878666 0.01565888031051803 C 0.007779784810638281 0.015384444989013103 0.005566064685350314 0.011786099846785818 0.005865956011994045 0.012365656452458887 C 0.005566064685350314 0.011786099846785818 0.0042291664367505415 0.008399079758273054 0.004355073327153888 0.008704201042441195" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.35834955217000847,0.23863149792127664) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.0086010161021991 0.008704201042441195 C 0.008475109211795756 0.009009322326609335 0.00679024209071526 0.012945213058131956 0.00709013341735899 0.012365656452458887 C 0.00679024209071526 0.012945213058131956 0.004828335746233962 0.01593331563202296 0.005002320182474349 0.01565888031051803" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3373434528286705,0.22331252996094492) rotate(0) scale(1,1) translate(-0.017697491909778828,-0.017697491909778828)"><path d="M 0.015936232638433596 0.01769749190977883 C 0.015979221046529372 0.017605384321687262 0.01659886514152837 0.016461941052403405 0.016452093535582933 0.01659220085267998 C 0.01659886514152837 0.016461941052403405 0.017905058305478137 0.01613437430645994 0.01769749190977882 0.01613437430645994 C 0.017905058305478137 0.01613437430645994 0.01908966188992015 0.01672246065295655 0.018942890283974712 0.016592200852679977 C 0.01908966188992015 0.01672246065295655 0.019501739589219837 0.017789599497870397 0.019458751181124057 0.017697491909778828" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019458751181124057 0.017697491909778828 C 0.01937215593361625 0.01789133779033856 0.018272836605084934 0.020496437307129106 0.01841960821103037 0.020023642476495615 C 0.018272836605084934 0.020496437307129106 0.017637315551341202 0.023649978827454503 0.01769749190977883 0.023371029877380742" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01769749190977883 0.023371029877380742 C 0.017637315551341202 0.023092080927306982 0.016828604002581845 0.019550847645862124 0.01697537560852728 0.020023642476495615 C 0.016828604002581845 0.019550847645862124 0.015849637390925788 0.0175036460292191 0.015936232638433596 0.01769749190977883" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.22331252996094492) rotate(0) scale(1,1) translate(-0.35878523175949983,-0.35878523175950006)"><path d="M 0.35913438903872674 0.357656950548661 C 0.3591814680674941 0.35769286430480035 0.35976439900153445 0.35818193905657025 0.3596993373839353 0.35808791562233366 C 0.35976439900153445 0.35818193905657025 0.3599151284499169 0.3589014511156945 0.3599151284499169 0.35878523175950006 C 0.3599151284499169 0.3589014511156945 0.3596342757663361 0.3595765713309033 0.3596993373839353 0.3594825478966667 C 0.3596342757663361 0.3595765713309033 0.3590291171300882 0.3599494267264786 0.35913438903872674 0.35991351297033924 C 0.3590291171300882 0.3599494267264786 0.35833080257163447 0.3598775992141999 0.358436074480273 0.35991351297033924 C 0.35833080257163447 0.3598775992141999 0.3578060645174653 0.35938852446243014 0.3578711261350645 0.3594825478966667 C 0.3578060645174653 0.35938852446243014 0.35765533506908287 0.3586690124033056 0.35765533506908287 0.35878523175950006 C 0.35765533506908287 0.3586690124033056 0.35793618775266367 0.3579938921880971 0.3578711261350645 0.35808791562233366 C 0.35793618775266367 0.3579938921880971 0.35848315350904036 0.3576210367925216 0.358436074480273 0.357656950548661" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="虫性">
<g transform="translate(0.33734345282867045,0.24497979388527952) rotate(0) scale(1,1) translate(-0.019192864762988458,-0.012340763191334692)"><path d="M -0.007671834226448936 -0.004674459095555359 C -0.007272931391436088 -0.004724949796161596 -0.002025994253883721 -0.00496186712021118 -0.0028850002062947686 -0.005280347502830195 C -0.002025994253883721 -0.00496186712021118 0.0030963403198818367 -0.00048372342090193405 0.0026362372024836362 -0.000852694504127185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0026362372024836362 -0.000852694504127185 C 0.002940912471773527 -0.00037471458045562747 0.006860299403640846 0.005858752390837506 0.006292340433962326 0.004883064579931505 C 0.006860299403640846 0.005858752390837506 0.009715028539014502 0.011353267113979267 0.009451744838625873 0.010855559226744823" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.009451744838625873 0.010855559226744823 C 0.010263504832322757 0.01135515187879041 0.02081638475038225 0.016850671051291857 0.019192864762988482 0.016850671051291857 C 0.02081638475038225 0.016850671051291857 0.02974574468104797 0.010355966574699237 0.028933984687351085 0.010855559226744823" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.028933984687351085 0.010855559226744823 C 0.02919726838773971 0.01035785133951038 0.0326613480616931 0.003907376769025504 0.03209338909201459 0.004883064579931504 C 0.0326613480616931 0.003907376769025504 0.03605416759278314 -0.0013306744277987424 0.035749492323493254 -0.000852694504127185" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.035749492323493254 -0.000852694504127185 C 0.03620959544089145 -0.0012216655873524358 0.042129735684682715 -0.00559882788544921 0.041270729732271666 -0.005280347502830195 C 0.042129735684682715 -0.00559882788544921 0.0464564665874387 -0.004623968394949125 0.04605756375242585 -0.004674459095555361" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04605756375242585 -0.004674459095555361 C 0.046471957214824895 -0.004152879840757849 0.04942466518356221 0.0003916240466576143 0.04854392452682014 -0.001544983566770289 C 0.04942466518356221 0.0003916240466576143 0.05180835488722128 0.00836021494364245 0.051342007692878264 0.0069451865850120595" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.051342007692878264 0.0069451865850120595 C 0.050636916734303504 0.007037650729855966 0.041646046990892596 0.008620612877207364 0.04288091618998113 0.008054756323138937 C 0.041646046990892596 0.008620612877207364 0.035993799063302044 0.014208857643057694 0.03652357730381582 0.013735465233833174" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03652357730381582 0.013735465233833174 C 0.035871504961571585 0.014307768529368249 0.027254483151816052 0.021895058468024736 0.028698709196884997 0.02060310478025408 C 0.027254483151816052 0.021895058468024736 0.018714820829293825 0.030585968215437045 0.01919286476298849 0.02923890948708104 C 0.018714820829293825 0.030585968215437045 0.023276291761679085 0.03739521785664656 0.02296218199254904 0.036767809520526135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02296218199254904 0.036767809520526135 C 0.022333962454288953 0.03693555061148081 0.019192864762988506 0.037774256066254196 0.019192864762988506 0.037774256066254196 C 0.019192864762988506 0.037774256066254196 0.02359040153080913 0.03660006842957146 0.02296218199254904 0.036767809520526135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02296218199254904 0.036767809520526135 C 0.02303921556531884 0.03730363362715191 0.024344939865263076 0.04418449846914961 0.023886584865786622 0.04319769880003542 C 0.024344939865263076 0.04418449846914961 0.02884376341297313 0.04906038111238489 0.028462441986266476 0.04860940554989647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028462441986266476 0.04860940554989647 C 0.02802787789990284 0.04845559124099657 0.022475208181296332 0.046256841745348026 0.02324767294990283 0.04676363384309765 C 0.022475208181296332 0.046256841745348026 0.018854964080745627 0.042174922588051215 0.01919286476298849 0.04252790037690094" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01919286476298849 0.04252790037690094 C 0.018854964080745624 0.04288087816575067 0.014365591807467623 0.04727042594084728 0.015138056576074123 0.04676363384309765 C 0.014365591807467623 0.04727042594084728 0.009488723453346858 0.04876321985879637 0.009923287539710493 0.04860940554989647" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009923287539710493 0.04860940554989647 C 0.010304608966417148 0.04815842998740805 0.014957499659666798 0.042210899130921214 0.014499144660190342 0.04319769880003541 C 0.014957499659666798 0.042210899130921214 0.01550058110619776 0.03623198541390036 0.015423547533427959 0.036767809520526135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015423547533427959 0.036767809520526135 C 0.01605176707168805 0.03693555061148081 0.019192864762988506 0.037774256066254196 0.019192864762988506 0.037774256066254196 C 0.019192864762988506 0.037774256066254196 0.014795327995167869 0.03660006842957146 0.015423547533427959 0.036767809520526135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015423547533427959 0.036767809520526135 C 0.015737657302558 0.03614040118440571 0.018714820829293825 0.027891850758725033 0.01919286476298849 0.02923890948708104 C 0.018714820829293825 0.027891850758725033 0.008242794284023055 0.019311151092483426 0.009687020329091998 0.02060310478025408 C 0.008242794284023055 0.019311151092483426 0.0012100798799169405 0.013163161938298099 0.0018621522221611757 0.013735465233833174" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0018621522221611757 0.013735465233833174 C 0.0013323739816474 0.013262072824608654 -0.005730055863092672 0.0074888997690705115 -0.004495186664004132 0.008054756323138937 C -0.005730055863092672 0.0074888997690705115 -0.013661369125476075 0.006852722440168161 -0.01295627816690131 0.0069451865850120665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.01295627816690131 0.0069451865850120665 C -0.01248993097255829 0.005530158226381675 -0.009277454344101129 -0.0034815911801981867 -0.01015819500084319 -0.0015449835667702828 C -0.009277454344101129 -0.0034815911801981867 -0.007257440764049902 -0.005196038350352868 -0.007671834226448943 -0.004674459095555356" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286704,0.23812769231362577) rotate(0) scale(1,1) translate(-0.01919286476298845,-0.01919286476298845)"><path d="M -0.0013893337674973963 -0.0010930166870995778 C -0.001029076036089474 -0.0009131696553457726 0.0036492605368996177 0.0013933914074938474 0.002933759009397672 0.0010651476939460849 C 0.0036492605368996177 0.0013933914074938474 0.007551928358619976 0.002994304557267531 0.007196684562525953 0.0028459078754735734" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007196684562525953 0.0028459078754735734 C 0.007635285878391414 0.00332532476638972 0.013087932864739237 0.009499269695481389 0.012459900352911482 0.008598910566467333 C 0.013087932864739237 0.009499269695481389 0.014922505900421304 0.014071159661740157 0.01473307470445901 0.013650217423642247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01473307470445901 0.013650217423642247 C 0.015104723876003132 0.01384431807589531 0.019936163106076703 0.01597942525067901 0.01919286476298846 0.01597942525067901 C 0.019936163106076703 0.01597942525067901 0.02402430399306203 0.013456116771389184 0.023652654821517908 0.013650217423642247" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023652654821517908 0.013650217423642247 C 0.0238420860174802 0.013229275185544337 0.02655386168489316 0.007698551437453276 0.02592582917306541 0.008598910566467333 C 0.02655386168489316 0.007698551437453276 0.0316276462793164 0.0023664909845574266 0.031189044963450936 0.0028459078754735734" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031189044963450936 0.0028459078754735734 C 0.03154428875954496 0.002697511193679616 0.036167472044081175 0.0007369039803983212 0.03545197051657922 0.001065147693946084 C 0.036167472044081175 0.0007369039803983212 0.04013532102488231 -0.0012728637188533847 0.03977506329347438 -0.0010930166870995795" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03977506329347438 -0.0010930166870995795 C 0.04035863374408513 -0.00021296823369846174 0.044323569406964136 0.005874400822449076 0.04327648599713889 0.004187274033307127 C 0.044323569406964136 0.005874400822449076 0.04652107671164037 0.009836822383492944 0.046057563752425874 0.009029744047752114" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.046057563752425874 0.009029744047752114 C 0.045658660917413024 0.00897925334714588 0.040411723779860645 0.008742336023096323 0.041270729732271694 0.008423855640477304 C 0.040411723779860645 0.008742336023096323 0.035289389206095076 0.013220479722405603 0.035749492323493275 0.012851508639180349" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.035749492323493275 0.012851508639180349 C 0.03544481705420339 0.013329488562851903 0.03152543012233611 0.019562955534145 0.03209338909201462 0.018587267723239004 C 0.03152543012233611 0.019562955534145 0.028670700986962477 0.025057470257286742 0.028933984687351103 0.0245597623700523" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028933984687351103 0.0245597623700523 C 0.02812222469365422 0.025059355022097888 0.017569344775594735 0.03055487419459936 0.019192864762988503 0.03055487419459936 C 0.017569344775594735 0.03055487419459936 0.008639984844929005 0.024060169718006712 0.009451744838625889 0.0245597623700523" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009451744838625889 0.0245597623700523 C 0.00918846113823726 0.024062054482817858 0.0057243814642838255 0.01761157991233301 0.006292340433962345 0.018587267723239004 C 0.0057243814642838255 0.01761157991233301 0.0023315619331937664 0.012373528715508795 0.002636237202483657 0.012851508639180349" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.002636237202483657 0.012851508639180349 C 0.0021761340850854566 0.012482537555955095 -0.0037440061587057966 0.008105375257858288 -0.0028850002062947486 0.008423855640477308 C -0.0037440061587057966 0.008105375257858288 -0.008070737061461766 0.009080234748358356 -0.007671834226448918 0.009029744047752121" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.007671834226448918 0.009029744047752121 C -0.007208321267234424 0.008222665712011289 -0.003843673061336702 0.002500147244165178 -0.0048907564711619545 0.004187274033307127 C -0.003843673061336702 0.002500147244165178 -0.0008057633168866448 -0.0019730651405006914 -0.0013893337674974033 -0.0010930166870995743" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="淫タトゥ">
<g id="渦">
<g transform="translate(0.3373434528286704,0.23812769231362577) rotate(0) scale(1,1) translate(-0.004044276755330287,-0.0037120127838791922)"><path d="M -0.01847507336924512 -0.012974828159143794 C -0.018408214010596245 -0.013098786429726254 -0.01755646885875624 -0.014678830384730331 -0.017672761065458654 -0.014462327406133317 C -0.01755646885875624 -0.014678830384730331 -0.017030134040762566 -0.015665408610322524 -0.017079566888816112 -0.015572863902307969" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.017079566888816112 -0.015572863902307969 C -0.017060533979466237 -0.015494047865889525 -0.016775468397144815 -0.014484278818037714 -0.016851171976617615 -0.014627071465286651 C -0.016775468397144815 -0.014484278818037714 -0.015971728640069485 -0.013715039908504716 -0.016171123935142518 -0.013859352135320713 C -0.015971728640069485 -0.013715039908504716 -0.014166541325171474 -0.012689998282283774 -0.01445842843574123 -0.01289532474349469 C -0.014166541325171474 -0.012689998282283774 -0.01242963283500743 -0.011084890497067582 -0.012668478608305445 -0.011395434600789697 C -0.01242963283500743 -0.011084890497067582 -0.011540948801189246 -0.008766039069329008 -0.011592279156165055 -0.0091687954988293 C -0.011540948801189246 -0.008766039069329008 -0.01227805771165388 -0.006197678208237969 -0.012052514348595719 -0.006562357446786203 C -0.01227805771165388 -0.006197678208237969 -0.014709100538558806 -0.0046424158251887745 -0.014298799512863001 -0.004792644636250489 C -0.014709100538558806 -0.0046424158251887745 -0.01734814829255564 -0.004872033062320387 -0.016976126656945374 -0.004759611714045624 C -0.01734814829255564 -0.004872033062320387 -0.018925369304887637 -0.006412494439907438 -0.018763059140186174 -0.006141700815547643 C -0.018925369304887637 -0.006412494439907438 -0.018851697816301218 -0.008251554983440863 -0.018923848633362918 -0.00800913520636316 C -0.018851697816301218 -0.008251554983440863 -0.01767892612017938 -0.009134099371275085 -0.017897249335445793 -0.009050738140480078 C -0.01767892612017938 -0.009134099371275085 -0.01610113300608227 -0.008935933283175886 -0.016303970050165973 -0.009009469975903236 C -0.01610113300608227 -0.008935933283175886 -0.015406602804658727 -0.008014518925001216 -0.01546320480644138 -0.008168297827751865 C -0.015406602804658727 -0.008014518925001216 -0.015697423669270037 -0.007021636247909835 -0.015624746028774138 -0.0071641231428954556 C -0.015697423669270037 -0.007021636247909835 -0.016394552364360333 -0.006399649416676836 -0.016335336492392164 -0.006458455087924422" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.016335336492392164 -0.006458455087924422 C -0.016310569874157688 -0.006517341222853038 -0.016017940099833924 -0.007297384179944258 -0.016038137073578443 -0.007165088707067819 C -0.016017940099833924 -0.007297384179944258 -0.01617834687210438 -0.00816201786875744 -0.016092972807457917 -0.008046000762441689 C -0.01617834687210438 -0.00816201786875744 -0.017224778844138186 -0.008562443282193256 -0.017062625849336002 -0.008557293982856828 C -0.017224778844138186 -0.008562443282193256 -0.018125180255983402 -0.007947740523788181 -0.018038808745084105 -0.008107792354478829 C -0.018125180255983402 -0.007947740523788181 -0.018002350728338105 -0.006418201007205004 -0.018099083980127547 -0.006636672014569056 C -0.018002350728338105 -0.006418201007205004 -0.01661173214232693 -0.005390423338540448 -0.016878009723610813 -0.005486140266110207 C -0.01661173214232693 -0.005390423338540448 -0.014617734887005757 -0.005592282210274191 -0.014903753004720926 -0.0054880688837319475 C -0.014617734887005757 -0.005592282210274191 -0.013310313277549111 -0.006997325903812889 -0.013445792311028791 -0.006736700184617127 C -0.013310313277549111 -0.006997325903812889 -0.013326857479616223 -0.008902624630810372 -0.01327800460296477 -0.008615577514081083 C -0.013326857479616223 -0.008902624630810372 -0.014209603642334812 -0.01041115747068614 -0.014032026830846233 -0.010181265585368608 C -0.014209603642334812 -0.01041115747068614 -0.01564303330864963 -0.01153609430759553 -0.0154089263408277 -0.011374280137891473 C -0.01564303330864963 -0.01153609430759553 -0.01703517223526197 -0.012221753141559355 -0.016841310444709413 -0.012123035621817298 C -0.01703517223526197 -0.012221753141559355 -0.017871414737836364 -0.012629873086240024 -0.01773526782745839 -0.012558890374796149 C -0.017871414737836364 -0.012629873086240024 -0.01853672383106068 -0.013009489641172765 -0.01847507336924512 -0.012974828159143794" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286704,0.23812769231362577) rotate(0) scale(1,1) translate(-0.004044276755330287,-0.0037120127838791922)"><path d="M 0.026563626879905655 -0.012974828159143794 C 0.0265019764180901 -0.012940166677114824 0.02568767442774102 -0.012487907663352274 0.025823821338119002 -0.012558890374796149 C 0.02568767442774102 -0.012487907663352274 0.024736002164817323 -0.012024318102075241 0.02492986395536989 -0.012123035621817298 C 0.024736002164817323 -0.012024318102075241 0.023263372883666273 -0.011212465968187415 0.0234974798514882 -0.011374280137891473 C 0.023263372883666273 -0.011212465968187415 0.021943003530018195 -0.009951373700051076 0.022120580341506768 -0.010181265585368608 C 0.021943003530018195 -0.009951373700051076 0.02131770523697385 -0.008328530397351793 0.02136655811362531 -0.008615577514081083 C 0.02131770523697385 -0.008328530397351793 0.0216698248551689 -0.006476074465421366 0.021534345821689227 -0.006736700184617127 C 0.0216698248551689 -0.006476074465421366 0.023278324633096592 -0.005383855557189704 0.022992306515381422 -0.0054880688837319475 C 0.023278324633096592 -0.005383855557189704 0.025232840815555158 -0.005581857193679966 0.024966563234271266 -0.005486140266110207 C 0.025232840815555158 -0.005581857193679966 0.026284370742577556 -0.006855143021933107 0.026187637490788118 -0.006636672014569056 C 0.026284370742577556 -0.006855143021933107 0.026040990744845227 -0.008267844185169477 0.026127362255744524 -0.008107792354478829 C 0.026040990744845227 -0.008267844185169477 0.024989026365194383 -0.0085521446835204 0.025151179359996556 -0.008557293982856828 C 0.024989026365194383 -0.0085521446835204 0.024096152253471965 -0.007929983656125938 0.02418152631811843 -0.008046000762441689 C 0.024096152253471965 -0.007929983656125938 0.024146887557983516 -0.0070327932341913806 0.024126690584238997 -0.007165088707067819 C 0.024146887557983516 -0.0070327932341913806 0.024448656621287146 -0.006399568952995806 0.024423890003052673 -0.006458455087924422" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.024423890003052673 -0.006458455087924422 C 0.024364674131084507 -0.006517260759172009 0.023640621898938785 -0.007306610037881076 0.023713299539434685 -0.0071641231428954556 C 0.023640621898938785 -0.007306610037881076 0.023608360318884525 -0.008322076730502514 0.02355175831710188 -0.008168297827751865 C 0.023608360318884525 -0.008322076730502514 0.02459536060491015 -0.009083006668630586 0.02439252356082644 -0.009009469975903236 C 0.02459536060491015 -0.009083006668630586 0.026204126061372828 -0.008967376909685071 0.02598580284610641 -0.009050738140480078 C 0.026204126061372828 -0.008967376909685071 0.02708455296108514 -0.0077667154292854566 0.02701240214402345 -0.00800913520636316 C 0.02708455296108514 -0.0077667154292854566 0.026689302486145223 -0.005870907191187848 0.02685161265084668 -0.006141700815547643 C 0.026689302486145223 -0.005870907191187848 0.02469265853199572 -0.004647190365770861 0.02506468016760599 -0.004759611714045624 C 0.02469265853199572 -0.004647190365770861 0.02197705199782764 -0.004942873447312204 0.02238735302352346 -0.004792644636250489 C 0.02197705199782764 -0.004942873447312204 0.019915524496198028 -0.006927036685334437 0.02014106785925618 -0.006562357446786203 C 0.019915524496198028 -0.006927036685334437 0.019732163021801457 -0.009571551928329591 0.01968083266682563 -0.0091687954988293 C 0.019732163021801457 -0.009571551928329591 0.020995877892264075 -0.011705978704511812 0.020757032118966068 -0.011395434600789697 C 0.020995877892264075 -0.011705978704511812 0.02283886905697145 -0.013100651204705608 0.0225469819464017 -0.01289532474349469 C 0.02283886905697145 -0.013100651204705608 0.02445907274087607 -0.01400366436213671 0.02425967744580304 -0.013859352135320713 C 0.02445907274087607 -0.01400366436213671 0.025015429066750878 -0.014769864112535589 0.024939725487278075 -0.014627071465286651 C 0.025015429066750878 -0.014769864112535589 0.025187153308826576 -0.01565167993872641 0.02516812039947669 -0.015572863902307969" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02516812039947669 -0.015572863902307969 C 0.025217553247530222 -0.015480319194293414 0.02587760678282149 -0.014245824427536302 0.025761314576119076 -0.014462327406133317 C 0.02587760678282149 -0.014245824427536302 0.026630486238554536 -0.012850869888561335 0.026563626879905655 -0.012974828159143794" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286704,0.23812769231362577) rotate(0) scale(1,1) translate(-0.0050491035115750255,-0.003435371609681657)"><path d="M -0.022507135541617974 -0.005819224737100748 C -0.02242005418776175 -0.005929938630782194 -0.021306516108375133 -0.0073479430756918885 -0.02146215929534329 -0.007147791461278101 C -0.021306516108375133 -0.0073479430756918885 -0.020570855464888144 -0.008310481830798536 -0.02063941729800008 -0.008221044110066194" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.02063941729800008 -0.008221044110066194 C -0.020633680024712286 -0.008167913165739192 -0.02052892607613889 -0.00747427520756819 -0.02057057001854657 -0.007583472778142173 C -0.02052892607613889 -0.00747427520756819 -0.020008388941769418 -0.006785470292698897 -0.02013968998910791 -0.006910673263178395 C -0.020008388941769418 -0.006785470292698897 -0.01879320961105948 -0.00590086176790391 -0.018994957450484684 -0.0060810371323881994 C -0.01879320961105948 -0.00590086176790391 -0.017545049089104203 -0.004466937935370457 -0.017718715916005434 -0.0047485688893669255 C -0.017545049089104203 -0.004466937935370457 -0.016881995094677832 -0.002313670579682291 -0.016910955527669906 -0.0027014656844305783 C -0.016881995094677832 -0.002313670579682291 -0.017599172410320208 0.00026230250981539596 -0.017371190720100564 -9.502763238748116E-05 C -0.017599172410320208 0.00026230250981539596 -0.020059475163162938 0.0017293757367203043 -0.01964673581030565 0.0015864960220039466 C -0.020059475163162938 0.0017293757367203043 -0.022696084589998295 0.0015071075959340486 -0.02232406295438803 0.001619528944208812 C -0.022696084589998295 0.0015071075959340486 -0.02427330560233029 -3.335378165300807E-05 -0.024110995437628825 0.0002374398427067865 C -0.02427330560233029 -3.335378165300807E-05 -0.02419963411374387 -0.001872414325186425 -0.02427178493080557 -0.0016299945481087227 C -0.02419963411374387 -0.001872414325186425 -0.023026862417622026 -0.002754958713020647 -0.023245185632888438 -0.0026715974822256404 C -0.023026862417622026 -0.002754958713020647 -0.02144906930352493 -0.002556792624921451 -0.021651906347608628 -0.0026303293176488016 C -0.02144906930352493 -0.002556792624921451 -0.02075453910210138 -0.0016353782667467827 -0.02081114110388403 -0.0017891571694974315 C -0.02075453910210138 -0.0016353782667467827 -0.02104535996671269 -0.0006424955896553969 -0.02097268232621679 -0.0007849824846410171 C -0.02104535996671269 -0.0006424955896553969 -0.02174248866180298 -2.0508758422402816E-05 -0.021683272789834812 -7.931442966998853E-05" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.021683272789834812 -7.931442966998853E-05 C -0.021658506171600336 -0.0001382005645986048 -0.021365876397276575 -0.0009182435216898224 -0.021386073371021094 -0.0007859480488133835 C -0.021365876397276575 -0.0009182435216898224 -0.021526283169547036 -0.0017828772105030059 -0.021440909104900572 -0.0016668601041872548 C -0.021526283169547036 -0.0017828772105030059 -0.022572715141580837 -0.002183302623938823 -0.022410562146778657 -0.0021781533246023953 C -0.022572715141580837 -0.002183302623938823 -0.023473116553426047 -0.0015685998655337436 -0.023386745042526753 -0.0017286516962243916 C -0.023473116553426047 -0.0015685998655337436 -0.02335028702578075 -3.906034895056771E-05 -0.02344702027757019 -0.00025753135631461906 C -0.02335028702578075 -3.906034895056771E-05 -0.02195966843976958 0.000988717319713983 -0.022225946021053464 0.0008930003921442244 C -0.02195966843976958 0.000988717319713983 -0.019965671184448405 0.0007868584479802398 -0.020251689302163575 0.0008910717745224825 C -0.019965671184448405 0.0007868584479802398 -0.01865824957499176 -0.0006181852455584492 -0.01879372860847144 -0.00035755952636268827 C -0.01865824957499176 -0.0006181852455584492 -0.0186594300448412 -0.0025129719452491083 -0.018625940900407423 -0.0022364368558266483 C -0.0186594300448412 -0.0025129719452491083 -0.019313202286201606 -0.003867571471551852 -0.019195598341676796 -0.0036759805994322076 C -0.019313202286201606 -0.003867571471551852 -0.02019662852916094 -0.00465702289059619 -0.020037188234705128 -0.004535527321262382 C -0.02019662852916094 -0.00465702289059619 -0.02126916173313053 -0.005213929020405855 -0.02110888187514652 -0.005133927431437896 C -0.02126916173313053 -0.005213929020405855 -0.02207706766938588 -0.0055526544976831314 -0.02196054653051326 -0.005495546388877894 C -0.02207706766938588 -0.0055526544976831314 -0.0225526846258767 -0.005846197932785986 -0.022507135541617974 -0.005819224737100748" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286704,0.23812769231362577) rotate(0) scale(1,1) translate(-0.0050491035115750255,-0.003435371609681657)"><path d="M 0.0326053425647681 -0.005819224737100748 C 0.03255979348050938 -0.0057922515414155105 0.03194223241479077 -0.005438438280072656 0.03205875355366339 -0.005495546388877894 C 0.03194223241479077 -0.005438438280072656 0.03104680904031269 -0.005053925842469937 0.03120708889829671 -0.005133927431437896 C 0.03104680904031269 -0.005053925842469937 0.029975954963399314 -0.004414031751928575 0.030135395257855135 -0.004535527321262382 C 0.029975954963399314 -0.004414031751928575 0.029176201420302045 -0.003484389727312563 0.02929380536482684 -0.0036759805994322076 C 0.029176201420302045 -0.003484389727312563 0.02869065877912382 -0.0019599017664041884 0.028724147923557597 -0.0022364368558266483 C 0.02869065877912382 -0.0019599017664041884 0.029027414665101187 -9.693380716692737E-05 0.028891935631621513 -0.00035755952636268827 C 0.029027414665101187 -9.693380716692737E-05 0.030635914443028878 0.0009952851010647252 0.030349896325313708 0.0008910717745224825 C 0.030635914443028878 0.0009952851010647252 0.03259043062548744 0.000797283464574466 0.03232415304420355 0.0008930003921442244 C 0.03259043062548744 0.000797283464574466 0.03364196055250984 -0.0004760023636786704 0.033545227300720404 -0.00025753135631461906 C 0.03364196055250984 -0.0004760023636786704 0.03339858055477751 -0.0018887035269150396 0.03348495206567681 -0.0017286516962243916 C 0.03339858055477751 -0.0018887035269150396 0.032346616175126665 -0.0021730040252659674 0.03250876916992884 -0.0021781533246023953 C 0.032346616175126665 -0.0021730040252659674 0.031453742063404254 -0.0015508429978715037 0.031539116128050715 -0.0016668601041872548 C 0.031453742063404254 -0.0015508429978715037 0.031504477367915805 -0.0006536525759369446 0.03148428039417128 -0.0007859480488133835 C 0.031504477367915805 -0.0006536525759369446 0.03180624643121943 -2.042829474137228E-05 0.03178147981298496 -7.931442966998853E-05" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03178147981298496 -7.931442966998853E-05 C 0.03172226394101679 -0.00013812010091757425 0.03099821170887107 -0.0009274693796266374 0.03107088934936697 -0.0007849824846410171 C 0.03099821170887107 -0.0009274693796266374 0.03096595012881681 -0.0019429360722480803 0.030909348127034164 -0.0017891571694974315 C 0.03096595012881681 -0.0019429360722480803 0.03195295041484242 -0.0027038660103761523 0.031750113370758726 -0.0026303293176488016 C 0.03195295041484242 -0.0027038660103761523 0.03356171587130489 -0.002588236251430634 0.03334339265603847 -0.0026715974822256404 C 0.03356171587130489 -0.002588236251430634 0.034442142771017446 -0.0013875747710310204 0.034369991953955736 -0.0016299945481087227 C 0.034442142771017446 -0.0013875747710310204 0.03404689229607749 0.000508233467066581 0.034209202460778965 0.0002374398427067865 C 0.03404689229607749 0.000508233467066581 0.03205024834192779 0.0017319502924835752 0.032422269977538054 0.001619528944208812 C 0.03205024834192779 0.0017319502924835752 0.02933220348059847 0.0014436163072875888 0.029744942833455745 0.0015864960220039466 C 0.02933220348059847 0.0014436163072875888 0.027241416053031098 -0.0004523577745903583 0.027469397743250745 -9.502763238748116E-05 C 0.027241416053031098 -0.0004523577745903583 0.027038122983812047 -0.0030892607891788654 0.027009162550819976 -0.0027014656844305783 C 0.027038122983812047 -0.0030892607891788654 0.02799058976605684 -0.005030199843363394 0.02781692293915561 -0.0047485688893669255 C 0.02799058976605684 -0.005030199843363394 0.029294912313059956 -0.006261212496872489 0.029093164473634747 -0.0060810371323881994 C 0.029294912313059956 -0.006261212496872489 0.03036919805959659 -0.0070358762336578924 0.030237897012258097 -0.006910673263178395 C 0.03036919805959659 -0.0070358762336578924 0.030710420984104352 -0.007692670348716156 0.030668777041696682 -0.007583472778142173 C 0.030710420984104352 -0.007692670348716156 0.030743361594437912 -0.008274175054393196 0.030737624321150125 -0.008221044110066194" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.030737624321150125 -0.008221044110066194 C 0.03080618615426206 -0.008131606389333853 0.031716009505461516 -0.006947639846864314 0.03156036631849335 -0.007147791461278101 C 0.031716009505461516 -0.006947639846864314 0.032692423918624335 -0.005708510843419302 0.0326053425647681 -0.005819224737100748" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="ハート">
<g transform="translate(0.3373434528286704,0.23812769231362577) rotate(0) scale(1,1) translate(4.531817165381619E-05,-0.007618185234386916)"><path d="M -0.036038283378703274 0.016514092616692993 C -0.036008199987450695 0.01645401707179635 -0.03556110696464865 0.015577429885975843 -0.035677282683672304 0.01579318607793329 C -0.03556110696464865 0.015577429885975843 -0.034493476582476215 0.013667394717581681 -0.03464417475041941 0.013925018313203653 C -0.034493476582476215 0.013667394717581681 -0.033724571635577155 0.012488764091920916 -0.03386890466835397 0.012701702930469617 C -0.033724571635577155 0.012488764091920916 -0.0328064460138768 0.011198307200184362 -0.032912178357097664 0.011369752250619258 C -0.0328064460138768 0.011198307200184362 -0.032589106344585464 0.010573447418259394 -0.03260011654970356 0.010644362325250853 C -0.032589106344585464 0.010573447418259394 -0.03282131267329798 0.010544396963877194 -0.032780055895680525 0.010518773366721747 C -0.03282131267329798 0.010544396963877194 -0.033137264210966424 0.01101682209661254 -0.033095197881112974 0.010951845491116219 C -0.033137264210966424 0.01101682209661254 -0.03330065635165597 0.011327379894474387 -0.033284851853921896 0.011298492632677605" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.033284851853921896 0.011298492632677605 C -0.03327758200062297 0.01128430315948642 -0.03318321144648804 0.011100089246386153 -0.033197613614334764 0.011128218954383377 C -0.03318321144648804 0.011100089246386153 -0.03310489352521336 0.010946995901904896 -0.03311202583976116 0.010960936136710932" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.03311202583976116 0.010960936136710932 C -0.033072089508089667 0.010889292670663069 -0.03253968590542208 0.010001826353200464 -0.032632789859703235 0.01010121454413657 C -0.03253968590542208 0.010001826353200464 -0.03190878102193893 0.009780678757852187 -0.031994778388387365 0.00976827784547765 C -0.03190878102193893 0.009780678757852187 -0.03161060080532779 0.010384733759451488 -0.03160082146232194 0.010250025492631 C -0.03161060080532779 0.010384733759451488 -0.03226164695315223 0.011612815951172206 -0.03211213050445765 0.01138477704732352 C -0.03226164695315223 0.011612815951172206 -0.033603637781334815 0.013251893438533705 -0.03339501884665684 0.012986492338815221 C -0.033603637781334815 0.013251893438533705 -0.034811262154100464 0.014856698288110655 -0.034615557720593354 0.014569590243945326 C -0.034811262154100464 0.014856698288110655 -0.03592644130310638 0.016816778400154532 -0.03574347204874218 0.01643178886879917 C -0.03592644130310638 0.016816778400154532 -0.03690016516664885 0.019419270932827207 -0.03681118877296372 0.019189464620209665" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03681118877296372 0.019189464620209665 C -0.03678484061138093 0.01909858846007107 -0.03643060205111519 0.01787600303158682 -0.03649501083397023 0.018098950698546543 C -0.03643060205111519 0.01787600303158682 -0.036000222757431026 0.016382021109871865 -0.036038283378703274 0.016514092616692993" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286704,0.23812769231362577) rotate(0) scale(1,1) translate(4.531817165381619E-05,-0.007618185234386916)"><path d="M 0.03594764703539574 0.016514092616692993 C 0.035985707656667996 0.01664616412351412 0.03646878327351782 0.018321898365506264 0.03640437449066277 0.018098950698546543 C 0.03646878327351782 0.018321898365506264 0.03674690059123907 0.019280340780348258 0.03672055242965628 0.019189464620209665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03672055242965628 0.019189464620209665 C 0.03663157603597114 0.018959658307592123 0.03546986645107044 0.01604679933744381 0.03565283570543465 0.01643178886879917 C 0.03546986645107044 0.01604679933744381 0.03432921694377868 0.014282482199779997 0.0345249213772858 0.014569590243945326 C 0.03432921694377868 0.014282482199779997 0.03309576356867124 0.012721091239096738 0.03330438250334922 0.012986492338815221 C 0.03309576356867124 0.012721091239096738 0.031871977712455514 0.011156738143474836 0.03202149416115008 0.01138477704732352 C 0.031871977712455514 0.011156738143474836 0.031500405776008635 0.010115317225810511 0.03151018511901449 0.010250025492631 C 0.031500405776008635 0.010115317225810511 0.031990139411528284 0.009755876933103114 0.03190414204507985 0.00976827784547765 C 0.031990139411528284 0.009755876933103114 0.032635257470676825 0.010200602735072676 0.03254215351639567 0.01010121454413657 C 0.032635257470676825 0.010200602735072676 0.033061325828125245 0.011032579602758795 0.03302138949645374 0.010960936136710932" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03302138949645374 0.010960936136710932 C 0.03302852181100152 0.010974876371516968 0.03312137943887389 0.0111563486623806 0.03310697727102717 0.011128218954383377 C 0.03312137943887389 0.0111563486623806 0.03320148536391331 0.01131268210586879 0.033194215510614376 0.011298492632677605" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.033194215510614376 0.011298492632677605 C 0.033178411012880306 0.011269605370880823 0.03296249520795207 0.010886868885619898 0.03300456153780551 0.010951845491116219 C 0.03296249520795207 0.010886868885619898 0.03264816277475558 0.0104931497695663 0.032689419552373034 0.010518773366721747 C 0.03264816277475558 0.0104931497695663 0.03252049041151419 0.010715277232242313 0.0325094802063961 0.010644362325250853 C 0.03252049041151419 0.010715277232242313 0.03292727435701093 0.011541197301054155 0.03282154201379006 0.011369752250619258 C 0.03292727435701093 0.011541197301054155 0.0339226013578233 0.012914641769018317 0.03377826832504649 0.012701702930469617 C 0.0339226013578233 0.012914641769018317 0.034704236575055024 0.014182641908825625 0.03455353840711184 0.013925018313203653 C 0.034704236575055024 0.014182641908825625 0.03570282205938834 0.016008942269890733 0.03558664634036468 0.01579318607793329 C 0.03570282205938834 0.016008942269890733 0.03597773042664833 0.016574168161589634 0.03594764703539574 0.016514092616692993" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286704,0.23812769231362577) rotate(0) scale(1,1) translate(0.00011198358255654973,-0.007639437628074994)"><path d="M -0.03732260723020371 0.020838548831787367 C -0.037169667795593775 0.020531893177018323 -0.03520803362383556 0.016696787787942178 -0.03548733401488446 0.017158680974558842 C -0.03520803362383556 0.016696787787942178 -0.033648974897685036 0.014944011965208347 -0.033971002537616965 0.015295830592387398 C -0.033648974897685036 0.014944011965208347 -0.03130429959215723 0.012568243832752388 -0.03162300233570127 0.012936857448410232 C -0.03130429959215723 0.012568243832752388 -0.029974746135792124 0.010535610638142066 -0.030146569615088437 0.010872467204493263 C -0.029974746135792124 0.010535610638142066 -0.02955234547813542 0.008635624690029878 -0.029561120584145527 0.008894578652195876 C -0.02955234547813542 0.008635624690029878 -0.030160613174314576 0.0076748838084839625 -0.030041268342967165 0.007765019658501287 C -0.030160613174314576 0.0076748838084839625 -0.031182565883087918 0.007935758525017144 -0.030993258560314478 0.007812948451987982 C -0.031182565883087918 0.007935758525017144 -0.03242293102090959 0.00935755654175649 -0.032312956216248426 0.00923874053485122" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.032312956216248426 0.00923874053485122 C -0.03225331204172332 0.009111735188618245 -0.031856428678599606 0.008262057585726462 -0.03195509116909777 0.00847670845745337 C -0.031856428678599606 0.008262057585726462 -0.03168196295728642 0.007863189778995843 -0.031720981273259466 0.007950835304489775" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.031720981273259466 0.007950835304489775 C -0.03163963670607362 0.007854602355457029 -0.030546744455394386 0.0066793174887932755 -0.030744846467029355 0.006796039916096825 C -0.030546744455394386 0.0066793174887932755 -0.029130121622556363 0.006649955088565847 -0.029343757133639826 0.006550166176847178 C -0.029130121622556363 0.006649955088565847 -0.028107794043175878 0.008344225474100362 -0.028181220334027778 0.007993506856720855 C -0.028107794043175878 0.008344225474100362 -0.02866212551841504 0.011226880564678278 -0.028462641643417018 0.010758789585401256 C -0.02866212551841504 0.011226880564678278 -0.030956963829325515 0.014030227695869781 -0.03057502683400405 0.013610598608045123 C -0.030956963829325515 0.014030227695869781 -0.03340918066421418 0.016147729391330183 -0.03304588558727457 0.015794338639297148 C -0.03340918066421418 0.016147729391330183 -0.035318922032185576 0.018385576498272046 -0.034934567757279364 0.01785128763244154 C -0.035318922032185576 0.018385576498272046 -0.037885100980221645 0.022568681478998355 -0.03765813688614916 0.022205805029263215" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03765813688614916 0.022205805029263215 C -0.0376442044221649 0.022146976044654494 -0.03746298651367594 0.021385919197502233 -0.03749094731833806 0.021499857213958553 C -0.03746298651367594 0.021385919197502233 -0.03730857888952585 0.020783439799939768 -0.03732260723020371 0.020838548831787367" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286704,0.23812769231362577) rotate(0) scale(1,1) translate(0.00011198358255654973,-0.007639437628074994)"><path d="M 0.03709864006509064 0.020838548831787367 C 0.03711266840576852 0.020893657863634965 0.03729494095788724 0.021613795230414873 0.03726698015322511 0.021499857213958553 C 0.03729494095788724 0.021613795230414873 0.037448102185020496 0.022264634013871937 0.037434169721036234 0.022205805029263215" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.037434169721036234 0.022205805029263215 C 0.03720720562696375 0.021842928579528076 0.03432624631726025 0.017316998766611035 0.03471060059216646 0.01785128763244154 C 0.03432624631726025 0.017316998766611035 0.03245862334522204 0.015440947887264113 0.032821918422161644 0.015794338639297148 C 0.03245862334522204 0.015440947887264113 0.029969122673569715 0.013190969520220464 0.030351059668891178 0.013610598608045123 C 0.029969122673569715 0.013190969520220464 0.028039190603306046 0.010290698606124235 0.028238674478304082 0.010758789585401256 C 0.028039190603306046 0.010290698606124235 0.028030679459766634 0.007642788239341348 0.02795725316891473 0.007993506856720855 C 0.028030679459766634 0.007642788239341348 0.029333425479610414 0.006450377265128509 0.029119789968526932 0.006550166176847178 C 0.029333425479610414 0.006450377265128509 0.030718981313551455 0.006912762343400375 0.030520879301916493 0.006796039916096825 C 0.030718981313551455 0.006912762343400375 0.03157835867533234 0.008047068253522522 0.0314970141081465 0.007950835304489775" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0314970141081465 0.007950835304489775 C 0.031536032424119564 0.008038480829983707 0.03182978649448303 0.008691359329180278 0.031731124003984874 0.00847670845745337 C 0.03182978649448303 0.008691359329180278 0.03214863322566054 0.009365745881084193 0.03208898905113545 0.00923874053485122" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03208898905113545 0.00923874053485122 C 0.03197901424647429 0.009119924527945949 0.03057998407242813 0.007690138378958821 0.03076929139520157 0.007812948451987982 C 0.03057998407242813 0.007690138378958821 0.029697956346506776 0.007855155508518612 0.029817301177854194 0.007765019658501287 C 0.029697956346506776 0.007855155508518612 0.02934592852504264 0.009153532614361873 0.029337153419032536 0.008894578652195876 C 0.02934592852504264 0.009153532614361873 0.03009442592927179 0.01120932377084446 0.029922602449975466 0.010872467204493263 C 0.03009442592927179 0.01120932377084446 0.03171773791413244 0.013305471064068077 0.031399035170588396 0.012936857448410232 C 0.03171773791413244 0.013305471064068077 0.03406906301243593 0.015647649219566448 0.03374703537250401 0.015295830592387398 C 0.03406906301243593 0.015647649219566448 0.03554266724082038 0.017620574161175507 0.035263366849771494 0.017158680974558842 C 0.03554266724082038 0.017620574161175507 0.03725157949970057 0.02114520448655641 0.03709864006509064 0.020838548831787367" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="獣性">
<g transform="translate(0.3154577155022342,0.22019086511904729) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.010208948544710857 0.008834170979604115 C 0.010497072676654055 0.009101262258764597 0.014175936702310581 0.012631827715622558 0.013666438128029233 0.012039266329529891 C 0.014175936702310581 0.012631827715622558 0.01654430587842519 0.0162703777196483 0.016322931436087037 0.01594490761271611" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.016322931436087037 0.01594490761271611 C 0.015889346508678657 0.015697739855055407 0.010454878903673743 0.012670952239070613 0.011119912307186484 0.012978894520787676 C 0.010454878903673743 0.012670952239070613 0.008111082117829783 0.012188825708055004 0.008342530593934144 0.012249600232111362" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008342530593934144 0.012249600232111362 C 0.008435347037194368 0.012081840431287436 0.009611862742288233 0.009951863517848648 0.00945632791305684 0.010236482622224251 C 0.009611862742288233 0.009951863517848648 0.010271666930682018 0.00871731167605244 0.01020894854471085 0.008834170979604117" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3592291901551069,0.22019086511904734) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.009171721402070676 0.008834170979604117 C 0.009234439788041846 0.008951030283155794 0.01007987686295611 0.010521101726599855 0.00992434203372472 0.010236482622224251 C 0.01007987686295611 0.010521101726599855 0.011130955796107586 0.012417360032935289 0.011038139352847365 0.012249600232111362" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011038139352847365 0.012249600232111362 C 0.01080669087674301 0.012310374756167721 0.007595724236082374 0.01328683680250474 0.008260757639595107 0.012978894520787676 C 0.007595724236082374 0.01328683680250474 0.0026241535832861964 0.016192075370376816 0.0030577385106945743 0.01594490761271611" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0030577385106945743 0.01594490761271611 C 0.003279112953032718 0.015619437505783927 0.006223730393033644 0.011446704943437224 0.005714231818752302 0.012039266329529891 C 0.006223730393033644 0.011446704943437224 0.009459845534013874 0.008567079700443634 0.009171721402070676 0.008834170979604115" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋柄">
<g id="紋左">
<g transform="translate(0.3154577155022342,0.22019086511904729) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.014346441983160393 0.019407752619488183 C 0.014405846619470433 0.01918688242181499 0.016744277210619822 0.018915747652707145 0.01661466339587067 0.018749714006145817 C 0.016744277210619822 0.018915747652707145 0.015712789309090997 0.021454992929335982 0.015901807760150186 0.02140015637822412 C 0.015712789309090997 0.021454992929335982 0.014405846619470433 0.01918688242181499 0.014346441983160393 0.019407752619488183 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3154577155022342,0.22019086511904729) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.007726115029594329 0.021396750777243765 C 0.007602182805559812 0.021238386399788714 0.009043282451836342 0.01898439657594507 0.008827562904862788 0.019023779781471076 C 0.009043282451836342 0.01898439657594507 0.010222962270337952 0.021121899893912735 0.01031474959327699 0.020924152310931678 C 0.010222962270337952 0.021121899893912735 0.007602182805559812 0.021238386399788714 0.007726115029594329 0.021396750777243765 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3154577155022342,0.22019086511904729) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.01136041740655774 0.015632887256328866 C 0.01133482489118074 0.015435272685167223 0.013203914701543164 0.013775629118158753 0.013038483356965518 0.013736081678484169 C 0.013203914701543164 0.013775629118158753 0.013205754712288858 0.016265523663910934 0.013345593541489507 0.016107456532423875 C 0.013205754712288858 0.016265523663910934 0.01133482489118074 0.015435272685167223 0.01136041740655774 0.015632887256328866 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋右">
<g transform="translate(0.3592291901551069,0.22019086511904734) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.006916522070704187 0.02140015637822412 C 0.006727503619645003 0.021345319827112255 0.0063332802497329125 0.01858368035958449 0.0062036664349837635 0.018749714006145817 C 0.0063332802497329125 0.01858368035958449 0.008531292484004006 0.019628622817161375 0.008471887847693971 0.019407752619488183 C 0.008531292484004006 0.019628622817161375 0.006727503619645003 0.021345319827112255 0.006916522070704187 0.02140015637822412 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3592291901551069,0.22019086511904734) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.01250358023757741 0.020924152310931678 C 0.012411792914638375 0.02072640472795062 0.014206486472965189 0.019063162986997083 0.013990766925991636 0.019023779781471076 C 0.014206486472965189 0.019063162986997083 0.014968282577225527 0.021555115154698816 0.015092214801260046 0.021396750777243765 C 0.014968282577225527 0.021555115154698816 0.012411792914638375 0.02072640472795062 0.01250358023757741 0.020924152310931678 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3592291901551069,0.22019086511904734) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.00947273628936487 0.016107456532423875 C 0.009332897460164224 0.015949389400936816 0.00994527781846655 0.013696534238809585 0.009779846473888902 0.013736081678484169 C 0.00994527781846655 0.013696534238809585 0.011432319908919636 0.015830501827490507 0.011457912424296638 0.015632887256328866 C 0.011432319908919636 0.015830501827490507 0.009332897460164224 0.015949389400936816 0.00947273628936487 0.016107456532423875 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="鱗">
<g id="左">
<g transform="translate(0.3154577155022342,0.22019086511904729) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08845732192355094 0.0933361645103799 C 0.0878468254518239 0.09327500173718493 0.08554443003714848 0.09148256949784009 0.08586422053007613 0.09197151240049944 C 0.08554443003714848 0.09148256949784009 0.08608557060034185 0.08900862812191393 0.08589899798012973 0.08942462128910508 C 0.08608557060034185 0.08900862812191393 0.08791335234728233 0.08879170172030759 0.08735680149177305 0.0886435670629702 C 0.08791335234728233 0.08879170172030759 0.09077532867571889 0.09108685448819033 0.09035140482420398 0.09060969854780421 C 0.09077532867571889 0.09108685448819033 0.09051143194131073 0.09280162283138119 0.09074819230389236 0.09246081458605922 C 0.09051143194131073 0.09280162283138119 0.0878468254518239 0.09327500173718493 0.08845732192355094 0.0933361645103799 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3154577155022342,0.22019086511904729) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08534292620765503 0.09817539731938468 C 0.08475606827694132 0.09814748200062792 0.08283188951847896 0.09678726666897987 0.0831280414703933 0.09725404460201374 C 0.08283188951847896 0.09678726666897987 0.08316619284780578 0.09400301571829703 0.08297371059234034 0.09444117385511366 C 0.08316619284780578 0.09400301571829703 0.08520081182861285 0.09386366671037988 0.08466789951411688 0.0937487795074807 C 0.08520081182861285 0.09386366671037988 0.08763138478355632 0.09582634493388048 0.08723700910830806 0.0953602714783071 C 0.08763138478355632 0.09582634493388048 0.08758614455352134 0.09782925788220251 0.08782290491610298 0.09747736715206781 C 0.08758614455352134 0.09782925788220251 0.08475606827694132 0.09814748200062792 0.08534292620765503 0.09817539731938468 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="右">
<g transform="translate(0.3592291901551069,0.22019086511904734) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08084595772529213 0.09246081458605922 C 0.0806091973627105 0.09212000634073725 0.08166666905649533 0.09013254260741808 0.08124274520498043 0.09060969854780421 C 0.08166666905649533 0.09013254260741808 0.08479389939292067 0.08849543240563282 0.08423734853741138 0.0886435670629702 C 0.08479389939292067 0.08849543240563282 0.08588172466926683 0.08984061445629624 0.0856951520490547 0.08942462128910508 C 0.08588172466926683 0.08984061445629624 0.08541013900618073 0.0924604553031588 0.08572992949910838 0.09197151240049944 C 0.08541013900618073 0.0924604553031588 0.08252633163390649 0.09339732728357487 0.08313682810563353 0.0933361645103799 C 0.08252633163390649 0.09339732728357487 0.0806091973627105 0.09212000634073725 0.08084595772529213 0.09246081458605922 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3592291901551069,0.22019086511904734) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08377124511308148 0.09747736715206781 C 0.08353448475049985 0.09712547642193312 0.08475151659612461 0.09489419802273372 0.08435714092087634 0.0953602714783071 C 0.08475151659612461 0.09489419802273372 0.08745916282956352 0.09363389230458152 0.08692625051506755 0.0937487795074807 C 0.08745916282956352 0.09363389230458152 0.08881292169230953 0.0948793319919303 0.08862043943684407 0.09444117385511366 C 0.08881292169230953 0.0948793319919303 0.08816995660687686 0.09772082253504762 0.0884661085587912 0.09725404460201374 C 0.08816995660687686 0.09772082253504762 0.08566436589081572 0.09820331263814144 0.08625122382152943 0.09817539731938468 C 0.08566436589081572 0.09820331263814144 0.08353448475049985 0.09712547642193312 0.08377124511308148 0.09747736715206781 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.3154577155022342,0.22019086511904729) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.053906824017354645 0.053574222971378996 C 0.053694486626594776 0.05401047532846709 0.051114480432403735 0.05931359190724107 0.051358775328236225 0.05880925125643616 C 0.051114480432403735 0.05931359190724107 0.05094332776229213 0.059694399074754795 0.05097528526736475 0.05962631078103798" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05097528526736475 0.05962631078103798 C 0.05098569898208783 0.05969449464500052 0.05118496110765542 0.06094959988800092 0.05110024984404175 0.06044451714858842 C 0.05118496110765542 0.06094959988800092 0.052066117979619436 0.06612420252943799 0.05199182043072884 0.06568730365398802" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05199182043072884 0.06568730365398802 C 0.05186169756519464 0.06534667218918744 0.050279471442460436 0.06120873804588625 0.0504303460443184 0.061599726076380965 C 0.050279471442460436 0.06120873804588625 0.050160573472109594 0.06094509072235732 0.050181325208433346 0.060995447288051445" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.050181325208433346 0.060995447288051445 C 0.05014467181518547 0.06104567437382111 0.04946713590930471 0.06198820123723059 0.04974148448945883 0.061598172317287425 C 0.04946713590930471 0.06198820123723059 0.046651447059677706 0.0660155961615429 0.04688914224658395 0.0656757943273694" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04688914224658395 0.0656757943273694 C 0.04710147963734382 0.06523954197028131 0.049681485831534866 0.05993642539150728 0.049437190935702376 0.0604407660423122 C 0.049681485831534866 0.05993642539150728 0.04985263850164647 0.05955561822399352 0.04982068099657385 0.059623706517710345" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04982068099657385 0.059623706517710345 C 0.04981026728185077 0.059555522653747806 0.04961100515628319 0.05830041741074741 0.04969571641989686 0.05880550015015991 C 0.04961100515628319 0.05830041741074741 0.048729848284319165 0.053125814769310394 0.04880414583320976 0.053562713644760354" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04880414583320976 0.053562713644760354 C 0.04893426869874396 0.05390334510956094 0.05051649482147817 0.058041279252862094 0.05036562021962022 0.05765029122236738 C 0.05051649482147817 0.058041279252862094 0.050635392791829 0.058304926576391074 0.05061464105550525 0.05825457001069694" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05061464105550525 0.05825457001069694 C 0.050651294448753124 0.05820434292492727 0.0513288303546339 0.05726181606151775 0.051054481774479785 0.05765184498146091 C 0.0513288303546339 0.05726181606151775 0.05414451920426088 0.0532344211372055 0.053906824017354645 0.053574222971378996" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3592291901551069,0.22019086511904734) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.0474022371610495 0.053574222971378996 C 0.047639932347955743 0.05391402480555249 0.050528927984078535 0.058041873901404084 0.050254579403924415 0.05765184498146092 C 0.050528927984078535 0.058041873901404084 0.05073107351614683 0.05830479709646662 0.05069442012289895 0.05825457001069695" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05069442012289895 0.05825457001069695 C 0.050715171859222696 0.05820421344500282 0.05109431556064188 0.057259303191872675 0.05094344095878392 0.05765029122236739 C 0.05109431556064188 0.057259303191872675 0.052635038210728666 0.05322208217995977 0.052504915345194456 0.05356271364476036" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.052504915345194456 0.05356271364476036 C 0.05243061779630386 0.05399961252021032 0.05152863349489365 0.05931058288957242 0.051613344758507325 0.05880550015015992 C 0.05152863349489365 0.05931058288957242 0.05147796646710729 0.0596918903816729 0.05148838018183037 0.05962370651771036" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05148838018183037 0.05962370651771036 C 0.05152033768690299 0.05969179481142718 0.052116165138534294 0.06094510669311714 0.051871870242701804 0.060440766042312216 C 0.052116165138534294 0.06094510669311714 0.05463225632258017 0.0661120466844575 0.05441991893182029 0.0656757943273694" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05441991893182029 0.0656757943273694 C 0.05418222374491405 0.06533599249319591 0.05129322810879126 0.061208143397344275 0.05156757668894538 0.06159817231728744 C 0.05129322810879126 0.061208143397344275 0.051091082576722964 0.060945220202281776 0.05112773596997084 0.060995447288051445" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05112773596997084 0.060995447288051445 C 0.05110698423364709 0.06104580385374557 0.0507278405322279 0.06199071410687567 0.05087871513408586 0.06159972607638095 C 0.0507278405322279 0.06199071410687567 0.049187117882141126 0.06602793511878864 0.04931724074767534 0.06568730365398805" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04931724074767534 0.06568730365398805 C 0.04939153829656593 0.06525040477853808 0.050293522597976134 0.05993943440917593 0.05020881133436246 0.060444517148588436 C 0.050293522597976134 0.05993943440917593 0.050344189625762495 0.059558126917075446 0.050333775911039415 0.059626310781037986" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.050333775911039415 0.059626310781037986 C 0.05030181840596679 0.059558222487321164 0.04970599095433549 0.05830491060563124 0.04995028585016798 0.05880925125643616 C 0.04970599095433549 0.05830491060563124 0.047189899770289624 0.0531379706142909 0.0474022371610495 0.053574222971378996" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3154577155022342,0.22019086511904729) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.0024849358389701917 0.03129578991920742 C 0.0026863910211950386 0.031195135418297246 0.00530530839011805 0.02988662690646497 0.004902398025668357 0.03008793590828532 C 0.00530530839011805 0.02988662690646497 0.0075213153945913516 0.028779427396453026 0.0073198602123665055 0.028880081897363203" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0073198602123665055 0.028880081897363203 C 0.007529865808236089 0.0288240809998258 0.01025993855454068 0.028096069331839568 0.009839927362801513 0.028208071126914373 C 0.01025993855454068 0.028096069331839568 0.01257000010910609 0.027480059458928136 0.012359994513236508 0.02753606035646554" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012359994513236508 0.02753606035646554 C 0.012158539331011662 0.027636714857375715 0.009539621962088657 0.02894522336920799 0.00994253232653835 0.02874391436738764 C 0.009539621962088657 0.02894522336920799 0.007323614957615335 0.030052422879219914 0.007525070139840183 0.029951768378309738" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007525070139840183 0.029951768378309738 C 0.007315064543970601 0.03000776927584714 0.004584991797666028 0.030735780943833398 0.005005002989405194 0.03062377914875859 C 0.004584991797666028 0.030735780943833398 0.0022749302431006083 0.03135179081674483 0.0024849358389701917 0.03129578991920742" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3592291901551069,0.22019086511904734) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.01864704194635984 0.031295789919207395 C 0.018437036350490262 0.031239789021669996 0.015706963604185727 0.030511777353683826 0.01612697479592489 0.030623779148758627 C 0.015706963604185727 0.030511777353683826 0.013396902049620303 0.029895767480772353 0.013606907645489887 0.02995176837830976" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013606907645489887 0.02995176837830976 C 0.013405452463265037 0.029851113877399582 0.01078653509434199 0.02854260536556727 0.011189445458791684 0.02874391436738762 C 0.01078653509434199 0.02854260536556727 0.008570528089868721 0.027435405855555386 0.008771983272093564 0.02753606035646556" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008771983272093564 0.02753606035646556 C 0.008981988867963142 0.02759206125400296 0.01171206161426767 0.028320072921989133 0.011292050422528507 0.02820807112691433 C 0.01171206161426767 0.028320072921989133 0.014022123168833117 0.02893608279490059 0.013812117572963531 0.028880081897363186" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013812117572963531 0.028880081897363186 C 0.014013572755188379 0.028980736398273366 0.016632490124111398 0.030289244910105692 0.016229579759661706 0.030087935908285342 C 0.016632490124111398 0.030289244910105692 0.018848497128584687 0.03139644442011757 0.01864704194635984 0.031295789919207395" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3163373534873328,0.23863149792127664) rotate(0) scale(1,1) translate(-0.022986364471475812,-0.022986364471475812)"><path d="M 0.01808965923701099 0.016626438258741424 C 0.018323025842411206 0.016318784200147 0.02108066912571156 0.013024959533242281 0.020890058501813552 0.012934589555608327 C 0.02108066912571156 0.013024959533242281 0.020334230742284853 0.018108902026577257 0.02037698672378706 0.01771087799034888" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02037698672378706 0.01771087799034888 C 0.020345474220791897 0.0179289166078328 0.01988788091019662 0.020809669101073836 0.019998836687845092 0.020327341400155945 C 0.01988788091019662 0.020809669101073836 0.0189660741173521 0.02376309948479753 0.019045517392005405 0.023498810401363562" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019045517392005405 0.023498810401363562 C 0.018787447419022198 0.02384682541349266 0.015742648360833902 0.027670966427883366 0.01594867771620692 0.027674990546912706 C 0.015742648360833902 0.027670966427883366 0.016625205745139385 0.023098481841853067 0.016573165127529196 0.0234505209730115" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.016573165127529196 0.0234505209730115 C 0.016571770033583115 0.02315447800776753 0.01668279850929971 0.019329331830561347 0.016556424000176227 0.019898005390083854 C 0.01668279850929971 0.019329331830561347 0.018217428840080555 0.01635380766446289 0.01808965923701099 0.016626438258741424" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.35834955217000847,0.23863149792127664) rotate(0) scale(1,1) translate(-0.022986364471475812,-0.022986364471475812)"><path d="M 0.027883069705940677 0.016626438258741424 C 0.028010839309010244 0.01689906885301996 0.02954267945189896 0.02046667894960636 0.029416304942775473 0.019898005390083854 C 0.02954267945189896 0.02046667894960636 0.029398168721476447 0.02374656393825547 0.029399563815422525 0.0234505209730115" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.029399563815422525 0.0234505209730115 C 0.029451604433032713 0.023802560104169933 0.029818021871371763 0.027679014665942046 0.030024051226744786 0.027674990546912706 C 0.029818021871371763 0.027679014665942046 0.02666914157796303 0.023150795389234466 0.02692721155094624 0.023498810401363562" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02692721155094624 0.023498810401363562 C 0.026847768276292937 0.023234521317929593 0.02586293647745813 0.019845013699238054 0.0259738922551066 0.020327341400155945 C 0.02586293647745813 0.019845013699238054 0.02556422971616944 0.017492839372864957 0.025595742219164608 0.01771087799034888" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.025595742219164608 0.01771087799034888 C 0.0255529862376624 0.0173128539541205 0.025273281065036107 0.012844219577974372 0.0250826704411381 0.012934589555608327 C 0.025273281065036107 0.012844219577974372 0.028116436311340892 0.01693409231733585 0.027883069705940677 0.016626438258741424" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.25839440172974587) rotate(0) scale(1,1) translate(-0.032753407916317374,-0.032753407916317374)"><path d="M 0.028595592495859894 0.033558741126129735 C 0.028670556132018438 0.03374874530361325 0.02852062885970135 0.03526877872348133 0.028595592495859894 0.035078774545997816 C 0.02852062885970135 0.03526877872348133 0.027546101589640284 0.03583879125593187 0.02769602886195737 0.03583879125593187 C 0.027546101589640284 0.03583879125593187 0.026721501591896315 0.0348887703685143 0.026796465228054858 0.035078774545997816 C 0.026721501591896315 0.0348887703685143 0.0268714288642134 0.03336873694864622 0.026796465228054858 0.033558741126129735 C 0.0268714288642134 0.03336873694864622 0.027845956134274458 0.032798724416195676 0.02769602886195737 0.032798724416195676 C 0.027845956134274458 0.032798724416195676 0.028670556132018438 0.03374874530361325 0.028595592495859894 0.033558741126129735 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.25839440172974587) rotate(0) scale(1,1) translate(-0.032753407916317374,-0.032753407916317374)"><path d="M 0.037810786970677523 0.032798724416195676 C 0.0379607142429946 0.032798724416195676 0.03878531424073848 0.03374874530361325 0.038710350604579946 0.033558741126129735 C 0.03878531424073848 0.03374874530361325 0.03863538696842141 0.03526877872348133 0.038710350604579946 0.035078774545997816 C 0.03863538696842141 0.03526877872348133 0.037660859698360444 0.03583879125593187 0.037810786970677523 0.03583879125593187 C 0.037660859698360444 0.03583879125593187 0.03683625970061643 0.0348887703685143 0.036911223336774976 0.035078774545997816 C 0.03683625970061643 0.0348887703685143 0.03698618697293352 0.03336873694864622 0.036911223336774976 0.033558741126129735 C 0.03698618697293352 0.03336873694864622 0.0379607142429946 0.032798724416195676 0.037810786970677523 0.032798724416195676 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 84 KiB

View File

@@ -0,0 +1,178 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.3373434528286706,0.24784340432461505) rotate(0) scale(1,1) translate(-0.5000000000000002,-0.501846076880224)"><path d="M 0.479117627929868 0.47255990333414194 C 0.4793507702103779 0.4717669451078613 0.4827854341322426 0.4616709606825765 0.4819153352959871 0.4630444046187743 C 0.4827854341322426 0.4616709606825765 0.4910658693569352 0.45528561787348837 0.4895588139649341 0.456078576099769 C 0.4910658693569352 0.45528561787348837 0.5017401976725112 0.4535289059034069 0.5000000000000002 0.4535289059034069 C 0.5017401976725112 0.4535289059034069 0.5119482414270673 0.4568715343260496 0.5104411860350662 0.456078576099769 C 0.5119482414270673 0.4568715343260496 0.5189547635402687 0.46441784855497203 0.5180846647040132 0.4630444046187743 C 0.5189547635402687 0.46441784855497203 0.5211155143506423 0.47335286156042256 0.5208823720701323 0.47255990333414194" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5208823720701323 0.47255990333414194 C 0.5212130096279094 0.473132171640891 0.5255658426348587 0.48046645292027407 0.5248500227634574 0.4794271230151306 C 0.5255658426348587 0.48046645292027407 0.5298573928405731 0.48549892379425846 0.5294722105269488 0.485031862195864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5294722105269488 0.485031862195864 C 0.5296786954219783 0.48570991120973334 0.5325068739603974 0.4945236057491038 0.5319500292673024 0.49316845036229556 C 0.5325068739603974 0.4945236057491038 0.5365047066421544 0.5019708332105021 0.5361543468440889 0.5012937268375631" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5361543468440889 0.5012937268375631 C 0.5362924866102232 0.5018650045972489 0.5380622986821568 0.5095399379628398 0.5378120240377003 0.5081490599537932 C 0.5380622986821568 0.5095399379628398 0.5390769821137815 0.5195013775271189 0.5391576425775663 0.5179842629461227 C 0.5390769821137815 0.5195013775271189 0.536066525189532 0.5276893284713776 0.5368440984722841 0.5263544349257485 C 0.536066525189532 0.5276893284713776 0.5283351463388758 0.5349065358216322 0.5298267631845418 0.5340029854936714 C 0.5283351463388758 0.5349065358216322 0.5171324419215086 0.5372371797839695 0.5189446963242916 0.537197038861278 C 0.5171324419215086 0.5372371797839695 0.506500985657455 0.5337875505436387 0.508079710351146 0.5344846765659691 C 0.506500985657455 0.5337875505436387 0.49932669080407144 0.5283604307622577 0.5000000000000002 0.5288315265933125" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.5000000000000002 0.5288315265933125 C 0.49932669080407144 0.5293026224243672 0.49034156495516407 0.5351818025882995 0.4919202896488551 0.534484676565969 C 0.49034156495516407 0.5351818025882995 0.4792430492729247 0.5371568979385866 0.4810553036757078 0.537197038861278 C 0.4792430492729247 0.5371568979385866 0.4686816199697917 0.5330994351657108 0.47017323681545786 0.5340029854936715 C 0.4686816199697917 0.5330994351657108 0.46237832824496183 0.5250195413801195 0.4631559015277138 0.5263544349257486 C 0.46237832824496183 0.5250195413801195 0.4607616969586497 0.5164671483651266 0.4608423574224342 0.5179842629461229 C 0.4607616969586497 0.5164671483651266 0.4624382506067569 0.5067581819447468 0.4621879759623005 0.5081490599537934 C 0.4624382506067569 0.5067581819447468 0.46398379292204556 0.5007224490778772 0.4638456531559113 0.5012937268375631" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.4638456531559113 0.5012937268375631 C 0.4641960129539769 0.5006166204646242 0.468606815425793 0.4918132949754873 0.468049970732698 0.49316845036229556 C 0.468606815425793 0.4918132949754873 0.4707342743680809 0.4843538131819947 0.47052778947305146 0.485031862195864" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.47052778947305146 0.485031862195864 C 0.47091297178667574 0.4845648005974696 0.4758657971079443 0.4783877931099871 0.4751499772365429 0.4794271230151306 C 0.4758657971079443 0.4783877931099871 0.479448265487645 0.4719876350273929 0.47911762792986795 0.47255990333414194" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286705,0.25494673972915993) rotate(0) scale(1,1) translate(-0.09500000000000004,-0.10128887608393074)"><path d="M 0.10790296643675147 0.09331441630496828 C 0.1076973153587592 0.0935448984332765 0.10510008233745431 0.09667924080067453 0.10543515350084419 0.09608020184466694 C 0.10510008233745431 0.09667924080067453 0.10375269239067539 0.10087144060475864 0.10388211247607299 0.10050288377705928" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10388211247607299 0.10050288377705928 C 0.10383865060515385 0.10070709817912638 0.10327251747553813 0.10331912914174414 0.10336057002504333 0.1029534566018644 C 0.10327251747553813 0.10331912914174414 0.10278089120342458 0.10505241239342868 0.10282548188201064 0.10489095425561604" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10282548188201064 0.10489095425561604 C 0.10277833733799076 0.1049927852870967 0.10213852584758562 0.10629705793166459 0.10225974735377198 0.10611292663338401 C 0.10213852584758562 0.10629705793166459 0.10129674684560779 0.10718283010178303 0.10137082380777426 0.10710052983498311" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10137082380777426 0.10710052983498311 C 0.10117173556378133 0.10720391148983013 0.09845086289587776 0.10848268223803677 0.09898176487985895 0.10834110969314738 C 0.09845086289587776 0.10848268223803677 0.09433637252002358 0.10879940037365578 0.09500000000000006 0.10879940037365578 C 0.09433637252002358 0.10879940037365578 0.09048733313616 0.10819953714825799 0.09101823512014119 0.10834110969314738 C 0.09048733313616 0.10819953714825799 0.08843008794823289 0.10699714818013609 0.08862917619222584 0.10710052983498311" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08862917619222584 0.10710052983498311 C 0.08855509923005936 0.10701822956818319 0.08761903114004176 0.10592879533510342 0.08774025264622812 0.10611292663338401 C 0.08761903114004176 0.10592879533510342 0.08712737357396956 0.10478912322413537 0.08717451811798944 0.10489095425561604" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08717451811798944 0.10489095425561604 C 0.08712992743940338 0.1047294961178034 0.08655137742545156 0.10258778406198467 0.08663942997495676 0.1029534566018644 C 0.08655137742545156 0.10258778406198467 0.08607442565300792 0.10029866937499218 0.08611788752392706 0.10050288377705928" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.08611788752392706 0.10050288377705928 C 0.08598846743852945 0.10013432694935992 0.08422977533576594 0.09548116288865935 0.08456484649915581 0.09608020184466694 C 0.08422977533576594 0.09548116288865935 0.08189138248525632 0.09308393417666007 0.08209703356324859 0.09331441630496828" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23916577780668657) rotate(0) scale(1,1) translate(-0.095,-0.09632994090643211)"><path d="M 0.07497818711520889 0.07653922078693011 C 0.07591099396729327 0.07590137127215574 0.08857603130226899 0.06824717709486335 0.08617186934022152 0.06888502660963772 C 0.08857603130226899 0.06824717709486335 0.10623229262182599 0.06952287612441209 0.10382813065977851 0.06888502660963772 C 0.10623229262182599 0.06952287612441209 0.11595461973687554 0.07717707030170448 0.11502181288479116 0.07653922078693011" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11502181288479116 0.07653922078693011 C 0.11537560933830321 0.07731892497693181 0.11929217061171747 0.08774448789322603 0.11926737032693581 0.08589567106695047 C 0.11929217061171747 0.08774448789322603 0.11499042013344066 0.09979413533851085 0.11531941630217106 0.09872502270223697" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.11531941630217106 0.09872502270223697 C 0.11508062192758656 0.09892047836833226 0.11184199429618527 0.10151658992422836 0.11245388380715704 0.10107049069538047 C 0.11184199429618527 0.10151658992422836 0.10760364703412247 0.10432885701116425 0.10797674217050975 0.10407821344841164" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.10797674217050975 0.10407821344841164 C 0.1075662982121243 0.10424111040403047 0.10197001948900858 0.10629695548156404 0.10305141466988439 0.10603297691583762 C 0.10197001948900858 0.10629695548156404 0.0936580975550193 0.10724595623712867 0.09500000000000003 0.10724595623712867 C 0.0936580975550193 0.10724595623712867 0.08586719014923985 0.10576899835011119 0.08694858533011567 0.10603297691583762 C 0.08586719014923985 0.10576899835011119 0.08161281387110486 0.10391531649279281 0.08202325782949031 0.10407821344841164" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.08202325782949031 0.10407821344841164 C 0.08165016269310303 0.10382756988565904 0.07693422668187122 0.10062439146653258 0.077546116192843 0.10107049069538047 C 0.07693422668187122 0.10062439146653258 0.0744417893232445 0.09852956703614169 0.074680583697829 0.09872502270223697" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.074680583697829 0.09872502270223697 C 0.07435158752909861 0.0976559100659631 0.07075742995784594 0.0840468542406749 0.07073262967306428 0.08589567106695047 C 0.07075742995784594 0.0840468542406749 0.07533198356872094 0.07575951659692841 0.07497818711520889 0.07653922078693011" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.22024030782214926) rotate(0) scale(1,1) translate(-0.027392108961499424,-0.025436636444181805)"><path d="M 0.0426703395124278 0.024468385987676353 C 0.04230209745062729 0.024563178494647554 0.03735292414002835 0.025726756178658147 0.03825143477082161 0.02560589607133075 C 0.03735292414002835 0.025726756178658147 0.03135794337391597 0.025944774875961335 0.03188821194290871 0.025918707275605135" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03188821194290871 0.025918707275605135 C 0.03151353669445794 0.02597270541651692 0.02664275846459788 0.026566684966546576 0.027392108961499427 0.026566684966546576 C 0.02664275846459788 0.026566684966546576 0.022521330731639363 0.025864709134693357 0.022896005980090138 0.025918707275605142" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.022896005980090138 0.025918707275605142 C 0.0223657374110974 0.025892639675248942 0.015634272521384003 0.025485035964003356 0.016532783152177256 0.025605896071330753 C 0.015634272521384003 0.025485035964003356 0.011745636348770579 0.024373593480705155 0.012113878410571093 0.024468385987676356" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="筋肉">
<g transform="translate(0.3373434528286706,0.23916577780668663) rotate(0) scale(1,1) translate(-0.006218922926089482,-0.015194750693370984)"><path d="M 0.010911958739056898 0.007849094628117384 C 0.01084207133717367 0.007901532879469013 0.00987864009695033 0.008616939944535442 0.010073309916458145 0.008478353644336939 C 0.00987864009695033 0.008616939944535442 0.008451138487338555 0.009598278279346282 0.00857592090496314 0.00951213023049941" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.00857592090496314 0.00951213023049941 C 0.008379504406723668 0.009604404826479646 0.005826089929610539 0.010614091959132299 0.006218922926089482 0.010619425382262229 C 0.005826089929610539 0.010614091959132299 0.0036655084489763522 0.009350521133830083 0.0038619249472158237 0.009448129152940249" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0038619249472158237 0.009448129152940249 C 0.0037371425295912395 0.009356647680963446 0.0021698661162130035 0.00820109834276025 0.0023645359357208156 0.008350351489218612 C 0.0021698661162130035 0.00820109834276025 0.001455999711238849 0.007599319720958336 0.001525887113122077 0.007657091395439896" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3308706714775631,0.22043292550255283) rotate(0) scale(1,1) translate(-0.03649433879459807,-0.02487077539596666)"><path d="M 0.036165054023246546 0.034065256412306705 C 0.035959282876937566 0.03390235959115082 0.033325338635225556 0.03174006336585839 0.03369580026753882 0.03211049455843614 C 0.033325338635225556 0.03174006336585839 0.031554823949483085 0.029412547729951867 0.03171951443548737 0.029620082101373735" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03171951443548737 0.029620082101373735 C 0.03158356629046793 0.029214584077423656 0.03009285341112644 0.024181504561902337 0.03008813669525401 0.024754105813972773 C 0.03009285341112644 0.024181504561902337 0.03191677988684844 0.02258176384840813 0.031776115025956564 0.022748867076528487" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.031776115025956564 0.022748867076528487 C 0.03231427347502231 0.02275763612065093 0.038980871018160834 0.022884055009397487 0.03823401641474555 0.022854095605997823 C 0.038980871018160834 0.022884055009397487 0.04094706642128947 0.02312957027660167 0.04073837026693994 0.02310837991732445" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04073837026693994 0.02310837991732445 C 0.04084033919905746 0.023253814684221764 0.04206848872237339 0.025448207688045125 0.041961997452350186 0.024853597120092205 C 0.04206848872237339 0.025448207688045125 0.04202078784512406 0.030692882533815097 0.042016265507218375 0.03024370673275949" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.042016265507218375 0.03024370673275949 C 0.04179160959219266 0.030582896732896162 0.03883279356991218 0.03463244920769516 0.03932039452690983 0.03431398673439956 C 0.03883279356991218 0.03463244920769516 0.035902108981274605 0.034044528885465636 0.036165054023246546 0.034065256412306705" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.34381623417977747,0.22043292550255283) rotate(0) scale(1,1) translate(-0.03649433879459807,-0.02487077539596666)"><path d="M 0.03682362356594955 0.034065256412306705 C 0.03656067852397761 0.034085983939147774 0.03318068210528865 0.03399552426110396 0.033668283062286294 0.03431398673439956 C 0.03318068210528865 0.03399552426110396 0.03074775616695209 0.02990451673262282 0.030972412081977797 0.03024370673275949" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.030972412081977797 0.03024370673275949 C 0.03097693441988348 0.029794530931703884 0.031133171406869168 0.024258986552139285 0.031026680136845966 0.024853597120092205 C 0.031133171406869168 0.024258986552139285 0.03235227625437376 0.022962945150427138 0.032250307322256234 0.02310837991732445" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.032250307322256234 0.02310837991732445 C 0.03245900347660577 0.02308718955804723 0.035501515777865915 0.02282413620259816 0.034754661174450634 0.022854095605997823 C 0.035501515777865915 0.02282413620259816 0.04175072101230537 0.022740098032406043 0.04121256256323962 0.022748867076528487" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04121256256323962 0.022748867076528487 C 0.0413532274241315 0.022915970304648845 0.04290525760981457 0.02532670706604321 0.042900540893942136 0.024754105813972773 C 0.04290525760981457 0.02532670706604321 0.041133215008689335 0.030025580125323813 0.04126916315370878 0.029620082101373735" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04126916315370878 0.029620082101373735 C 0.04110447266770449 0.029827616472795603 0.03892241568934408 0.03248092575101389 0.039292877321657343 0.03211049455843614 C 0.03892241568934408 0.03248092575101389 0.036617852419640565 0.03422815323346259 0.03682362356594955 0.034065256412306705" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31513853052743,0.22084630400552918) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.013601302919453438 0.0139121492651109 C 0.013084808589675678 0.013596623568375906 0.009737345794467712 0.011287942876678347 0.01050233694078688 0.012018995084700935 C 0.009737345794467712 0.011287942876678347 0.008762859224997024 0.009110309505687784 0.009011356041538432 0.009525836016975377" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3595483751299111,0.22084630400552924) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.003944733387814547 0.009525836016975377 C 0.0036962365712731385 0.00994136252826297 0.0016887613422469278 0.012750047292723523 0.002453752488566096 0.012018995084700935 C 0.0016887613422469278 0.012750047292723523 -0.0011617078198782234 0.014227674961845896 -0.0006452134901004634 0.0139121492651109" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.315708051851578,0.237284409057396) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.007790452522239388 0.014552766109508211 C 0.0076207587936850145 0.014329624557710186 0.005467846179996453 0.011387687065676314 0.005754127779586911 0.0118750674879319 C 0.005467846179996453 0.011387687065676314 0.004238485456117803 0.008439962171983636 0.004355073327153888 0.008704201042441195" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3589788538057633,0.237284409057396) rotate(0) scale(1,1) translate(-0.006478044714676546,-0.010275205513680292)"><path d="M 0.0086010161021991 0.008704201042441195 C 0.008484428231163018 0.008968439912898753 0.006915680050175668 0.012362447910187485 0.0072019616497661235 0.0118750674879319 C 0.006915680050175668 0.012362447910187485 0.0049959431785592595 0.014775907661306237 0.005165636907113634 0.014552766109508211" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g transform="translate(0.3373434528286705,0.2221124434899437) rotate(0) scale(1,1) translate(-0.017697491909778828,-0.017697491909778828)"><path d="M 0.015936232638433596 0.01769749190977883 C 0.015979221046529372 0.017609276191606623 0.01659886514152837 0.016514147426658705 0.016452093535582933 0.016638903291712324 C 0.01659886514152837 0.016514147426658705 0.017905058305478137 0.016200421529135388 0.01769749190977882 0.016200421529135388 C 0.017905058305478137 0.016200421529135388 0.01908966188992015 0.016763659156765944 0.018942890283974712 0.016638903291712324 C 0.01908966188992015 0.016763659156765944 0.019501739589219837 0.017785707627951036 0.019458751181124057 0.017697491909778828" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.019458751181124057 0.017697491909778828 C 0.01937215593361625 0.017883147119328993 0.018272836605084934 0.02037817200864952 0.01841960821103037 0.01992535442438082 C 0.018272836605084934 0.02037817200864952 0.017637315551341202 0.02339846529572173 0.01769749190977883 0.023131302921003197" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01769749190977883 0.023131302921003197 C 0.017637315551341202 0.022864140546284665 0.016828604002581845 0.019472536840112124 0.01697537560852728 0.01992535442438082 C 0.016828604002581845 0.019472536840112124 0.015849637390925788 0.017511836700228666 0.015936232638433596 0.01769749190977883" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.2221124434899437) rotate(0) scale(1,1) translate(-0.35878523175949983,-0.35878523175950006)"><path d="M 0.35913948120243633 0.3578878551509275 C 0.3591872468390336 0.357916419097908 0.35977867932788654 0.3583054038987408 0.3597126688416034 0.3582306225146931 C 0.35977867932788654 0.3583054038987408 0.35993160703783394 0.3588776666336346 0.35993160703783394 0.35878523175950006 C 0.35993160703783394 0.3588776666336346 0.3596466583553203 0.3594146223883549 0.3597126688416034 0.3593398410043072 C 0.3596466583553203 0.3594146223883549 0.3590326739920163 0.35971117231505323 0.35913948120243633 0.35968260836807275 C 0.3590326739920163 0.35971117231505323 0.35832417510614334 0.3596540444210923 0.35843098231656334 0.35968260836807275 C 0.35832417510614334 0.3596540444210923 0.3577917841911132 0.3592650596202595 0.3578577946773963 0.3593398410043072 C 0.3577917841911132 0.3592650596202595 0.35763885648116583 0.35869279688536554 0.35763885648116583 0.35878523175950006 C 0.35763885648116583 0.35869279688536554 0.35792380516367944 0.3581558411306454 0.3578577946773963 0.3582306225146931 C 0.35792380516367944 0.3581558411306454 0.3584787479531606 0.35785929120394705 0.35843098231656334 0.3578878551509275" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g id="虫性">
<g transform="translate(0.3373434528286707,0.24601787937834038) rotate(0) scale(1,1) translate(-0.019192864762988458,-0.012340763191334692)"><path d="M -0.007574634574353184 -0.005779895763477567 C -0.0072466518499357405 -0.005854869129005744 -0.0027824675868047587 -0.006420940397108328 -0.0036388418813438606 -0.006679576149815695 C -0.0027824675868047587 -0.006420940397108328 0.0032302485302376943 -0.0023426576127536162 0.002701856960116036 -0.0026762667309891608" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.002701856960116036 -0.0026762667309891608 C 0.0029820593663061504 -0.0022813773219171707 0.006624690646777638 0.0029209146755281106 0.00606428583439741 0.0020624061778747203 C 0.006624690646777638 0.0029209146755281106 0.009706917114868898 0.008089454329432925 0.009426714708678783 0.007625835240851524" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.009426714708678783 0.007625835240851524 C 0.010240560546537925 0.00806509850754996 0.020820556438706766 0.012896994441232768 0.019192864762988482 0.012896994441232768 C 0.020820556438706766 0.012896994441232768 0.029772860655157316 0.007186571974153086 0.028959014817298175 0.007625835240851524" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.028959014817298175 0.007625835240851524 C 0.02923921722348829 0.0071622161522701235 0.03288184850395974 0.0012038976802213291 0.032321443691579514 0.0020624061778747194 C 0.03288184850395974 0.0012038976802213291 0.035964074972050966 -0.003071156140061151 0.03568387256586086 -0.0026762667309891608" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03568387256586086 -0.0026762667309891608 C 0.03621226413598252 -0.0030098758492247053 0.04288094570185987 -0.006938211902523062 0.04202457140732077 -0.006679576149815695 C 0.04288094570185987 -0.006938211902523062 0.046288346824747514 -0.005704922397949392 0.045960364100330074 -0.005779895763477569" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.045960364100330074 -0.005779895763477569 C 0.0464118619414277 -0.005258200638559825 0.04953310880061345 -0.0007716243002856013 0.04866935114691584 -0.0026497250139711085 C 0.04953310880061345 -0.0007716243002856013 0.05155516983511571 0.006845114107403239 0.05114291002251573 0.005488708518635475" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.05114291002251573 0.005488708518635475 C 0.05048227555167263 0.005475485224055389 0.04204127156613281 0.005739889628745921 0.0432152963723985 0.0053300289836744515 C 0.04204127156613281 0.005739889628745921 0.036541222011904864 0.010830120199144672 0.03705461234732745 0.010407036259493116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03705461234732745 0.010407036259493116 C 0.03635828708479058 0.010958720651175369 0.027210230231523417 0.018162841035602086 0.028698709196884997 0.017027248959680143 C 0.027210230231523417 0.018162841035602086 0.018714820829293825 0.025432798703949107 0.01919286476298849 0.02403414117055645 C 0.018714820829293825 0.025432798703949107 0.023276291761679085 0.03462588920954501 0.02296218199254904 0.03381113936039205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02296218199254904 0.03381113936039205 C 0.022333962454288953 0.03397888045134673 0.019192864762988506 0.03481758590612011 0.019192864762988506 0.03481758590612011 C 0.019192864762988506 0.03481758590612011 0.02359040153080913 0.033643398269437366 0.02296218199254904 0.03381113936039205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.02296218199254904 0.03381113936039205 C 0.02303921556531884 0.034445261147481365 0.024344939865263076 0.042547363816002 0.023886584865786622 0.04142060080546387 C 0.024344939865263076 0.042547363816002 0.02884376341297313 0.04782493671029842 0.028462441986266476 0.04733229548684961" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028462441986266476 0.04733229548684961 C 0.028029651655008106 0.047185330002666295 0.022496493242559548 0.04508471286611857 0.023268958011166047 0.0455687096766498 C 0.022496493242559548 0.04508471286611857 0.01885319032564036 0.04118730243412699 0.01919286476298849 0.0415243337604749" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.01919286476298849 0.0415243337604749 C 0.018853190325640357 0.04186136508682281 0.01434430674620441 0.046052706487181023 0.01511677151481091 0.0455687096766498 C 0.01434430674620441 0.046052706487181023 0.009490497208452124 0.04747926097103293 0.009923287539710493 0.04733229548684961" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009923287539710493 0.04733229548684961 C 0.010304608966417148 0.0468396542634008 0.014957499659666798 0.040293837794925735 0.014499144660190342 0.041420600805463864 C 0.014957499659666798 0.040293837794925735 0.01550058110619776 0.03317701757330273 0.015423547533427959 0.03381113936039205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015423547533427959 0.03381113936039205 C 0.01605176707168805 0.03397888045134673 0.019192864762988506 0.03481758590612011 0.019192864762988506 0.03481758590612011 C 0.019192864762988506 0.03481758590612011 0.014795327995167869 0.033643398269437366 0.015423547533427959 0.03381113936039205" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.015423547533427959 0.03381113936039205 C 0.015737657302558 0.03299638951123908 0.018714820829293825 0.022635483637163792 0.01919286476298849 0.02403414117055645 C 0.018714820829293825 0.022635483637163792 0.00819854136373042 0.0158916568837582 0.009687020329091998 0.017027248959680143 C 0.00819854136373042 0.0158916568837582 0.0006347919161126724 0.009855351867810863 0.0013311171786495437 0.010407036259493116" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0013311171786495437 0.010407036259493116 C 0.0008177268432269569 0.00998395231984156 -0.006003591652687182 0.0049201683386029815 -0.0048295668464214975 0.0053300289836744515 C -0.006003591652687182 0.0049201683386029815 -0.013417814967381765 0.005501931813215568 -0.012757180496538668 0.005488708518635482" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.012757180496538668 0.005488708518635482 C -0.0123449206839387 0.004132302929867718 -0.009419863967241279 -0.00452782572765661 -0.010283621620938859 -0.0026497250139711024 C -0.009419863967241279 -0.00452782572765661 -0.00712313673325558 -0.006301590888395307 -0.007574634574353191 -0.0057798957634775635" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23916577780668663) rotate(0) scale(1,1) translate(-0.01919286476298845,-0.01919286476298845)"><path d="M -0.0016895058002789024 -0.0014156860156025453 C -0.0012755397506380764 -0.0012381045170721929 0.004011853897686174 0.0009741987743233146 0.00327808679541101 0.0007152919667616829 C 0.004011853897686174 0.0009741987743233146 0.0074355004796574035 0.001772520984168315 0.007115699427023066 0.0016911956751370356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.007115699427023066 0.0016911956751370356 C 0.007553384124353007 0.0020403180624754273 0.013006528502860203 0.00660347582085576 0.012367915794982354 0.005880664323197737 C 0.013006528502860203 0.00660347582085576 0.014979979932105161 0.01073862275735295 0.014779051921557254 0.010364933647033317" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.014779051921557254 0.010364933647033317 C 0.015146869658343188 0.010541851879409028 0.01992850023656033 0.012487952435541851 0.01919286476298846 0.012487952435541851 C 0.01992850023656033 0.012487952435541851 0.0239744953412056 0.010188015414657607 0.023606677604419667 0.010364933647033317" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.023606677604419667 0.010364933647033317 C 0.023807605614967572 0.009991244536713685 0.026656426438872387 0.005157852825539713 0.02601781373099454 0.005880664323197737 C 0.026656426438872387 0.005157852825539713 0.03170771479628376 0.001342073287798644 0.03127003009895382 0.0016911956751370356" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03127003009895382 0.0016911956751370356 C 0.03158983115158816 0.0016098703661057562 0.03584140983284105 0.0004563851592000502 0.03510764273056588 0.000715291966761682 C 0.03584140983284105 0.0004563851592000502 0.04048920137589668 -0.0015932675141328994 0.04007523532625585 -0.001415686015602547" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.04007523532625585 -0.001415686015602547 C 0.04061717739889862 -0.0006604292303244568 0.0443077425577915 0.004672520261971405 0.04332688776211246 0.0031158546960659943 C 0.0443077425577915 0.004672520261971405 0.04639927682336638 0.008725716160457236 0.0459603641003301 0.007924307379829916" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.0459603641003301 0.007924307379829916 C 0.04563238137591266 0.007849334014301742 0.0411681971127817 0.007283262746199186 0.0420245714073208 0.007024626993491814 C 0.0411681971127817 0.007283262746199186 0.035155480995739216 0.011361545530553926 0.03568387256586088 0.01102793641231838" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03568387256586088 0.01102793641231838 C 0.03540367015967077 0.011422825821390366 0.03176103887919931 0.016625117818835605 0.032321443691579535 0.01576660932118222 C 0.03176103887919931 0.016625117818835605 0.02867881241110808 0.021793657472740386 0.028959014817298193 0.02133003838415899" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.028959014817298193 0.02133003838415899 C 0.028145168979439052 0.02176930165085743 0.01756517308727022 0.026601197584540267 0.019192864762988503 0.026601197584540267 C 0.01756517308727022 0.026601197584540267 0.008612868870819657 0.02089077511746055 0.009426714708678799 0.02133003838415899" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.009426714708678799 0.02133003838415899 C 0.009146512302488684 0.02086641929557759 0.005503881022017199 0.014908100823528836 0.006064285834397428 0.01576660932118222 C 0.005503881022017199 0.014908100823528836 0.0024216545539259425 0.010633047003246392 0.002701856960116057 0.01102793641231838" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.002701856960116057 0.01102793641231838 C 0.0021734653899943986 0.010694327294082833 -0.0044952161758829426 0.006765991240784446 -0.0036388418813438407 0.007024626993491817 C -0.0044952161758829426 0.006765991240784446 -0.007902617298770611 0.007999280745358099 -0.007574634574353167 0.007924307379829923" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.007574634574353167 0.007924307379829923 C -0.007135721851316893 0.0071228985992026015 -0.0039603034404564795 0.0015591891301605836 -0.004941158236135523 0.0031158546960659943 C -0.0039603034404564795 0.0015591891301605836 -0.0011475637276361405 -0.0021709428008806313 -0.0016895058002789093 -0.0014156860156025418" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="淫タトゥ">
<g id="渦">
<g transform="translate(0.3373434528286706,0.23916577780668663) rotate(0) scale(1,1) translate(-0.004044276755330287,-0.0037120127838791922)"><path d="M -0.01892968259352716 -0.013105686077159718 C -0.01887117072984451 -0.013210514137751123 -0.018119592120849414 -0.014559127715314087 -0.018227540229335374 -0.014363622804256576 C -0.018119592120849414 -0.014559127715314087 -0.017584869046892316 -0.015542421860315962 -0.01763430529169563 -0.015451745009849855" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.01763430529169563 -0.015451745009849855 C -0.017618473768767517 -0.015385008119010179 -0.017349561517703293 -0.014520669111052431 -0.01744432701655827 -0.014650902319773746 C -0.017349561517703293 -0.014520669111052431 -0.016251475870433144 -0.013744909410778237 -0.016497119305435872 -0.01388894650519408 C -0.016251475870433144 -0.013744909410778237 -0.014177552405097991 -0.012733936196861036 -0.014496605796525527 -0.012922457186783622 C -0.014177552405097991 -0.012733936196861036 -0.012427272043468244 -0.011359732529672227 -0.012668478608305445 -0.011626694626123042 C -0.012427272043468244 -0.011359732529672227 -0.011551617318696156 -0.009369868382998714 -0.011602127018479128 -0.00971891202937385 C -0.011551617318696156 -0.009369868382998714 -0.012287084918775113 -0.007115676547078238 -0.012062362210909791 -0.007438170869621401 C -0.012287084918775113 -0.007115676547078238 -0.014708279883365967 -0.005714138835129112 -0.014298799512863001 -0.005848980158855895 C -0.014708279883365967 -0.005714138835129112 -0.01734814829255564 -0.0059184483170588685 -0.016976126656945374 -0.005820074984900013 C -0.01734814829255564 -0.0059184483170588685 -0.018925369304887637 -0.007266415772536169 -0.018763059140186174 -0.007029460144762164 C -0.018925369304887637 -0.007266415772536169 -0.018851697816301218 -0.008875669855373677 -0.018923848633362918 -0.008663542518188076 C -0.018851697816301218 -0.008875669855373677 -0.01767892612017938 -0.009647932717736446 -0.017897249335445793 -0.009574988190989394 C -0.01767892612017938 -0.009647932717736446 -0.01610113300608227 -0.009474529189791211 -0.016303970050165973 -0.00953887683915271 C -0.01610113300608227 -0.009474529189791211 -0.015406602804658727 -0.00866825349479491 -0.01546320480644138 -0.008802816398651402 C -0.015406602804658727 -0.00866825349479491 -0.015697423669270037 -0.007799440063118513 -0.015624746028774138 -0.00792412199287483 C -0.015697423669270037 -0.007799440063118513 -0.016394552364360333 -0.007255175845633995 -0.016335336492392164 -0.007306633241575598" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.016335336492392164 -0.007306633241575598 C -0.016310569874157688 -0.007358161046567992 -0.016017940099833924 -0.008040730915135713 -0.016038137073578443 -0.007924966901484327 C -0.016017940099833924 -0.008040730915135713 -0.01617834687210438 -0.008797321174642945 -0.016092972807457917 -0.008695801405392226 C -0.01617834687210438 -0.008797321174642945 -0.017224778844138186 -0.009147709982509711 -0.017062625849336002 -0.009143204132492953 C -0.017224778844138186 -0.009147709982509711 -0.018125180255983402 -0.008609819630191976 -0.018038808745084105 -0.008749871605593328 C -0.018125180255983402 -0.008609819630191976 -0.018002350728338105 -0.00727140925508077 -0.018099083980127547 -0.007462580427676717 C -0.018002350728338105 -0.00727140925508077 -0.01661173214232693 -0.006372061261691777 -0.016878009723610813 -0.006455817534441966 C -0.01661173214232693 -0.006372061261691777 -0.014617734887005757 -0.006548696128138518 -0.014903753004720926 -0.006457505154674443 C -0.014617734887005757 -0.006548696128138518 -0.013310313277549111 -0.007778167505980164 -0.013445792311028791 -0.007550109216010866 C -0.013310313277549111 -0.007778167505980164 -0.013326857479616223 -0.009445382740534013 -0.01327800460296477 -0.009194204634306022 C -0.013326857479616223 -0.009445382740534013 -0.014205140582377642 -0.010763051345211501 -0.014032026830846233 -0.010564246490746759 C -0.014205140582377642 -0.010763051345211501 -0.015597234108990226 -0.011724692853708597 -0.015355369621341673 -0.011579862887882923 C -0.015597234108990226 -0.011724692853708597 -0.017163272943058448 -0.012399289829174478 -0.01693440068262887 -0.012302206080654843 C -0.017163272943058448 -0.012399289829174478 -0.01826811023907149 -0.012811824536493948 -0.01810183674649663 -0.012744867870118541 C -0.01826811023907149 -0.012811824536493948 -0.01899866974744637 -0.013135754261079815 -0.01892968259352716 -0.013105686077159718" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.23916577780668663) rotate(0) scale(1,1) translate(-0.004044276755330287,-0.0037120127838791922)"><path d="M 0.027018236104187743 -0.013105686077159718 C 0.02694924895026853 -0.01307561789323962 0.026024116764582328 -0.012677911203743135 0.026190390257157192 -0.012744867870118541 C 0.026024116764582328 -0.012677911203743135 0.024794081932859795 -0.012205122332135209 0.02502295419328937 -0.012302206080654843 C 0.024794081932859795 -0.012205122332135209 0.023202058644353724 -0.01143503292205725 0.023443923132002276 -0.011579862887882923 C 0.023202058644353724 -0.01143503292205725 0.021947466589975356 -0.010365441636282016 0.022120580341506768 -0.010564246490746759 C 0.021947466589975356 -0.010365441636282016 0.02131770523697385 -0.00894302652807803 0.02136655811362531 -0.009194204634306022 C 0.02131770523697385 -0.00894302652807803 0.0216698248551689 -0.007322050926041567 0.021534345821689227 -0.007550109216010866 C 0.0216698248551689 -0.007322050926041567 0.023278324633096592 -0.006366314181210368 0.022992306515381422 -0.006457505154674443 C 0.023278324633096592 -0.006366314181210368 0.025232840815555158 -0.006539573807192156 0.024966563234271266 -0.006455817534441966 C 0.025232840815555158 -0.006539573807192156 0.026284370742577556 -0.0076537516002726635 0.026187637490788118 -0.007462580427676717 C 0.026284370742577556 -0.0076537516002726635 0.026040990744845227 -0.00888992358099468 0.026127362255744524 -0.008749871605593328 C 0.026040990744845227 -0.00888992358099468 0.024989026365194383 -0.009138698282476194 0.025151179359996556 -0.009143204132492953 C 0.024989026365194383 -0.009138698282476194 0.024096152253471965 -0.008594281636141508 0.02418152631811843 -0.008695801405392226 C 0.024096152253471965 -0.008594281636141508 0.024146887557983516 -0.007809202887832941 0.024126690584238997 -0.007924966901484327 C 0.024146887557983516 -0.007809202887832941 0.024448656621287146 -0.007255105436583204 0.024423890003052673 -0.007306633241575598" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.024423890003052673 -0.007306633241575598 C 0.024364674131084507 -0.007358090637517201 0.023640621898938785 -0.008048803922631147 0.023713299539434685 -0.00792412199287483 C 0.023640621898938785 -0.008048803922631147 0.023608360318884525 -0.008937379302507893 0.02355175831710188 -0.008802816398651402 C 0.023608360318884525 -0.008937379302507893 0.02459536060491015 -0.00960322448851421 0.02439252356082644 -0.00953887683915271 C 0.02459536060491015 -0.00960322448851421 0.026204126061372828 -0.009502043664242342 0.02598580284610641 -0.009574988190989394 C 0.026204126061372828 -0.009502043664242342 0.02708455296108514 -0.008451415181002474 0.02701240214402345 -0.008663542518188076 C 0.02708455296108514 -0.008451415181002474 0.026689302486145223 -0.0067925045169881584 0.02685161265084668 -0.007029460144762164 C 0.026689302486145223 -0.0067925045169881584 0.02469265853199572 -0.005721701652741157 0.02506468016760599 -0.005820074984900013 C 0.02469265853199572 -0.005721701652741157 0.02197787265302048 -0.005983821482582677 0.02238735302352346 -0.005848980158855895 C 0.02197787265302048 -0.005983821482582677 0.019926193013704924 -0.007760665192164564 0.02015091572157024 -0.007438170869621401 C 0.019926193013704924 -0.007760665192164564 0.019741190228922678 -0.010067955675748986 0.019690680529139692 -0.00971891202937385 C 0.019741190228922678 -0.010067955675748986 0.020998238683803256 -0.011893656722573857 0.020757032118966068 -0.011626694626123042 C 0.020998238683803256 -0.011893656722573857 0.022904212698613497 -0.013110978176706208 0.022585159307185965 -0.012922457186783622 C 0.022904212698613497 -0.013110978176706208 0.024831316251099207 -0.014032983599609923 0.02458567281609647 -0.01388894650519408 C 0.024831316251099207 -0.014032983599609923 0.025627646026073776 -0.014781135528495061 0.025532880527218804 -0.014650902319773746 C 0.025627646026073776 -0.014781135528495061 0.025738690325284252 -0.01551848190068953 0.02572285880235614 -0.015451745009849855" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02572285880235614 -0.015451745009849855 C 0.02577229504715946 -0.015361068159383748 0.02642404184848196 -0.014168117893199064 0.026316093739995994 -0.014363622804256576 C 0.02642404184848196 -0.014168117893199064 0.02707674796787039 -0.013000858016568313 0.027018236104187743 -0.013105686077159718" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23916577780668663) rotate(0) scale(1,1) translate(-0.0050491035115750255,-0.003435371609681657)"><path d="M -0.022620263233708745 -0.006772735292067625 C -0.022538751438544707 -0.006868938385172324 -0.02149039012211558 -0.008109523983241029 -0.0216421216917403 -0.007927172409324022 C -0.02149039012211558 -0.008109523983241029 -0.020729264623751385 -0.009047102659884005 -0.02079948439821207 -0.008960954179071699" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.02079948439821207 -0.008960954179071699 C -0.020792744425434044 -0.008905153618226469 -0.02067431631889804 -0.00819056268159056 -0.020718604724875734 -0.008291347448928935 C -0.02067431631889804 -0.00819056268159056 -0.02013666047694475 -0.007650177649253573 -0.02026802352647978 -0.0077515369710112 C -0.02013666047694475 -0.007650177649253573 -0.01893415274085458 -0.006921694610343968 -0.019142248130455414 -0.0070750355878374084 C -0.01893415274085458 -0.006921694610343968 -0.017584937801037606 -0.0056596656698935585 -0.017770878851269732 -0.005911445241089915 C -0.017584937801037606 -0.0056596656698935585 -0.01687764818340581 -0.003708805261201031 -0.016910955527669906 -0.004053680733481134 C -0.01687764818340581 -0.003708805261201031 -0.017599172410320208 -0.0014602609116352305 -0.017371190720100564 -0.0017729395737286823 C -0.017599172410320208 -0.0014602609116352305 -0.020059475163162938 -0.0001765111250826427 -0.01964673581030565 -0.00030153678835971365 C -0.020059475163162938 -0.0001765111250826427 -0.022696084589998295 -0.00037100494656268725 -0.02232406295438803 -0.00027263161440383094 C -0.022696084589998295 -0.00037100494656268725 -0.02427330560233029 -0.0017189724020399946 -0.024110995437628825 -0.0014820167742659893 C -0.02427330560233029 -0.0017189724020399946 -0.02419963411374387 -0.003328226484877496 -0.02427178493080557 -0.003116099147691894 C -0.02419963411374387 -0.003328226484877496 -0.023026862417622026 -0.004100489347240264 -0.023245185632888438 -0.004027544820493211 C -0.023026862417622026 -0.004100489347240264 -0.02144906930352493 -0.003927085819295034 -0.021651906347608628 -0.003991433468656533 C -0.02144906930352493 -0.003927085819295034 -0.02075453910210138 -0.003120810124298733 -0.02081114110388403 -0.0032553730281552236 C -0.02075453910210138 -0.003120810124298733 -0.02104535996671269 -0.0022519966926223284 -0.02097268232621679 -0.0023766786223786457 C -0.02104535996671269 -0.0022519966926223284 -0.02174248866180298 -0.0017077324751378165 -0.021683272789834812 -0.0017591898710794186" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.021683272789834812 -0.0017591898710794186 C -0.021658506171600336 -0.0018107176760718126 -0.021365876397276575 -0.002493287544639531 -0.021386073371021094 -0.0023775235309881453 C -0.021365876397276575 -0.002493287544639531 -0.021526283169547036 -0.0032498778041467665 -0.021440909104900572 -0.0031483580348960474 C -0.021526283169547036 -0.0032498778041467665 -0.022572715141580837 -0.003600266612013534 -0.022410562146778657 -0.003595760761996776 C -0.022572715141580837 -0.003600266612013534 -0.023473116553426047 -0.0030623762596957917 -0.023386745042526753 -0.003202428235097145 C -0.023473116553426047 -0.0030623762596957917 -0.02335028702578075 -0.001723965884584587 -0.02344702027757019 -0.0019151370571805332 C -0.02335028702578075 -0.001723965884584587 -0.02195966843976958 -0.0008246178911956026 -0.022225946021053464 -0.0009083741639457912 C -0.02195966843976958 -0.0008246178911956026 -0.019965671184448405 -0.0010012527576423443 -0.020251689302163575 -0.00091006178417827 C -0.019965671184448405 -0.0010012527576423443 -0.01865824957499176 -0.002230724135483979 -0.01879372860847144 -0.002002665845514681 C -0.01865824957499176 -0.002230724135483979 -0.018654308800768644 -0.0038839233336287267 -0.018625940900407423 -0.0036467612638098426 C -0.018654308800768644 -0.0038839233336287267 -0.019249221455702226 -0.005012793605696156 -0.0191341434128061 -0.004848610683341291 C -0.019249221455702226 -0.005012793605696156 -0.02016799016541503 -0.005723152284306122 -0.02000687741516093 -0.005616956332068217 C -0.02016799016541503 -0.005723152284306122 -0.021233988618711078 -0.006194317369297215 -0.021067496415855282 -0.006122962110196144 C -0.021233988618711078 -0.006194317369297215 -0.022134181084251612 -0.0065273672064370195 -0.02200478384943049 -0.006473219441281063 C -0.022134181084251612 -0.0065273672064370195 -0.0226715531823986 -0.006797694946299838 -0.022620263233708745 -0.006772735292067625" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.23916577780668663) rotate(0) scale(1,1) translate(-0.0050491035115750255,-0.003435371609681657)"><path d="M 0.03271847025685881 -0.006772735292067625 C 0.03266718030816895 -0.006747775637835411 0.03197359363775939 -0.006419071676125106 0.032102990872580506 -0.006473219441281063 C 0.03197359363775939 -0.006419071676125106 0.030999211236149588 -0.006051606851095073 0.031165703439005377 -0.006122962110196144 C 0.030999211236149588 -0.006051606851095073 0.02994397168805696 -0.005510760379830312 0.03010508443831106 -0.005616956332068217 C 0.02994397168805696 -0.005510760379830312 0.029117272393060056 -0.004684427760986426 0.029232350435956178 -0.004848610683341291 C 0.029117272393060056 -0.004684427760986426 0.028695780023196376 -0.0034095991939909584 0.028724147923557597 -0.0036467612638098426 C 0.028695780023196376 -0.0034095991939909584 0.029027414665101187 -0.0017746075555453834 0.028891935631621513 -0.002002665845514681 C 0.029027414665101187 -0.0017746075555453834 0.030635914443028878 -0.0008188708107141958 0.030349896325313708 -0.00091006178417827 C 0.030635914443028878 -0.0008188708107141958 0.03259043062548744 -0.0009921304366959799 0.03232415304420355 -0.0009083741639457912 C 0.03259043062548744 -0.0009921304366959799 0.03364196055250984 -0.0021063082297764794 0.033545227300720404 -0.0019151370571805332 C 0.03364196055250984 -0.0021063082297764794 0.03339858055477751 -0.0033424802104984985 0.03348495206567681 -0.003202428235097145 C 0.03339858055477751 -0.0033424802104984985 0.032346616175126665 -0.003591254911980018 0.03250876916992884 -0.003595760761996776 C 0.032346616175126665 -0.003591254911980018 0.031453742063404254 -0.0030468382656453283 0.031539116128050715 -0.0031483580348960474 C 0.031453742063404254 -0.0030468382656453283 0.031504477367915805 -0.0022617595173367597 0.03148428039417128 -0.0023775235309881453 C 0.031504477367915805 -0.0022617595173367597 0.03180624643121943 -0.0017076620660870247 0.03178147981298496 -0.0017591898710794186" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.03178147981298496 -0.0017591898710794186 C 0.03172226394101679 -0.0018106472670210208 0.03099821170887107 -0.002501360552134963 0.03107088934936697 -0.0023766786223786457 C 0.03099821170887107 -0.002501360552134963 0.03096595012881681 -0.003389935932011714 0.030909348127034164 -0.0032553730281552236 C 0.03096595012881681 -0.003389935932011714 0.03195295041484242 -0.004055781118018032 0.031750113370758726 -0.003991433468656533 C 0.03195295041484242 -0.004055781118018032 0.03356171587130489 -0.0039546002937461576 0.03334339265603847 -0.004027544820493211 C 0.03356171587130489 -0.0039546002937461576 0.034442142771017446 -0.0029039718105062923 0.034369991953955736 -0.003116099147691894 C 0.034442142771017446 -0.0029039718105062923 0.03404689229607749 -0.001245061146491984 0.034209202460778965 -0.0014820167742659893 C 0.03404689229607749 -0.001245061146491984 0.03205024834192779 -0.00017425828224497462 0.032422269977538054 -0.00027263161440383094 C 0.03205024834192779 -0.00017425828224497462 0.02933220348059847 -0.0004265624516367846 0.029744942833455745 -0.00030153678835971365 C 0.02933220348059847 -0.0004265624516367846 0.027241416053031098 -0.002085618235822134 0.027469397743250745 -0.0017729395737286823 C 0.027241416053031098 -0.002085618235822134 0.027042469895084076 -0.004398556205761237 0.027009162550819976 -0.004053680733481134 C 0.027042469895084076 -0.004398556205761237 0.028055026924652077 -0.006163224812286271 0.02786908587441994 -0.005911445241089915 C 0.028055026924652077 -0.006163224812286271 0.02944855054320646 -0.007228376565330849 0.029240455153605627 -0.0070750355878374084 C 0.02944855054320646 -0.007228376565330849 0.030497593599164968 -0.007852896292768828 0.030366230549629947 -0.0077515369710112 C 0.030497593599164968 -0.007852896292768828 0.030861100154003545 -0.00839213221626731 0.030816811748025863 -0.008291347448928935 C 0.030861100154003545 -0.00839213221626731 0.030904431394140137 -0.009016754739916928 0.030897691421362117 -0.008960954179071699" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.030897691421362117 -0.008960954179071699 C 0.030967911195822817 -0.008874805698259393 0.031892060284515245 -0.0077448208354070165 0.03174032871489052 -0.007927172409324022 C 0.031892060284515245 -0.0077448208354070165 0.032799982052022836 -0.006676532198962925 0.03271847025685881 -0.006772735292067625" fill="none" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="ハート">
<g transform="translate(0.3373434528286706,0.23916577780668663) rotate(0) scale(1,1) translate(4.531817165381619E-05,-0.007618185234386916)"><path d="M -0.036199665645516174 0.015743464241063244 C -0.03609938807508192 0.01555852958817754 -0.03480606393557553 0.013179501517404785 -0.034996334800305166 0.013524248406434791 C -0.03480606393557553 0.013179501517404785 -0.03376365294334223 0.011353396326339249 -0.03391641526876053 0.011606501572703175 C -0.03376365294334223 0.011353396326339249 -0.03302602041897583 0.010290551630196144 -0.033163186895285544 0.010486985450067678 C -0.03302602041897583 0.010290551630196144 -0.03216850127476303 0.009086387528284253 -0.03227041755304398 0.009249295734244763 C -0.03216850127476303 0.009086387528284253 -0.03192306289193474 0.008456666769783957 -0.03194019155591406 0.008532086978541551 C -0.03192306289193474 0.008456666769783957 -0.03209469028844586 0.00833916598130244 -0.03206487358529222 0.008344253229153643 C -0.03209469028844586 0.00833916598130244 -0.03233516319141314 0.0085076939394198 -0.03229799199375777 0.008471040004327107 C -0.03233516319141314 0.0085076939394198 -0.032528672620773295 0.008810188820760869 -0.03251092795715672 0.008784100450265965" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.03251092795715672 0.008784100450265965 C -0.03250891848871401 0.008779772977936428 -0.0324829878260364 0.00872396259990548 -0.03248681433584428 0.008732170782311534 C -0.0324829878260364 0.00872396259990548 -0.032463192798096924 0.0086817215513168 -0.03246500983946211 0.008685602261393317" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.03246500983946211 0.008685602261393317 C -0.032431582187950336 0.008625044323669676 -0.03198405182387271 0.007873878756960382 -0.03206387802132083 0.007958907008709626 C -0.03198405182387271 0.007873878756960382 -0.03142599972441644 0.007684552412319166 -0.03150709547008466 0.007665263240402393 C -0.03142599972441644 0.007684552412319166 -0.031087998680589538 0.008325537705213453 -0.031090729073302195 0.008190377071710902 C -0.031087998680589538 0.008325537705213453 -0.03161105644674989 0.009500117340084265 -0.031474330757532774 0.009287190842433003 C -0.03161105644674989 0.009500117340084265 -0.032923432815229886 0.01096823305873465 -0.032731437343907585 0.01074549504352606 C -0.032923432815229886 0.01096823305873465 -0.03395448653570421 0.01218904232027772 -0.033778276413400386 0.011960047024936074 C -0.03395448653570421 0.01218904232027772 -0.035062664123903804 0.013866478313022143 -0.034845958811553425 0.013493438587625813 C -0.035062664123903804 0.013866478313022143 -0.03650647194077593 0.016681780824864215 -0.036378740161604965 0.01643652372969203" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.036378740161604965 0.01643652372969203 C -0.03636905681806275 0.01639971928066807 -0.03624761716275766 0.015937115384018766 -0.03626254003909839 0.0159948703414045 C -0.03624761716275766 0.015937115384018766 -0.036194426112717656 0.015722513732701473 -0.036199665645516174 0.015743464241063244" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23916577780668663) rotate(0) scale(1,1) translate(4.531817165381619E-05,-0.007618185234386916)"><path d="M 0.036109029302208606 0.015743464241063244 C 0.03611426883500713 0.015764414749425016 0.03618682657213163 0.016052625298790233 0.036171903695790895 0.0159948703414045 C 0.03618682657213163 0.016052625298790233 0.036297787161839686 0.016473328178715992 0.036288103818297474 0.01643652372969203" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036288103818297474 0.01643652372969203 C 0.03616037203912652 0.016191266634519846 0.034538617155895596 0.013120398862229482 0.034755322468245975 0.013493438587625813 C 0.034538617155895596 0.013120398862229482 0.03351142994778913 0.011731051729594428 0.03368764007009295 0.011960047024936074 C 0.03351142994778913 0.011731051729594428 0.03244880552927776 0.01052275702831747 0.03264080100060007 0.01074549504352606 C 0.03244880552927776 0.01052275702831747 0.031246968725008057 0.00907426434478174 0.03138369441422517 0.009287190842433003 C 0.031246968725008057 0.00907426434478174 0.031002823122707374 0.00805521643820835 0.03100009272999471 0.008190377071710902 C 0.031002823122707374 0.00805521643820835 0.03149755487244538 0.00764597406848562 0.03141645912677715 0.007665263240402393 C 0.03149755487244538 0.00764597406848562 0.03205306787546153 0.00804393526045887 0.03197324167801341 0.007958907008709626 C 0.03205306787546153 0.00804393526045887 0.03240780114766634 0.008746160199116958 0.032374373496154574 0.008685602261393317" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.032374373496154574 0.008685602261393317 C 0.03237619053751976 0.008689482971469835 0.03240000450234468 0.008740378964717589 0.0323961779925368 0.008732170782311534 C 0.03240000450234468 0.008740378964717589 0.03242230108229188 0.008788427922595501 0.032420291613849184 0.008784100450265965" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.032420291613849184 0.008784100450265965 C 0.03240254695023261 0.00875801207977106 0.032170184452794924 0.008434386069234414 0.0322073556504503 0.008471040004327107 C 0.032170184452794924 0.008434386069234414 0.03194442053883103 0.008349340477004847 0.03197423724198467 0.008344253229153643 C 0.03194442053883103 0.008349340477004847 0.03186668387658589 0.008607507187299145 0.03184955521260657 0.008532086978541551 C 0.03186668387658589 0.008607507187299145 0.03228169748801737 0.009412203940205274 0.03217978120973641 0.009249295734244763 C 0.03228169748801737 0.009412203940205274 0.03320971702828771 0.010683419269939213 0.033072550551978 0.010486985450067678 C 0.03320971702828771 0.010683419269939213 0.033978541250871325 0.0118596068190671 0.03382577892545302 0.011606501572703175 C 0.033978541250871325 0.0118596068190671 0.035095969321727295 0.013868995295464797 0.03490569845699766 0.013524248406434791 C 0.035095969321727295 0.013868995295464797 0.03620930687264285 0.01592839889394895 0.036109029302208606 0.015743464241063244" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286706,0.23916577780668663) rotate(0) scale(1,1) translate(0.00011198358255654973,-0.007639437628074994)"><path d="M -0.0368602921237716 0.01800299613094585 C -0.03669059627548167 0.01771730920260005 -0.03453048358223136 0.014147800074696421 -0.03482394194429248 0.014574752990796224 C -0.03453048358223136 0.014147800074696421 -0.033024409034841676 0.01256067846168595 -0.03333879177903817 0.01287956113774821 C -0.033024409034841676 0.01256067846168595 -0.030739735207031462 0.010413388462640618 -0.031051349013934616 0.010748160878049117 C -0.030739735207031462 0.010413388462640618 -0.029428198993785144 0.008552100931981946 -0.029599426096200327 0.008862292152846203 C -0.029428198993785144 0.008552100931981946 -0.029003576702535214 0.006770447144750735 -0.028996623784952432 0.007025866227678041 C -0.029003576702535214 0.006770447144750735 -0.029827769741834546 0.005696122603900121 -0.029682861107193727 0.005797263157718529 C -0.029827769741834546 0.005696122603900121 -0.030911684663511525 0.005909197935415897 -0.030735527400642237 0.005812179581857154 C -0.030911684663511525 0.005909197935415897 -0.03188518333337378 0.0070572587186372975 -0.0317967482616252 0.00696148340042344" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.0317967482616252 0.00696148340042344 C -0.03175808576612128 0.00685406213467988 -0.03149318090315871 0.00611251357243537 -0.03156477328860171 0.006316955805962082 C -0.03149318090315871 0.00611251357243537 -0.03133426405902813 0.005637809031480014 -0.03136719394896721 0.0057348299992631665" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M -0.03136719394896721 0.0057348299992631665 C -0.03129410508340672 0.0056628693213899685 -0.0302918221730403 0.004781656151397172 -0.030490127562241367 0.004871301864784792 C -0.0302918221730403 0.004781656151397172 -0.02875412072721674 0.004773219823518565 -0.02898752927855443 0.004659081438611727 C -0.02875412072721674 0.004773219823518565 -0.027604077155955337 0.006587107231720629 -0.027689224946189046 0.006240962483666853 C -0.027604077155955337 0.006587107231720629 -0.028164213897216264 0.009244256149147406 -0.027965755795749902 0.008812818415257039 C -0.028164213897216264 0.009244256149147406 -0.0304461492076678 0.01179887060082085 -0.030070722163785382 0.011418215290351261 C -0.0304461492076678 0.01179887060082085 -0.032824534695664 0.013699568899613806 -0.03247088032233888 0.013380682140892088 C -0.032824534695664 0.013699568899613806 -0.034709456501967204 0.015742870061016493 -0.03431457464368687 0.015244856395011878 C -0.034709456501967204 0.015742870061016493 -0.037450703286537615 0.019699511944442093 -0.037209462621702945 0.019356846132947463" fill="none" stroke="none" stroke-width="0"/>
<path d="M -0.037209462621702945 0.019356846132947463 C -0.03719357457325282 0.01929417499425319 -0.0369897084988072 0.018491971635116056 -0.03701880604030148 0.01860479246861619 C -0.0369897084988072 0.018491971635116056 -0.036847082630727446 0.01795284643613999 -0.0368602921237716 0.01800299613094585" fill="none" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3373434528286706,0.23916577780668663) rotate(0) scale(1,1) translate(0.00011198358255654973,-0.007639437628074994)"><path d="M 0.036636324958658685 0.01800299613094585 C 0.036649534451702846 0.018053145825751713 0.0368239364166829 0.018717613302116323 0.03679483887518862 0.01860479246861619 C 0.0368239364166829 0.018717613302116323 0.03700138350504011 0.019419517271641734 0.036985495456589995 0.019356846132947463" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.036985495456589995 0.019356846132947463 C 0.03674425479175532 0.01901418032145283 0.03369572562029349 0.014746842729007264 0.03409060747857384 0.015244856395011878 C 0.03369572562029349 0.014746842729007264 0.03189325878390072 0.01306179538217037 0.03224691315722583 0.013380682140892088 C 0.03189325878390072 0.01306179538217037 0.02947132795479011 0.011037559979881673 0.02984675499867251 0.011418215290351261 C 0.02947132795479011 0.011037559979881673 0.027543330529170667 0.008381380681366672 0.027741788630637032 0.008812818415257039 C 0.027543330529170667 0.008381380681366672 0.027550405571309815 0.0058948177356130775 0.027465257781076113 0.006240962483666853 C 0.027550405571309815 0.0058948177356130775 0.02899697066477913 0.004544943053704888 0.028763562113441443 0.004659081438611727 C 0.02899697066477913 0.004544943053704888 0.030464465786329442 0.004960947578172412 0.030266160397128372 0.004871301864784792 C 0.030464465786329442 0.004960947578172412 0.031216315649414777 0.005806790677136364 0.031143226783854283 0.0057348299992631665" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.031143226783854283 0.0057348299992631665 C 0.031176156673793365 0.005831850967046319 0.03141239850893177 0.006521398039488794 0.031340806123488774 0.006316955805962082 C 0.03141239850893177 0.006521398039488794 0.03161144359201621 0.007068904666167 0.03157278109651229 0.00696148340042344" fill="none" stroke="#000000" stroke-width="0.001"/>
<path d="M 0.03157278109651229 0.00696148340042344 C 0.03148434602476371 0.006865708082209583 0.030335402972659964 0.005715161228298411 0.030511560235529256 0.005812179581857154 C 0.030335402972659964 0.005715161228298411 0.029313985307439967 0.005898403711536936 0.029458893942080788 0.005797263157718529 C 0.029313985307439967 0.005898403711536936 0.028765703702256618 0.007281285310605347 0.02877265661983941 0.007025866227678041 C 0.028765703702256618 0.007281285310605347 0.029546686033502467 0.00917248337371046 0.029375458931087284 0.008862292152846203 C 0.029546686033502467 0.00917248337371046 0.031138995655724772 0.011082933293457617 0.03082738184882161 0.010748160878049117 C 0.031138995655724772 0.011082933293457617 0.033429207358121715 0.01319844381381047 0.03311482461392523 0.01287956113774821 C 0.033429207358121715 0.01319844381381047 0.03489343314124054 0.015001705906896028 0.03459997477917942 0.014574752990796224 C 0.03489343314124054 0.015001705906896028 0.03680602080694862 0.018288683059291655 0.036636324958658685 0.01800299613094585" fill="none" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="獣性">
<g transform="translate(0.31513853052743,0.22084630400552918) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.010212786241114694 0.008853209355832928 C 0.010500590565024238 0.00908630495891528 0.014175616894276927 0.012167459451052342 0.013666438128029233 0.01165035659282116 C 0.014175616894276927 0.012167459451052342 0.01654430587842519 0.015342450909755915 0.016322931436087037 0.015058443654607089" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.016322931436087037 0.015058443654607089 C 0.015889346508678657 0.014851072741298436 0.010454880521656565 0.012331595566595173 0.011119912307186484 0.012569992694903248 C 0.010454880521656565 0.012331595566595173 0.008111103151606463 0.012166651899910756 0.008342550009728004 0.012197678114910179" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008342550009728004 0.012197678114910179 C 0.008438308305088623 0.012027784145983673 0.009647502573337656 0.009880244757869009 0.009491649554055431 0.010158950487792112 C 0.009647502573337656 0.009880244757869009 0.010272880965036292 0.00874439759483633 0.010212786241114687 0.00885320935583293" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3595483751299111,0.22084630400552924) rotate(0) scale(1,1) translate(-0.009690334973390745,-0.009690334973390745)"><path d="M 0.009167883705666902 0.00885320935583293 C 0.009227978429588501 0.00896202111682953 0.010044873412008317 0.010437656217715216 0.0098890203927261 0.010158950487792112 C 0.010044873412008317 0.010437656217715216 0.01113387823241412 0.012367572083836684 0.011038119937053503 0.012197678114910179" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.011038119937053503 0.012197678114910179 C 0.01080667307893197 0.012228704329909601 0.0075957258540651955 0.012808389823211324 0.008260757639595107 0.012569992694903248 C 0.0075957258540651955 0.012808389823211324 0.0026241535832861964 0.015265814567915741 0.0030577385106945743 0.015058443654607089" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0030577385106945743 0.015058443654607089 C 0.003279112953032718 0.014774436399458262 0.006223410584999996 0.01113325373458998 0.005714231818752302 0.01165035659282116 C 0.006223410584999996 0.01113325373458998 0.009455688029576451 0.008620113752750576 0.009167883705666902 0.008853209355832928" fill="none" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋柄">
<g id="紋左">
<g transform="translate(0.31513853052743,0.22084630400552918) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.01430495226897865 0.018456344470335836 C 0.014343756200608352 0.01823755580283601 0.01667651164751686 0.01770485365064278 0.016529903016825956 0.017560701866773172 C 0.01667651164751686 0.01770485365064278 0.015878843274948904 0.02026080276040133 0.016064255837269514 0.02018616587677111 C 0.015878843274948904 0.02026080276040133 0.014343756200608352 0.01823755580283601 0.01430495226897865 0.018456344470335836 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31513853052743,0.22084630400552918) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.007780607273201432 0.020711274362442036 C 0.00764637729088728 0.020569796144061896 0.008952587129043909 0.01831313356663632 0.008738530233381423 0.018367010657039707 C 0.008952587129043909 0.01831313356663632 0.010269463107802919 0.020260104586384914 0.010349290021151251 0.020064749277601386 C 0.010269463107802919 0.020260104586384914 0.00764637729088728 0.020569796144061896 0.007780607273201432 0.020711274362442036 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31513853052743,0.22084630400552918) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.011391823520292735 0.015277170786322864 C 0.011349655830608157 0.015090755817432515 0.01309312242176711 0.01331414473316831 0.012923329254252547 0.013293071381358339 C 0.01309312242176711 0.01331414473316831 0.013301716052637502 0.015695392625122904 0.013429341530467487 0.015530051008042528 C 0.013301716052637502 0.015695392625122904 0.011349655830608157 0.015090755817432515 0.011391823520292735 0.015277170786322864 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
<g id="紋右">
<g transform="translate(0.3595483751299111,0.22084630400552924) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.006754073993584857 0.02018616587677111 C 0.006568661431264255 0.02011152899314089 0.00643503544471939 0.017416550082903565 0.006288426814028487 0.017560701866773172 C 0.00643503544471939 0.017416550082903565 0.0085521814935054 0.018675133137835663 0.008513377561875703 0.018456344470335836 C 0.0085521814935054 0.018675133137835663 0.006568661431264255 0.02011152899314089 0.006754073993584857 0.02018616587677111 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3595483751299111,0.22084630400552924) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.012469039809703156 0.020064749277601386 C 0.012389212896354829 0.01986939396881786 0.014293856493135486 0.018420887747443094 0.014079799597473006 0.018367010657039707 C 0.014293856493135486 0.018420887747443094 0.014903492575338774 0.020852752580822177 0.015037722557652929 0.020711274362442036 C 0.014903492575338774 0.020852752580822177 0.012389212896354829 0.01986939396881786 0.012469039809703156 0.020064749277601386 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3595483751299111,0.22084630400552924) rotate(0) scale(1,1) translate(-0.011409164915427155,-0.011409164915427157)"><path d="M 0.009388988300386886 0.015530051008042528 C 0.009261362822556907 0.01536470939096215 0.010064793744116443 0.013271998029548367 0.00989500057660188 0.013293071381358339 C 0.010064793744116443 0.013271998029548367 0.011384338620877062 0.015463585755213213 0.011426506310561645 0.015277170786322864 C 0.011384338620877062 0.015463585755213213 0.009261362822556907 0.01536470939096215 0.009388988300386886 0.015530051008042528 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></g>
</g>
<g id="鱗">
<g id="左">
<g transform="translate(0.31513853052743,0.22084630400552918) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08845284791383735 0.09250620544295744 C 0.08785027996771717 0.09244724520730135 0.08557778579219336 0.09071936038931795 0.08589342316183624 0.09119069592983167 C 0.08557778579219336 0.09071936038931795 0.08611189855586474 0.08833450831501793 0.08592774895669433 0.08873552111884764 C 0.08611189855586474 0.08833450831501793 0.08791594287752029 0.08812539366748608 0.08736661995519944 0.08798259349919407 C 0.08791594287752029 0.08812539366748608 0.09074075068221091 0.09033789550466943 0.09032233233526113 0.08987792246518364 C 0.09074075068221091 0.09033789550466943 0.09048028117811975 0.09199091318730217 0.09071396673079772 0.09166237781508044 C 0.09048028117811975 0.09199091318730217 0.08785027996771717 0.09244724520730135 0.08845284791383735 0.09250620544295744 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.31513853052743,0.22084630400552918) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08534101048160089 0.09717117225052992 C 0.08476177408245489 0.09714426219255941 0.08286258465851801 0.0958330296844887 0.08315489048118671 0.0962829984398787 C 0.08286258465851801 0.0958330296844887 0.08319254638616527 0.0931490426184565 0.08300256390025132 0.09357142220740992 C 0.08319254638616527 0.0931490426184565 0.08520074174384495 0.0930147117188577 0.0846747503684983 0.09290396172825129 C 0.08520074174384495 0.0930147117188577 0.0875997488162567 0.09490671177918514 0.08721049490302465 0.09445742213226122 C 0.0875997488162567 0.09490671177918514 0.08755509612167674 0.09683749766842631 0.08778878167435471 0.09649827890364272 C 0.08755509612167674 0.09683749766842631 0.08476177408245489 0.09714426219255941 0.08534101048160089 0.09717117225052992 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
<g id="右">
<g transform="translate(0.3595483751299111,0.22084630400552924) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08088018329838677 0.09166237781508044 C 0.08064649774570878 0.0913338424428587 0.08169023604087307 0.08941794942569785 0.08127181769392329 0.08987792246518364 C 0.08169023604087307 0.08941794942569785 0.08477685299630584 0.08783979333090207 0.084227530073985 0.08798259349919407 C 0.08477685299630584 0.08783979333090207 0.0858505506716605 0.08913653392267734 0.0856664010724901 0.08873552111884764 C 0.0858505506716605 0.08913653392267734 0.08538508949770539 0.09166203147034539 0.08570072686734827 0.09119069592983167 C 0.08538508949770539 0.09166203147034539 0.08253873416922691 0.09256516567861353 0.08314130211534711 0.09250620544295744 C 0.08253873416922691 0.09256516567861353 0.08064649774570878 0.0913338424428587 0.08088018329838677 0.09166237781508044 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g><g transform="translate(0.3595483751299111,0.22084630400552924) rotate(0) scale(1,1) translate(-0.0857970750145922,-0.08579707501459222)"><path d="M 0.08380536835482975 0.09649827890364272 C 0.08357168280215177 0.09615906013885914 0.0847729090393918 0.09400813248533729 0.08438365512615975 0.09445742213226122 C 0.0847729090393918 0.09400813248533729 0.0874453910360328 0.09279321173764488 0.08691939966068614 0.09290396172825129 C 0.0874453910360328 0.09279321173764488 0.08878156861484704 0.09399380179636335 0.08859158612893309 0.09357142220740992 C 0.08878156861484704 0.09399380179636335 0.08814695372532909 0.0967329671952687 0.08843925954799778 0.0962829984398787 C 0.08814695372532909 0.0967329671952687 0.08567390314843756 0.09719808230850042 0.08625313954758357 0.09717117225052992 C 0.08567390314843756 0.09719808230850042 0.08357168280215177 0.09615906013885914 0.08380536835482975 0.09649827890364272 Z" fill="#cccccc" stroke="#000000" stroke-width="0.001"/>
</g></g>
</g>
<g transform="translate(0.31513853052743,0.22084630400552918) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.053906824017354645 0.05337454311402829 C 0.053694486626594776 0.05378095985933618 0.051114480432403735 0.05872139248947643 0.051358775328236225 0.05825154405772296 C 0.051114480432403735 0.05872139248947643 0.05094332776229213 0.05907615598151549 0.05097528526736475 0.059012724295069915" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05097528526736475 0.059012724295069915 C 0.05098569898208783 0.05907624501564352 0.05118496110765542 0.060245512710341814 0.05110024984404175 0.05977497294195319 C 0.05118496110765542 0.060245512710341814 0.052066117979619436 0.06506622056354835 0.05199182043072884 0.06465920151573334" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05199182043072884 0.06465920151573334 C 0.05186169756519464 0.06434186608126655 0.050279471442460436 0.06048692822363741 0.0504303460443184 0.06085117630213183 C 0.050279471442460436 0.06048692822363741 0.050160573472109594 0.0602413119297726 0.050181325208433346 0.06028822457380023" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.050181325208433346 0.06028822457380023 C 0.05014467181518547 0.06033501659312836 0.04946713590930471 0.06121308336793957 0.04974148448945883 0.06084972880573776 C 0.04946713590930471 0.06121308336793957 0.046651447059677706 0.0649650418630956 0.04688914224658395 0.06464847932022191" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04688914224658395 0.06464847932022191 C 0.04710147963734382 0.06424206257491402 0.049681485831534866 0.059301629944773726 0.049437190935702376 0.0597714783765272 C 0.049681485831534866 0.059301629944773726 0.04985263850164647 0.05894686645273464 0.04982068099657385 0.059010298139180226" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04982068099657385 0.059010298139180226 C 0.04981026728185077 0.05894677741860662 0.04961100515628319 0.05777750972390834 0.04969571641989686 0.058248049492296956 C 0.04961100515628319 0.05777750972390834 0.048729848284319165 0.05295680187070182 0.04880414583320976 0.05336382091851683" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04880414583320976 0.05336382091851683 C 0.04893426869874396 0.05368115635298362 0.05051649482147817 0.05753609421061275 0.05036562021962022 0.05717184613211832 C 0.05051649482147817 0.05753609421061275 0.050635392791829 0.057781710504477606 0.05061464105550525 0.057734797860449966" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05061464105550525 0.057734797860449966 C 0.050651294448753124 0.05768800584112183 0.0513288303546339 0.05680993906631058 0.051054481774479785 0.05717329362851239 C 0.0513288303546339 0.05680993906631058 0.05414451920426088 0.053057980571154614 0.053906824017354645 0.05337454311402829" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3595483751299111,0.22084630400552924) rotate(0) scale(1,1) translate(-0.05065453058920214,-0.05065453058920213)"><path d="M 0.0474022371610495 0.0533745431140283 C 0.047639932347955743 0.05369110565690197 0.050528927984078535 0.0575366481907142 0.050254579403924415 0.05717329362851239 C 0.050528927984078535 0.0575366481907142 0.05073107351614683 0.057781589879778106 0.05069442012289895 0.05773479786044997" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05069442012289895 0.05773479786044997 C 0.050715171859222696 0.05768788521642233 0.05109431556064188 0.0568075980536239 0.05094344095878392 0.05717184613211833 C 0.05109431556064188 0.0568075980536239 0.052635038210728666 0.05304648548405005 0.052504915345194456 0.05336382091851684" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.052504915345194456 0.05336382091851684 C 0.05243061779630386 0.05377083996633185 0.05152863349489365 0.058718589260685586 0.051613344758507325 0.05824804949229697 C 0.05152863349489365 0.058718589260685586 0.05147796646710729 0.05907381885975384 0.05148838018183037 0.05901029813918023" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05148838018183037 0.05901029813918023 C 0.05152033768690299 0.059073729825625816 0.052116165138534294 0.06024132680828069 0.051871870242701804 0.059771478376527215 C 0.052116165138534294 0.06024132680828069 0.05463225632258017 0.0650548960655298 0.05441991893182029 0.06464847932022191" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05441991893182029 0.06464847932022191 C 0.05418222374491405 0.06433191677734823 0.05129322810879126 0.060486374243535965 0.05156757668894538 0.060849728805737774 C 0.05129322810879126 0.060486374243535965 0.051091082576722964 0.060241432554472105 0.05112773596997084 0.06028822457380023" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.05112773596997084 0.06028822457380023 C 0.05110698423364709 0.060335137217827864 0.0507278405322279 0.06121542438062625 0.05087871513408586 0.06085117630213182 C 0.0507278405322279 0.06121542438062625 0.049187117882141126 0.06497653695020017 0.04931724074767534 0.06465920151573337" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.04931724074767534 0.06465920151573337 C 0.04939153829656593 0.06425218246791836 0.050293522597976134 0.059304433173564576 0.05020881133436246 0.0597749729419532 C 0.050293522597976134 0.059304433173564576 0.050344189625762495 0.05894920357449632 0.050333775911039415 0.05901272429506992" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.050333775911039415 0.05901272429506992 C 0.05030181840596679 0.058949292608624346 0.04970599095433549 0.0577816956259695 0.04995028585016798 0.05825154405772297 C 0.04970599095433549 0.0577816956259695 0.047189899770289624 0.052968126368720406 0.0474022371610495 0.0533745431140283" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.31513853052743,0.22084630400552918) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.002626002437785817 0.030120862730975622 C 0.0028225032216437963 0.03001619623737387 0.00537701341179753 0.028655531820551097 0.004984011844081572 0.028864864807754603 C 0.00537701341179753 0.028655531820551097 0.007538522034235292 0.02750420039093181 0.007342021250377314 0.027608866884533564" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007342021250377314 0.027608866884533564 C 0.007545225694712463 0.027547358523076236 0.010186883471069401 0.02674774982413098 0.009780474582399104 0.026870766547045635 C 0.010186883471069401 0.02674774982413098 0.012422132358756034 0.026071157848100376 0.012218927914420885 0.026132666209557703" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.012218927914420885 0.026132666209557703 C 0.012022427130562906 0.026237332703159456 0.009467916940409177 0.027597997119982228 0.009860918508125137 0.027388664132778726 C 0.009467916940409177 0.027597997119982228 0.007306408317971398 0.028749328549601494 0.007502909101829378 0.02864466205599974" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.007502909101829378 0.02864466205599974 C 0.00729970465749423 0.02870617041745707 0.004658046881137305 0.029505779116402345 0.005064455769807602 0.02938276239348769 C 0.004658046881137305 0.029505779116402345 0.002422797993450668 0.03018237109243295 0.002626002437785817 0.030120862730975622" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3595483751299111,0.22084630400552924) rotate(0) scale(1,1) translate(-0.010565988892664996,-0.010565988892664996)"><path d="M 0.01850597534754422 0.030120862730975598 C 0.018302770903209076 0.030059354369518277 0.01566111312685219 0.02925974567057308 0.016067522015522483 0.029382762393487732 C 0.01566111312685219 0.02925974567057308 0.013425864239165548 0.028583153694542434 0.013629068683500696 0.028644662055999765" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013629068683500696 0.028644662055999765 C 0.013432567899642714 0.02853999556239801 0.010878057709488943 0.027179331145575202 0.011271059277204903 0.027388664132778705 C 0.010878057709488943 0.027179331145575202 0.008716549087051212 0.026027999715955978 0.008913049870909188 0.026132666209557728" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.008913049870909188 0.026132666209557728 C 0.009116254315244331 0.02619417457101505 0.011757912091601212 0.02699378326996025 0.011351503202930917 0.026870766547045597 C 0.011757912091601212 0.02699378326996025 0.013993160979287876 0.027670375245990874 0.013789956534952725 0.027608866884533546" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.013789956534952725 0.027608866884533546 C 0.013986457318810706 0.027713533378135303 0.016540967508964454 0.029074197794958123 0.016147965941248496 0.02886486480775462 C 0.016540967508964454 0.029074197794958123 0.018702476131402197 0.030225529224577347 0.01850597534754422 0.030120862730975598" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.315708051851578,0.237284409057396) rotate(0) scale(1,1) translate(-0.022986364471475812,-0.022986364471475812)"><path d="M 0.018837481281485886 0.016895167535335834 C 0.0190708478868861 0.01660051294400596 0.021828491170186454 0.01344586396725215 0.021637880546288447 0.013359312439377376 C 0.021828491170186454 0.01344586396725215 0.021082052786759748 0.01831499198903776 0.021124808768261956 0.017933785869833116" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.021124808768261956 0.017933785869833116 C 0.021093296265266792 0.01814261158798673 0.020635702954671514 0.02090164214489364 0.020746658732319987 0.020439694487676505 C 0.020635702954671514 0.02090164214489364 0.01971389616182699 0.023730279695502246 0.0197933394364803 0.023477157756438726" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.0197933394364803 0.023477157756438726 C 0.019535269463497092 0.023810467908900394 0.0164904704053088 0.027473025500147838 0.016696499760681816 0.027476879585978754 C 0.0164904704053088 0.027473025500147838 0.01737302778961428 0.023093744488175156 0.01732098717200409 0.02343090872646774" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.01732098717200409 0.02343090872646774 C 0.01731959207805801 0.023147374618910133 0.017430620553774603 0.01948385433651548 0.017304246044651122 0.020028499435776472 C 0.017430620553774603 0.01948385433651548 0.01896525088455545 0.016634056543632446 0.018837481281485886 0.016895167535335834" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3589788538057633,0.237284409057396) rotate(0) scale(1,1) translate(-0.022986364471475812,-0.022986364471475812)"><path d="M 0.0271352476614658 0.016895167535335834 C 0.027263017264535366 0.017156278527039222 0.028794857407424074 0.020573144535037464 0.028668482898300596 0.020028499435776472 C 0.028794857407424074 0.020573144535037464 0.028650346677001448 0.023714442834025348 0.028651741770947536 0.02343090872646774" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.028651741770947536 0.02343090872646774 C 0.028703782388557735 0.023768072964760325 0.029070199826896893 0.02748073367180967 0.02927622918226991 0.027476879585978754 C 0.029070199826896893 0.02748073367180967 0.02592131953348815 0.023143847603977058 0.026179389506471362 0.023477157756438726" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.026179389506471362 0.023477157756438726 C 0.02609994623181806 0.023224035817375206 0.025115114432983254 0.01997774683045937 0.025226070210631724 0.020439694487676505 C 0.025115114432983254 0.01997774683045937 0.024816407671694563 0.0177249601516795 0.02484792017468973 0.017933785869833116" fill="none" stroke="none" stroke-width="0"/>
<path d="M 0.02484792017468973 0.017933785869833116 C 0.024805164193187523 0.01755257975062847 0.02452545902056123 0.013272760911502602 0.024334848396663222 0.013359312439377376 C 0.02452545902056123 0.013272760911502602 0.027368614266866015 0.017189822126665706 0.0271352476614658 0.016895167535335834" fill="none" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.2541030184897981) rotate(0) scale(1,1) translate(-0.032753407916317374,-0.032753407916317374)"><path d="M 0.028595592495859894 0.03352471296233484 C 0.028670556132018438 0.03370668879429088 0.02852062885970135 0.03516249544993919 0.028595592495859894 0.03498051961798315 C 0.02852062885970135 0.03516249544993919 0.027546101589640284 0.03570842294580731 0.02769602886195737 0.03570842294580731 C 0.027546101589640284 0.03570842294580731 0.026721501591896315 0.03479854378602711 0.026796465228054858 0.03498051961798315 C 0.026721501591896315 0.03479854378602711 0.0268714288642134 0.0333427371303788 0.026796465228054858 0.03352471296233484 C 0.0268714288642134 0.0333427371303788 0.027845956134274458 0.03279680963451068 0.02769602886195737 0.03279680963451068 C 0.027845956134274458 0.03279680963451068 0.028670556132018438 0.03370668879429088 0.028595592495859894 0.03352471296233484 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g><g transform="translate(0.3373434528286705,0.2541030184897981) rotate(0) scale(1,1) translate(-0.032753407916317374,-0.032753407916317374)"><path d="M 0.037810786970677523 0.03279680963451068 C 0.0379607142429946 0.03279680963451068 0.03878531424073848 0.03370668879429088 0.038710350604579946 0.03352471296233484 C 0.03878531424073848 0.03370668879429088 0.03863538696842141 0.03516249544993919 0.038710350604579946 0.03498051961798315 C 0.03863538696842141 0.03516249544993919 0.037660859698360444 0.03570842294580731 0.037810786970677523 0.03570842294580731 C 0.037660859698360444 0.03570842294580731 0.03683625970061643 0.03479854378602711 0.036911223336774976 0.03498051961798315 C 0.03683625970061643 0.03479854378602711 0.03698618697293352 0.0333427371303788 0.036911223336774976 0.03352471296233484 C 0.03698618697293352 0.0333427371303788 0.0379607142429946 0.03279680963451068 0.037810786970677523 0.03279680963451068 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 84 KiB

View File

@@ -0,0 +1,38 @@
id: ぶっかけ
original_key: ぶっかけ
resource: スタンプ
morph_x: 2
morph_y: 5
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
- x: 0
y: 3
file: x0y3.svg
- x: 0
y: 4
file: x0y4.svg
- x: 1
y: 0
file: x1y0.svg
- x: 1
y: 1
file: x1y1.svg
- x: 1
y: 2
file: x1y2.svg
- x: 1
y: 3
file: x1y3.svg
- x: 1
y: 4
file: x1y4.svg
fields:
- name: 精液

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.429270083235357,0.12785357132169123) rotate(0) scale(1,1) translate(-0.1328199792366229,-0.11784743534370264)"><path d="M 0.13643507369698177 0.10925136934295628 C 0.13686062813017863 0.10928366336157991 0.13864606657569256 0.11139069522092918 0.13852131828417746 0.11099789640209207 C 0.13864606657569256 0.11139069522092918 0.13795639091666462 0.11446073733211501 0.13793205319516294 0.11396495516900154 C 0.13795639091666462 0.11446073733211501 0.1390470350749405 0.11760033531053145 0.13881337094219767 0.11694728235945373 C 0.1390470350749405 0.11760033531053145 0.140565257643455 0.12244747818383651 0.14073602278807706 0.1218015905819341 C 0.140565257643455 0.12244747818383651 0.1363044368282205 0.12503120475284854 0.13676418920673294 0.12469793358228269 C 0.1363044368282205 0.12503120475284854 0.1349101164778424 0.1259995488583058 0.1352189942459276 0.1258008446287244 C 0.1349101164778424 0.1259995488583058 0.13265868449470603 0.1271251055538971 0.13305765598971064 0.12708238433725955 C 0.13265868449470603 0.1271251055538971 0.12988274428375296 0.1259700924250443 0.13043133630587211 0.12631349922837504 C 0.12988274428375296 0.1259700924250443 0.1260209749628748 0.1224018438080982 0.12647455172428068 0.12296150269729085 C 0.1260209749628748 0.1224018438080982 0.1249799498490308 0.11917218476248337 0.12498841516900125 0.11959759255806324 C 0.1249799498490308 0.11917218476248337 0.1266729609778226 0.1175502504862149 0.1263729678846353 0.11785660915033239 C 0.1266729609778226 0.1175502504862149 0.12869534591310414 0.11548191793782087 0.12858833228724875 0.11592128858865339 C 0.12869534591310414 0.11548191793782087 0.12775090283639973 0.11202152790411038 0.12765713139490004 0.1125841613403421 C 0.12775090283639973 0.11202152790411038 0.13019338405948783 0.10900520459039481 0.12971358958524493 0.10916968735387261 C 0.13019338405948783 0.10900520459039481 0.13397478876179306 0.11061717501103215 0.13341466508581498 0.1106103681786085 C 0.13397478876179306 0.11061717501103215 0.13686062813017863 0.10928366336157991 0.13643507369698177 0.10925136934295628 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.429270083235357,0.12785357132169123) rotate(0) scale(1,1) translate(-0.1328199792366229,-0.11784743534370264)"><path d="M 0.13643507369698177 0.10925136934295628 C 0.13686062813017863 0.10929426979360296 0.13864606657569256 0.11156570134930963 0.13852131828417746 0.11117290253047252 C 0.13864606657569256 0.11156570134930963 0.13795639091666462 0.1144461534880833 0.13793205319516294 0.11396495516900154 C 0.13795639091666462 0.1144461534880833 0.1390470350749405 0.11762022237057468 0.13881337094219767 0.11694728235945373 C 0.1390470350749405 0.11762022237057468 0.140565257643455 0.12270521448199681 0.14073602278807706 0.12204023530245289 C 0.140565257643455 0.12270521448199681 0.1363044368282205 0.12540455116006016 0.13676418920673294 0.12492703251398074 C 0.1363044368282205 0.12540455116006016 0.1349101164778424 0.12809829659486827 0.1352189942459276 0.12777045905540613 C 0.1349101164778424 0.12809829659486827 0.13265868449470603 0.12876220833665597 0.13305765598971064 0.12886108298752624 C 0.13265868449470603 0.12876220833665597 0.12988274428375296 0.12609233155411004 0.13043133630587211 0.126583963244963 C 0.12988274428375296 0.12609233155411004 0.1260209749628748 0.12239654059208667 0.12647455172428068 0.12296150269729085 C 0.1260209749628748 0.12239654059208667 0.1249799498490308 0.11937901018693298 0.12498841516900125 0.11980441798251285 C 0.1249799498490308 0.11937901018693298 0.1266729609778226 0.11753301503417743 0.1263729678846353 0.11785660915033239 C 0.1266729609778226 0.11753301503417743 0.12869534591310414 0.11549782758585544 0.12858833228724875 0.11592128858865339 C 0.12869534591310414 0.11549782758585544 0.12775090283639973 0.11221244368052541 0.12765713139490004 0.11277507711675713 C 0.12775090283639973 0.11221244368052541 0.13019338405948783 0.10899327235436887 0.12971358958524493 0.10916968735387261 C 0.13019338405948783 0.10899327235436887 0.13397478876179306 0.11066490395513591 0.13341466508581498 0.11065809712271227 C 0.13397478876179306 0.11066490395513591 0.13686062813017863 0.10929426979360296 0.13643507369698177 0.10925136934295628 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.429270083235357,0.12785357132169123) rotate(0) scale(1,1) translate(-0.1328199792366229,-0.11784743534370264)"><path d="M 0.13643507369698177 0.10925136934295628 C 0.13686062813017863 0.10930487622562601 0.13864606657569256 0.11174070747769006 0.13852131828417746 0.11134790865885295 C 0.13864606657569256 0.11174070747769006 0.13795639091666462 0.1144315696440516 0.13793205319516294 0.11396495516900154 C 0.13795639091666462 0.1144315696440516 0.1390470350749405 0.11764010943061791 0.13881337094219767 0.11694728235945373 C 0.1390470350749405 0.11764010943061791 0.140565257643455 0.1229629507801571 0.14073602278807706 0.12227888002297167 C 0.140565257643455 0.1229629507801571 0.1363044368282205 0.12577789756727178 0.13676418920673294 0.12515613144567878 C 0.1363044368282205 0.12577789756727178 0.1349101164778424 0.13019704433143067 0.1352189942459276 0.12974007348208783 C 0.1349101164778424 0.13019704433143067 0.13265868449470603 0.13039931111941486 0.13305765598971064 0.13063978163779294 C 0.13265868449470603 0.13039931111941486 0.12988274428375296 0.12621457068317576 0.13043133630587211 0.12685442726155094 C 0.12988274428375296 0.12621457068317576 0.1260209749628748 0.12239123737607514 0.12647455172428068 0.12296150269729085 C 0.1260209749628748 0.12239123737607514 0.1249799498490308 0.1195858356113826 0.12498841516900125 0.12001124340696247 C 0.1249799498490308 0.1195858356113826 0.1266729609778226 0.11751577958213996 0.1263729678846353 0.11785660915033239 C 0.1266729609778226 0.11751577958213996 0.12869534591310414 0.11551373723389004 0.12858833228724875 0.11592128858865339 C 0.12869534591310414 0.11551373723389004 0.12775090283639973 0.11240335945694044 0.12765713139490004 0.11296599289317216 C 0.12775090283639973 0.11240335945694044 0.13019338405948783 0.10898134011834293 0.12971358958524493 0.10916968735387261 C 0.13019338405948783 0.10898134011834293 0.13397478876179306 0.11071263289923966 0.13341466508581498 0.11070582606681602 C 0.13397478876179306 0.11071263289923966 0.13686062813017863 0.10930487622562601 0.13643507369698177 0.10925136934295628 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.429270083235357,0.12785357132169123) rotate(0) scale(1,1) translate(-0.1328199792366229,-0.11784743534370264)"><path d="M 0.13643507369698177 0.10925136934295628 C 0.13686062813017863 0.10931548265764908 0.13864606657569256 0.1119157136060705 0.13852131828417746 0.11152291478723339 C 0.13864606657569256 0.1119157136060705 0.13795639091666462 0.11441698580001991 0.13793205319516294 0.11396495516900154 C 0.13795639091666462 0.11441698580001991 0.1390470350749405 0.11765999649066114 0.13881337094219767 0.11694728235945373 C 0.1390470350749405 0.11765999649066114 0.140565257643455 0.12322068707831738 0.14073602278807706 0.12251752474349045 C 0.140565257643455 0.12322068707831738 0.1363044368282205 0.1261512439744834 0.13676418920673294 0.1253852303773768 C 0.1363044368282205 0.1261512439744834 0.1349101164778424 0.13229579206799313 0.1352189942459276 0.13170968790876955 C 0.1349101164778424 0.13229579206799313 0.13265868449470603 0.13203641390217374 0.13305765598971064 0.13241848028805964 C 0.13265868449470603 0.13203641390217374 0.12988274428375296 0.12633680981224152 0.13043133630587211 0.12712489127813892 C 0.12988274428375296 0.12633680981224152 0.1260209749628748 0.12238593416006362 0.12647455172428068 0.12296150269729085 C 0.1260209749628748 0.12238593416006362 0.1249799498490308 0.11979266103583222 0.12498841516900125 0.12021806883141209 C 0.1249799498490308 0.11979266103583222 0.1266729609778226 0.1174985441301025 0.1263729678846353 0.11785660915033239 C 0.1266729609778226 0.1174985441301025 0.12869534591310414 0.11552964688192462 0.12858833228724875 0.11592128858865339 C 0.12869534591310414 0.11552964688192462 0.12775090283639973 0.11259427523335547 0.12765713139490004 0.11315690866958719 C 0.12775090283639973 0.11259427523335547 0.13019338405948783 0.10896940788231699 0.12971358958524493 0.10916968735387261 C 0.13019338405948783 0.10896940788231699 0.13397478876179306 0.11076036184334341 0.13341466508581498 0.11075355501091977 C 0.13397478876179306 0.11076036184334341 0.13686062813017863 0.10931548265764908 0.13643507369698177 0.10925136934295628 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.429270083235357,0.12785357132169123) rotate(0) scale(1,1) translate(-0.1328199792366229,-0.11784743534370264)"><path d="M 0.13643507369698177 0.10925136934295628 C 0.13686062813017863 0.10932608908967213 0.13864606657569256 0.11209071973445095 0.13852131828417746 0.11169792091561384 C 0.13864606657569256 0.11209071973445095 0.13795639091666462 0.11440240195598819 0.13793205319516294 0.11396495516900154 C 0.13795639091666462 0.11440240195598819 0.1390470350749405 0.11767988355070437 0.13881337094219767 0.11694728235945373 C 0.1390470350749405 0.11767988355070437 0.140565257643455 0.12347842337647767 0.14073602278807706 0.12275616946400925 C 0.140565257643455 0.12347842337647767 0.1363044368282205 0.126524590381695 0.13676418920673294 0.12561432930907485 C 0.1363044368282205 0.126524590381695 0.1349101164778424 0.13439453980455557 0.1352189942459276 0.13367930233545128 C 0.1349101164778424 0.13439453980455557 0.13265868449470603 0.1336735166849326 0.13305765598971064 0.1341971789383263 C 0.13265868449470603 0.1336735166849326 0.12988274428375296 0.12645904894130724 0.13043133630587211 0.12739535529472687 C 0.12988274428375296 0.12645904894130724 0.1260209749628748 0.12238063094405209 0.12647455172428068 0.12296150269729085 C 0.1260209749628748 0.12238063094405209 0.1249799498490308 0.11999948646028183 0.12498841516900125 0.1204248942558617 C 0.1249799498490308 0.11999948646028183 0.1266729609778226 0.11748130867806503 0.1263729678846353 0.11785660915033239 C 0.1266729609778226 0.11748130867806503 0.12869534591310414 0.11554555652995921 0.12858833228724875 0.11592128858865339 C 0.12869534591310414 0.11554555652995921 0.12775090283639973 0.1127851910097705 0.12765713139490004 0.11334782444600222 C 0.12775090283639973 0.1127851910097705 0.13019338405948783 0.10895747564629106 0.12971358958524493 0.10916968735387261 C 0.13019338405948783 0.10895747564629106 0.13397478876179306 0.11080809078744717 0.13341466508581498 0.11080128395502353 C 0.13397478876179306 0.11080809078744717 0.13686062813017863 0.10932608908967213 0.13643507369698177 0.10925136934295628 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.429270083235357,0.12785357132169123) rotate(0) scale(1,1) translate(-0.13278549298759423,-0.11855713024706954)"><path d="M 0.13642600595489804 0.10926570483732893 C 0.13685067523487388 0.10929793168439383 0.1386717763473067 0.1113769550901443 0.13850791115335237 0.11100859912018173 C 0.1386717763473067 0.1113769550901443 0.13852692924227086 0.11410984993109981 0.13839238828235023 0.1136859764768797 C 0.13852692924227086 0.11410984993109981 0.1403162044048612 0.11677040099909394 0.14012240267240006 0.11609508057082311 C 0.1403162044048612 0.11677040099909394 0.14043734525788293 0.1225052432538142 0.14071800907188386 0.12178982161612967 C 0.14043734525788293 0.1225052432538142 0.13632739392275714 0.12549959923921328 0.13675443690438893 0.12468014022303753 C 0.13632739392275714 0.12549959923921328 0.1352489640523636 0.13241960500862326 0.13559349329230225 0.13162332981023864 C 0.1352489640523636 0.13241960500862326 0.13219019127889695 0.13379119391051533 0.13262008602512532 0.13423544260365305 C 0.13219019127889695 0.13379119391051533 0.12992359932445982 0.1253516687018055 0.1304347563375619 0.12629234549258606 C 0.12992359932445982 0.1253516687018055 0.12602569327038088 0.12245970379757744 0.1264862018679002 0.1229473211142865 C 0.12602569327038088 0.12245970379757744 0.12490020545522536 0.12001641474471235 0.12490865316733027 0.12044093769207742 C 0.12490020545522536 0.12001641474471235 0.12651094236309807 0.1173661929649358 0.12638482932264125 0.11785304574590569 C 0.12651094236309807 0.1173661929649358 0.12652880069032577 0.11416024756056002 0.12642200965281214 0.11459870432043881 C 0.12652880069032577 0.11416024756056002 0.12794102951257974 0.1121403553295555 0.12766632177280463 0.1125915646273602 C 0.12794102951257974 0.1121403553295555 0.13019729903185012 0.1090200521074528 0.12971850253011363 0.10918419274678257 C 0.13019729903185012 0.1090200521074528 0.13397083841237453 0.11062866962961519 0.1334118797936425 0.110621876955403 C 0.13397083841237453 0.11062866962961519 0.13685067523487388 0.10929793168439383 0.13642600595489804 0.10926570483732893 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.429270083235357,0.12785357132169123) rotate(0) scale(1,1) translate(-0.13278549298759423,-0.11855713024706954)"><path d="M 0.13642600595489804 0.10926570483732893 C 0.13685067523487388 0.109307212312414 0.1386717763473067 0.11148832262638639 0.13850791115335237 0.11111996665642382 C 0.1386717763473067 0.11148832262638639 0.13852692924227086 0.11414292137539393 0.13839238828235023 0.1136859764768797 C 0.13852692924227086 0.11414292137539393 0.140294478943994 0.11734438973509635 0.14012240267240006 0.1166033054385946 C 0.140294478943994 0.11734438973509635 0.14017663972747663 0.12327219785205096 0.14045730354147756 0.12257898803490082 C 0.14017663972747663 0.12327219785205096 0.13634048784714722 0.1257944417838033 0.13675443690438893 0.12492182324439625 C 0.13634048784714722 0.1257944417838033 0.13513867219737846 0.1338984749250326 0.13548991485457706 0.13305041050778538 C 0.13513867219737846 0.1338984749250326 0.1321153846294288 0.1345651550146284 0.13253952501800575 0.13509859625136278 C 0.1321153846294288 0.1345651550146284 0.1299025930304749 0.1257626265113239 0.13040023019165353 0.12664911566697273 C 0.1299025930304749 0.1257626265113239 0.12611024766516854 0.12398573029131617 0.12656787908386213 0.12446072638357648 C 0.12611024766516854 0.12398573029131617 0.12489339902056186 0.12039852250670967 0.12490865316733027 0.1209491625598489 C 0.12489339902056186 0.12039852250670967 0.12651094236309807 0.11733046991263592 0.12638482932264125 0.11785304574590569 C 0.12651094236309807 0.11733046991263592 0.12652880069032577 0.11423979580073294 0.12642200965281214 0.11467825256061173 C 0.12652880069032577 0.11423979580073294 0.12794102951257974 0.1121337263095411 0.12766632177280463 0.1125915646273602 C 0.12794102951257974 0.1121337263095411 0.13019729903185012 0.1090200521074528 0.12971850253011363 0.10918419274678257 C 0.13019729903185012 0.1090200521074528 0.13397083841237453 0.11062866962961519 0.1334118797936425 0.110621876955403 C 0.13397083841237453 0.11062866962961519 0.13685067523487388 0.109307212312414 0.13642600595489804 0.10926570483732893 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.429270083235357,0.12785357132169123) rotate(0) scale(1,1) translate(-0.13278549298759423,-0.11855713024706954)"><path d="M 0.13642600595489804 0.10926570483732893 C 0.13685067523487388 0.10931649294043418 0.1386717763473067 0.1115996901626285 0.13850791115335237 0.11123133419266593 C 0.1386717763473067 0.1115996901626285 0.13852692924227086 0.11417599281968804 0.13839238828235023 0.1136859764768797 C 0.13852692924227086 0.11417599281968804 0.14027275348312682 0.11791837847109876 0.14012240267240006 0.11711153030636608 C 0.14027275348312682 0.11791837847109876 0.13991593419707032 0.12403915245028771 0.14019659801107126 0.12336815445367197 C 0.13991593419707032 0.12403915245028771 0.1363535817715373 0.12608928432839334 0.13675443690438893 0.12516350626575498 C 0.1363535817715373 0.12608928432839334 0.13502838034239334 0.13537734484144193 0.1353863364168519 0.13447749120533214 C 0.13502838034239334 0.13537734484144193 0.1320405779799606 0.13533911611874144 0.13245896401088617 0.1359617498990725 C 0.1320405779799606 0.13533911611874144 0.12988158673648995 0.12617358432084227 0.13036570404574513 0.12700588584135944 C 0.12988158673648995 0.12617358432084227 0.1261948020599562 0.12551175678505488 0.1266495562998241 0.12597413165286647 C 0.1261948020599562 0.12551175678505488 0.12488659258589836 0.12078063026870699 0.12490865316733027 0.12145738742762038 C 0.12488659258589836 0.12078063026870699 0.12651094236309807 0.11729474686033604 0.12638482932264125 0.11785304574590569 C 0.12651094236309807 0.11729474686033604 0.12652880069032577 0.11431934404090588 0.12642200965281214 0.11475780080078467 C 0.12652880069032577 0.11431934404090588 0.12794102951257974 0.11212709728952669 0.12766632177280463 0.1125915646273602 C 0.12794102951257974 0.11212709728952669 0.13019729903185012 0.1090200521074528 0.12971850253011363 0.10918419274678257 C 0.13019729903185012 0.1090200521074528 0.13397083841237453 0.11062866962961519 0.1334118797936425 0.110621876955403 C 0.13397083841237453 0.11062866962961519 0.13685067523487388 0.10931649294043418 0.13642600595489804 0.10926570483732893 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.429270083235357,0.12785357132169123) rotate(0) scale(1,1) translate(-0.13278549298759423,-0.11855713024706954)"><path d="M 0.13642600595489804 0.10926570483732893 C 0.13685067523487388 0.10932577356845435 0.1386717763473067 0.1117110576988706 0.13850791115335237 0.11134270172890803 C 0.1386717763473067 0.1117110576988706 0.13852692924227086 0.11420906426398215 0.13839238828235023 0.1136859764768797 C 0.13852692924227086 0.11420906426398215 0.1402510280222596 0.11849236720710117 0.14012240267240006 0.11761975517413756 C 0.1402510280222596 0.11849236720710117 0.13965522866666402 0.12480610704852445 0.13993589248066496 0.1241573208724431 C 0.13965522866666402 0.12480610704852445 0.13636667569592742 0.12638412687298334 0.13675443690438893 0.1254051892871137 C 0.13636667569592742 0.12638412687298334 0.13491808848740822 0.13685621475785129 0.13528275797912676 0.1359045719028789 C 0.13491808848740822 0.13685621475785129 0.13196577133049242 0.13611307722285448 0.13237840300376658 0.13682490354678223 C 0.13196577133049242 0.13611307722285448 0.129860580442505 0.12658454213036066 0.13033117789983673 0.12736265601574615 C 0.129860580442505 0.12658454213036066 0.12627935645474386 0.1270377832787936 0.12673123351578608 0.12748753692215645 C 0.12627935645474386 0.1270377832787936 0.12487978615123486 0.1211627380307043 0.12490865316733027 0.12196561229539186 C 0.12487978615123486 0.1211627380307043 0.12651094236309807 0.11725902380803617 0.12638482932264125 0.11785304574590569 C 0.12651094236309807 0.11725902380803617 0.12652880069032577 0.11439889228107882 0.12642200965281214 0.1148373490409576 C 0.12652880069032577 0.11439889228107882 0.12794102951257974 0.11212046826951227 0.12766632177280463 0.1125915646273602 C 0.12794102951257974 0.11212046826951227 0.13019729903185012 0.1090200521074528 0.12971850253011363 0.10918419274678257 C 0.13019729903185012 0.1090200521074528 0.13397083841237453 0.11062866962961519 0.1334118797936425 0.110621876955403 C 0.13397083841237453 0.11062866962961519 0.13685067523487388 0.10932577356845435 0.13642600595489804 0.10926570483732893 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1 1">
<g transform="translate(0.429270083235357,0.12785357132169123) rotate(0) scale(1,1) translate(-0.13278549298759423,-0.11855713024706954)"><path d="M 0.13642600595489804 0.10926570483732893 C 0.13685067523487388 0.10933505419647453 0.1386717763473067 0.1118224252351127 0.13850791115335237 0.11145406926515013 C 0.1386717763473067 0.1118224252351127 0.13852692924227086 0.11424213570827627 0.13839238828235023 0.1136859764768797 C 0.13852692924227086 0.11424213570827627 0.14022930256139243 0.11906635594310358 0.14012240267240006 0.11812798004190904 C 0.14022930256139243 0.11906635594310358 0.13939452313625772 0.1255730616467612 0.13967518695025866 0.12494648729121426 C 0.13939452313625772 0.1255730616467612 0.1363797696203175 0.1266789694175734 0.13675443690438893 0.12564687230847243 C 0.1363797696203175 0.1266789694175734 0.1348077966324231 0.13833508467426064 0.13517917954140157 0.13733165260042568 C 0.1348077966324231 0.13833508467426064 0.13189096468102424 0.13688703832696758 0.13229784199664701 0.13768805719449198 C 0.13189096468102424 0.13688703832696758 0.1298395741485201 0.12699549993987902 0.13029665175392835 0.12771942619013282 C 0.1298395741485201 0.12699549993987902 0.12636391084953155 0.1285638097725323 0.12681291073174805 0.12900094219144642 C 0.12636391084953155 0.1285638097725323 0.12487297971657137 0.12154484579270161 0.12490865316733027 0.12247383716316335 C 0.12487297971657137 0.12154484579270161 0.12651094236309807 0.11722330075573628 0.12638482932264125 0.11785304574590569 C 0.12651094236309807 0.11722330075573628 0.12652880069032577 0.11447844052125174 0.12642200965281214 0.11491689728113053 C 0.12652880069032577 0.11447844052125174 0.12794102951257974 0.11211383924949786 0.12766632177280463 0.1125915646273602 C 0.12794102951257974 0.11211383924949786 0.13019729903185012 0.1090200521074528 0.12971850253011363 0.10918419274678257 C 0.13019729903185012 0.1090200521074528 0.13397083841237453 0.11062866962961519 0.1334118797936425 0.110621876955403 C 0.13397083841237453 0.11062866962961519 0.13685067523487388 0.10933505419647453 0.13642600595489804 0.10926570483732893 Z" fill="#cccccc" stroke="none" stroke-width="0"/>
</g></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1,81 @@
id: アナル
original_key: アナル
resource: カーソル
morph_x: 1
morph_y: 5
variants:
- x: 0
y: 0
file: x0y0.svg
- x: 0
y: 1
file: x0y1.svg
- x: 0
y: 2
file: x0y2.svg
- x: 0
y: 3
file: x0y3.svg
- x: 0
y: 4
file: x0y4.svg
fields:
- name: ヘッド
- name: ユニット
joints:
- position: [
0.13378251699291144,
0.11355214938035088
]
- position: [
0.015096514070287394,
0.008994956633415117
]
- position: [
0.015096514070287394,
0.02583752236359944
]
- position: [
0.015096514070287394,
0.024174770409468336
]
- position: [
0.012973415475779428,
0.011724460486568064
]
- position: [
0.01659846530546976,
0.016050552809990976
]
- position: [
0.01659846530546976,
0.01202250245401227
]
- position: [
0.015096514070287396,
0.015096514070287394
]
- position: [
0.010730129621974588,
0.011361187233872302
]
- position: [
0.010730129621974588,
0.010079949052140581
]
- position: [
0.13378251699291144,
0.11928408161324774
]
- position: [
0.13378251699291144,
0.12654698894011573
]
- position: [
0.13378251699291144,
0.1353153973823115
]
- position: [
0.13378251699291144,
0.14434463610587728
]

Some files were not shown because too many files have changed in this diff Show More