separated projects

This commit is contained in:
barrulus 2025-08-07 06:25:43 -04:00
parent 27b616dff7
commit 9001091720
520 changed files with 0 additions and 39208 deletions

24
procedural/.gitignore vendored
View file

@ -1,24 +0,0 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

View file

@ -1,112 +0,0 @@
# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Common Development Commands
```bash
# Install dependencies
npm install
# Development server (Vite)
npm run dev
# Build for production
npm run build
# Preview production build
npm run preview
# Generate map via CLI (work in progress)
node cli.js --preset default --output map.json
node cli.js --config myconfig.json --seed myseed --output mymap.json
```
## High-Level Architecture
This project is being ported from a tightly-coupled browser application to a headless procedural generation engine with separate presentation layer.
### Project Structure
```
/procedural
├── src/
│ ├── engine/ # Headless map generation engine
│ │ ├── main.js # Orchestrator - exports generate(config) function
│ │ ├── modules/ # Generation modules (biomes, cultures, rivers, etc.)
│ │ └── utils/ # Environment-agnostic utilities
│ │
│ └── viewer/ # Web viewer application
│ ├── config-*.js # Configuration management
│ └── libs/ # Browser-specific libraries
├── cli.js # Command-line interface
├── main.js # Viewer entry point (Vite)
└── index.html # Web app HTML
```
### Core Architecture Flow
1. **Configuration**`generate(config)` → **MapData**
- Config object defines all generation parameters (see `src/viewer/config-schema.md`)
- Engine is pure JavaScript with no browser dependencies
- Returns serializable MapData object
2. **Module Pattern**
- Each module exports pure functions
- No global state manipulation
- Receives data, returns new data
- No IIFE wrappers or window dependencies
### Key Modules
- **Heightmap**: Generates terrain elevation
- **Features**: Marks geographic features (land, ocean, lakes)
- **Rivers**: Generates river systems
- **Biomes**: Assigns biomes based on climate
- **Cultures**: Places and expands cultures
- **BurgsAndStates**: Generates settlements and political entities
- **Routes**: Creates trade and travel routes
## Configuration System
Configuration drives the entire generation process. See `src/viewer/config-schema.md` for complete TypeScript interface.
Key sections:
- `graph`: Canvas dimensions and cell count
- `heightmap`: Terrain template selection
- `cultures`: Number and type of cultures
- `burgs`: States and settlements
- `debug`: Logging flags (TIME, WARN, INFO)
## Important Development Notes
1. **Ongoing Port**: Moving from DOM/SVG manipulation to pure data generation per `PORT_PLAN.md`
2. **Module Refactoring Pattern**:
```javascript
// OLD: window.Module = (function() { ... })();
// NEW: export function generateModule(data, config, utils) { ... }
```
3. **No Browser Dependencies in Engine**:
- No `window`, `document`, or DOM access
- No direct SVG/D3 manipulation
- All rendering logic stays in viewer
4. **Utility Organization**:
- Generic utilities in `src/engine/utils/`
- Specialized utilities imported as needed
- PRNG (Alea) for reproducible generation
5. **Data Flow**:
- Grid (coarse Voronoi mesh) → Pack (refined mesh)
- Sequential module execution builds up complete map
- Each module adds its data to the growing structure
## Testing Approach
Currently no formal test suite. When adding tests:
- Focus on engine modules (pure functions)
- Test with known seeds for reproducibility
- Validate output data structures

View file

@ -1,195 +0,0 @@
procedural
├── .gitignore
├── NEXT_STEPS.md
├── PORT_PLAN.md
├── TREE.md
├── cli.js
├── index.html
├── main.js
├── package-lock.json
├── package.json
├── public
│ ├── assets
│ │ ├── charges
│ │ │ ├── agnusDei.svg
│ │ │ ├── anchor.svg
│ │ │ ├── angel.svg
│ │ │ ├── annulet.svg
.
.
.
│ │ │ ├── wolfHeadErased.svg
│ │ │ ├── wolfPassant.svg
│ │ │ ├── wolfRampant.svg
│ │ │ ├── wolfStatant.svg
│ │ │ ├── wyvern.svg
│ │ │ └── wyvernWithWingsDisplayed.svg
│ │ ├── heightmaps
│ │ │ ├── africa-centric.png
│ │ │ ├── arabia.png
│ │ │ ├── atlantics.png
│ │ │ ├── britain.png
│ │ │ ├── caribbean.png
│ │ │ ├── east-asia.png
│ │ │ ├── eurasia.png
│ │ │ ├── europe-accented.png
│ │ │ ├── europe-and-central-asia.png
│ │ │ ├── europe-central.png
│ │ │ ├── europe-north.png
│ │ │ ├── europe.png
│ │ │ ├── greenland.png
│ │ │ ├── hellenica.png
│ │ │ ├── iceland.png
│ │ │ ├── import-rules.txt
│ │ │ ├── indian-ocean.png
│ │ │ ├── mediterranean-sea.png
│ │ │ ├── middle-east.png
│ │ │ ├── north-america.png
│ │ │ ├── us-centric.png
│ │ │ ├── us-mainland.png
│ │ │ ├── world-from-pacific.png
│ │ │ └── world.png
│ │ └── images
│ │ ├── Discord.png
│ │ ├── Facebook.png
│ │ ├── Pinterest.png
│ │ ├── Reddit.png
│ │ ├── Twitter.png
│ │ ├── icons
│ │ │ ├── favicon-16x16.png
│ │ │ ├── favicon-32x32.png
│ │ │ ├── icon_x512.png
│ │ │ ├── maskable_icon_x128.png
│ │ │ ├── maskable_icon_x192.png
│ │ │ ├── maskable_icon_x384.png
│ │ │ └── maskable_icon_x512.png
│ │ ├── kiwiroo.png
│ │ ├── pattern1.png
│ │ ├── pattern2.png
│ │ ├── pattern3.png
│ │ ├── pattern4.png
│ │ ├── pattern5.png
│ │ ├── pattern6.png
│ │ ├── preview.png
│ │ └── textures
│ │ ├── antique-big.jpg
│ │ ├── antique-small.jpg
│ │ ├── folded-paper-big.jpg
│ │ ├── folded-paper-small.jpg
│ │ ├── gray-paper.jpg
│ │ ├── iran-small.jpg
│ │ ├── marble-big.jpg
│ │ ├── marble-blue-big.jpg
│ │ ├── marble-blue-small.jpg
│ │ ├── marble-small.jpg
│ │ ├── mars-big.jpg
│ │ ├── mars-small.jpg
│ │ ├── mauritania-small.jpg
│ │ ├── mercury-big.jpg
│ │ ├── mercury-small.jpg
│ │ ├── ocean.jpg
│ │ ├── pergamena-small.jpg
│ │ ├── plaster.jpg
│ │ ├── soiled-paper-vertical.png
│ │ ├── soiled-paper.jpg
│ │ ├── spain-small.jpg
│ │ ├── timbercut-big.jpg
│ │ └── timbercut-small.jpg
│ └── vite.svg
├── src
│ ├── default_prompt.md
│ ├── engine
│ │ ├── main.js
│ │ ├── modules
│ │ │ ├── biomes.js
│ │ │ ├── burgs-and-states.js
│ │ │ ├── coa-generator.js
│ │ │ ├── coa-renderer.js
│ │ │ ├── cultures-generator.js
│ │ │ ├── features.js
│ │ │ ├── fonts.js
│ │ │ ├── heightmap-generator.js
│ │ │ ├── lakes.js
│ │ │ ├── markers-generator.js
│ │ │ ├── military-generator.js
│ │ │ ├── names-generator.js
│ │ │ ├── ocean-layers.js
│ │ │ ├── provinces-generator.js
│ │ │ ├── religions-generator.js
│ │ │ ├── resample.js
│ │ │ ├── river-generator.js
│ │ │ ├── routes-generator.js
│ │ │ ├── submap.js
│ │ │ ├── voronoi.js
│ │ │ └── zones-generator.js
│ │ └── utils
│ │ ├── alea.js
│ │ ├── arrayUtils.js
│ │ ├── cell.js
│ │ ├── colorUtils.js
│ │ ├── commonUtils.js
│ │ ├── debugUtils.js
│ │ ├── flatqueue.js
│ │ ├── functionUtils.js
│ │ ├── geography.js
│ │ ├── graphUtils.js
│ │ ├── index.js
│ │ ├── languageUtils.js
│ │ ├── lineclip.js
│ │ ├── nodeUtils.js
│ │ ├── numberUtils.js
│ │ ├── pathUtils.js
│ │ ├── polyfills.js
│ │ ├── polylabel.js
│ │ ├── probabilityUtils.js
│ │ ├── simplify.js
│ │ ├── stringUtils.js
│ │ └── unitUtils.js
│ ├── libs
│ │ └── delaunator.min.js
│ └── viewer
│ ├── _config_data
│ │ ├── biomes_config.md
│ │ ├── burgs-and-states_config.md
│ │ ├── coa-generator_config.md
│ │ ├── coa-renderer_config.md
│ │ ├── cultures-generator_config.md
│ │ ├── features_config.md
│ │ ├── fonts_config.md
│ │ ├── heightmap-generator_config.md
│ │ ├── lakes_config.md
│ │ ├── markers-generator_config.md
│ │ ├── military-generator.js_config.md
│ │ ├── names-generator_config.md
│ │ ├── ocean-layers_config.md
│ │ ├── provinces-generator.js_config.md
│ │ ├── religions-generator_config.md
│ │ ├── resample_config.md
│ │ ├── river-generator_config.md
│ │ ├── routes-generator_config.md
│ │ ├── submap_config.md
│ │ ├── voronoi_config.md
│ │ └── zones_config.md
│ ├── config-builder.js
│ ├── config-integration.md
│ ├── config-presets.js
│ ├── config-schema.md
│ ├── config-validator.js
│ ├── libs
│ │ ├── dropbox-sdk.min.js
│ │ ├── indexedDB.js
│ │ ├── jquery-3.1.1.min.js
│ │ ├── jquery-ui.css
│ │ ├── jquery-ui.min.js
│ │ ├── jquery.ui.touch-punch.min.js
│ │ ├── jszip.min.js
│ │ ├── loopsubdivison.min.js
│ │ ├── objexporter.min.js
│ │ ├── openwidget.min.js
│ │ ├── orbitControls.min.js
│ │ ├── rgbquant.min.js
│ │ ├── shorthands.js
│ │ ├── three.min.js
│ │ └── umami.js
│ └── main.js
└── style.css

View file

@ -1,42 +0,0 @@
// cli.js
import { generate } from './src/engine/main.js';
import { getPreset } from './src/viewer/config-presets.js';
import { validateConfig, sanitizeConfig } from './src/viewer/config-validator.js';
import fs from 'fs';
// Load config from file
function loadConfig(filepath) {
const jsonString = fs.readFileSync(filepath, 'utf8');
return JSON.parse(jsonString);
}
// Generate from CLI
async function generateFromCLI(options) {
let config;
if (options.preset) {
config = getPreset(options.preset);
} else if (options.config) {
config = loadConfig(options.config);
} else {
config = getPreset('default');
}
// Override with CLI arguments
if (options.seed) config.seed = options.seed;
if (options.width) config.graph.width = parseInt(options.width);
if (options.height) config.graph.height = parseInt(options.height);
// Validate and fix
const validation = validateConfig(config);
if (!validation.valid) {
console.warn('Config validation warnings:', validation.warnings);
config = sanitizeConfig(config);
}
// Generate
const mapData = generate(config);
// Save output
fs.writeFileSync(options.output || 'map.json', JSON.stringify(mapData));
}

View file

@ -1,218 +0,0 @@
# Call Pattern Issues in Engine Refactoring
## Overview
During the refactoring of the Fantasy Map Generator from a browser-dependent application to a headless engine, we've encountered systematic issues with how modules are called and how they access their dependencies. This document catalogues these patterns and provides a systematic approach to identifying and fixing them.
## The Problem
The original codebase used global variables and browser-specific APIs. The refactored engine uses dependency injection, but there are mismatches between:
1. **Function signatures** - What parameters functions expect
2. **Function calls** - What parameters are actually passed
3. **Data access patterns** - How modules access configuration and utilities
## Common Anti-Patterns Found
### 1. Config Nesting Mismatch
**Problem**: Modules expect config properties at the root level, but they're nested under specific sections.
**Example**:
```javascript
// ❌ Module expects:
config.culturesInput
config.culturesInSetNumber
// ✅ But config actually has:
config.cultures.culturesInput
config.cultures.culturesInSetNumber
```
**Pattern**: `config.{property}` vs `config.{section}.{property}`
### 2. Missing Config Parameter
**Problem**: Modules expect full `config` object but are passed only a subsection.
**Example**:
```javascript
// ❌ Incorrect call:
Biomes.define(pack, grid, config.biomes, Utils)
// ✅ Correct call (module needs config.debug):
Biomes.define(pack, grid, config, Utils)
```
**Pattern**: Modules need `config.debug` but receive `config.{section}`
### 3. Missing Module Dependencies
**Problem**: Function signature doesn't include `modules` parameter but code tries to access module dependencies.
**Example**:
```javascript
// ❌ Function signature:
function generate(pack, grid, config, utils) {
// Code tries to use Names module
utils.Names.getNameBases() // ❌ Names not in utils
}
// ✅ Correct signature:
function generate(pack, grid, config, utils, modules) {
const { Names } = modules;
Names.getNameBases() // ✅ Correct access
}
```
### 4. Missing Parameter Propagation
**Problem**: Functions call other functions without passing required parameters.
**Example**:
```javascript
// ❌ Missing parameters:
Lakes.defineClimateData(h)
// ✅ Should pass all required params:
Lakes.defineClimateData(pack, grid, h, config, utils)
```
### 5. Global Variable References
**Problem**: Functions reference global variables that don't exist in headless environment.
**Example**:
```javascript
// ❌ References undefined globals:
function clipPoly(points, secure = 0) {
return polygonclip(points, [0, 0, graphWidth, graphHeight], secure);
// ^^^^^^^^^^^ ^^^^^^^^^^^^ undefined
}
// ✅ Get from config:
function clipPoly(points, config, secure = 0) {
const graphWidth = config.graph.width || 1000;
const graphHeight = config.graph.height || 1000;
return polygonclip(points, [0, 0, graphWidth, graphHeight], secure);
}
```
### 6. Context-Aware Wrappers
**Problem**: Utility functions expect parameters that aren't available in calling context.
**Example**:
```javascript
// ❌ isLand expects pack but called without it:
neighbors[cellId].filter(isLand)
// ✅ Create context-aware wrapper or pass explicitly:
neighbors[cellId].filter(i => isLand(i, pack))
```
## Systematic Detection Strategy
### 1. Function Signature Analysis
For each exported function, check:
```bash
# Find function exports
grep -n "export.*function\|export const.*=" src/engine/modules/*.js
# Check what parameters they expect vs receive
```
### 2. Config Access Pattern Audit
```bash
# Find config property access
grep -rn "config\." src/engine/modules/ | grep -v "config\.debug"
# Check if properties exist in config structure
```
### 3. Module Dependency Check
```bash
# Find modules object usage
grep -rn "modules\." src/engine/modules/
# Find utils object access to modules
grep -rn "utils\.[A-Z]" src/engine/modules/
```
### 4. Global Reference Detection
```bash
# Find potential global references
grep -rn "\b[A-Z_][A-Z_]*\b" src/engine/ | grep -v "import\|export\|const\|let\|var"
```
### 5. Function Call Parameter Mismatch
```bash
# Find function calls and compare with signatures
grep -rn "\.generate\|\.define\|\.markup" src/engine/main.js
```
## Systematic Fix Pattern
Document actual config structure from `config-builder.js` into CONFIG_STRUCTURE.md.
Then take every file in `javascript_files_list.md` through these four steps.
### Step 1: Audit Function Signatures
1. List all exported functions in modules
2. Document expected parameters
3. Check all call sites
4. Identify mismatches
### Step 2: Config Structure Mapping
1. Find all `config.{property}` accesses in modules
2. Map correct paths (`config.section.property`)
3. Ensure every single module/parameter/path related to config is resolved.
### Step 3: Dependency Injection Fix
1. Ensure all functions receive required parameters
2. Add `modules` parameter where needed
3. Update all call sites to pass correct parameters
### Step 4: Global Reference Elimination
1. Find all global variable references
2. Determine correct source (config, utils, passed parameters)
3. Update function signatures if needed
For each file (log this detail into `javascript_files_list.md`):
- [ ] Every function signature matches all call sites
- [ ] All required parameters are passed
- [ ] Config properties accessed via correct path
- [ ] No global variable references
- [ ] Module dependencies properly injected
- [ ] Error handling for missing dependencies
## Example Systematic Fix
```javascript
// 1. Document current signature
function someModule(pack, config, utils) { ... }
// 2. Document all call sites
someModule(pack, config.section, utils) // ❌ Wrong config
someModule(pack, grid, config, utils) // ❌ Missing grid param
// 3. Determine correct signature
function someModule(pack, grid, config, utils, modules) { ... }
// 4. Update all call sites
someModule(pack, grid, config, utils, modules) // ✅ Correct
// 5. Update internal property access
// config.property → config.section.property
// utils.Module → modules.Module
```
This systematic approach will help identify and fix all parameter passing issues before they cause runtime errors.

View file

@ -1,113 +0,0 @@
# Config Structure Reference
Based on `src/viewer/config-builder.js`, the config object has this nested structure:
```javascript
config = {
seed: String, // Random seed for generation
graph: {
width: Number, // Canvas width (default: 1920)
height: Number, // Canvas height (default: 1080)
cellsDesired: Number // Target number of cells (default: 10000)
},
map: {
coordinatesSize: Number, // Coordinate display size (default: 1)
latitude: Number // Map latitude (default: 0)
},
heightmap: {
templateId: String // Template ID (default: "continents")
},
temperature: {
heightExponent: Number, // Height effect on temp (default: 1.8)
temperatureScale: String, // "C" or "F" (default: "C")
temperatureBase: Number // Base temperature (default: 25)
},
precipitation: {
winds: Array, // Wind patterns (default: [])
moisture: Number // Moisture level (default: 1)
},
features: {}, // No UI config
biomes: {}, // No UI config
lakes: {
lakeElevationLimit: Number, // Max lake elevation (default: 50)
heightExponent: Number // Height exponent (default: 2)
},
rivers: {
resolveDepressionsSteps: Number, // Depression resolution steps (default: 1000)
cellsCount: Number // Cell count for rivers
},
oceanLayers: {
outline: String // Ocean layer outline (default: "-1,-2,-3")
},
cultures: {
culturesInput: Number, // Number of cultures (default: 12)
culturesInSetNumber: Number, // Cultures in set (default: 15)
culturesSet: String, // Culture set name (default: "european")
sizeVariety: Number, // Size variety (default: 1)
neutralRate: Number, // Neutral expansion rate (default: 1)
emblemShape: String, // Emblem shape (default: "random")
emblemShapeGroup: String // Emblem shape group (default: "Diversiform")
},
burgs: {
statesNumber: Number, // Number of states (default: 15)
sizeVariety: Number, // Size variety (default: 1)
manorsInput: Number, // Number of manors (default: 1000)
growthRate: Number, // Burg growth rate (default: 1)
statesGrowthRate: Number // State growth rate (default: 1)
},
religions: {
religionsNumber: Number, // Number of religions (default: 5)
growthRate: Number // Religion growth rate (default: 1)
},
provinces: {
provincesRatio: Number // Provinces ratio (default: 50)
},
military: {
year: Number, // Year (default: 1400)
eraShort: String, // Short era name (default: "AD")
era: String // Full era name (default: "Anno Domini")
},
markers: {
culturesSet: String // Culture set for markers (default: "european")
},
zones: {
globalModifier: Number // Global zone modifier (default: 1)
},
debug: {
TIME: Boolean, // Time debugging (default: false)
WARN: Boolean, // Warning messages (default: true)
INFO: Boolean, // Info messages (default: false)
ERROR: Boolean // Error messages (default: true)
}
}
```
## Common Access Patterns
### ❌ Wrong (flat access):
- `config.culturesInput` → Should be `config.cultures.culturesInput`
- `config.statesNumber` → Should be `config.burgs.statesNumber`
- `config.religionsNumber` → Should be `config.religions.religionsNumber`
### ✅ Correct (nested access):
- `config.cultures.culturesInput`
- `config.burgs.statesNumber`
- `config.religions.religionsNumber`
- `config.debug.TIME`

View file

@ -1,242 +0,0 @@
# Data Mismatch Task Activity Log
This file logs all completed activities for fixing data mismatches in the Fantasy Map Generator.
## Task 1: Add Property Checks to All Modules
**Status**: Completed
**Date**: 2025-08-05
### Files Modified:
#### 1. src/engine/modules/heightmap-generator.js
**Changes made**: Added property validation checks at the start of the `generate` function
- Check for `graph` object and `graph.cells` structure
- Check for `config.heightmap.templateId`
- Check for `config.debug` section
#### 2. src/engine/modules/lakes.js
**Changes made**: Added property validation checks at the start of the `detectCloseLakes` function
- Check for `pack.cells` and `pack.features` structures
- Check for `pack.cells.c` (neighbors) and `pack.cells.f` (features)
- Check for `heights` array
#### 3. src/engine/modules/burgs-and-states.js
**Changes made**: Added property validation checks at the start of the `generate` function
- Check for `pack.cells.culture` from Cultures module
- Check for `pack.cells.s` (suitability) from Cell ranking
- Check for `pack.cultures` from Cultures module
- Check for `config.statesNumber`
#### 4. src/engine/modules/cultures-generator.js
**Changes made**: Added property validation checks at the start of the `generate` function
- Check for `pack.cells.s` (suitability) from Cell ranking
- Check for `config.culturesInput` and `config.culturesInSetNumber`
- Check for `config.debug` section
#### 5. src/engine/modules/biomes.js
**Changes made**: Added property validation checks at the start of the `define` function
- Check for `pack.cells.h` (heights) from heightmap processing
- Check for `grid.cells.temp` and `grid.cells.prec` from geography module
- Check for `pack.cells.g` (grid reference) from pack generation
- Check for `config.debug` section
#### 6. src/engine/modules/features.js
**Changes made**: Added property validation checks to two functions:
- `markupGrid` function: Check for `grid.cells.h` (heights), `grid.cells.c` (neighbors), and `config.debug`
- `markupPack` function: Check for `pack.cells.h` (heights), `pack.cells.c` (neighbors), and `grid.features`
#### 7. src/engine/modules/river-generator.js
**Changes made**: Added property validation checks at the start of the `generate` function
- Check for `pack.cells.h` (heights) from heightmap processing
- Check for `pack.cells.t` (distance field) from features module
- Check for `pack.features` from features module
- Check for `modules.Lakes` dependency
- Check for `config.debug` section
#### 8. src/engine/modules/religions-generator.js
**Changes made**: Added property validation checks at the start of the `generate` function
- Check for `pack.cells.culture` from Cultures module
- Check for `pack.cells.state` from BurgsAndStates module
- Check for `pack.cultures` from Cultures module
- Check for `config.religionsNumber`
- Check for `config.debug` section
#### 9. src/engine/modules/provinces-generator.js
**Changes made**: Added property validation checks at the start of the `generate` function
- Check for `pack.cells.state` from BurgsAndStates module
- Check for `pack.cells.burg` from BurgsAndStates module
- Check for `pack.states` from BurgsAndStates module
- Check for `pack.burgs` from BurgsAndStates module
- Check for `config.debug` section
#### 10. src/engine/modules/routes-generator.js
**Changes made**: Added property validation checks at the start of the `generate` function
- Check for `pack.cells.burg` from BurgsAndStates module
- Check for `pack.burgs` from BurgsAndStates module
- Check for `pack.cells.h` (heights) from heightmap processing
- Check for `pack.cells.t` (distance field) from features module
#### 11. src/engine/modules/military-generator.js
**Changes made**: Added property validation checks at the start of the `generate` function
- Check for `pack.cells.state` from BurgsAndStates module
- Check for `pack.states` from BurgsAndStates module
- Check for `pack.burgs` from BurgsAndStates module
- Check for `config.debug` section
### Summary:
Added property validation checks to 11 critical engine modules. Each module now validates required dependencies and configuration sections at startup, providing clear error messages when properties are missing. This implements Fix 1 from the Data_Mismatch_Tasks.md plan - adding simple property checks to fail fast with helpful error messages.
All checks follow the pattern:
```javascript
// Check required properties exist
if (!requiredProperty) {
throw new Error("ModuleName requires requiredProperty from DependencyModule");
}
```
This ensures clear dependency tracking and early error detection when modules are called with missing prerequisites.
## Task 2: Update Config Validator for Missing Fields
**Status**: Completed
**Date**: 2025-08-05
### Files Modified:
#### 1. src/viewer/config-validator.js
**Changes made**: Added simple required fields validation as specified in the task
**Functions added**:
- `validateRequiredFields(config, result)` - Validates specific required fields for modules
- `getCultureSetMax(culturesSet)` - Helper function to get maximum cultures for culture sets
**Required fields validated**:
- `cultures.culturesInSetNumber` - Validates based on culturesSet maximum
- `rivers.cellsCount` - Validates against graph.cellsDesired or defaults to 10000
**Implementation**: Added simple check for missing fields with warnings that show what the default values would be.
### Summary:
Updated the existing config validator to implement **Fix 2** from the Data_Mismatch_Tasks.md plan by adding the specific required fields validation as shown in the task example. The validator now checks for missing `cultures.culturesInSetNumber` and `rivers.cellsCount` fields and provides warnings when they are missing.
## Task 3: Update Documentation with Property Timeline
**Status**: Completed
**Date**: 2025-08-05
### Files Modified:
#### 1. docs/FMG Data Model.md
**Changes made**: Added comprehensive Property Availability Timeline section as specified in the task
**New section added**: "Property Availability Timeline"
- **Grid Properties section**: Documents when each grid property becomes available during generation
- **Pack Properties section**: Documents when each pack property becomes available during generation
- **Module Execution Flow**: Added mermaid flowchart diagram showing complete module execution sequence
**Properties documented**:
- Grid properties: `cells.h`, `cells.f`, `cells.t`, `cells.temp`, `cells.prec`
- Pack properties: `cells.h`, `cells.f`, `cells.t`, `cells.fl`, `cells.r`, `cells.biome`, `cells.s`, `cells.pop`, `cells.culture`, `cells.burg`, `cells.state`, `cells.religion`, `cells.province`
**Mermaid diagram**: Visual flowchart showing the complete generation pipeline from initial grid through all modules to final map data, with annotations showing what properties each module adds.
### Summary:
Implemented **Fix 3** from the Data_Mismatch_Tasks.md plan by adding the Property Availability Timeline section to the existing documentation. This addresses the "Pack/Grid structure differences" issue by clearly documenting when each property becomes available during the generation process.
The documentation now provides:
1. **Clear reference for developers** - Shows exactly when each property is available
2. **Module dependency tracking** - Visual flow shows which modules depend on others
3. **Pack vs Grid clarification** - Distinguishes between grid (coarse mesh) and pack (refined mesh) properties
4. **Complete generation pipeline** - Mermaid diagram shows the full execution flow from main.js
This helps developers understand data availability and prevents undefined reference errors by showing the exact timeline of when properties are added to the data structures.
## Task 4: Add Requirement Comments to All Modules
**Status**: Completed
**Date**: 2025-08-05
### Files Modified:
#### 1. src/engine/modules/heightmap-generator.js
**Changes made**: Added JSDoc-style requirement comment block at the top of the `generate` function
- **REQUIRES**: graph.cells, config.heightmap.templateId, config.debug
- **PROVIDES**: grid.cells.h (height values)
#### 2. src/engine/modules/lakes.js
**Changes made**: Added JSDoc-style requirement comment block at the top of the `detectCloseLakes` function
- **REQUIRES**: pack.cells, pack.features, pack.cells.c, pack.cells.f, heights array
- **PROVIDES**: Updated pack.features with closed property
#### 3. src/engine/modules/features.js
**Changes made**: Added JSDoc-style requirement comment blocks to both main functions
- **markupGrid REQUIRES**: grid.cells.h, grid.cells.c, config.debug
- **markupGrid PROVIDES**: grid.cells.f, grid.cells.t, grid.features
- **markupPack REQUIRES**: pack.cells.h, pack.cells.c, grid.features
- **markupPack PROVIDES**: pack.cells.f, pack.cells.t, pack.features
#### 4. src/engine/modules/biomes.js
**Changes made**: Added JSDoc-style requirement comment block at the top of the `define` function
- **REQUIRES**: pack.cells.h, grid.cells.temp, grid.cells.prec, pack.cells.g, config.debug
- **PROVIDES**: pack.cells.biome
#### 5. src/engine/modules/cultures-generator.js
**Changes made**: Added JSDoc-style requirement comment block at the top of the `generate` function
- **REQUIRES**: pack.cells.s, config.culturesInput, config.culturesInSetNumber
- **PROVIDES**: pack.cells.culture, pack.cultures
#### 6. src/engine/modules/burgs-and-states.js
**Changes made**: Added JSDoc-style requirement comment block at the top of the `generate` function
- **REQUIRES**: pack.cells.culture, pack.cells.s, pack.cultures, config.statesNumber
- **PROVIDES**: pack.burgs, pack.states, pack.cells.burg, pack.cells.state
#### 7. src/engine/modules/river-generator.js
**Changes made**: Added JSDoc-style requirement comment block at the top of the `generate` function
- **REQUIRES**: pack.cells.h, pack.cells.t, pack.features, modules.Lakes, config.debug
- **PROVIDES**: pack.cells.fl, pack.cells.r, pack.cells.conf
#### 8. src/engine/modules/religions-generator.js
**Changes made**: Added JSDoc-style requirement comment block at the top of the `generate` function
- **REQUIRES**: pack.cells.culture, pack.cells.state, pack.cultures, config.religionsNumber, config.debug
- **PROVIDES**: pack.cells.religion, pack.religions
#### 9. src/engine/modules/provinces-generator.js
**Changes made**: Added JSDoc-style requirement comment block at the top of the `generate` function
- **REQUIRES**: pack.cells.state, pack.cells.burg, pack.states, pack.burgs, config.debug
- **PROVIDES**: pack.cells.province, pack.provinces
#### 10. src/engine/modules/routes-generator.js
**Changes made**: Added JSDoc-style requirement comment block at the top of the `generate` function
- **REQUIRES**: pack.cells.burg, pack.burgs, pack.cells.h, pack.cells.t
- **PROVIDES**: pack.routes, pack.cells.routes
#### 11. src/engine/modules/military-generator.js
**Changes made**: Added JSDoc-style requirement comment block at the top of the `generate` function
- **REQUIRES**: pack.cells.state, pack.states, pack.burgs, config.debug
- **PROVIDES**: pack.states[].military
### Summary:
Implemented **Fix 4** from the Data_Mismatch_Tasks.md plan by adding requirement comments to all 11 major engine modules. Each module now has clear JSDoc-style documentation at the top of its main function showing:
1. **Self-documenting modules** - Each module clearly states what it requires and provides
2. **No runtime overhead** - Comments are compile-time only and don't affect performance
3. **Clear for developers** - Easy to understand dependencies at a glance
4. **Dependency tracking** - Shows exact relationships between modules
The comment format follows the task specification:
```javascript
/**
* Module description
*
* REQUIRES:
* - dependency1 (from source module)
* - dependency2 (from source module)
*
* PROVIDES:
* - output1 (what this module adds)
* - output2 (what this module adds)
*/
```
This addresses the "Module dependencies" issue by making all dependencies explicit and self-documenting, complementing the runtime property checks from Task 1.

View file

@ -1,177 +0,0 @@
# Simplified Plan to Fix Data Mismatches in Fantasy Map Generator
This document outlines a practical plan to address the four common data mismatches identified in the MAP_GENERATION_TRACE.md:
1. **Modules expecting properties that don't exist yet**
2. **Config sections missing expected fields**
3. **Pack/Grid structure differences**
4. **Module dependencies**
## Problem Analysis
### 1. Modules Expecting Properties That Don't Exist Yet
**Current Issue**: Modules access properties like `cells.culture` before the Cultures module has run, causing undefined references and potential crashes.
**Root Cause**: Modules don't check if required properties exist before accessing them.
### 2. Config Sections Missing Expected Fields
**Current Issue**: Modules expect certain configuration fields that may not be present, even after validation.
**Root Cause**: The existing config validator may not catch all missing fields that modules expect.
### 3. Pack/Grid Structure Differences
**Current Issue**: Pack is a refined version of grid, but modules sometimes confuse which structure they're working with.
**Root Cause**: Similar naming and structure between pack and grid, but different levels of detail and available properties.
### 4. Module Dependencies
**Current Issue**: Some modules require data from other modules (e.g., Rivers needs Lakes, Cultures needs Names) but these dependencies aren't formally tracked.
**Root Cause**: No explicit dependency management system; modules assume previous modules have run successfully.
## Fix Plan
### Fix 1: Add Simple Property Checks to Each Module
Instead of complex wrappers or validators, add simple checks at the start of each module:
**Example for burgs-and-states.js:**
```javascript
export const generate = (pack, grid, config, utils) => {
// Check required properties exist
if (!pack.cells.culture) {
throw new Error("BurgsAndStates module requires cells.culture from Cultures module");
}
if (!pack.cells.s) {
throw new Error("BurgsAndStates module requires cells.s (suitability) from Cell ranking");
}
// Continue with existing code...
}
```
**Benefits:**
- Clear error messages
- No complex infrastructure
- Easy to add to existing modules
- Fail fast with helpful information
### Fix 2: Enhance Existing Config Validator
Update the existing `src/viewer/config-validator.js` to ensure all required fields are present:
```javascript
// Add to existing validator
const requiredFields = {
'cultures.culturesInSetNumber': (config) => {
// Ensure this field exists based on culturesSet
const maxCultures = getCultureSetMax(config.cultures.culturesSet);
return maxCultures;
},
'rivers.cellsCount': (config) => {
// Ensure this matches the actual cell count
return config.graph.cellsDesired || 10000;
}
};
```
**Benefits:**
- Uses existing infrastructure
- No duplication
- Config is complete before engine runs
### Fix 3: Document Property Timeline in Existing Docs
Add a section to the existing `docs/FMG Data Model.md`:
```markdown
## Property Availability Timeline
Properties are added to grid/pack progressively:
### Grid Properties (coarse mesh ~10K cells)
- `cells.h` - Available after: heightmap module
- `cells.t` - Available after: features module
- `cells.temp` - Available after: geography module
- `cells.prec` - Available after: geography module
### Pack Properties (refined mesh)
- `cells.biome` - Available after: biomes module
- `cells.s` - Available after: cell ranking
- `cells.pop` - Available after: cell ranking
- `cells.culture` - Available after: cultures module
- `cells.state` - Available after: states module
- `cells.burg` - Available after: burgs module
- `cells.religion` - Available after: religions module
- `cells.province` - Available after: provinces module
```
+ Add mermaid flow diagram
**Benefits:**
- Uses existing documentation
- Clear reference for developers
- No new files or folders
### Fix 4: Add Module Requirements as Comments
At the top of each module, clearly document what it requires:
```javascript
// src/engine/modules/burgs-and-states.js
"use strict";
/**
* Generates burgs (settlements) and states (political entities)
*
* REQUIRES:
* - pack.cells.culture (from cultures module)
* - pack.cells.s (from cell ranking)
* - pack.cultures (from cultures module)
*
* PROVIDES:
* - pack.burgs
* - pack.states
* - pack.cells.burg
* - pack.cells.state
*/
export const generate = (pack, grid, config, utils) => {
// ... module code
}
```
**Benefits:**
- Self-documenting
- No runtime overhead
- Clear for developers
### Optional: Debug Mode for Dependency Checking
Add to `src/engine/main.js`:
```javascript
// Only if debug flag is set
if (config.debug.CHECK_DEPENDENCIES) {
// Simple property existence checks before each module
if (!pack.cells.culture && moduleNeedsCulture) {
console.error("Missing required property: cells.culture");
}
}
```
## Notes for tasks.
Please log all completed activities in docs/Data_Mismatch_Task_Activity.md.
For each task, log the files you altered witrh the changes made in that file.
## Implementation Steps
1. **Task 1**: Add property checks to all modules
2. **Task 2**: Update config validator for missing fields
3. **Task 3**: Update documentation with property timeline, including a mermaid flow diagram
4. **Task 4**: Add requirement comments to all modules

View file

@ -1,366 +0,0 @@
**FMG data model** is poorly defined, inconsistent and not documented in the codebase. This page is the first and the only attempt to document it. Once everything is documented, it can be used for building a new consistent model.
FMG exposes all its data into the global namespace. The global namespace is getting polluted and it can cause conflicts with 3rd party extensions. Meanwhile it simplifies debugging and allows users to run custom JS code in dev console to alter the tool behavior.
# Basic objects
FMG has two meta-objects storing most of the map data:
* `grid` contains map data before _repacking_
* `pack` contains map data after _repacking_
Repacking is a process of amending an initial [voronoi diagram](https://en.wikipedia.org/wiki/Voronoi_diagram), that is based on a jittered square grid of points, into a voronoi diagram optimized for the current landmass (see [my old blog post](https://azgaar.wordpress.com/2017/10/05/templates) for the details). So the `pack` object is used for most of the data, but data optimized for square grid is available only via the `grid` object.
## Voronoi data
Both `grid` and `pack` objects include data representing voronoi diagrams and their inner connections. Both initial and repacked voronoi can be build from the initial set of points, so this data is stored in memory only. It does not included into the .map file and getting calculated on map load.
### Grid object
* `grid.cellsDesired`: `number` - initial count of cells/points requested for map creation. Used to define `spacing` and place points on a jittered square grid, hence the object name. Actual number of cells is defined by the number points able to place on a square grid. Default `cellsDesired` is 10 000, maximum - 100 000, minimal - 1 000
* `grid.spacing`: `number` - spacing between points before jittering
* `grid.cellsY`: `number` - number of cells in column
* `grid.cellsX`: `number` - number of cells in row
* `grid.points`: `number[][]` - coordinates `[x, y]` based on jittered square grid. Numbers rounded to 2 decimals
* `grid.boundary`: `number[][]` - off-canvas points coordinates used to cut the diagram approximately by canvas edges. Integers
* `grid.cells`: `{}` - cells data object, including voronoi data:
* * `grid.cells.i`: `number[]` - cell indexes `Uint16Array` or `Uint32Array` (depending on cells number)
* * `grid.cells.c`: `number[][]` - indexes of cells adjacent to each cell (neighboring cells)
* * `grid.cells.v`: `number[][]` - indexes of vertices of each cell
* * `grid.cells.b`: `number[]` - indicates if cell borders map edge, 1 if `true`, 0 if `false`. Integers, not Boolean
* `grid.vertices`: `{}` - vertices data object, contains only voronoi data:
* * `grid.vertices.p`: `number[][]` - vertices coordinates `[x, y]`, integers
* * `grid.vertices.c`: `number[][]` - indexes of cells adjacent to each vertex, each vertex has 3 adjacent cells
* * `grid.vertices.v`: `number[][]` - indexes of vertices adjacent to each vertex. Most vertices have 3 neighboring vertices, bordering vertices has only 2, while the third is still added to the data as `-1`
### Pack object
* `pack.cells`: `{}` - cells data object, including voronoi data:
* * `pack.cells.i`: `number[]` - cell indexes `Uint16Array` or `Uint32Array` (depending on cells number)
* * `pack.cells.p`: `number[][]` - cells coordinates `[x, y]` after repacking. Numbers rounded to 2 decimals
* * `pack.cells.c`: `number[][]` - indexes of cells adjacent to each cell (neighboring cells)
* * `pack.cells.v`: `number[][]` - indexes of vertices of each cell
* * `pack.cells.b`: `number[]` - indicator whether the cell borders the map edge, 1 if `true`, 0 if `false`. Integers, not Boolean
* * `pack.cells.g`: `number[]` - indexes of a source cell in `grid`. `Uint16Array` or `Uint32Array`. The only way to find correct `grid` cell parent for `pack` cells
* `pack.vertices`: `{}` - vertices data object, contains only voronoi data:
* * `pack.vertices.p`: `number[][]` - vertices coordinates `[x, y]`, integers
* * `pack.vertices.c`: `number[][]` - indexes of cells adjacent to each vertex, each vertex has 3 adjacent cells
* * `pack.vertices.v`: `number[][]` - indexes of vertices adjacent to each vertex. Most vertices have 3 neighboring vertices, bordering vertices has only 2, while the third is still added to the data as `-1`
## Features data
Features represent separate locked areas like islands, lakes and oceans.
### Grid object
* `grid.features`: `object[]` - array containing objects for all enclosed entities of original graph: islands, lakes and oceans. Feature object structure:
* * `i`: `number` - feature id starting from `1`
* * `land`: `boolean` - `true` if feature is land (height >= `20`)
* * `border`: `boolean` - `true` if feature touches map border (used to separate lakes from oceans)
* * `type`: `string` - feature type, can be `ocean`, `island` or `lake
### Pack object
* `pack.features`: `object[]` - array containing objects for all enclosed entities of repacked graph: islands, lakes and oceans. Note: element 0 has no data. Stored in .map file. Feature object structure:
* * `i`: `number` - feature id starting from `1`
* * `land`: `boolean` - `true` if feature is land (height >= `20`)
* * `border`: `boolean` - `true` if feature touches map border (used to separate lakes from oceans)
* * `type`: `string` - feature type, can be `ocean`, `island` or `lake`
* * `group`: `string`: feature subtype, depends on type. Subtype for ocean is `ocean`; for land it is `continent`, `island`, `isle` or `lake_island`; for lake it is `freshwater`, `salt`, `dry`, `sinkhole` or `lava`
* * `cells`: `number` - number of cells in feature
* * `firstCell`: `number` - index of the first (top left) cell in feature
* * `vertices`: `number[]` - indexes of vertices around the feature (perimetric vertices)
** `name`: `string` - name, available for `lake` type only
## Specific cells data
World data is mainly stored in typed arrays within `cells` object in both `grid` and `pack`.
### Grid object
* `grid.cells.h`: `number[]` - cells elevation in `[0, 100]` range, where `20` is the minimal land elevation. `Uint8Array`
* `grid.cells.f`: `number[]` - indexes of feature. `Uint16Array` or `Uint32Array` (depending on cells number)
* `grid.cells.t`: `number[]` - [distance field](https://prideout.net/blog/distance_fields/) from water level. `1, 2, ...` - land cells, `-1, -2, ...` - water cells, `0` - unmarked cell. `Uint8Array`
* `grid.cells.temp`: `number[]` - cells temperature in Celsius. `Uint8Array`
* `grid.cells.prec`: `number[]` - cells precipitation in unspecified scale. `Uint8Array`
### Pack object
* `pack.cells.h`: `number[]` - cells elevation in `[0, 100]` range, where `20` is the minimal land elevation. `Uint8Array`
* `pack.cells.f`: `number[]` - indexes of feature. `Uint16Array` or `Uint32Array` (depending on cells number)
* `pack.cells.t`: `number[]` - distance field. `1, 2, ...` - land cells, `-1, -2, ...` - water cells, `0` - unmarked cell. `Uint8Array`
* `pack.cells.s`: `number[]` - cells score. Scoring is used to define best cells to place a burg. `Uint16Array`
* `pack.cells.biome`: `number[]` - cells biome index. `Uint8Array`
* `pack.cells.burg`: `number[]` - cells burg index. `Uint16Array`
* `pack.cells.culture`: `number[]` - cells culture index. `Uint16Array`
* `pack.cells.state`: `number[]` - cells state index. `Uint16Array`
* `pack.cells.province`: `number[]` - cells province index. `Uint16Array`
* `pack.cells.religion`: `number[]` - cells religion index. `Uint16Array`
* `pack.cells.area`: `number[]` - cells area in pixels. `Uint16Array`
* `pack.cells.pop`: `number[]` - cells population in population points (1 point = 1000 people by default). `Float32Array`, not rounded to not lose population of high population rate
* `pack.cells.r`: `number[]` - cells river index. `Uint16Array`
* `pack.cells.fl`: `number[]` - cells flux amount. Defines how much water flow through the cell. Use to get rivers data and score cells. `Uint16Array`
* `pack.cells.conf`: `number[]` - cells flux amount in confluences. Confluences are cells where rivers meet each other. `Uint16Array`
* `pack.cells.harbor`: `number[]` - cells harbor score. Shows how many water cells are adjacent to the cell. Used for scoring. `Uint8Array`
* `pack.cells.haven`: `number[]` - cells haven cells index. Each coastal cell has haven cells defined for correct routes building. `Uint16Array` or `Uint32Array` (depending on cells number)
* `pack.cells.routes`: `object` - cells connections via routes. E.g. `pack.cells.routes[8] = {9: 306, 10: 306}` shows that cell `8` has two route connections - with cell `9` via route `306` and with cell `10` by route `306`
* `pack.cells.q`: `object` - quadtree used for fast closest cell detection
# Secondary data
Secondary data available as a part of the `pack` object.
## Cultures
Cultures (races, language zones) data is stored as an array of objects with strict element order. Element 0 is reserved by the _wildlands_ culture. If culture is removed, the element is not getting removed, but instead a `removed` attribute is added. Object structure:
* `i`: `number` - culture id, always equal to the array index
* `base`: `number` - _nameBase_ id, name base is used for names generation
* `name`: `string` - culture name
* `origins`: `number[]` - ids of origin cultures. Used to render cultures tree to show cultures evolution. The first array member is main link, other - supporting out-of-tree links
* `shield`: `string` - shield type. Used for emblems rendering
* `center`: `number` - cell id of culture center (initial cell)
* `code`: `string` - culture name abbreviation. Used to render cultures tree
* `color`: `string` - culture color in hex (e.g. `#45ff12`) or link to hatching pattern (e.g. `url(#hatch7)`)
* `expansionism`: `number` - culture growth multiplier. Used mainly during cultures generation to spread cultures not uniformly
* `type`: `string` - culture type, see [culture types](https://github.com/Azgaar/Fantasy-Map-Generator/wiki/Culture-types)
* `area`: `number` - culture area in pixels
* `cells`: `number` - number of cells assigned to culture
* `rural`: `number` - rural (non-burg) population of cells assigned to culture. In population points
* `urban`: `number` - urban (burg) population of cells assigned to culture. In population points
* `lock`: `boolean` - `true` if culture is locked (not affected by regeneration)
* `removed`: `boolean` - `true` if culture is removed
## Burgs
Burgs (settlements) data is stored as an array of objects with strict element order. Element 0 is an empty object. If burg is removed, the element is not getting removed, but instead a `removed` attribute is added. Object structure:
* `i`: `number` - burg id, always equal to the array index
* `name`: `string` - burg name
* `cell`: `number` - burg cell id. One cell can have only one burg
* `x`: `number` - x axis coordinate, rounded to two decimals
* `y`: `number` - y axis coordinate, rounded to two decimals
* `culture`: `number` - burg culture id
* `state`: `number` - burg state id
* `feature`: `number` - burg feature id (id of a landmass)
* `population`: `number` - burg population in population points
* `type`: `string` - burg type, see [culture types](https://github.com/Azgaar/Fantasy-Map-Generator/wiki/Culture_types)
* `coa`: `object` - emblem object, data model is the same as in [Armoria](https://github.com/Azgaar/Armoria) and covered in [API documentation](https://github.com/Azgaar/armoria-api#readme). The only additional fields are optional `size`: `number`, `x`: `number` and `y`: `number` that controls the emblem position on the map (if it's not default). If emblem is loaded by user, then the value is `{ custom: true }` and cannot be displayed in Armoria
* `MFCG`: `number` - burg seed in [Medieval Fantasy City Generator](https://watabou.github.io/city-generator) (MFCG). If not provided, seed is combined from map seed and burg id
* `link`: `string` - custom link to burg in MFCG. `MFCG` seed is not used if link is provided
* `capital`: `number` - `1` if burg is a capital, `0` if not (each state has only 1 capital)
* `port`: `number` - if burg is not a port, then `0`, otherwise feature id of the water body the burg stands on
* `citadel`: `number` - `1` if burg has a castle, `0` if not. Used for MFCG
* `plaza`: `number` - `1` if burg has a marketplace, `0` if not. Used for MFCG
* `shanty`: `number` - `1` if burg has a shanty town, `0` if not. Used for MFCG
* `temple`: `number` - `1` if burg has a temple, `0` if not. Used for MFCG
* `walls`: `number` - `1` if burg has walls, `0` if not. Used for MFCG
* `lock`: `boolean` - `true` if burg is locked (not affected by regeneration)
* `removed`: `boolean` - `true` if burg is removed
## States
States (countries) data is stored as an array of objects with strict element order. Element 0 is reserved for `neutrals`. If state is removed, the element is not getting removed, but instead a `removed` attribute is added. Object structure:
* `i`: `number` - state id, always equal to the array index
* `name`: `string` - short (proper) form of the state name
* `form`: `string` - state form type. Available types are `Monarchy`, `Republic`, `Theocracy`, `Union`, and `Anarchy`
* `formName`: `string` - string form name, used to get state `fullName`
* `fullName`: `string` - full state name. Combination of the proper name and state `formName`
* `color`: `string` - state color in hex (e.g. `#45ff12`) or link to hatching pattern (e.g. `url(#hatch7)`)
* `center`: `number` - cell id of state center (initial cell)
* `pole`: `number[]` - state pole of inaccessibility (visual center) coordinates, see [the concept description](https://blog.mapbox.com/a-new-algorithm-for-finding-a-visual-center-of-a-polygon-7c77e6492fbc?gi=6bd4fcb9ecc1)
* `culture`: `number` - state culture id (equals to initial cell culture)
* `type`: `string` - state type, see [culture types](https://github.com/Azgaar/Fantasy-Map-Generator/wiki/Culture types)
* `expansionism`: `number` - state growth multiplier. Used mainly during state generation to spread states not uniformly
* `area`: `number` - state area in pixels
* `burgs`: `number` - number of burgs within the state
* `cells`: `number` - number of cells within the state
* `rural`: `number` - rural (non-burg) population of state cells. In population points
* `urban`: `number` - urban (burg) population of state cells. In population points
* `neighbors`: `number[]` - ids of neighboring (bordering by land) states
* `provinces`: `number[]` - ids of state provinces
* `diplomacy`: `string[]` - diplomatic relations status for all states. 'x' for self and neutrals. Element 0 (neutrals) `diplomacy` is used differently and contains wars story as `string[][]`
* `campaigns`: `object[]` - wars the state participated in. The was is defined as `start`: `number` (year), `end`: `number` (year), `name`: `string`
* `alert`: `number` - state war alert, see [military forces page](https://github.com/Azgaar/Fantasy-Map-Generator/wiki/Military-Forces)
* `military`: `Regiment[]` - list of state regiments, see [military forces page](https://github.com/Azgaar/Fantasy-Map-Generator/wiki/Military-Forces)
* `coa`: `object` - emblem object, data model is the same as in [Armoria](https://github.com/Azgaar/Armoria) and covered in [API documentation](https://github.com/Azgaar/armoria-api#readme). The only additional fields are optional `size`: `number`, `x`: `number` and `y`: `number` that controls the emblem position on the map (if it's not default). If emblem is loaded by user, then the value is `{ custom: true }` and cannot be displayed in Armoria
* `lock`: `boolean` - `true` if state is locked (not affected by regeneration)
* `removed`: `boolean` - `true` if state is removed
### Regiment
* `i`: `number` - regiment id, equals to the array index of regiment in the `state[x].military` array. Not unique, as unique string `regimentStateId-regimentId` is used
* `x`: `number` - regiment x coordinate
* `y`: `number` - regiment y coordinate
* `bx`: `number` - regiment base x coordinate
* `by`: `number` - regiment base y coordinate
* `angle`: `number` - regiment rotation angle degree
* `icon`: `number` - Unicode character to serve as an icon
* `cell`: `number` - original regiment cell id
* `state`: `number` - regiment state id
* `name`: `string` - regiment name
* `n`: `number` - `1` if regiment is a separate unit (like naval units), `0` is not
* `u`: `Record<unitName, number>` - regiment content object
## Provinces
Provinces data is stored as an array of objects with strict element order. Element 0 is not used. If religion is removed, the element is not getting removed, but instead a `removed` attribute is added. Object structure:
* `i`: `number` - province id, always equal to the array index
* `name`: `string` - short (proper) form of the province name
* `formName`: `string` - string form name, used to get province `fullName`
* `fullName`: `string` - full state name. Combination of the proper name and province `formName`
* `color`: `string` - province color in hex (e.g. `#45ff12`) or link to hatching pattern (e.g. `url(#hatch7)`)
* `center`: `number` - cell id of province center (initial cell)
* `pole`: `number[]` - province pole of inaccessibility (visual center) coordinates, see [the concept description](https://blog.mapbox.com/a-new-algorithm-for-finding-a-visual-center-of-a-polygon-7c77e6492fbc?gi=6bd4fcb9ecc1)
* `area`: `number` - province area in pixels
* `burg`: `number` - id of province capital burg if any
* `burgs`: `number[]` - id of burgs within the province. Optional (added when Province editor is opened)
* `cells`: `number` - number of cells within the province
* `rural`: `number` - rural (non-burg) population of province cells. In population points
* `urban`: `number` - urban (burg) population of state province. In population points
* `coa`: `object` - emblem object, data model is the same as in [Armoria](https://github.com/Azgaar/Armoria) and covered in [API documentation](https://github.com/Azgaar/armoria-api#readme). The only additional fields are optional `size`: `number`, `x`: `number` and `y`: `number` that controls the emblem position on the map (if it's not default). If emblem is loaded by user, then the value is `{ custom: true }` and cannot be displayed in Armoria
* `lock`: `boolean` - `true` if province is locked (not affected by regeneration)
* `removed`: `boolean` - `true` if province is removed
## Religions
Religions data is stored as an array of objects with strict element order. Element 0 is reserved for "No religion". If province is removed, the element is not getting removed, but instead a `removed` attribute is added. Object structure:
* `i`: `number` - religion id, always equal to the array index
* `name`: `string` - religion name
* `type`: `string` - religion type. Available types are `Folk`, `Organized`, `Heresy` and `Cult`
* `form`: `string` - religion form
* `deity`: `string` - religion supreme deity if any
* `color`: `string` - religion color in hex (e.g. `#45ff12`) or link to hatching pattern (e.g. `url(#hatch7)`)
* `code`: `string` - religion name abbreviation. Used to render religions tree
* `origins`: `number[]` - ids of ancestor religions. `[0]` if religion doesn't have an ancestor. Used to render religions tree. The first array member is main link, other - supporting out-of-tree links
* `center`: `number` - cell id of religion center (initial cell)
* `culture`: `number` - religion original culture
* `expansionism`: `number` - religion growth multiplier. Used during religion generation to define competitive size
* `expansion`: `string` - religion expansion type. Can be `culture` so that religion grow only within its culture or `global`
* `area`: `number` - religion area in pixels
* `cells`: `number` - number of cells within the religion
* `rural`: `number` - rural (non-burg) population of religion cells. In population points
* `urban`: `number` - urban (burg) population of state religion. In population points
* `lock`: `boolean` - `true` if religion is locked (not affected by regeneration)
* `removed`: `boolean` - `true` if religion is removed
## Rivers
Rivers data is stored as an unordered array of objects (so element id is _not_ the array index). Object structure:
* `i`: `number` - river id
* `name`: `string` - river name
* `type`: `string` - river type, used to get river full name only
* `source`: `number` - id of cell at river source
* `mouth`: `number` - id of cell at river mouth
* `parent`: `number` - parent river id. If river doesn't have a parent, the value is self id or `0`
* `basin`: `number` - river basin id. Basin id is a river system main stem id. If river doesn't have a parent, the value is self id
* `cells`: `number[]` - if of river points cells. Cells may not be unique. Cell value `-1` means the river flows off-canvas
* `points`: `number[][]` - river points coordinates. Auto-generated rivers don't have points stored and rely on `cells` for rendering
* `discharge`: `number` - river flux in m3/s
* `length`: `number` - river length in km
* `width`: `number` - river mouth width in km
* `sourceWidth`: `number` - additional width added to river source on rendering. Used to make lake outlets start with some width depending on flux. Can be also used to manually create channels
## Markers
Markers data is stored as an unordered array of objects (so element id is _not_ the array index). Object structure:
* `i`: `number` - marker id. `'marker' + i` is used as svg element id and marker reference in `notes` object
* `icon`: `number` - Unicode character (usually an [emoji](https://emojipedia.org/)) to serve as an icon
* `x`: `number` - marker x coordinate
* `y`: `number` - marker y coordinate
* `cell`: `number` - cell id, used to prevent multiple markers generation in the same cell
* `type`: `string` - marker type. If set, style changes will be applied to all markers of the same type. Optional
* `size`: `number` - marker size in pixels. Optional, default value is `30` (30px)
* `fill`: `string` - marker pin fill color. Optional, default is `#fff` (white)
* `stroke`: `string` - marker pin stroke color. Optional, default is `#000` (black)
* `pin`: `string`: pin element type. Optional, default is `bubble`. Pin is not rendered if value is set to `no`
* `pinned`: `boolean`: if any marker is pinned, then only markers with `pinned = true` will be rendered. Optional
* `dx`: `number` - icon x shift percent. Optional, default is `50` (50%, center)
* `dy`: `number` - icon y shift percent. Optional, default s `50` (50%, center)
* `px`: `number` - icon font-size in pixels. Optional, default is `12` (12px)
* `lock`: `boolean` - `true` if marker is locked (not affected by regeneration). Optional
## Routes
Routes data is stored as an unordered array of objects (so element id is _not_ the array index). Object structure:
* `i`: `number` - route id. Please note the element with id `0` is a fully valid route, not a placeholder
* `points`: `number[]` - array of control points in format `[x, y, cellId]`
* `feature`: `number` - feature id of the route. Auto-generated routes cannot be place on multiple features
* `group`: `string` - route group. Default groups are: 'roads', 'trails', 'searoutes'
* `length`: `number` - route length in km. Optional
* `name`: `string` - route name. Optional
* `lock`: `boolean` - `true` if route is locked (not affected by regeneration). Optional
## Zones
Zones data is stored as an array of objects with `i` not necessary equal to the element index, but order of element defines the rendering order and is important. Object structure:
* `i`: `number` - zone id. Please note the element with id `0` is a fully valid zone, not a placeholder
* `name`: `string` - zone description
* `type`: `string` - zone type
* `color`: `string` - link to hatching pattern (e.g. `url(#hatch7)`) or color in hex (e.g. `#45ff12`)
* `cells`: `number[]` - array of zone cells
* `lock`: `boolean` - `true` if zone is locked (not affected by regeneration). Optional
* `hidden`: `boolean` - `true` if zone is hidden (not displayed). Optional
# Secondary global data
Secondary data exposed to global space.
## Biomes
Biomes data object is globally available as `biomesData`. It stores a few arrays, making it different from other data. Object structure:
* `i`: `number[]` - biome id
* `name`: `string[]` - biome names
* `color`: `string[]` - biome colors in hex (e.g. `#45ff12`) or link to hatching pattern (e.g. `url(#hatch7)`)
* `biomesMartix`: `number[][]` - 2d matrix used to define cell biome by temperature and moisture. Columns contain temperature data going from > `19` °C to < `-4` °C. Rows contain data for 5 moisture bands from the drier to the wettest one. Each row is a `Uint8Array`
* `cost`: `number[]` - biome movement cost, must be `0` or positive. Extensively used during cultures, states and religions growth phase. `0` means spread to this biome costs nothing. Max value is not defined, but `5000` is the actual max used by default
* `habitability`: `number[]` - biome habitability, must be `0` or positive. `0` means the biome is uninhabitable, max value is not defined, but `100` is the actual max used by default
* `icons`: `string[][]` - non-weighed array of icons for each biome. Used for _relief icons_ rendering. Not-weighed means that random icons from array is selected, so the same icons can be mentioned multiple times
* `iconsDensity`: `number[]` - defines how packed icons can be for the biome. An integer from `0` to `150`
## Notes
Notes (legends) data is stored in unordered array of objects: `notes`. Object structure is as simple as:
* `i`: `string` - note id
* `name`: `string` - note name, visible in Legend box
* `legend`: `string` - note text in html
## Name bases
Name generator consumes training sets of real-world town names (with the exception of fantasy name bases) stored in `nameBases` array, that is available globally. Each array element represent a separate base. Base structure is:
* `i`: `number` - base id, always equal to the array index
* `name`: `string` - names base proper name
* `b`: `string` - long string containing comma-separated list of names
* `min`: `number` - recommended minimal length of generated names. Generator will adding new syllables until min length is reached
* `max`: `number` - recommended maximal length of generated names. If max length is reached, generator will stop adding new syllables
* `d`: `string` - letters that are allowed to be duplicated in generated names
* `m`: `number` - if multi-word name is generated, how many of this cases should be transformed into a single word. `0` means multi-word names are not allowed, `1` - all generated multi-word names will stay as they are
## Property Availability Timeline
Properties are added to grid/pack progressively during map generation. Understanding when each property becomes available is crucial for module dependencies and avoiding undefined references.
### Grid Properties (coarse mesh ~10K cells)
- `cells.h` - Available after: heightmap module
- `cells.f` - Available after: features markupGrid module
- `cells.t` - Available after: features markupGrid module
- `cells.temp` - Available after: geography temperature calculation
- `cells.prec` - Available after: geography precipitation generation
### Pack Properties (refined mesh)
- `cells.h` - Available after: pack generation (reGraph utility)
- `cells.f` - Available after: features markupPack module
- `cells.t` - Available after: features markupPack module
- `cells.fl` - Available after: rivers module
- `cells.r` - Available after: rivers module
- `cells.biome` - Available after: biomes module
- `cells.s` - Available after: cell ranking utility
- `cells.pop` - Available after: cell ranking utility
- `cells.culture` - Available after: cultures module
- `cells.burg` - Available after: burgs-and-states module
- `cells.state` - Available after: burgs-and-states module
- `cells.religion` - Available after: religions module
- `cells.province` - Available after: provinces module
### Module Execution Flow
```mermaid
flowchart TD
A[Generate Grid] --> B[Heightmap Module]
B --> |adds cells.h| C[Features markupGrid]
C --> |adds cells.f, cells.t| D[Geography Temperature]
D --> |adds cells.temp| E[Geography Precipitation]
E --> |adds cells.prec| F[Pack Generation - reGraph]
F --> |refines cells.h| G[Features markupPack]
G --> |adds pack cells.f, cells.t| H[Rivers Module]
H --> |adds cells.fl, cells.r| I[Biomes Module]
I --> |adds cells.biome| J[Cell Ranking]
J --> |adds cells.s, cells.pop| K[Cultures Module]
K --> |adds cells.culture, pack.cultures| L[Cultures Expand]
L --> M[BurgsAndStates Module]
M --> |adds cells.burg, cells.state, pack.burgs, pack.states| N[Routes Module]
N --> O[Religions Module]
O --> |adds cells.religion, pack.religions| P[State Forms]
P --> Q[Provinces Module]
Q --> |adds cells.province, pack.provinces| R[Burg Features]
R --> S[Rivers Specify]
S --> T[Features Specify]
T --> U[Military Module]
U --> V[Markers Module]
V --> W[Zones Module]
W --> X[Complete Map Data]
```

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -1,683 +0,0 @@
# FUCKING_HELL_PLAN_AGENT_C.md
# Complete Task Breakdown for Agent C - Remaining Files + Validation
## Agent C Responsibility: 24 Tasks
### Focus: Remaining utilities + comprehensive validation + oversight
---
## Task 49 - Agent_C
Read ./src/engine/utils/alea.js
┌──────────────────────────────────────────────────────────────┐
│ 1. Read the actual file to understand current state │
│ 2. Reference CONFIG_STRUCTURE.md for all config path │
│ validation │
│ 3. Document ALL issues found in TASK_49_ACTION.md │
│ 4. Make actual fixes (not false claims) │
│ 5. Verify changes by re-reading file │
│ 6. Test for syntax/import errors │
│ 7. NO FALSE CLAIMS - only mark as fixed after verification │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_49_ACTION.md: │
│ # TASK_49_ACTION.md │
│ ## Agent: Agent_C │
│ ## File: /Users/barrulus/Fantasy-Map-Generator/procedural/src/engine/utils/alea.js │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### Pre-Investigation Status: │
│ [Current status from javascript_files_list.md] │
│ │
│ ### Issues Actually Found: │
│ [Real issues discovered by reading file] │
│ │
│ ### Config Structure Violations: │
│ [Violations against CONFIG_STRUCTURE.md] │
│ │
│ ### Modules Parameter Issues: │
│ [Missing/incorrect modules parameters] │
│ │
│ ### Function Signature Mismatches: │
│ [Signature vs call site issues] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of every change made] │
│ │
│ ### Verification Performed: │
│ [Proof that changes were applied] │
│ │
│ ### Final Status: │
│ [COMPLETE/PARTIAL/FAILED with reasons] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 50 - Agent_C
Read ./src/engine/utils/heightmap-templates.js
┌──────────────────────────────────────────────────────────────┐
│ 1. Read the actual file to understand current state │
│ 2. Reference CONFIG_STRUCTURE.md for all config path │
│ validation │
│ 3. Document ALL issues found in TASK_50_ACTION.md │
│ 4. Make actual fixes (not false claims) │
│ 5. Verify changes by re-reading file │
│ 6. Test for syntax/import errors │
│ 7. NO FALSE CLAIMS - only mark as fixed after verification │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_50_ACTION.md: │
│ # TASK_50_ACTION.md │
│ ## Agent: Agent_C │
│ ## File: /Users/barrulus/Fantasy-Map-Generator/procedural/src/engine/utils/heightmap-templates.js │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### Pre-Investigation Status: │
│ [Current status from javascript_files_list.md] │
│ │
│ ### Issues Actually Found: │
│ [Real issues discovered by reading file] │
│ │
│ ### Config Structure Violations: │
│ [Violations against CONFIG_STRUCTURE.md] │
│ │
│ ### Modules Parameter Issues: │
│ [Missing/incorrect modules parameters] │
│ │
│ ### Function Signature Mismatches: │
│ [Signature vs call site issues] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of every change made] │
│ │
│ ### Verification Performed: │
│ [Proof that changes were applied] │
│ │
│ ### Final Status: │
│ [COMPLETE/PARTIAL/FAILED with reasons] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 51 - Agent_C
Read ./src/engine/utils/probabilityUtils.js
┌──────────────────────────────────────────────────────────────┐
│ 1. Read the actual file to understand current state │
│ 2. Reference CONFIG_STRUCTURE.md for all config path │
│ validation │
│ 3. Document ALL issues found in TASK_51_ACTION.md │
│ 4. Make actual fixes (not false claims) │
│ 5. Verify changes by re-reading file │
│ 6. Test for syntax/import errors │
│ 7. NO FALSE CLAIMS - only mark as fixed after verification │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_51_ACTION.md: │
│ # TASK_51_ACTION.md │
│ ## Agent: Agent_C │
│ ## File: /Users/barrulus/Fantasy-Map-Generator/procedural/src/engine/utils/probabilityUtils.js │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### Pre-Investigation Status: │
│ [Current status from javascript_files_list.md] │
│ │
│ ### Issues Actually Found: │
│ [Real issues discovered by reading file] │
│ │
│ ### Config Structure Violations: │
│ [Violations against CONFIG_STRUCTURE.md] │
│ │
│ ### Modules Parameter Issues: │
│ [Missing/incorrect modules parameters] │
│ │
│ ### Function Signature Mismatches: │
│ [Signature vs call site issues] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of every change made] │
│ │
│ ### Verification Performed: │
│ [Proof that changes were applied] │
│ │
│ ### Final Status: │
│ [COMPLETE/PARTIAL/FAILED with reasons] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 52 - Agent_C
Read ./src/engine/utils/languageUtils.js
┌──────────────────────────────────────────────────────────────┐
│ 1. Read the actual file to understand current state │
│ 2. Reference CONFIG_STRUCTURE.md for all config path │
│ validation │
│ 3. Document ALL issues found in TASK_52_ACTION.md │
│ 4. Make actual fixes (not false claims) │
│ 5. Verify changes by re-reading file │
│ 6. Test for syntax/import errors │
│ 7. NO FALSE CLAIMS - only mark as fixed after verification │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_52_ACTION.md: │
│ # TASK_52_ACTION.md │
│ ## Agent: Agent_C │
│ ## File: /Users/barrulus/Fantasy-Map-Generator/procedural/src/engine/utils/languageUtils.js │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### Pre-Investigation Status: │
│ [Current status from javascript_files_list.md] │
│ │
│ ### Issues Actually Found: │
│ [Real issues discovered by reading file] │
│ │
│ ### Config Structure Violations: │
│ [Violations against CONFIG_STRUCTURE.md] │
│ │
│ ### Modules Parameter Issues: │
│ [Missing/incorrect modules parameters] │
│ │
│ ### Function Signature Mismatches: │
│ [Signature vs call site issues] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of every change made] │
│ │
│ ### Verification Performed: │
│ [Proof that changes were applied] │
│ │
│ ### Final Status: │
│ [COMPLETE/PARTIAL/FAILED with reasons] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 53 - Agent_C - VALIDATION OVERSIGHT
Verify Agent_A Task Completion and Accuracy
┌──────────────────────────────────────────────────────────────┐
│ 1. Read ALL Agent_A task action logs (TASK_01 through 24) │
│ 2. Verify each claimed fix by reading the actual files │
│ 3. Document ALL discrepancies found in TASK_53_ACTION.md │
│ 4. Flag any FALSE CLAIMS made by Agent_A │
│ 5. Create summary of Agent_A's actual completion status │
│ 6. Test critical files for remaining runtime errors │
│ 7. NO FALSE CLAIMS - only mark as verified after checking │
│ │
│ CRITICAL OVERSIGHT: Agent_A handles most critical files │
│ - Verify cultures-generator.js runtime error actually fixed │
│ - Verify main.js module calls actually corrected │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_53_ACTION.md: │
│ # TASK_53_ACTION.md │
│ ## Agent: Agent_C │
│ ## Task: Agent_A Validation Oversight │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### Agent_A Files Reviewed: │
│ [List of all 24 files Agent_A was responsible for] │
│ │
│ ### Verification Results: │
│ [File-by-file validation of claimed fixes] │
│ │
│ ### False Claims Identified: │
│ [Any discrepancies between claims and actual state] │
│ │
│ ### Remaining Issues Found: │
│ [Issues that Agent_A missed or didn't actually fix] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of validation performed] │
│ │
│ ### Final Status: │
│ [AGENT_A_VERIFIED/AGENT_A_HAS_ISSUES with details] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 54 - Agent_C - VALIDATION OVERSIGHT
Verify Agent_B Task Completion and Accuracy
┌──────────────────────────────────────────────────────────────┐
│ 1. Read ALL Agent_B task action logs (TASK_25 through 48) │
│ 2. Verify each claimed fix by reading the actual files │
│ 3. Document ALL discrepancies found in TASK_54_ACTION.md │
│ 4. Flag any FALSE CLAIMS made by Agent_B │
│ 5. Create summary of Agent_B's actual completion status │
│ 6. Test utility imports for remaining errors │
│ 7. NO FALSE CLAIMS - only mark as verified after checking │
│ │
│ CRITICAL OVERSIGHT: Agent_B handles critical utilities │
│ - Verify commonUtils.js browser issues actually fixed │
│ - Verify geography.js config paths actually corrected │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_54_ACTION.md: │
│ # TASK_54_ACTION.md │
│ ## Agent: Agent_C │
│ ## Task: Agent_B Validation Oversight │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### Agent_B Files Reviewed: │
│ [List of all 24 files Agent_B was responsible for] │
│ │
│ ### Verification Results: │
│ [File-by-file validation of claimed fixes] │
│ │
│ ### False Claims Identified: │
│ [Any discrepancies between claims and actual state] │
│ │
│ ### Remaining Issues Found: │
│ [Issues that Agent_B missed or didn't actually fix] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of validation performed] │
│ │
│ ### Final Status: │
│ [AGENT_B_VERIFIED/AGENT_B_HAS_ISSUES with details] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 55 - Agent_C - CONFIG STRUCTURE AUDIT
Complete CONFIG_STRUCTURE.md Compliance Validation
┌──────────────────────────────────────────────────────────────┐
│ 1. Read CONFIG_STRUCTURE.md to understand correct structure │
│ 2. Systematically check ALL 72 files for config violations │
│ 3. Document ALL violations found in TASK_55_ACTION.md │
│ 4. Create comprehensive list of all config path issues │
│ 5. Verify ALL fixes claimed by Agent_A and Agent_B │
│ 6. Test config structure compliance end-to-end │
│ 7. NO FALSE CLAIMS - complete systematic validation │
│ │
│ CRITICAL VALIDATION: Config structure compliance │
│ - Check for config.culturesInput vs config.cultures.culturesInput │
│ - Check for config.TIME vs config.debug.TIME │
│ - Check for config.graphWidth vs config.graph.width │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_55_ACTION.md: │
│ # TASK_55_ACTION.md │
│ ## Agent: Agent_C │
│ ## Task: Complete CONFIG_STRUCTURE.md Compliance Validation │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### Config Structure Violations Found: │
│ [Complete list of all violations across all files] │
│ │
│ ### Files with Violations: │
│ [File-by-file breakdown of config issues] │
│ │
│ ### Agent Fix Claims Validation: │
│ [Verification of Agent_A and Agent_B config fix claims] │
│ │
│ ### Remaining Violations: │
│ [Config violations that still need to be fixed] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of config validation performed] │
│ │
│ ### Final Status: │
│ [CONFIG_COMPLIANT/CONFIG_HAS_VIOLATIONS with details] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 56 - Agent_C - MODULES PARAMETER AUDIT
Complete Modules Parameter Implementation Validation
┌──────────────────────────────────────────────────────────────┐
│ 1. Read ALL 72 files to check modules parameter usage │
│ 2. Find ALL functions referencing modules without parameter │
│ 3. Document ALL issues found in TASK_56_ACTION.md │
│ 4. Verify ALL modules dependency injection is correct │
│ 5. Test for "modules is not defined" runtime errors │
│ 6. Cross-reference with Agent_A and Agent_B claims │
│ 7. NO FALSE CLAIMS - complete systematic validation │
│ │
│ CRITICAL VALIDATION: Modules parameter consistency │
│ - Find functions accessing modules.Names without parameter │
│ - Find functions accessing modules.Lakes without parameter │
│ - Find missing modules in function signatures │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_56_ACTION.md: │
│ # TASK_56_ACTION.md │
│ ## Agent: Agent_C │
│ ## Task: Complete Modules Parameter Implementation Validation │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### Modules Parameter Issues Found: │
│ [Complete list of all modules parameter violations] │
│ │
│ ### Functions Missing Modules Parameter: │
│ [Function-by-function breakdown of missing parameters] │
│ │
│ ### Agent Fix Claims Validation: │
│ [Verification of Agent_A and Agent_B modules fix claims] │
│ │
│ ### Remaining Issues: │
│ [Modules parameter issues that still need to be fixed] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of modules validation performed] │
│ │
│ ### Final Status: │
│ [MODULES_COMPLIANT/MODULES_HAS_ISSUES with details] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 57 - Agent_C - RUNTIME ERROR TESTING
Complete End-to-End Runtime Error Validation
┌──────────────────────────────────────────────────────────────┐
│ 1. Test the application for ALL runtime errors │
│ 2. Check browser console for ANY remaining errors │
│ 3. Document ALL issues found in TASK_57_ACTION.md │
│ 4. Test critical code paths for function signature errors │
│ 5. Verify NO "modules is not defined" errors remain │
│ 6. Test config path access for any violations │
│ 7. NO FALSE CLAIMS - actual runtime testing required │
│ │
│ CRITICAL TESTING: End-to-end runtime validation │
│ - Test cultures-generator.js execution │
│ - Test main.js module calls │
│ - Test all utility imports │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_57_ACTION.md: │
│ # TASK_57_ACTION.md │
│ ## Agent: Agent_C │
│ ## Task: Complete End-to-End Runtime Error Validation │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### Runtime Errors Found: │
│ [Complete list of all runtime errors discovered] │
│ │
│ ### Browser Console Output: │
│ [Actual browser console output during testing] │
│ │
│ ### Critical Path Testing Results: │
│ [Results of testing critical code paths] │
│ │
│ ### Remaining Issues: │
│ [Runtime errors that still need to be fixed] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of runtime testing performed] │
│ │
│ ### Final Status: │
│ [RUNTIME_CLEAN/RUNTIME_HAS_ERRORS with details] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 58 - Agent_C - DOCUMENTATION VALIDATION
Validate javascript_files_list.md Accuracy
┌──────────────────────────────────────────────────────────────┐
│ 1. Read current javascript_files_list.md status │
│ 2. Compare claimed status with actual file state │
│ 3. Document ALL discrepancies in TASK_58_ACTION.md │
│ 4. Update javascript_files_list.md with ACTUAL status │
│ 5. Remove ALL false claims from documentation │
│ 6. Create accurate final status for each file │
│ 7. NO FALSE CLAIMS - only accurate status reporting │
│ │
│ CRITICAL DOCUMENTATION: Accurate status reporting │
│ - Remove false ✅ marks for unfixed files │
│ - Update with actual issues found and fixed │
│ - Create honest assessment of work completed │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_58_ACTION.md: │
│ # TASK_58_ACTION.md │
│ ## Agent: Agent_C │
│ ## Task: Validate javascript_files_list.md Accuracy │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### False Claims Identified: │
│ [List of inaccurate status claims in current documentation] │
│ │
│ ### Actual File Status: │
│ [File-by-file accurate status assessment] │
│ │
│ ### Documentation Updates Made: │
│ [Changes made to javascript_files_list.md] │
│ │
│ ### Final Accurate Status: │
│ [Honest assessment of actual completion state] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of documentation validation performed] │
│ │
│ ### Final Status: │
│ [DOCUMENTATION_ACCURATE/DOCUMENTATION_UPDATED] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 59 - Agent_C - FINAL COMPREHENSIVE REPORT
Generate Complete Project Status Report
┌──────────────────────────────────────────────────────────────┐
│ 1. Compile ALL findings from all agents and validation │
│ 2. Create comprehensive status report │
│ 3. Document ALL issues found in TASK_59_ACTION.md │
│ 4. List ALL remaining work needed │
│ 5. Provide honest assessment of completion level │
│ 6. Create actionable next steps │
│ 7. NO FALSE CLAIMS - complete transparency │
│ │
│ CRITICAL REPORTING: Comprehensive final assessment │
│ - Total files processed vs claimed │
│ - Total issues found and fixed vs claimed │
│ - Remaining runtime errors and their fixes │
│ │
│ Action Logging Template │
│ │
│ Every task logs to TASK_59_ACTION.md: │
│ # TASK_59_ACTION.md │
│ ## Agent: Agent_C │
│ ## Task: Generate Complete Project Status Report │
│ ## Config Reference: CONFIG_STRUCTURE.md validation │
│ │
│ ### Project Completion Summary: │
│ [High-level summary of actual work completed] │
│ │
│ ### Files Successfully Processed: │
│ [List of files that were actually fixed and verified] │
│ │
│ ### Remaining Issues: │
│ [Complete list of issues that still need resolution] │
│ │
│ ### Agent Performance Assessment: │
│ [Evaluation of Agent_A and Agent_B work quality] │
│ │
│ ### Next Steps Required: │
│ [Actionable steps to complete remaining work] │
│ │
│ ### Actions Actually Taken: │
│ [Detailed log of comprehensive assessment] │
│ │
│ ### Final Status: │
│ [PROJECT_COMPLETE/PROJECT_NEEDS_MORE_WORK with details] │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## Task 60-72 - Agent_C - PLACEHOLDER TASKS
Additional Validation and Follow-up Tasks
┌──────────────────────────────────────────────────────────────┐
│ Tasks 60-72 are reserved for additional validation work: │
│ │
│ - Task 60: Re-validate critical runtime fixes │
│ - Task 61: Cross-check Agent_A and Agent_B work │
│ - Task 62: Additional config structure validation │
│ - Task 63: Additional modules parameter validation │
│ - Task 64: Browser compatibility final check │
│ - Task 65: Import/export consistency validation │
│ - Task 66: Function signature final validation │
│ - Task 67: Create final fix summary │
│ - Task 68: Update all documentation with accurate status │
│ - Task 69: Create final testing protocol │
│ - Task 70: Validate all changes are persistent │
│ - Task 71: Create final handoff documentation │
│ - Task 72: Final comprehensive verification │
│ │
│ Each task follows the same rigorous template as above │
│ NO FALSE CLAIMS - complete verification for all tasks │
│ │
│ Success Criteria │
│ │
│ - ZERO runtime errors │
│ - ALL 72 files systematically investigated │
│ - ALL config paths comply with CONFIG_STRUCTURE.md │
│ - ALL modules parameters properly implemented │
│ - COMPLETE action logs for every file │
│ - NO FALSE CLAIMS in documentation │
└──────────────────────────────────────────────────────────────┘
---
## AGENT C SUMMARY
**Total Tasks: 24 (Tasks 49-72)**
**Focus: Remaining Files + Comprehensive Validation + Oversight**
### Priority Order:
1. **Tasks 49-52**: Remaining utility files
2. **Task 53**: Agent_A validation oversight (CRITICAL)
3. **Task 54**: Agent_B validation oversight (CRITICAL)
4. **Task 55**: CONFIG_STRUCTURE.md compliance audit (CRITICAL)
5. **Task 56**: Modules parameter implementation audit (CRITICAL)
6. **Task 57**: End-to-end runtime error testing (CRITICAL)
7. **Task 58**: Documentation accuracy validation (CRITICAL)
8. **Task 59**: Final comprehensive report (CRITICAL)
9. **Tasks 60-72**: Additional validation and follow-up tasks
### Key Objectives:
- **ZERO TOLERANCE for false claims**
- Validate ALL work done by Agent_A and Agent_B
- Ensure complete CONFIG_STRUCTURE.md compliance
- Ensure complete modules parameter implementation
- Provide comprehensive project oversight
- Create accurate final documentation
### Success Metrics:
- All 24 task action logs completed
- Complete validation of Agent_A's 24 tasks
- Complete validation of Agent_B's 24 tasks
- Zero runtime errors in final application
- Accurate documentation with no false claims
- Comprehensive final project status report
### Critical Validation Focus:
- **Agent_A Critical Files**: cultures-generator.js, main.js, burgs-and-states.js
- **Agent_B Critical Files**: commonUtils.js, geography.js, index.js
- **CONFIG_STRUCTURE.md**: Complete compliance across all files
- **Modules Parameters**: Complete implementation across all files
- **Runtime Testing**: End-to-end validation of all fixes

View file

@ -1,226 +0,0 @@
# Heightmap Generator Assessment
## Executive Summary
The heightmap generator module has undergone significant refactoring during the port from the browser-based version to the headless engine. While the core logic remains intact, several critical deviations have been introduced that impact functionality, architecture consistency, and maintainability. Most critically, the naming convention has become inconsistent and the state management pattern has been fundamentally altered.
## Key Deviations Identified
### 1. **Critical Naming Convention Violations**
**Original Pattern (../modules/heightmap-generator.js):**
- **Input parameter:** `graph` (lines 9, 24, 40, 64, 70) - represents the incoming data structure
- **Internal variable:** `grid` (line 4, 14, 21) - closure variable storing the graph after `setGraph(graph)` call
- **Usage pattern:** Functions receive `graph`, call `setGraph(graph)` to store as `grid`, then use `grid` throughout
**Current Broken Pattern (src/engine/modules/heightmap-generator.js):**
- **Inconsistent parameter naming:** Mix of `grid` and `graph` parameters
- **Line 178:** `addPit(heights, graph, ...)` - should be `grid` like other functions
- **Line 254, 255:** `findGridCell(startX, startY, graph)` - uses undefined `graph` variable
- **Line 347:** `findGridCell(startX, startY, graph)` - uses undefined `graph` variable
- **Line 444, 445:** `findGridCell(startX, startY, graph)` - uses undefined `graph` variable
**CRITICAL BUG:** These functions will fail at runtime because `graph` is undefined in their scope.
### 2. **setGraph/setGrid State Management Deviation**
**Original setGraph Pattern:**
```javascript
const setGraph = graph => {
const {cellsDesired, cells, points} = graph;
heights = cells.h ? Uint8Array.from(cells.h) : createTypedArray({maxValue: 100, length: points.length});
blobPower = getBlobPower(cellsDesired);
linePower = getLinePower(cellsDesired);
grid = graph; // Store graph as grid for internal use
};
```
**Current setGrid Pattern:**
```javascript
function setGrid(grid, utils) {
const { createTypedArray } = utils;
const { cellsDesired, cells, points } = grid;
const heights = cells.h ? Uint8Array.from(cells.h) : createTypedArray({ maxValue: 100, length: points.length });
const blobPower = getBlobPower(cellsDesired);
const linePower = getLinePower(cellsDesired);
return { heights, blobPower, linePower }; // Returns computed values instead of storing state
}
```
**Critical Differences:**
1. **State Storage:** Original stores state in closure, current returns computed values
2. **Naming:** Original uses `graph` parameter name, current uses `grid`
3. **Function Name:** `setGraph` vs `setGrid` - breaks the original naming logic
4. **Return Pattern:** Original modifies closure state, current returns data for functional approach
### 3. **Architectural Pattern Shift Analysis**
**Original Closure-Based State Management:**
- State variables (`grid`, `heights`, `blobPower`, `linePower`) live in module closure
- `setGraph(graph)` initializes state once per generation cycle
- Helper functions access closure state directly (no parameters needed)
- `clearData()` cleans up state after generation
**Current Pure Functional Approach:**
- No persistent state - everything passed as parameters
- Each function receives `(heights, grid, blobPower, config, utils, ...args)`
- `setGrid(grid, utils)` computes values and returns them (no state storage)
- Each helper function creates new arrays and returns modified results
**Impact Analysis:**
- **Positive:** True functional purity enables better testing and no side effects
- **Negative:** Massive parameter bloat (8+ parameters per function vs 0 in original)
- **Performance:** Multiple array allocations vs single state initialization
### 4. **Parameter Propagation Problems**
**Missing Parameters:**
- Line 90-92: `modify()` function call missing `power` parameter that's used in implementation
- Line 92: `modify(heights, a3, +a2, 1, utils)` - missing `power` but function expects it
**Wrong Parameter Order:**
- Functions expect `(heights, grid, ...)` but some calls pass different structures
- Type mismatches between expected `grid` object and passed `graph` references
### 5. **Return Value Handling Issues**
**Critical Deviation:**
- Original functions modified global `heights` array in place
- Current functions create new `Uint8Array(heights)` copies but don't always maintain referential consistency
- This could lead to performance issues and memory overhead
### 6. **Utility Dependencies**
**Incomplete Migration:**
- Line 51: `fromPrecreated` function is completely stubbed out
- Missing critical browser-to-headless migration for image processing
- DOM dependencies (`document.createElement`, `canvas`, `Image`) not replaced
## Specific Runtime Failures
### Bug 1: Undefined Variable References (CRITICAL)
```javascript
// Line 178 - Function parameter name
export function addPit(heights, graph, blobPower, config, utils, count, height, rangeX, rangeY) {
// Line 199 - Internal usage tries to access 'grid' (UNDEFINED)
start = findGridCell(x, y, grid); // ReferenceError: grid is not defined
```
### Bug 2: Parameter/Variable Mismatch Pattern
**Broken Functions:**
- `addPit` (line 178): parameter `graph`, usage `grid` (line 199, 209)
- `addRange` (line 221): parameter `grid`, but calls `findGridCell(x, y, graph)` (lines 254-255)
- `addTrough` (line 320): parameter `grid`, but calls `findGridCell(x, y, graph)` (lines 347, 359)
- `addStrait` (line 425): parameter `grid`, but calls `findGridCell(x, y, graph)` (lines 444-445)
### Bug 3: Missing Parameter in Function Calls
```javascript
// Line 90 - Call site
if (tool === "Add") return modify(heights, a3, +a2, 1, utils);
// Line 490 - Function signature expects 6 parameters, gets 5
export function modify(heights, range, add, mult, power, utils) {
// ^^^^^ undefined
```
### Bug 4: Inconsistent Array Handling
```javascript
// Every helper function does:
heights = new Uint8Array(heights); // Unnecessary copying if already Uint8Array
// Original pattern: direct mutation of closure variable
```
## Performance Impact Assessment
1. **Memory Overhead:** Each helper function creates new Uint8Array copies
2. **Parameter Bloat:** Functions now take 6-8 parameters instead of accessing closure variables
3. **Reduced Efficiency:** Multiple array allocations per generation step
## Recommendations
### Critical Fixes (Must Fix Immediately)
#### 1. **Restore Original Naming Convention**
**All functions must use the original pattern:**
- **Parameter name:** `graph` (not `grid`)
- **Internal usage:** `grid` (converted from `graph` parameter)
- **Function name:** `setGraph` (not `setGrid`)
```javascript
// CORRECT pattern matching original:
export function addPit(heights, graph, blobPower, config, utils, count, height, rangeX, rangeY) {
const grid = graph; // Convert parameter to internal variable name
// ... use grid throughout function body
}
```
#### 2. **Fix Parameter/Variable Mismatches**
**Every function with graph/grid issues:**
- Line 178: `addPit` - change parameter from `graph` to `grid` OR add `const grid = graph;`
- Lines 254-255, 347, 359, 444-445: Change `graph` to `grid` in `findGridCell` calls
- Line 92: Add missing `power` parameter to `modify()` call
#### 3. **Standardize Function Signatures**
**All helper functions should follow this pattern:**
```javascript
export function addHill(heights, graph, blobPower, config, utils, ...specificArgs) {
const grid = graph; // Mirror original internal conversion
// ... implementation using grid
}
```
### Architecture Decision Points
#### Option A: Pure Functional (Current Broken Approach)
**Pros:** No side effects, better testability
**Cons:** 8+ parameters per function, performance overhead, complexity
**Fix Required:** Complete parameter standardization
#### Option B: Hybrid Closure Pattern (Recommended)
**Restore original naming but keep functional returns:**
```javascript
function setGraph(graph, utils) { // Restore original name
const grid = graph; // Original internal conversion
const { cellsDesired, cells, points } = grid;
// ... compute values
return { heights, blobPower, linePower, grid }; // Include grid in return
}
```
#### Option C: Context Object Pattern
**Bundle related parameters:**
```javascript
export function addHill(context, count, height, rangeX, rangeY) {
const { heights, graph, blobPower, config, utils } = context;
const grid = graph; // Maintain original pattern
// ... implementation
}
```
## Conclusion
The heightmap generator refactoring represents an **incomplete and broken migration** from the original closure-based pattern. While the functional approach has merit, the implementation violates the original naming convention and introduces multiple runtime failures. The core issue is that the refactoring was performed without understanding the original `graph``grid` naming logic.
**Root Cause:** The original code used `graph` as the input parameter name and `grid` as the internal variable name after calling `setGraph(graph)`. The current version inconsistently mixes these names, creating undefined variable references.
**Severity:** HIGH - Multiple functions will fail at runtime due to undefined variable access.
## Priority Actions (In Order)
### Immediate (Blocking)
1. **Fix undefined variable references** - All `findGridCell(x, y, graph)` calls where `graph` is undefined
2. **Standardize parameter names** - Either all `graph` or all `grid`, but consistently applied
3. **Restore setGraph naming** - Change `setGrid` back to `setGraph` to match original pattern
4. **Fix missing parameters** - Add `power` parameter to `modify()` function calls
### Short Term
1. **Choose architectural pattern** - Pure functional vs hybrid vs context object
2. **Optimize array handling** - Eliminate unnecessary Uint8Array copying
3. **Complete parameter standardization** - Ensure all functions follow chosen pattern
### Long Term
1. **Complete fromPrecreated migration** - Implement headless image processing
2. **Performance benchmarking** - Compare against original implementation
3. **Add comprehensive testing** - Prevent regression of these naming issues
**Recommendation:** Restore the original `graph` parameter → `grid` internal variable pattern throughout the entire module to maintain consistency with the original design intent.

View file

@ -1,460 +0,0 @@
# Exhaustive Step-by-Step Trace of Fantasy Map Generator Execution Flow
## Starting Point: "Generate Map" Button Click
**File**: `/home/user/Fantasy-Map-Generator/procedural/index.html`
- **Line 262**: `<button id="newMapButton" class="primary">🗺️ Generate Map</button>`
- **Line 263**: `<button id="generateButton" class="primary">Generate (Alt)</button>`
## Phase 1: Event Handler Registration and Initialization
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/viewer/main.js`
### Step 1: DOM Content Loaded
- **Line 210**: `window.addEventListener('DOMContentLoaded', () => { ... })`
- **Data Created**: DOM content loaded event listener
- **Function Called**: Anonymous function for initialization
### Step 2: Button Event Handler Registration
- **Lines 222-225**: Button event handler registration
```javascript
const generateBtn = byId("newMapButton") || byId("generateButton");
if (generateBtn) {
generateBtn.addEventListener("click", handleGenerateClick);
}
```
- **Data Created**: Event listener for click event
- **Function Called**: `handleGenerateClick` when clicked
## Phase 2: Configuration Building and Validation
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/viewer/main.js`
### Step 3: Generate Click Handler Starts
- **Line 32**: `async function handleGenerateClick()` starts execution
- **Function Called**: `handleGenerateClick()`
### Step 4: Build Configuration from UI
- **Line 36**: `const config = buildConfigFromUI();`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/viewer/config-builder.js`
- **Function Called**: `buildConfigFromUI()` (Line 8)
- **Data Created**: Complete configuration object with sections:
### Step 5: Configuration Object Structure Created
- **Lines 9-31** in config-builder.js: Configuration object structure created
```javascript
const config = {
seed: getSeed(), // Line 61: Gets seed from UI or generates new one
graph: buildGraphConfig(), // Line 67: { width, height, cellsDesired }
map: buildMapConfig(), // Line 79: { coordinatesSize, latitude }
heightmap: buildHeightmapConfig(), // Line 86: { templateId }
temperature: buildTemperatureConfig(), // Line 93: { heightExponent, temperatureScale, temperatureBase }
precipitation: buildPrecipitationConfig(), // Line 101: { winds, moisture }
features: {},
biomes: {},
lakes: buildLakesConfig(), // Line 110: { lakeElevationLimit, heightExponent }
rivers: buildRiversConfig(), // Line 119: { resolveDepressionsSteps, cellsCount }
oceanLayers: buildOceanLayersConfig(), // Line 129: { outline }
cultures: buildCulturesConfig(), // Line 137: { culturesInput, culturesSet, emblemShape, etc. }
burgs: buildBurgsConfig(), // Line 162: { statesNumber, manorsInput, growthRate, etc. }
religions: buildReligionsConfig(), // Line 178: { religionsNumber, growthRate }
provinces: buildProvincesConfig(), // Line 185: { provincesRatio }
military: buildMilitaryConfig(), // Line 192: { year, eraShort, era }
markers: buildMarkersConfig(), // Line 196: { culturesSet }
zones: buildZonesConfig(), // Line 202: { globalModifier }
debug: buildDebugConfig() // Line 208: { TIME, WARN, INFO, ERROR }
};
```
### Step 6: Configuration Validation
- **Line 39** in main.js: `const { fixed, originalValidation, fixedValidation, wasFixed } = validateAndFix(config);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/viewer/config-validator.js`
- **Function Called**: `validateAndFix(config)`
- **Data Created**: Validation results and fixed configuration
### Step 7: Validation Logging
- **Lines 42-60** in main.js: Validation logging and error handling
- **Objects Received**: `originalValidation`, `fixedValidation`, `wasFixed` boolean
- **Expected**: Validation objects with `errors`, `warnings`, `valid` properties
### Step 8: Save Configuration to LocalStorage
- **Line 64**: `localStorage.setItem('fmg-last-config', saveConfigToJSON(fixed));`
- **Function Called**: `saveConfigToJSON(fixed)` from config-builder.js
- **Data Created**: JSON string representation of configuration stored in localStorage
## Phase 3: Engine Generation Call
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/viewer/main.js`
### Step 9: Call Engine Generate Function
- **Line 70**: `const mapData = await generateMapEngine(fixed);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
- **Function Called**: `generate(config)` (imported as `generateMapEngine`, Line 33)
- **Data Passed**: Validated and fixed configuration object
## Phase 4: Engine Initialization
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 10: Start Performance Timer
- **Line 34**: `const timeStart = performance.now();`
- **Data Created**: Timestamp for performance measurement
### Step 11: Extract Debug Flags
- **Line 37**: `const { TIME, WARN, INFO } = config.debug;`
- **Data Extracted**: Debug flags from configuration
### Step 12: Seed Initialization
- **Line 40**: `const seed = config.seed || Utils.generateSeed();`
- **Function Called**: `Utils.generateSeed()` if no seed provided
- **Data Created**: Final seed value for generation
### Step 13: Initialize Seeded Random Number Generator
- **Line 41**: `Math.random = Utils.aleaPRNG(seed);`
- **Function Called**: `Utils.aleaPRNG(seed)` from `/home/user/Fantasy-Map-Generator/procedural/src/engine/utils/alea.js`
- **Data Modified**: Global Math.random function replaced with seeded PRNG
### Step 14: Console Group Start
- **Line 44**: `INFO && console.group("Generating Map with Seed: " + seed);`
- **Action**: Console group started if INFO debug flag is true
## Phase 5: Grid Generation
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 15: Generate Initial Grid
- **Line 48**: `let grid = Graph.generateGrid(config.graph);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/utils/graph.js`
- **Function Called**: `generateGrid(config)` (Line 13)
- **Data Passed**: `config.graph` object containing `{ width, height, cellsDesired }`
- **Data Created**: Initial grid object
### Step 16: Grid Generation Process
- **Lines 15-17** in graph.js: Grid generation process
```javascript
const { spacing, cellsDesired, boundary, points, cellsX, cellsY } = placePoints(config);
const { cells, vertices } = calculateVoronoi(points, boundary);
return { spacing, cellsDesired, boundary, points, cellsX, cellsY, cells, vertices };
```
- **Functions Called**: `placePoints(config)` (Line 21), `calculateVoronoi(points, boundary)` (Line 34)
- **Data Created**: Voronoi diagram with cells and vertices
### Step 17: Point Placement
- **Lines 21-31** in graph.js: Point placement
- **Function Called**: `getBoundaryPoints()`, `getJitteredGrid()`
- **Data Created**: Array of points for Voronoi calculation
- **Objects Created**: `{ spacing, cellsDesired, boundary, points, cellsX, cellsY }`
### Step 18: Voronoi Calculation
- **Lines 34-50** in graph.js: Voronoi calculation
- **External Library**: Delaunator for Delaunay triangulation
- **Function Called**: `new Voronoi(delaunay, allPoints, points.length)`
- **Data Created**: `cells` and `vertices` objects with neighbor relationships
## Phase 6: Heightmap Generation
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 19: Generate Heightmap
- **Line 51**: `grid.cells.h = await Heightmap.generate(grid, config, Utils);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/heightmap-generator.js`
- **Function Called**: `generate(graph, config, utils)` (Line 3)
- **Data Passed**: `grid` object, `config` object, `Utils` module
- **Data Created**: Height values array assigned to `grid.cells.h`
### Step 20: Heightmap Processing
- **Lines 3-18** in heightmap-generator.js: Heightmap generation
- **Data Extracted**: `templateId` from `config.heightmap`
- **Function Called**: `fromTemplate(graph, templateId, config, utils)` (Line 32)
- **Data Created**: Heights array for all grid cells
### Step 21: Template Processing
- **Lines 32-48** in heightmap-generator.js: Template processing
- **Data Accessed**: `heightmapTemplates[id].template` string
- **Function Called**: `setGraph(graph, utils)`, `addStep()` for each template step
- **Data Created**: Final heights array with template-based terrain
## Phase 7: Features Markup
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 22: Markup Grid Features
- **Line 52**: `grid = Features.markupGrid(grid, config, Utils);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/features.js`
- **Function Called**: `markupGrid(grid, config, utils)` (Line 28)
- **Data Passed**: Grid with heights, config, utils
- **Data Modified**: Grid object enhanced with feature information
### Step 23: Grid Markup Process
- **Lines 28-50** in features.js: Grid markup process
- **Data Created**: `distanceField` (Int8Array), `featureIds` (Uint16Array), `features` array
- **Algorithm**: Flood-fill to identify connected land/water regions
- **Data Added to Grid**: Distance fields and feature classifications
## Phase 8: Geography and Climate
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 24: Define Map Size
- **Line 55**: `const { mapCoordinates } = Geography.defineMapSize(grid, config, Utils);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/utils/geography.js`
- **Function Called**: `defineMapSize(grid, config, Utils)`
- **Data Created**: `mapCoordinates` object with geographic bounds
### Step 25: Add Lakes in Deep Depressions
- **Line 56**: `grid = Geography.addLakesInDeepDepressions(grid, config.lakes, Utils);`
- **Function Called**: `addLakesInDeepDepressions(grid, config.lakes, Utils)`
- **Data Modified**: Grid enhanced with lake information
### Step 26: Open Near-Sea Lakes
- **Line 57**: `grid = Geography.openNearSeaLakes(grid, config.lakes, Utils);`
- **Function Called**: `openNearSeaLakes(grid, config.lakes, Utils)`
- **Data Modified**: Lake connectivity to ocean processed
### Step 27: Calculate Temperatures
- **Line 60**: `const { temp } = Geography.calculateTemperatures(grid, mapCoordinates, config.temperature, Utils);`
- **Function Called**: `calculateTemperatures()`
- **Data Created**: Temperature array for all cells
- **Line 61**: `grid.cells.temp = temp;` - Temperature data assigned to grid
### Step 28: Generate Precipitation
- **Line 62**: `const { prec } = Geography.generatePrecipitation(grid, mapCoordinates, config.precipitation, Utils);`
- **Function Called**: `generatePrecipitation()`
- **Data Created**: Precipitation array for all cells
- **Line 63**: `grid.cells.prec = prec;` - Precipitation data assigned to grid
## Phase 9: Pack Generation (Refined Mesh)
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 29: Generate Refined Mesh (Pack)
- **Line 66**: `let pack = Graph.reGraph(grid, Utils);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/utils/graph.js`
- **Function Called**: `reGraph(grid, Utils)`
- **Data Created**: Refined mesh (`pack`) with higher resolution than grid
- **Purpose**: Creates detailed mesh for final map features
### Step 30: Markup Pack Features
- **Line 67**: `pack = Features.markupPack(pack, grid, config, Utils, { Lakes });`
- **Function Called**: `Features.markupPack()`
- **Data Passed**: Pack mesh, original grid, config, utils, Lakes module
- **Data Modified**: Pack enhanced with feature information
## Phase 10: River Generation
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 31: Generate Rivers
- **Line 70**: `const riverResult = Rivers.generate(pack, grid, config.rivers, Utils, { Lakes, Names });`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/river-generator.js`
- **Function Called**: `generate(pack, grid, config.rivers, Utils, { Lakes, Names })`
- **Data Passed**: Pack mesh, grid, river config, utilities, Lakes and Names modules
- **Data Created**: River system data
### Step 32: Update Pack with Rivers
- **Line 71**: `pack = riverResult.pack;`
- **Data Modified**: Pack object updated with river information
## Phase 11: Biome Assignment
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 33: Define Biomes
- **Line 74**: `const { biome } = Biomes.define(pack, grid, config.biomes, Utils);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/biomes.js`
- **Function Called**: `define(pack, grid, config.biomes, Utils)`
- **Data Created**: Biome classifications for each cell
### Step 34: Assign Biomes to Pack
- **Line 75**: `pack.cells.biome = biome;`
- **Data Modified**: Biome data assigned to pack cells
## Phase 12: Cell Ranking and Population
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 35: Rank Cells
- **Line 78**: `const { s, pop } = Cell.rankCells(pack, Utils, { biomesData: Biomes.getDefault() });`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/utils/cell.js`
- **Function Called**: `rankCells(pack, Utils, { biomesData })`
- **Data Passed**: Pack, utilities, default biomes data
- **Data Created**: Cell suitability rankings (`s`) and population values (`pop`)
### Step 36: Assign Cell Rankings
- **Lines 79-80**: Cell data assignment
```javascript
pack.cells.s = s;
pack.cells.pop = pop;
```
## Phase 13: Culture Generation
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 37: Generate Cultures
- **Line 83**: `const culturesResult = Cultures.generate(pack, grid, config.cultures, Utils, { Names });`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/cultures-generator.js`
- **Function Called**: `generate(pack, grid, config.cultures, Utils, { Names })`
- **Data Created**: Cultures data and culture assignments
### Step 38: Integrate Culture Data
- **Lines 84-85**: Culture data integration
```javascript
let packWithCultures = { ...pack, cultures: culturesResult.cultures };
packWithCultures.cells.culture = culturesResult.culture;
```
### Step 39: Expand Cultures
- **Line 87**: `const expandedCulturesData = Cultures.expand(packWithCultures, config.cultures, Utils, { biomesData: Biomes.getDefault() });`
- **Function Called**: `Cultures.expand()`
- **Data Created**: Expanded culture territories
### Step 40: Update Pack with Expanded Cultures
- **Line 88**: `pack = { ...packWithCultures, ...expandedCulturesData };`
- **Data Modified**: Pack updated with expanded culture data
## Phase 14: Burgs and States Generation
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 41: Generate Burgs and States
- **Line 90**: `const burgsAndStatesResult = BurgsAndStates.generate(pack, grid, config.burgs, Utils);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/burgs-and-states.js`
- **Function Called**: `generate(pack, grid, config.burgs, Utils)`
- **Data Created**: Settlements (burgs) and political entities (states)
### Step 42: Integrate Burgs and States Data
- **Lines 91-97**: Burgs and states data integration
```javascript
pack = {
...pack,
burgs: burgsAndStatesResult.burgs,
states: burgsAndStatesResult.states
};
pack.cells.burg = burgsAndStatesResult.burg;
pack.cells.state = burgsAndStatesResult.state;
```
## Phase 15: Additional Features Generation
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 43: Generate Routes
- **Line 99**: `const routesResult = Routes.generate(pack, grid, Utils, []);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/routes-generator.js`
- **Function Called**: `generate(pack, grid, Utils, [])`
- **Data Created**: Trade and travel routes
### Step 44: Generate Religions
- **Line 102**: `const religionsResult = Religions.generate(pack, grid, config.religions, Utils);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/religions-generator.js`
- **Function Called**: `generate(pack, grid, config.religions, Utils)`
- **Data Created**: Religious systems and distributions
### Step 45: Define State Forms
- **Line 105**: `const stateFormsResult = BurgsAndStates.defineStateForms(undefined, pack, Utils);`
- **Function Called**: `BurgsAndStates.defineStateForms()`
- **Data Created**: Government forms for states
### Step 46: Generate Provinces
- **Line 108**: `const provincesResult = Provinces.generate(pack, config.provinces, Utils);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/provinces-generator.js`
- **Function Called**: `generate(pack, config.provinces, Utils)`
- **Data Created**: Provincial subdivisions
### Step 47: Define Burg Features
- **Line 111**: `const burgFeaturesResult = BurgsAndStates.defineBurgFeatures(undefined, pack, Utils);`
- **Function Called**: `BurgsAndStates.defineBurgFeatures()`
- **Data Created**: Detailed settlement features
### Step 48: Specify Rivers
- **Line 114**: `const specifiedRiversResult = Rivers.specify(pack, { Names }, Utils);`
- **Function Called**: `Rivers.specify()`
- **Data Created**: Named and detailed river information
### Step 49: Specify Features
- **Line 117**: `const specifiedFeaturesResult = Features.specify(pack, grid, { Lakes });`
- **Function Called**: `Features.specify()`
- **Data Created**: Detailed geographic feature information
### Step 50: Initialize Notes Array
- **Line 121**: `const notes = [];`
- **Data Created**: Notes array for modules requiring annotation
### Step 51: Generate Military
- **Line 123**: `const militaryResult = Military.generate(pack, config.military, Utils, notes);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/military-generator.js`
- **Function Called**: `generate(pack, config.military, Utils, notes)`
- **Data Created**: Military units and fortifications
### Step 52: Generate Markers
- **Line 126**: `const markersResult = Markers.generateMarkers(pack, config.markers, Utils);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/markers-generator.js`
- **Function Called**: `generateMarkers(pack, config.markers, Utils)`
- **Data Created**: Map markers and labels
### Step 53: Generate Zones
- **Line 129**: `const zonesResult = Zones.generate(pack, notes, Utils, config.zones);`
- **File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/modules/zones-generator.js`
- **Function Called**: `generate(pack, notes, Utils, config.zones)`
- **Data Created**: Special zones and areas
## Phase 16: Generation Completion
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/engine/main.js`
### Step 54: Log Performance Timing
- **Line 133**: `WARN && console.warn(\`TOTAL GENERATION TIME: ${Utils.rn((performance.now() - timeStart) / 1000, 2)}s\`);`
- **Action**: Performance timing logged if WARN debug flag is true
### Step 55: Close Console Group
- **Line 134**: `INFO && console.groupEnd("Generated Map " + seed);`
- **Action**: Console group ended if INFO debug flag is true
### Step 56: Return Generated Map Data
- **Line 137**: `return { seed, grid, pack, mapCoordinates };`
- **Data Returned**: Complete map data object containing:
- `seed`: Generation seed
- `grid`: Coarse Voronoi mesh with basic geographic data
- `pack`: Refined mesh with all generated features
- `mapCoordinates`: Geographic coordinate system
## Phase 17: Return to Viewer
**File**: `/home/user/Fantasy-Map-Generator/procedural/src/viewer/main.js`
### Step 57: Log Map Generation Complete
- **Line 72**: `console.log("Engine finished. Map data generated:", mapData);`
- **Data Received**: Complete `mapData` object from engine
- **Objects Available**: `{ seed, grid, pack, mapCoordinates }`
### Step 58: Render Map (Currently Commented Out)
- **Line 74**: `// renderMap(mapData);` (commented out)
- **Expected Next Step**: Rendering system would take the mapData and create visual representation
- **Current State**: Generation complete, awaiting rendering implementation
## Summary of Data Flow
### Key Data Transformations:
1. **UI → Configuration**: HTML form values → structured config object
2. **Configuration → Grid**: Config parameters → Voronoi mesh
3. **Grid → Heightmap**: Mesh structure → elevation data
4. **Grid → Features**: Heights → land/water classification
5. **Grid → Pack**: Coarse mesh → refined mesh
6. **Pack → Biomes**: Climate data → biome assignments
7. **Pack → Cultures**: Suitability → cultural territories
8. **Pack → Complete Map**: Sequential module processing → final map data
### Module Interaction Pattern:
- Each module receives: `(pack/grid, config_section, Utils, dependencies)`
- Each module returns: New data to merge into pack/grid
- Modules are stateless and pure (no side effects beyond returned data)
- Sequential processing builds up complexity from basic terrain to complete civilization
### Common Data Mismatches:
1. **Modules expecting properties that don't exist yet** (e.g., expecting `cells.culture` before Cultures module runs)
2. **Config sections missing expected fields** (validation tries to fix this)
3. **Pack/Grid structure differences** (pack is refined version of grid)
4. **Module dependencies** (Rivers needs Lakes, Cultures needs Names)
This trace shows the complete execution flow from button click to final map data generation, with each step clearly identifying the files, functions, data transformations, and object relationships involved in the Fantasy Map Generator's procedural generation process.

View file

@ -1,277 +0,0 @@
# Port Project
This project is decoupling a tightly-integrated browser application into a core procedural engine and a separate presentation layer. The goal of maintaining full cross-compatibility is not only achievable but is the natural outcome of a well-architected port.
Recommended design for porting the Fantasy Map Generator to a headless system.
### High-Level Architectural Vision
The fundamental flaw of the current architecture for headless operation is the **tight coupling of generation logic and presentation (UI/rendering) logic**. Everything relies on the global `window` object, reads configuration from DOM elements, and directly manipulates SVG with libraries like `d3`.
Our primary goal is to refactor this into two distinct, well-defined components:
1. **The FMG Core Engine**: A pure, environment-agnostic JavaScript library. It will contain all the procedural generation logic. It will have no knowledge of browsers, DOM, or SVG. Its only job is to take a configuration object and produce a serializable data object representing the map. This engine will be the heart of both the headless system and the refactored web application.
2. **The FMG Viewer/Client**: The existing web application, refactored to act as a client to the FMG Core Engine. It will handle user input, manage the SVG canvas, and call renderer modules to visualize the data produced by the engine.
This separation is the key to achieving your cross-compatibility goal. The serialized data object (the `.map` file) becomes the universal "source of truth" that both systems can produce and consume.
---
### Phase 1: Designing the FMG Core Engine
This is the most critical phase. The engine must be a collection of pure JavaScript modules that can run in any modern JS environment (Node.js, Deno, Bun, or a browser).
#### 1.1. Input: The Configuration Object
All functions that currently read from the DOM (`byId("statesNumber").value`, `manorsInput.valueAsNumber`, etc.) must be refactored. The main generation function of the engine will accept a single `config` object.
**Example `config` object:**
```javascript
const config = {
seed: "123456789",
graph: {
width: 1920,
height: 1080,
points: 10000
},
generation: {
template: "continents",
cultures: 12,
culturesSet: "european",
states: 10,
provincesRatio: 40,
manors: 1000,
neutralRate: 1.2
},
display: {
populationRate: 10,
urbanization: 1,
// ... other options from the options panel
}
};
```
#### 1.2. Output: The `MapData` Object
The engine's primary function, let's call it `generateMap(config)`, will return a single, serializable object. This object will contain everything that is currently stored in global variables like `grid`, `pack`, `notes`, `options`, `seed`, etc.
**Example `MapData` structure:**
```javascript
{
meta: {
version: "1.9", // FMG version for compatibility
generated: new Date().toISOString()
},
seed: "123456789",
config: { /* the config object used for generation */ },
grid: { /* grid data */ },
pack: { /* pack data */ },
notes: [ /* notes array */ ],
// ... any other top-level state
}
```
#### 1.3. Module Refactoring Strategy
Each of your provided `.js` files will be converted into an ES module within the engine.
* **Remove IIFE and `window`:** Replace `window.MyModule = (function () { ... })();` with standard `export` statements.
* **Dependency Injection & Pure Functions:** Modules should not rely on or modify a global `pack` or `grid` object. Instead, they should receive the current state of the map data as an argument and return the new data they've generated.
**Example Refactoring: `biomes.js`**
**Before (biomes.js):**
```javascript
"use strict";
window.Biomes = (function () {
// ...
function define() {
// ... reads from global `pack` and `grid`
pack.cells.biome = new Uint8Array(pack.cells.i.length); // Direct modification
// ...
}
return {getDefault, define, getId};
})();
```
**After (engine/modules/biomes.js):**
```javascript
"use strict";
// No IIFE, no window dependency
export function getDefaultBiomesData() {
// ... returns default biome data
}
export function defineBiomes(pack, grid) {
const {fl, r, h, c, g} = pack.cells;
const {temp, prec} = grid.cells;
const biome = new Uint8Array(pack.cells.i.length);
for (let cellId = 0; cellId < h.length; cellId++) {
// ... calculations ...
biome[cellId] = getId(/* ... */);
}
// Return only the data this module is responsible for
return { biome };
}
// ... other helper functions (getId, etc.)
```
#### 1.4. The Orchestrator (`engine/main.js`)
A new "main" module in the engine will orchestrate the entire generation process, calling the refactored modules in the correct sequence and composing the final `MapData` object.
```javascript
// engine/main.js
import { generateGrid } from './grid.js';
import * as Heightmap from './heightmap.js';
import * as Biomes from './biomes.js';
// ... import all other engine modules
export function generateMap(config) {
const seed = setSeed(config.seed);
let grid = generateGrid(config.graph);
grid.cells.h = Heightmap.generate(grid, config.generation.template);
// ... other initial grid steps (features, temperatures, etc.)
let pack = reGraph(grid); // Assume reGraph is refactored
// Sequentially build the pack object
const { biome } = Biomes.defineBiomes(pack, grid);
pack.cells.biome = biome;
const { cultures, cellsCulture } = Cultures.generate(pack, grid, config);
pack.cultures = cultures;
pack.cells.culture = cellsCulture;
// ... continue for states, burgs, rivers, etc.
return { meta, seed, config, grid, pack, notes: [] };
}
```
---
### Phase 2: Refactoring the Web Application (Viewer)
The web app becomes a consumer of the Core Engine.
#### 2.1. Separating Renderers
All modules with rendering logic (`coa-renderer.js`, `ocean-layers.js`, parts of `routes-generator.js`, `markers-generator.js`) must be moved out of the engine and into a `viewer/renderers/` directory.
* `COArenderer.draw` is already well-designed for this. It takes a `coa` object and renders it. Perfect.
* The `Markers.generate` function should be split. The logic for *selecting candidate cells* (`listVolcanoes`, etc.) goes into the engine. The logic for *drawing the marker icon* (`addMarker` which creates SVG elements) goes into a `viewer/renderers/markers.js` module.
* All `d3.select` and direct SVG manipulation must live exclusively in the Viewer.
#### 2.2. New Web App Workflow
1. **UI Interaction:** The user changes options in the UI.
2. **Build Config:** A function gathers all UI settings and builds the `config` object.
3. **Call Engine:** It calls `FMG_Engine.generateMap(config)`. This happens entirely in memory, with no DOM updates.
4. **Receive `MapData`:** It receives the complete `MapData` object.
5. **Render:** It calls a main `renderMap(MapData)` function, which in turn calls all the specific renderers (`renderBiomes`, `renderStates`, `renderRoutes`, etc.) to draw the SVG.
---
### Phase 3: Building the Headless System
This now becomes incredibly simple. The headless application is just a new entry point that uses the FMG Core Engine.
#### 3.1. Node.js CLI Application
A simple command-line tool.
**`package.json` dependencies:**
`"dependencies": { "d3-quadtree": "...", "d3-polygon": "...", "delaunator": "..." }`
(Note the absence of browser-specific libraries).
**`generate.js`:**
```javascript
import { generateMap } from './engine/main.js';
import fs from 'fs';
// Load config from a JSON file passed as an argument
const configFile = process.argv[2];
const config = JSON.parse(fs.readFileSync(configFile, 'utf8'));
console.log(`Generating map with seed: ${config.seed}...`);
const mapData = generateMap(config);
// Save the output
const outputFile = config.output || `map_${config.seed}.map`;
fs.writeFileSync(outputFile, JSON.stringify(mapData));
console.log(`Map data saved to ${outputFile}`);
```
You could run it like: `node generate.js my_config.json`
#### 3.2. REST API Server
Similarly, you could wrap the engine in a web server (e.g., using Express.js) to provide map generation as a service.
---
### Data Persistence and Cross-Compatibility
The `.map` file is the lynchpin.
* **Format:** It should be a **JSON serialization of the `MapData` object**. This is human-readable, universally compatible, and simple. For large maps, consider compressing it with Gzip (resulting in a `.map.gz` file), which is standard practice.
* **Workflow:**
* **Web App Save:** `const mapFileContent = JSON.stringify(currentMapData);` -> User downloads this content as `my_world.map`.
* **Headless Generation:** The CLI tool saves the `JSON.stringify(mapData)` output.
* **Web App Load:** User uploads a `.map` file -> `const mapData = JSON.parse(fileContent);` -> `renderMap(mapData);`.
Since both systems use the **exact same FMG Core Engine** to generate the data structure, and they both save/load this structure in the same format (JSON), they are **guaranteed to be cross-compatible**.
### Proposed Project Structure
```
/fmg
├── /src
│ ├── /engine # FMG Core Engine (headless, browser-agnostic)
│ │ ├── main.js # Orchestrator (generateMap function)
│ │ ├── modules/ # Refactored modules (biomes.js, cultures.js, etc.)
│ │ └── utils/ # Agnostic utilities (math, array, etc.)
│ │
│ ├── /viewer # Web Application (UI and rendering)
│ │ ├── main.js # Main UI logic, event handlers, orchestrates rendering
│ │ ├── renderers/ # SVG rendering modules (mapRenderer.js, coaRenderer.js)
│ │ └── ui/ # UI components, dialogs, etc.
│ │
│ └── /headless # Headless Application
│ ├── cli.js # Command-line interface entry point
│ └── server.js # (Optional) REST API server entry point
├── /assets # SVGs for charges, icons, etc.
├── index.html
├── package.json
└── ...
```
### Step-by-Step Roadmap
1. **Setup & Scaffolding:** Create the new project structure. Set up a build process (like Vite or Webpack) to handle modules for the browser.
2. **Isolate Utilities:** [x] *DONE* Move all environment-agnostic utility functions (`arrayUtils`, `colorUtils`, `probabilityUtils`, etc.) into `engine/utils`.
3. **Create the `config` Object:** Define the structure of the `config` object and modify the web app to build this object from the UI instead of having modules read from the DOM directly.
4. **Refactor Incrementally:**
* Start with the simplest, most self-contained modules (e.g., `biomes`, `names-generator`). Convert them to the new engine module pattern (take data, return new data).
* Create the `engine/main.js` orchestrator and have it call these first few refactored modules.
* Modify the `viewer/main.js` to call the new `generateMap` function and then manually merge the results back into the global `pack`/`grid` objects for now.
* Separate the corresponding renderer for the refactored module.
5. **Iterate:** Continue this process for all modules, one by one. `BurgsAndStates` and `Routes` will be the most complex due to their interdependencies and mixed logic.
6. **Build Headless Entry Point:** Once the engine is fully decoupled, create the `headless/cli.js` file. It should be trivial at this point.
7. **Finalize Viewer:** Complete the refactoring of the web app to fully rely on the `MapData` object returned by the engine, calling a master `renderMap` function instead of many individual `draw*` functions.
This phased approach ensures that you can test and validate at each step, maintaining a working application throughout the process while moving methodically toward the final, robust, and portable architecture.

View file

@ -1,52 +0,0 @@
Looking more carefully at the code flow:
1. findGridCell vs Voronoi Cell Indices
The key insight is that findGridCell in graphUtils.js:100-105 is used for coordinate-to-grid mapping, but the
actual iteration in heightmap-generator.js happens over different indices.
2. Actual Iteration Patterns
In heightmap-generator.js, the problematic iterations are:
- Line 165: for (const c of grid.cells.c[q]) - but q comes from queue.shift() where queue starts with [start]
- Line 209: grid.cells.c[q].forEach(...) - same pattern
- Line 268: grid.cells.c[cur].forEach(...) - cur is tracked through valid cell traversal
- Line 516: grid.cells.c[i].forEach(...) - i is the map index over heights
3. The Critical Constraint
Looking at voronoi.js:22-27, cells.c[p] is only populated when:
if (p < this.pointsN && !this.cells.c[p]) {
// populate cells.c[p]
}
4. Why No Errors Occur
The code works because:
1. heights array length matches valid cells: In the original ../modules/heightmap-generator.js:11, heights is created with length:
points.length, which equals pointsN
```javascript
const setGraph = graph => {
const {cellsDesired, cells, points} = graph;
heights = cells.h ? Uint8Array.from(cells.h) : createTypedArray({maxValue: 100, length: points.length});
blobPower = getBlobPower(cellsDesired);
linePower = getLinePower(cellsDesired);
grid = graph;
};
```
1. Queue propagation stays within bounds: When iterating grid.cells.c[q], the q values come from:
- Initial valid starting points from findGridCell
- Subsequent values from grid.cells.c[previous_q] which only contains valid adjacent cell indices
2. Voronoi adjacency constraint: The cells.c[p] arrays only contain indices of valid neighboring cells (<
pointsN), so the iteration naturally stays within the populated sparse array bounds
3. Map iteration bounds: In line 468's heights.map((h, i) => ...), i ranges from 0 to heights.length-1, which
equals pointsN-1, so grid.cells.c[i] is always within the populated range.
The sparse array works because the algorithm's traversal patterns are naturally constrained to only access
indices that were populated during Voronoi construction.
## TASKS
1. analyze ../modules heightmap-generator.js and src/engine/modules/heightmap-generator.js to determine why the logic has deviated. Produce docs/HEIGHTMAP_ASSESSMENT.md with findings and recommendations

View file

@ -1,320 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Fantasy Map Generator - Procedural Engine</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div id="app">
<!-- Configuration Panel -->
<div id="optionsContainer">
<h2>Map Configuration</h2>
<!-- Preset Selector -->
<div class="config-section">
<label for="presetSelector">Preset:</label>
<select id="presetSelector">
<option value="custom">Custom</option>
</select>
</div>
<!-- Core Settings -->
<div class="config-section">
<h3>Core Settings</h3>
<label for="optionsSeed">Seed:</label>
<input type="text" id="optionsSeed" placeholder="Auto-generate" />
<input type="text" id="seed" placeholder="Alternative seed input" />
<label for="mapWidthInput">Width:</label>
<input type="number" id="mapWidthInput" value="1920" min="100" max="8192" />
<label for="mapHeightInput">Height:</label>
<input type="number" id="mapHeightInput" value="1080" min="100" max="8192" />
</div>
<!-- Graph Settings (removed by Barrulus)
<div class="config-section">
<h3>Graph Settings</h3>
<label for="pointsInput">Cells:</label>
<input type="number" id="pointsInput" value="10000" min="1000" max="100000" data-cells="10000" />
<label for="cellsNumber">Cell Count:</label>
<input type="number" id="cellsNumber" value="10000" readonly />
<label for="pointsNumber">Points:</label>
<input type="number" id="pointsNumber" value="10000" readonly />
<label for="boundary">Boundary:</label>
<select id="boundary">
<option value="box">Box</option>
<option value="circle">Circle</option>
</select>
</div>
-->
<!-- Heightmap Settings -->
<div class="config-section">
<h3>Heightmap</h3>
<label for="templateInput">Template:</label>
<select id="templateInput">
<option value="continents">Continents</option>
<option value="archipelago">Archipelago</option>
<option value="highland">Highland</option>
<option value="inland">Inland</option>
<option value="lakes">Lakes</option>
<option value="islands">Islands</option>
<option value="atoll">Atoll</option>
<option value="volcano">Volcano</option>
<option value="crater">Crater</option>
</select>
</div>
<!-- Temperature Settings removed by Barrulus
<div class="config-section">
<h3>Temperature</h3>
<label for="temperatureEquatorOutput">Equator:</label>
<input type="number" id="temperatureEquatorOutput" value="30" />
<label for="temperatureNorthPoleOutput">North Pole:</label>
<input type="number" id="temperatureNorthPoleOutput" value="-10" />
<label for="temperatureSouthPoleOutput">South Pole:</label>
<input type="number" id="temperatureSouthPoleOutput" value="-15" />
<label for="heightExponentInput">Height Exponent:</label>
<input type="number" id="heightExponentInput" value="1.8" min="0.5" max="5" step="0.1" />
<label for="temperatureScale">Scale:</label>
<select id="temperatureScale">
<option value="C">Celsius</option>
<option value="F">Fahrenheit</option>
</select>
<label for="temperatureBase">Base Temp:</label>
<input type="number" id="temperatureBase" value="25" />
</div>
-->
<!-- Precipitation Settings removed by Barrulus
<div class="config-section">
<h3>Precipitation</h3>
<label for="precInput">Precipitation:</label>
<input type="number" id="precInput" value="100" />
<label for="moisture">Moisture:</label>
<input type="number" id="moisture" value="1" min="0.1" max="2" step="0.1" />
</div>
-->
<!-- Map Settings removed by Barrulus
<div class="config-section">
<h3>Map Settings</h3>
<label for="coordinatesSize">Coordinate Size:</label>
<input type="number" id="coordinatesSize" value="1" min="0.1" max="10" step="0.1" />
<label for="latitude">Latitude:</label>
<input type="number" id="latitude" value="0" min="-90" max="90" />
</div>
-->
<!-- Lakes Settings removed by Barrulus
<div class="config-section">
<h3>Lakes</h3>
<label for="lakeElevationLimitOutput">Elevation Limit:</label>
<input type="number" id="lakeElevationLimitOutput" value="50" min="0" max="100" />
</div>
-->
<!-- Rivers Settings removed by Barrulus
<div class="config-section">
<h3>Rivers</h3>
<label for="resolveDepressionsStepsOutput">Depression Steps:</label>
<input type="number" id="resolveDepressionsStepsOutput" value="1000" min="100" max="10000" />
</div>
-->
<!-- Ocean Layers removed by Barrulus
<div class="config-section">
<h3>Ocean</h3>
<div id="oceanLayers" layers="-1,-2,-3"></div>
</div>
-->
<!-- Cultures Settings -->
<div class="config-section">
<h3>Cultures</h3>
<label for="culturesInput">Number of Cultures:</label>
<input type="number" id="culturesInput" value="12" min="0" max="99" />
<label for="culturesSet">Culture Set:</label>
<select id="culturesSet">
<option value="european" data-max="15">European</option>
<option value="oriental" data-max="20">Oriental</option>
<option value="english" data-max="10">English</option>
<option value="antique" data-max="12">Antique</option>
<option value="highFantasy" data-max="30">High Fantasy</option>
<option value="darkFantasy" data-max="20">Dark Fantasy</option>
<option value="random" data-max="25">Random</option>
<option value="all-world" data-max="20">All World</option>
</select>
<!-- removed by Barrulus
<label for="emblemShape">Emblem Shape:</label>
<select id="emblemShape">
<option value="random">Random</option>
<optgroup label="Basic">
<option value="heater">Heater</option>
<option value="spanish">Spanish</option>
<option value="french">French</option>
<option value="round">Round</option>
<option value="oval">Oval</option>
<option value="square">Square</option>
</optgroup>
<optgroup label="Historical">
<option value="roman">Roman</option>
<option value="kite">Kite</option>
<option value="oldFrench">Old French</option>
<option value="renaissance">Renaissance</option>
<option value="baroque">Baroque</option>
</optgroup>
<optgroup label="Fantasy">
<option value="fantasy1">Fantasy Style 1</option>
<option value="fantasy2">Fantasy Style 2</option>
<option value="fantasy3">Fantasy Style 3</option>
<option value="gothic">Gothic</option>
</optgroup>
<optgroup label="Diversiform">
<option value="flag">Flag</option>
<option value="pennon">Pennon</option>
<option value="banner">Banner</option>
</optgroup>
</select>
<label for="neutralRate">Neutral Rate:</label>
<input type="number" id="neutralRate" value="1" min="0.1" max="10" step="0.1" />
-->
</div>
<!-- States & Burgs Settings -->
<div class="config-section">
<h3>States & Burgs</h3>
<label for="statesNumber">Number of States:</label>
<input type="number" id="statesNumber" value="15" min="0" max="999" />
<!-- removed by Barrulus
<label for="manorsInput">Number of Towns:</label>
<input type="number" id="manorsInput" value="1000" min="0" max="10000" title="1000 = auto-calculate" />
<label for="sizeVariety">Size Variety:</label>
<input type="number" id="sizeVariety" value="1" min="0" max="5" step="0.1" />
<label for="growthRate">Growth Rate:</label>
<input type="number" id="growthRate" value="1" min="0.1" max="10" step="0.1" />
<label for="statesGrowthRate">States Growth Rate:</label>
<input type="number" id="statesGrowthRate" value="1" min="0.1" max="10" step="0.1" />
-->
</div>
<!-- Religions Settings -->
<div class="config-section">
<h3>Religions</h3>
<label for="religionsNumber">Number of Religions:</label>
<input type="number" id="religionsNumber" value="5" min="0" max="99" />
</div>
<!-- Provinces Settings removed by Barrulus
<div class="config-section">
<h3>Provinces</h3>
<label for="provincesRatio">Provinces Ratio:</label>
<input type="number" id="provincesRatio" value="50" min="0" max="100" />
</div>
-->
<!-- Military Settings removed by Barrulus
<div class="config-section">
<h3>Military</h3>
<label for="year">Year:</label>
<input type="number" id="year" value="1400" />
<label for="eraShort">Era (Short):</label>
<input type="text" id="eraShort" value="AD" />
<label for="era">Era:</label>
<input type="text" id="era" value="Anno Domini" />
</div>
-->
<!-- Zones Settings removed by Barrulus
<div class="config-section">
<h3>Zones</h3>
<label for="zonesGlobalModifier">Global Modifier:</label>
<input type="number" id="zonesGlobalModifier" value="1" min="0.1" max="10" step="0.1" />
</div>
-->
<!-- Control Buttons -->
<div class="config-section controls">
<h3>Actions</h3>
<button id="newMapButton" class="primary">🗺️ Generate Map</button>
<div class="button-group">
<button id="saveConfigButton">💾 Save Config</button>
<label for="loadConfigInput" class="button">📁 Load Config</label>
<input type="file" id="loadConfigInput" accept=".json" style="display: none;" />
</div>
<label>
<input type="checkbox" id="restoreSession" checked />
Restore last session
</label>
</div>
<!-- Status/Info -->
<div class="config-section">
<h3>Info</h3>
<div id="status">Ready</div>
<div id="shortcuts">
<small>
<strong>Shortcuts:</strong><br/>
Ctrl+G - Generate Map<br/>
Ctrl+Shift+S - Save Config
</small>
</div>
</div>
</div>
<!-- The main SVG map container -->
<svg id="map" version="1.1" xmlns="http://www.w3.org/2000/svg">
<defs id="deftemp"></defs>
<g id="viewbox"></g>
<!-- Additional SVG groups will be added by the renderer -->
</svg>
</div>
<!-- Custom prompt dialog (required by commonUtils.js) -->
<div id="prompt" style="display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; padding: 20px; border: 1px solid #ccc; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 10000;">
<form id="promptForm">
<div id="promptText">Please provide an input</div>
<input type="text" id="promptInput" style="margin: 10px 0; width: 100%;" />
<button type="submit">OK</button>
<button type="button" id="promptCancel">Cancel</button>
</form>
</div>
<!-- Load the viewer with config system -->
<script type="module" src="src/viewer/main.js"></script>
<!-- Helper function for backwards compatibility -->
<script>
// Global byId helper for modules that expect it
window.byId = function(id) {
return document.getElementById(id);
};
</script>
</body>
</html>

View file

@ -1,29 +0,0 @@
// main.js (Viewer Entry Point)
import './style.css';
import { generate } from './src/engine/main.js';
console.log("FMG Viewer Initialized!");
document.addEventListener('DOMContentLoaded', () => {
const generateButton = document.getElementById('generateButton'); // Assuming you have a button with this ID
generateButton.addEventListener('click', () => {
console.log("Generating map...");
// 1. Build config from UI
const config = {
seed: document.getElementById('optionsSeed').value || '12345',
graph: { width: 1024, height: 768, points: 10000 },
// ... more config from UI
};
// 2. Call the engine
const mapData = generate(config);
console.log("Map data generated by engine:", mapData);
// 3. Render the map (this function will be built out later)
// renderMap(mapData);
});
});

File diff suppressed because it is too large Load diff

View file

@ -1,19 +0,0 @@
{
"name": "procedural",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"vite": "^7.0.4"
},
"dependencies": {
"aleaprng": "^1.0.1",
"d3": "^5.16.0",
"delaunator": "^5.0.1"
}
}

View file

@ -1,132 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/2/26/Brixen.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="agnusDei" stroke-width=".35">
<path class="secondary" d="M74.4 122.52s2.06.51 2.52 1.01c.97 1.14.92 3.24.49 4.21-.13.3-.79.07-1.53-.66 0 0 .35.94.01 1.56-.76-.66-1.68-2.45-3.18-3.48-.3-.42-.45-.87-.32-1.45s-.52-.64.43-.83c.7-.11 1.59-.36 1.59-.36z"/>
<path d="M80.67 108.9c-1.17 1.1-3.57 1.73-4.78 1.77-2.11.07-5.02.05-5.7.79-.22.22-.35 1.26-.95 1.7-.18.43.42 1.5.71 2.81.3 1.13.66 3.03.85 3.26.42.9 1.3.24 1.78.51.24.17.25.22.33.58.13.6-.66.58-.64 1.23.02.44.25.4.6.61.36.19.35-.61.97-.65.59-.03.62.86.62.86s-1.74.86-1.65 2.83c-1.15-.25-1.6-1.43-2.9-1.98-1.32-.55-1.44-1.82-1.5-2.61-.06-.79-.69-3.43-.93-4.23-.4-1.25-1.41-3.88-1.5-5.06-.04-.44.43-1.16.53-1.75.15-.98 0-1.51.26-1.78.82-.82 2.44-.86 4.25-1.8 1.45-.59 4.75-2.95 5.32-3.72"/>
<g fill="#f2bc51">
<polygon points="71.19 128.59 70.28 127.81 126.48 60.73 127.41 61.51"/>
<path d="M85.31 67.93a13.77 13.77 0 1 0 0 27.54 13.77 13.77 0 0 0 0-27.54z"/>
<path d="M85.322 92.213c-5.8 0-10.51-4.71-10.51-10.51s4.71-10.509 10.51-10.509 10.51 4.71 10.51 10.51c0 5.811-4.71 10.51-10.51 10.51z"/>
<path d="M87.3 83.64h.04c3.6.04 6.09 1.08 7.68 2.08a10.54 10.54 0 0 0 .03-7.95c-1.57 1-4.07 2.05-7.64 2.1h-.13v-.06c.05-3.66 1.13-6.2 2.15-7.78a10.57 10.57 0 0 0-8.1-.06 14.34 14.34 0 0 1 2.18 7.77v.12a15.16 15.16 0 0 1-7.89-2.26 10.5 10.5 0 0 0-.82 4.1c0 1.48.31 2.9.86 4.17a15.18 15.18 0 0 1 7.84-2.23c-.1 3.6-1.18 6.16-2.2 7.77a10.43 10.43 0 0 0 8.14-.06c-1-1.6-2.05-4.14-2.15-7.7z"/>
<path d="m131.34 66.98-18.51 1.79v.9l18.5-1.8v-.89z"/>
<path stroke-width=".23" d="M126.88 61.37c0 .02.3 1.92 1.06 3.3.8 1.43 2.88 2.58 2.89 2.6l-.2.36c-.1-.04-2.2-1.2-3.06-2.73-.56-1.01-1.01-2.26-1.08-2.95"/>
<path stroke-width=".23" d="M126.27 61.58a19.5 19.5 0 0 1-5.86 4.5c-4.6 2.26-8.32 2.97-8.36 2.98l-.08-.4c.04-.02 3.7-.73 8.27-2.96a19.27 19.27 0 0 0 6.04-4.8l.37-.52.01.63"/>
<path d="M130.64 66.36a1.08 1.08 0 1 1-1.08 1.08c.02-.6.5-1.08 1.08-1.08z"/>
<path d="M112.48 68.04c.59 0 1.08.49 1.08 1.08 0 .59-.5 1.08-1.08 1.08-.6 0-1.08-.5-1.08-1.08-.01-.6.47-1.08 1.08-1.08z"/>
<path d="M126.98 59.81c.59 0 1.08.5 1.08 1.08s-.5 1.08-1.08 1.08c-.6 0-1.08-.49-1.08-1.08a1.1 1.1 0 0 1 1.08-1.08z"/>
</g>
<path fill="#f6f6f6" d="m113.83 69.51 15.43-1.48s-1.3 3.38-.43 7.39c1.06 5.1 5 5.92 6.2 12.74.9 5.1-.84 8.23-.84 8.23s-.22-3.27-1.55-5.28c-1.67-2.5-4.22-3.88-4.22-3.88s.83 2.16.6 4.82c-.22 3.21-1.95 5.77-1.95 5.77s-.53-4.68-2.88-7.95c-2.02-2.8-8.28-7.74-9.64-12.6-1.37-4.92-.72-7.76-.72-7.76z"/>
<path fill="#bc2e2e" d="m114.75 77.86.06.17.11.31c.02.02.03.05.03.07l.15.36c2.05-.65 4.06-.9 6.12-1.07.89 2.31 2.24 4.18 3.58 6.01a30.87 30.87 0 0 1 4.2 8.32v-.01c.03-.44.04-.87.03-1.28l-.06-.93a11.53 11.53 0 0 0-.55-2.58l-.02-.04v-.01l.02.01c.13.08 1.34.77 2.6 1.96-.91-2.86-2.6-5.01-4.1-7.09a26.71 26.71 0 0 1-2.77-4.63c1.64-.15 3.3-.39 5-.88-.06-.17-.1-.36-.17-.53v-.06l-.07-.2v-.08l-.07-.29c-.03-.15-.05-.32-.09-.47l-.01-.08-.07-.46-.15-.52a25.7 25.7 0 0 1-5.22.87c-.35-1.7-.37-3.69.08-6.15h-.05l-2.81.25a18.26 18.26 0 0 0-.02 6.11c-2 .19-4.08.46-6.24 1.14l.12.5.01.05.14.54.13.42.1.27z"/>
<path class="secondary" d="M85.14 135.47s0 2.11-.39 2.68c-.87 1.2-2.92 1.67-3.98 1.48-.32-.05-.25-.74.27-1.64 0 0-.83.57-1.5.38.45-.9 1.95-2.23 2.6-3.92.34-.4.75-.65 1.34-.66.59-.01.5-.65.89.22.33.66.77 1.46.77 1.46z"/>
<path class="secondary" d="M125.63 135.47s0 2.11-.38 2.68c-.87 1.2-2.92 1.67-3.98 1.48-.32-.05-.26-.74.27-1.64 0 0-.84.57-1.51.38.45-.9 1.96-2.23 2.6-3.92.35-.4.75-.65 1.34-.66.6-.01.5-.65.9.22.32.66.76 1.46.76 1.46z"/>
<path class="secondary" d="M108.23 135.47s0 2.11-.38 2.68c-.87 1.2-2.92 1.67-3.98 1.48-.32-.05-.26-.74.27-1.64 0 0-.84.57-1.51.38.45-.9 1.96-2.23 2.6-3.92.35-.4.75-.65 1.34-.66.6-.01.5-.65.9.22.32.66.76 1.46.76 1.46z"/>
<path d="M118.54 115.07c-.56 1.32-1.2 1.74-1.7 3.51-.06.2-.18.4-.19.63 0 .24.07.47.12.7.1.5.25 1.2-.1 1.57-.9.9-1.77 1.26-2.6 2.24-1.38 1.61-2.97 3.8-3.44 5.87-.38 1.72.52 2.5.3 3.05-.15.28-.29.5-.66.63-.63.22-.83-.42-1.55-.3-.48.09-.82.52-.84.74 0 .47.71.36.8 1.03.03.27-.5.56-.5.56s-1.38-1.37-3.2-.67c-.14-1.16 1.36-3.31 2.25-4.42 1.22-1.51 2.56-4.5 2.86-5.11.84-1.7 1.7-3.42 2.17-5.27.48-1.95-.39-2.86-1.06-5.92.69-.2 1.1-.3 1.72-.64.61-.35 1.33-.62 2.03-.47.44.1.82.35 1.18.6.78.52 1.64 1.14 2.41 1.67z"/>
<path d="M129.16 106.59c.01-.16-.34-.35-.6-.92-.23-.45-.55-2.39-2.56-4.1-2.75-2.33-3.16-3.26-5.09-5.15-1.95-1.57-2.53-2.1-5.29-2.9a16.62 16.62 0 0 0-3.58-.58 43.3 43.3 0 0 0-5.87.2 90 90 0 0 1-6.4.42c-7.13 0-8.66-2.54-10.75-2.92-.58-.75-.5-1.85-.5-1.85s1.17.35 2.68-.28a4 4 0 0 1 3.22.17c.68.35 1.16.33 1.83.2.5-.11.83-.89.83-.89.39-.1.71-.2 1-.57a2 2 0 0 0 .37-1.15c0-.08-.12-.38-.11-.46 0-.05.1-.23.09-.49a4.4 4.4 0 0 0-.62-1.83c-.3-.55-1.54-2.02-1.94-2.62-.42-.62-.85-1.02-1.2-1.37-.13-.13-1.1-1.08-1.2-1.16a.97.97 0 0 1-.34-.62c-.1-.56-.7-1.18-1.25-1.53-.26-.16-.3-.23-.3-.31-.05-.36-.64-.93-1.12-1.04-.72-.17-1.18-.72-1.96-.76-.8-.02-1.15-.15-1.58-.22-.43-.07-.91.03-1.55-.1-1.77-.32-3.38.52-4.24 1.08s-2.66 1.33-3.64 3.45c-.38.84-.64 1.7-1.03 2.53-.37.8-.4 1.64-.65 2.48-.22.71-.72 1.36-.27 1.92 0 0-.11 1-.64 1.8-.41.66-.12 1.4.38 1.76 0 0-.21.79-.93 1.53-.55.57-.49 1.46.02 1.9-.4 1.23-2.8 2.44-1.58 4.43-1.7 1.26-.74 3.48-.92 4.44-1.18 2.4 1.32 4.64 1.32 4.64-1.02 2.26 2.06 4 2.06 4s.19 1.76 2.8 1.67c.57 1.77 2.34 2.23 3.03 2.36.14 1.08.37 1.93 1.57 4.38.08.16.26.3.26.46 0 .78.05 1.6.18 2.36.13.68.22.91.33 1.6.08.54.42.91.34 1.48-.18 1.19-.1 2.4-.21 3.59-.1 1.2-.35 2.4-.5 3.6-.18 1.4-1.12 2.27-1.05 3.43 1.87-.62 3.17.83 3.17.83s.55-.27.53-.53c-.04-.69-.76-.6-.74-1.07.03-.22-.11-.42.32-.65.64-.32 1.02.23 1.57-.16.33-.25.39-.49.46-.8.04-.6-1.4-.7-1.12-2.07.08-.47.43-2.06.47-3.3.03-1.26-.19-3.02.11-3.46.43-.6.58-1.18.86-1.84.28-1.04.34-1.48.01-2.52-.08-.26-.11-.18-.11-.4s-.25-1.1-.21-1.36c.1-.93.95-.7 1.3-1.9l.03.05c.23.1 1.58.4 1.83.37a16.9 16.9 0 0 1 3.08-.17c1.11.1 2.34-.13 3.43.06 1.32.22 2.4-.1 3.71-.27.48-.06.97-.1 1.43-.23.42-.12.85-.13 1.28-.21.56-.1 2.13.02 2.69.15 1.16.27 2.04-.05 3.23-.04.85.02 1.67-.2 2.49-.44 1.04-.29 1.91-.4 2.78-.94.7.94 1.32 2.53 3.25 3.43l-.01.02c.05.45.37.83.74 1.1.36.28.78.47 1.15.73 1.05.77 1.33 1.43 1.85 2.53.25.53.62 1.01.83 1.56.31.8 1.06 3 1.11 5.08 0 .98-.16 1.34-.27 2.76-.1 1.41-.98 2.5-.85 3.66 1.83-.7 3.2.66 3.2.66s.53-.29.5-.55c-.1-.68-.8-.56-.8-1.04.02-.22-.12-.4.29-.66.63-.36 1.03.18 1.56-.25.31-.26.36-.51.4-.83.03-.6-1.1-1.02-1.33-2.76-.22-1.65-.08-4.01-.3-5.67-.22-1.7-.44-2.24-.27-3.94.1-1.06.58-2.2.04-3.11-.42-.69-1.81-1.1-2.05-1.87-.1-.3-.08-.63-.07-.94.08-2.32.54-1.98.54-4.3 0-1.5-.37-3-.37-3s.4 1.04.69 1.42c.7.93 1.63 1.11 1.63 1.11s.6 1.78 2.67 2.18c.02-.29-.48-.87-.57-1.5-.08-.56.14-1.42.08-1.92-.13-.96-.54-1.33-.5-1.4.43.32 1.02.6 1.42.34z"/>
<path fill="none" d="M81.08 113.75c-.13-.75-.28-1.55-.51-2.6-.51-1.46.2-2.73.2-2.73"/>
<path fill="none" d="M110.71 108.67c.12.94.36 2.02 1.19 2.49 0 .7.6 1.32 1.3 1.41.34.6 1.02.6 1.34 1.2"/>
<path d="M81.56 81.32c-.33.19-1.2.56-2.27.57-.93-.01-2.16-.01-3.25-.38-1.2.2-2.25-.48-2.26-.9.08-.57 1.4-.96 1.83-1.16 1.74-.8 2.3-1.4 3.26-1.78 1.25-.5 2.88-.6 3.63-.43"/>
<path fill="#f6f6f6" stroke-width=".29" d="M91.45 79.15c-.3-.04-.63-.02-.85.2-.06.06-.2.37-.01.86.08.2.2.36.4.46.24.14.71.21 1 .13.3-.1.5-.22.5-.5.01-.48-.81-1.11-1.04-1.15z"/>
<g fill="#000" stroke="none">
<path d="M73.04 109.42a8.33 8.33 0 0 1 1.68-.24l.02.24h-1.7z"/>
<path d="m69.55 110.44-.04.32-.01.31c0 .21-.04.47-.13.68-.04.1-.1.2-.16.31-.07.1-.15.2-.26.27a.87.87 0 0 1-.68.18v-.05a1.13 1.13 0 0 0 .65-.56c.05-.08.08-.18.12-.28l.17-.6c.06-.2.16-.42.34-.58z"/>
<path d="m68.35 113.75.4 1.57.2.78.19.77.2.78.2.78c.14.52.3 1.03.5 1.54a6.34 6.34 0 0 1-.75-1.45l-.14-.38-.13-.38-.22-.78c-.12-.52-.24-1.06-.32-1.59a9.71 9.71 0 0 1-.13-1.64z"/>
<path d="M71.08 122.8a.93.93 0 0 1 .5.06c.16.06.3.16.42.26.13.1.25.22.35.33l.3.36-.02.04c-.16-.06-.29-.17-.42-.26l-.36-.3c-.11-.1-.23-.2-.36-.28-.12-.07-.25-.14-.41-.2z"/>
<path d="M75.73 127.2c-.27-.42-.58-.82-.9-1.22-.33-.4-.67-.78-1.02-1.15l.03-.02c.38.34.75.68 1.12 1.04.36.36.72.73 1.05 1.14l-.28.2z"/>
<path d="M80.93 137.88c.33-.36.66-.76.96-1.17.3-.4.59-.82.88-1.25l.03.02a22.02 22.02 0 0 1-1.6 2.63l-.27-.23z"/>
<path d="M121.42 137.88c.34-.36.66-.76.96-1.17.3-.4.6-.82.89-1.25l.03.02a22.02 22.02 0 0 1-1.61 2.63l-.27-.23z"/>
<path d="M104.02 137.88a24.2 24.2 0 0 0 1.84-2.42c-.23.45-.47.9-.74 1.34-.26.44-.53.89-.84 1.3l-.26-.22z"/>
<path d="M90.87 109.45c.07.53.03 1.08-.07 1.61a7.3 7.3 0 0 1-.51 1.55c-.22.5-.5.96-.76 1.42s-.54.92-.74 1.4l-.32-.13c.23-.51.52-.97.8-1.42.29-.45.55-.9.8-1.38a7.2 7.2 0 0 0 .8-3.05z"/>
<path d="M86.9 123.52c-.24.42-.42.9-.55 1.38-.14.49-.23.99-.32 1.49-.1.5-.17 1-.28 1.5-.05.26-.1.5-.18.75-.09.24-.17.5-.33.7l-.02-.03c.15-.2.22-.45.28-.7s.1-.5.13-.74c.09-.5.13-1 .2-1.52.07-.5.14-1 .26-1.52.11-.5.25-1 .5-1.48l.3.17z"/>
<path d="M85.91 118.08c.13.3.27.57.42.85.15.28.3.57.4.88.11.31.17.65.15.99-.03.33-.1.67-.32.94l-.04-.03c.08-.3.09-.6.07-.9-.03-.3-.1-.6-.19-.88l-.31-.89c-.1-.3-.19-.62-.19-.95h.01z"/>
<path d="M125.47 106.59c.23.33.34.75.43 1.14l.13.6c.04.2.1.38.18.53l-.32.14c-.08-.22-.1-.43-.13-.63l-.06-.6c-.03-.4-.1-.8-.28-1.16l.05-.02z"/>
<path d="M127.63 106.42a3.17 3.17 0 0 1-.78-1.1l.03-.01a3.8 3.8 0 0 0 .95.85l-.2.26z"/>
<path d="M126.43 106.57a5.07 5.07 0 0 1 .92 1.9c.07.34.1.7.2 1 .11.32.3.6.5.89l-.02.02a2.3 2.3 0 0 1-.65-.84c-.08-.16-.11-.34-.16-.52l-.1-.5a5.55 5.55 0 0 0-.3-.98c-.1-.33-.26-.63-.39-.97z"/>
<path d="M123.57 106.41a19.48 19.48 0 0 0-.75-3.18 45.1 45.1 0 0 0-1.12-3.1c.28.48.52.98.74 1.48a24.89 24.89 0 0 1 1.11 3.12c.16.53.26 1.08.36 1.62l-.34.06z"/>
<path d="M114.77 98.26c.42.09.83.22 1.21.4.2.08.38.2.57.3a7.34 7.34 0 0 1 2.34 2.15l-.04.02a20.7 20.7 0 0 0-1.95-1.54c-.17-.13-.34-.23-.51-.35a12.8 12.8 0 0 0-.53-.32c-.34-.22-.71-.4-1.09-.63v-.03z"/>
<path d="M120.76 103.81c.14.01.25.06.37.1a2.03 2.03 0 0 1 .45.3c.05.06.1.09.13.15.05.06.08.11.1.2.02.03.02.08.02.11 0 .05-.03.08-.06.1-.01-.08-.06-.1-.1-.13l-.13-.08-.15-.09-.15-.1c-.1-.07-.19-.15-.27-.24a.87.87 0 0 1-.21-.32z"/>
<path d="M121.17 105.18c.11-.01.22.01.3.06a.7.7 0 0 1 .4.43c.04.1.05.2.03.31-.1-.04-.19-.1-.26-.16l-.18-.17-.17-.2a.95.95 0 0 1-.12-.27z"/>
<path d="M121.47 106.39c.14.06.25.15.36.25a1.66 1.66 0 0 1 .43.73c.03.14.05.3.03.45-.12-.1-.2-.21-.29-.33a3.36 3.36 0 0 1-.4-.7c-.04-.12-.1-.25-.13-.4z"/>
<path d="M121.75 107.88a1.48 1.48 0 0 1 .39.85c.02.15.02.31 0 .48a1.3 1.3 0 0 1-.15.45c-.06-.16-.1-.3-.12-.45l-.07-.43-.04-.43c-.01-.15-.03-.3-.01-.47z"/>
<path d="M92.42 109.6a4.43 4.43 0 0 1-.2-.42l-.18-.39a2.69 2.69 0 0 1-.22-.9c.13.11.22.23.31.35.1.13.16.27.23.41.06.15.1.3.13.46 0 .17 0 .34-.07.5z"/>
<path d="M98.24 95.66c.13-.05.25-.07.36-.1l.33-.05.33-.05c.12-.01.24-.02.38-.01a.74.74 0 0 1-.3.28 1.06 1.06 0 0 1-.75.12.93.93 0 0 1-.35-.2z"/>
<path d="M94.2 113.08c-.02.02-.02.05 0 .06 0 .01.03.03.05.03l.06.03h.07l.34-.03c.22 0 .44 0 .65-.02l.65-.01c.22 0 .44 0 .67.02-.2.12-.42.19-.64.25a3.33 3.33 0 0 1-1.7-.06l-.04-.01-.06-.03a.5.5 0 0 1-.08-.07c-.02-.02-.03-.05-.04-.09v-.06h.08z"/>
<path d="M95.25 107.68c.14-.1.28-.18.42-.24l.43-.16a2.85 2.85 0 0 1 .93-.14 2.1 2.1 0 0 1-.84.48l-.46.1c-.15 0-.32 0-.48-.04z"/>
<path d="M99.8 110.97a.81.81 0 0 1 .4-.02c.14.02.27.08.39.15.11.07.22.17.29.28.08.11.14.24.14.38-.13-.06-.24-.13-.34-.19l-.29-.18-.29-.19c-.1-.07-.2-.14-.3-.23z"/>
<path d="M103.7 110.55a3.42 3.42 0 0 0 1 .1 3.11 3.11 0 0 0 .97-.24.92.92 0 0 1-.38.42 1.25 1.25 0 0 1-1.14.08 1 1 0 0 1-.45-.36z"/>
<path d="M115.21 119.29c-.22.02-.33.17-.42.33-.05.09-.1.17-.13.25-.04.09-.08.17-.1.26-.08.19-.13.38-.2.56-.05.2-.08.4-.14.6-.1-.2-.12-.41-.12-.63s.05-.44.13-.65a1.59 1.59 0 0 1 .35-.58.73.73 0 0 1 .3-.19l.17-.02c.07.02.12.04.16.07z"/>
<path d="M112.6 123.95a22.65 22.65 0 0 1-1.22 2.2l-.43.71-.43.71c-.15.23-.28.48-.42.72-.28.47-.53.97-.79 1.47a8.15 8.15 0 0 1 .93-2.35l.42-.73a29 29 0 0 1 1.93-2.73z"/>
<path d="M111.02 107.57c-.09-.07-.12-.18-.14-.29a.66.66 0 0 1 .04-.33c.08-.21.22-.4.4-.53.18-.12.38-.2.57-.26l.56-.18a1.4 1.4 0 0 1-.45.42l-.47.3c-.14.1-.27.22-.36.36a.67.67 0 0 0-.15.51z"/>
<path d="M115.48 112.43a.67.67 0 0 1-.4.2.86.86 0 0 1-.46-.06.95.95 0 0 1-.37-.27.7.7 0 0 1-.16-.41l.34.22a2.78 2.78 0 0 0 .66.26l.4.06z"/>
<path d="m79.36 98.93-.01.85v.82l.03.82.05.84a3.22 3.22 0 0 1-.44-1.66 3.53 3.53 0 0 1 .37-1.67z"/>
<path d="m82.34 110.6.15.7a6.1 6.1 0 0 0 .9 1.87c-.23-.1-.42-.25-.6-.45a2.2 2.2 0 0 1-.57-1.39c0-.24.03-.5.12-.73z"/>
<path d="m83.4 114.65.41.23.39.22.38.2c.13.08.27.15.4.24a.91.91 0 0 1-.5.02 1.3 1.3 0 0 1-.46-.16 1.26 1.26 0 0 1-.38-.31.92.92 0 0 1-.24-.44z"/>
<path d="M91.5 106.33c.1-.01.19-.1.25-.19s.08-.2.1-.3a4.12 4.12 0 0 0-.11-1.98v-.01c-.02-.05-.02-.1.02-.13.14-.22.2-.49.22-.77.01-.13 0-.29-.01-.42-.01-.16-.04-.3-.06-.45.07.13.14.27.19.42a1.85 1.85 0 0 1 .11.93c-.02.16-.08.33-.16.48l.01-.14a3.1 3.1 0 0 1-.01 2.15c-.05.12-.12.24-.2.33a.49.49 0 0 1-.16.1c-.07 0-.14 0-.2-.02z"/>
<path d="M80.62 108.33c.12-.2.22-.4.27-.6.06-.2.05-.4 0-.62l-.14-.7c-.03-.24-.03-.5.05-.75v.07a2.03 2.03 0 0 1-.07-.7 2.58 2.58 0 0 1 .46-1.27c.13-.19.28-.36.45-.5-.13.17-.26.36-.36.55a2.99 2.99 0 0 0-.34 1.24c0 .21.02.42.09.62.01.02.01.05 0 .07v.01c-.06.2-.05.42-.01.64.04.22.11.44.17.67.04.12.06.24.06.38 0 .13-.01.27-.03.4-.06.25-.18.47-.3.68l-.3-.2z"/>
<path d="M121.47 116.12c-.01.23.08.43.2.57.13.15.3.27.5.4a6.33 6.33 0 0 1 .97.98c-.22-.08-.43-.2-.63-.31-.2-.12-.38-.25-.57-.39-.17-.14-.37-.3-.5-.53-.05-.12-.09-.24-.09-.37s.04-.27.12-.35z"/>
<path d="M124.92 127.72c-.04-.64-.04-1.29-.03-1.92a53.42 53.42 0 0 1 .25-3.86c.07-.63.17-1.27.3-1.91l.33.07c-.14.61-.23 1.25-.32 1.88-.1.64-.17 1.26-.24 1.9-.12 1.28-.2 2.55-.29 3.84z"/>
<path d="M108.92 104.58c0 .4 0 .81.03 1.22s.08.8.2 1.18a1.89 1.89 0 0 0 .64.93c.3.24.65.43 1 .61l-.16.32c-.36-.2-.73-.41-1.05-.69a2.17 2.17 0 0 1-.66-1.1c-.05-.2-.09-.42-.1-.63l-.02-.61c-.01-.42.02-.84.12-1.23z"/>
<path d="M82.85 95.5c.13 0 .24.09.31.22.07.11.1.25.1.38.02.13 0 .25-.03.38a5.65 5.65 0 0 1-.38 1c-.12.22-.24.43-.4.6a6.13 6.13 0 0 1 .35-1.37c.09-.22.16-.41.19-.63.05-.2.06-.41-.14-.58z"/>
<path d="M80.16 95.5c.13-.03.25.05.35.15.09.09.16.2.22.31.1.23.17.48.2.73 0 .14-.02.26-.03.38-.02.13-.06.25-.1.36-.07.24-.18.44-.28.66-.04-.24-.01-.5.02-.71l.04-.34v-.33a3.16 3.16 0 0 0-.2-.96.47.47 0 0 0-.22-.25z"/>
<path d="M87.78 95.5a3.97 3.97 0 0 1 .65 1.73c.05.3.06.62.04.93s-.09.62-.19.9l-.1-.9c-.02-.3-.05-.59-.1-.88l-.14-.88c-.04-.29-.11-.58-.16-.9z"/>
<path d="M90.3 96.7c.13.03.23.1.31.18.08.08.16.17.22.27s.1.21.12.33c.02.12.02.23-.01.36-.1-.08-.18-.17-.24-.26l-.17-.26c-.05-.1-.1-.19-.14-.3l-.1-.33z"/>
<path d="M85.83 100.58c.3.02.58.2.8.4.22.22.39.49.49.78.1.28.17.58.22.86.05.29.07.58.1.87-.17-.26-.26-.54-.36-.81-.09-.28-.17-.55-.27-.8a3.83 3.83 0 0 0-.37-.72c-.17-.21-.36-.42-.6-.58z"/>
<path d="M88.65 93.45a6.65 6.65 0 0 1 1.22.75l.53.45c.18.14.36.25.6.31-.23.1-.52.04-.74-.07-.23-.1-.43-.25-.61-.4a6.8 6.8 0 0 1-.54-.48c-.16-.17-.32-.35-.46-.56z"/>
<path d="M85.18 96.28a1.25 1.25 0 0 1 .55.96c.02.2 0 .39-.05.58-.06.18-.14.36-.28.48l.01-.52c0-.16 0-.32-.02-.49-.01-.16-.05-.32-.08-.48-.03-.18-.08-.34-.13-.53z"/>
<path d="M84.78 94.65c-.03-.21-.02-.42-.02-.62s.02-.39.03-.59l.03-.59c.03-.2.04-.4.08-.6.1.18.17.4.2.59a2.78 2.78 0 0 1-.32 1.8z"/>
<path d="M86.84 89.37a1.05 1.05 0 0 1 .67.6c.07.13.1.28.12.43a.78.78 0 0 1-.1.46 5.1 5.1 0 0 1-.17-.39l-.16-.34c-.06-.12-.1-.24-.17-.35a6.3 6.3 0 0 0-.19-.4z"/>
<path d="M89.2 90.55c.11.26.27.5.45.71.18.22.4.42.62.6.46.38.98.69 1.45 1.06a7.48 7.48 0 0 1-1.58-.87 4.9 4.9 0 0 1-.71-.6 2.97 2.97 0 0 1-.55-.76l.32-.14z"/>
<path d="M77.5 95.91a2.4 2.4 0 0 1-.09-1.3c.05-.22.13-.42.26-.62.12-.19.3-.35.5-.43-.1.2-.2.37-.26.56-.07.18-.12.37-.16.56l-.12.6c-.02.2-.07.41-.14.63z"/>
<path d="M80.14 91.8a2.98 2.98 0 0 0-.08 1.04c0 .16.04.34.09.5l.18.5a.98.98 0 0 1-.4-.4c-.08-.18-.14-.37-.16-.57a1.22 1.22 0 0 1 .37-1.08z"/>
<path d="M75.64 85.06c.05.03.1.04.13.03.04-.01.1-.06.14-.13.1-.14.18-.31.26-.48.08-.18.16-.35.27-.51.1-.17.23-.32.39-.41-.15.12-.24.28-.32.45-.09.16-.13.35-.19.52-.06.19-.1.36-.19.56-.04.1-.1.2-.24.27a.5.5 0 0 1-.22.04c-.07 0-.13-.02-.2-.04l.17-.3z"/>
<path d="m75.31 88.62.13-.01a.42.42 0 0 0 .11-.16c.07-.13.12-.3.17-.47.04-.16.09-.34.17-.5s.19-.31.34-.4c-.14.11-.21.27-.26.44-.04.16-.07.33-.08.5-.02.17-.03.34-.08.53-.02.09-.07.2-.16.29-.1.09-.23.14-.35.14l.01-.36z"/>
<path d="M74.42 92.03h.1a.21.21 0 0 0 .1-.07c.08-.1.13-.22.18-.36l.16-.4a.85.85 0 0 1 .26-.36c-.1.1-.14.25-.18.38l-.07.41c-.02.14-.04.3-.11.44a.48.48 0 0 1-.19.22.45.45 0 0 1-.31.07l.06-.33z"/>
<path d="M82.02 84.33c0 .2 0 .38.03.55l.07.54c.02.17.06.34.1.53l.09.56-.05.02a1.61 1.61 0 0 1-.33-.5 1.87 1.87 0 0 1-.15-.57 1.69 1.69 0 0 1 .24-1.13z"/>
<path d="M78.93 87.12a1.09 1.09 0 0 1-.05-.43l.07-.4.1-.35c.04-.12.08-.23.11-.39.1.1.15.26.16.41.02.15 0 .3-.03.42a2.85 2.85 0 0 1-.36.74z"/>
<path d="M77.8 81.92c0 .12-.03.24-.06.35l-.1.35c-.04.12-.08.23-.11.46a.93.93 0 0 1-.17-.46.9.9 0 0 1 .04-.35c.03-.23.08-.35.14-.46z"/>
<path d="M80.67 82.56c.08.12.1.25.12.37a.97.97 0 0 1-.28.7.7.7 0 0 1-.34.2 4.38 4.38 0 0 1 .22-.64l.13-.3c.03-.1.08-.21.15-.33z"/>
<path d="M96.21 84.65c.2.06.39.16.54.31.15.15.25.34.35.51.04.08.09.17.15.22.04.06.11.1.18.13.07.04.14.05.21.05.07 0 .14-.04.21-.12l.05.01c0 .06 0 .12-.04.18s-.08.1-.15.14c-.13.05-.27.05-.38 0s-.22-.1-.3-.21c-.07-.1-.1-.2-.15-.3-.05-.08-.09-.18-.12-.26-.05-.08-.08-.17-.14-.24-.1-.15-.24-.3-.4-.42z"/>
<path d="M96.67 83.03a2.5 2.5 0 0 1-.68-.36 3.97 3.97 0 0 1-.56-.51c-.18-.19-.33-.39-.48-.58a11 11 0 0 0-.46-.57l.02-.03c.23.12.42.3.59.48.17.17.34.37.5.55.16.18.34.35.51.52l.56.5z"/>
<path d="M90.09 76.37c.1-.12.23-.2.38-.22.15-.03.3-.01.44-.01s.27-.02.35-.06c.08-.05.12-.14.15-.26l.33.12c-.05.08-.07.15-.14.22a.4.4 0 0 1-.1.1c-.04.03-.09.04-.13.06a.77.77 0 0 1-.5 0c-.13-.02-.27-.06-.4-.07a.5.5 0 0 0-.36.13l-.02-.01z"/>
<path d="M96.92 84.81c.12-.02.21-.02.31 0 .1.03.2.06.3.12s.17.13.23.23c.05.1.07.24 0 .34-.05-.1-.12-.15-.18-.2l-.2-.13c-.08-.04-.16-.1-.23-.15a1.26 1.26 0 0 1-.23-.2z"/>
<path d="M86.9 74.63a2 2 0 0 0-.6.08l-.27.11-.28.16c-.1.04-.22.09-.35.1-.12.01-.24 0-.35-.02-.22-.05-.4-.12-.62-.14.2-.1.44-.08.65-.1.1 0 .2 0 .29-.02s.17-.04.25-.1l.3-.13c.1-.05.21-.08.33-.1.22 0 .46.03.65.16z"/>
<path d="m87.33 76.8-.36.14c-.1.04-.21.09-.31.15l-.3.18c-.12.06-.25.13-.39.13.1-.1.16-.2.24-.3.09-.1.19-.2.32-.27s.26-.1.4-.11a.7.7 0 0 1 .4.09z"/>
<path d="M85.2 76.23a1.6 1.6 0 0 1 .85-.56c.16-.04.35-.06.52-.03s.35.07.48.2c-.17-.02-.32 0-.48.03-.15.02-.3.06-.45.1-.15.03-.29.07-.44.12-.16.03-.31.1-.47.14z"/>
<path d="M88.63 75.56c.03-.1.11-.19.2-.24a.7.7 0 0 1 .3-.09c.1-.01.2 0 .29.02s.18.07.26.14a.93.93 0 0 1-.28.08l-.25.04-.24.01-.28.04z"/>
<path d="M92.08 81.3c-.04.06-.1.09-.16.13-.06.02-.11.05-.17.06-.13.04-.26.05-.38.04a.84.84 0 0 1-.38-.13.55.55 0 0 1-.25-.3l.03-.02c.24.09.43.14.64.16l.33.03.17.02c.05 0 .1 0 .17.02z"/>
<path d="M89.28 79.28a1.53 1.53 0 0 1 .9-.57c.19-.03.37-.03.55-.02.17.02.35.04.52.09l.5.13.49.11c.32.06.66.12.96-.04l.02.03a.95.95 0 0 1-.49.23c-.18.04-.36.03-.53.02-.36-.04-.68-.13-1.02-.2-.16-.04-.33-.08-.49-.1-.16-.03-.32-.04-.48-.03-.33.04-.63.18-.93.35z"/>
<path d="M89.6 79.82c.18-.07.34-.16.49-.26.15-.1.3-.21.42-.34l.17.23a2.87 2.87 0 0 1-1.08.37z"/>
<path d="m91.23 79.05.23.03.1-.01.1.06.05.02.08.06c.1.08.26.22.33.35a.8.8 0 0 1-.49.7c-.1.03-.18-.04-.17-.13.03-.34-.07-.83-.23-1.08z"/>
<path d="M93.73 80.59c-.14.01-.28.01-.4-.02a2.24 2.24 0 0 1-.4-.13 2.14 2.14 0 0 1-.7-.46l.21-.2c.07.08.18.17.27.25l.31.22c.1.07.22.13.35.18l.36.16z"/>
<path d="M82.53 77.05a2.61 2.61 0 0 1 1.12.63l-.02.02a2.1 2.1 0 0 0-.56-.23 2 2 0 0 0-.58-.08l.04-.34z"/>
<path d="M83.08 80.44c-.28.1-.5.28-.74.46l-.34.3c-.12.1-.23.19-.37.28l-.16-.31c.12-.05.24-.13.37-.2l.38-.23c.27-.15.54-.29.84-.34l.02.04z"/>
<path d="M74.72 80.53c.29-.22.61-.37.96-.5a4.64 4.64 0 0 1 1.07-.28 3.9 3.9 0 0 1 1.1.03c.36.04.72.16 1.06.26a2.87 2.87 0 0 0 1 .17l.27-.01.27-.03c.17 0 .34-.06.5-.1a7.44 7.44 0 0 0 1.86-1.02l.03.03a6.04 6.04 0 0 1-1.81 1.22c-.17.07-.36.12-.55.14l-.26.03-.28.03c-.19 0-.37 0-.57-.04a4.17 4.17 0 0 1-.54-.14 5.26 5.26 0 0 0-2.06-.36 6.23 6.23 0 0 0-2.05.57z"/>
<path d="M89.83 76.73c-.05.12-.12.24-.22.33a.9.9 0 0 1-.34.22.77.77 0 0 1-.43.03c-.14-.04-.28-.13-.33-.27.14.02.25.01.35 0a2.9 2.9 0 0 0 .61-.2c.1-.05.22-.1.36-.11z"/>
<path d="M88.16 77.67c-.08.18-.17.36-.31.5-.13.16-.3.3-.5.39-.2.1-.44.1-.65.06-.2-.05-.4-.15-.53-.3.2 0 .4.03.57.02.17-.01.33-.05.48-.1.15-.07.3-.17.46-.27.15-.1.31-.21.48-.3z"/>
<path d="M86.17 79.31c.1.12.13.27.11.42 0 .15-.05.3-.13.4s-.19.23-.32.3a.66.66 0 0 1-.42.08c.1-.1.18-.2.25-.3l.2-.26.17-.29c.05-.1.1-.2.14-.35z"/>
<path d="M85.36 81.34c.15.09.26.25.32.42s.06.37.01.55-.14.34-.28.46c-.13.13-.27.17-.41.28 0-.1.04-.17.09-.24l.12-.2a1.75 1.75 0 0 0 .15-1.27z"/>
<path d="M83.42 87.23c.23.12.43.27.63.45.18.17.34.38.47.62.12.25.19.53.16.8 0 .26-.11.54-.31.71.07-.25.08-.49.05-.7-.04-.23-.1-.45-.21-.66-.1-.2-.23-.4-.37-.6-.14-.2-.3-.4-.42-.62z"/>
<path d="M85.76 90.2a3.2 3.2 0 0 1 .88 1.32c.1.25.17.53.15.82 0 .14-.03.3-.09.42a.73.73 0 0 1-.28.31c.14-.23.14-.47.1-.7-.03-.25-.1-.47-.19-.71a17.56 17.56 0 0 0-.57-1.45z"/>
<path d="M82.44 90.45c-.02.05 0 .1.02.14.02.05.04.08.08.12l.2.25a3 3 0 0 1 .34.56 1.5 1.5 0 0 1 .14.68c-.01.23-.1.49-.29.62.06-.22.06-.42.03-.6-.04-.2-.1-.38-.19-.56-.08-.19-.19-.37-.27-.57l-.11-.32c-.01-.04-.04-.11-.03-.17l.03-.1a.14.14 0 0 1 .05-.05z"/>
<path d="M80.74 87.24c.1.2.14.38.2.55.08.18.16.33.26.46.1.12.27.24.42.39.07.07.15.16.2.26.04.1.08.22.06.32-.1-.19-.26-.27-.43-.37-.17-.1-.35-.2-.51-.37-.15-.18-.24-.4-.26-.62-.02-.2 0-.41.06-.62z"/>
<path d="M84.25 75.93h-.81l-.4-.01-.41-.04a1.36 1.36 0 0 1 .82-.23c.15 0 .3.03.43.08.13.02.27.1.37.2z"/>
<path d="M83.2 74.88c-.18.05-.34.1-.49.18-.15.07-.28.15-.4.25l-.17.16-.18.19c-.07.06-.15.13-.23.16-.1.05-.2.06-.3.04.18-.08.26-.21.35-.35l.15-.22.2-.21c.15-.13.33-.2.51-.26.19-.02.38 0 .56.06z"/>
<path d="M78.3 84.19a3.46 3.46 0 0 0-.37.91 2.74 2.74 0 0 0-.03 1 .88.88 0 0 1-.3-.49 1.4 1.4 0 0 1 0-.58c.04-.18.12-.37.24-.52a.88.88 0 0 1 .46-.32z"/>
<path d="M77.45 88.3c0 .12 0 .24-.02.35 0 .1-.03.21-.05.32l-.1.3c-.03.1-.08.2-.16.31a.82.82 0 0 1-.12-.35c0-.11 0-.24.04-.36s.08-.22.14-.32c.06-.1.15-.2.27-.26z"/>
<path d="M77.58 90.53c-.08.21-.16.4-.23.62a5.7 5.7 0 0 0-.29 1.2L77 93c-.11-.2-.17-.43-.2-.65-.02-.23 0-.46.05-.68.06-.22.15-.44.27-.64.13-.2.28-.37.47-.5z"/>
<path d="M79.68 88.3c-.07.07-.09.17-.12.25-.03.09-.06.17-.07.26-.05.19-.08.35-.1.54-.02.18-.05.38-.11.55-.06.19-.14.36-.26.53-.02-.2 0-.39.01-.58l.09-.56c.03-.2.1-.38.18-.56l.16-.25c.06-.07.13-.15.22-.18z"/>
<path d="M85.6 86.03c-.01.37.07.73.24 1.03.18.3.43.56.73.77.3.2.62.36.96.49.33.12.68.23 1.03.3l-.08.33c-.36-.09-.73-.2-1.08-.36a3.94 3.94 0 0 1-.98-.58c-.3-.23-.56-.53-.73-.88-.15-.33-.2-.74-.09-1.1z"/>
<path d="M97.1 88.15c-.24.03-.5.03-.74-.05-.24-.09-.44-.21-.63-.33l-.57-.36-.6-.34c.24.04.46.1.67.19l.62.29a2.55 2.55 0 0 0 .6.24c.1.03.2.04.3.04l.15-.01.15-.01.06.34z"/>
<path d="M84.44 83.07a.57.57 0 0 1-.16.36 1 1 0 0 1-.3.25c-.12.05-.24.09-.36.11-.13.01-.26.02-.39-.01a2.52 2.52 0 0 1 .58-.4l.3-.15.33-.16z"/>
<path d="M89.86 83.9c.14-.02.26 0 .4.04s.24.1.34.19c.1.08.19.18.25.3.07.12.1.24.1.38a5.35 5.35 0 0 1-.58-.42l-.25-.22-.26-.26z"/>
<path d="M90.91 85.28c.1.05.17.14.22.22a.9.9 0 0 1 .13.6c-.01.1-.05.2-.1.29a1.5 1.5 0 0 1-.07-.29l-.06-.27-.06-.26c-.02-.1-.05-.19-.06-.3z"/>
<path d="M73.03 105.61c.11-.16.18-.38.23-.6.04-.22.07-.45.09-.7.06-.47.12-.95.31-1.39l.04.01c-.15.45-.16.92-.16 1.4 0 .23 0 .47-.03.71-.02.25-.07.5-.2.75l-.28-.18z"/>
<path d="M75.1 109.79a2.27 2.27 0 0 1-.02-.69c.02-.22.08-.43.14-.64l.16-.61c.05-.2.06-.42.02-.61l.04-.02c.07.21.08.43.06.64l-.1.64c-.03.2-.05.42-.05.61 0 .2.02.4.08.58l-.33.1z"/>
<path d="M71.78 100.95c.17-.12.32-.25.45-.4.12-.15.22-.33.27-.52.06-.2.1-.4.13-.61.04-.21.08-.43.18-.63l.03.01c-.07.2-.08.42-.1.63 0 .2 0 .43-.05.65-.04.22-.12.44-.24.64a2.76 2.76 0 0 1-.46.52l-.2-.3z"/>
<path d="M72.71 96.52c.13-.1.26-.21.36-.35.12-.13.21-.28.33-.43.11-.15.23-.29.38-.4.14-.12.3-.22.48-.28v.03a1.9 1.9 0 0 0-.7.77c-.1.15-.16.3-.27.47-.09.16-.22.31-.36.45l-.22-.26z"/>
<path d="M75.4 104.11a4.14 4.14 0 0 0 .87-1.1c.12-.2.21-.4.3-.62l.2-.7c.08.24.1.51.06.77-.03.25-.13.5-.25.73-.13.22-.3.43-.5.59-.2.16-.43.29-.68.33z"/>
<path d="M76.23 95.23c-.19.17-.36.34-.52.51a4.98 4.98 0 0 0-.42.56 5.25 5.25 0 0 0-.57 1.3 1.7 1.7 0 0 1-.02-.77 2.23 2.23 0 0 1 .81-1.29c.23-.16.46-.28.72-.31z"/>
<path d="M76.1 98.51c-.13.22-.26.42-.35.64-.1.2-.17.43-.24.65a4.3 4.3 0 0 0-.16 1.4 1.6 1.6 0 0 1-.24-.74 2.15 2.15 0 0 1 .41-1.46c.15-.2.35-.38.58-.49z"/>
<path d="m78.08 104.97-.15.71c-.03.23-.07.45-.08.69v.68l.06.72c-.16-.2-.27-.43-.34-.67a2.37 2.37 0 0 1 .1-1.5c.1-.24.23-.45.41-.63z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 25 KiB

View file

@ -1,9 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:Wappen_R%C3%BCdigheim_(Neuberg).svg" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="anchor" stroke-width=".5">
<path d="M135.4 98.45c-2.05-3.35-9.03-10.3-12.27-11.86-.51-.25-1.19-.16-1.47.3-.93 1.52.57 6.37-1.07 13.36-.54 2.3-.04 3.36 1.86 2.82 2.05-.58 5.25-2.47 4.97-4.5.3 1.54.45 3.09.45 4.57 0 16.3-19.22 19.1-23.53 19.26a.39.39 0 01-.39-.39V82.33c0-.64.16-1.1.94-1.16.12 0 .22-.1.22-.23l12.2-.74c.13 0 .23-.1.23-.23v-.33l9.91-.26c.13 0 .23-.1.23-.22v-2.98c0-.13-.1-.23-.23-.23l-9.9-.25v-.34c0-.12-.11-.22-.24-.22l-12.2-.74v-.9c0-.13-.1-.23-.22-.23-1.5-.11-3.22-1.26-3.22-3.01v-.4a6.27 6.27 0 10-3.08 0v.4c0 1.75-1.73 2.9-3.22 3-.12 0-.23.1-.23.23v.9l-12.2.75c-.12 0-.22.1-.22.22v.34l-9.91.25c-.13 0-.23.1-.23.23v2.98c0 .12.1.22.23.22l9.9.26v.33c0 .13.1.23.23.23l12.2.74c0 .13.1.23.23.23.78.07.93.52.93 1.16v39.68c0 .22-.17.39-.38.39-4.31-.17-23.53-2.95-23.53-19.26 0-1.48.16-3.03.45-4.57-.28 2.03 2.92 3.92 4.97 4.5 1.9.54 2.4-.52 1.86-2.82-1.64-7-.15-11.84-1.08-13.36-.28-.46-.95-.55-1.46-.3-3.25 1.55-10.22 8.51-12.26 11.86-.44.7-.49 1.9.23 2.32 1.26.73 4.36.1 5.22-2.13a31 31 0 00-1.74 10.34c0 10.28 8.2 16.1 16.24 19.3 7.27 2.89 13.97 3.51 13.97 5.4v1.03a5.56 5.56 0 102.68 0v-1.04c0-1.88 6.7-2.5 13.97-5.4 8.03-3.19 16.24-9.01 16.24-19.3 0-3.72-.65-7.22-1.74-10.33.86 2.24 3.96 2.86 5.22 2.13.72-.42.66-1.61.23-2.32zm-31.97 41.65a3.3 3.3 0 11-4.64-3.01v1.07c0 .57.78 1.03 1.34 1.03s1.34-.46 1.34-1.03v-1.07a3.3 3.3 0 011.96 3zm-3.3-74.82c-.85 0-1.54.69-1.54 1.54v.35a3.71 3.71 0 113.08 0v-.35c0-.85-.69-1.54-1.54-1.54zm3.82 17.06h-7.64m-1.17-7.94v6.54m9.97-6.54v6.54M82.72 75.7v3.94m34.82-3.94v3.94M98.59 67.17v2.7m3.08-2.7v2.7m-2.88 64.83v2.39m2.68-2.39v2.39"/>
<path fill="#000" stroke="none" d="M129.43 103.12a19.23 19.23 0 01-1.32 7.76c-.34.81-.76 1.6-1.2 2.36a19.38 19.38 0 01-3.43 4.02 27.34 27.34 0 01-4.28 3.07 23.25 23.25 0 01-4.77 2.25 59.51 59.51 0 01-5.06 1.47c-1.7.46-3.4.87-5.02 1.46a12.65 12.65 0 00-2.34 1.05c-.38.21-.72.47-1 .76a2.77 2.77 0 00-.67 1 .25.25 0 01-.43 0c-.13-.38-.38-.7-.66-1a4.83 4.83 0 00-.98-.76 12.65 12.65 0 00-2.36-1.05c-1.62-.57-3.32-1-5.02-1.46-1.7-.43-3.4-.88-5.06-1.47a23.23 23.23 0 01-4.77-2.23 27.64 27.64 0 01-4.27-3.1 18.76 18.76 0 01-4.64-6.37 16.46 16.46 0 01-1.27-5.14 22.65 22.65 0 01-.05-2.64.17.17 0 11.32 0v.02a18.91 18.91 0 001.32 7.63c.34.79.75 1.56 1.19 2.3a19.16 19.16 0 003.38 3.92 25.7 25.7 0 004.22 3.02 22.84 22.84 0 004.72 2.2c1.64.56 3.32 1.01 5.02 1.45s3.4.85 5.06 1.43c.83.3 1.66.62 2.45 1.1.38.22.76.49 1.08.83.32.32.6.71.75 1.17h-.43c.15-.46.43-.85.76-1.17a5.28 5.28 0 011.09-.83c.76-.48 1.6-.8 2.44-1.1 1.66-.56 3.35-1 5.05-1.43s3.4-.87 5.02-1.44A22.84 22.84 0 00119 120a24.92 24.92 0 004.23-3.03 18.4 18.4 0 004.57-6.22 16.12 16.12 0 001.24-5.02c.1-.87.1-1.74.08-2.6a.16.16 0 11.32 0z" transform="translate(0 2)"/>
<path fill="#000" stroke="none" d="M103 123.32c-.56.45-.95 1.07-1.34 1.68-.57.97-1.05 2-1.35 3.1-.03.32-.5.15-.4-.13a9.91 9.91 0 00-.5-1.45c-.32-.7-.7-1.37-1.13-2-.16-.27-.35-.51-.54-.76-.16-.17-.34-.32-.5-.48-.05-.27.24-.15.33-.03.34.27.58.63.85.96a13.69 13.69 0 011.89 3.79h-.38c.15-.47.33-.92.51-1.37a12.21 12.21 0 011.93-3.07c.16-.16.32-.33.51-.46.13-.04.23.13.13.22z" transform="translate(0 2)"/>
<path fill="none" stroke-width=".3" d="M100.14 130.24v-47.9M93.8 79.5l-9.3-.56m-2.78-.53l-7.37-.19m32.11 1.28l9.29-.56m2.79-.53l7.38-.19m-22.54 2.35h-6.5m6.5-6.61h-6.5"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -1,227 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/5/5c/Angel_Charge.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="angel" stroke-width=".28">
<path class="secondary" d="M67.49 104.26s.88 4.25 2.63 9.8c1.75 5.57 4.68 10.81 5.46 10.47.7.24 1.46-1.03 1.07-1.94.73-.95-2-9.75-2.74-9.62.13-.87-1.88-8-1.92-8 .5 2.5 1.77 5.33 2.6 7.71 1.05 3.07 1.68 5.39 2.26 5.23.64.07 1.6-1.33 1.28-2.27.84-.88.48-7.44-.94-8.7.16-1.6-2.97-9.46-2.98-9.8.05.05 2.48 6.86 3.46 6.42.7.01 1.73-1.33 1.23-2.99.7-.52.08-4.17-.57-4.66.08-.88-2.03-5.67-1.87-5.27.7 1.83 2.08 5.11 2.78 4.79.68.17 1.57-1.39 1.23-2.32.45-1.2-.87-2.81-.93-4.96a42.9 42.9 0 01.4-5.96c.24-1.98.25-4.07-.69-5.83-.94-1.75-3.1-3.02-5.02-2.4a5.2 5.2 0 00-2.71 2.46c-.57.97-1 2.02-1.24 3.1-.38 1.66-.35 3.37-.38 5.07-.08 4.78-.66 9.55-1.23 14.3"/>
<path class="secondary" d="M69.75 110.17c.47 0 .89-.62.86-1.1.25-.53.25-1.03.25-1.71.12.04.27.13.39.16a.6.6 0 00.57-.14c.44-.44.5-1.13.36-1.73.12-.15.15-.33.18-.52.08-.46.09-.91.03-1.37a.9.9 0 00.4-.1c.59-.24.96-.93.79-1.71.47-.39.5-1.42.54-2.02a4.1 4.1 0 00-.3-1.73c.12.04.34.06.46 0a.89.89 0 00.31-.26c.31-.36.5-1 .62-1.44a3 3 0 00-.06-1.73c.18-.78.14-1.83-.13-2.59a1 1 0 00.73 0c.45-.17.79-.52.95-1.05.21-.7.33-1.73-.06-2.36 0 0 .12-.75.07-1.83-.03-.67-.27-1.59-.35-1.9L77.37 81v-2.99l-6.5-1.05-1.1 6.04-.25 7.54-.58 6.22-.6 4.47v5l.56 2.54.28 1.38"/>
<path fill="none" d="M75.02 92.2a7.27 7.27 0 00-.9-3.18c-.27-1.36-.6-2.5-.97-3.38"/>
<path fill="none" d="M73.82 98.2c.33-1.87-.72-4.29-.72-4.29s-.08-2.21-.69-3.15"/>
<path fill="none" d="M72.38 103.65a7.87 7.87 0 00-.38-1.72c.19-.65-.09-1.36-.26-2.02a7.78 7.78 0 00-.81-1.9"/>
<path fill="none" d="M70.86 107.36s-.07-1.3-.32-1.9l-.03-.7a6.25 6.25 0 00-.64-2.54"/>
<path class="secondary" d="M97.2 95.94c-.68 2.04-2.37 2.7-2.37 2.7s-1.7-.66-2.38-2.7c-.63 1.2-2.43 1.79-2.43 1.79s-1.71-1.6-2.23-3.26c-.38.45-1.15 1.25-1.74 1.4a5.44 5.44 0 01-2.21-2.52c-.33.25-.69.48-1.07.66-.34-.02-.58-.3-.76-.58-.52-.78-1.2-2.27-1.4-3.18l-.97.45a5.55 5.55 0 01-1.6-2.69c-.34-1.44-.28-2.42-.33-3.46a2.3 2.3 0 01-1.35.7 4.94 4.94 0 01-.76-2.05 16.3 16.3 0 01.14-4.38s-.96.37-1.27-.14a8.8 8.8 0 01-.92 5.43c-.41.1-.82-.24-1.1-.55a9.9 9.9 0 01.93 3.9 12.8 12.8 0 01-.64 4.13c-.27.04-1.01-.32-1.28-.54.4 1.75.72 4.08-.3 5.6-.17 0-.54-.5-.65-.61.36 1.03.44 2.22.42 3.45a4.4 4.4 0 01-.51 1.8c-.28 0-.58-.2-.83-.44a6.48 6.48 0 01-.62 5.06l.75 4.38-.05-.2c.3 1.22.6 3.16.46 4.4-.43-.6-.57-1.52-.88-2.22-.63-1.4-.9-3.1-1.25-4.6-.51-2.18-.9-4.38-1.19-6.6-.56-4.39-.9-9.58-.71-14.19.38-9.03 2.88-15.76 3.78-17.5a27.7 27.7 0 014.85-7.08c1.6-1.63 3.6-3.23 5.96-3.15 2.62.07 3.65 1.5 4.28 3.66.51 1.77.54 3.79.38 5.61-.13 1.45-.71 3-.52 4.44a4.43 4.43 0 001.8 3.07c1.25.85 3.03.11 4.88.42 1.3.22 1.47.8 2.42 1.27 1.02.52 1.34.53 2.98.53"/>
<path fill="none" d="M89.12 80.88c-.04.14-.26.17-.4.22a1 1 0 01-.44.04c-.4-.05-.8-.23-1.1-.5-.3-.27-.57-.57-.8-.9a4.98 4.98 0 01-1.64-.85c-.46-.41-.8-.99-.75-1.58-.23 0-.4-.18-.53-.36a2.2 2.2 0 01-.4-1.58c-.4-.33-.57-1.42-.58-1.93"/>
<path fill="none" d="M68.97 105.93c-.46-2.25-.64-5.97-.72-8.45-.13-3.9 0-6.98.49-11.23a55.12 55.12 0 013.89-14.16"/>
<path class="secondary" d="M132.4 104.26s-.9 4.25-2.64 9.8c-1.75 5.57-4.68 10.81-5.46 10.47-.7.24-1.46-1.03-1.07-1.94-.73-.95 2-9.75 2.74-9.62-.13-.87 1.88-8 1.92-8-.5 2.5-1.77 5.33-2.6 7.71-1.05 3.07-1.68 5.39-2.26 5.23-.64.07-1.6-1.33-1.28-2.27-.84-.88-.48-7.44.94-8.7-.16-1.6 2.97-9.46 2.98-9.8-.05.05-2.48 6.86-3.46 6.42-.7.01-1.73-1.33-1.23-2.99-.7-.52-.08-4.17.56-4.66-.07-.88 2.03-5.67 1.87-5.27-.69 1.83-2.07 5.11-2.77 4.79-.68.17-1.58-1.39-1.23-2.32-.45-1.2.87-2.81.93-4.96a42.9 42.9 0 00-.41-5.96c-.23-1.98-.25-4.07.7-5.83.94-1.75 3.1-3.02 5.02-2.4a5.2 5.2 0 012.71 2.46c.57.97 1 2.02 1.24 3.1.38 1.66.34 3.37.38 5.07.08 4.78.66 9.55 1.23 14.3"/>
<path class="secondary" d="M130.13 110.17c-.47 0-.9-.62-.86-1.1-.26-.53-.26-1.03-.26-1.71-.11.04-.26.13-.38.16-.24.05-.42 0-.57-.14-.45-.44-.51-1.13-.36-1.73a1.05 1.05 0 01-.18-.52 4.97 4.97 0 01-.03-1.37.9.9 0 01-.41-.1c-.58-.24-.95-.93-.78-1.71-.47-.39-.5-1.42-.55-2.02-.04-.59.11-1.18.31-1.73a.75.75 0 01-.47 0 .9.9 0 01-.3-.26c-.32-.36-.5-1-.63-1.44a2.99 2.99 0 01.07-1.73 5.06 5.06 0 01.13-2.59.98.98 0 01-.73 0 1.55 1.55 0 01-.95-1.05c-.21-.7-.33-1.73.06-2.36 0 0-.12-.75-.07-1.83.03-.67.27-1.59.35-1.9L122.51 81v-2.99l6.5-1.05 1.1 6.04.25 7.54.58 6.22.6 4.47v5l-.56 2.54-.28 1.38"/>
<path fill="none" d="M124.86 92.2c.05-.88.33-2.35.9-3.18.27-1.36.6-2.5.97-3.38"/>
<path fill="none" d="M126.05 98.2c-.32-1.87.73-4.29.73-4.29s.08-2.21.68-3.15"/>
<path fill="none" d="M127.5 103.65c.06-.59.19-1.17.38-1.72-.2-.65.09-1.36.26-2.02.17-.66.47-1.3.81-1.9"/>
<path fill="none" d="M129.01 107.36s.08-1.3.33-1.9l.03-.7a6.25 6.25 0 01.64-2.54"/>
<path class="secondary" d="M102.68 95.94a4.44 4.44 0 002.37 2.7s1.7-.66 2.38-2.7c.63 1.2 2.43 1.79 2.43 1.79s1.71-1.6 2.23-3.26c.38.45 1.15 1.25 1.74 1.4a5.44 5.44 0 002.21-2.52c.33.25.68.48 1.07.66.34-.02.58-.3.76-.58.52-.78 1.2-2.27 1.4-3.18l.97.45a5.55 5.55 0 001.6-2.69c.33-1.44.28-2.42.32-3.46.36.34.85.67 1.36.7.3-.39.67-1.32.76-2.05.16-1.4.07-3.38-.14-4.38 0 0 .96.37 1.27-.14a8.8 8.8 0 00.92 5.43c.4.1.81-.24 1.1-.55a9.9 9.9 0 00-.93 3.9c.02 1.25.17 3.05.63 4.13.28.04 1.02-.32 1.29-.54-.4 1.75-.72 4.08.3 5.6.17 0 .54-.5.65-.61a9.98 9.98 0 00-.42 3.45c.01.62.27 1.35.51 1.8.28 0 .58-.2.83-.44a6.48 6.48 0 00.62 5.06l-.75 4.38.05-.2c-.3 1.22-.6 3.16-.46 4.4.43-.6.57-1.52.88-2.22.63-1.4.9-3.1 1.25-4.6.51-2.18.9-4.38 1.19-6.6.56-4.39.9-9.58.71-14.19-.38-9.03-2.88-15.76-3.78-17.5a27.7 27.7 0 00-4.85-7.08c-1.6-1.63-3.6-3.23-5.96-3.15-2.63.07-3.65 1.5-4.28 3.66a15.72 15.72 0 00-.38 5.61c.13 1.45.7 3 .52 4.44a4.43 4.43 0 01-1.8 3.07c-1.25.85-3.03.11-4.88.42-1.3.22-1.47.8-2.42 1.27-1.02.52-1.35.53-2.98.53"/>
<path fill="none" d="M110.6 80.83c.03.14.43.21.56.27a1 1 0 00.43.04c.42-.04.8-.24 1.12-.5.3-.26.55-.58.8-.9.58-.2 1.17-.46 1.63-.85.46-.4.8-.99.75-1.58.22 0 .4-.18.52-.36a2.2 2.2 0 00.4-1.58c.42-.33.58-1.42.59-1.93"/>
<path fill="none" d="M130.9 105.93c.47-2.25.65-5.97.73-8.45a71.1 71.1 0 00-.49-11.23 55.12 55.12 0 00-3.89-14.16"/>
<path fill="#f2bc50" d="M99.83 60.25a8.25 8.25 0 110 16.5 8.25 8.25 0 010-16.5z"/>
<path fill="#f2bc51" d="M99.97 72.88h1.18c-.04.34-.03.83.1 1.36.16.56.42 2.7.8 3.16.6.73 1.08.64 1.68 1.08.27.63.87-.56 1.14-.16.51.77 1.42.75 2.03.64-.37-.57.66-.9.81-2.75.15-1.83-.88-3.25-.88-3.25a2.75 2.75 0 01-.4-1.76 5.96 5.96 0 00-.51-3.23c-.52-.92-1.1-1.6-1.38-1.95-.12-1.46-1.41-2.7-2.7-3.15-.98-.36-2.03-.08-2.03-.08h0s-1.06-.27-2.05.08c-1.28.45-2.57 1.7-2.69 3.15-.28.35-.84 1.03-1.38 1.95-.53.94-.52 2.17-.46 3.23a2.7 2.7 0 01-.4 1.76s-1.03 1.42-.88 3.25c.15 1.84 1.19 2.18.81 2.75.65.09 1.67.09 2.03-.64.22-.43.83.78 1.1.16.86-.64.87-.14 1.67-1.08.39-.46.64-2.6.8-3.16.13-.52.15-1 .1-1.36h1.19"/>
<path d="M108.7 136.59c1.14 1.04 2.03 2.9 1.74 3.94-.92.47-2.28-.14-3.09-.66-.9-.59-1.38-1.62-2.29-2.2"/>
<path d="M91.15 136.18c-.98 1.2-1.6 3.15-1.18 4.16.99.33 2.24-.46 2.97-1.1.83-.7 1.15-1.78 1.96-2.48"/>
<path d="M114.02 134.05a4.2 4.2 0 00-1.43-2.53c-.9-1.28-2.72-5.4-3.2-8.22-1.08-6.3-.33-11.1-1.3-17.4-.7-4.53-1.99-8.78-1.99-11.84l-6.91-1.39-5.5 1.4c0 3.05-1.3 7.3-2 11.82-.97 6.32-.22 11.13-1.3 17.41a28.3 28.3 0 01-3.2 8.22 4.21 4.21 0 00-1.43 2.53c-.1.85.18 1.5.89 1.96.8.51 2.02 1.44 3.07 1.32.53-.07 1-.66 2.07-.44 1.45.3 2.08 1.32 2.96 1.8 1.57.83 3.76.95 5.15.93 1.4.03 3.58-.1 5.15-.94.88-.46 1.5-1.48 2.96-1.8 1.07-.22 1.54.37 2.08.45 1.04.12 2.26-.8 3.06-1.32a1.9 1.9 0 00.87-1.96z"/>
<path d="M99.83 75.2c-.46 0-2.04 1.52-3.15 2.07-.49.25-1.16.4-2.05.46-.71-.15-1.07.15-1.65.15-2.77.15-4.02 3.02-4.2 3.94-.17.92-1.8 4.5-2.06 6.1a36.3 36.3 0 01-1.29 4.57s-.95 2.07-.94 3.14c.01 1.1.33 2.73.33 2.73s-.07 2.49.14 4.05c.13.9.59 1.25.59 1.25l.42 1.76s1.32.07 3.55-2.43c2.24-2.5 1.8-4.07 1.8-4.07s-.9-.95-1.49-2.72c-.35-1.07-.26-3.32-.26-3.32s.85-1.14 1.72-2.95c.71-1.51 1.2-3.82 1.2-3.82 0 3.19 1.1 3.22 1.1 8.03l5.86 1.53 6.7-1.53c0-5.34 1.1-4.83 1.1-8.03 0 0 .49 2.3 1.2 3.82a18.73 18.73 0 001.72 2.95s.09 2.25-.26 3.32c-.6 1.77-1.49 2.72-1.49 2.72s-.44 1.58 1.8 4.07c2.23 2.49 3.55 2.43 3.55 2.43l.42-1.76s.46-.35.59-1.25c.21-1.56.14-4.05.14-4.05s.32-1.64.33-2.73c.01-1.07-.94-3.14-.94-3.14s-1.03-2.95-1.3-4.56c-.25-1.62-1.88-5.18-2.05-6.1-.17-.92-1.43-3.79-4.2-3.95-.42-.04-.85-.28-1.5-.04-.58-.24-1.75-.33-2.2-.57-1.1-.55-2.69-2.06-3.15-2.06"/>
<path d="M85.38 103.55c-.15 1.9.59 1.87.59 1.87s.05-2.8 2.2-4.83c2.15-2 3.15-1.67 3.15-1.67s.16-.47-.7-.99c-.63.03-1.84.54-3.2 1.85-1.6 1.52-1.87 3.08-2.04 3.77z"/>
<path fill="none" d="M99.88 136.81a7.35 7.35 0 004.08-.9c.84-.54 1.5-1.5 2.96-1.8 1.07-.23 1.54.36 2.08.44 1.04.12 1.13-.38 1.93-.9.4-.25.85-.47 1.34-.44.37.02.44.15.48-.3.04-.43-.16-1.4-.16-1.4"/>
<path fill="none" d="M99.88 136.81a7.35 7.35 0 01-4.08-.9c-.84-.54-1.5-1.5-2.96-1.8-1.07-.23-1.54.36-2.08.44-1.04.12-1.13-.38-1.93-.9-.4-.25-.84-.47-1.34-.44-.37.02-.43.15-.48-.3-.04-.43.16-1.4.16-1.4"/>
<path d="M106.24 92.97c.2 0-.05.8-.05 1.26 0 .53.23 1.18.15 1.2-.09.03-1.58.53-6.46.53s-6.37-.5-6.45-.53c-.09-.03.14-.67.14-1.2 0-.47-.25-1.26-.05-1.26s2.63.42 6.37.42 6.15-.42 6.35-.42z"/>
<path d="M114.36 103.55c.15 1.9-.59 1.87-.59 1.87s-.05-2.8-2.2-4.83c-2.15-2-3.15-1.67-3.15-1.67s-.16-.47.7-.99c.63.03 1.84.54 3.2 1.85 1.6 1.52 1.87 3.08 2.04 3.77z"/>
<path fill="#eabfa2" d="M111.46 103.57c.06-.3.57-1.13 1.02-1.92a8.19 8.19 0 00-2.93-2.51c-.06.48-.11.97-.22 1.38-.2.8-.63 1.87-.89 2.1-.1.08-.7.47-.9.64-.1.11-.25.45-.46.68-.2.22-.28.46-.46.9-.17.47-.27.49-.33.66-.06.17-.1.43-.1.56l-.11.2c-.23.36-.42.48-.37.58.05.07.1.12.17.15.26.14.63 0 .71-.1l.1-.13s.02.54.33.66.44.1.6.08c.18.08.3.3.55.35.26.06.44.02.58-.04.14.05.26.18.55.23.28.05.5-.05.62-.13.16.01.7.14 1.1-.5a.4.4 0 00.2-.27c.03-.11.04-.27.06-.34.12-.33.3-.64.39-1.31.13-.82-.39-1.11-.21-1.92z"/>
<path fill="#eabfa2" d="M88.42 103.57c-.06-.3-.57-1.13-1.02-1.92a8.19 8.19 0 012.93-2.51c.06.48.11.97.22 1.38.2.8.63 1.87.89 2.1.1.08.7.47.9.64.1.11.25.45.45.68.2.22.3.46.46.9.18.47.28.49.34.66.06.17.1.43.1.56.03.08.08.13.1.2.23.36.43.48.38.58a.56.56 0 01-.17.15c-.26.14-.63 0-.71-.1l-.1-.13s-.02.54-.33.66-.44.1-.6.08c-.18.08-.31.3-.56.35a.83.83 0 01-.57-.04c-.14.05-.26.18-.55.23a.84.84 0 01-.62-.13c-.16.01-.7.14-1.1-.5a.4.4 0 01-.2-.27c-.03-.11-.04-.27-.07-.34-.11-.33-.28-.64-.38-1.31-.13-.82.38-1.11.21-1.92z"/>
<path fill="#eabfa2" d="M99.87 78.55c2.71 0 3.2-1.27 3.2-1.27-.77-.66-1.1-.26-1.07-3.63h-4.27c.05 3.34-.28 2.96-1.06 3.63 0 0 .47 1.27 3.2 1.27z"/>
<path fill="#eabfa2" d="M96.05 69.57c.02-.44.03-1 .2-1.13.21-.17.29-.5.53-1.12.23-.55.8-.7 1.07-.79.47-.13.75-.24 1.18-.58.4-.32.4-.57.83-1.09.4.62.6.82.94 1.08.43.35.43.27 1.07.6.25.14.84.24 1.07.8.24.6.3.94.53 1.11.17.13.18.7.2 1.13 0 .44-.18 1.58-.28 1.95-.24.83-.24 1.22-.66 1.97-.33.6-1.82 2.14-2.86 2.14-1.04 0-2.53-1.54-2.86-2.14-.42-.75-.43-1.15-.66-1.97a9.2 9.2 0 01-.3-1.96z"/>
<path fill="#f1bb51" stroke-width=".1" d="M96.51 68.75c.11-.24.32-.46.56-.6.25-.13.52-.2.81-.22.3-.01.56.07.81.15.26.1.49.21.72.34-.27 0-.53-.04-.8-.08-.25-.05-.5-.08-.73-.08a2.28 2.28 0 00-1.37.5z"/>
<path fill="#f6f6f6" stroke-width=".1" d="M99.12 69.51a1.11 1.11 0 00-1.03-.65c-.48.02-.73.2-.9.33a.86.86 0 00-.2.27l.3.2c.22.1.39.15.7.18.29.03.49 0 .7-.1.05-.01.24-.11.3-.14l.13-.09z"/>
<path fill="#0d6793" stroke-width=".1" d="M97.61 68.94s0 0 0 0l-.02.2c0 .26.22.47.48.47.27 0 .49-.21.49-.47 0-.03 0-.1-.02-.16v-.03c-.13-.06-.28-.1-.45-.1-.2.01-.35.04-.48.09z"/>
<path fill="#f1bb51" stroke-width=".1" d="M103.26 68.75c-.1-.24-.32-.46-.56-.6a1.78 1.78 0 00-.81-.22c-.29-.01-.56.07-.81.15-.26.1-.48.21-.72.34.27 0 .54-.04.8-.08.25-.05.5-.08.73-.08a2.28 2.28 0 011.37.5z"/>
<path fill="#f6f6f6" stroke-width=".1" d="M100.66 69.51c.02-.05.29-.64 1.04-.65.47.02.72.2.88.33.18.16.22.27.22.27l-.3.2c-.23.1-.4.15-.7.18-.3.03-.5 0-.71-.1l-.29-.14z"/>
<path fill="#0d6793" stroke-width=".1" d="M102.17 68.94s0 0 0 0l.02.2c0 .26-.21.47-.48.47a.48.48 0 01-.48-.47v-.16l.02-.03c.13-.06.28-.1.45-.1.18.01.34.04.47.09z"/>
<g fill="#000" stroke="none">
<path d="M74.47 120.24a142.5 142.5 0 01-3.85-11.1l.13-.3c1.07 4 2.54 7.65 3.77 11.39z"/>
<path d="M76.37 111.58c-.8-2.97-1.98-5.77-2.89-8.84l.15-.25c.75 3.06 2.23 6.2 2.79 9.1z"/>
<path d="M77.43 99.73c-.9-2.11-1.52-4.34-2.27-6.61l.2-.07c.7 2.19 1.4 4.61 2.1 6.66z"/>
<path d="M79.17 93.25c-.9-2.8-1.79-5.08-2.83-7.9l.2-.07c.95 2.7 2.03 5.4 2.67 7.96z"/>
<path d="M74.26 95.01c-.3-1.82-.71-3.47-1.13-5.2l.07-.31c.55 1.83.99 3.72 1.11 5.5z"/>
<path d="M72.8 99.62c-.4-1.58-.72-2.8-1.17-4.35l.16-.21c.41 1.5.83 3.18 1.06 4.55z"/>
<path d="M71.23 105.12a17.77 17.77 0 00-.85-3.8l.13-.18s.71 2.62.75 3.98z"/>
<path d="M75.66 90.48c-.16-2.58-1.05-5.45-1.62-7.5l.16-.37c.74 2.59 1.39 5.25 1.51 7.86z"/>
<path d="M75.68 62.79c-.3.4-.51.82-.73 1.23-.14-.37.3-1.1.73-1.23z"/>
<path d="M78.87 69.54c-.74 1.57-1.44 3.27-1.22 5.04.26 1.03.23 1.4 1.04.68.15-.15.71-.8.67-.37-.21.81-.57 1.6-.5 2.46 0 1.26.14 2.6.9 3.64.1.18.48.42.53.42-.45-.09-.7-.52-.93-.87a7.26 7.26 0 01-.76-3.55c.03-.73.26-1.45.52-2.13.02.35-.24.54-.4.7-1.38 1.27-1.4-1.76-1.23-2.8.24-1.15.81-2.2 1.38-3.22z"/>
<path d="M80.66 79.64c.09 1.2-.08 2.43.23 3.61.18.77.38 1.56.83 2.21.43.04.82-.16 1.22-.29.25-.07-.25.14-.32.18-.3.16-.63.37-.98.3-.28-.2-.4-.53-.56-.8a7.8 7.8 0 01-.51-4.42l.1-.78z"/>
<path d="M83.61 81.22c-.06 1.28 0 2.57.15 3.84.19 1.26.85 2.4 1.7 3.34-.17 0 .06-.06.1-.1.33-.14.66-.26.96-.43-.28.2-.56.39-.87.54-.09.03-.18.14-.27.1a5.49 5.49 0 01-1.9-3.72 14.85 14.85 0 01.13-3.57z"/>
<path d="M86.3 83.84c.06 1 .08 2.03.34 3.01.05.2.17.56.17.56l-.11.45a9.38 9.38 0 01-.4-4.02z"/>
<path d="M85.43 92.2s.03-1.47.2-2.14c-.01.64 0 1.29.03 1.93z"/>
<path d="M82.06 84.5c-.32-1.3-.03-2.5.33-3.65-.18 1.26-.25 2.4-.33 3.65z"/>
<path d="M85.54 86.99a6.76 6.76 0 01-.27-4.31c-.13 1.5.06 2.94.27 4.31z"/>
<path d="M79.84 79.11a9.8 9.8 0 01.74-4.24c-.27 1.36-.52 2.9-.74 4.24z"/>
<path d="M78.48 73.71a6.04 6.04 0 011.02-3.13c-.35 1.03-.7 2.16-1.02 3.14z"/>
<path d="M75.45 76.58c-.11-1.44.6-2.72 1.26-3.89-.45 1.32-1 2.54-1.26 3.88z"/>
<path d="M76.95 81.5c-.23-1.75.3-3.3 1-4.73-.58 1.6-.83 3.12-1 4.72z"/>
<path d="M79.08 87.22c-.32-1.74-.04-3.46.4-5.05-.2 1.71-.34 3.4-.4 5.05z"/>
<path d="M82.35 90.82c-.37-1.44-.3-2.92-.06-4.29 0 1.5.03 2.84.06 4.29z"/>
<path d="M79.11 74.84c.3-.7.71-1.36 1.2-1.96-.4.64-.75 1.29-.95 2z"/>
<path d="M82.36 73.53c-.54-1.46 0-2.73-1.1-3.47 1.36.39.96 2.47 1.37 3.4-.04.08-.2.04-.27.07z"/>
<path d="M80.46 90.3a11.09 11.09 0 01-.31-3.55c.03-.4.09-.79.22-1.16h.05a8.42 8.42 0 00-.05 2.34 14.16 14.16 0 00.37 2.28z"/>
<path d="M83.7 93.4c-.49-1.7-.48-3.42-.4-5.05h.06c-.01 1.74.25 3.4.62 4.96z"/>
<path d="M92.31 95.99c-.3-1-.32-2.07-.25-3.11.03-.32.1-.64.21-.94.1.06.21.1.02.3-.14 1.22.02 2.52.28 3.68l-.26.07z"/>
<path d="M74.33 78.76c-.92-2.66.68-5.64 1.85-7.7l.05.02c-1.23 2.63-2.34 4.9-1.64 7.55z"/>
<path d="M77.57 84.58c-.03-.4 0-.8.03-1.2a20.38 20.38 0 01.36-2.31c.09-.39.16-.77.3-1.15l.05.02-.18 1.16c-.05.38-.12.77-.16 1.15l-.12 1.17c-.02.38-.04.77 0 1.14z"/>
<path d="M75.6 78.81c.04-.23.1-.47.16-.7a16.78 16.78 0 01.67-2.05l.06.01c-.1.48-.22.93-.31 1.4l-.15.69-.14.7z"/>
<path d="M71.31 91.1a42.9 42.9 0 01-.61-3.87h.05c.29 1.23.57 2.51.84 3.8z"/>
<path d="M72.32 83.62a6.1 6.1 0 01-.45-1.85h.05c.2.59.43 1.16.66 1.73z"/>
<path d="M69.88 93.82c.41.63.55 1.43.76 2.18l-.27.1c-.2-.73-.33-1.5-.54-2.25z"/>
<path d="M72.5 72.02c.26-.52.5-1.05.78-1.58.8-1.6 1.97-2.98 3.4-4.04 1.88-1.37 4.78-1.6 5.45-3.96h.05c-.53 2.44-3.56 2.92-5.36 4.12a11.35 11.35 0 00-3.27 4.02c-.27.53-.52 1.05-.77 1.58z"/>
<path d="M73.08 81.28c-.02-1.06-.33-2.05-.38-3 .43 1.02.55 1.93.37 2.99z"/>
<path d="M72.17 88.68c0-1.5-.3-2.8-.71-4.14.85 1.33.86 2.74.71 4.14z"/>
<path d="M70.82 93.6c-.2-1.39-.43-2.77-.66-4.15.58 1.45.7 2.74.66 4.14z"/>
<path d="M69.78 98.88a9.15 9.15 0 01-.54-2.8c.38.92.5 1.78.54 2.8z"/>
<path d="M69.1 99.65a3.03 3.03 0 00.61 1.13l-.24.16a2.98 2.98 0 01-.37-1.3z"/>
<path d="M125.37 120.21c1.58-5 3.22-6.45 3.7-11.43l.2.29c-.62 5.21-1.99 6.17-3.85 11.16z"/>
<path d="M123.47 111.57c.72-3.1 1.8-5.73 2.73-8.81l.17.22c-.9 3.02-2.13 5.75-2.85 8.58z"/>
<path d="M122.41 99.7c.82-2.38 1.55-5.14 2.34-7.22l-.06.58a70.48 70.48 0 01-2.25 6.67z"/>
<path d="M120.67 93.24c.65-2.77 1.9-5.52 2.61-8.04l.24.05c-.73 2.43-2.05 5.61-2.81 8z"/>
<path d="M125.56 95.01c.19-1.87.56-3.7 1.11-5.5l.06.67c-.3.89-.38 1.19-.58 2.1-.21.9-.36 1.82-.53 2.74z"/>
<path d="M127.03 99.6c.36-1.94.43-2.68 1-4.57l.21.07c-.6 1.87-.7 2.8-1.17 4.52z"/>
<path d="M128.6 105.12c.05-1.86-.15-2.64.58-4.2l.22.1c-.82 1.6-.53 2.43-.76 4.1z"/>
<path d="M124.16 90.48c.06-2.63.83-5.5 1.5-7.63l.23.08a34.95 34.95 0 00-1.68 7.56z"/>
<path d="M124.2 62.79c.56.25.63.82.75 1.26-.2-.44-.48-.85-.75-1.26z"/>
<path d="M121.01 69.54a9.92 9.92 0 011.46 3.79c.13.88.06 1.87-.52 2.6-.38.07-.71-.34-1-.55-.12-.14-.47-.31-.36-.45.16-.17.21-.06.25.12.3.79.5 1.62.44 2.47-.07 1.2-.26 2.48-1.04 3.44-.2.23-.44.47-.76.46.57-.09.83-.68 1.05-1.14a7.7 7.7 0 00.48-3.6c0-.65-.49-1.28-.48-1.9.18-.14.32.14.45.24.2.27.83.56.87.69-.25.07.23-.34.2-.48.4-.98.22-2.1-.02-3.09-.22-.91-.66-1.74-1.02-2.6z"/>
<path d="M119.21 79.64c.14 1.16.33 2.33.11 3.5a5.64 5.64 0 01-.88 2.33c-.1.1-.2.23-.36.2-.1-.02-.3 0-.13-.2.11.02.24.03.3-.09a8.45 8.45 0 00.95-4.4c-.01-.44-.02-.9.01-1.34z"/>
<path d="M116.26 81.22a13.3 13.3 0 01.13 3.89 5.1 5.1 0 01-1.18 2.69c-.2.26-.43.5-.68.72a.07.07 0 01-.07 0 9.18 9.18 0 01-1.08-.64c.2.1.37.19.57.27l.57.25h-.08c.42-.46.8-.99 1.1-1.54a5.16 5.16 0 00.6-1.79c.08-.63.11-1.27.15-1.9 0-.66.02-1.31-.03-1.95z"/>
<path d="M113.57 83.84a7.57 7.57 0 01-.5 4.26l-.1-.44c.52-1.25.55-2.6.6-3.82z"/>
<path d="M114.2 92.34c.04-.76.03-1.52.03-2.28a8 8 0 01.15 2.57z"/>
<path d="M117.81 84.5c-.04-1.25-.18-2.45-.31-3.66.55 1.22.46 2.46.31 3.66z"/>
<path d="M114.34 86.99c.3-1.46.33-2.94.27-4.33.44 1.48.23 3-.27 4.33z"/>
<path d="M120.04 79.11a199.3 199.3 0 00-.76-4.24c.6 1.48.78 2.8.75 4.24z"/>
<path d="M121.4 73.71c-.34-1.01-.7-2.14-1.02-3.14.71.97.96 2.1 1.01 3.14z"/>
<path d="M124.43 76.58c-.22-1.33-.84-2.6-1.26-3.88a7.41 7.41 0 011.26 3.88z"/>
<path d="M122.93 81.5a20.25 20.25 0 00-1-4.73 8.46 8.46 0 011 4.72z"/>
<path d="M120.8 87.22c-.03-1.72-.22-3.47-.39-5.05.58 1.7.56 3.42.39 5.05z"/>
<path d="M117.53 90.82c.02-1.45.02-2.9.05-4.3.32 1.46.22 2.93-.06 4.29z"/>
<path d="M120.5 74.93a7.31 7.31 0 00-.91-2.05 9.26 9.26 0 011.19 1.96z"/>
<path d="M117.34 73.32c.11-.06.2-.17.23-.3.07-.48.05-1 .06-1.44.03-.97.23-1.32.96-1.51-.73.25-.7.84-.78 1.53.05.53.01.91 0 1.5a.77.77 0 01-.35.47c-.06.05-.16.01-.2-.05-.01-.07 0-.16.08-.2z"/>
<path d="M119.14 90.21c.38-1.65.48-3.08.32-4.61l.05-.01c.43 1.57.21 3.2-.09 4.71z"/>
<path d="M115.9 93.3c.51-1.6.56-3.39.62-4.96h.05c.2 1.74.01 3.46-.4 5.05z"/>
<path d="M107.29 95.9a9.5 9.5 0 00.29-3.95c.11.05.11.3.16.42a8.13 8.13 0 01-.18 3.6l-.27-.07z"/>
<path d="M125.28 78.64c.12-.29.2-.62.24-.94.24-1.84-.22-3.2-.97-4.79-.31-.6-.63-1.2-.9-1.82l.05-.02c.32.6.67 1.17 1 1.77.98 1.58 1.15 3.16 1.1 4.91-.05.34-.1.69-.25 1.02z"/>
<path d="M122.03 84.55c.03-.37 0-.76-.02-1.14a21.38 21.38 0 00-.28-2.32c-.05-.39-.11-.77-.18-1.16l.06-.02c.14.38.21.76.3 1.15.07.38.15.76.21 1.15a14.47 14.47 0 01.18 2.36z"/>
<path d="M124 78.85c-.17-.9-.4-1.92-.59-2.78l.05-.02c.37.86.61 1.8.83 2.76z"/>
<path d="M128.28 91.03l.2-.95.21-.96.2-.95.23-.95.05.01c-.02.33-.06.65-.1.98l-.16.96-.17.96-.18.96z"/>
<path d="M127.3 83.52l.35-.86a13 13 0 00.3-.88l.06.01c.01.16 0 .32-.03.48-.03.16-.08.31-.12.47l-.14.45-.16.45z"/>
<path d="M130.04 93.85a5.25 5.25 0 00-.28 1.1 10.93 10.93 0 01-.26 1.15l-.27-.1c.06-.17.12-.36.16-.54l.14-.55c.05-.2.1-.38.17-.57.06-.18.16-.36.29-.52z"/>
<path d="M127.13 72.17a48 48 0 00-.79-1.61 10.9 10.9 0 00-3.27-4.02c-1.88-1.38-4.83-1.63-5.36-4.12h.05c.67 2.33 3.64 2.8 5.44 3.96a11.86 11.86 0 013.41 4.04c.27.52.52 1.11.78 1.63z"/>
<path d="M126.8 81.28c-.25-.76-.1-1.41.1-2.12.1-.29.26-.56.28-.87.1.3 0 .62-.09.92-.2.72-.25 1.38-.29 2.07z"/>
<path d="M127.71 88.68a5.7 5.7 0 01.71-4.15c-.24.68-.39 1.38-.53 2.04-.1.7-.16 1.4-.18 2.1z"/>
<path d="M129.06 93.6c-.1-1.56.19-2.83.66-4.14l-.66 4.13z"/>
<path d="M130.1 98.88c.02-.98.24-1.9.55-2.8a8.5 8.5 0 01-.56 2.8z"/>
<path d="M130.78 99.65a3.55 3.55 0 01-.37 1.3l-.24-.17c.14-.16.26-.33.36-.52.1-.2.2-.4.25-.6z"/>
<path d="M105.83 77.73a3.1 3.1 0 00-.68-1.73c-.2-.3-.41-.63-.46-1-.02-.22 0-.44.07-.65.12.05 0 .22.06.32.04.41.25.78.5 1.11.17.27.35.53.47.83.08.26.15.52.11.8 0 .1-.03.21-.06.32z"/>
<path d="M105.5 74.02c0-.32-.02-.63-.07-.93-.07-.3-.16-.6-.26-.9-.1-.3-.2-.6-.26-.92a2.97 2.97 0 01-.03-.98h.05c.05.32.11.62.2.92.08.3.19.59.3.9.1.3.18.62.21.95.01.32-.02.65-.14.96z"/>
<path d="M104.74 73.16a3.9 3.9 0 01-.4-1.57 9.15 9.15 0 00-.75-2.7l.03-.38s.59 1.25.69 1.96c.07.42.1.84.14 1.26.04.48.08.98.32 1.41l-.03.02z"/>
<path d="M105.63 70.92c.24.32.39.7.59 1.03.2.34.44.64.7.92l-.2.17a5.15 5.15 0 01-.63-1.03c-.17-.36-.28-.73-.48-1.08z"/>
<path d="M103.33 65.4c.31.59.8 1.04 1.25 1.53.48.54.9 1.16 1.15 1.84.14.42.22.87.24 1.31-.08.02-.18.06-.09-.2-.25-1.04-.8-2-1.5-2.8-.4-.51-.9-1.02-1.05-1.68z"/>
<path d="M102.54 64c.14.22.31.43.51.61.39.36.84.64 1.25.98.12.1.24.22.35.34l-.2.17c-.5-.55-1.13-.98-1.61-1.55a1.61 1.61 0 01-.3-.55z"/>
<path d="M101.85 65.42c.27.34.68.52 1.03.77a4.2 4.2 0 011.2 1.17c.23.37.43.83.45 1.24a5.83 5.83 0 00-1.3-1.82c-.28-.25-.58-.5-.88-.72-.2-.18-.43-.4-.5-.64z"/>
<path d="M103.12 72.75s.05 1.87.14 2.51c-.22-.71-.25-1.58-.3-2.35z"/>
<path d="M104.26 76.62a5.62 5.62 0 00-.35-2.06c-.1-.34-.2-.69-.26-1.05-.04-.36-.02-.74.09-1.09l.04.01c0 .35.02.7.1 1.04.07.34.18.67.29 1.01.1.34.19.7.21 1.07.03.36 0 .73-.12 1.07z"/>
<path d="M106.58 77.97a1.19 1.19 0 01-.14-.84c.05-.43.23-.84.28-1.27.1-.57.05-1.15-.08-1.71.01-.09-.11-.23-.02-.28.4.62.5 1.4.35 2.11-.06.26-.12.51-.21.76-.1.35-.26.7-.2 1.06 0 .05.04.13.02.17z"/>
<path d="M100.22 64.1c.15-.07.32-.04.47.03.14.06.27.17.39.28l.3.32c.09.08.19.16.3.21-.19.05-.37-.03-.52-.13-.11-.07-.2-.16-.3-.25-.1-.08-.18-.17-.27-.26a1.65 1.65 0 00-.37-.2z"/>
<path d="M100.05 63.35c.33-.14.72-.2 1.07-.09.3.09.52.31.67.57a7.33 7.33 0 001 1.26 2.36 2.36 0 01-.76-.55c-.13-.16-.28-.3-.4-.47-.15-.3-.38-.56-.7-.64a2.7 2.7 0 00-.88-.08z"/>
<path d="M93.82 77.73c-.1-.35-.08-.74.03-1.08.06-.14.12-.28.2-.4l.31-.5c.19-.26.37-.54.44-.86.04-.17.06-.35.05-.53.1 0 .07.18.1.26.06.38-.06.77-.26 1.09-.25.42-.58.81-.73 1.28a3.6 3.6 0 00-.14.74z"/>
<path d="M94.15 74.02c-.1-.3-.14-.63-.12-.96.03-.33.11-.64.22-.95l.3-.9c.08-.3.15-.6.2-.92h.04c.06.32.04.65-.03.98-.05.32-.16.63-.26.93a6.63 6.63 0 00-.35 1.82z"/>
<path d="M94.84 73.14c.28-.53.3-1.13.35-1.71a5.9 5.9 0 01.6-2.5c.1-.18.23-.36.36-.52l.15.13a4.18 4.18 0 00-.83 1.83c-.17.66-.19 1.35-.32 2.02-.06.27-.15.53-.29.77z"/>
<path d="M94.06 70.93c-.2.35-.31.72-.49 1.08a5.15 5.15 0 01-.63 1.03l-.2-.17c.27-.28.5-.59.7-.92.21-.33.36-.7.6-1.03z"/>
<path d="M96.29 65.42c-.19.65-.65 1.18-1.07 1.7a6.27 6.27 0 00-1.53 2.97c-.07-.02-.16-.02-.03-.19.07-.97.49-1.9 1.11-2.64.5-.62 1.12-1.14 1.52-1.84z"/>
<path d="M97.07 64c-.13.4-.39.73-.7 1l-.75.67-.45.45-.2-.19c.61-.7 1.54-1.03 2.04-1.83l.06-.09z"/>
<path d="M97.76 65.43c-.07.2-.21.35-.35.5-.39.35-.82.64-1.18 1.01-.43.4-.76.9-1.02 1.42-.06.07-.07.27-.17.26a3.1 3.1 0 01.78-1.64c.13-.13.24-.27.38-.38.4-.34.85-.6 1.27-.9.1-.08.2-.17.29-.27z"/>
<path d="M96.65 72.51a16.2 16.2 0 01-.31 2.76c.14-.61.18-2.77.13-2.8z"/>
<path d="M95.4 76.62a2.82 2.82 0 01-.13-1.08c.03-.36.12-.73.22-1.07.1-.34.21-.67.29-1.01.07-.35.1-.69.1-1.04l.04-.01c.1.34.12.73.08 1.09a5.2 5.2 0 01-.26 1.05c-.1.34-.2.67-.26 1.01-.06.35-.08.7-.09 1.06z"/>
<path d="M93.07 77.97c.12-.42-.03-.84-.16-1.24a3.55 3.55 0 01-.17-2.04c.07-.25.16-.62.33-.79.03.15-.07.33-.09.5-.15.71-.07 1.46.13 2.16.08.3.15.6.14.92a1.1 1.1 0 01-.18.49z"/>
<path d="M99.39 64.1a.96.96 0 00-.43.27l-.3.3a1.1 1.1 0 01-.29.2.57.57 0 01-.42.08c.16-.1.3-.22.43-.35.15-.15.28-.32.47-.42l.16-.08a.46.46 0 01.38 0z"/>
<path d="M99.56 63.35c-.39-.01-.8 0-1.14.2-.19.1-.29.3-.41.46-.13.2-.3.38-.46.57-.21.2-.46.38-.73.5a7.35 7.35 0 00.98-1.22c.14-.24.33-.46.6-.56a1.46 1.46 0 011.16.05z"/>
<path d="M105.88 75.47a.86.86 0 01-.15-.59.89.89 0 01.13-.44l.19-.23.21-.22c0 .2-.1.38-.17.55l-.1.29c-.05.18-.07.37-.1.55l-.01.09z"/>
<path d="M93.79 75.47c-.02-.13-.03-.26-.07-.39a1.9 1.9 0 00-.16-.54c-.08-.17-.18-.36-.16-.53.1.1.2.19.28.3a.92.92 0 01.11 1.16z"/>
<path d="M110.09 92.8c.22-.18.5-.23.78-.2h.08l.07.02v.03l-.24.03-.2.08c-.06.03-.13.06-.19.12l-.07.07-.03.03-.2-.18z"/>
<path d="M114.2 95.86c0 .22-.02.44.09.64.11.35.3.67.49.99.13.23.2.5.27.76.05.12-.08.1-.15.1-.1.02-.14-.01-.11-.11-.03-.42-.25-.8-.4-1.18a2.82 2.82 0 01-.21-.65c-.05-.19-.02-.37 0-.56l.02.01z"/>
<path d="M114.76 101.29c0-.11-.03-.23-.06-.34-.02-.11-.04-.23-.09-.34-.09-.33-.25-.64-.37-.95-.03-.1-.07-.21-.05-.32.05.05.05.2.11.29.17.35.41.66.55 1.03.08.18.12.36.16.55.01.08-.15.05-.22.07h-.03z"/>
<path d="M89.46 93l-.05-.07-.11-.09c-.06-.04-.14-.07-.21-.1a1.3 1.3 0 00-.36-.08c0-.05-.01-.1.1-.04.13-.01.26-.02.39 0l.21.06.23.13-.2.19z"/>
<path d="M88.68 84.28c.02.44-.07.89-.2 1.3-.13.43-.3.84-.44 1.25a10.27 10.27 0 00-.65 2.5h-.05c-.04-.44 0-.89.07-1.33.08-.44.21-.86.36-1.27.16-.42.33-.81.5-1.22.17-.38.32-.79.41-1.23z"/>
<path d="M85.56 95.86c.03.24.04.49-.03.72-.06.26-.18.5-.28.74-.13.28-.25.57-.3.87 0 .08.04.2-.08.17h-.19a2.67 2.67 0 01.34-.96c.18-.32.36-.64.47-.98.06-.18.07-.37.05-.55l.02-.01z"/>
<path d="M84.73 101.24l.07-.3c.06-.21.14-.41.24-.61.15-.28.33-.54.46-.83.05-.04 0-.21.07-.15 0 .25-.14.47-.23.7-.13.3-.24.61-.3.93-.05.09 0 .24-.07.3l-.24-.04z"/>
<path d="M105.34 109.62c0 3.63-.02 7.27.26 10.89.24 2.73.6 5.46 1.38 8.09.25.86.56 1.7.88 2.54a26.5 26.5 0 01-1.94-6.1c-.8-4.3-.87-8.72-.69-13.08.04-.78.06-1.56.11-2.34z"/>
<path d="M103.4 134.75c.97-4.25.27-8.66-.66-12.85-1.14-4.99-2.4-10.05-2.17-15.2.03-.62.1-1.24.18-1.86-.41 4.16.32 8.32 1.18 12.38.96 4.4 2.23 8.8 2.1 13.35-.08 1.4-.21 2.85-.63 4.18z"/>
<path d="M104.36 100.43c.15 3.86-.31 7.77-1.49 11.46.79-3.72 1.26-7.5 1.47-11.28l.02-.18z"/>
<path d="M101.83 98.54c.05 1.88-1.2 3.42-2.2 4.89-.4.59-.8 1.2-1.09 1.85.66-2.42 2.86-4.14 3.26-6.66l.03-.08z"/>
<path d="M99.86 102.75s-.5-.28-.7-.47c-.36-.27-.7-.58-.99-.93-.15-.17-.28-.36-.41-.54.25.33.54.62.87.87.35.3 1.43.83 1.43.83z"/>
<path d="M101.02 97.62c-.09.49-.42.87-.6 1.32-.29.61-.6 1.21-.91 1.81.16-.94.53-1.85 1.13-2.6.14-.16.3-.32.38-.53z"/>
<path d="M99.88 99.7s-.85-1.15-1.26-1.65c-.23-.29-.48-.56-.74-.83.7.62 1.5 1.37 2.06 2.11.31.2.03.24.02.31z"/>
<path d="M95.7 136c-.86-.8-1.53-1.8-2.05-2.85a19.1 19.1 0 01-.92-2.15c-.16-.5-.33-1.01-.44-1.53.27 1.01.65 2 1.1 2.93.47.94 1 1.86 1.7 2.64.23.27.49.52.75.76.02.08-.1.13-.14.2z"/>
<path d="M91.34 134.2c.13-.1.2-.27.27-.42.05-.11.08-.23.12-.34.1-.33.12-.68.16-1.03 0-.25 0-.5-.06-.76.04.04.06.18.08.26a4.27 4.27 0 01-.16 2.18c-.07.1-.11.21-.2.3l-.21-.19z"/>
<path d="M97.99 136.59c1.21-2.73 1.6-5.74 1.9-8.7.43-4.54.44-9.15-.2-13.68.73 4.5.7 9.08.4 13.61-.32 3-.63 6.1-1.85 8.9l-.25-.13z"/>
<path d="M91.44 123.52a12.58 12.58 0 01-4.2 8.1c-.4-.26.28-.5.43-.73a12.5 12.5 0 003.77-7.37z"/>
<path d="M96.6 108.62a43.5 43.5 0 00-1.42 14.2 43.1 43.1 0 001.28 8.14 37.1 37.1 0 01-1.58-13.03c.13-2.3.45-4.6.99-6.86.2-.83.43-1.65.73-2.45z"/>
<path d="M94.84 101.07c.42 2.3-.2 4.34-.64 6.87-.39 1.61-.78 3.24-.87 4.9-.09-2.94.98-5.73 1.4-8.6.16-1.05.25-2.12.11-3.17z"/>
<path d="M109 134.42c.55.08 1.1.2 1.67.17.07 0 .25-.06.24-.06-.16.1-.36.12-.54.13-.46.05-.93.02-1.39.02l.02-.26z"/>
<path d="M104.86 135.37c-.4.29-.7.68-1.03 1.02-.41.44-.84.88-1.37 1.17-.1.04-.35.16-.34.14.44-.18.78-.5 1.1-.84.47-.5.83-1.09 1.32-1.57.09-.15.17-.1.25 0l.07.08z"/>
<path d="M89.45 135.27c.19 0 .36-.1.52-.18.39-.2.7-.51 1.06-.75.14-.13.16.1.18.2-.1.07-.25.08-.35.17-.36.2-.72.43-1.11.55a.64.64 0 01-.3.01z"/>
<path d="M94.4 134.64c.37.34.68.74.93 1.17.25.39.49.8.89 1.05.06.06.3.15.27.14-.16-.04-.3-.13-.45-.22-.32-.2-.56-.5-.77-.8-.3-.4-.6-.8-1.01-1.09l.14-.25z"/>
<path d="M94.26 137.03c-.53-.33-1.04-.59-1.59-.87.76 0 1.13.37 1.59.87z"/>
<path d="M96.25 99.6l-.02-.15c-.02-.05-.02-.12-.03-.2a1.75 1.75 0 01-.02-.24v-.63l.01-.35c.01-.12.02-.25.05-.37l.06-.36.08-.34.08-.32.1-.3.08-.23.08-.18.06-.16.24.12s-.04.05-.08.15l-.08.17c-.04.06-.07.14-.1.22-.03.09-.08.18-.1.27-.05.1-.08.2-.11.31l-.1.33-.09.36-.06.35-.04.34-.02.32-.01.29v.44c0 .12.02.17.02.17z"/>
<path d="M103.18 99.26c.14-1.2-.13-2.2-.55-3.36l.25-.1c.4 1.16.48 2.2.3 3.46z"/>
<path d="M104.88 95.7a5.64 5.64 0 00.39 2.94c0 .02.02.03.02.03l-.02-.03c-.63-.9-.58-1.88-.66-2.94z"/>
<path d="M94.52 97.58c-.04-.83-.1-1.12.12-1.92l.25.09c-.34.8-.28 1.03-.37 1.83z"/>
<path d="M101.58 89.64a7.12 7.12 0 00-1.11 3.79c-.12 0-.33.18-.28-.02a6.67 6.67 0 011.39-3.77z"/>
<path d="M103.78 90.26c-.23 1.03-.4 2.05-.4 3.05h-.23c-.05-.01.23-2.54.63-3.05z"/>
<path d="M95.3 93.22c.13-1.12-.32-3.01-.32-3.01l.06-.02s.6 1.9.53 3.05z"/>
<path d="M105.42 77.85c-.04.35-.06.7-.01 1.04.04.43.1.86.07 1.29l-.01.18-.01.11c0-.28-.02-.57-.08-.84l-.16-.82a5.23 5.23 0 01-.07-.97l.27.01z"/>
<path d="M94.76 77.7c.12.44.25.88.3 1.34.05.45.02.91 0 1.36a7.1 7.1 0 00-.13-1.34c-.1-.44-.26-.86-.41-1.29z"/>
<path d="M92.35 86.21c.07-1.23.21-2.57.53-3.77-.19 1.21-.24 2.7-.2 3.92z"/>
<path d="M107.11 86.18c0-.3-.08-.66-.14-.96l-.2-.92a6.92 6.92 0 01-.2-1.87c.03.62.15 1.23.35 1.82l.3.9c.08.3.14.7.19 1.01z"/>
<path fill="none" d="M94.62 81.76c.1 2-2.9 3.9-1.94 6.95.1.36.32.7.57.98.7.8 2.14 1.18 3.23 1.04a5.4 5.4 0 002.88-1.42"/>
<path d="M94.5 82.12c.06 1.02-.53 1.92-1 2.78-.4.7-.7 1.49-.66 2.31.01.72.1 1.15.68 2.05a4.26 4.26 0 004.68.27c.4-.2.77-.45 1.12-.73a4.77 4.77 0 01-4.3 1.5 3 3 0 01-2.13-1.51c-.49-.76-.45-1.71-.26-2.56.33-1.33 1.44-2.3 1.8-3.6.05-.17.07-.34.07-.5z"/>
<path fill="none" d="M104.98 81.74c-.07 2 2.95 3.85 2.05 6.91-.1.37-.3.7-.57 1-.68.81-2.12 1.2-3.21 1.08a5.38 5.38 0 01-2.9-1.4"/>
<path d="M100.27 82.94c-.2.96-.49 1.97-.77 2.86.01-1 .28-1.99.77-2.86z"/>
<path d="M98.87 83.08c.58.52.48 1.07.23 1.59.1-.57-.08-1.09-.23-1.6z"/>
<path d="M107.4 104.39c-.03.7-.33 1.22-.54 1.84-.04.18-.05.36-.04.54l-.27.01c.17-.6.44-1.17.66-1.76l.2-.63z"/>
<path d="M109.72 103.95c.05.63-.29.76-.62.87.18-.32.4-.58.62-.87z"/>
<path d="M107.81 106.72c-.48.32-.75-.06-.79-.29.21.15.54.2.79.29z"/>
<path d="M109.95 105.03c-.26-.27-.04-.56-.02-.81.2.22.03.56.02.81z"/>
<path d="M107.55 107.38c.04 0 .09 0 .1-.04l.18-.21c.02-.03.04-.06.07-.04-.04.13-.07.27-.12.4a.26.26 0 01-.08.1c-.02.02-.05.04-.05 0l-.1-.21z"/>
<path d="M108.93 107.11c-.49.37-.7.02-.8-.19.23.08.55.13.8.19z"/>
<path d="M108.63 107.75a.82.82 0 00.1-.1.55.55 0 00.1-.1l.08-.12c.04.01.01.07.01.1 0 .09-.03.18-.04.27l-.03.1-.22-.15z"/>
<path d="M109.26 107.2l.73.09c-.29.52-.76.05-.73-.09z"/>
<path d="M111.07 107.57c-.31.12-.67-.07-.79-.17.25-.03.47-.08.69-.12z"/>
<path d="M92.52 104.68c.35.72.75 1.37.81 2.09-.08-.01-.2.01-.26-.02-.04-.65-.36-1.5-.61-2.17z"/>
<path d="M90.17 103.95l.59.89c-.6-.13-.52-.57-.59-.89z"/>
<path d="M92.07 106.7c.16-.05.5-.2.76-.3h.03c-.13.55-.61.4-.79.31z"/>
<path d="M89.92 105.03c-.15-.27-.01-.55-.01-.79.39.21.09.56.01.79z"/>
<path d="M92.22 107.62a.26.26 0 01-.15-.18l-.1-.36c.04-.02.05.04.08.06l.1.13c.05.02.07.06.1.09.02 0 .04.02.04 0l-.07.26z"/>
<path d="M90.95 107.11l.77-.21.03.02c-.24.5-.7.37-.8.19z"/>
<path d="M91.01 107.9l-.07-.35-.02-.12h.03c.09.1.17.22.27.31l-.21.16z"/>
<path d="M89.9 107.28c.09-.05.48-.05.71-.08l.03.02c-.18.55-.7.16-.74.06z"/>
<path d="M88.9 107.26c.2.2.53.1.7.14-.2.24-.53.13-.79.17z"/>
<path d="M89.88 108.02a.14.14 0 01-.05-.12v-.17l.04-.2c.04 0 .09 0 .08.05-.02.05.02.1.04.14l.07.12c.01-.02-.02 0-.02.01l-.16.17z"/>
<path d="M98.81 68.76a2.4 2.4 0 00-.53-.17 1.34 1.34 0 00-.55.01c-.18.04-.35.1-.5.2-.15.1-.28.25-.45.34.15-.13.25-.29.4-.42.16-.13.34-.2.53-.24.2-.05.4-.06.59 0 .2.04.38.14.51.28z"/>
<path d="M101.08 71.47c.08.3.35.46.52.67-.43-.24-.52-.4-.52-.67z"/>
<path d="M98.85 71.45c0 .42-.23.62-.46.73.24-.17.37-.47.46-.73z"/>
<path d="M100.54 68.85c-.16.32-.26.67-.29 1.03a4.7 4.7 0 00-.03.53c-.02.18.01.32.05.53a1.65 1.65 0 01-.13-.53c-.02-.18-.01-.36 0-.56.03-.37.17-.71.4-1z"/>
<path d="M99.54 68.96c.23.07.15.27.18.32l-.19-.32z"/>
<path d="M100.47 72.08c.16 0 .32-.1.35-.26.04-.1 0-.22-.08-.28a.75.75 0 01-.18-.18.87.87 0 01-.13-.22c.13.1.25.23.4.31.09.06.16.16.15.28-.01.2-.18.38-.38.37a.4.4 0 01-.13-.02z"/>
<path d="M99.5 72.08c-.19.08-.43-.03-.48-.22a.32.32 0 01.02-.31.44.44 0 01.24-.2c.08-.04.17-.04.26-.06-.02.1-.13.11-.19.17-.08.05-.17.1-.2.19-.05.1 0 .22.08.3.05.1.17.12.27.13z"/>
<path d="M99.42 71.97c.09-.06.21-.05.3 0l.15.13c.04.04.12.04.18.04.06-.01.09-.07.13-.1.06-.06.13-.12.22-.11.05 0 .1.02.14.04 0 .06-.08.02-.12.04-.06 0-.1.05-.14.09l-.11.13c-.06.05-.14.06-.2.06a.28.28 0 01-.2-.07l-.11-.14c-.05-.03-.08-.09-.14-.1-.03 0-.08.02-.1-.01z"/>
<path d="M100.25 74.4a1.96 1.96 0 00-.67-.04c.22-.17.62-.03.67.04z"/>
<path d="M97.87 69.12c0 .13.09.22.2.22.1 0 .19-.1.19-.22 0-.13-.09-.23-.2-.23-.1 0-.19.11-.19.23z"/>
<path d="M100.96 68.76c.13-.13.31-.23.5-.28.2-.05.4-.04.59 0 .2.04.37.11.53.24.15.13.26.3.4.42-.17-.1-.3-.25-.45-.34a1.56 1.56 0 00-1.05-.2c-.17.02-.35.08-.52.16z"/>
<path d="M101.7 68.9c-.1 0-.2.09-.2.22s.1.22.2.22.19-.1.19-.22c0-.13-.08-.23-.2-.23z"/>
<path d="M100 72.42c.06.14 0 .24.01.37-.16-.08-.05-.3-.01-.37z"/>
<path d="M98.45 73.22c.13 0 .25-.05.38-.1l.36-.18c.12-.06.27-.1.42-.05.14.03.26.12.37.12.1 0 .22-.09.36-.12a.6.6 0 01.43.05c.13.07.23.14.35.19.12.05.25.08.39.1-.13 0-.27-.02-.4-.05-.13-.03-.26-.1-.37-.15a.5.5 0 00-.36-.02l-.18.07c-.06.02-.13.06-.21.06-.09 0-.15-.04-.22-.06a1.3 1.3 0 00-.18-.07.57.57 0 00-.35.02c-.12.05-.24.12-.37.15-.15.03-.28.05-.42.04z"/>
<path d="M98.45 73.22c.15.02.28.1.4.2l.35.24c.23.15.49.26.77.26.26 0 .52-.11.75-.26l.36-.25c.12-.07.25-.16.4-.18a1.3 1.3 0 00-.35.25l-.33.29a1.29 1.29 0 01-.83.32c-.16 0-.31-.03-.45-.09a1.8 1.8 0 01-.4-.22c-.12-.09-.22-.2-.33-.3-.1-.1-.2-.2-.34-.26z"/>
<path d="M100.9 73.26a.89.89 0 00-.23.07l-.22.07c-.15.06-.3.09-.47.09a1.5 1.5 0 01-.47-.09c-.15-.05-.3-.1-.44-.13.16-.03.3.03.46.06.15.03.3.07.45.06.15 0 .3-.03.45-.06.15-.02.3-.08.47-.07z"/>
<path d="M105.21 82.12c-.05 1.02.53 1.92 1 2.78.4.7.7 1.49.66 2.31 0 .72-.07 1.56-.68 2.05a4.26 4.26 0 01-4.68.27c-.4-.2-.76-.45-1.11-.73a4.77 4.77 0 004.3 1.5 3 3 0 002.13-1.51c.48-.76.44-1.71.25-2.56-.32-1.33-1.44-2.3-1.8-3.6a2.06 2.06 0 01-.07-.5z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 35 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="annulet">
<path d="M70 100c0 16.569 13.431 30 30 30 16.569 0 30-13.431 30-30 0-16.569-13.431-30-30-30-16.569 0-30 13.431-30 30m10 0c0-11.046 8.954-20 20-20s20 8.954 20 20-8.954 20-20 20-20-8.954-20-20"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 415 B

View file

@ -1,13 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/e/e1/Dwight_D._Eisenhower.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="anvil" stroke-width=".5">
<path d="m 111,116 6,5 v 9 c 0,0 0,1 -1,1 h -11 v -1 c -1,-1 -5.1,-4 -10,-4 -5,0 -10,3 -11,4 0,1 -0.5,1 -0.5,1 h -10 c -0.5,0 -1,-1 -1,-1 v -9 l 5.1,-5 7.9,-3 c 1.2,-2 1,-3 1,-6 0,-11 -12,-15 -22,-16 C 63,91 62,89.4 62,87.9 v -6.2 c 0,-0.9 0.5,-1.5 1.6,-1.5 H 108 c 1,0 2,0.6 2,1.5 v 0.6 c 0,1 0,1.5 1,1.5 h 2 c 1,0 1,0 1,0.5 v 1 c 4,0 26,0 26,0.6 0,5.6 -7,13 -18,14 -10,2.1 -19,3.1 -19,10.1 0,4 4,4 8,6 z"/>
<g fill="#000" stroke="none">
<path d="m 107,87 c 0,-2.2 -1,-3.6 -3,-3.6 H 86 v 16.5 c -0.6,-1.6 -0.6,-3 -0.6,-4 v -13 H 104 c 3,0.1 3,2 3,4.1 z"/>
<path d="m113 96c0-3-1-8.3 3-8.7l20-.5-20 1c-3 .2-3 5.2-3 8.2z"/>
<path d="m105 127c-8-5-14-4-22 0 7-5 16-5 22 0z"/>
<path d="m 79,118 c 2.8,-2 6.5,-4 7.2,-7 h 0.4 c -0.3,3 -5,6 -7.6,7 z"/>
<path d="m 110,118 c -4,-2 -6,-4 -7,-7 h 0 c 0,3 3,6 7,7 z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/f/f1/Abildgaard.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="apple" stroke-width="1">
<path d="M80.96 73.92c-1.92 0-5.44.64-8.32 2.56-5.12 3.2-9.6 11.84-9.6 22.08 0 11.52 4.8 23.04 10.88 30.4 5.44 6.08 12.16 8.32 14.4 8.32 5.12 0 6.4-1.6 11.2-1.6s6.08 1.6 11.2 1.6c2.24 0 8.96-2.24 14.4-8.32 6.08-7.36 10.88-18.88 10.88-30.4 0-10.24-4.48-18.88-9.6-22.08a16.3 16.3 0 00-8.32-2.56c-5.44 0-12.8 3.52-18.56 3.52s-13.12-3.52-18.56-3.52z"/>
<path fill="none" stroke-width=".5" d="M90.56 135.36c10.56-3.84 11.2-1.6 17.92-.32"/>
<path class="secondary" d="M100.48 79.68s.32-3.52-.64-8.64c-1.28-5.44-2.88-8-2.88-8s-.32-.64-1.92-.32c-1.28.32-1.28 1.28-1.28 1.28s2.24 1.92 3.84 7.36c1.28 4.48 1.28 8.32 1.28 8.32s.32.32.96.32.64-.32.64-.32z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 931 B

View file

@ -1,39 +0,0 @@
<svg fill="#d7374a" stroke="#000" version="1.1" viewBox="50 50 200 200" xmlns="http://www.w3.org/2000/svg">
<g id="arbalest" stroke-width="0.288">
<g>
<g class="secondary">
<path d="m98.208 75.564-2.418-6.052 4.758-.027 3.455-.03-2.333 6.085.062 2.138 3.348-8.536-.222-.732-4.317.03-5.62.04-.213.734 3.46 8.482z"/>
<path d="M96.452 109.952c-.756-.381-2.16-.107-3.021.945-.828 1.003-.915 2.199-.785 3.243.266 2.123 1.214 3.76 1.826 5.805.437 1.443.892 3.375.651 4.85-.097.604-.347 1.746-.7 1.749-.163 0-.077-.264-.127-.664-.029-.231-.281-.426-.451-.473-.225-.045-.347-.031-.536.106a.71.71 0 0 0-.282.45c-.059.333.066 1.683 1.302 1.674 1.94-.013 2.19-4.067 1.687-6.304-.47-2.094-1.5-4.687-1.839-6.613-.17-.949-.129-1.96.463-2.78.598-.811 1.885-1.323 2.98-.957z"/>
</g>
<path d="M98.369 139.469S97.2 117.944 96.813 115c-.43-3.256-1.727-7.218-1.736-8.467l.863-8.695s1.276-.993 1.252-5.413c-.024-4.419-1.323-5.686-1.323-5.686l.9-13.135c-.005-.57 1.397-1.048 3.135-1.06 1.738-.012 3.146.446 3.15 1.016l-1.346 65.87s-.146.49-1.652.501c-1.507.01-1.687-.463-1.687-.463z"/>
<g stroke="none" fill="#000">
<path d="M98.986 139.458c-.69-16.227-1.147-33.14-1.417-49.383-.067-4.812-.163-11.716-.183-16.467l1.6 65.85z"/>
</g>
<path class="secondary" d="M101.456 78.012c.04 0 .068-.014.102-.035 2.747-2.198 6.975-2.424 10.333-.825 3.133 1.499 4.74 4.284 5.556 6.342s1.59 4.211 3.143 5.796c.807.822 1.877 1.446 2.896 1.643.89.177 1.752.028 2.379-.594.06-.061.17-.062.238.005.922.91 2.056.963 2.795.816.163-.029.273.174.145.29-1.35 1.218-3.346 2.027-5.725 1.582-2.175-.406-4.591-2.195-6.342-5.014-1.167-1.879-3.364-5.461-6.497-6.96-3.351-1.606-7.579-1.38-10.333.826-.027.027-.061.034-.102.034l-.122.001a.183.183 0 0 1-.102-.033c-2.778-2.16-7.008-2.327-10.343-.681-3.112 1.542-5.266 5.148-6.4 7.05-1.711 2.843-4.102 4.665-6.271 5.101-2.373.478-4.38-.302-5.747-1.5-.123-.108-.022-.32.14-.293.748.13 1.875.068 2.785-.855.06-.061.17-.076.237-.008.636.6 1.499.736 2.387.56 1.03-.21 2.085-.843 2.873-1.683 1.523-1.6 2.275-3.77 3.062-5.84s2.355-4.876 5.467-6.418c3.329-1.653 7.559-1.486 10.344.68.027.028.061.034.102.034z"/>
<g stroke="none" fill="#000">
<path d="M102.007 79.19c3.333-2.054 8.05-2.066 11.07.574 1.85 1.677 3.102 3.895 4.339 6.032 1.476 2.4 3.275 6.276 6.467 6.458.631.03 1.268-.07 1.878-.278-1.185.477-2.603.493-3.735-.15-2.27-1.308-3.474-3.764-4.793-5.914-1.257-2.116-2.48-4.293-4.298-5.977-2.978-2.614-7.574-2.643-10.928-.746z"/>
<path d="M74.348 92.321c4.314 1.464 6.48-3.25 8.252-6.29 1.254-2.214 2.493-4.551 4.436-6.248 2.997-2.533 7.586-2.524 10.878-.558-3.311-1.796-7.785-1.772-10.74.733-1.91 1.704-3.123 4-4.39 6.188-1.771 3.054-4.127 7.808-8.436 6.175z"/>
</g>
<g>
<path class="secondary" d="M100.612 105.844c-.291.158-.637.153-.937.007l-27.3-14.086a.342.342 0 0 1-.145-.454.342.342 0 0 1 .454-.146l27.306 14.079c.095.053.21.046.312-.002l27.107-14.459a.338.338 0 0 1 .456.14.338.338 0 0 1-.14.456z"/>
</g>
<circle class="secondary" transform="rotate(44.6)" cx="145.48624" cy="4.90095" r="1.3248"/>
</g>
<g>
<path class="tertiary" stroke-width=".24" stroke-linejoin="round" d="M100.368 85.555c.004 2.484.76 6.695 1.893 10.468.326 1.077.687 2.147.844 3.286.157 1.14.105 2.382-.37 3.356-.475.974-1.435 1.606-2.28 1.259l-.895.006c-.846.338-1.801-.28-2.283-1.254-.475-.98-.538-2.216-.376-3.35.161-1.136.52-2.21.839-3.285 1.12-3.776 1.865-7.99 1.868-10.468z"/>
<g stroke="none" fill="#000">
<path d="M100.627 92.416c.223 1.797.629 3.573 1.238 5.293a25.757 25.757 0 0 1-1.476-5.257z"/>
<path d="M100.46 95.649a25.256 25.256 0 0 0 1.583 5.202 25.473 25.473 0 0 1-1.814-5.147z"/>
<path d="M100.4 97.869c.223 1.797.63 3.573 1.238 5.293a25.757 25.757 0 0 1-1.475-5.258z"/>
<path d="M99.595 92.45c-.3 1.808-.79 3.577-1.457 5.265a24.887 24.887 0 0 0 1.22-5.297z"/>
<path d="M99.767 95.694a24.928 24.928 0 0 1-1.804 5.151 25.842 25.842 0 0 0 1.573-5.204z"/>
<path d="M99.83 97.9c-.3 1.808-.79 3.576-1.457 5.264a24.887 24.887 0 0 0 1.22-5.296z"/>
</g>
<path class="tertiary" stroke-width=".24" stroke-linejoin="round" d="m99.445 71.917.028 33.127s.15.175.557.172c.394-.003.515-.18.515-.18l-.027-33.113z"/>
<path class="tertiary" stroke-width=".24" stroke-linejoin="round" d="M99.947 60.142s-.513 3.472-2.244 5.379c.861.781 1.733 2.22 1.74 4.074l-.01 3.523s.15.176.558.173c.394-.003.514-.18.514-.18l.01-3.523c0-1.86.873-3.292 1.73-4.079-1.745-1.895-2.258-5.367-2.258-5.367z"/>
<g stroke="none" fill="#000">
<path d="M99.965 61.832a37.49 37.49 0 0 1 .008 6.049 38.288 38.288 0 0 1-.008-6.049z"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1,24 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:%D0%A6%D0%A3_%D0%92%D0%A1%D0%9F.svg" author="Inkscape'r" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="arbalest2" stroke-width=".3" transform="translate(55 60) scale(1.2)">
<path class="secondary" d="M31.62 39.63a17.2 17.2 0 003.66 2.99c-4.03 2.5-7.13 5.74-8.86 10.07l-.26-.68c-.06-.17-.02-.3 0-.42.12-.66.4-1.25.7-1.84 1.34-2.8 3.8-4.89 6.25-6.98l-2.32-2.32z"/>
<path class="secondary" d="M55.1 9.34l-1.5 1.5c-.16.16-.25.35-.31.56a9.36 9.36 0 00-.27 3.4l2.18 2.18c1.2.08 2.31.07 3.4-.26.2-.07.4-.16.56-.32l1.5-1.5zm0 1.1l4.46 4.46-.95.95a.6.6 0 01-.23.12c-.88.27-1.83.27-2.88.22l-1.69-1.7c-.05-1.04-.05-1.99.22-2.87a.6.6 0 01.12-.23z"/>
<path d="M55.15 14.85a6.46 6.46 0 00-2.03-1.45c-.5-.21-.84-.21-.84-.21a.25.25 0 00-.18.09l-6.52 7.62c-.37.43-.82 1-1.27 1.3-.23.16-.45.25-.65.26-.2 0-.4-.06-.64-.28a.25.25 0 00-.36.02c-3.98 4.66-7.9 9.47-11.98 13.68a23.28 23.28 0 01-5.66 4.59L11.58 55.58a.25.25 0 00-.06.17s0 .24.12.57c.12.32.36.76.82 1.22.46.46.9.7 1.22.82.33.12.57.12.57.12.06 0 .12-.02.17-.06l15.11-13.44a23.28 23.28 0 014.58-5.67c4.22-4.08 9.04-8 13.7-11.97.1-.1.1-.26.01-.36-.22-.24-.28-.44-.28-.64.01-.2.1-.42.25-.65.31-.45.88-.9 1.31-1.27l7.62-6.52a.25.25 0 00.1-.18s-.01-.34-.22-.84c-.21-.5-.63-1.2-1.45-2.03z"/>
<path class="tertiary" d="M40.23 29.03l1.44-1.44-2.33-.1 2.08-2.1 2.41.12 15.4-15.39-2.21-.07 6.37-3.44-3.44 6.37-.07-2.2-15.4 15.39.12 2.4-2.08 2.09-.11-2.33-1.44 1.44-.56-.18z"/>
<path d="M51.38 13.79c-1.75-3.07-4.8-5.52-9.94-5.02-3.7.35-9.71-1.2-9.88-3.99l-.48.16c-.13.04-.22.17-.22.32-.25 3.52 5.68 5.21 8.65 5.37 7.23.4 8.56 2.99 10.33 4.76"/>
<path fill="#000" stroke="none" d="M48.96 12.34a9.23 9.23 0 00-1.8-1.35 10.16 10.16 0 00-4.91-1.29l-1.24.02c-2.89.02-5.78-.74-8.29-2.17a.13.13 0 10-.12.22A16.83 16.83 0 0041 9.97l1.24-.02c1.67.02 3.34.43 4.78 1.26a9.02 9.02 0 013.15 3.02.13.13 0 10.21-.14 9.23 9.23 0 00-1.43-1.75z"/>
<path d="M33.03 6.04a.38.38 0 00-.65.22 7.4 7.4 0 01-.74 2.37.38.38 0 10.68.31c.42-.89.69-1.64.8-2.59a.38.38 0 00-.1-.31z" />
<path d="M56.21 18.62c3.07 1.76 5.52 4.8 5.03 9.94-.36 3.7 1.18 9.71 3.98 9.88l-.16.48c-.04.13-.17.22-.32.23-3.52.24-5.2-5.69-5.37-8.66-.4-7.23-2.99-8.56-4.76-10.33"/>
<path fill="#000" stroke="none" d="M57.66 21.04c.52.54.98 1.15 1.35 1.8.85 1.49 1.27 3.2 1.29 4.91l-.02 1.24c-.02 2.89.74 5.78 2.17 8.29a.13.13 0 11-.22.12 16.83 16.83 0 01-2.2-8.41l.02-1.24a9.91 9.91 0 00-1.26-4.78 9.02 9.02 0 00-3.02-3.15.13.13 0 11.14-.21c.64.4 1.23.88 1.75 1.43z"/>
<path d="M63.96 36.97a.38.38 0 01-.22.65c-.86.1-1.5.34-2.37.74a.38.38 0 11-.31-.68c.89-.42 1.64-.69 2.59-.8a.38.38 0 01.31.1z" />
<path d="M32.78 9.83a.38.38 0 00-.6.4l7.22 20.14a.38.38 0 00.23.23l20.14 7.23a.38.38 0 10.25-.7l-19.97-7.18-7.17-19.97a.38.38 0 00-.1-.15z" />
<path d="M52.43 13.49c.14.14.14.37 0 .51l-2.23 2.23a.36.36 0 11-.51-.51l2.23-2.23a.36.36 0 01.5 0z"/>
<path d="M51.5 13.03c.15.14.15.37 0 .51l-1.76 1.77a.36.36 0 11-.51-.51L51 13.03a.36.36 0 01.5 0z"/>
<path d="M56.51 17.57a.36.36 0 00-.51 0l-2.23 2.23a.36.36 0 10.51.51l2.23-2.22a.36.36 0 000-.52z"/>
<path d="M56.97 18.5a.36.36 0 00-.51 0l-1.77 1.76a.36.36 0 10.51.51L56.97 19a.36.36 0 000-.5z"/>
<path d="M32.05 9.44l1.37.25a.37.37 0 11-.14.74l-1.37-.26a.37.37 0 11.14-.73z"/>
<path d="M31.57 8.33l1.36.25a.37.37 0 11-.13.74l-1.37-.25a.37.37 0 11.14-.74z"/>
<path d="M60.56 37.95l-.25-1.37a.37.37 0 10-.74.14l.26 1.37a.37.37 0 10.73-.14z"/>
<path d="M61.67 38.43l-.25-1.36a.37.37 0 10-.74.13l.25 1.37a.37.37 0 10.74-.14z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -1,68 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Leonid 2" source="https://commons.wikimedia.org/wiki/File:Coat_of_Arms_of_Tura%C5%AD,_Belarus.svg" license="https://creativecommons.org/licenses/by-sa/3.0"/>
<g id="archer" stroke-width=".249">
<path class="secondary" d="m105.906 70.382.929-1.865c.318-.638.98-.508 1.032.213l.151 2.078-2.112-.426z"/>
<path d="M101.628 118.623a19.974 19.974 0 0 1-2.16 3.845c.188 1.243.686 1.256.911 1.722.371.77-.385 1.64-1.342 2.281-1.673-1.09-3.352-2.464-5.114-4.161l-1.418 1.324c-1.186-.424-.242-3.86-.274-6.122 3.14-.182 6.237.496 9.397 1.11"/>
<path d="M105.345 119.263c1.221 2.979 2.437 6.17 3.981 6.325l.762-1.511c2.04.9 3.705 1.028 5.442 1.244.796-1.707.793-2.715-.025-2.917a3.484 3.484 0 0 1-.961-.573c-.027-.754-.123-1.891-.433-2.656-2.644.765-5.718.535-8.766.088"/>
<path d="M92.49 123.63c-1.187-.424-.226-3.855-.259-6.117m6.841 8.922c.96-.643 1.68-1.471 1.308-2.244-.236-.49-.773-.48-.934-1.916-.063-.563-.311-.889-.686-1.157m2.836-2.396a19.076 19.076 0 0 1-2.127 3.75m15.074-.672c-.027-.766-.121-1.895-.443-2.661m1.45 6.128c.791-1.706.778-2.66-.041-2.862-.728-.28-1.223-.792-1.732-1.29m-4.429 4.475c-1.554-.136-2.76-3.302-3.986-6.29" fill="none"/>
<path d="M92.031 117.525c4-.277 7.927.868 12 1.532 4.582.747 9.379 1.254 12.804-1.17-.544-1.951-1.535-3.545-2.105-5.403-3.943 2.544-12.512-1.43-20.328-.957-.923 1.804-1.878 3.979-2.37 5.998z"/>
<path d="M95.662 107.896c-.424 1.335-1.412 2.515-1.7 3.842 3.35.422 6.708.835 10.048 1.499 4.742.943 9.17 1.404 11.217-.92-.743-2.464-3.35-5.453-3.448-9.622-.033-1.431-.367-2.402-1.317-3.192l-12.123-.428c-1.021 1.484-1.631 5.524-2.677 8.821z"/>
<path d="m99.456 99.121-1.9 1.901m1.253-1.921-.888.888m13.812 1.986-2.513-2.516m2.56 3.234-3.254-3.259m3.297 3.972-3.992-3.996m4.091 4.767-4.785-4.792m4.96 5.639-5.655-5.663m5.926 6.605-6.62-6.63m7.017 7.7-7.712-7.724m8.265 8.948-8.96-8.973m9.654 10.339-10.35-10.363m11.035 11.72-11.729-11.745m12.2 12.889-12.895-12.913m12.688 13.377-13.383-13.402m13.018 13.706-13.712-13.73m13.306 13.999-14-14.021m13.556 14.247L99.494 99.118m13.772 14.462L98.8 99.093m13.949 14.64L98.25 99.215m13.946 14.636L98.018 99.653m13.593 14.283-13.793-13.812m13.175 13.864-13.354-13.372m12.705 13.393-12.868-12.886M109.666 114l-12.343-12.359m11.636 12.324-11.78-11.797m11.049 11.735L97.039 102.7m10.434 11.119-10.57-10.584m9.794 10.477-9.927-9.94m9.13 9.814-9.263-9.276m8.452 9.134-8.586-8.597m7.759 8.44-7.894-7.904m7.062 7.742-7.2-7.21m6.377 7.058-6.518-6.528m5.707 6.387-5.854-5.862m5.052 5.73-5.204-5.211m4.41 5.087-4.57-4.577m3.782 4.46-3.97-3.977m3.189 3.865-3.404-3.408m2.626 3.3L95 109.382m2.08 2.756-2.315-2.32m1.546 2.22-1.776-1.78m1.007 1.681-1.225-1.227m.458 1.13-.651-.652m17.438-10.055-1.646-1.649m-12.938 3.457 3.775-3.78m-3.999 4.675 4.647-4.652m-4.868 5.545 5.515-5.523m-5.743 6.422 6.39-6.399m-6.633 7.314 7.28-7.29m-7.55 8.232 8.198-8.21m-8.566 9.249 9.213-9.226m-9.915 10.6 10.563-10.577m-11.15 11.836 11.797-11.813m-11.736 12.423 12.384-12.4M94.79 111.843l12.436-12.452m-11.84 12.527 12.488-12.505M95.98 111.994l12.541-12.558m-11.947 12.635 12.594-12.612m-12.001 12.69 12.649-12.667m-12.058 12.745 12.705-12.722m-12.115 12.802 12.461-12.478M98.936 112.39l12.174-12.191m-11.588 12.275 11.838-11.853m-11.255 11.94 11.446-11.46m-10.865 11.55 10.996-11.012m-10.419 11.105 10.494-10.509m-9.92 10.604 9.949-9.961m-9.377 10.06 9.421-9.434m-8.853 9.536 8.93-8.943m-8.366 9.05 8.472-8.484m-7.911 8.593 8.04-8.05m-7.479 8.159 7.627-7.637m-7.06 7.742 7.226-7.237m-6.657 7.337 6.839-6.848m-6.25 6.935 6.454-6.464m-5.872 6.55 6.076-6.084m-5.484 6.163 5.698-5.706m-5.095 5.773 5.315-5.322m-4.7 5.377 4.926-4.932m-4.295 4.971 4.523-4.528m-3.871 4.547 4.1-4.106m-3.421 4.097 3.648-3.654m-2.93 3.606 3.153-3.158m-2.377 3.051 2.592-2.594m-1.706 2.378 1.905-1.907m-17.804-9.689 2.89-2.894" stroke-width=".1" fill="none"/>
<path d="m100.076 83.504-1.172 7.174c-1.165.101-2.944.897-4.117.686-1.576-1.906-.776-6.744.225-8.472 1.81-.057 3.694.025 5.064.612z"/>
<path d="m100.054 83.644-.244-.245m.15.821-1.085-1.086m.99 1.663-1.796-1.799m1.702 2.376-2.446-2.45m2.352 3.027-3.059-3.063m2.964 3.64-3.644-3.65m3.55 4.226-4.213-4.219m4.119 4.796-4.52-4.527m4.426 5.103-4.63-4.635m4.535 5.212-4.709-4.716m4.615 5.293-4.767-4.774m4.673 5.35-4.804-4.81m4.704 5.389-4.82-4.826m4.331 5.01-4.422-4.429m3.875 4.551-3.942-3.947m3.41 4.085L93.9 87.557m2.916 3.591-2.922-2.925m2.377 3.05-2.334-2.336m1.76 2.433-1.637-1.64m.994 1.667-.668-.67m.348-7.272.567-.568m-.918 1.59 1.594-1.597m-1.809 2.483 2.468-2.471m-2.61 3.284 3.248-3.252m-3.336 4.012 3.95-3.956m-3.991 4.669 4.58-4.586m-4.58 5.257 5.138-5.146m-5.097 5.775 5.623-5.63m-5.54 6.218 6.03-6.038m-5.903 6.583 5.797-5.805M94.32 90.58l5.494-5.5m-5.27 5.948 5.139-5.146m-4.82 5.498 4.688-4.695m-4.026 4.703 3.895-3.9m-3.101 3.776 2.97-2.974m-2.085 2.758 1.954-1.956m-1.055 1.728.923-.925" stroke-width=".1" fill="none"/>
<path fill="#725a42" d="M97.71 60.158c.41-.33 1.253-.278 1.468.262-.598 4.197-4.424 7.098-9.431 9.728-3.987 2.094-6.647 4.283-8.045 8.883-.833 2.74-1.264 5.49-.847 8.321.75 5.083 3.048 8.075 7.226 10.799 4.373 2.85 7.37 5.78 7.86 10.019-.52.39-1.154.271-1.525-.1-.913-5.979-5.143-7.65-9.436-10.793-3.408-2.496-5.092-5.787-5.624-9.686-.394-2.887.027-5.982.844-8.782 1.126-3.858 3.542-6.854 7.488-8.732 4.98-2.37 8.588-4.526 10.023-9.92z"/>
<path fill="#eabfa2" d="M79.882 82.142c.11-.118.261-.137.504-.15 1.312-.07 2.518.318 2.984.998l.954.11-.523 3.272-.94-.146c-.251.13-.425.207-.706.253-.438.071-.897.1-1.384.08l-.025-.36-.196.122-1.286-.076-.011.132c-.333-.162-.349-.613-.17-.971-.383-.154-.53-.517-.367-1.013-.365-.259-.453-.719-.203-1.108-.391-.324-.354-1.153.423-1.165.16-.002.324-.004.484-.001l-.038.287.337.083.164-.346z"/>
<path d="M95.375 89.134c-.399.202-.906.387-1.253.39a41.708 41.708 0 0 1-2.331-.507c.493-1.899.666-3.922.265-5.824.576.041 1.072.103 1.495.203.412-.167 1.01-.302 1.514-.355.73 2.092.705 4.107.31 6.093"/>
<path class="secondary" d="m91.792 89.017-.169-.042c-2.813-.705-5.626-1.678-8.44-2.684.423-1.134.566-2.355.462-3.4 3.778.261 6.5.17 8.38.3l.033.002c.4 1.902.228 3.925-.266 5.824"/>
<path fill="#eabfa2" d="m105.714 80.25.878-3.762-4.75-.602c-.016.368-.172.82.104 1.119.234.468-.453 1.279-.6 1.814-.063.23-.144.548.189.654.184.059.551-.058.914.03l.96 1.233 2.305-.486z"/>
<path d="M106.824 70.422c3.614.61 2.884 4.65 3.084 7.153-2.641-.648-5.576-1.196-8.44-1.382.57-2.453 2.276-6.293 5.358-5.771z"/>
<path class="secondary" d="m102.13 74.14.003-.006c2.607.092 5.21.55 7.718 1.335v.007c.017.745.008 1.472.059 2.101-2.642-.648-5.577-1.196-8.44-1.382.144-.627.363-1.344.66-2.056z"/>
<path fill="#725a42" d="M101.6 79.488c-.003.569.217.861.45 1.042l-.005.302c-.006.333-1.06.523-1.503 1.047-.228.335-.228.7 0 1.091l3.872.227 1.405-1.74-.387-2.221c-.994-.109-1.133-.078-1.45.52-.284.537-.514.664-.771.048-.074-.179-.188-.335-.42-.368a.385.385 0 0 1-.343.068c-.323-.078-.65.006-.847-.016z"/>
<path d="m115.024 75.593-2.378 3.936m.319.194 2.38-3.936m-4.278 7.071 2.02-3.333 1.232-.304 1.084-1.794-1.238.305.192-.317 1.238-.305.986-1.632-1.495.368-.369-1.498-.982 1.626.304 1.24-.191.317-.305-1.24-1.084 1.794.306 1.245-2.014 3.337.316.191z"/>
<path d="m115.893 76.119-2.378 3.936m.319.193 2.38-3.935m-4.278 7.071 2.02-3.334 1.232-.303 1.084-1.794-1.238.305.192-.317 1.238-.305.986-1.633-1.495.369-.368-1.498-.983 1.626.304 1.24-.191.317-.305-1.24-1.084 1.794.306 1.245-2.015 3.336.317.192z"/>
<path d="m116.76 76.644-2.379 3.936m.32.194 2.379-3.935m-4.277 7.07 2.02-3.333 1.232-.304 1.084-1.794-1.238.305.192-.317 1.238-.305.986-1.632-1.496.368-.368-1.498-.982 1.626.304 1.24-.192.317-.304-1.24-1.084 1.794.306 1.245-2.015 3.337.317.192z"/>
<path d="m117.626 77.167-2.378 3.936m.319.193 2.38-3.935m-4.278 7.071 2.02-3.334 1.233-.303L118.006 79l-1.239.305.192-.317 1.238-.305.987-1.633-1.496.369-.368-1.498-.983 1.626.305 1.24-.192.317-.304-1.24-1.085 1.794.306 1.244-2.014 3.337.316.192z"/>
<path d="m118.493 77.692-2.379 3.937m.32.193 2.379-3.935m-4.277 7.07 2.02-3.333 1.232-.304 1.084-1.793-1.238.304.192-.317 1.238-.305.986-1.632-1.496.369-.368-1.498-.982 1.625.304 1.24-.191.317-.305-1.24-1.084 1.794.306 1.245-2.015 3.337.317.192z"/>
<path d="m119.359 78.218-2.378 3.936m.319.194 2.38-3.936m-4.277 7.071 2.019-3.334 1.232-.303 1.085-1.794-1.239.305.192-.317 1.238-.305.987-1.633-1.496.37-.368-1.499-.983 1.626.305 1.24-.192.317-.304-1.24-1.084 1.794.305 1.245-2.014 3.337.316.191z"/>
<path fill="#725a42" d="m108.418 85.977 5.341 2.915 3.276-5.42-5.341-2.916-3.276 5.42z"/>
<path d="M118.515 87.376c.386.148.765.32 1.13.53l3.637-1.498V85.11l-2.583-2.06c1.513.142 3.033.771 4.524 2.37.635.681.573 1.225.045 1.749-.865.856-1.72 1.512-2.418 2.196-.682.668-1.779.819-2.929.864-.467.011-1 .036-1.47.022a12.093 12.093 0 0 1 .064-2.875"/>
<path class="secondary" d="M119.312 83.043c-1.678.125-3.313-.122-4.97-.358.119 1.04-.194 2.007-.447 3.004 1.567.96 3.393 1.135 5.032 1.855a16.003 16.003 0 0 0 3.266-1.283c.66-.349.717-.637.14-1.21-.848-.844-1.75-1.21-2.784-2.017.17-.023-.22.008-.237.01"/>
<path class="secondary" d="M118.908 87.55c1.1-.294 2.242-.737 3.285-1.288.66-.349.717-.637.14-1.211-.848-.843-1.75-1.21-2.784-2.017a4.956 4.956 0 0 1 2.332.22c.87.53 1.578 1.152 2.33 1.882.617.6.63.889-.114 1.368-1.14.734-2.541 1.329-3.886 1.802-.357-.291-.807-.53-1.303-.756"/>
<path d="M114.401 91.21c-1.118 3.382-2.514 6.656-4.065 7.269l-4.16-.19 1.156-13.744 6.904-.141-.34 1.285c1.43.876 3.104 1.111 4.625 1.69a11.765 11.765 0 0 0-.07 2.871c.47.015 1.003-.01 1.47-.021-.226.794-.705 1.52-1.28 2.184-.85-.142-1.654-.895-2.551-.896a4.788 4.788 0 0 1-1.689-.306"/>
<path d="m118.49 87.603-.368-.369m.306.978-1.278-1.28m2.736 3.411-.111-.112m-1.378-1.379-2.197-2.2m-2.023-2.026-.218-.218m5.74 6.419-.577-.578m-.719-.72-3.213-3.218m-1.153-1.155-.734-.734m6.168 6.847-1.02-1.02m0 0-4.554-4.561m0 0-1.25-1.253m6.564 7.246-7.222-7.232m6.938 7.618-7.595-7.605m7.26 7.941-7.917-7.928m6.802 7.482-7.458-7.468m6.374 7.054-7.031-7.04m6.316 6.995-6.973-6.982m6.163 6.842-6.82-6.829m6.266 6.945-6.922-6.931m6.751 7.432-6.858-6.868m6.683 7.364-6.735-6.745m6.556 7.237-6.609-6.618m6.425 7.104-6.476-6.485m6.286 6.966-6.338-6.348m6.142 6.822-6.195-6.203m5.991 6.671-6.043-6.051m5.832 6.51-5.884-5.891m5.662 6.341-5.714-5.722m5.482 6.16-5.534-5.54m5.289 5.966-5.341-5.348m5.079 5.757-5.131-5.138m4.849 5.527-4.902-4.908m4.593 5.27-4.645-4.65m4.3 4.976-4.352-4.357m3.95 4.626-4.002-4.007m3.39 4.065-3.442-3.446m2.739 3.414-2.791-2.795m2.088 2.762-2.14-2.143m1.438 2.111-1.49-1.492m.788 1.46-.84-.841m.137.809-.19-.19m1.102-13.104.467-.467m-.528 1.2 1.213-1.214m-1.275 1.947 1.959-1.961m-2.02 2.694 2.704-2.708m-2.766 3.441 3.45-3.455m-3.512 4.188 4.197-4.203m-4.258 4.935 4.942-4.949m-5.004 5.682 5.688-5.695m-5.75 6.428 6.434-6.443m-6.495 7.176 7.18-7.19m-7.242 7.923 7.43-7.44m-7.492 8.173 7.335-7.345m-7.396 8.078 7.829-7.84m-7.891 8.573 8.349-8.36m-8.41 9.092 8.89-8.902m-8.952 9.635 9.45-9.463m-9.512 10.196 10.023-10.037m-10.085 10.77 10.603-10.617m-10.664 11.35 11.183-11.199m-10.631 11.317 11.143-11.158m-10.502 11.188 6.976-6.986m.12-.12 3.906-3.911m-10.361 11.046 5.983-5.99m.99-.992 3.463-3.468m-9.795 10.48 4.947-4.954m1.957-1.96 2.841-2.844M109.3 98.43l3.844-3.85m3.056-3.06 2.198-2.2m-8.457 9.14 2.608-2.612m4.204-4.21 1.675-1.677m-1.201 1.874 1.579-1.581m-1.13 1.802 1.814-1.816m-1.352 2.025 1.656-1.658" stroke-width=".1" fill="none"/>
<path d="M118.507 87.436c-.256 1.738-.046 3.36.18 4.976m-8.238 5.98c1.523-.668 2.82-3.764 3.94-7.145m-3.403-.942c.343-.15.687-.373 1.03-.761 1.294 1.37 2.659 1.97 4.074 1.972.897 0 1.701.754 2.552.897.574-.665 1.037-1.368 1.253-2.153m-1.432 0c1.608-.044 3.417.054 4.387-.896.698-.684 1.553-1.341 2.418-2.197.528-.523.59-1.067-.045-1.748-1.947-2.089-3.945-2.522-5.91-2.376-1.678.124-3.313-.123-4.97-.359.12 1.04-.194 2.007-.447 3.004 2.134 1.307 4.746 1.158 6.715 2.914m-4.99-5.718c-.062 1.133-.223 2.248-.74 3.305m5.331 2.116c1.346-.474 2.747-1.069 3.886-1.803.744-.479.731-.767.114-1.367-.752-.73-1.459-1.352-2.33-1.883a4.952 4.952 0 0 0-2.331-.22c1.034.808 1.935 1.174 2.783 2.017.578.575.52.863-.14 1.211-1.043.551-2.174.974-3.274 1.268" fill="none"/>
<path class="secondary" d="M108.69 85.952c-1.33 3.965-1.845 8.257-2.218 12.605l-8.154-.322c.066-5.437.346-10.767 1.538-14.933l8.976.215-.143 2.435z"/>
<path d="m106.767 95.653-6.576-.324-1.791-.182m8.735-2.348-6.712-.287-1.931-.312m9.24-2.624-6.989-.193-1.975-.451m5.608-2.67-3.275-.01-1.828-.45m2.483-2.487c-1.069 4.929-1.446 9.956-1.655 15.008m2.804.138c.307-5.033.843-10.066 1.885-15.1" fill="none"/>
<path d="M109.904 77.568c.191 1.99.796 3.596 1.472 4.91.54 1.053.478 2.318.188 3.627-2.427.203-4.854.326-7.28.227.656-1.979.89-3.946.95-6.025.036-1.228.39-2.41.937-3.537 1.282.232 2.539.508 3.734.798z"/>
<path d="m109.91 77.608-.05-.05m.149.82-1.026-1.027m1.186 1.859-2.048-2.051m2.29 2.965-3.137-3.142m3.5 4.177-4.331-4.338m4.886 5.564-5.3-5.307m5.673 6.351-5.872-5.88m5.952 6.632-6.13-6.139m6.113 6.793-6.268-6.276m6.196 6.875-6.321-6.33m6.217 6.897-6.307-6.316m5.783 6.462-5.83-5.837m5.206 5.884-5.23-5.238m4.603 5.28-4.64-4.646m4.007 4.684-4.058-4.064m3.421 4.097-3.486-3.491m2.842 3.517-2.923-2.927m2.272 2.947-2.367-2.37m1.709 2.381-1.82-1.822m1.152 1.825-1.278-1.28m.602 1.273-.742-.742m.054.725-.209-.21m1.681-9.06.278-.277m-.696 1.367 1.259-1.26m-1.493 2.165 2.052-2.055m-2.167 2.842 2.722-2.725m-2.758 3.432 3.308-3.312m-3.341 4.017 3.887-3.893m-3.94 4.616 4.483-4.488m-4.558 5.235 4.87-4.878m-4.976 5.655 5.06-5.067m-5.206 5.884 5.311-5.318m-5.509 6.187 5.636-5.643m-5.906 6.585 6.053-6.06m-5.59 6.268 5.754-5.762m-5.098 5.776 5.278-5.285m-4.611 5.289 4.806-4.813m-4.13 4.807 4.34-4.346m-3.655 4.33 3.876-3.88m-3.182 3.857 3.383-3.387m-2.68 3.354 2.818-2.822m-2.108 2.782 2.177-2.18m-1.46 2.132 1.453-1.454m-.728 1.4.638-.639" stroke-width=".1" fill="none"/>
<path d="m107.526 83.198-4.589-.208m-.017.373 4.59.21M77.879 81.86l-.632-.615-2.7.633 2.632.876.684-.555 25.291 1.176.856.939 2.092.095-.86-.943.37.017.86.943 1.903.087-1.039-1.14 1.138-1.04-1.896-.086-.941.861-.37-.017.942-.86-2.092-.096-.946.865-25.29-1.14z"/>
<path fill="#eabfa2" d="M112.71 85.068c-.485.277-1.002.402-1.552.229-.274-.055-1.606-.376-2.153-1.01-.688.545-1.21.17-2.174-.843a.764.764 0 0 1 0-1.069c.291-.305.71-.455 1.07-.675.418-.256 1.045-.537 1.457-.316 1.016.546 1.818 1.246 2.924 1.37l2.085.234c.032.844-.194 1.645-.408 2.46z"/>
<path d="m108.445 81.848-.897.298c-.46.152-.221 1.145.04 1.402l.588.582c.288.285.587.224.866.068" fill="none"/>
<path d="m108.819 82.184-.629.166c-.453.118-.104.994.119 1.196l.747.682c.453.237.914-.15.508-.594-.164-.179-.259-.308-.49-.53.076-.003.192-.029.244-.077.346.498 1.045.918 1.6 1.17.72.327 1.449.236 2.14.04" fill="none"/>
<path class="tertiary" stroke="none" d="M92.805 114.825c3.773-.095 7.466.953 11.259 1.571 4.216.688 8.645 1.12 11.913-.663l.194.355c-3.426 1.87-7.94 1.398-12.172.708-3.824-.623-7.493-1.66-11.183-1.566zm-.316.858c3.883-.165 7.676.925 11.575 1.56 4.36.711 8.901 1.173 12.203-.831l.21.346c-3.465 2.103-8.103 1.598-12.478.885-3.93-.64-7.698-1.717-11.493-1.556z"/>
<path d="M95.375 89.134c-.399.202-.906.387-1.253.39-3.647-.68-7.294-1.928-10.94-3.233.423-1.133.565-2.354.461-3.399 4.962.342 8.101.076 9.908.504.412-.167 1.01-.302 1.514-.355.73 2.092.705 4.108.31 6.093z" fill="none"/>
<path d="M84.272 86.654c.538-1.19.801-2.407.661-3.665m5.414 5.625c.547-1.816.775-3.682.305-5.498m2.872.254c.148.365.242.857.102 1.324m6.19-1.337c-.486.21-.85.541-1.093.994m-6.927 4.644c.514-1.95.69-3.877.254-5.828m2.963-.276c1.072 2.931.647 5.71-.217 8.466" fill="none"/>
<path d="M102.447 79.503c.353.084.57-.243.503-.61" fill="none"/>
<path d="M101.615 79.505c-.006 1.256 1.004 1.078 1.084 1.62" fill="none"/>
<path class="tertiary" d="M110.156 98.414c-3.128-4.556-5.992-9.827-8.404-15.291h1.323c2.32 5.185 5.063 10.194 8.118 14.73l-.721.566-.316-.005z"/>
<path class="tertiary" d="m110.45 98.392-12.122-.433v1.147l12.122.433v-1.147z"/>
<path d="m102.808 98.108-.043 1.127m-1.24-1.156-.043 1.128m-.244-1.142-.044 1.127" fill="none"/>
<path d="m98.734 62.3-1.384-1.113-.098.279 1.36 1.116 8.552 19.527c.039-.024.078-.048.118-.07l-8.548-19.74zm-3.107 44.182-1.372.935-.06-.324 1.31-.894 11.78-22.298.102.095-11.76 22.486z" fill="none"/>
<path d="M103.62 76.85c-.646-.257-1.176-.46-1.607-.178" fill="none"/>
<path d="m78.476 83.3.69.166m.958.229.124.03.88-.035c.21.355.168.725-.26.92m-1.655-2.17.489.1m-1.017 1.86 1.43.236.773-.046c.412.318.23.738-.21.93m-1.594-.12.916.133.659-.024c.272.217.209.67-.16.79m1.493-1.79c-.42-.127-.72-.604-.748-1.072a1.34 1.34 0 0 1-.627-.304c-.444.546-.787.985-1.345.808-.252-.08-.234-.307-.082-.493.235-.287.46-.78.566-1.077a.652.652 0 0 1 .127-.23" fill="none"/>
<path fill="#f6f6f6" d="m103.747 77.54-1.011-.668-.362.65 1.373.019z"/>
<path class="secondary" d="m107.86 138.725-.11.321c2.799 1.703 5.591.946 8.415-.842l.325 1.222 3.079-.925-.412-1.455.01-.044-3.06.783c-2.766 1.753-5.498 2.501-8.247.94"/>
<path class="tertiary" d="M116.296 125.423c-2.021-.297-3.868-.314-6.208-1.346l-.888 1.755c1.341 3.269 2.796 5.656 3.78 9.056-.862.778-.748 2.66-2.758 3.452-.582.23-1.341.369-2.354.362l-.008.023c2.748 1.562 5.48.814 8.247-.94l3.059-.782c.199-.956-.233-2.206-.897-2.733.192-.883-.006-1.423-.622-1.875.403-.84.024-1.504-.46-2.83-.387-1.339-.805-2.794-.89-4.142"/>
<path class="secondary" d="M85.5 136.524c2.061 2.426 5.243 2.345 8.465 1.647l3.157.32-.018.038-.097 1.593-3.23-.193.097-1.343c-3.287.712-6.533.783-8.589-1.797l.215-.266z"/>
<path class="tertiary" d="M99.3 126.64c-1.76-1.115-3.522-2.544-5.378-4.331l-1.446 1.352c.137 3.555.101 7.111-.144 10.667-1.17.4-2.898 2.48-5.476 2.403a5.004 5.004 0 0 1-1.34-.229l-.016.02c2.061 2.426 5.243 2.345 8.465 1.647l3.157.32c.36-.768.514-1.564.223-2.423.431-.645.576-1.336.433-2.076.671-.655.89-1.91.892-3.33.097-1.4.245-2.716.63-4.02"/>
<path class="secondary" stroke="none" d="m94.004 124.295.11.102c1.629 1.525 3.207 2.758 4.92 3.705l-.195.354c-1.71-.945-3.282-2.174-4.886-3.664l-1.31.754-.203-.35zm16.766 1.246.139.059c2.008.851 3.71.792 5.675 1.095l-.062.4c-1.875-.29-3.601-.252-5.626-1.073l-.967 1.155-.31-.26z"/>
<path d="m119.17 137.002-3.061.784c-2.78 1.76-5.522 2.508-8.283.92m10.479-4.448-1.411.29m-.596-9.125c-2.021-.297-3.869-.314-6.208-1.346l-.888 1.755c1.34 3.268 2.795 5.656 3.78 9.056-1.112 1.003-.6 3.843-5.113 3.814l-.118.344c2.798 1.703 5.591.946 8.414-.842l.326 1.223 3.078-.925-.411-1.456c.222-.96-.213-2.24-.887-2.777.192-.883-.006-1.423-.622-1.874.402-.84.023-1.505-.461-2.83-.386-1.34-.804-2.795-.89-4.142zm-1.38 9.148c-.66.235-1.321.376-1.982.313m4.708-2.492-1.002.255" fill="none"/>
<path d="m97.13 138.49-3.164-.32c-3.236.701-6.431.78-8.492-1.678m11.908-.423-1.434-.215m1.828-1.867-1.792-.144m-1.076.934c-.872.064-1.745-.035-2.617-.467m7.01-7.668c-1.76-1.116-3.523-2.544-5.378-4.332l-1.446 1.352c.137 3.556.1 7.111-.145 10.667-1.361.466-3.48 3.21-6.816 2.175l-.23.285c2.056 2.58 5.301 2.508 8.589 1.797l-.097 1.343 3.23.193.096-1.593c.374-.779.538-1.587.241-2.462.432-.644.576-1.336.434-2.075.671-.655.89-1.91.891-3.331.098-1.4.246-2.715.63-4.019z" fill="none"/>
<path d="m92.193 87.147-8.692-2.093" fill="none"/>
<path class="secondary" d="m89.877 85.922-.656-.146-.255 1.153.656.145.255-1.152z"/>
<path class="secondary" d="m86.58 85.138-.655-.146-.255 1.152.655.146.256-1.153z"/>
<path d="M120.88 88.028c-1.51-1.208-5.216-1.672-6.873-2.713" fill="none"/>
<path class="secondary" d="m116.55 85.85-.634-.22-.577.729.635.22z"/>
<path class="secondary" d="m119.035 86.632-.634-.22-.577.729.635.22z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

View file

@ -1,21 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:Coa_Hungary_Family_Zutori_Szab%C3%B3_Luk%C3%A1cs_(1548).svg" author="Madboy74" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="armEmbowedHoldingSabre" stroke-width="1.15" transform="translate(38 44) scale(.3)">
<path stroke="none" d="M243.74 147.85a31.34 31.34 0 00-7.1-2.05c-2.23 13.07-2.98 26.33-2.93 39.5-.49 14.4.54 28.43 2.67 41.54.27 2.17-.08 5.5-.77 9.2-1.57 2.9-.32 6.8-.6 10.02-.1 1.15-.23 2.25-.36 3.3-.08.6-.47 1.21-.56 1.77-.53 3.53 0 6-.52 6.66-6.07.4-16.53 3.39-21.74 6.02-.02.21-.03.39-.07.61-.71 4.52-4.8 4.66-10.57 2.82-1.4-.37-2.91-.97-4.45-1.63-2.34-.96-4.85-2.12-7.45-3.34-2-1.05-4.73-1.58-6.48-.66 6.48 3.65-3 37.12-11.21 32.32-.35-.14.18.32.17.3.39 3.62 1.84 3.23 4.96 2.95 2.08 1.19 2.65-1 4.83.4 1.74 1.15 4.34.5 4.53 1.33.72 3.31 1.67 5.84 13.08 3.47 18.4-.53 29.61 6.41 48.6 4.96 23.12-1.84 29.75-6.6 39.32-28.45 3.74-10.88 6.95-28.27 8.38-44.72 1.46-16.47-1.7-32.44 1.8-51.21-5.05-5.92-8.94-12.07-15.64-14.56-10.05-8.36-13.6-11.36-27.18-14.87a57.69 57.69 0 00-10.7-5.68z"/>
<path class="secondary" d="M310.62 63.26c-77.25-1.65-135.26 99.1-160.08 177.8l15.53 6.32c23.97-69.46 38.6-92.73 74.49-125.5 1.9-1.75 6.4-2.52 8.17-4.58 13.52-15.74 33.81-36.21 61.88-54.03z"/>
<path class="tertiary" d="M146.85 240.58c4.93 5.24-4.3 30.35-9.5 49.43-10.08.4-15.32 11.65-1.18 16.09 9.35 2.95 14.66-5.72 16.7-11.56 6.34-18.2 9.71-44.99 17.94-47.23-3.43 1.07-14.86-7.64-23.96-6.73z M142.28 296.37a2.12 2.12 0 01-2.62 1.45 2.13 2.13 0 01-1.45-2.59 2.12 2.12 0 012.61-1.44 2.1 2.1 0 011.46 2.58z"/>
<path class="tertiary" d="M164.52 228.3c-4.77 5.26-9.69 9.11-13.57 9.08-3.88-.04-10.45-3.05-23.57-9.56-13.12-6.5-14.63-17.6-21.7-8.17-9.37 12.52 45.42 17.41 48.06 34.17 13.85-9.8 55.59 26.05 58.01 10.6 1.84-11.64-7.18-4.97-20.99-9.84-13.8-4.86-20.55-7.47-23.29-10.22-2.73-2.76-3.4-8.98-2.95-16.06z"/>
<g fill="#000" stroke="none">
<path fill-opacity=".3" d="M106.76 218.35c-.35.39-.7.8-1.07 1.3-9.38 12.52 45.41 17.4 48.05 34.17 13.85-9.8 55.59 26.05 58.01 10.6.06-.36.08-.66.1-.98-8.95 5.06-45.28-19.56-57.67-10.8-2.42-15.37-46.99-23.85-47.42-34.29z"/>
<path d="M163.72 229.03l.97.34c17.35-50.67 63.07-144.48 144.8-165.72-72.32 16.98-121.7 94.3-145.79 165.38z"/>
<path fill="#fd9863" d="M141.06 241.66l-8.98 3.55a10.6 10.6 0 00-1.62.92l.05.02c-.35.26-.69.47-.98.76-.14.13-.26.24-.38.38-.26.27-.55.86-.75 1.16-.5.73-.49 1.35-.64 2.2-.05.3-.16.86-.14 1.17 0 .3.04.55.1.86.04.16.08.35.13.5l-.03.04c.14.44.37.88.63 1.34l.05.02c.03.04.04.1.08.15l-4.79 4.61.57.79-1.32.67c.65 2 .98 4.28 2.73 5.47l1.27 2.51-1.68 1.5.03 1.49c-.06.17-.08.37-.1.55-.03.36-.04.67.07 1.04.06.2.17.49.27.7.2.4.5.76.87 1.19.19.21.36.44.58.65.67.68 1.52 1.36 2.57 2.08-.47.55.77-.16.91-.06l1.14 1.56c-.41-.07-1.09-.23-1.22-.16-.29.14-.57.36-.79.53-.1.08-.18.1-.27.19-.19.17-.38.38-.5.57-.18.28-.27.57-.29.9 0 .11-.09 1.58-.08 1.71.04.27.17.52.3.82.3.71 1.2 1.56 2.1 2.45.33.21.63.4.97.59.01 0 .02-.02.03 0 .33.18.67.33.99.5l.06.07c.65.34 1.2.67 1.86.93l.08-.02c.96.4 2.6.62 3.55.85h.03l.94.2c.12 0 .2.02.3.04l.3.36.6-.48c2.24 1.28 7.33.46 7.3-2.76l.1-.11c-.17-.04.01-.25-.16-.28.03.01.04-.02.07-.02 0-.54-.22-1.8-.47-2.27a5.38 5.38 0 00-1.93-1.8l.1-.07-.65-.96 2.8-.45c1.76-.44 4.34-2.19 4.55-3.37.03-.29.05-.54.03-.8-.05-.49-.24-.96-.54-1.43l-.45-.65c-.44-.48 0-.82-.73-1.27l-.43-1.15 1.08-1.9c.17-.38.12-.85-.07-1.35a7.05 7.05 0 00-1.74-2.3c-.23.11-.43.11-.67.2l1.05-.6.85-1.4-.01-1.88c-.03-.18-.03-.38-.1-.55-.34-.86-.74-2.26-1.82-3.21l-.25-.22-3.01-2.37 1.57-1.1a14.3 14.3 0 004.16-1.13c1.24-.59 2.06-1.41 2.4-2.46 1.94 2.71-3.56.88.94 4.54.84.68 1.6 1.4 2.22 2.1l.04.02 2.06 4.16.02.04c-.12.45-.2 1.04-.24 1.85a24.63 24.63 0 00-.03 3.45c.08 1.05-.37 1.91-.14 2.87l.58 2.2c-.34 2.62-4.46 13.62-3.86 16.04 5.89 5.32 10.26 5.46 18.28 4.75.27-.04.58.1 1.58.12 1.56.64 14.81-24.59 7.78-32.43a2.9 2.9 0 01-.98-.74c-2.53-6.64-11.1-10.2-14.97-13.7-2.17-2.28-4.9-2.76-7.79-2.13l-.6-.14a30 30 0 01-3.83-1.8c-.3-.1-.64-.2-.95-.26-.34-.07-.23-.19-.58-.18l-2.87.52-.73.43-.3.03-.2.28-2.44 1.67a63.2 63.2 0 00-5.94-3.41z"/>
<path fill-opacity=".3" d="M129.14 247.4l-1.3 3.55 1.13 4.6 4.85 4 3.82 3.41 3.28 2.47 3.7 2.24 2.5.27.64-.98 1.67-.4 1.4 1.42c.17 1.78-1.95 1.12-3.45 1.6-3.77 1.24-3.91.44-5.48.42-3.1-.4-5.45-1.26-7.33-2.62-5.79-1.61-9.45-4.79-10.15-8.12l-1.05 2.63 1.53 3.85 3.63 3.46 6.19 2.88 9.08.95 3.29.19 3.1-.65 1.2 1.8-2.53.98-3.1 2.1c-2.78.75-4.75-.14-6.98-.51-8.08.26-10.86-2.47-13.26-4.5l1 3 2.82 2.6 4.72 1.95 6.83 1.9 3.81-.31 1.55.81 1.68 1.95.26 1.64-1.71-.7-3.72.46c-6.48 1.21-11.21-.28-13.82-3.35l.87 2.7 2.92 2.8 5.25 2.02c-.14.17-.05.7-.29.68a8.84 8.84 0 00-3.73.7c2.73 2.88 6.97 1.86 11.45.89 2.83-.67 4.06-2.1 4.68-4.43.96-2.58-.52-3.73-1.07-5.44 1.54-1.29 7.79-1.62 3.7-7.73.23-2.07.92-2.7-.55-5.62l.9-2.94c1.93.23 3.93-.32 5.98-1.28l.02 5.37 2.8 6.32 4.29 4.3c1.22-1.7 1.6-2.18 3.76-3.29-1.66-1.26-1.26-3.06-1.3-4.75-5.97-1.83-5.57-7.62-7.08-12.2l-.44-1.03-4.74-3.79-2.66-3.14a19.38 19.38 0 01-5.2 1.52c-5 .34-8.38-.75-12.03-1.6l-2.09-.22 1.22 2.04c3.57 1.64 7.61 1.5 11.6 1.57l-.32 1.91 3.4 3.08.65 1.82-.13-.17c-.9 1.66-2.04 1.27-2.68 1.55l-3.48-1.88a14.93 14.93 0 00-4.1-1.84c-5.69-3.83-11.63-8.14-11.4-12.9zm29.43 27.43l-3.47 12.75-.18 1.13 1.96 1.92 3.62 2.37 6.62 1.31 6.28-.35 2.62-.65c2.43-1.92 3.44-4.3 4.59-6.65-3.36.04-6.19-.52-7.16-1.91-2.3 1.1-3.2 4.32-7.8 1.88-4.65-2.75-6.37-6.93-7.08-11.8z"/>
<path d="M140.64 241.49c-1.38.13-3.04.7-5.87 1.9-2.65.94-4.85 2.26-6.37 4.46-1.71 2.45-1.47 4.9-.48 7.3-2.48 1.39-4.91 3.8-5.18 6.16-.35 2.98 1.57 4.7 3.49 6.83-3.21 3.63-.68 8.37 3.46 10.77-1.53 1.35-2.04 3.2-1.35 4.88 1.27 3.1 4.28 4.74 7.15 5.63 1.53.48 3.19.56 4.9.78 3.69 1.62 8.77-1.45 7.97-3.82.66-1.64-1.13-3.73-2.7-4.85.34 0 .48-.24.82-.26 2.58-.07 5.54-1.84 6.28-3.74.4-1.07-.15-2.1-1-2.9a3.27 3.27 0 00-1.38-2.15c.12-.1.36-.11.33-.26l-.09-.33c1.7-1.81 1.06-3.83-.55-5.34.45-.4.85-.9 1.09-1.33 1.21-3.45-1.66-7.26-5.27-8.79 1.77-.2 4.61-.69 6.05-1.34.42.6.8 1.13 1.65 1.84.78.62 1.43 2.06 1.95 2.64.64.96 2.05 1.65 2.98 2.22-.62 2.11-.96 4.43-.87 6.43.08 1.48.9 2.84 1.28 4.08-.9 3.01-1.84 6.25-2.46 8.9-.4 1.74-.88 3.35-1.26 4.76-.39 1.4.05 1.26-.08 1.57-.32.67-1.2 1.78-.63 2.26 4.08 3.99 10.59 5.36 17.43 4.53 1.33-.15 1.43.5 2.78.16l.22-.43c-.19-.07-1.9-.83-2.6-.71-7.3.24-10.2 1.3-17.3-4.62 1.1-4.85 3.51-12.18 4.25-15.7a14.07 14.07 0 007.64 7.97 18.06 18.06 0 01-7.07-9.9 20.68 20.68 0 01-.1-8.77c.1-.42.46-.72.66-1.03.95-.55 1.44-1.42 1.96-2.28-.76.81-1.92 1.14-2.8 1.37-1.14-.23-1.98-1.13-2.68-1.85-.63-.7-1.36-1.38-2.2-2.05-4.5-3.66.95-1.86-.99-4.57-.34 1.05-1.17 1.83-2.41 2.42-1.67.77-4.1 1.2-6.55 1.3-1.04.07-1.94-.05-2.94-.12-1.55.02-3.14-.36-4.56-.82-.36-.16-.72-.28-1.01-.47-.74-.48-1.06-1.12-1.45-1.81 2.87.77 5.32-.17 7.39-2.1.24-.23.14-.58.26-.83.2-.97-.13-1.58-.5-2.4 1.05-.2 2.1-.38 3.12-.65.4-.1.75-.29 1.14-.4 1.87-.78 3.93-2.4 5.8-2.78.27-.07.58-.07.83-.07.72 0 1.47.28 2.06.56 1.5.7 2.71 1.31 4.14 1.87a6.98 6.98 0 015.04.1c.65.25 1.63.91 2.24 1.4.34.27.48.78.75 1.02 3.9 3.5 11.38 6.92 14.5 13.26.4.8 1.11 1 2 1.02l.09-1.08c-.55-.06-1.03-.25-1.24-.72-3.11-7.1-11.03-10.4-14.35-13.47a15.25 15.25 0 00-3.28-2.3c-1.79-.93-3.7-.78-5.56-.33-.74-.27-1.48-.58-2.04-.84-.74-.25-1.35-.73-1.93-1.04a4.81 4.81 0 00-2.6-.4c-1.7.16-4.46 1.62-6.6 2.9-.86.28-1.78.5-2.52.69-1.02.24-1.47.45-2.46.57-1.98-.02-4.33.15-5.96 1.23-1.54 1.04-2.7 3.1-1.78 4.2.05.21.18.59.25.79.21.6.83 1.32 1.28 1.77 1.7 1.58 4.1 1.86 6.17 2.07 1.06 0 1.95.05 3 .1 2.07.83 3.63 2.27 4.79 3.32 2.57 2.38 2.36 6.46-.83 6.6.56-.85.32-1.63.44-2.51-2.74-3.06-8.02-3.2-7.8.78-.88-.56-1.48-.97-2.15-1.66-2.66-3.12-6.71-4.87-9.07-8-1.6-2.3-1.63-4.43-.32-6.65 1.28-2.18 4.07-3.47 6.28-4.35 1.54-.6 4.6-1.74 6.56-2.03.33-.06-.06.15.2.15l-1.34-.75c-.05.03-.1.01-.14.04zm-3.4 6.02c.3-.08.66-.14 1-.18 1-.1 2-.04 2.88-.15.64.92.86 1.72.61 2.35-1.93 2.02-4.64 2.98-7.44 2.08-.5-1.44.52-2.74 1.75-3.53l.08-.03c.36-.23.7-.43 1.12-.54zm-8.5 8.91c2.83 2.92 6.26 4.61 9.08 7.27.83.94 3.2 2.44 3.2 2.44 1.36 1.14 4.84 2.73 6.08 1.9.16-.12.32-.37.4-.55.68-.14 1.14-.23 1.73-.5 1.5 1.41 2.51 2.84 1.2 4.46-.3-.71-.55-1.6-1.14-1.89-1.96-.94-4.8.8-6.04 2.94-4.23-.2-8.77-.24-12.4-2.35a17.17 17.17 0 01-5.63-4.77 4.64 4.64 0 01-1.2-4.06c.48-2.69 2.74-4.01 4.73-4.89zm14.54 6.12c1.38-.2 3.22.59 4.54 1.73a5.34 5.34 0 01-.99 3.34c-1.8.14-3.85-.84-5.36-2.24-.1-1.5.45-2.31 1.29-2.64.17-.08.32-.16.52-.2zm-16 6.35l.03-.02c.61.51 1.82 1.33 2.57 1.76 3.93 2.7 8.97 2.94 13.7 2.81 1.35.73 4.96-.07 6.04-.6 1.21.6 1.38 1.22 1.32 1.64-3.92.29-7.33 3.67-5.2 6.22-9.04 2.39-25.07-5.88-18.47-11.81zm19.86 1.3c.17-.04.33-.1.5-.11.43-.06.85.07 1.21.29.44.24.85.95 1.01 1.68-1.85.86-4.04 1.32-5.82.79a5.87 5.87 0 013.1-2.64zm-16.32 9.31c2.91 1.3 7.66 2.63 10.63 2.68 1.52-.08 2.39-.3 3.56.25a5.16 5.16 0 012.9 3.5c-1.73-1.5-4.35-.76-6.1-.11-1.48.57-2.41 1.73-2.1 3.27-4.57-.51-8.59-1.54-10.34-5.56-.81-1.86-.08-3.26 1.45-4.03zm18.99-4.08c.4-.13.78-.22 1.19-.3.65.48 1.3 1.06 1.35 1.62.15 2.07-3.82 4.13-5.95 3.9-1.83-2.42.66-4.35 3.4-5.22zm-6.41 10.64c.5-.12 1.03-.28 1.54-.33 1.5-.12 2.8.17 2.75 1.06-.22 3.41-6.05 3.6-7.05 2.46-.2-1.1.28-2.1 1.08-2.55a6.55 6.55 0 011.68-.64z"/>
<path d="M235.7 145.14c-3.12 25.63-4.4 58.46.16 81.76l-.03.04c.26 2.05-.05 5.3-.74 8.96-2.07 4.13.1 8.46-1.06 12.77-.76 1.83-1.28 3.9-.16 5.45l.67-1.5c-.64-1.33.1-2.3.52-3.68 1.98-4.67-1.66-9.47 1.4-12.94.7-3.71.76-6.93.46-9.24v-.02c-3.12-25.39-3.91-54.8.2-80.26 2.28.38 4.58 1.1 6.8 2 3.71 1.49 7.26 3.5 10.38 5.55 12.17 2.63 20.7 9.04 27.07 14.84 6.94 3.23 11.22 9.33 15.26 14.1-3.45 18.74-.9 35-2.33 51.3-1.45 16.4-4.04 36.52-8.5 47.03-3.43 8.09-7.21 14.44-13.43 19.04-5.6 4.1-13.11 5.54-24.64 6.47-9.43.71-16.9-.66-24.38-2.14-7.16-1.43-14.34-2.95-23.1-2.83.97-1.05 1.46-2.62 2.32-4.14 2.18-3.95 3.42-9.34 4.02-14.83.36-3.48 1.19-8.25.34-11.47-.27-1.85-.82-2.33-1.74-2.77.59.68.98 1.3.96 2.47.14.86.15 1.85.15 3-.01 2.52-.43 5.5-.78 8.64-.58 5.4-1.82 10.69-3.89 14.43-1.2 2.1-1.56 4.22-3.8 4.73-5 1.13-7.54 1-9 .37a2.88 2.88 0 01-1.53-1.37 7.17 7.17 0 01-.7-2.1c-.06-.23-.2-.44-.37-.57a2.06 2.06 0 00-.54-.27c-.36-.1-.79-.08-1.23-.12a6.05 6.05 0 01-2.6-.7 3.08 3.08 0 00-2.9-.33c-.68.22-1.06.4-1.97-.11l-.13-.07h-.2c-1.58.14-2.65.27-3.24.04a1.3 1.3 0 01-.7-.67c-.13-.26-.2-1.13-.3-1.64.84.19 1.84.36 2.64 0a7.89 7.89 0 003.1-2.62 35.33 35.33 0 005.4-10.54 49.49 49.49 0 002.27-12.44c-.1-2.5-.45-5.06-1.9-6.8a7.97 7.97 0 014.7.45l.1-.74c-2.05-.95-4.31-1.52-6.17-.53l-.88.46.84.47c2.27 1.64 1.92 4.56 1.87 6.8-.1 3.5-1.35 7.8-2.64 11.87-1.28 4.07-2.61 7.8-4.5 10.22-.93 1.23-1.71 2.07-2.62 2.47-.62.28-1.3.27-1.94.07-.3-.1-.67.26-.96.1-.88-.1.12.09-.83-.02 0 .25.05.3.1.36s-.08-.31-.03-.27l.16.17c-.02-.34.2.4.2.4.09.76.2 1.78.46 2.27.3.54.72.96 1.23 1.16 1.01.4 2.2.17 3.7.03.03 0 .04.01.07 0 1.03.44 1.91.3 2.5.1.66-.22 1-.39 1.97.23 1.01.67 2.2.78 3.1.88.44.04.84.07 1.06.12l.17.07a9 9 0 00.76 2.37 4.2 4.2 0 002.07 1.8c1.8.76 4.59.7 9.48-.13.69-.12 1.1-.23 1.66-.51 8.36.4 16.07 1.65 23.6 3.1 7.48 1.46 15.76 3.37 25.34 2.63 11.58-.9 19.13-2.55 24.98-6.78 5.87-4.24 10.91-10.66 14.77-21.98 5.22-15.29 6.48-31.53 7.74-45.4 1.98-19.38-.9-35.78 1.84-51.4-5.3-6.25-9.63-12.1-15.9-14.86-9.96-8.28-13.77-11.37-27.2-14.87a48.09 48.09 0 00-8.74-5.13 33.12 33.12 0 00-10.3-2.8zm-23.8 118.3l-.27.1.27.8c4.5-2.86 11.93-4.77 17.33-5.5 18.69-2.52 31.53 1.7 39.83 11.76-8.65-12.6-23.61-14.67-34.83-13.55-7.7.88-16.57 2.57-22.33 6.38z"/>
<path fill-opacity=".3" d="M241.03 152.3l10.65 6.35c7.87 3.38 15.77 6.65 23.43 12.75l13.95 12.33c1.73 12.57 2.38 31.3 1.48 43.65-.83 11.3-.55 16.34-3.27 26.98-.17 5.31-4.5 17.18-9.01 12.9-2.15 6.06.5 9.36.24 12.73-.48 6.38-2.83 10.45-10.8 16.9l-4.16 1.64c-3.02-2.8-3.97-6.79-3.92-11.38 0 0-4.65 6.72-4.47 5.79.2-.95-.01-6.56-.01-6.56-7.44 14.2-12.13 16.36-25.1 14.37-2.46-3.36 7.76-7.24 5.53-20.38-1.98 5.72-4.07 11.28-8.44 13.73-2.11.19-3.71 1.63-5.26 3.2l-4.26-2.92c-1.1-1.39-2.28-2.65-2.39-5.5-2 2.29-3.3 5.44-5.41 3.84-1.79.29-.67-1.02-.88-1.6 2-9.63 1.28-21.68-2.23-17.7l-.99 11.24-2.52 10.59-3.43 6.25-.86.93.28-.05c18.4-.53 29.62 6.41 48.6 4.94 23.12-1.82 29.73-6.58 39.32-28.43 3.75-10.88 5.18-27.84 6.64-44.3 1.44-16.45-2.13-30.23 1.37-49-5.05-5.91-9.47-11.94-16.17-14.42-10.04-8.36-13.61-11.37-27.19-14.88-1.1-.36-12.4-7-10.72-3.99z"/>
<path d="M233.83 256.94l.47.96c2.87-5.54 18.48-8.48 28.84-5.59-12.38-5.3-27.17-.52-29.3 4.63z"/>
<path d="M232.97 257.85l.76.22c1.96-3.57-.5-.97 1.45-4.33 3.52-6.1 10.72-7.63 17.57-8.12-6.23-.76-14.94 1.24-18.5 7.2-2.4 4-.15 2.43-1.28 5.03z"/>
<path fill-opacity=".3" d="M205.15 268.22c-.05-.02-.1 0-.17 0-1.41-.36-2.85-.6-4.23-1.07l-1.38-.54c1.4 1.14 3.22 2.1 3.4 3.76 1.58 5.85-.23 11-2.7 15.85-1.25 2.44-2.72 3.84-4.64 3.4-1.72 1.68-2.93.81-4.24.7.03-.05.07-.07.1-.13-3.61.34-1.5-1.85.44-2.57 4.86-7.56 8.14-13.97 3.84-18.28a29.28 29.28 0 00-7.17-4.28c-2.03-1.1-.97 1.81-.94 3-.36 5.35.96 12.14-1.8 16.97-3.12 5.4 2.6 7.22.77 11.87-.34.87-.42.97-.98 1.21-1.2-.45-3.07-.41-3.31-1.7a5.88 5.88 0 01.43-4.07c-.9.3-1.75.76-2.38 1.67-.77 1.57-3.3.4-4.89-.15l-.07-.1c-1.2.72-2.43.86-3.64.17-.36-.15.2.33.18.32.39 3.61 1.84 3.2 4.96 2.93 2.08 1.19 2.65-1 4.81.4 1.76 1.14 4.36.5 4.55 1.33-.07-.57-.33-.84.1-1.19 2.1-1.74 2.4-3.53 3.3-5.43.05-.09.12-.16.19-.24.74.34 1.49.66 2.18 1.06.56.67.92 1.56 1.76 1.94l1.23.77c-.55.7-.71 1.64-2.12 1.85-1.21 1.41-2.45 1.2-3.7.64.4.43.7.98 1.16 1.34 1.86.2 3.18 1.17 5.3.53.4-1.07 1.84-1.72 1.4-3.1 3.4-2 2.54-5.24 2.93-8.07 1.15-.84 2.1-3.07 3.23-4.72 1.17-.78 2.93-2.36 3.3-4.22.11-2.14.34-3.2.4-5.35-.3-1.83-.52-3.69-.85-5.5-.3-.3-.84-.65-.75-1z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -1,31 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:Coa_Hungary_Family_Balogh_-_Marosv%C3%A1s%C3%A1rhely.svg" author="Madboy74" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="armEmbowedVambraced" stroke-width="1.15" transform="matrix(0.35 0 0 0.35 51 42)">
<path fill="#fd9863" stroke="none" d="m 61,162.4 -7.88,2.1 c -0.15,0 -0.31,0.1 -0.42,0.1 -0.36,0.2 -0.71,0.3 -1.03,0.5 v 0 c -0.45,0.2 -0.88,0.5 -1.26,0.8 -0.24,0.2 -0.54,0.7 -0.73,0.9 -0.5,0.6 -0.54,1.1 -0.75,1.8 -0.1,0.3 -0.21,0.7 -0.24,1 v 0.7 l 0.1,0.5 v 0 c 0.1,0.4 0.22,0.8 0.4,1.2 v 0 0.1 l -4.46,3.4 0.4,0.8 -1.18,0.4 c 0.35,1.7 0.4,3.7 1.76,4.9 l 0.82,2.2 -1.55,1.1 -0.12,1.2 c -0.1,0.2 -0.1,0.3 -0.14,0.5 -0.1,0.3 -0.1,0.5 0,0.9 0,0.1 0.1,0.4 0.15,0.6 0.13,0.3 0.36,0.7 0.62,1.1 0.14,0.2 0.26,0.4 0.43,0.6 0.5,0.6 1.14,1.3 1.95,2 -0.44,0.4 0.66,-0.1 0.78,0 l 0.8,1.4 c -0.34,-0.1 -0.9,-0.3 -1,-0.2 -0.27,0.1 -0.52,0.2 -0.72,0.3 -0.1,0.1 -0.17,0.1 -0.25,0.2 -0.18,0.1 -0.36,0.2 -0.48,0.4 -0.17,0.2 -0.28,0.4 -0.33,0.7 0,0.1 -0.23,1.3 -0.23,1.4 0,0.3 0.1,0.5 0.17,0.8 0.19,0.6 0.86,1.4 1.52,2.2 0.26,0.2 0.5,0.4 0.76,0.6 v 0 c 0.25,0.2 0.53,0.4 0.78,0.5 v 0.1 c 0.52,0.3 0.96,0.7 1.48,1 h 0.1 c 0.78,0.4 2.12,0.7 2.9,1 v 0 l 0.77,0.3 h 0.24 l 0.22,0.4 0.55,-0.4 c 1.76,1.3 6.11,1.1 6.4,-1.6 l 3.72,3.8 c 6.4,3.1 10.04,3.8 17.39,4.5 1.08,0.1 10.06,1.4 10.61,1.6 4.3,0.6 7.45,1.6 9.55,-4.9 2.9,-4.7 1.4,-16 -6.99,-22 0,0 -2.27,0 -3.24,-1.4 -1.48,-5.9 -8.32,-9.7 -11.24,-13 -0.23,-0.3 -0.4,-0.5 -0.64,-0.8 v 0 c -0.65,-0.6 -1.4,-1.1 -2.22,-1.5 -0.16,0 -0.37,-0.1 -0.53,-0.1 L 78.33,167 c -0.32,-0.1 -0.65,-0.1 -0.98,-0.1 v -0.1 c -0.45,0 -0.95,0 -1.42,0.1 v 0.1 h -0.1 c -1.19,-0.6 -2.32,-1.3 -3.4,-2.1 -0.26,-0.1 -0.52,-0.2 -0.79,-0.3 -0.95,-0.3 -2.63,-0.2 -3.79,0.3 -2.01,-0.5 -3.54,-2.5 -6.85,-2.5 z"/>
<path fill="#000" fill-opacity=".2" stroke="none" d="m 50.43,166 -1.44,2.9 0.5,4 3.69,3.8 2.87,3.2 2.51,2.4 2.9,2.2 2.07,0.5 0.63,-0.7 1.44,-0.2 1.03,1.3 c 0,1.5 -1.75,0.8 -3.04,1 -3.29,0.7 -3.34,0 -4.64,-0.2 -2.18,-0.4 -4.21,-1.4 -5.9,-2.9 -4.7,-1.9 -7.47,-4.9 -7.73,-7.8 l -1.14,2.1 0.91,3.4 2.7,3.3 4.92,3 7.53,1.7 2.75,0.4 2.67,-0.2 0.83,1.6 -2.22,0.6 -2.8,1.5 c -2.41,0.3 -3.98,-0.6 -5.82,-1.1 -6.8,-0.6 -8.87,-3.2 -10.69,-5.1 l 0.54,2.6 2.12,2.5 3.78,2.1 5.54,2.2 3.23,0.1 1.22,0.9 1.23,1.8 0.1,1.4 -1.38,-0.8 h -3.17 c -5.55,0.4 -9.38,-1.3 -11.27,-4.1 l 0.47,2.3 2.18,2.7 4.22,2.2 c -0.14,0.1 3.7,0.7 5.85,0.7 0.96,-0.3 1.73,-0.7 2.79,-1.2 1.07,-2 1.62,-3.4 1.36,-4.8 1.42,-1 6.69,-0.6 3.85,-6.2 0.4,-1.7 1.04,-2.1 0.1,-4.7 L 68.7,184 c 1.6,0.3 3.34,0.1 5.15,-0.5 l -0.5,4.5 1.73,5.6 3.19,4 c 0.87,-1.1 2.09,-2 3.47,-2.4 -1.27,-1.2 -0.76,-2.7 -0.62,-4.1 -4.84,-2.1 -3.94,-7 -4.76,-11 l -0.27,-0.9 -3.62,-3.6 -1.92,-2.9 c -1.52,0.5 -3.02,0.7 -4.51,0.8 -4.23,-0.2 -6.97,-1.5 -9.96,-2.5 l -1.73,-0.4 0.83,1.8 c 2.84,1.8 6.24,2 9.58,2.5 l -0.44,1.5 2.55,3 0.36,1.6 -0.1,-0.2 c -0.9,1.3 -1.83,0.9 -2.4,1 L 62,179.9 c -0.99,-0.8 -2.08,-1.4 -3.26,-1.9 -4.4,-3.8 -8.97,-8 -8.31,-12 z m 13.34,31.3 c -0.3,2.8 -1.12,2.9 -1.36,4.8 l 5.06,3.6 4.85,1.7 5.44,1.7 5.3,0.3 2.26,-0.3 2.61,0.7 4.05,0.5 1.53,0.4 0.64,-0.2 3.24,-4 1.36,-3 c -5.51,1.2 -13.38,0.7 -14.75,-1.8 -2.03,0.7 -3.11,3.3 -6.74,0.8 -3.64,-2.7 -13.37,-1.1 -13.49,-5.2 z"/>
<path d="M185.95 100.88c-7.37 7.43-1.5 25.21-9.15 36.64 1.13.26 2.24.53 3.35.82-.8 3.43-1.64 6.83-2.5 10.2l-.28 1.14c0-.45.1-.86.29-1.14-1.36.23-2.36.73-2.89 1.54-1.03 1.57-.42 3.35 1.22 5.2-.57 2.27-1.12 4.52-1.65 6.75-2.93.25-5.2 1.23-6.14 3.27-2.23 3.65-.87 12.98.43 20.7-.56-.4-.72-.61-.93-.46-.23.16.02.33.24 1.02l-.12.06c-3.23-3.48-8.1-6.5-11.73-8.14a6.51 6.51 0 00-3-.98 4.32 4.32 0 00-.47-.04h-.24c-.23 0-.44.01-.63.06-2.86.4-4.64 3.4-5.72 7.44-18.45.03-37.85 3.5-48.5-.94-1.03-.9-2.16-1.29-3.35-.86 6.87 4.44 7.11 19.39 1.44 25.9l-1.45 1.36c-.92.72-.59.7-1.74.97 1.42-.08 1.3.16 2.42-.32 2.59.18 9.34.72 13.63 1.56 9.5 1.85 18.54 5.63 27.97 7.78 3.43.78 8.1 1.53 12.5 2.12 2.11 5.56 4.92 9.78 8.07 9.67 5.58.23 14.08-4.13 18.38-7.06 4.6 1.52 10.93-.35 18.38-1.96.83.7 1.45 1.04 1.74.84.23-.17.18-.7-.05-1.42 4.1-5.05 6.01-11.45 8.54-17.47l.02-.01c4.08-3.26 13.9-13.4 14.85-18.68.65-1.88-.38-4.13-2.4-6.45a129.2 129.2 0 004.1-8.55c1.97-.3 3.42-.97 3.99-2.17.54-1.15.29-2.3-1.44-3.93 1.9-4.79 3.67-9.7 5.45-14.61a5.69 5.69 0 002.98 2.67l.07.04c.12.05.26.08.39.12.17.05.35.09.53.12l.58.1c.01-.01 0 .01.02.01a5.69 5.69 0 006.14-5.18 5.66 5.66 0 00-7.11-5.95c-.88-2.1 2.36-1.5 5.59-7.6-21.03-8.28-31.9-23.95-46.19-37.14a11.2 11.2 0 00-5.63 2.96z"/>
<g fill="#000" stroke="none">
<path d="m 61.82,202 c 3.62,4.5 16.25,8.6 23.41,7.6 3.24,1 5.23,0.9 7.48,1.5 l 1.71,-1.1 c -3.23,0.2 -5.39,-0.8 -8.95,-1.6 -6.8,0.1 -17.7,-1.3 -22.66,-7.2 m 10.2,-11.6 c 1.09,3.5 3.2,6.7 5.94,8.3 -2.65,-2.3 -4.4,-5.5 -4.96,-9 -0.1,-0.8 -0.13,-1.7 -0.1,-2.6 0,-1.6 0.34,-3.2 0.86,-4.8 0.13,-0.3 0.46,-0.5 0.66,-0.8 0.85,-0.3 1.35,-1 1.86,-1.7 -0.71,0.6 -1.72,0.8 -2.48,0.9 -0.92,-0.3 -1.55,-1.1 -2.07,-1.8 -0.46,-0.7 -1,-1.3 -1.65,-2 -3.42,-3.5 0.98,-1.4 -0.39,-3.9 -0.38,0.9 -1.16,1.4 -2.25,1.8 -1.48,0.5 -3.56,0.6 -5.62,0.5 -0.88,-0.1 -1.63,-0.3 -2.47,-0.4 -1.3,-0.2 -2.6,-0.6 -3.74,-1.2 -0.29,-0.1 -0.58,-0.3 -0.8,-0.5 -0.57,-0.4 -0.78,-1 -1.04,-1.6 2.33,0.9 4.48,0.4 6.4,-1.1 0.23,-0.1 0.19,-0.4 0.31,-0.6 0.25,-0.8 0,-1.4 -0.19,-2.1 0.9,-0.1 1.8,-0.1 2.68,-0.2 0.34,-0.1 0.65,-0.2 1,-0.3 1.64,-0.4 3.52,-1.6 5.14,-1.7 0.22,-0.1 0.48,0 0.7,0 0.6,0.1 1.2,0.4 1.67,0.7 1.2,0.7 2.16,1.3 3.3,1.9 1.43,-0.3 2.93,-0.1 4.22,0.6 0.52,0.3 1.27,0.9 1.74,1.4 0.26,0.3 0.33,0.7 0.53,0.9 2.93,3.3 8.89,6.9 10.88,12.6 0.26,0.7 0.85,0.9 1.6,1 l 0.17,-0.9 c -0.47,-0.1 -0.85,-0.3 -0.98,-0.7 -1.92,-6.3 -8.24,-9.8 -10.74,-12.7 -0.74,-0.9 -1.59,-1.6 -2.52,-2.3 -1.41,-0.9 -3.04,-1 -4.64,-0.8 -0.59,-0.3 -1.19,-0.6 -1.63,-0.9 -0.59,-0.3 -1.06,-0.7 -1.52,-1 -0.64,-0.4 -1.38,-0.6 -2.13,-0.6 -1.46,0 -3.91,0.9 -5.83,1.8 -0.75,0.1 -1.54,0.2 -2.2,0.3 -0.86,0.1 -1.26,0.2 -2.1,0.2 -1.67,-0.2 -3.66,-0.3 -5.12,0.5 -1.4,0.7 -2.58,2.4 -1.9,3.3 0,0.2 0.1,0.6 0.13,0.7 0.1,0.6 0.56,1.2 0.9,1.6 1.27,1.5 3.26,2 4.98,2.4 0.88,0.1 1.63,0.2 2.5,0.4 1.66,0.9 2.83,2.2 3.7,3.2 1.93,2.3 1.36,5.7 -1.33,5.5 0.55,-0.7 0.42,-1.4 0.6,-2.1 -2,-2.8 -6.42,-3.5 -6.63,-0.1 -0.61,-0.5 -1.15,-1 -1.63,-1.6 -1.93,-2.9 -5.16,-4.7 -6.84,-7.6 -1.11,-2.1 -0.93,-3.9 0.38,-5.6 1.29,-1.7 3.72,-2.6 5.69,-3.1 1.11,-0.3 3.97,-1.2 6.22,-1.1 2.31,0.1 5.07,2.5 5.05,2.6 l 0.96,-0.4 c -3.32,-2.2 -4.43,-3 -7.53,-2.8 -2.08,0.1 -3.72,0.7 -5.22,1.1 -2.32,0.5 -4.3,1.4 -5.78,3.1 -1.68,1.9 -1.72,4 -1.12,6.1 -2.21,1 -4.5,2.7 -4.95,4.7 -0.58,2.5 0.87,4.1 2.27,6.1 -3.05,2.7 -1.38,6.9 1.86,9.3 -1.41,1 -2.02,2.5 -1.6,4 0.75,2.7 3.12,4.4 5.45,5.4 1.23,0.6 2.62,0.8 4.04,1.2 2.93,1.7 7.5,-0.4 7.05,-2.5 0.72,-1.3 -0.59,-3.2 -1.79,-4.3 0.28,0 0.43,-0.2 0.72,-0.1 2.17,0.1 4.82,-1 5.62,-2.6 0.46,-0.8 0.1,-1.7 -0.56,-2.5 0,-0.7 -0.4,-1.5 -0.94,-1.9 0.12,-0.1 0.32,-0.1 0.31,-0.2 v -0.3 c 1.6,-1.4 1.25,-3.1 0.1,-4.6 0.4,-0.3 0.79,-0.6 1.02,-1 1.36,-2.7 -0.67,-6.2 -3.56,-7.9 1.52,0 3.94,-0.1 5.21,-0.5 0.3,0.5 0.56,1 1.21,1.7 0.59,0.6 1,1.9 1.38,2.4 0.45,0.9 1.56,1.6 2.28,2.2 -0.73,1.7 -1.18,3.4 -1.35,5.3 -0.1,1.2 0.27,2.2 0.61,3.3 z m -15.8,-22.7 h 0.86 c 0.85,0 1.68,0.1 2.43,0.1 0.45,0.9 0.56,1.5 0.3,2.1 -1.76,1.5 -4.29,1.9 -6.46,1 -0.27,-1.3 0.7,-2.3 1.81,-2.8 h 0.1 c 0.32,-0.2 0.64,-0.3 0.99,-0.4 z m -7.99,6.7 c 2.09,2.7 4.8,4.4 6.91,7 0.6,0.8 2.45,2.3 2.45,2.3 1.04,1.1 3.8,2.8 4.93,2.2 0.14,-0.1 0.3,-0.3 0.37,-0.4 0.6,-0.1 0.99,-0.1 1.5,-0.3 1.14,1.4 1.84,2.7 0.59,3.9 -0.19,-0.6 -0.31,-1.4 -0.78,-1.7 -1.55,-1 -4.1,0.2 -5.36,1.9 -3.53,-0.6 -7.33,-1.1 -10.18,-3.2 -1.73,-1.2 -3.19,-2.8 -4.26,-4.6 -0.75,-1 -0.98,-2.3 -0.6,-3.5 0.65,-2.2 2.68,-3.1 4.43,-3.6 z m 11.6,6.5 c 1.18,0 2.65,0.8 3.65,1.9 -0.1,1 -0.48,2 -1.15,2.7 -1.53,0 -3.15,-1.1 -4.3,-2.4 0.1,-1.2 0.61,-1.9 1.35,-2.1 0.15,0 0.29,-0.1 0.45,-0.1 z m -14.05,3.8 v 0 c 0.47,0.5 1.4,1.3 1.99,1.7 3.04,2.7 7.24,3.3 11.23,3.7 1.05,0.7 4.17,0.4 5.13,0.1 0.96,0.6 1.04,1.1 0.95,1.5 -3.33,-0.1 -6.51,2.4 -4.99,4.7 -7.8,1.1 -20.46,-7.4 -14.34,-11.7 z m 16.56,3 h 0.43 c 0.37,0 0.7,0.1 0.98,0.3 0.35,0.3 0.62,0.9 0.69,1.5 -1.64,0.6 -3.52,0.8 -4.97,0.1 0.7,-0.9 1.72,-1.6 2.87,-1.9 z m -14.6,6.3 c 2.3,1.3 6.16,2.9 8.66,3.2 1.28,0.1 2.02,0 2.95,0.6 1.16,0.7 1.94,1.9 2.1,3.2 -1.3,-1.4 -3.58,-1.1 -5.12,-0.7 -1.3,0.4 -2.18,1.2 -2.08,2.6 -3.77,-0.9 -7.05,-2.2 -8.13,-5.7 -0.5,-1.6 0.25,-2.8 1.61,-3.2 z m 16.33,-1.6 c 0.34,-0.1 0.68,-0.1 1.02,-0.2 0.5,0.5 1,1 0.98,1.5 -0.1,1.8 -3.6,3.1 -5.37,2.7 -1.31,-2.2 0.98,-3.6 3.37,-4 z m -6.42,8.3 c 0.42,-0.1 0.9,-0.2 1.33,-0.1 1.26,0 2.33,0.4 2.2,1.1 -0.5,2.9 -5.43,2.4 -6.16,1.4 -0.1,-0.9 0.38,-1.7 1.15,-2 0.38,-0.2 0.92,-0.3 1.48,-0.4 z"/>
<path fill-opacity="0.2" d="M99.42 201.46l-.48.62c-.65 2.7-1.74 5.18-3.31 7l-1.45 1.35c-.93.72-.6.68-1.75.95 1.42-.08 1.3.17 2.43-.32 2.59.2 9.33.73 13.63 1.57 9.5 1.85 18.53 5.64 27.97 7.79 3.42.78 8.1 1.5 12.49 2.1 2.12 5.55 4.92 9.79 8.07 9.68 5.57.23 14.08-4.14 18.38-7.07 4.6 1.52 10.94-.34 18.38-1.95.83.7 1.44 1.04 1.73.83.23-.16.2-.68-.03-1.4 4.1-5.06 6-11.46 8.54-17.47l.02-.02c4.07-3.26 13.89-13.4 14.84-18.7.65-1.88-.4-4.1-2.42-6.43 1.46-2.77 2.82-5.62 4.1-8.55 1.98-.3 3.45-.98 4.01-2.18.54-1.15.28-2.29-1.45-3.92 1.9-4.78 3.69-9.7 5.46-14.62a5.68 5.68 0 002.98 2.67l.07.04.39.11c.17.05.35.12.53.16l.58.08c.01 0 0 .02.02.02a5.69 5.69 0 00.97-11.33 5.8 5.8 0 00-1.94.2c-.88-2.1 2.36-1.5 5.59-7.6-1.1-.44.18.04-.86-.43l-.35.1c-.05 1.66-9.8 11.35-13.57 10.92l-1.75-.57a374 374 0 00-3.77 3.26l-6.47.6c-1.89 1.26-5 1.5-5.45 4.31.16-.09 1.32.04 1.45-.1 2.3-2.5 7.89-1.45 7.8-.9-.9 5.63-3.55 9.11-7.04 14.1 2 1.88 1.5 3.27-1.43 4.21-2.12 8.48-4.54 11.68-6.91 15.87 2.38 2.12.48 3.04-2.22 3.75.7 7.3-2.93 11.04-4.4 12.65-.64 3.18-.49 6.63-4.23 8.77-.58 1.03-.64 2.7-2.9 1.65-2.64 2.08-5.54 2.15-8.52 1.63-3.66 3.38-7.54 4.57-11.69 3.2-3.16 1.06-2.65-2.5-2.76-5.28-8.25 9.51-38.6 1-57.86-6.15-1.99-.36-2.64-2.1-3.45-3.7-1.78 2.03-2.43-.02-1.97-1.5z"/>
<path d="M154.98 177.48l1.95 1.95c.58.3 1.19.66 1.8 1.03 2.94 1.77 6.98 4.33 9.35 6.9.14 0-.13-.38-.14-.26l-.01-.1.13-.33-.37-.45a38.4 38.4 0 00-8.44-6.65 24.08 24.08 0 00-4.27-2.09zm15.36 14.44c4.4 9.6 8.53 26.75 4.37 33.07-3.15 2.96-10.48 5.88-15.62 6.54L157 232.7c5.87.25 15.3-3.96 18.68-7.15l.21-.12.02-.26c3.86-7.87.08-23.04-4.67-32.29l-.91-.96z"/>
<path d="M148.55 178.67a9.18 9.18 0 00-1.39 1.91 18.6 18.6 0 00-1.68 4.34l1.03.09c.4-1.5.9-2.84 1.52-3.93a7.35 7.35 0 011.68-2.1 4.17 4.17 0 012.1-.95c2.18-.3 4.02.53 5.66 2.17 1.65 1.65 3.03 4.13 4.18 7 2.28 5.76 3.54 13.12 3.94 18.63.36 4.79 0 11.3-1.4 16.58-.69 2.63-1.63 4.96-2.84 6.6-1.2 1.66-2.63 2.62-4.36 2.68-1.35.05-2.69-.86-4-2.54a25.97 25.97 0 01-3.32-6.18c-.09-.22-.18.54-.44-.13l-.78-.19c1.07 2.83 2.33 5.34 3.74 7.15s3.04 2.97 4.86 2.9a7.81 7.81 0 005.66-3.19 20.86 20.86 0 003.01-6.94c1.43-5.43 1.82-12 1.46-16.9-.42-5.6-1.68-13.04-4.03-18.96a22.05 22.05 0 00-4.96-7.22c-1.8-1.8-4.02-2.8-6.52-2.46-.98.13-1.81.53-2.57 1.15a6.9 6.9 0 00-.55.49z"/>
<path d="M95.75 182.69l.34.47.2-.18c1.78 1.12 2.82 2.88 4.02 4.52l-.03-.15-1.82-2.57c6.31 2.25 14.55 2.6 24.25 2.09 10.4-.56 22.32-1.94 32.82-1.04.68.06 1.43.06 2.1.14l.31-.94c-.87-.1-1.44-.16-2.33-.23-10.63-.9-22.14.11-32.52.66-10.39.55-19.65.6-25.68-2.05l-1.67-.72zm-2.28 28.04l-1.06.66 1.17.09s10.01.53 15.29 1.56c9.43 1.84 18.09 5.21 27.46 7.87 7.45 2.11 20.98 3.86 24.45 3.5l.3-.1-.43-.97c-6.52.11-15.84-1.48-24.07-3.43-9.37-2.22-17.73-6.24-27.3-8.1-4.04-.8-10.24-1.04-13.15-1.17-.54-.03-.6.47-.87.45l-1.08.1-.7-.46z"/>
<path d="M102.03 194.28c17.54-1.18 34.61 3.9 52.07 5.74.27.03.54-.19.57-.45.03-.27-1.36-.2-1.63-.23-17.37-1.83-33.38-7.3-51.19-6.07l.18 1.01z"/>
<path d="M109.86 197.67a2.8 2.8 0 00-1 1.91 2.87 2.87 0 002.57 3.08 2.87 2.87 0 003.04-2.6 2.9 2.9 0 00-2.56-3.08 2.81 2.81 0 00-2.05.69zm.67.8c.36-.32.85-.5 1.3-.46.9.08 1.73 1.07 1.65 1.97-.07.91-1.05 1.75-1.96 1.67-.9-.07-1.73-1.06-1.65-1.97.04-.45.3-.9.66-1.22z"/>
<path d="M133.62 200.4a2.87 2.87 0 00-1.01 1.93 2.88 2.88 0 002.58 3.06 2.88 2.88 0 003.04-2.6 2.88 2.88 0 00-2.58-3.06c-.76-.06-1.47.2-2.03.67zm.67.8c.37-.32.83-.48 1.28-.44.9.08 1.73 1.03 1.65 1.93l.02.02c-.07.9-1.07 1.73-1.97 1.65-.9-.07-1.72-1.05-1.63-1.95l-.02-.02c.03-.45.3-.89.67-1.2z"/>
<path d="M151.08 180.75a3.04 3.04 0 00-1.19 2.2c1.13-1.74 2.09-2.24 3.8-1.54.43.17.88.51 1.47 1.1 1.15 1.14 2.43 3.27 3.47 5.89 2.1 5.24 3.36 12.44 3.74 17.68.33 4.4-.05 10.69-1.31 15.46a19.8 19.8 0 01-2.35 5.54c-1.3 1.97-3.06 1.49-4.12-.51.16 1.22 1.24 2.75 2.32 2.83 1.18.08 2.05-.92 2.63-1.71.96-1.3 1.85-3.41 2.5-5.88a52.8 52.8 0 001.35-15.82c-.39-5.33-1.66-12.56-3.81-17.97-1.08-2.71-2.39-4.91-3.7-6.22a5.27 5.27 0 00-1.82-1.33c-1.15-.42-2.14-.32-2.98.28z"/>
<path d="M168 165.83l-.24-.82c-1.25 2.05-1.31 5.39-1.04 9.2.26 3.7.36 8.53 1.6 11.56.02.14.28.09.3.22l.15.13-.08-.03.07.08.36.39c-.02-.02 0 .01 0 0-1.44-3.87-1.13-8.75-1.4-12.43-.16-2.1-.15-4 .07-5.56.15-1.03-.17-1.48.17-2.16l.04-.58zm4.73 25c8.19 7.82 21.82 14.88 31.16 14.8l.24.07.2-.17c2.07-1.66 5.55-5 8.66-8.64 3.11-3.64 5.87-7.48 6.39-10.37l.06-.4-1.2.6c-.6 2.42-3.09 6.08-6.01 9.5-3 3.5-6.33 6.71-8.34 8.34-8.49-.21-22.5-6.52-30.89-13.9l-.27.17z"/>
<path d="M167.4 185.13c0 2.62 2.9 6.83 4.71 9.4l16.51 23.52c1.42 2.01 4.68 6.22 7.2 6.36.73-2.84-2.4-6.97-3.79-8.8l-17.6-23.24c-1.74-2.3-4.62-6.57-7.03-7.24zm.33.36c2.69 2.23 4.44 5.62 5.85 7.47l17.61 23.25c1.67 2.2 3.93 5.12 4.37 7.85-2.3-1.47-4.72-4.61-6.12-6.6l-16.51-23.5c-1.62-2.32-4.5-5.9-5.2-8.47z"/>
<path d="M169.04 163.37a4.96 4.96 0 00-1.3 1.69l-.24.53.06.02a8.42 8.42 0 00.44 6.72c1.19 2.25 3.23 4.39 5.7 6.38 4.97 3.99 11.67 7.37 16.9 9.41a55.32 55.32 0 0016.58 3.63 21 21 0 007.54-.85c2.12-.74 3.97-2.34 4.66-4.3.6-1.72-.06-3.61-1.37-5.5-.36-.5-.76-1-1.2-1.51l-.59.88c.35.4.67.8.95 1.2 1.22 1.75 1.67 3.3 1.23 4.59-.56 1.62-1.88 2.7-3.82 3.36-1.93.67-4.45.9-7.18.78a54.5 54.5 0 01-16.24-3.53c-5.15-2.02-11.81-5.37-16.64-9.25-2.41-1.94-4.36-4.02-5.45-6.08-1.09-2.06-1.34-4.07-.42-6.05a4.1 4.1 0 011.53-1.71 7.37 7.37 0 012.5-.99c.48-.1.99-.18 1.53-.23l.28-1.06c-.71.05-1.4.15-2.03.29a8.27 8.27 0 00-2.85 1.14c-.2.14-.39.28-.57.44z"/>
<path d="M179.66 138.27c-.93 3.96-1.74 7.84-2.72 11.73l.63.95c1.03-4.06 2.07-8.17 3.05-12.32l-.96-.36zm-4.1 16.53c-1.82 5.57-3.26 11.1-3.78 16.6l-.05.22.14.16a22.46 22.46 0 004.03 4.08c4.53 3.66 11.08 6.97 16.06 8.92a52.8 52.8 0 0015.51 3.4c1.77.07 3.39-.04 4.73-.27l.21-.05.12-.18a108.57 108.57 0 008.65-16.4c.09-.18-.35.3-.26.1l-.66.38-.27-.3a107.48 107.48 0 01-8.18 15.45c-1.22.2-2.67.3-4.3.24a52.17 52.17 0 01-15.18-3.3c-4.89-1.92-11.39-5.23-15.79-8.77a21.66 21.66 0 01-3.72-3.75c.53-5.4 1.8-10.62 3.57-15.6l-.83-.93zm52.71-4.65a432.66 432.66 0 01-6.28 16.58l1.23-1.09.23.26c1.93-4.82 3.74-9.76 5.53-14.72l-.7-1.03z"/>
<path d="M171.46 165.58c-.39.24-.63.56-.76.86a3.7 3.7 0 00-.4 1.9c.06.67.3 1.33.73 2.13.86 1.64 2.6 3.56 4.86 5.4 4.54 3.65 11.1 6.96 16.06 8.9a52.7 52.7 0 0015.5 3.39c2.56.1 4.84-.13 6.37-.67.75-.26 1.3-.52 1.68-.86.4-.33.6-.75.75-1.15a.94.94 0 00.04-.36 2 2 0 00-.09-.5c-.12-.4-.37-.94-.88-1.66l-.86.59c.46.66.69 1.11.77 1.38.04.13.04.2.04.24-.1.28-.21.48-.45.7-.25.2-.64.43-1.32.67-1.32.45-3.52.7-5.99.6a52.18 52.18 0 01-15.18-3.3c-4.89-1.91-11.39-5.22-15.79-8.77-2.2-1.77-3.83-3.64-4.58-5.07a4.81 4.81 0 01-.63-1.75c-.04-.45.04-.86.28-1.39.09-.17.17-.28.4-.42s.64-.3 1.34-.45l-.22-1.01c-.77.17-1.28.36-1.67.6z"/>
<path d="M93.53 183.35l.36.25c3.93 2.53 5.68 8.97 5.11 15.07-.28 3.05-1.12 5.99-2.49 8.29s-2.58 3.53-4.92 4.08c-.3 1.55 3.02.7 4.03.21 1.56-.8 2.85-1.95 3.86-3.4 1.86-2.64 2.83-6.19 3.11-10.17a22.2 22.2 0 00-2.17-10.5c-.76-1.55-1.84-3.05-3-3.77-1.39-.86-2.73-1.32-3.9-.06zm1.75.21c.48-.2 1.41.07 2 .54.9.71 1.84 2 2.56 3.47a21.47 21.47 0 012.07 9.98c-.28 3.86-1.3 7.19-2.93 9.67-1.04 1.57-3.04 3.86-4.88 3.63 3.74-2.47 5.95-8.25 6.34-12.14.55-5.88-1.4-11.97-5.16-15.15z"/>
<path d="M173.79 152.33c.15.87.43 2.3 1.07 3.14 1.27 1.7 3.38 3.37 5.89 4.98 5.01 3.23 11.7 6.2 16.75 8.06a76.63 76.63 0 0015.93 3.9c2.69.33 5.18.42 7.19.1 2-.3 3.74-1.6 4.4-3a2.9 2.9 0 00.17-2.18c-.25-.75-.8-1.5-1.7-2.35a.53.53 0 00-.74.02c-2.46 2.54-5.9 2.24-8.97 1.88a72.02 72.02 0 01-14.68-3.62c-4.74-1.74-11.76-4.81-16.06-7.63-2.15-1.41-3.78-2.86-4.52-3.89a3.55 3.55 0 01-.62-1.65c-.06-.56.05-1.05.19-1.26.22-.34-.13-.86-.52-.79-1.81.03-4.17 1.73-3.78 4.29zm3.26-3.08c-.05.33-.21.61-.17.97.08.72.33 1.48.8 2.13.88 1.22 2.59 2.67 4.8 4.13 4.45 2.91 11.46 5.97 16.26 7.74a72.67 72.67 0 0014.92 3.68c2.95.35 6.59.6 9.37-1.87a5.28 5.28 0 011.18 1.6c.17.52.11.94-.12 1.42-.45.96-1.66 1.6-3.5 1.88-1.86.3-4.26.24-6.9-.08a75.68 75.68 0 01-15.69-3.88c-5-1.84-11.66-4.8-16.56-7.96-2.46-1.58-4.48-3.21-5.63-4.72a4.99 4.99 0 01-1.02-2.1c-.07-1.7.75-2.5 2.26-2.94z"/>
<path d="M183.48 103.5c-1.46 2.93-1.97 6.54-2.28 10.44-.6 7.8-.43 16.7-4.85 23.3l-.4.61.74.16c11.17 2.56 21.44 6.25 28.37 14.73l.47.57.36-.67c5.3-5.18 16.2-3.63 22.3-1.78a6.1 6.1 0 0011.6-2.2 6.2 6.2 0 00-5.64-6.7c-.51-.04-1 .09-1.5.16 0-.11-.07-.27.01-.39 2.52-2.2 4.5-4.47 5.83-6.93l-.53-.2c-22.23-7.4-33.37-25.55-46.6-37.55-3.44.95-6.4 3.55-7.88 6.45zm7.55-4.5c14.02 13.01 26.96 30.69 45.97 36.28a15.36 15.36 0 01-3.88 4.7c-.54.43-1 .7-1.3 1.16-.32.45-.37 1.1-.1 1.72l.18.4.42-.12a5.14 5.14 0 016.44 5.44 5.17 5.17 0 01-9.88 1.6l-.21-.18-.05-.13-.22-.05c-5.06-1.48-15.8-4.81-22.94 1.86-7-8.28-17.09-11.96-27.9-14.49 4.26-6.87 4.09-15.67 4.67-23.17.3-3.86.8-7.36 2.14-10.07 1.54-2.94 3.82-4.23 6.66-4.95z"/>
<path d="M181.1 135.07c9.96 2.81 18.24 6.72 24.27 12.71 8.7-3 16.15-2.96 22.41.35.18.06.38.02.52-.1.27-.24.14-.79-.22-.88a.4.4 0 00-.05-.02c-3.1-2.93-14.82-4-22.6-.62-1.05-2.02-16.72-12.7-24.33-11.44z"/>
<path d="M227.59 147.27a.52.52 0 00-.13.33c-.08.93.05 1.83.35 2.65l1.1-.02a5.18 5.18 0 01-.44-2.57c.03-.42-.6-.7-.88-.39z"/>
<path d="M232.39 146.8a1.6 1.6 0 00-.55 1.1c-.08.86.55 1.64 1.42 1.71a1.6 1.6 0 001.73-1.44 1.6 1.6 0 00-2.6-1.37zm.46 1.19c.02-.25.35-.57.6-.55.26.03.56.38.54.63-.03.26-.38.55-.64.53-.25-.02-.53-.35-.5-.61z"/>
<path fill-opacity=".3" d="M151.42 180.96l-1.38 1.32c-.3.97-.34 1.97-.16 2.74l3.56.24 4.15.15-.74-2.12-2.05-1.97-1.84-.8-1.54.44zm20.05-14.55l-.54 1.6.86 2.56s.4.52.45.38c.05-.14.6-2.96.6-2.96l.27-2.43-1.64.85z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -1,39 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:Coa_Hungary_Family_Balogh_-_Marosv%C3%A1s%C3%A1rhely.svg" author="Madboy74" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="armEmbowedVambracedHoldingSword" stroke-width="1" transform="translate(51 56) scale(.35)">
<path class="tertiary" d="M78.2 160.47l-14.29-2.79c-.65 2.02 1.1 2.26 2.44 4.08 3.62 4.9-6.65 25.03-12.97 40.5-8.5-.68-3.45 9.52 2.3 11.93 5.74 2.42 16.56-1.13 10.12-6.72 6.62-15.34 13.8-36.77 19.83-37.62 2.23-.32 3.64.77 4.62-1.11l-12-8.25-.05-.02z"/>
<path fill="#000" stroke="none" d="M66.02 172.47c.03.08.06.2.13.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.26-.1.33-.14-.08.02-.2.03-.35.04-2.2.13-4.19-.6-6.23-1.45-2.04-.86-3.95-1.77-5.4-3.43-.1-.12-.18-.21-.22-.28zm-.7 1.66c.03.08.06.2.13.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.26-.1.34-.13l-.36.03c-2.2.13-4.18-.6-6.23-1.45-2.04-.86-3.95-1.77-5.4-3.43l-.22-.28zm-.7 1.66c.03.08.07.2.14.34a10.8 10.8 0 005.11 4.25 10.8 10.8 0 006.63.67c.14-.04.25-.1.33-.13l-.35.04c-2.2.12-4.2-.6-6.24-1.46s-3.95-1.77-5.4-3.43c-.1-.12-.17-.2-.22-.28zm-.7 1.67c.04.07.07.2.14.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.25-.1.33-.14-.08.02-.2.02-.35.04-2.2.13-4.19-.6-6.23-1.46-2.05-.86-3.96-1.77-5.4-3.43l-.23-.27zm-.7 1.66c.04.08.07.2.14.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.25-.1.33-.14-.08.02-.2.03-.35.04-2.2.13-4.19-.6-6.23-1.46-2.04-.85-3.95-1.76-5.4-3.43l-.23-.27zm-.7 1.66c.04.08.07.2.14.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.26-.1.33-.13l-.35.03c-2.2.13-4.19-.6-6.23-1.45-2.04-.86-3.95-1.77-5.4-3.43-.1-.12-.18-.21-.22-.28zm-.7 1.66l.14.34a10.8 10.8 0 005.12 4.25 10.8 10.8 0 006.62.67c.14-.04.26-.1.34-.13l-.35.03c-2.2.13-4.2-.6-6.24-1.45-2.04-.86-3.95-1.77-5.4-3.43-.1-.12-.17-.2-.22-.28zm-.69 1.67c.03.07.07.2.14.33a10.8 10.8 0 005.11 4.25 10.8 10.8 0 006.63.68c.14-.04.25-.11.33-.14-.08.02-.2.02-.35.04-2.2.12-4.2-.6-6.23-1.46-2.05-.86-3.96-1.77-5.4-3.43l-.23-.27zm-.7 1.66c.04.07.07.2.14.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.25-.1.33-.14-.08.02-.2.03-.35.04-2.2.13-4.19-.6-6.23-1.46-2.05-.85-3.96-1.76-5.4-3.43l-.23-.27zm-.7 1.66c.04.08.07.2.14.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.26-.1.33-.13l-.35.03c-2.2.13-4.19-.6-6.23-1.45-2.04-.86-3.95-1.77-5.4-3.43-.1-.12-.18-.21-.22-.28zm-.7 1.66c.04.08.07.2.14.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.26-.1.34-.13l-.36.03c-2.2.13-4.18-.6-6.23-1.45-2.04-.86-3.95-1.77-5.4-3.43-.1-.12-.18-.2-.22-.28zm-.69 1.67c.03.07.07.2.14.33a10.8 10.8 0 005.11 4.25 10.8 10.8 0 006.63.68c.14-.04.25-.11.33-.14l-.35.04c-2.2.12-4.2-.6-6.24-1.46s-3.95-1.77-5.4-3.43l-.22-.27zm-.7 1.66c.04.07.07.2.14.33A10.8 10.8 0 0062.9 197a10.8 10.8 0 006.62.67c.14-.04.25-.1.33-.14-.08.02-.2.02-.35.04-2.2.13-4.19-.6-6.23-1.46-2.05-.86-3.96-1.76-5.4-3.43l-.23-.27zm-.7 1.66c.04.08.07.2.14.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.25-.1.33-.14-.08.02-.2.03-.35.04-2.2.13-4.19-.6-6.23-1.46-2.04-.85-3.95-1.76-5.4-3.42l-.23-.28zm-.7 1.66c.04.08.07.2.14.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.26-.1.33-.13l-.35.03c-2.2.13-4.19-.6-6.23-1.45-2.04-.86-3.95-1.77-5.4-3.43-.1-.12-.18-.21-.22-.28zm-.7 1.66l.14.34a10.8 10.8 0 005.12 4.25 10.8 10.8 0 006.62.67c.14-.04.26-.1.34-.13l-.35.03c-2.2.13-4.2-.6-6.24-1.45-2.04-.86-3.95-1.77-5.4-3.43-.1-.12-.17-.2-.22-.28zm-.69 1.67c.03.07.07.2.14.33a10.8 10.8 0 005.11 4.25 10.8 10.8 0 006.63.68c.14-.04.25-.1.33-.14-.08.02-.2.02-.35.04-2.2.13-4.2-.6-6.24-1.46s-3.95-1.77-5.4-3.43l-.22-.27zm-.7 1.66c.04.08.07.2.14.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.25-.1.33-.14-.08.02-.2.03-.35.04-2.2.13-4.19-.6-6.23-1.46-2.05-.85-3.96-1.76-5.4-3.43l-.23-.27zm-.7 1.66c.04.08.07.2.14.33a10.8 10.8 0 005.12 4.26 10.8 10.8 0 006.62.67c.14-.04.26-.1.33-.13l-.35.03c-2.2.13-4.19-.6-6.23-1.45-2.04-.86-3.95-1.77-5.4-3.43-.1-.12-.18-.21-.22-.28z"/>
<path fill="#000" stroke="none" d="M49.53 203.65c-1.78 3.69 3.8 6.4 7.28 7.86 3.47 1.45 9.31 3.54 10.7-.31-1.54 2.56-6.8.34-10.13-1.06-3.33-1.39-8.6-3.6-7.85-6.49z"/>
<path class="tertiary" d="M49.26 144.35c-4.56-1.28-14.15 7.14-1.61 11.9L71 166.16l2.28 6.08 5.94-2.63 23.46 9.73c16.23 7.5 9.57-17.66 2.48-7.3-6.22-.96-17.6-6.14-23.45-8.56l-2.23-6-5.85 2.6c-5.82-2.48-17.47-6.96-22.5-10.73.6-3.07-.35-4.58-1.87-5.01z"/>
<path fill="#000" fill-opacity="0.2" stroke="none" d="M45.65 144.85c-4.19 1.9-7.65 7.72 2 11.38l23.36 9.93 1.73 4.6 1.01.37.97.46 4.5-1.99 23.44 9.72c9.38 4.34 11.1-2.21 9.53-6.54 1.33 9.57-27.8-4.47-35.83-7.86-8.05-3.36-38.48-14.32-30.71-20.07z"/>
<path class="secondary" stroke-miterlimit="3" d="M139.49 14.54s-6.47 4.05-10.13 12c-.54 1.15-59.27 133.75-59.27 133.75l7.21 2.38z"/>
<path class="secondary" stroke-miterlimit="3" d="M139.49 14.54s1.64 7.45-1.46 15.64c-.46 1.19-53.98 135.99-53.98 135.99l-6.75-3.5z"/>
<path class="secondary" d="M81.25 153.26c-3.31 4.92-6.82 6.48-11.17 7.04l13.97 5.87c-2.64-3.5-3.99-7.1-2.8-12.91z"/>
<path fill="#fd9863" stroke="none" d="M61 162.37l-7.88 2.11c-.15.03-.31.08-.42.13-.36.15-.71.3-1.03.48l.03.03a5.98 5.98 0 00-1.26.81c-.24.2-.54.68-.73.9-.5.58-.54 1.09-.75 1.79-.07.24-.21.71-.24.97-.02.25-.01.47 0 .73l.07.43-.03.04c.08.38.22.77.4 1.18l.04.03.05.12-4.46 3.41.4.72-1.18.43c.35 1.74.4 3.7 1.76 4.87l.82 2.23-1.55 1.09-.12 1.25c-.06.14-.1.3-.14.46-.06.29-.1.55-.04.87.03.18.09.43.15.62.13.36.36.68.62 1.08.14.2.26.4.43.6.5.64 1.14 1.3 1.95 2-.44.41.66-.06.78.03l.8 1.43c-.34-.1-.9-.3-1-.26-.27.1-.52.25-.72.37-.1.06-.17.07-.25.13-.18.13-.36.29-.48.44-.17.22-.28.45-.33.71-.02.1-.23 1.33-.23 1.44 0 .23.1.46.17.71.19.64.86 1.43 1.52 2.26.26.22.5.4.76.6h.03c.25.18.53.35.78.52l.04.06c.52.35.96.68 1.48.96h.06c.78.43 2.12.77 2.9 1.06h.03l.77.25.24.07.22.33.55-.34c1.76 1.28 6.11 1.1 6.4-1.61l.09-.08c-.14-.05.04-.21-.1-.26.02.02.04-.01.06 0a5.97 5.97 0 00-.18-1.96 4.67 4.67 0 00-1.44-1.7l.1-.04-.47-.87 2.4-.11c1.52-.2 3.85-1.42 4.14-2.4.05-.22.1-.44.11-.65 0-.41-.1-.84-.31-1.26l-.32-.59c-.33-.44.08-.69-.5-1.13l-.24-1 1.1-1.5c.18-.3.17-.7.06-1.15a6.06 6.06 0 00-1.23-2.1c-.21.08-.38.06-.59.12l.95-.4.85-1.1.17-1.6c0-.13 0-.3-.03-.45-.2-.76-.4-1.97-1.21-2.88l-.2-.2-2.3-2.29 1.43-.77a11.9 11.9 0 003.6-.54c1.1-.37 1.87-.98 2.26-1.83 1.36 2.47-3.08.4.35 3.9.64.65 1.2 1.33 1.65 1.97l.04.03 1.33 3.7v.03a8.3 8.3 0 00-.38 1.52c-.17 1-.33 1.97-.36 2.9-.03.89-.5 1.57-.4 2.4l.27 1.9c-.53 2.17-5.06 11-4.8 13.1 4.93 4.42 8.48 5.27 15.21 5.53 1.08-.04 10.06 1.46 10.61 1.67 4.3.57 7.47 1.6 9.61-4.9 2.84-4.74 1.36-16-7.05-22.06 0-.01-2.27.03-3.24-1.41-1.48-5.82-8.32-9.65-11.24-12.96-.23-.27-.4-.52-.64-.75h-.04a7.72 7.72 0 00-2.22-1.52c-.16-.06-.37-.1-.53-.16l-.45-.1a5.65 5.65 0 00-.98-.1l-.04-.02c-.45 0-.95 0-1.42.1l-.03.04-.1-.02a25.02 25.02 0 01-3.4-2.06 6.73 6.73 0 00-.79-.33c-.27-.08-.17-.17-.46-.2l-2.46.15-.66.3-.36-.15-.05.06-.8.23-5.78-2.59z"/>
<path fill="#000" fill-opacity=".2" stroke="none" d="M50.43 166.03l-1.44 2.85.5 3.97 3.69 3.83 2.87 3.24 2.51 2.39 2.9 2.23 2.07.47.63-.75 1.44-.18 1.03 1.33c-.02 1.5-1.75.75-3.04 1-3.29.68-3.34 0-4.64-.18a13.09 13.09 0 01-5.9-2.9c-4.7-1.92-7.47-4.95-7.73-7.8l-1.14 2.1.91 3.38 2.7 3.26 4.92 3.02 7.53 1.67 2.75.48 2.67-.25.83 1.63-2.22.58-2.8 1.47c-2.41.36-3.98-.58-5.82-1.12-6.8-.55-8.87-3.12-10.69-5.07l.54 2.63 2.12 2.45 3.78 2.1 5.54 2.26 3.23.11 1.22.83 1.23 1.8.06 1.4-1.38-.74-3.17.01c-5.55.39-9.38-1.33-11.27-4.15l.47 2.34 2.18 2.64 4.22 2.2c-.14.14-.16.18-.36.14a7.42 7.42 0 00-3.2.23c2.01 2.68 5.7 2.65 9.57 2.26 2.43-.28 3.61-1.36 4.35-3.26 1.07-2.07-.07-3.19-.36-4.67 1.42-.93 6.69-.6 3.85-6.13.4-1.71 1.04-2.17.09-4.76l1.03-2.4c1.6.38 3.34.12 5.15-.49l-.5 4.52 1.73 5.58 3.19 4.03a6.7 6.7 0 013.47-2.4c-1.27-1.23-.76-2.7-.62-4.13-4.84-2.11-3.94-6.93-4.76-10.93l-.27-.9-3.62-3.63-1.92-2.91c-1.52.53-3.02.69-4.51.77-4.23-.2-6.97-1.44-9.96-2.5l-1.73-.39.83 1.82c2.84 1.74 6.24 2 9.58 2.46l-.44 1.57 2.55 2.91.36 1.6-.09-.16c-.9 1.3-1.83.87-2.4 1.04L62 179.91a12.9 12.9 0 00-3.26-1.94c-4.4-3.76-8.97-7.97-8.31-11.94zm22.04 25.88l-4.15 10.36-.27.94 1.46 1.8 2.81 2.34 5.44 1.74 5.3.32 2.26-.29 2.61.7 4.05.5 1.53.35.64-.16 3.24-4.04 1.36-2.94c-5.51 1.16-13.38.67-14.75-1.85-2.03.7-3.11 3.31-6.74.83-3.64-2.76-4.67-6.45-4.79-10.6z"/>
<path d="M185.95 100.88c-7.37 7.43-1.5 25.21-9.15 36.64 1.13.26 2.24.53 3.35.82-.8 3.43-1.64 6.83-2.5 10.2l-.28 1.14c0-.45.1-.86.29-1.14-1.36.23-2.36.73-2.89 1.54-1.03 1.57-.42 3.35 1.22 5.2-.57 2.27-1.12 4.52-1.65 6.75-2.93.25-5.2 1.23-6.14 3.27-2.23 3.65-.87 12.98.43 20.7-.56-.4-.72-.61-.93-.46-.23.16.02.33.24 1.02l-.12.06c-3.23-3.48-8.1-6.5-11.73-8.14a6.51 6.51 0 00-3-.98 4.32 4.32 0 00-.47-.04h-.24c-.23 0-.44.01-.63.06-2.86.4-4.64 3.4-5.72 7.44-18.45.03-37.85 3.5-48.5-.94-1.03-.9-2.16-1.29-3.35-.86 6.87 4.44 7.11 19.39 1.44 25.9l-1.45 1.36c-.92.72-.59.7-1.74.97 1.42-.08 1.3.16 2.42-.32 2.59.18 9.34.72 13.63 1.56 9.5 1.85 18.54 5.63 27.97 7.78 3.43.78 8.1 1.53 12.5 2.12 2.11 5.56 4.92 9.78 8.07 9.67 5.58.23 14.08-4.13 18.38-7.06 4.6 1.52 10.93-.35 18.38-1.96.83.7 1.45 1.04 1.74.84.23-.17.18-.7-.05-1.42 4.1-5.05 6.01-11.45 8.54-17.47l.02-.01c4.08-3.26 13.9-13.4 14.85-18.68.65-1.88-.38-4.13-2.4-6.45a129.2 129.2 0 004.1-8.55c1.97-.3 3.42-.97 3.99-2.17.54-1.15.29-2.3-1.44-3.93 1.9-4.79 3.67-9.7 5.45-14.61a5.69 5.69 0 002.98 2.67l.07.04c.12.05.26.08.39.12.17.05.35.09.53.12l.58.1c.01-.01 0 .01.02.01a5.69 5.69 0 006.14-5.18 5.66 5.66 0 00-7.11-5.95c-.88-2.1 2.36-1.5 5.59-7.6-21.03-8.28-31.9-23.95-46.19-37.14a11.2 11.2 0 00-5.63 2.96z"/>
<g fill="#000" stroke="none">
<path d="M60.65 162.19c-1.16-.03-2.62.3-5.1 1.01-2.32.54-4.3 1.44-5.78 3.13-1.68 1.9-1.72 3.98-1.12 6.08-2.21.94-4.5 2.73-4.95 4.69-.58 2.46.87 4.09 2.27 6.07-3.05 2.73-1.38 6.95 1.86 9.37-1.41.99-2.02 2.49-1.6 3.97.75 2.71 3.12 4.4 5.45 5.42 1.23.54 2.62.78 4.04 1.13 2.93 1.72 7.5-.37 7.05-2.44.72-1.31-.59-3.23-1.79-4.33.28.03.43-.16.72-.13 2.17.18 4.82-1 5.62-2.54.46-.86.08-1.77-.56-2.53 0-.67-.4-1.53-.94-1.94.12-.07.32-.06.31-.18l-.04-.3c1.6-1.35 1.25-3.1.06-4.52.4-.3.79-.68 1.02-1.02 1.36-2.77-.67-6.26-3.56-7.89 1.52 0 3.94-.13 5.21-.54.3.55.56 1.03 1.21 1.7.59.6 1 1.88 1.38 2.42.45.87 1.56 1.57 2.28 2.15a17.3 17.3 0 00-1.35 5.31c-.08 1.25.47 2.48.67 3.55a150.93 150.93 0 00-2.92 7.24c-.51 1.42-1.06 2.72-1.53 3.87-.46 1.14-.07 1.06-.21 1.3-.34.54-1.19 1.39-.74 1.84 3.62 4.48 10.38 6.47 17.54 5.48 3.24 1.03 5.23.95 7.48 1.58l1.71-1.15c-3.23.22-5.39-.79-8.95-1.57-6.8.07-11.8.46-16.76-5.38 1.38-3.95 3.65-9.69 4.6-12.57.8 3.2 2.9 5.86 5.64 7.43a15.21 15.21 0 01-4.96-9c-.1-.82-.13-1.67-.1-2.56a17 17 0 01.86-4.8c.13-.35.46-.57.66-.8.85-.38 1.35-1.06 1.86-1.74-.71.61-1.72.78-2.48.89-.92-.3-1.55-1.14-2.07-1.82-.46-.64-1-1.28-1.65-1.94-3.42-3.5.98-1.45-.39-3.92-.38.85-1.16 1.43-2.25 1.79-1.48.49-3.56.62-5.62.46-.88-.04-1.63-.22-2.47-.38-1.3-.15-2.6-.6-3.74-1.14-.29-.16-.58-.3-.8-.5-.57-.46-.78-1.03-1.04-1.65 2.33.92 4.48.37 6.4-1.05.23-.17.19-.47.31-.67.25-.8.04-1.34-.19-2.05.9-.08 1.8-.13 2.68-.25.34-.05.65-.18 1-.24 1.64-.46 3.52-1.63 5.14-1.77.22-.02.48 0 .7.04.6.06 1.2.38 1.67.66 1.2.74 2.16 1.36 3.3 1.98a5.92 5.92 0 014.22.57c.52.27 1.27.92 1.74 1.4.26.25.33.69.53.92 2.93 3.31 8.89 6.91 10.88 12.54.26.72.85.94 1.6 1.05l.17-.9c-.47-.1-.85-.31-.98-.73-1.92-6.26-8.24-9.8-10.74-12.7a12.9 12.9 0 00-2.52-2.25c-1.41-.94-3.04-1-4.64-.81-.59-.3-1.19-.63-1.63-.9-.59-.29-1.06-.75-1.52-1.06a4.16 4.16 0 00-2.13-.6c-1.46-.01-3.91.93-5.83 1.8-.75.15-1.54.25-2.2.34-.86.1-1.26.23-2.1.23-1.67-.2-3.66-.3-5.12.46-1.4.73-2.58 2.35-1.9 3.35 0 .19.09.51.13.69.1.52.56 1.18.9 1.6 1.27 1.5 3.26 1.97 4.98 2.35.88.1 1.63.23 2.5.38 1.66.89 2.83 2.26 3.7 3.25 1.93 2.24 1.36 5.64-1.33 5.44.55-.64.42-1.32.6-2.06-2-2.82-6.42-3.46-6.63-.1a9.48 9.48 0 01-1.63-1.6c-1.93-2.87-5.16-4.73-6.84-7.6-1.11-2.07-.93-3.87.38-5.6 1.29-1.71 3.75-2.53 5.69-3.05 1.58-.4 4.97-1.24 6.46-1.04l-1.65-.64c-.04.02-.09 0-.13.02zm-3.44 4.73c.27-.04.58-.06.86-.06.85 0 1.68.15 2.43.16.45.83.56 1.52.3 2.03a6 6 0 01-6.46 1.02c-.27-1.25.7-2.24 1.81-2.8l.07-.01c.32-.16.64-.3.99-.34zm-7.99 6.65c2.09 2.73 4.8 4.47 6.91 6.98.6.88 2.45 2.36 2.45 2.36 1.04 1.1 3.8 2.77 4.93 2.18.14-.07.3-.27.37-.42.6-.04.99-.08 1.5-.25 1.14 1.34 1.84 2.64.59 3.87-.19-.63-.31-1.4-.78-1.7-1.55-.99-4.1.2-5.36 1.87-3.53-.57-7.33-1.05-10.18-3.17a14.46 14.46 0 01-4.26-4.55 3.94 3.94 0 01-.6-3.53c.65-2.2 2.68-3.1 4.43-3.64zm11.6 6.55c1.18-.04 2.65.8 3.65 1.89a4.55 4.55 0 01-1.15 2.7c-1.53-.04-3.15-1.07-4.3-2.4.07-1.26.61-1.9 1.35-2.1.15-.03.29-.09.45-.09zm-14.05 3.77h.03c.47.48 1.4 1.29 1.99 1.72 3.04 2.64 7.24 3.33 11.23 3.7 1.05.73 4.17.4 5.13.07.96.63 1.04 1.15.95 1.5-3.33-.13-6.51 2.37-4.99 4.72-7.8 1.13-20.46-7.37-14.34-11.71zm16.56 3.03c.14-.02.29-.06.43-.06.37 0 .7.16.98.36.35.26.62.9.69 1.51-1.64.56-3.52.72-4.97.1a4.96 4.96 0 012.87-1.9zm-14.6 6.23c2.3 1.37 6.16 2.95 8.66 3.28 1.28.07 2.02-.01 2.95.55a4.37 4.37 0 012.1 3.22c-1.3-1.42-3.58-1.06-5.12-.68-1.3.33-2.18 1.22-2.08 2.54-3.77-.87-7.05-2.13-8.13-5.67-.5-1.64.25-2.75 1.61-3.24zm16.33-1.59c.34-.06.68-.11 1.02-.14.5.47 1 1.02.98 1.5-.08 1.75-3.6 3.1-5.37 2.7-1.31-2.21.98-3.6 3.37-4.06zm-6.42 8.3c.42-.05.9-.12 1.33-.11 1.26.04 2.33.42 2.2 1.16-.5 2.84-5.43 2.43-6.16 1.37a2.03 2.03 0 011.15-2.03c.38-.18.92-.3 1.48-.38z"/>
<path fill-opacity="0.2" d="M99.42 201.46l-.48.62c-.65 2.7-1.74 5.18-3.31 7l-1.45 1.35c-.93.72-.6.68-1.75.95 1.42-.08 1.3.17 2.43-.32 2.59.2 9.33.73 13.63 1.57 9.5 1.85 18.53 5.64 27.97 7.79 3.42.78 8.1 1.5 12.49 2.1 2.12 5.55 4.92 9.79 8.07 9.68 5.57.23 14.08-4.14 18.38-7.07 4.6 1.52 10.94-.34 18.38-1.95.83.7 1.44 1.04 1.73.83.23-.16.2-.68-.03-1.4 4.1-5.06 6-11.46 8.54-17.47l.02-.02c4.07-3.26 13.89-13.4 14.84-18.7.65-1.88-.4-4.1-2.42-6.43 1.46-2.77 2.82-5.62 4.1-8.55 1.98-.3 3.45-.98 4.01-2.18.54-1.15.28-2.29-1.45-3.92 1.9-4.78 3.69-9.7 5.46-14.62a5.68 5.68 0 002.98 2.67l.07.04.39.11c.17.05.35.12.53.16l.58.08c.01 0 0 .02.02.02a5.69 5.69 0 00.97-11.33 5.8 5.8 0 00-1.94.2c-.88-2.1 2.36-1.5 5.59-7.6-1.1-.44.18.04-.86-.43l-.35.1c-.05 1.66-9.8 11.35-13.57 10.92l-1.75-.57a374 374 0 00-3.77 3.26l-6.47.6c-1.89 1.26-5 1.5-5.45 4.31.16-.09 1.32.04 1.45-.1 2.3-2.5 7.89-1.45 7.8-.9-.9 5.63-3.55 9.11-7.04 14.1 2 1.88 1.5 3.27-1.43 4.21-2.12 8.48-4.54 11.68-6.91 15.87 2.38 2.12.48 3.04-2.22 3.75.7 7.3-2.93 11.04-4.4 12.65-.64 3.18-.49 6.63-4.23 8.77-.58 1.03-.64 2.7-2.9 1.65-2.64 2.08-5.54 2.15-8.52 1.63-3.66 3.38-7.54 4.57-11.69 3.2-3.16 1.06-2.65-2.5-2.76-5.28-8.25 9.51-38.6 1-57.86-6.15-1.99-.36-2.64-2.1-3.45-3.7-1.78 2.03-2.43-.02-1.97-1.5z"/>
<path d="M154.98 177.48l1.95 1.95c.58.3 1.19.66 1.8 1.03 2.94 1.77 6.98 4.33 9.35 6.9.14 0-.13-.38-.14-.26l-.01-.1.13-.33-.37-.45a38.4 38.4 0 00-8.44-6.65 24.08 24.08 0 00-4.27-2.09zm15.36 14.44c4.4 9.6 8.53 26.75 4.37 33.07-3.15 2.96-10.48 5.88-15.62 6.54L157 232.7c5.87.25 15.3-3.96 18.68-7.15l.21-.12.02-.26c3.86-7.87.08-23.04-4.67-32.29l-.91-.96z"/>
<path d="M148.55 178.67a9.18 9.18 0 00-1.39 1.91 18.6 18.6 0 00-1.68 4.34l1.03.09c.4-1.5.9-2.84 1.52-3.93a7.35 7.35 0 011.68-2.1 4.17 4.17 0 012.1-.95c2.18-.3 4.02.53 5.66 2.17 1.65 1.65 3.03 4.13 4.18 7 2.28 5.76 3.54 13.12 3.94 18.63.36 4.79 0 11.3-1.4 16.58-.69 2.63-1.63 4.96-2.84 6.6-1.2 1.66-2.63 2.62-4.36 2.68-1.35.05-2.69-.86-4-2.54a25.97 25.97 0 01-3.32-6.18c-.09-.22-.18.54-.44-.13l-.78-.19c1.07 2.83 2.33 5.34 3.74 7.15s3.04 2.97 4.86 2.9a7.81 7.81 0 005.66-3.19 20.86 20.86 0 003.01-6.94c1.43-5.43 1.82-12 1.46-16.9-.42-5.6-1.68-13.04-4.03-18.96a22.05 22.05 0 00-4.96-7.22c-1.8-1.8-4.02-2.8-6.52-2.46-.98.13-1.81.53-2.57 1.15a6.9 6.9 0 00-.55.49z"/>
<path d="M95.75 182.69l.34.47.2-.18c1.78 1.12 2.82 2.88 4.02 4.52l-.03-.15-1.82-2.57c6.31 2.25 14.55 2.6 24.25 2.09 10.4-.56 22.32-1.94 32.82-1.04.68.06 1.43.06 2.1.14l.31-.94c-.87-.1-1.44-.16-2.33-.23-10.63-.9-22.14.11-32.52.66-10.39.55-19.65.6-25.68-2.05l-1.67-.72zm-2.28 28.04l-1.06.66 1.17.09s10.01.53 15.29 1.56c9.43 1.84 18.09 5.21 27.46 7.87 7.45 2.11 20.98 3.86 24.45 3.5l.3-.1-.43-.97c-6.52.11-15.84-1.48-24.07-3.43-9.37-2.22-17.73-6.24-27.3-8.1-4.04-.8-10.24-1.04-13.15-1.17-.54-.03-.6.47-.87.45l-1.08.1-.7-.46z"/>
<path d="M102.03 194.28c17.54-1.18 34.61 3.9 52.07 5.74.27.03.54-.19.57-.45.03-.27-1.36-.2-1.63-.23-17.37-1.83-33.38-7.3-51.19-6.07l.18 1.01z"/>
<path d="M109.86 197.67a2.8 2.8 0 00-1 1.91 2.87 2.87 0 002.57 3.08 2.87 2.87 0 003.04-2.6 2.9 2.9 0 00-2.56-3.08 2.81 2.81 0 00-2.05.69zm.67.8c.36-.32.85-.5 1.3-.46.9.08 1.73 1.07 1.65 1.97-.07.91-1.05 1.75-1.96 1.67-.9-.07-1.73-1.06-1.65-1.97.04-.45.3-.9.66-1.22z"/>
<path d="M133.62 200.4a2.87 2.87 0 00-1.01 1.93 2.88 2.88 0 002.58 3.06 2.88 2.88 0 003.04-2.6 2.88 2.88 0 00-2.58-3.06c-.76-.06-1.47.2-2.03.67zm.67.8c.37-.32.83-.48 1.28-.44.9.08 1.73 1.03 1.65 1.93l.02.02c-.07.9-1.07 1.73-1.97 1.65-.9-.07-1.72-1.05-1.63-1.95l-.02-.02c.03-.45.3-.89.67-1.2z"/>
<path d="M151.08 180.75a3.04 3.04 0 00-1.19 2.2c1.13-1.74 2.09-2.24 3.8-1.54.43.17.88.51 1.47 1.1 1.15 1.14 2.43 3.27 3.47 5.89 2.1 5.24 3.36 12.44 3.74 17.68.33 4.4-.05 10.69-1.31 15.46a19.8 19.8 0 01-2.35 5.54c-1.3 1.97-3.06 1.49-4.12-.51.16 1.22 1.24 2.75 2.32 2.83 1.18.08 2.05-.92 2.63-1.71.96-1.3 1.85-3.41 2.5-5.88a52.8 52.8 0 001.35-15.82c-.39-5.33-1.66-12.56-3.81-17.97-1.08-2.71-2.39-4.91-3.7-6.22a5.27 5.27 0 00-1.82-1.33c-1.15-.42-2.14-.32-2.98.28z"/>
<path d="M168 165.83l-.24-.82c-1.25 2.05-1.31 5.39-1.04 9.2.26 3.7.36 8.53 1.6 11.56.02.14.28.09.3.22l.15.13-.08-.03.07.08.36.39c-.02-.02 0 .01 0 0-1.44-3.87-1.13-8.75-1.4-12.43-.16-2.1-.15-4 .07-5.56.15-1.03-.17-1.48.17-2.16l.04-.58zm4.73 25c8.19 7.82 21.82 14.88 31.16 14.8l.24.07.2-.17c2.07-1.66 5.55-5 8.66-8.64 3.11-3.64 5.87-7.48 6.39-10.37l.06-.4-1.2.6c-.6 2.42-3.09 6.08-6.01 9.5-3 3.5-6.33 6.71-8.34 8.34-8.49-.21-22.5-6.52-30.89-13.9l-.27.17z"/>
<path d="M167.4 185.13c0 2.62 2.9 6.83 4.71 9.4l16.51 23.52c1.42 2.01 4.68 6.22 7.2 6.36.73-2.84-2.4-6.97-3.79-8.8l-17.6-23.24c-1.74-2.3-4.62-6.57-7.03-7.24zm.33.36c2.69 2.23 4.44 5.62 5.85 7.47l17.61 23.25c1.67 2.2 3.93 5.12 4.37 7.85-2.3-1.47-4.72-4.61-6.12-6.6l-16.51-23.5c-1.62-2.32-4.5-5.9-5.2-8.47z"/>
<path d="M169.04 163.37a4.96 4.96 0 00-1.3 1.69l-.24.53.06.02a8.42 8.42 0 00.44 6.72c1.19 2.25 3.23 4.39 5.7 6.38 4.97 3.99 11.67 7.37 16.9 9.41a55.32 55.32 0 0016.58 3.63 21 21 0 007.54-.85c2.12-.74 3.97-2.34 4.66-4.3.6-1.72-.06-3.61-1.37-5.5-.36-.5-.76-1-1.2-1.51l-.59.88c.35.4.67.8.95 1.2 1.22 1.75 1.67 3.3 1.23 4.59-.56 1.62-1.88 2.7-3.82 3.36-1.93.67-4.45.9-7.18.78a54.5 54.5 0 01-16.24-3.53c-5.15-2.02-11.81-5.37-16.64-9.25-2.41-1.94-4.36-4.02-5.45-6.08-1.09-2.06-1.34-4.07-.42-6.05a4.1 4.1 0 011.53-1.71 7.37 7.37 0 012.5-.99c.48-.1.99-.18 1.53-.23l.28-1.06c-.71.05-1.4.15-2.03.29a8.27 8.27 0 00-2.85 1.14c-.2.14-.39.28-.57.44z"/>
<path d="M179.66 138.27c-.93 3.96-1.74 7.84-2.72 11.73l.63.95c1.03-4.06 2.07-8.17 3.05-12.32l-.96-.36zm-4.1 16.53c-1.82 5.57-3.26 11.1-3.78 16.6l-.05.22.14.16a22.46 22.46 0 004.03 4.08c4.53 3.66 11.08 6.97 16.06 8.92a52.8 52.8 0 0015.51 3.4c1.77.07 3.39-.04 4.73-.27l.21-.05.12-.18a108.57 108.57 0 008.65-16.4c.09-.18-.35.3-.26.1l-.66.38-.27-.3a107.48 107.48 0 01-8.18 15.45c-1.22.2-2.67.3-4.3.24a52.17 52.17 0 01-15.18-3.3c-4.89-1.92-11.39-5.23-15.79-8.77a21.66 21.66 0 01-3.72-3.75c.53-5.4 1.8-10.62 3.57-15.6l-.83-.93zm52.71-4.65a432.66 432.66 0 01-6.28 16.58l1.23-1.09.23.26c1.93-4.82 3.74-9.76 5.53-14.72l-.7-1.03z"/>
<path d="M171.46 165.58c-.39.24-.63.56-.76.86a3.7 3.7 0 00-.4 1.9c.06.67.3 1.33.73 2.13.86 1.64 2.6 3.56 4.86 5.4 4.54 3.65 11.1 6.96 16.06 8.9a52.7 52.7 0 0015.5 3.39c2.56.1 4.84-.13 6.37-.67.75-.26 1.3-.52 1.68-.86.4-.33.6-.75.75-1.15a.94.94 0 00.04-.36 2 2 0 00-.09-.5c-.12-.4-.37-.94-.88-1.66l-.86.59c.46.66.69 1.11.77 1.38.04.13.04.2.04.24-.1.28-.21.48-.45.7-.25.2-.64.43-1.32.67-1.32.45-3.52.7-5.99.6a52.18 52.18 0 01-15.18-3.3c-4.89-1.91-11.39-5.22-15.79-8.77-2.2-1.77-3.83-3.64-4.58-5.07a4.81 4.81 0 01-.63-1.75c-.04-.45.04-.86.28-1.39.09-.17.17-.28.4-.42s.64-.3 1.34-.45l-.22-1.01c-.77.17-1.28.36-1.67.6z"/>
<path d="M93.53 183.35l.36.25c3.93 2.53 5.68 8.97 5.11 15.07-.28 3.05-1.12 5.99-2.49 8.29s-2.58 3.53-4.92 4.08c-.3 1.55 3.02.7 4.03.21 1.56-.8 2.85-1.95 3.86-3.4 1.86-2.64 2.83-6.19 3.11-10.17a22.2 22.2 0 00-2.17-10.5c-.76-1.55-1.84-3.05-3-3.77-1.39-.86-2.73-1.32-3.9-.06zm1.75.21c.48-.2 1.41.07 2 .54.9.71 1.84 2 2.56 3.47a21.47 21.47 0 012.07 9.98c-.28 3.86-1.3 7.19-2.93 9.67-1.04 1.57-3.04 3.86-4.88 3.63 3.74-2.47 5.95-8.25 6.34-12.14.55-5.88-1.4-11.97-5.16-15.15z"/>
<path d="M173.79 152.33c.15.87.43 2.3 1.07 3.14 1.27 1.7 3.38 3.37 5.89 4.98 5.01 3.23 11.7 6.2 16.75 8.06a76.63 76.63 0 0015.93 3.9c2.69.33 5.18.42 7.19.1 2-.3 3.74-1.6 4.4-3a2.9 2.9 0 00.17-2.18c-.25-.75-.8-1.5-1.7-2.35a.53.53 0 00-.74.02c-2.46 2.54-5.9 2.24-8.97 1.88a72.02 72.02 0 01-14.68-3.62c-4.74-1.74-11.76-4.81-16.06-7.63-2.15-1.41-3.78-2.86-4.52-3.89a3.55 3.55 0 01-.62-1.65c-.06-.56.05-1.05.19-1.26.22-.34-.13-.86-.52-.79-1.81.03-4.17 1.73-3.78 4.29zm3.26-3.08c-.05.33-.21.61-.17.97.08.72.33 1.48.8 2.13.88 1.22 2.59 2.67 4.8 4.13 4.45 2.91 11.46 5.97 16.26 7.74a72.67 72.67 0 0014.92 3.68c2.95.35 6.59.6 9.37-1.87a5.28 5.28 0 011.18 1.6c.17.52.11.94-.12 1.42-.45.96-1.66 1.6-3.5 1.88-1.86.3-4.26.24-6.9-.08a75.68 75.68 0 01-15.69-3.88c-5-1.84-11.66-4.8-16.56-7.96-2.46-1.58-4.48-3.21-5.63-4.72a4.99 4.99 0 01-1.02-2.1c-.07-1.7.75-2.5 2.26-2.94z"/>
<path d="M183.48 103.5c-1.46 2.93-1.97 6.54-2.28 10.44-.6 7.8-.43 16.7-4.85 23.3l-.4.61.74.16c11.17 2.56 21.44 6.25 28.37 14.73l.47.57.36-.67c5.3-5.18 16.2-3.63 22.3-1.78a6.1 6.1 0 0011.6-2.2 6.2 6.2 0 00-5.64-6.7c-.51-.04-1 .09-1.5.16 0-.11-.07-.27.01-.39 2.52-2.2 4.5-4.47 5.83-6.93l-.53-.2c-22.23-7.4-33.37-25.55-46.6-37.55-3.44.95-6.4 3.55-7.88 6.45zm7.55-4.5c14.02 13.01 26.96 30.69 45.97 36.28a15.36 15.36 0 01-3.88 4.7c-.54.43-1 .7-1.3 1.16-.32.45-.37 1.1-.1 1.72l.18.4.42-.12a5.14 5.14 0 016.44 5.44 5.17 5.17 0 01-9.88 1.6l-.21-.18-.05-.13-.22-.05c-5.06-1.48-15.8-4.81-22.94 1.86-7-8.28-17.09-11.96-27.9-14.49 4.26-6.87 4.09-15.67 4.67-23.17.3-3.86.8-7.36 2.14-10.07 1.54-2.94 3.82-4.23 6.66-4.95z"/>
<path d="M181.1 135.07c9.96 2.81 18.24 6.72 24.27 12.71 8.7-3 16.15-2.96 22.41.35.18.06.38.02.52-.1.27-.24.14-.79-.22-.88a.4.4 0 00-.05-.02c-3.1-2.93-14.82-4-22.6-.62-1.05-2.02-16.72-12.7-24.33-11.44z"/>
<path d="M227.59 147.27a.52.52 0 00-.13.33c-.08.93.05 1.83.35 2.65l1.1-.02a5.18 5.18 0 01-.44-2.57c.03-.42-.6-.7-.88-.39z"/>
<path d="M232.39 146.8a1.6 1.6 0 00-.55 1.1c-.08.86.55 1.64 1.42 1.71a1.6 1.6 0 001.73-1.44 1.6 1.6 0 00-2.6-1.37zm.46 1.19c.02-.25.35-.57.6-.55.26.03.56.38.54.63-.03.26-.38.55-.64.53-.25-.02-.53-.35-.5-.61z"/>
<path fill-opacity=".3" d="M151.42 180.96l-1.38 1.32c-.3.97-.34 1.97-.16 2.74l3.56.24 4.15.15-.74-2.12-2.05-1.97-1.84-.8-1.54.44zm20.05-14.55l-.54 1.6.86 2.56s.4.52.45.38c.05-.14.6-2.96.6-2.96l.27-2.43-1.64.85z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 22 KiB

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200"><metadata license="https://creativecommons.org/licenses/by-nc-sa/3.0" source="http://wappenwiki.org/images/1/13/Brazil_Ancient.svg"/><g id="armillarySphere" stroke-width=".375"><path d="M100 139.7v-2.2c5 0 11-4.2 15.6-10.8a47.3 47.3 0 00.2-53.2c-4.6-6.8-10.5-10.8-15.7-10.8v-2.2c6 0 12.5 4.4 17.6 11.7a49.4 49.4 0 01-.3 55.7c-5.1 7.4-11.6 11.8-17.3 11.8z"/><path d="M100 139.7v-2.2c1.4 0 4.7-2.9 7.9-10.6 1.8-4.6 5-14.2 5-26.8 0-12.8-3-22.3-5-26.8-2.9-7.3-6.1-10.6-7.8-10.6v-2.2c3.2 0 6.9 4.5 10 12 1.8 4.6 5 14.4 5 27.6 0 13-3.2 22.9-5.2 27.6-3.1 7.5-6.8 12-9.8 12z"/><path d="M100 139.7c-5.7 0-12.2-4.4-17.3-11.8a49.5 49.5 0 01-.2-55.7C87.5 65 94 60.5 100 60.5v2.2c-5.3 0-11.2 4-15.8 10.8a47.3 47.3 0 00.2 53.1c4.7 6.7 10.6 10.8 15.6 10.8v2.3z"/><path d="M100 139.7c-3 0-6.7-4.5-9.8-12a75.7 75.7 0 01-.1-55.3c3-7.4 6.8-12 10-12v2.3c-1.8 0-5 3.3-8 10.6a72 72 0 00-5 26.8c0 12.6 3.3 22.2 5.2 26.8 3.2 7.7 6.4 10.5 7.8 10.5v2.2z"/><path d="M72.8 72.1h55v2.2h-55z"/><path d="M64.6 85.5h71.2v2.2H64.6z"/><path d="M72.3 125.8h55v2.2h-55z"/><path d="M64.4 112.4h71v2.2h-71z"/><path d="M61.7 99h76.4v2.2H61.7z"/><path d="M100 139.7a39.6 39.6 0 11.1-79.3 39.6 39.6 0 010 79.3zm0-77a37.4 37.4 0 10.1 74.8 37.4 37.4 0 000-74.8z"/><path d="M64.4 81.3l66.6 44.6a41 41 0 004.8-7.1L69.2 74a40.8 40.8 0 00-4.8 7.2z"/><path d="M65.5 80l66.6 44.6"/><path d="M135 120.4l-67-45"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/6/66/Luk.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="arrow" stroke-width="0.33">
<path class="tertiary" d="M100.814 137.53a6.6 6.6 0 0 0 2.453.671c1.056 0 2.222-1.056 2.222-2.288 0-3.399-4.675-12.254-4.675-12.254zm-1.65 0s-1.331.671-2.453.671c-1.056 0-2.222-1.056-2.222-2.288 0-3.399 4.675-12.254 4.675-12.254z"/>
<path d="M99.164 69.286v70.785s.363.132.825.132.825-.209.825-.209V69.209z"/>
<ellipse cx="99.989" cy="68.923" rx="1.65" ry="0.913"/>
<path class="secondary" d="m101.023 68.89-.385-5.819 2.398 4.895h3.564l-6.6-7.909-6.6 7.909h3.564l2.398-4.895-.385 5.819s.308.286 1.034.286c.704 0 1.012-.286 1.012-.286z"/>
<path fill="#000" stroke="none" d="m100.968 126.904 2.035 4.444-2.332-4.301zm-.011 3.652 2.024 3.322-2.299-3.135zm-.011 3.157 2.112 3.212-2.376-3.014zm-1.628-6.666-2.343 4.301 2.046-4.444zm-.011 3.696-2.299 3.135 2.024-3.322zm0 3.168-2.376 3.014 2.101-3.212z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,27 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/6/66/Luk.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="arrowsSheaf" stroke-width="0.33">
<g transform="rotate(-45.0 95.7055 101.4695)">
<path class="tertiary" d="M 100.814 66.47a 6.6 -6.6 0 0 1 2.453 -0.671c 1.056 0.0 2.222 1.056 2.222 2.288 0.0 3.399 -4.675 12.254 -4.675 12.254zm -1.65 0.0s -1.331 -0.671 -2.453 -0.671c -1.056 0.0 -2.222 1.056 -2.222 2.288 0.0 3.399 4.675 12.254 4.675 12.254z"/>
<path d="M 99.164 134.714v -70.785s 0.363 -0.132 0.825 -0.132 0.825 0.209 0.825 0.209v 70.785z"/>
<ellipse cx="99.989" cy="135.077" rx="1.65" ry="0.913"/>
<path class="secondary" d="M 101.023 135.11l -0.385 5.819 2.398 -4.895H 106.6l -6.6 7.909 -6.6 -7.909h 3.564l 2.398 4.895 -0.385 -5.819s 0.308 -0.286 1.034 -0.286c 0.704 0.0 1.012 0.286 1.012 0.286z"/>
<path fill="#000" stroke="none" d="M 100.968 77.096l 2.035 -4.444 -2.332 4.301zm -0.011 -3.652l 2.024 -3.322 -2.299 3.135zm -0.011 -3.157l 2.112 -3.212 -2.376 3.014zm -1.628 6.666l -2.343 -4.301 2.046 4.444zm -0.011 -3.696l -2.299 -3.135 2.024 3.322zm 0.0 -3.168l -2.376 -3.014 2.101 3.212z"/>
</g>
<g transform="rotate(45.0 104.7289 101.481)">
<path class="tertiary" d="M 100.814 66.47a 6.6 -6.6 0 0 1 2.453 -0.671c 1.056 0.0 2.222 1.056 2.222 2.288 0.0 3.399 -4.675 12.254 -4.675 12.254zm -1.65 0.0s -1.331 -0.671 -2.453 -0.671c -1.056 0.0 -2.222 1.056 -2.222 2.288 0.0 3.399 4.675 12.254 4.675 12.254z"/>
<path d="M 99.164 134.714v -70.785s 0.363 -0.132 0.825 -0.132 0.825 0.209 0.825 0.209v 70.785z"/>
<ellipse cx="99.989" cy="135.077" rx="1.65" ry="0.913"/>
<path class="secondary" d="M 101.023 135.11l -0.385 5.819 2.398 -4.895H 106.6l -6.6 7.909 -6.6 -7.909h 3.564l 2.398 4.895 -0.385 -5.819s 0.308 -0.286 1.034 -0.286c 0.704 0.0 1.012 0.286 1.012 0.286z"/>
<path fill="#000" stroke="none" d="M 100.968 77.096l 2.035 -4.444 -2.332 4.301zm -0.011 -3.652l 2.024 -3.322 -2.299 3.135zm -0.011 -3.157l 2.112 -3.212 -2.376 3.014zm -1.628 6.666l -2.343 -4.301 2.046 4.444zm -0.011 -3.696l -2.299 -3.135 2.024 3.322zm 0.0 -3.168l -2.376 -3.014 2.101 3.212z"/>
</g>
<g transform="translate(0 -3.73)">
<path class="tertiary" d="M 100.814 66.47a 6.6 -6.6 0 0 1 2.453 -0.671c 1.056 0.0 2.222 1.056 2.222 2.288 0.0 3.399 -4.675 12.254 -4.675 12.254zm -1.65 0.0s -1.331 -0.671 -2.453 -0.671c -1.056 0.0 -2.222 1.056 -2.222 2.288 0.0 3.399 4.675 12.254 4.675 12.254z"/>
<path d="M 99.164 134.714v -70.785s 0.363 -0.132 0.825 -0.132 0.825 0.209 0.825 0.209v 70.785z"/>
<ellipse cx="99.989" cy="135.077" rx="1.65" ry="0.913"/>
<path class="secondary" d="M 101.023 135.11l -0.385 5.819 2.398 -4.895H 106.6l -6.6 7.909 -6.6 -7.909h 3.564l 2.398 4.895 -0.385 -5.819s 0.308 -0.286 1.034 -0.286c 0.704 0.0 1.012 0.286 1.012 0.286z"/>
<path fill="#000" stroke="none" d="M 100.968 77.096l 2.035 -4.444 -2.332 4.301zm -0.011 -3.652l 2.024 -3.322 -2.299 3.135zm -0.011 -3.157l 2.112 -3.212 -2.376 3.014zm -1.628 6.666l -2.343 -4.301 2.046 4.444zm -0.011 -3.696l -2.299 -3.135 2.024 3.322zm 0.0 -3.168l -2.376 -3.014 2.101 3.212z"/>
</g>
<rect width="5.06" height="2.64" x="97.58" y="98.26"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -1,18 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/9/9d/Regenstein_Ancient.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="attire" stroke-width=".3">
<path d="M91.4 134c-.53.07-1.3-.71-1.46-1.22a2.3 2.3 0 01.13-1.57c.2-.5.66-.97 1.15-1.16 1.3-.51 2.09.16 2.42.14 0 0 2.13-.57 3.49-3.6.59-1.3 4.23-6.22 5.35-8.03 2.65-4.28 4.55-12.2 4.75-13 .99-8.35-.31-11-3.3-15.5-.3-.5-1.05-1.18-2.93-3.34-.71-.81-3.7-3.4-5.66-4.11-3.36-1.54-3.72-.25-7.45-.37-4.5-.15-9.65-7.8-12.4-8.9-1.35-.55-2.94-.66-5.16.1-.44.16-.06-1.68 2.54-2.58 1.97-.68 4.03-.7 5.25-.25 2.5.9 4.83 4.16 8.09 5.66 1.73.8 4.44 1.1 6 .29 2.32-1.21 2.3-2.57 2.29-3.51-.18-3.03-4.72-4.24-4.65-8.85.03-1.62.82-3.22 1.48-3.71.46-.52.82-.43.85.23-.11 6.27 6.25 6.86 7.17 11.1.54 2.49.39 3.53.38 3.99.1.92 1.5 2.69 3.6 4.46 2.36 1.98 3.26 3.3 4.58 3.82 1.28.44 3.65-1.18 4.1-2.37 1.27-3.25-.78-6.7.93-11.1a8.05 8.05 0 014.6-4.43c.7-.23.82.34.49.79-.32.45-3.03 2.14-1.84 7.59.5 2.35 1.35 6.26.09 9.52-1.52 3.93-3.43 3.36-4.23 6.76-.1.83 2.2 5.87 1.84 8.5-.23 1.73-.15 4.19 1.49 4.44 2.77.4 5.15-2.1 6.03-4.52 1.05-2.87 1.77-5.95 4-7.75a7.33 7.33 0 013.88-1.75c.77-.06.68.38.42.65-.18.19-1.61 1.2-2.66 3.23-1.18 2.26-1.21 5.2-1.7 8.45-.88 4.78-5.3 7.47-7.77 7.86-2.18.34-4.08-.17-4.77 1.45a91 91 0 01-2.66 6.84c-.82 1.67.94 3.77 2.8 4.4 3.37 1.4 5.38-1.52 6.67-2.44 3.22-2.27 7.65-2.97 9.58-1.13 1.34 1.4.05 1.2-.42 1.17-4.25-.4-6.21 3.9-10.5 6.5a10 10 0 01-8.3.77c-1.22-.42-1.65-1.12-2.92-1.2-1.13-.05-1.83.9-3.1 2.55-1.34 1.73-2.91 3.66-3.38 4.3-.44.62-.81 1.3-1.06 2.02a.81.81 0 00-.07.4c.02.13.09.24.16.36.23.39.38.83.44 1.27.13.9-.11 1.89-.77 2.52-.66.63-1.61.8-2.41.36-1.01-.56-1.28-1.37-1.4-1.41 0 0-1.7-.31-2.53-1.04-1.3-1.01-1.97-2.22-1.54-3.65z"/>
<g stroke="none" fill="#000">
<path d="M99.86 75.8c-.12.85-.4 1.74-.65 2.43.24-.86.32-1.68.38-2.45z"/>
<path d="M94.3 133c-.86-.4-2.3.02-2.88 1.27l-.26-.13c.76-1.37 2.12-1.66 3.14-1.14-.01-.01 0 0 0 0z"/>
<path d="M97.6 135c.82.88.7 2.13.02 2.99.32-.99.33-1.98-.02-2.99z"/>
<path d="M111 99.3a37.6 37.6 0 01-.35 3.13c-.03.23-.05.46-.01.67.02.1.06.2.1.31.33.62.16 1.09-.09 1.73-.11.26-.47.97-.48 1.58-.17-.77.08-1.17.28-1.68.34-.78.17-1.2-.11-1.91a2.2 2.2 0 01.02-.77c.16-1.04.38-2 .64-3.06z"/>
<path d="M107 112c-.1 1.1-.6 2.08-1.57 2.66.54-.84 1.07-1.74 1.57-2.66z"/>
<path d="M108 85.2c-.19.1-.42.1-.62.05-.36-.1-.66-.32-.98-.5a8.47 8.47 0 01-1.37-1.1c.32.13.64.3.94.47.4.24.78.51 1.16.78.23.16.5.32.79.31l.08-.01z"/>
<path d="M114 109c-.86.33-1.5.96-2.07 1.71.22-1.08.72-1.7 2.07-1.71z"/>
<path d="M107 125c-.85.28-1.52.88-2.14 1.54.3-1.06 1-1.55 2.14-1.54z"/>
<path d="M102 123c-.25.24-.6.4-.77.71-.08.2-.02.43-.07.64-.07.3-.31.52-.54.7-.18.17-.37.33-.5.55-.34.5-.52 1.09-.73 1.65l-.07.18c.03-.36.09-.71.17-1.06a2.9 2.9 0 01.79-1.4c.2-.2.5-.35.6-.64.06-.27.02-.6.25-.81.24-.25.57-.36.87-.52z"/>
<path d="M96.3 81.8c-1.65-1-3.67-1.3-5.64-1.59 2.02-.21 4.13.04 5.64 1.59z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1,16 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/c/cd/St_Gall.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="axe" stroke-width=".5">
<path d="M102.25 84.98l.03 54.55c0 1.36-1.09 1.65-2.45 1.65-1.35 0-2.46-.27-2.46-1.65l.07-54.7c0-.2 1.06-.42 2.42-.42 1.33 0 2.39.38 2.39.57z"/>
<g class="secondary">
<path d="M95.9 78.3c-10.6 0-12.89-9.37-13.47-10.87 0 0-4.77 4.83-4.77 15.01 0 11.7 6.15 16.4 6.15 16.4s-1.6-8.62 8.6-11.5v-.46l.02-.12.02-.07.03-.1.04-.1.05-.13.03-.08.04-.07.05-.09.07-.1.07-.09.05-.07.05-.05.05-.05.06-.03a.24.24 0 01.07-.06l.05-.03a.14.14 0 01.07-.04l.08-.05a.85.85 0 01.12-.05l.07-.02.07-.01.12-.04.05-.02.1-.01H96"/>
<path d="M102.92 84.5c5-.04 7.95.3 11.53 1.88 3.1 1.38 5.23 4.27 5.23 4.27.26-2.6-1.64-5.75-4.58-8.05-3.12-2.46-8.4-3.94-12.18-3.94"/>
<path d="M102.38 76.53C102.2 68.12 100 62 100 62s-2.14 6.36-2.38 14.53"/>
<path fill="#000" stroke="none" d="M82.37 71.3a23.97 23.97 0 00-1.52 5.8A34.7 34.7 0 0082 91.91c.3.95.63 1.9 1.02 2.84a17.92 17.92 0 01-1.8-4.17 26.18 26.18 0 01-1.15-7.48 30.84 30.84 0 011.2-8.99 20.08 20.08 0 011.11-2.81z"/>
<path d="M103.61 86.07h-7.53c-.1 0-.18-.07-.18-.17v-8.37c0-.1.07-.17.18-.17h7.53c.1 0 .17.07.17.17v8.37c0 .1-.06.17-.17.17z"/>
<circle cx="99.844" cy="81.716" r="2.644"/>
<rect width="6.359" height="2.177" x="96.82" y="75.185"/>
<line x1="96.803" x2="102.903" y1="76.273" y2="76.273"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1,62 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/1/14/Taxis_Ancient.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="badgerStatant" stroke-width="0.357">
<g class="secondary">
<path d="M126.1 118.94c-.43.1-.88.01-1.32.1-.43.08-.82.3-1.1.64a.92.92 0 0 0-.22.5v.1c-.01.07-.1.09-.14.11a12.8 12.8 0 0 0-.97.68c-.3.3-.54.68-.53 1.1 0 .08.02.16.1.17.03.02.06 0 .09-.02.37-.19.55-.38.9-.6a6.45 6.45 0 0 1 2.24-.97"/>
<path d="M127.6 119.99a2.76 2.76 0 0 0-1.8.18c-.19.07-.35.16-.5.28-.07.05-.14.13-.21.17a3.68 3.68 0 0 0-.83.65c-.3.3-.55.68-.54 1.11 0 .07.03.16.1.17.03 0 .07-.01.1-.03.36-.19.66-.39 1-.6.66-.4 1.37-.87 2.13-.97m-3.92-2.64c-.34.08-1.79.2-2.67.63-.38.2-.96.63-1.07 1.04-.01.06-.02.15.04.18h.1c.4-.09.51-.18.9-.3.75-.18 1.8-.45 2.55-.32m-.08.02c-.83.15-1.8.56-2.43 1.14a1.5 1.5 0 0 0-.53 1.1c0 .08.02.16.1.18l.09-.03c.37-.19.55-.38.9-.6a8.03 8.03 0 0 1 2.58-1.02"/>
</g>
<g class="secondary">
<path d="M82.9 118.94c-.42.1-.88.01-1.32.1-.42.08-.82.3-1.1.64a.92.92 0 0 0-.22.5v.1c0 .07-.1.09-.14.11a12.8 12.8 0 0 0-.96.68c-.3.3-.55.68-.54 1.1 0 .08.02.16.1.17.03.02.07 0 .1-.02.36-.19.54-.38.9-.6a6.45 6.45 0 0 1 2.23-.97"/>
<path d="M84.4 119.99a2.76 2.76 0 0 0-1.82.18c-.17.07-.34.16-.48.28-.08.05-.15.13-.22.17a3.68 3.68 0 0 0-.83.65c-.3.3-.55.68-.54 1.11 0 .07.03.16.1.17.03 0 .07-.01.1-.03.36-.19.66-.39 1-.6.66-.4 1.37-.87 2.14-.97m-3.92-2.64c-.33.08-1.79.2-2.67.63-.38.2-.96.63-1.07 1.04 0 .06-.02.15.04.18h.1c.41-.09.52-.18.91-.3.74-.18 1.8-.45 2.55-.32m-.09.02c-.83.15-1.8.56-2.42 1.14a1.5 1.5 0 0 0-.54 1.1c0 .08.02.16.1.18l.1-.03c.36-.19.54-.38.9-.6a8.03 8.03 0 0 1 2.58-1.02"/>
</g>
<g class="secondary">
<path d="M76.12 115.13c-.43.1-.88.02-1.32.1-.43.08-.82.3-1.1.64a.92.92 0 0 0-.22.5v.1c-.01.07-.1.1-.14.12a12.8 12.8 0 0 0-.97.67c-.3.3-.54.68-.53 1.11 0 .07.02.15.1.17l.09-.03c.37-.19.55-.38.9-.6a6.45 6.45 0 0 1 2.24-.97"/>
<path d="M77.6 116.18a2.76 2.76 0 0 0-1.8.18c-.18.07-.34.17-.49.28-.07.05-.14.14-.21.17a3.68 3.68 0 0 0-.83.66c-.3.3-.55.67-.54 1.1 0 .07.02.16.1.17.03.01.07-.01.09-.02.37-.2.67-.4 1.01-.61.66-.4 1.37-.87 2.13-.97m-3.91-2.64c-.34.09-1.79.2-2.67.63-.38.2-.96.63-1.07 1.04-.01.06-.02.15.04.18h.1c.4-.09.51-.18.9-.29.75-.19 1.8-.46 2.55-.33m-.08.02c-.83.16-1.8.56-2.43 1.14a1.5 1.5 0 0 0-.53 1.11c0 .07.02.16.1.17.03.01.06-.01.09-.03.37-.19.55-.38.9-.6a8.03 8.03 0 0 1 2.58-1.01"/>
</g>
<g>
<path d="M82.17 99.45c-.07.7-.15 1.42-.36 2.08-.05.14-.1.28-.12.42-.05.22-.18.43-.24.65-.14.5-.16 1.04-.25 1.55-.08.51-.22 1.02-.33 1.53a8.07 8.07 0 0 0-.15 1.05c-.06.2-.08.4-.11.6a5.53 5.53 0 0 1-1.07 2.32c-.16.2-.37.37-.53.57-.26.34-1.1 1.4-1.27 1.8-.32.77-.8.8-1.02 1.02-1.85 1.64-3.09.12-3.57 1.45.23.36.06.93-.23 1.24a1.17 1.17 0 0 1 .57.76c.3.05.55-.23.86-.25.26-.02.53.18.57.44.01.06.01.13.06.15.04.03.08.02.12.02.34-.06.68-.18 1.02-.2a1.07 1.07 0 0 1 .6.17c.08.06.15.13.21.22l.07.07a1.04 1.04 0 0 0 1.4.2c1.27-.9 3.17-.82 4.37-2.9.73-1.13.53-2.4 2.27-3.85 1.38-1.15 2.46-3.05 3-3.69.73-.86 1.22-2.32 2.11-2.78M71.37 83.8c-.98-2.01-.82-5.25-.13-5.74.4-.28 1.1-.14 1.51.04.14.05 1.7.73 2.82 1.74"/>
<g stroke="none" fill="#000">
<path d="M72.79 115.63a3.27 3.27 0 0 1 .88-.76.6.6 0 0 1 .2-.07l.2-.02c.26-.03.5 0 .74-.02.25 0 .5-.03.72-.15a1.84 1.84 0 0 1-.7.25c-.26.04-.5.05-.74.1l-.17.04-.14.07c-.1.06-.18.15-.26.23-.17.17-.31.36-.47.56l-.26-.23zm.6.76.2-.28.13-.13.08-.06.08-.05.16-.07.07-.04.05-.02.05-.01.33-.05.65-.1c.22-.04.42-.13.6-.26a1.3 1.3 0 0 1-.57.34l-.63.19-.31.1h-.03l-.02.02-.07.04-.13.09-.05.03-.05.05-.08.1-.14.3-.33-.19zm1.45.43c0-.1.02-.22.08-.35a.44.44 0 0 1 .15-.18l.17-.07c.1-.04.22-.08.32-.09l.17-.02h.07l.07-.01.31-.06.31-.06c.2-.03.42-.05.58-.2-.14.17-.36.23-.56.28l-.3.1-.29.1-.08.03h-.05l-.04.02-.14.04c-.1.02-.18.07-.26.12l-.1.06-.04.07-.02.25-.35-.03zm2.58-3 .26-.06h.25l.25.04.25.08a.54.54 0 0 1-.25.1.97.97 0 0 1-.26.01c-.08-.01-.18-.02-.26-.06a.5.5 0 0 1-.24-.12zm.65-.42h.04l.02-.02.05-.03.13-.03.13.03.13.1-.13.09-.13.02-.13-.02-.08-.05-.04-.05.01-.04z"/>
</g>
</g>
<g stroke="none" fill="#000">
<path d="M83.87 109.03c.12-.03.2-.1.28-.18l.23-.26.4-.57.41-.59.43-.6c-.01.26-.09.5-.18.73a3.5 3.5 0 0 1-.86 1.23c-.1.08-.2.16-.32.21l-.19.06c-.08 0-.15 0-.2-.03z"/>
</g>
<g class="secondary">
<path d="M115.03 115.13c-.42.1-.88.02-1.32.1-.42.08-.82.3-1.1.64a.92.92 0 0 0-.22.5v.1c0 .07-.1.1-.14.12a12.8 12.8 0 0 0-.96.67c-.3.3-.55.68-.54 1.11 0 .07.02.15.1.17l.1-.03c.36-.19.54-.38.9-.6a6.45 6.45 0 0 1 2.23-.97"/>
<path d="M116.52 116.18a2.76 2.76 0 0 0-1.8.18c-.18.07-.35.17-.5.28-.07.05-.14.14-.2.17a3.68 3.68 0 0 0-.84.66c-.3.3-.55.67-.54 1.1 0 .07.03.16.1.17.03.01.07-.01.1-.02.36-.2.66-.4 1-.61.66-.4 1.37-.87 2.14-.97m-3.92-2.64c-.33.09-1.79.2-2.67.63-.38.2-.96.63-1.07 1.04 0 .06-.02.15.04.18h.1c.41-.09.52-.18.91-.29.74-.19 1.8-.46 2.55-.33m-.09.02c-.83.16-1.8.56-2.42 1.14a1.5 1.5 0 0 0-.54 1.11c0 .07.02.16.1.17.03.01.07-.01.1-.03.36-.19.54-.38.9-.6a8.03 8.03 0 0 1 2.58-1.01"/>
</g>
<g>
<g>
<path d="M112.68 99.73c-1.35.87-1.58 4-1.16 5.43 1.03 3.43 4.8 2.93 5.5 5.15.29.88.3 1.7-1.03 2.75-1.85 1.64-3.44.12-3.93 1.45.24.36.06.93-.23 1.24a1.17 1.17 0 0 1 .57.76c.3.05.55-.22.86-.25.26-.02.54.18.57.44.01.06.01.13.06.16.04.02.09.01.12.01.35-.06.68-.18 1.02-.19a1.07 1.07 0 0 1 .6.17c.08.06.15.13.21.21l.08.07a1.04 1.04 0 0 0 1.4.2c1.26-.9 3.46-1.14 4.53-2.48a5.12 5.12 0 0 0 1.16-3.2c.03-.75.03-1.07.41-1.8.37-.7 1.04-1.4.73-2.25-.07-.19-.19-.37-.3-.53-.21-.34-.5-.73-.75-1.16a3.88 3.88 0 0 1-.64-1.8c0-.33.86-2.78 1.01-2.8"/>
</g>
<g stroke="none" fill="#000">
<path d="M120.69 105.05c.1.09.15.2.19.3a.83.83 0 0 1-.1.67.58.58 0 0 1-.27.22c-.01-.13 0-.22.01-.32l.04-.27.06-.27c0-.11.02-.2.07-.33zm-1.2 1.56a.95.95 0 0 1-.03.82.65.65 0 0 1-.34.3c-.15.06-.32.05-.43-.05.14-.04.21-.12.28-.19.08-.07.13-.15.18-.23l.15-.3c.04-.1.1-.23.19-.35zm-7.79 9.02a3.27 3.27 0 0 1 .88-.76.6.6 0 0 1 .2-.07l.2-.02c.26-.03.5 0 .75-.02.25 0 .5-.03.71-.15a1.84 1.84 0 0 1-.7.25c-.25.04-.5.05-.74.1l-.17.04-.14.07c-.1.06-.18.15-.26.23-.17.17-.31.36-.47.56l-.26-.23zm.6.76.2-.28.13-.13.08-.06.09-.05.15-.07.07-.04.05-.02.05-.01.33-.05.66-.1c.21-.04.41-.13.6-.26a1.3 1.3 0 0 1-.58.34l-.63.19-.31.1h-.02l-.03.02-.07.04-.13.09-.05.03-.04.05-.09.1-.14.3-.32-.19zm1.45.43c.01-.1.02-.22.08-.35a.44.44 0 0 1 .16-.18l.16-.07c.1-.04.22-.08.33-.09l.16-.02h.07l.08-.01.3-.06.31-.06c.2-.03.42-.05.59-.2-.15.17-.37.23-.56.28l-.3.1-.3.1-.08.03h-.05l-.03.02-.15.04c-.1.02-.18.07-.26.12l-.1.06-.04.07-.01.25-.36-.03zm2.82-3 .26-.06h.25l.25.04.25.08a.54.54 0 0 1-.25.1.97.97 0 0 1-.26.01c-.08-.01-.18-.02-.26-.06a.5.5 0 0 1-.24-.12zm.65-.42h.04l.02-.02.05-.03.13-.03.13.03.13.1-.13.09-.13.02-.13-.02-.08-.05-.04-.05.01-.04z"/>
</g>
</g>
<path d="M89.32 81.73c-2.9 0-4.62-.58-7.1-1.69a12.59 12.59 0 0 0-6.12-1.02c-3 .38-5.63 1.3-7.3 3.61-.6.86-1.48 2.68-1.9 3.23-.56.71-1.24 1.45-1.8 2.15a3.98 3.98 0 0 0-.99 2.48c0 .97.22 2.02-.55 2.62-.58.44-1.44 2.36-2.72 3.36-.87.66-1.03 1.78-.55 2.34.92.96 1.85.91 2.17.8a3.42 3.42 0 0 0 2.67.73l-.02.01c1.12.35 2.31-.26 3.25-.96s2.12-2 3.28-2.23c.32-.06.65-.07.97-.14a4.3 4.3 0 0 0 1.37-.6c.42.16.75.1 1.12.02.34-.08 1.12-.6 2.02-.6a2.14 2.14 0 0 1 1.73.82c.39.47.66 1.02.96 1.55s.64 1.06 1.14 1.4c1.09 1.02.32 2.52 3.5 4.77a8.73 8.73 0 0 0 3.02 1.28l6.97.05a6.6 6.6 0 0 0 5.45.53c.57-.22 1.21-.16 1.82-.13 1.16.07 2.33.06 3.48-.02 1.03-.07 2.06-.21 3.07-.33 4.17-.53 8.8-2.98 10.98-2.7 0 0 .3 1.72 1.58 3.73a6.54 6.54 0 0 0 3.57 2.87c.77.3 1.57.6 2.15 1.19.86.86 1.75 1.74 1.31 2.86-.18.46-.17 1.72-.38 2.16-.32.77-.8.81-1.02 1.02-1.85 1.65-2.85.12-3.34 1.46.24.35.06.92-.22 1.23a1.17 1.17 0 0 1 .57.77c.3.04.55-.23.86-.25.26-.03.53.17.57.44.01.06.01.13.06.15.03.02.08.01.12.01.34-.06.67-.18 1.02-.19a1.07 1.07 0 0 1 .6.17c.08.06.15.13.2.21l.08.07a1.04 1.04 0 0 0 1.4.2c1.27-.9 3.05-.81 4.25-2.9.42-.83.87-1.62.97-2.6.08-.81-.28-2.7.02-3.48.38-.95 1.08-2.98.31-3.98-.07-.1-.17-.16-.26-.23-.88-.62-2 .08-1.57-3.17.52-2.17.93-5.27.52-9.4 1.05 2.79.99 5.74 1.4 8.18a4.78 4.78 0 0 0 1.54 2.74 3.49 3.49 0 0 0 2.58 2.04c.93.99 2.1 1.04 1.97.48-.65-2.4.27-5.49-.37-8.32-1.3-5.75-4.58-6.3-6.55-10.84a27.13 27.13 0 0 0-4.17-5.77c-1.11-1.2-2.96-2.42-4.31-3.33a15.3 15.3 0 0 0-4.57-2.09 48.7 48.7 0 0 0-6.8-1.19c-2.41-.13-4.76-.1-7.16.29-6.57 1.05-11.2 4.14-16.85 4.14z"/>
<g>
<g stroke="none" fill="#000">
<path d="M98.13 94a4.88 4.88 0 0 1 .3 1.97c0 .23-.04.46-.07.67l-.08.66a3.6 3.6 0 0 0 .38 1.85l-.32.16a3.76 3.76 0 0 1-.29-2.04c.03-.22.09-.44.12-.67.05-.2.1-.42.12-.64a4.37 4.37 0 0 0-.17-1.96zm-11.86 8.32c.05-.72.06-1.43.03-2.15l-.09-1.07a4.7 4.7 0 0 1 0-1.08c-.03.36.03.72.09 1.07l.16 1.07c.1.72.15 1.44.17 2.17l-.36-.01zm-1.54-9.07c.1.03.19.1.27.15l.2.2a1.27 1.27 0 0 1 .25.55c-.1-.03-.19-.1-.27-.15l-.2-.2a1.27 1.27 0 0 1-.25-.55zm.61 2.26.14.12.07.1.03.11.01.18a.25.25 0 0 1-.19-.02.25.25 0 0 1-.12-.13.43.43 0 0 1-.03-.18.27.27 0 0 1 .1-.18zm11.9-8.1c.24-.03.48 0 .7.08.23.07.45.18.64.32a2.86 2.86 0 0 1 .5.49c.15.19.27.4.32.63l-.51-.44a5.3 5.3 0 0 0-.52-.4l-.54-.35a20.35 20.35 0 0 0-.59-.33zm1.94 2.13c.13.06.23.15.3.25.08.1.14.21.18.33.05.12.07.25.07.37a.83.83 0 0 1-.07.38 2.38 2.38 0 0 1-.2-.32l-.13-.32-.1-.34-.05-.35zM83.1 100.59c.17-.08.39-.02.55.07.17.1.31.22.43.34.12.1.23.21.36.3a.71.71 0 0 0 .45.14.4.4 0 0 1-.26.13c-.1 0-.2 0-.3-.03a1.19 1.19 0 0 1-.48-.3l-.35-.35c-.12-.12-.23-.23-.4-.3z"/>
</g>
<path d="M86.45 102.32c0 1.21-.18 2.13.08 3.3.06.15.08.66.1.81.01.2-.08 1.61-.04 1.8.1.33.33.66.22 1.02-.23.77.65 2.36-.67 4.7-.13.22-.3.41-.44.64-.21.36-.64.84-.8 1.25-.33.77-.8.8-1.03 1.02-1.85 1.64-3.44.12-3.93 1.45.24.36.06.93-.22 1.24a1.17 1.17 0 0 1 .57.76c.3.05.54-.23.85-.25.27-.02.54.18.57.44.02.06.02.13.06.15.04.03.09.02.12.02.35-.06.68-.18 1.03-.2a1.07 1.07 0 0 1 .6.17c.08.06.15.13.2.22l.08.07a1.04 1.04 0 0 0 1.4.2c1.26-.9 3.52-.82 4.73-2.9.72-1.13.26-2.45 1.78-4.13 1.21-1.33 2.01-3.37 2.45-4.07.6-.97.9-2.47 1.72-3.05v-.03c.32-.22.53-.85.76-1.48a3.93 3.93 0 0 0 .25-.9c.02-.28.1-.43.21-.68l.12-.42c.05-.13.13-.27.26-.32l.17-.05c.14-.07.19-.26.2-.41.07-.78.01-1.6.01-2.38 0-.46.22-.96.65-1.09"/>
</g>
<g stroke="none" fill="#000">
<path d="M122.77 119.44a3.27 3.27 0 0 1 .88-.76.6.6 0 0 1 .2-.07l.2-.03c.26-.02.5 0 .74 0 .25-.02.5-.04.72-.16a1.84 1.84 0 0 1-.7.25c-.26.03-.5.05-.74.1l-.17.04-.14.07c-.1.06-.18.14-.26.23-.17.16-.31.35-.47.56l-.26-.23zm.6.76.2-.28.13-.13.08-.06.08-.05.16-.07.07-.04.05-.02.05-.01.33-.05.65-.1c.22-.04.42-.13.6-.26a1.3 1.3 0 0 1-.57.33l-.63.2-.31.09-.03.01-.02.01-.07.05-.13.09-.05.03-.05.05-.08.1-.14.3-.33-.19zm1.45.43c0-.1.02-.23.08-.36a.44.44 0 0 1 .15-.17l.17-.08c.1-.03.22-.07.32-.08l.17-.02h.07l.07-.01.31-.06.31-.06c.2-.03.42-.05.58-.2-.14.17-.36.23-.56.28l-.3.1-.29.1-.08.03h-.05l-.04.02-.14.04c-.1.02-.18.07-.26.11l-.1.06-.04.07-.02.25-.35-.02zm2.34-3.01.26-.05h.25l.25.04.25.08a.54.54 0 0 1-.25.1.97.97 0 0 1-.26 0c-.08 0-.18-.02-.26-.05a.5.5 0 0 1-.24-.12zm.66-.42h.06l.04-.04.13-.03.13.03.14.1-.14.09-.13.02-.13-.02-.08-.05-.04-.05c0-.01 0-.03.02-.05zm9.66-20.31c.1.12.18.25.24.4l.14.42c.03.14.06.3.06.44 0 .16 0 .3-.04.45a1.88 1.88 0 0 1-.19-.41c-.05-.15-.1-.28-.12-.42l-.08-.43a1.9 1.9 0 0 1-.01-.45zm-.78 1.63c.08.08.11.18.15.26.03.09.06.17.07.26.02.09.02.18.03.28 0 .1 0 .19-.03.3a.88.88 0 0 1-.2-.24 1.07 1.07 0 0 1-.09-.28.93.93 0 0 1 .07-.58zm-4.24-3.12a12.14 12.14 0 0 0-1.26-3.8 13.77 13.77 0 0 1 1.6 3.72l-.34.08zm4.08 4.95a2.4 2.4 0 0 1 .4.59l.12.32c.04.1.06.22.07.35-.12-.05-.2-.15-.28-.23-.07-.1-.15-.2-.2-.3-.04-.1-.09-.23-.11-.33-.01-.15-.03-.27 0-.4zm-.38 1.44c.06.1.1.18.12.28l.06.26v.27a.7.7 0 0 1-.05.3.74.74 0 0 1-.18-.25c-.04-.1-.06-.18-.07-.27a.77.77 0 0 1 .01-.29c.01-.1.04-.21.1-.3zm-.55 1.51.14.34.11.32.08.33.06.36a.86.86 0 0 1-.27-.27 1.3 1.3 0 0 1-.2-.72c0-.1.02-.24.08-.36zm1.56 3.09c.08.35.21.7.4 1 .18.32.42.6.7.8l-.23.27a2.9 2.9 0 0 1-.84-1.51c-.03-.2-.07-.37-.07-.56h.04zm-15.58-13.64c-.28.86-.76 1.64-1.19 2.43l-.3.6a6.53 6.53 0 0 0-.57 1.88 22.4 22.4 0 0 0-.1 5.35l-.35.03a17.31 17.31 0 0 1-.1-2.71c.02-.9.09-1.82.27-2.71a8.33 8.33 0 0 1 .35-1.32c.09-.22.17-.43.28-.64l.33-.59.7-1.15c.24-.39.46-.78.66-1.18h.02zm-3.96-1.9c.05.3.19.52.38.7.18.21.4.39.58.62.1.12.2.23.26.38l.1.21c.01.08.05.16.05.24.01.17-.03.3-.04.44-.01.13-.02.26.1.36a.23.23 0 0 1-.18-.12.52.52 0 0 1-.08-.23c-.04-.14-.04-.3-.08-.4V93l-.02-.05-.04-.08-.1-.17-.1-.15-.13-.16c-.18-.2-.37-.41-.53-.68l-.11-.2-.04-.1-.03-.11a.7.7 0 0 1 0-.44zm.24-1.63a.77.77 0 0 1 .4.02 1 1 0 0 1 .36.18c.1.08.2.18.27.28.07.11.13.24.15.38l-.35-.19-.29-.2-.27-.21-.27-.27zm13.5 20.53a1.55 1.55 0 0 0-.04.52c.02.15.07.3.15.41.07.12.2.24.32.4.06.08.12.16.14.27.04.1.04.23-.02.3a.48.48 0 0 0-.13-.22l-.19-.15c-.14-.1-.3-.2-.43-.4a.9.9 0 0 1-.13-.61c.04-.22.14-.42.32-.52zm-51.8 9.7a3.27 3.27 0 0 1 .88-.77.6.6 0 0 1 .2-.07l.2-.03c.26-.02.5 0 .75 0 .25-.02.5-.04.71-.16a1.84 1.84 0 0 1-.7.25c-.25.03-.5.05-.74.1l-.17.04-.14.07c-.1.06-.18.14-.26.23-.17.16-.31.35-.47.56l-.26-.23zm.6.75.2-.28.13-.13.08-.06.09-.05.15-.07.07-.04.05-.02.05-.01.33-.05.66-.1c.21-.04.41-.13.6-.26a1.3 1.3 0 0 1-.58.33l-.63.2-.31.09-.02.01-.03.01-.07.05-.13.09-.05.03-.04.05-.09.1-.14.3-.32-.19zm1.45.43c.01-.1.02-.23.08-.36a.44.44 0 0 1 .16-.17l.16-.08c.1-.03.22-.07.33-.08l.16-.02h.07l.08-.01.3-.06.31-.06c.2-.03.42-.05.59-.2-.15.17-.37.23-.56.28l-.3.1-.3.1-.08.03h-.05l-.03.02-.15.04c-.1.02-.18.07-.26.11l-.1.06-.04.07-.01.25-.36-.02zm2.94-3.01.26-.05h.25l.25.04.25.08a.54.54 0 0 1-.25.1.97.97 0 0 1-.26 0c-.08 0-.18-.02-.26-.05a.5.5 0 0 1-.24-.12zm.65-.42h.06l.05-.04.13-.03.13.03.13.1-.13.09-.13.02-.13-.02-.08-.05-.04-.05c-.01-.01 0-.03.01-.05zm3.81-10.59.35.29.33.25.36.21.39.22a.92.92 0 0 1-.48 0 1.27 1.27 0 0 1-.77-.53 1.19 1.19 0 0 1-.18-.44zm1.18-.57c.12.06.21.14.3.23l.21.26c.06.07.1.1.2.14.1.04.22.05.34.1a.58.58 0 0 1-.37.13.39.39 0 0 1-.23-.05.53.53 0 0 1-.18-.14c-.1-.1-.13-.22-.18-.32l-.09-.35zm26.94-7.1-.22.18-.2.13-.2.1-.26.11a.4.4 0 0 1 .07-.3.73.73 0 0 1 .22-.22.62.62 0 0 1 .3-.09c.09 0 .2.02.3.09zm-1.56 1.44-.3.21-.27.18-.27.18-.31.19a.6.6 0 0 1 .1-.38.9.9 0 0 1 .65-.43.68.68 0 0 1 .4.05zm-1.38 1.66a.69.69 0 0 1-.24.25.95.95 0 0 1-.3.13.97.97 0 0 1-.31.02.92.92 0 0 1-.33-.14 2.4 2.4 0 0 1 .58-.22l.28-.04h.32zm7.27 1.24c.15-.05.28-.05.4-.05s.27.03.39.05l.18.05.12.05.1.08.11.18.04.1v.12a.16.16 0 0 0-.08-.06l-.08-.04c-.06-.03-.1-.06-.17-.07l-.06-.03h-.05l-.2-.03a1.52 1.52 0 0 1-.36-.13 1.3 1.3 0 0 1-.34-.22zm5.58 1.2c.2-.15.4-.25.65-.3a.56.56 0 0 1 .2-.02c.07.01.14.03.2.06l.3.14c.18.08.37.11.57.1.2 0 .42-.05.63-.13a1.05 1.05 0 0 1-.58.41c-.24.06-.51.06-.75-.04-.12-.05-.23-.12-.31-.17a.56.56 0 0 0-.25-.07c-.2-.01-.42 0-.66.01zm-1 .2a.86.86 0 0 1-.44.47c-.2.1-.42.13-.66.1-.24-.05-.4-.16-.56-.23a4.88 4.88 0 0 0-.55-.2 1 1 0 0 1 .62-.08c.21.04.4.12.55.16.15.02.33.02.5-.01.18-.04.35-.11.53-.2zm-37.81-5.6a1.05 1.05 0 0 1 .63.51l.12.24c.06.15.08.2.22.3l.22.14c.07.06.15.13.17.21-.16-.07-.3-.04-.5-.1a.68.68 0 0 1-.28-.15.8.8 0 0 1-.17-.26l-.08-.22-.1-.22-.23-.45zm2.11 1.92a.68.68 0 0 1 .61-.11c.1.02.22.08.3.14l.21.22.36.4c.12.13.25.25.4.38a.94.94 0 0 1-.58-.15 2.02 2.02 0 0 1-.45-.38 2.78 2.78 0 0 0-.36-.34.85.85 0 0 0-.49-.16z"/>
</g>
<g>
<path fill="none" d="M66.08 90.74c.24-.14.38-.38.52-.6.47-.71 1.07-1.3 1.79-1.77"/>
<g stroke="none" fill="#000">
<path d="m68.3 88.23.55-.25c.18-.09.35-.2.5-.34-.1.18-.24.34-.4.48l-.46.4-.2-.3zm-3.4 1.75c0 .3.17.56.4.67.23.12.52.08.7-.05l.17.3a.93.93 0 0 1-.96-.09.83.83 0 0 1-.31-.83zm4.15 1.39.15-.64.13-.61.1-.62.12-.64a2.03 2.03 0 0 1 .12 1.33 2.43 2.43 0 0 1-.62 1.18z"/>
</g>
<path fill="#F6F6F6" d="M68.39 88.38c.3.76.33 2.31-.66 2.88-.4.2-1.13-.05-1.65-.52"/>
<g stroke="none" fill="#000">
<path d="M66.83 90.01c.03.36.41.63.76.57a3.8 3.8 0 0 0-.14-1.27m-2.4 10.86c.6-.17 1.17-.47 1.66-.88.5-.39.93-.88 1.36-1.36.42-.5.85-1 1.35-1.44.25-.22.54-.42.88-.53.34-.1.7-.08 1 .1v.03c-.32-.1-.64-.06-.93.05-.28.12-.53.31-.77.52-.46.44-.87.94-1.28 1.46a10.44 10.44 0 0 1-1.37 1.44l-.4.3c-.15.09-.3.2-.45.27a4.58 4.58 0 0 1-.94.38l-.1-.34zm9.26-7.87a3 3 0 0 0 .88.38c.31.07.61.06.93.02s.64-.1.98-.12h.5c.18.03.35.06.5.12-.34.01-.65.07-.95.16-.33.07-.65.16-1 .2-.34.03-.7.02-1.04-.1a1.8 1.8 0 0 1-.8-.66zm4.9.57c.17-.13.42-.14.64-.12.22.04.43.12.62.23l.5.33.52.34a1.19 1.19 0 0 1-.64-.1c-.2-.06-.38-.17-.56-.27-.17-.09-.34-.19-.51-.26a1.5 1.5 0 0 0-.58-.15zm-5.62-8.12c.03.3.13.55.26.78a1.78 1.78 0 0 0 .51.56c.21.14.45.22.73.3l.83.18c-.29.07-.57.11-.88.09-.3-.03-.6-.1-.88-.28a1.45 1.45 0 0 1-.57-.74c-.1-.3-.11-.61 0-.89zm3.21 2.07a1.43 1.43 0 0 1 .42-.18c.14-.03.3-.04.45-.03.15.01.3.06.44.13.13.08.26.19.32.34l-.42-.07a4.17 4.17 0 0 0-.38-.04l-.4-.05a1.55 1.55 0 0 1-.43-.1zM70.96 86a2.02 2.02 0 0 1 .15.8 2.5 2.5 0 0 1-.14.8c-.08.24-.17.47-.17.68 0 .23.06.47.28.64a.48.48 0 0 1-.37-.2.98.98 0 0 1-.2-.41c-.05-.31.04-.58.11-.83l.22-.72c.06-.25.08-.5.12-.76zm1.12 3.8h.76l.37-.03c.13 0 .26-.02.39 0 .14 0 .28.03.42.09a1.78 1.78 0 0 1 .85.83c-.24-.13-.44-.27-.65-.38a1.67 1.67 0 0 0-.64-.2h-.37l-.4-.04a1.83 1.83 0 0 1-.73-.26zm-3.56-3.37c-.1.24-.26.45-.43.64a3.33 3.33 0 0 1-.58.5c-.22.14-.44.25-.65.37a2 2 0 0 0-.56.45.91.91 0 0 1 .14-.38c.07-.12.16-.21.26-.3.2-.19.41-.32.62-.45l.6-.41c.2-.12.38-.28.6-.42zM62.75 98.8l.12-.67a11.86 11.86 0 0 0 .11-1.29v-.67c.15.19.23.41.28.65.05.24.06.48.05.72-.03.23-.09.47-.17.69-.1.2-.22.4-.4.57zm4.74-5.42a.96.96 0 0 1 .33-.37 1.45 1.45 0 0 1 .9-.27c.17.01.32.05.46.13l-.44.15-.4.12-.4.12a3.33 3.33 0 0 1-.45.12zm2.65.32a1.48 1.48 0 0 1 1-.2c.16.02.33.07.5.13.15.07.3.17.42.3l-.5-.02-.46-.05-.46-.06c-.17-.03-.34-.05-.5-.1z"/>
</g>
</g>
<g stroke="none" fill="#000">
<path d="M60.75 98.53c-.05-.03-.07-.1-.07-.15s.02-.13.07-.18l.1-.07.1-.03.17.02c.2 0 .39.04.6.08l.09.02-.03.02-.02.03v-.03l-.05-.16a.37.37 0 0 1 .01-.23.36.36 0 0 1 .11-.15.6.6 0 0 1 .3-.13l-.17.24c-.03.07-.02.14 0 .18l.07.11c.04.06.06.15.04.25a.3.3 0 0 1-.1.16.32.32 0 0 1-.16.06l-.2-.03c-.2-.04-.39-.1-.58-.16l-.13-.05c-.03-.01-.03-.02-.07-.01-.04.03-.1.1-.08.21zm.4-1.69c.05-.1.13-.14.2-.18a.45.45 0 0 1 .25-.02.6.6 0 0 1 .24.1c.07.06.13.13.16.22l-.25.04-.2-.01-.18-.05-.22-.1zm18.14-11.5a7 7 0 0 0 .43-1.62l.1-.84c.01-.27.03-.56.01-.83a6.82 6.82 0 0 0-.32-2.01.75.75 0 0 0-.19-.29.6.6 0 0 0-.3-.11 1.28 1.28 0 0 0-.38-.02 2.26 2.26 0 0 0-.58.13l-.1.04-.09.04a7 7 0 0 0-4 4.02 6.24 6.24 0 0 1 3.1-3.96c.25-.15.5-.28.78-.39l.1-.03.1-.04.22-.07a2.02 2.02 0 0 1 .9-.07.95.95 0 0 1 .47.2 1.3 1.3 0 0 1 .28.42l.15.43a5.27 5.27 0 0 1 .14 1.72c-.03.57-.1 1.15-.23 1.7-.12.55-.3 1.1-.6 1.59z"/>
<path d="M77.8 83.2c-.06.12-.08.23-.12.35-.03.1-.07.23-.13.35a.88.88 0 0 1-.27.32c-.12.08-.29.14-.43.07.12-.1.16-.18.22-.28l.16-.28c.06-.1.12-.22.21-.32s.22-.2.36-.22zm-2.21.89c-.02-.43.1-.87.26-1.28.16-.4.4-.78.66-1.13a3.5 3.5 0 0 1 1.02-.85c.39-.22.84-.34 1.27-.28-.43.1-.8.28-1.13.51s-.62.53-.88.85a7.34 7.34 0 0 0-1.2 2.18zm2.66.38c-.03.1-.1.19-.18.26a.77.77 0 0 1-.56.15.48.48 0 0 1-.28-.13 1.19 1.19 0 0 1 .49-.24l.23-.04h.3z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

View file

@ -1,35 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/6/67/Arch-Bannerbearer.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="banner" stroke-width="0.291">
<g>
<g>
<g>
<path stroke-linejoin="round" d="M79.88 69.07c-.5-1.38.19-2.6.19-2.6l-4.08-5.79.67 7.04s1.34.49 1.85 1.87l1.37-.52z"/>
<g stroke="none" fill="#000">
<line x1="79.138" y1="69.1787" x2="76.6063" y2="62.3596"/>
<polygon points="79.0022,69.2272 76.6063,62.3596 79.2738,69.1205 79.0022,69.2272"/>
</g>
</g>
<path stroke-linejoin="round" d="M100.96 129.65c1.76-.63 3.01-1.63 2.79-2.23-.27-.77-2.13-1.52-4.28-6.9L80.2 69.61l-.73.27-.74.26 17.56 51.5c1.77 5.52.82 7.28 1.1 8.05.22.6 1.82.58 3.57-.05z"/>
</g>
<path d="m78.57 69.31 1.23-.44c.23-.09.5.04.58.27.09.23-.04.5-.27.58l-1.23.45a.45.45 0 1 1-.31-.85z"/>
<path stroke-linejoin="round" d="M97.38 129.7c-.21-.6 1.06-1.55 2.82-2.19 1.76-.63 3.34-.7 3.56-.1.21.6-1.04 1.6-2.8 2.24-1.76.63-3.36.66-3.58.05z"/>
<path stroke-linejoin="round" d="M102.66 131.82c.06.16-.26.4-.72.57-.44.17-.85.17-.9.01l-1.17-3.24c-.06-.15.26-.4.71-.57.45-.16.86-.16.92 0l1.16 3.23z"/>
<path stroke-linejoin="round" d="M104.67 139.95c.56-.2.08-2.47-.1-4.46-.22-2.25.25-3.25.07-3.78-.18-.49-1.48-.47-2.92.04-1.44.52-2.45 1.33-2.28 1.83.2.55 1.24 1.06 2.47 2.89 1.12 1.66 2.2 3.68 2.76 3.48z"/>
</g>
<path class="secondary" d="M116.37 71.28c-1.55-4.95-.57-7.1-1.49-8.7-1.12-1.93-3.03-2.19-5.07-2.46a26.1 26.1 0 0 0-7.43.37c-8.9 1.7-17.7 8.12-23.86 10.33l1.51 4.44 8.23 24.18 1.19 3.6c1.78.24 5.6-.7 8.93-1.91 5.37-1.94 8.03-3.84 12.65-6.87a9.96 9.96 0 0 1-.86 3.81c-1.01 2.1-2.8 3.24-5.08 4.06l-.5.17c-3.07 1.03-6.92 1.6-10.8 3.2l2.3 6.09c3.01-1.54 6.5-2.04 9.2-2.63 3.73-.8 8.54-2.15 12.07-4.8 3.72-2.8 6.04-5.77 6.03-12.3 0-2.6-.62-5.4-2.14-8.55a96.6 96.6 0 0 1-4.88-12.03z"/>
<g stroke="none" fill="#000">
<path class="secondary" d="M121.72 90.45c1.37.87 1.09 3.35.52 5.2"/>
<path d="M121.8 90.33c.43.28.72.72.86 1.18.15.46.19.94.18 1.41-.01.48-.08.95-.17 1.4-.1.46-.22.91-.42 1.33l-.02-.01c.07-.46.17-.91.24-1.36.08-.45.11-.9.11-1.36 0-.45-.04-.9-.19-1.31-.07-.2-.16-.41-.3-.59a1.77 1.77 0 0 0-.45-.43l.16-.26z"/>
</g>
<path class="secondary" d="M116.36 91.1c1.35-.66 4.26-1.35 5.36-.65"/>
<path class="secondary" d="M108.36 113.85c-3.82-.02-10.12 2.23-15.97 2.74-2 .18-2.08-.5-2.16-.73a14.52 14.52 0 0 1 3.13-2.85l-2.18-6.4c-3.1 1.35-5.5 4.14-6.06 5.6-.4 1.78.27 2.3 1.2 4.42.88 1.98.94 6.03 4.62 5.67 1.52.1 7.82-1.79 10.03-2.31 4.45-1.06 7.75-2.93 11.72-.68.22 1.29-.05 2.73-1.26 4.32-1.16 1.53-3.1 4.97-1.56 7.64 1.28-5.64 3.95-6.25 6.09-8.43.68-.66.43-2.14.15-4.57-.24-2.21-4.19-4.4-7.75-4.42z"/>
<g stroke="none" fill="#000">
<path d="M115 120.7c.12.14.22.3.3.45.1.16.17.33.21.52.04.18.04.37 0 .55-.06.17-.16.33-.29.45l-.02-.02c.1-.14.18-.3.2-.46a.92.92 0 0 0-.04-.49c-.05-.15-.14-.3-.24-.43-.1-.14-.2-.26-.32-.38l.2-.18z"/>
<path d="M88.8 118.69c-.07.26-.12.53-.13.8 0 .26.02.54.1.79.08.26.2.5.38.72.17.2.39.4.62.54l-.01.03a2.3 2.3 0 0 1-.69-.5 2.4 2.4 0 0 1-.62-1.59c-.01-.29.02-.58.08-.87l.27.08z"/>
</g>
<path fill="none" d="M112.69 119.3c.82.38 1.66.92 2.2 1.5"/>
<path fill="none" d="M90.22 115.86a6.9 6.9 0 0 0-1.57 2.79"/>
<path fill="none" d="M111.02 94.26c1.27-.77 3.09-2.05 5.34-3.16"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -1,220 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/d/d7/Kazan.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0" />
<g id="basilisk" stroke-width=".33">
<path class="secondary" d="M85.99 134.15c.15.02.7.06.82.14.38.29.74 1.14.6 2.04-.17 1.04-.85 2.05-1.06 2.03-.28-.04-.28-.44-.28-.65.02-.56.26-.92-.34-1.68-.22-.28-.59-.44-.72-.77-.02-.05.04-.19.05-.24 0-.1.06-.2.11-.29.19-.28.47-.61.82-.58z"/>
<path class="secondary" d="M76.82 127.7a1.38 1.38 0 00-.8-.47 2.95 2.95 0 00-1.56.27c-.57.24-1.5.94-1.5 1.54-.02.55.27.31.59.15.41-.22.88-.4 1.67-.19.53.14.7.5.89.62h.22"/>
<path class="secondary" d="M77.12 123.67c.02-.16.14-.69.09-.84-.18-.44-.88-1.02-1.8-1.13-1.05-.13-2.2.25-2.24.46-.03.28.34.39.55.44.55.14.96.01 1.53.78.21.29.25.7.54.91.04.04.19 0 .24.03.1.02.21 0 .31-.04.32-.1.73-.26.78-.61z"/>
<path class="secondary" d="M76.48 125.88c-.16-.05-.25.04-.4 0-.34-.09-.56-.36-.75-.68-.11-.2-.28-.87.15-1 .23-.07 1 .04 1.52-.83.13-.23.17-.64.17-.64s.27-.36.74.13c.53.56.38 1.25.38 1.25.35.28.41.9.62 1.07.1.08.2.13.31.2.54.31.78.74 1.17 1.2.14.14.88.85 1.08.93.16.05.57.34.74.35.3.03.17-.12.49-.06-.05.5-.82.39-1.21.7-.25.2-.54.37-.86.4-.4.05-.8-.16-1.15-.38a8.98 8.98 0 01-1.87-1.6c-.11-.14-.24-.26-.21-.44-.32-.23-.49-.67-1.16-.78"/>
<path class="secondary" d="M74.81 124.55c-.01-.16-.02-.7-.12-.83-.27-.38-1.1-.78-2.01-.67-1.06.12-2.1.77-2.07.98.03.27.43.3.64.3.56 0 .93-.22 1.67.4.27.22.42.6.74.75.04.02.18-.04.24-.04.1 0 .2-.06.28-.1.31-.18.65-.44.63-.8z"/>
<path class="secondary" d="M85.32 131.47c-.14-1.3-.25-1.2.5-1.96 4.97-5.02 8.8-7.36 8.37-6.91l-4.07-2.25c-.75 1.36-1.47 3.79-5.57 6.7-.54.39-.84.3-1.23.57-.97.35-1.66-.29-2.47-.6-.48-.2-1.16-.1-1.33-.13-.21-.02-.42-.1-.58-.22-.49-.35-.82-.73-1.41-.9l-.34-.11c-.26-.12-.73-.73-1.17-.95 0 0-.02-.7-.66-1.1-.57-.38-.75.05-.75.05s.08.4 0 .66c-.3.96-1.06 1.04-1.27 1.16-.39.23-.07.86.08 1.01.27.27.54.48.9.49.16 0 .32-.18.48-.18.68-.03.86.31 1.22.46.4.18.84.37.78.94-.06.67-.6 1.09-.75 1.3-.2.32-.2.79.53 1.04.54.19 1-.02 1.22-.27.07-.07.18-.08.27-.1.12-.02.24 0 .37 0 .73.12 1.45-.27 2.12.1.16.1.29.2.44.28.18.1.39.15.57.22l.25.13c.3.25.37.7.55 1.04.13.23.36.38.56.57.43.4.77 1.08.75 1.68 0 .17-.11.23-.11.4-.01.35.18.64.45.91.15.17.76.5 1 .13.13-.2.23-.96 1.2-1.23.26-.06.67.02.67.02s.43-.16.08-.74c-.4-.66-1.1-.7-1.1-.7a5.34 5.34 0 01-.55-1.51z"/>
<path fill="none" d="M76.01 127.24c1.09-.93 1.93.16 1.97.55.01.09.22.09.3.08.18-.05.36-.02.54-.01"/>
<path d="M101.3 118.29a5.39 5.39 0 01-1.34 2.04c-.27.24-.8.83-1.07 1.05a6.02 6.02 0 00-1.4 2.09c-.22.46-.52.9-.85 1.3-.37.43-.8.79-1.1 1.27-.21.38-.33.82-.33 1.25-.63-.15-1.3-.8-1.38-1.36-.78.6-1.29 1.66-2.11 2.04-.06.02-.13-.05-.08-.08a5.23 5.23 0 01.35-2.54c.21-.42.54-.77.73-1.2s.2-.98-.13-1.3a4.31 4.31 0 01-3.21 1.85c.44-.96.73-2.09.68-3.14 0-.1-.04-.21-.12-.22-.05-.02-.08 0-.12.02-.36.15-.74.24-1.08.42-.7.37-1.8.68-2.5.41.46-.27.86-.57 1.18-1.1.2-.35.26-1 .55-1.3s.55-.68.61-1.08a2.21 2.21 0 01-1.88.08c.5-.45.93-1 1.22-1.62.1-.22.64-2.45 1.18-3.16.5-1.43 2.01-2.49 3.43-3.47"/>
<path class="secondary" d="M106.41 64.41c.21-1.04-.9-.92-.41-2.77-.11-.04-1.85.43-1.46 2.76"/>
<path class="secondary" d="M111.81 75c1-.41.28-1.27 2.08-1.89-.03-.1-1.37-1.3-3.1.3"/>
<path class="secondary" d="M114.03 84.2c1.04-.25.47-1.21 2.34-1.54-.02-.12-1.16-1.5-3.11-.18"/>
<path d="M96.25 98.4c.66-.44 1.32-.99 1.43-1.76 0-.55-.11-1.1-.44-1.54-.11-.33-.44-.55-.55-.88-.33-.77.22-1.54 0-2.2-.88-1.32-1.76-1.1-1.87-1.98s-.33-.99-.66-1.76c-.11-.44-.33-.66-.44-1.21 0-.55.11-1.54.66-2.09 1.1-1.32 2.31-1.21 3.96-3.19 1.98-2.37 2.97-5.46 3.85-8.42.66-1.9.99-3.83 1.1-5.8.11-1.07.55-2.95 1.1-3.6.66.1 1.32.14 2.09-.28.33.65.33 1.46.33 2.2 5.5 15.3 10.56 24.48-.55 40.43-18.26-3.63-19.91-.88-10.01-7.92z"/>
<path class="tertiary" d="M87.09 75.93c-1.21-.27-2.41.2-3.58-.2-1.18-.43-1.88-1.53-3.09-1.85-.85-.23-1.77-.08-2.73-.46-1.06-.44-1.6-.8-2.63-1.45-.79-.64-1.89-.77-2.9-.7-.34.02-.67.05-1.01.02-.59-.07-1.14-.35-1.7-.49-.76-.2-1.54-.16-2.3-.2s-1.58-.2-2.18-.67c-.63-.5-.82-1.35-2-1.53.94 1.02.82 2.25 1.61 3.08.8.85 1.87 1.06 3.01 1.2 1.73.2 3.47-.1 3.73 1.23-.59 1.56-3.07.93-3.5.88-1.31-.14-2 .04-2.5.46-.5.4-.75 1.15-.75 1.77.6-.56 1.22-.78 2.13-.6.66.11 1.28.39 1.94.53.57.12 1.03.25 1.62.25.79 0 1.5-.33 2.19-.7.58-.32.81-.58 1.35-1 .83-.63 1.64-.43 2.14 0 .36.33.49.8.25 1.23-.24.43-.68.7-1.12.9-.45.18-1.82.56-2.36 1.63-.96 1.91.04 3.1-1.29 4.53 3.86-.89 3.16-3.86 4.97-4.4 1.45-.5 1.89-1.89 2.86-1.82.6.04 1.21-.3 1.79-.14.2.06.4.16.6.22 1.05.35 3.36-.05 4.35.44l1.34.55-.24-2.71z"/>
<path class="secondary" d="M82.34 71.53c-1.15-.38-2.55.46-3.68.15-.66-.18-1.03-1.35-1.8-1.56-1.03-.29-1.7.33-1.9.8-.1.2-.34.17-.38-.08-.01-.03-.28-1 .9-2.42 1.6-1.93 4.51-1.8 5.67-1.4.77-.63 1.95-.16 2.08.05-.1.2-.77 2.38-.11 2.82 1.69 1.14 1.3 2.07 3.71 3.39.9.48 1 1.36 1.2 2.37.15 1.12-.27 1.58.01 2.77.12.6-.25.83-.82.97-.66.16-1.22-.12-1.92.05-2.1.4-2.13 1.56-4.38 2.02-.8.11-1.63-.14-2.02-.68-.37-.57-.4-1-.4-1 .03-.12 0-.26.18-.01.73.94 2.62.41 3.3-.05.9-.45 1.7-1.43 2.9-1.7 1.02-.3 2.03-.02 2.03-.21 0-.12.04-.53-.1-.94-.05-.15-.1-.3-.13-.46-.02-.2.02-.99-.01-1.19-.19-1.14-1.05-.87-2.26-2-.66-.55-1.18-1.4-2.08-1.7z"/>
<path d="M124.32 96.3c.33-2.06 1.66-3.8 2.92-5.46s2.1-3.37 2.66-5.55c1.73 2.18 1.23 5.28 1.23 5.28 2.29-1.35 3.03-3.68 2.9-6.61-.05-1.3-.57-3.41-.26-5.68a15.9 15.9 0 013.1-7.84 15.1 15.1 0 00-8.5 6.6c-.58 1-1.04 2.04-1.64 3.02-1.25 2.03-3.05 3.63-4.83 5.2 1.78.66 4.26.56 6.04-.1-.71 1.8-2.5 2.66-4.13 4.13s-3.25 3.16-3.73 5.3"/>
<path d="M132.77 99.72a3.35 3.35 0 00-.88-1.76v-.11c-.11-1.1-.99-2.53-2.2-3.52-.66-.44-2.31-1.54-3.08-1.32-1.32-.77-5.61-1.1-7.15.11-2.2-.11-4.07 1.1-5.94 2.2-4.51 1.76-10.23 2.97-15.18 4.29-.33-1.43-4.18-2.64-5.28-2.42-.77-1.1-1.87-1.21-3.08-1.87.88-1.32-.22-3.19-.44-5.06-.22-1.21-.44-2.53.33-3.63.55-.77 1.54-2.31 1.54-3.41.55.44 1.65.55 2.09 0-.66-.25-1.21-1.25-.77-2.06.99-1.76.77-2.54.66-3.62a3 3 0 01.77.8c.44-.56.77-1.68.66-2.56.88.69 1.98.54 2.31.37-1.65-1.25-.33-2.79-.22-3.95.22-1.35 0-2.1-.22-2.42a2.05 2.05 0 001.54-1.34c.22-.7 0-1.46-.11-1.62-.66.6-1.87.8-2.64.5-.88-.32-1.54-1.12-2.53-1.31l-8.14-.26c-.33.02-.66.3-.88.59-.22.28-.55.48-.66.74-.11.2-.77 2.38-.11 2.82 1.65 1.13 1.21 2.06 3.63 3.38.99.48 1.1 1.36 1.21 2.37.22 1.12-.22 1.58 0 2.77.22.6-.22.83-.77.97-.66.16-1.21-.12-1.87.05-.22.78-.66 1.1-1.32 1.57-1.32.99-2.53 3.09-4.62 2.32-.11.44.11 1.21.77 1.54-.55.22-1.32.44-1.76.88a6.3 6.3 0 00-1.21 1.21c-.33.55-.55 1.1-.44 1.65-.77.44-1.65.99-2.2 1.76-.66.77-1.32 1.65-1.21 2.75-.22.22-.66.55-.77.88a6.11 6.11 0 00-.99 1.87c-.22.77-.33 3.19.11 3.96.33.55-.33 3.19.77 4.51 0 .44.55 3.63 1.98 4.62a5.2 5.2 0 003.85 3.52 5.1 5.1 0 001.76 1.98c.66.44 1.65.88 2.42 1.21 1.32 1.43 3.08 1.98 5.06 2.2 2.2.88 4.73.88 6.93.11 1.98.55 4.07.33 6.05-.22 2.09 0 4.18-.99 5.72-2.09 1.43-.88 2.97-1.54 4.07-2.75 1.21-1.32 3.08-1.76 4.07-3.19a5.9 5.9 0 001.65-1.65 5.15 5.15 0 001.98 2.42c.77.22 2.31.77 2.86.66.22.33.77.55 1.1.66s1.1 0 1.43 0c.44.11.99.11 1.54.11.33 0 .66 0 .99-.11.22-.11.33-.22.55-.33s.44-.22.77-.33c.55-.33 1.21-.33 1.76-.77s1.1-1.32 1.54-1.65c.33-.33.66-.66.88-.99.33-.44.55-1.32.77-1.87a8.02 8.02 0 00.55-6.16zM124.3 105c-.55-.33-1.76-.44-2.31-.33a2.68 2.68 0 00-1.43-1.87c.11-.22.22-.44.33-.77a4.51 4.51 0 001.76-1.76c.55 0 1.1-.22 1.65-.44 0 .77.55 1.54 1.32 1.65-.11.44 0 .99.33 1.32a4.07 4.07 0 00-1.65 2.2z"/>
<g stroke-width=".24" class="secondary">
<path d="M91 62.3c0 .03 0 .04-.03.04-.28.46-.85 1.21-1.74 1.08-1.1-.14-1.78-1.3-1.78-1.3s-.39 1.14-1.66.96c-.72-.11-1.52-1.42-1.52-1.42s.44 2.55.45 3.77c1.05.42-.17-.36 5.74.47 5.92.83 4.61 1.32 5.64 1.13.44-1.17 1.82-3.44 1.82-3.44s-1.2 1-1.93.9c-1.28-.19-1.26-1.5-1.26-1.5s-1.04 1.05-2.14.88c-.94-.14-1.21-1.09-1.29-1.6l-.3.04z"/>
<path d="M97.06 65.6l-.2-.02c-.07-.04-.16-.05-.28-.07-.9-.25-2.98-.83-5.79-1.2-2.79-.38-4.98-.42-5.9-.44l-.31-.01c-.3-.01-.4-.18-.4-.3.01-.15.13-.26.34-.27l.1-.01h.06c.64-.01 2.57-.07 6.23.45s5.5 1.1 6.09 1.28l.09.04a.4.4 0 01.28.19c.05.06.05.13.01.2a.49.49 0 01-.32.16z"/>
<path d="M96.27 67.4h-.12c-.19 0-.7-.16-.89-.22a58.4 58.4 0 00-9.99-1.4H84.37c-.15-.05-.29-.1-.28-.3.02-.13.1-.28.31-.29l.1-.01a51.14 51.14 0 0111.67 1.65c.15.02.21.09.27.18.04.06.04.15 0 .22 0 .07-.04.16-.17.17z"/>
<path d="M87.3 64.98h-.1c-.22-.04-.39-.2-.34-.4.02-.15.18-.27.36-.28a.3.3 0 01.1.01c.23.03.4.2.35.39-.01.14-.15.26-.36.28z"/>
<path d="M84.77 64.84c-.25 0-.44-.14-.48-.33a.24.24 0 01.08-.21.4.4 0 01.26-.12h.04c.06 0 .16.14.2.33 0 .13-.03.26-.07.3.02.02 0 .02-.03.03z"/>
<path d="M93.88 65.9h-.1c-.23-.04-.39-.2-.35-.39.03-.15.2-.28.37-.29a.3.3 0 01.1.02c.23.03.4.2.35.38-.02.17-.18.28-.37.29z"/>
<path d="M90.88 65.4c-.12.01-.25 0-.37-.01a1.46 1.46 0 01-.64-.23c-.14-.1-.22-.21-.2-.31.01-.15.27-.27.6-.3l.37.01c.26.04.47.13.64.24.14.1.22.2.2.3-.03.16-.28.28-.6.3z"/>
<path d="M96.46 66.51a.87.87 0 01-.19-.02c-.03-.01-.03-.03-.03-.03-.04-.07-.01-.18.04-.31.08-.17.21-.28.28-.28h.03c.12.02.21.11.25.19.05.09.05.15 0 .22a.48.48 0 01-.38.23z"/>
<path d="M96.2 64.56c-.13.02-.25 0-.37 0-.93-.15-1.24-.8-1.32-1.17-.26.2-.82.55-1.5.6-.16 0-.31 0-.47-.03-.96-.12-1.4-.9-1.55-1.34-.25.3-.76.82-1.5.87l-.33-.01a2.63 2.63 0 01-1.69-1.1c-.16.3-.57.73-1.27.78l-.4-.01c-1.17-.17-1.7-1.46-1.73-1.51-.02-.03-.02-.06 0-.07l.06-.42c0-.05.04-.08.1-.1h.03c.06 0 .11.03.12.07 0 .02.63 1.23 1.55 1.37l.19.02c.52-.04.8-.54.99-.84l.01-.03c.08-.12.14-.23.28-.24s.23.08.34.25l.13.16c.28.38.65.9 1.34 1l.22.03c.87-.06 1.33-1.21 1.35-1.22.04-.06.07-.1.11-.1h.04l.48.07c.07.02.11.07.11.14 0 .02.04 1.43 1.07 1.56.1.03.2.02.33 0 .55-.02.99-.34 1.3-.57l.17-.14c.15-.1.23-.13.32-.14.22-.01.28.22.3.33v.03c.07.38.2 1.03.81 1.1.09.02.16.03.27.03.85-.06 1.79-.92 1.81-.92.03-.02.04-.03.09-.04l.06.01c.06.03.1.08.08.13l-.03.49c0 .03-.04.06-.04.08-.02.02-.86.82-1.85.88z"/>
<path d="M86.34 61.19c-.03-.17.03-.86-.8-.85-.4.01-.68.37-1.07.58.2-.43.76-.73.71-1.1-.1-.68-1-.51-1.25-.51.1.71.16 1.45.19 1.76-.1.02.05.34.05.34.83-.03 1.02.67 1.63.65.81-.02.56-.69.54-.87z"/>
<path d="M91.25 61.75c.53.27.8.8 1.3.89.8.13.76-.6.79-.77.02-.18.31-.85-.5-.97-.42-.05-.8.24-1.24.4.34-.39.98-.56 1.03-.95.11-.68-.86-.7-1.1-.74s-1.15-.3-1.26.38c-.07.38.48.75.68 1.2-.4-.28-.65-.67-1.05-.73-.81-.13-.79.58-.81.77-.02.18-.29.85.53.98.48.07.92-.37 1.54-.44l.09-.01v-.01z"/>
<path d="M98.93 61.36c-.23-.06-1.06-.51-1.36.12-.19.36.26.85.3 1.32-.29-.36-.42-.79-.83-.92-.77-.28-.96.44-1.02.6-.08.17-.54.78.22 1.07.56.21 1.26-.4 1.81-.15 0 0 .2-.29.14-.33l.74-1.7z"/>
<path d="M98.26 62.84c-.14-.06-.37.1-.5.36-.14.25-.14.47.03.53.32.1.67-.01.8-.25.12-.27-.02-.54-.33-.64z"/>
<path d="M84.15 60.93c.15 0 .3.21.36.48.04.27-.03.5-.2.5-.34 0-.63-.2-.68-.48-.05-.25.19-.5.52-.5z"/>
<path d="M91.26 61.24c-.37-.06-.7.13-.75.43-.05.3.18.57.56.62.36.06.7-.13.75-.43.06-.28-.2-.55-.56-.62z"/>
</g>
<path fill="none" d="M116.04 108.1c.56-.67 1.08-1.37 1.52-2.11a7.64 7.64 0 002.94-3.19"/>
<path fill="#F6F6F6" d="M86.17 69.95c-1.98.22-1.92-1.6-1.89-1.78.22.02 1.84-.5 2.4-.24.32.22.71 1.85-.5 2.02z"/>
<path class="secondary" d="M112.09 65.96c.32-1.02-.8-1.01-.13-2.8-.11-.05-1.88.23-1.73 2.6"/>
<path class="secondary" d="M116.37 77.05c1.02-.3.4-1.23 2.26-1.65-.02-.11-1.23-1.44-3.1-.01"/>
<path class="secondary" d="M117.62 86.44c1.07-.14.6-1.15 2.5-1.28-.01-.13-.99-1.62-3.08-.5"/>
<path class="secondary" d="M115.9 97.06c.92.53 1.16-.56 2.76.5.06-.1.18-1.89-2.15-2.26"/>
<path class="secondary" d="M111.8 102.75c.53.93 1.3.12 2.12 1.83.1-.05 1.13-1.52-.69-3.03"/>
<path class="secondary" d="M106.97 106.7c.18 1.05 1.17.55 1.37 2.45.12-.01 1.58-1.05.4-3.1"/>
<path class="secondary" d="M100.78 107.64c-.2 1.06.91.92.45 2.77.11.04 1.84-.44 1.42-2.77"/>
<path class="secondary" d="M96.54 107.21c-.44.86.56 1.04-.32 2.52.08.06 1.71.09 1.93-2.05"/>
<path class="secondary" d="M92.23 105.56c-.56.8.41 1.1-.68 2.44.1.07 1.69.33 2.21-1.73"/>
<path d="M91.87 106.43c.18-.71-.36-1.26-.98-1.72-.4-.04-.77.25-1.14.41a.19.19 0 01-.13.02c-.07-.02-.1-.1-.11-.16-.23-1.1.07-2.31.82-3.15-.23-.2-.38-.7-.42-1-.17-1.4.7-2.67 2.67-2.67.1-.06.4.15.5.1.52-.19 1.1-.04 1.6.2s.96.53 1.5.68c.75.2 1.59.03 2.27-.37s1.42-.9 1.6-1.67a2.3 2.3 0 00-.21-1.57c-.17-.32-.41-.6-.52-.94-.23-.75.44-1.44.23-2.2-.67-1.34-1.66-1.2-1.67-2.13 0-.86-.15-1.02-.4-1.84-.14-.47-.33-.69-.33-1.2 0-.6.27-1.55.82-2.03 1.3-1.14 2.46-.98 4.3-2.76 2.24-2.15 3.56-5.12 4.77-7.98a24.71 24.71 0 001.68-5.65c.18-1.07.84-2.88 1.38-3.48.7.17 1.4.29 2.13-.05.3.7.18 1.48.15 2.23-.52 4.62.26 8 3.37 7.51a2.9 2.9 0 001.11 2.03 8.32 8.32 0 00-1.71 2.94c-.31.9-.4 2.45.2 3.3a2.59 2.59 0 002.05 1.13c-.06.63.33 1.54.93 1.77-2.68 1.46-3.16 7.26-1.43 9-.38.53-.5 1.47-.32 2.09-2.88.12-3.47 3.15-2.66 4.83-.63 0-1.18.88-1.31 1.34-3.46-.03-3.67 3.19-3.53 3.74-.5-.11-1.17.1-1.49.5-.56-.97-1.7-1.28-2.8-1-.94.22-1.86.95-2.06 2.53-.35-.25-1.21-.26-1.64-.25-.09-.45-.46-.91-.9-1.07s-1.48-.18-2.18.67c-.44-.33-.92-.35-1.45-.28a1.59 1.59 0 00-1.25-1.29c-1.02-.2-1.85.27-1.85.27a1.84 1.84 0 00-1.59-.83z"/>
<path class="secondary" d="M113.32 136.72c.12-.1.52-.46.68-.5.48-.06 1.34.26 1.89.99.64.84.9 2.03.72 2.18-.22.16-.5-.1-.66-.26-.4-.4-.5-.82-1.44-.92-.35-.03-.73.13-1.06-.01-.05-.02-.1-.17-.13-.2-.07-.08-.1-.18-.12-.28-.09-.35-.15-.78.12-1z"/>
<path class="secondary" d="M102.32 138.85a1.4 1.4 0 00-.9.25c-.44.35-.68.78-.9 1.3-.22.6-.35 1.74.08 2.16.4.4.42.03.51-.31.13-.47.32-.92 1.02-1.33.48-.3.85-.15 1.07-.21"/>
<path class="secondary" d="M99.62 135.82c-.1-.13-.4-.58-.54-.64-.44-.17-1.36-.06-2.06.51-.82.67-1.35 1.77-1.23 1.94.17.22.51.02.7-.1.49-.29.67-.67 1.63-.54.35.04.68.3 1.03.24.06-.01.14-.13.18-.17a.58.58 0 00.19-.24c.16-.3.32-.71.1-1z"/>
<path class="secondary" d="M100.77 137.82c-.14.1-.14.21-.28.3-.3.18-.65.16-1.02.07-.2-.06-.82-.41-.61-.8.1-.23.72-.69.45-1.67-.07-.25-.34-.56-.34-.56s-.08-.45.6-.45c.77.01 1.16.6 1.16.6.44-.06.93.33 1.22.3.12-.02.23-.06.35-.1.6-.17 1.08-.04 1.67 0 .21 0 1.23-.04 1.42-.14.16-.08.65-.17.78-.3.23-.18.04-.2.3-.38.32.37-.29.86-.34 1.35-.03.32-.1.65-.3.9-.25.33-.67.47-1.08.57a9.2 9.2 0 01-2.45.23c-.18-.01-.34-.01-.45-.15-.39.07-.81-.12-1.36.29"/>
<path class="secondary" d="M98.66 138.1c-.12-.1-.52-.46-.68-.5-.48-.06-1.33.26-1.88.98-.65.85-.9 2.04-.73 2.18.22.17.5-.1.66-.25.4-.4.5-.83 1.44-.93.35-.03.73.14 1.06 0 .05-.03.1-.17.13-.2.08-.08.1-.18.12-.28.09-.34.15-.77-.12-1z"/>
<path class="secondary" d="M110.92 135.34c-1.03-.8-1-1.36-1.2-2.4-1.4-6.92-1.2-11.4-1.06-10.8l-4.15 2.11c.72 1.38 2.32 3.34 2.44 8.37.01.66-.1 1.01-.18 1.48-.43.94-1.37 1-2.16 1.35-.47.2-.88.76-1.01.87-.17.13-.36.23-.57.26-.6.1-1.08.09-1.63.39-.11.05-.21.12-.32.16-.26.1-1.02.02-1.49.19 0 0-.51-.47-1.26-.3-.66.16-.48.58-.48.58s.34.24.47.47c.5.89 0 1.48-.05 1.72-.1.44.58.64.8.64.37 0 .71-.06.96-.3.13-.13.1-.36.21-.48.44-.52.82-.4 1.18-.55.4-.17.84-.35 1.21.09.44.51.36 1.19.42 1.45.08.35.42.68 1.1.33.52-.26.68-.74.66-1.07-.01-.1.06-.17.12-.25.07-.1.16-.18.26-.25.59-.45.82-1.25 1.55-1.47.17-.05.35-.07.51-.12.19-.05.36-.17.55-.25a.8.8 0 01.28-.09c.38-.05.75.22 1.12.32.26.07.53 0 .8-.01.6-.02 1.3.2 1.74.63.1.12.09.24.2.35.25.24.6.3.98.3.22 0 .89-.2.79-.63-.06-.23-.54-.84-.05-1.73.14-.23.48-.46.48-.46s.17-.43-.49-.58c-.75-.18-1.26.3-1.26.3a4.8 4.8 0 01-1.47-.62z"/>
<path fill="none" d="M101.42 139.1c.08-1.43 1.44-1.28 1.76-1.04.08.05.22-.1.26-.17.1-.15.22-.26.37-.38"/>
<path d="M109.04 113.83c.41.44.88 1.66.96 2.26.04.34.23 1.12.28 1.47.08.84.52 1.6.95 2.33.27.44.45.94.6 1.43.15.54.2 1.12.45 1.62.18.4.48.74.84.98-.46.44-1.38.63-1.89.39.07.99.66 2 .5 2.89 0 .06-.1.09-.1.02a5.28 5.28 0 01-1.9-1.7c-.24-.41-.35-.88-.59-1.28s-.7-.72-1.15-.62a4.32 4.32 0 01-.26 3.7 6.94 6.94 0 00-2.23-2.32c-.08-.05-.19-.09-.25-.02-.04.03-.04.07-.05.1-.06.38-.2.75-.25 1.13-.08.78-.44 1.87-1.04 2.3.03-.52 0-1.03-.26-1.58-.17-.37-.68-.78-.77-1.17-.09-.41-.26-.84-.56-1.13a2.18 2.18 0 01-.98 1.61 5.1 5.1 0 00-.67-1.92c-.12-.21-1.67-1.9-1.96-2.74-.9-1.22-.93-3.06-.95-4.79"/>
<g fill="#000" stroke="none">
<path d="M78.42 124.15c-.09.17-.19.32-.33.44a.82.82 0 01-.23.14 2.2 2.2 0 00-.23.11l.17-.17.16-.19c.07-.13.12-.28.14-.44l.32.11z"/>
<path d="M76.19 124.71c-.05.18-.11.35-.22.5-.06.08-.12.15-.2.2s-.13.1-.19.17c.03-.08.09-.15.13-.22s.08-.14.1-.22c.05-.14.05-.3.04-.46l.34.03z"/>
<path d="M78.14 127.72a2.13 2.13 0 01.04 1.03.99.99 0 01-.15.3c.05-.1.06-.2.06-.31s-.01-.21-.03-.32c-.05-.21-.12-.4-.22-.58l.3-.12z"/>
<path d="M78.83 127.68c.24.03.48.11.69.21l.32.14.32.16.3.16.3.15c.1.04.21.03.32.04.12.01.23.03.34.07-.1-.03-.23-.03-.34-.03-.1.01-.23.03-.35 0l-.34-.1-.32-.14c-.21-.09-.43-.14-.65-.2s-.42-.12-.64-.12l.05-.34z"/>
<path d="M83.27 131.44c0 .3.01.6.06.9s.13.56.26.8l-.3.13c-.1-.3-.14-.62-.14-.92.02-.31.08-.6.12-.9z"/>
<path d="M85.89 133.1a1.1 1.1 0 00-.46.03l-.22.08-.22.13.17-.2a.76.76 0 01.2-.17c.15-.1.33-.15.52-.2v.33z"/>
<path d="M87.56 125.91c-.13.38-.32.74-.57 1.06-.24.32-.55.6-.87.83s-.66.44-1 .64c-.32.21-.63.42-.88.73.06-.19.16-.38.3-.52.14-.15.3-.29.45-.42.3-.25.63-.46.94-.7s.6-.46.88-.73c.27-.28.5-.58.75-.89z"/>
<path d="M89.88 121.18a3.35 3.35 0 001.52-1l.6-.74c.2-.24.43-.47.7-.66-.25.21-.44.45-.63.7s-.35.54-.54.8a3.6 3.6 0 01-1.53 1.2l-.12-.3z"/>
<path d="M88.44 118.64c0-.11.11-.33.22-.44l.22.11c0 .11-.11.33-.11.44z"/>
<path d="M92.44 122.77a13.04 13.04 0 011.58-1.74c.2-.16.41-.32.51-.58-.07.26-.26.46-.45.63s-.34.38-.5.58-.29.42-.44.63a8 8 0 00-.41.65l-.29-.18z"/>
<path d="M93.66 125.94a1.8 1.8 0 01.2-.89c.13-.26.3-.51.48-.73.17-.24.36-.44.55-.66l.55-.66-.49.7c-.16.24-.33.47-.47.71a3.4 3.4 0 00-.38.75c-.1.26-.12.52-.08.78h-.36z"/>
<path d="M94.93 118.09c-.11.33-.33.55-.44.77-.22.22-.33.55-.55.66-.22.22-.44.44-.77.66.22-.33.33-.55.55-.77.11-.22.33-.44.44-.66l.55-.77z"/>
<path d="M96.2 120.17l-.36.55c-.1.18-.18.35-.26.55-.07.2-.14.4-.24.61-.1.2-.28.41-.49.49.14-.19.2-.38.25-.58.05-.2.1-.41.17-.63.05-.11.09-.22.16-.32s.13-.2.21-.28c.17-.16.35-.28.55-.4z"/>
<path d="M98.1 120.27c-.06.23-.14.44-.22.65a34.55 34.55 0 01-.86 1.84 2.4 2.4 0 01.08-.69 4.22 4.22 0 01.55-1.26c.13-.21.27-.39.46-.54z"/>
<path d="M91.41 118.64c-.11.22-.66.77-.88.88-.22.22-.44.33-.66.22a.86.86 0 00.44-.44c.22-.11.44-.55.55-.77z"/>
<path d="M105.93 70.04c-.66 4.2-3.3 9.56-4.29 13.18l-.33-.11c1.32-4.07 3.63-9.12 4.62-13.07z"/>
<path d="M131.02 80.26c-.17.4-.32.8-.42 1.22s-.16.84-.22 1.27l-.13 1.28a13 13 0 01-.2 1.3l-.32-.09c.11-.4.2-.82.28-1.24s.13-.85.2-1.27.18-.85.3-1.27c.15-.42.31-.81.51-1.2z"/>
<path d="M130.44 78.63a7.54 7.54 0 00-1.54 3.14c-.31 1.13-.44 2.3-.82 3.45l-.3-.1c.4-1.1.6-2.26.96-3.4.18-.56.4-1.12.69-1.64.27-.53.61-1 1-1.45z"/>
<path d="M89.02 67.9c-.27-.2-.56-.34-.87-.47a9.46 9.46 0 00-1.9-.51c-.33-.06-.65-.11-.99-.14.33-.1.68-.13 1.02-.11s.69.06 1.03.15c.33.09.66.2.95.4.3.16.59.4.76.69z"/>
<path d="M85.2 68.18c.22-.06.36.01.42.17.11.3-.33.24-.27.55.07.3.45.4.14.5 0 0-.48 0-.6-.5-.05-.2-.01-.6.32-.72z"/>
<path d="M84.24 68.33c-.11-.03-.23-.06-.33-.14s-.16-.17-.19-.27a1.02 1.02 0 01-.01-.57c.01.08.02.18.06.26.02.09.06.17.1.23s.12.11.17.13a.4.4 0 00.2.01v.35z"/>
<path d="M87.8 68.27c-.1-.09-.23-.14-.35-.19s-.25-.06-.39-.07c-.26-.03-.52 0-.79.02v-.33c.28.02.56.07.84.14.13.05.26.09.4.17.1.06.2.15.3.26z"/>
<path d="M94.7 75.9c-.18-.24-.3-.51-.38-.79s-.1-.56-.12-.83c.07.27.16.54.28.78s.29.46.47.64l-.25.2z"/>
<path d="M96.69 69.95a4.6 4.6 0 01-2.27-.32 4 4 0 002.2 0l.07.32z"/>
<path d="M93.28 77.67a1.9 1.9 0 01-.25-.43c-.07-.16-.11-.31-.16-.45s-.1-.3-.17-.41-.21-.22-.36-.28c.16.04.3.11.42.23.11.13.2.27.27.4.07.14.14.28.22.4s.17.23.27.32l-.24.22z"/>
<path d="M91.3 83.4a2.05 2.05 0 01-.97-1.41c.11.26.27.5.45.7s.42.32.66.4l-.14.3z"/>
<path d="M80.18 84.68c.19.08.4.12.63.13s.44 0 .67-.04c.22-.03.45-.09.67-.14s.45-.12.67-.16c-.22.06-.44.16-.65.24-.22.07-.44.16-.66.22-.23.06-.46.1-.7.13s-.5 0-.74-.07l.1-.3z"/>
<path d="M82.07 67.24c.05 0 .09.04.12.07l.08.12c.03.1.04.2.04.3l-.03.14-.07.14a.7.7 0 01-.22.22c-.04.03-.1.05-.16.06s-.13.01-.19 0c-.06 0-.12-.04-.16-.07s-.1-.08-.12-.15a.32.32 0 010-.33l.1-.1.07-.04c.02-.01.06 0 .07.01-.02 0-.04.01-.05.03a.08.08 0 00-.02.05l-.02.1c0 .06.02.12.05.14s.1.04.13.04.07 0 .12-.04a.69.69 0 00.3-.48v-.11a.19.19 0 00-.04-.1z"/>
<path d="M81.27 67.15a1.95 1.95 0 00-.63 1.1c-.02.14-.03.3.06.43-.1-.11-.14-.29-.14-.44s.03-.31.06-.46c.08-.31.2-.6.42-.86l.23.23z"/>
<path d="M79.31 69.35v.15c-.11.21-.22.19-.33.06 0-.14.11-.17.33-.21z"/>
<path d="M78.65 69.3c.11.26-.11.39-.33.27.11-.19.22-.24.33-.28z"/>
<path d="M78.1 69.3c-.11.2-.22.21-.44.21 0-.28.22-.35.44-.22z"/>
<path d="M77.44 69.3v.16c-.11.14-.22.08-.33-.01 0-.19.11-.18.33-.14z"/>
<path d="M70 75.92c.59.06 1.17 0 1.7-.18a3.75 3.75 0 001.43-.91c.22-.2.43-.41.67-.6s.52-.34.8-.45a3.1 3.1 0 011.77-.18 3.92 3.92 0 00-2.04.63l-.34.26c-.22.17-.43.38-.64.59a3.36 3.36 0 01-1.57.91 3.17 3.17 0 01-1.79-.07z"/>
<path d="M73.66 81.03c-.01-.26.02-.53.06-.8.06-.25.11-.52.26-.77s.37-.45.61-.58c.24-.15.5-.22.75-.32s.48-.17.7-.29c.22-.11.43-.26.62-.43s.35-.36.46-.58c.12-.22.18-.48.16-.74.04.12.06.27.06.4s-.03.27-.06.4c-.05.14-.11.26-.18.38a2.6 2.6 0 01-.9.84c-.25.15-.5.25-.75.33s-.5.17-.72.28-.4.25-.55.45c-.13.2-.23.44-.32.68-.07.23-.15.49-.2.75z"/>
<path d="M78.7 75.8a3.2 3.2 0 001.36.38c.15 0 .3 0 .46-.02.32-.03.64-.09.99-.1.18 0 .34.01.52.05.16.05.33.13.46.24-.33-.1-.64-.08-.95-.03-.32.06-.63.14-.96.17-.17 0-.35.02-.52 0s-.35-.06-.5-.12a1.8 1.8 0 01-.87-.58z"/>
<path d="M65.93 71.42c.64.27 1.3.43 1.97.5.34.03.67.04 1.01.04l1.03-.01c.68-.02 1.37-.05 2.08.06l.51.11c.17.06.34.11.5.2.32.16.6.38.8.67a2.78 2.78 0 00-1.85-.73c-.33-.02-.67-.03-1-.02-.35 0-.69.02-1.03.04-.68 0-1.39 0-2.08-.11a4.63 4.63 0 01-1.94-.75z"/>
<path d="M75.63 74.33c.17-.06.37-.08.57-.05.18.02.37.07.56.14.35.12.68.3 1.01.38a1.92 1.92 0 00.52.1c.18.01.37.04.56.08s.37.1.54.2.32.22.43.37a2.1 2.1 0 00-1.02-.32l-.53-.03-.3-.02-.29-.06c-.38-.1-.7-.3-1.02-.47-.33-.16-.65-.3-1.03-.32z"/>
<path d="M88.6 71.7a3.42 3.42 0 01.98.94 3.28 3.28 0 01.6 1.23c-.17-.17-.31-.33-.45-.5l-.41-.53c-.13-.17-.25-.37-.37-.55s-.25-.39-.35-.6z"/>
<path d="M90.7 71.1c.2-.02.37-.07.56-.1s.37-.06.58-.03a.81.81 0 01.56.31c.13.18.18.37.2.57-.14-.14-.27-.29-.39-.39s-.26-.14-.41-.16-.35-.03-.53-.04a1.32 1.32 0 01-.56-.16z"/>
<path d="M93.83 71.4c.2-.03.4.02.58.1s.37.18.5.32.27.31.35.5.11.38.09.58c-.11-.16-.21-.32-.32-.46a4.4 4.4 0 00-.74-.74l-.46-.3z"/>
<path d="M92.04 73.58l.12.3.06.28.05.27v.32a.61.61 0 01-.24-.23c-.06-.1-.1-.2-.13-.3s-.02-.23 0-.34c.02-.1.06-.2.14-.3z"/>
<path d="M90.53 76.64c-.01.34.04.67.17.96.06.14.14.27.24.4l.3.41.13.25a2.24 2.24 0 01.1.81c-.04.35-.11.67-.14 1.01-.1-.33-.1-.68-.12-1.01a1.5 1.5 0 00-.25-.87c-.09-.13-.19-.26-.28-.42-.1-.14-.18-.32-.23-.5-.1-.36-.07-.73.08-1.04z"/>
<path d="M89.27 79.35c.04.2.03.4-.02.6-.04.19-.1.37-.15.54l-.15.52c-.04.18-.07.35-.07.55a.97.97 0 01-.2-.57c0-.21.04-.41.1-.6s.14-.36.22-.53l.27-.51z"/>
<path d="M86.99 81.77c.02.13 0 .25-.03.37a1.1 1.1 0 01-.2.31c-.08.09-.18.17-.29.22s-.23.08-.36.07l.2-.28.22-.23.2-.22c.07-.09.15-.17.26-.24z"/>
<path d="M87.92 84.32a.8.8 0 01.12.39c0 .14-.02.27-.05.4-.08.27-.2.49-.29.7s-.16.46-.22.7-.1.48-.14.75a2.17 2.17 0 01.06-1.56c.1-.26.24-.47.35-.69s.2-.43.17-.69z"/>
<path d="M84.59 85.14c.01.21-.03.43-.12.63a1.79 1.79 0 01-.91.9c-.2.08-.42.12-.63.1.18-.1.34-.22.5-.33s.3-.24.42-.37.27-.28.38-.43c.13-.15.24-.3.36-.5z"/>
<path d="M80.62 87.59c-.18.16-.35.3-.54.43l-.54.38-.5.4c-.19.14-.31.32-.47.5.03-.24.14-.47.27-.67.14-.2.3-.36.5-.5.19-.15.4-.26.6-.36.22-.06.44-.14.68-.18z"/>
<path d="M85.2 89.8c.02.15 0 .3-.06.44l-.19.38a4.56 4.56 0 00-.56 1.44c-.05.26-.08.53-.09.8a2.26 2.26 0 010-1.67c.1-.26.27-.51.45-.72.17-.21.36-.4.44-.66z"/>
<path d="M86.99 91.66a3.97 3.97 0 01.03 1.6c-.05.27-.13.5-.18.75s-.05.48.07.73a.59.59 0 01-.25-.33 1.1 1.1 0 01-.07-.42c0-.29.07-.55.11-.8.06-.25.1-.5.14-.75l.15-.78z"/>
<path d="M88.4 96.21c.03.18.06.33.13.47s.13.26.24.37c.1.1.23.22.34.36.06.08.11.15.14.24s.06.19.04.28a1.1 1.1 0 00-.36-.33c-.13-.1-.27-.19-.4-.33s-.23-.33-.24-.53a.64.64 0 01.12-.53z"/>
<path d="M85.1 94.55c0 .3-.05.58-.1.86-.04.28-.1.56-.15.83l-.08.42a.65.65 0 00-.01.35c.02.11.1.22.18.35s.18.26.17.41c-.13-.26-.43-.33-.6-.66a.88.88 0 01-.06-.5l.07-.42a5.54 5.54 0 01.59-1.64z"/>
<path d="M87.45 89.28c.17.22.3.44.43.67s.23.49.3.74.13.52.16.78c.02.26.03.53.01.8-.1-.25-.18-.5-.26-.76l-.21-.73c-.07-.24-.14-.49-.23-.74a3.5 3.5 0 01-.2-.76z"/>
<path d="M82.62 88.97c.07.17.04.38-.02.54-.07.18-.19.33-.3.46s-.26.26-.38.38a5.52 5.52 0 00-.93 1.2c-.17.3-.33.6-.47.92.01-.35.11-.71.24-1.04a3.77 3.77 0 011.34-1.64c.14-.11.26-.22.35-.36.1-.12.16-.28.17-.46z"/>
<path d="M82.37 94.77c-.02.39-.22.75-.35 1.08a5.9 5.9 0 00-.42 2.13c0 .36.02.73.22 1.07-.16-.12-.27-.3-.34-.47a2.08 2.08 0 01-.15-.58 3.78 3.78 0 01.44-2.26c.21-.34.44-.62.6-.97z"/>
<path d="M86.28 100.33c.06.28.08.58.1.86s0 .58-.02.87l-.03.43-.05.42c0 .13 0 .26.05.39s.1.24.23.33c-.16-.02-.29-.13-.38-.26s-.13-.3-.15-.45-.01-.3-.01-.45l.01-.43a6.96 6.96 0 01.25-1.72z"/>
<path d="M79.36 95.48c0 .3-.16.59-.34.82-.18.23-.4.43-.62.62s-.44.35-.64.53-.38.4-.5.66c-.02-.3.12-.59.3-.83.19-.24.4-.44.63-.62.22-.18.45-.35.65-.54s.38-.38.52-.63z"/>
<path d="M78.45 91.48c.03.14 0 .3-.06.45s-.16.28-.25.39l-.3.33a10.8 10.8 0 00-.82.96l-.52.7a3.8 3.8 0 011.12-1.9c.12-.08.23-.17.34-.27.2-.19.4-.37.5-.66z"/>
<path d="M75.3 93.16a8.1 8.1 0 00-.82 1.39 8.37 8.37 0 00-.45 1.53c-.09-.28-.1-.56-.08-.84a2.76 2.76 0 01.67-1.55c.2-.2.42-.4.68-.53z"/>
<path d="M74.65 97.58l-.39.86c-.12.28-.23.59-.33.87-.04.15-.1.3-.13.44-.05.16-.08.3-.1.44s-.02.29.02.43.12.28.25.36c-.16-.02-.3-.14-.4-.3-.09-.15-.13-.32-.13-.5s.02-.34.05-.5c.03-.16.08-.31.12-.47a3.77 3.77 0 011.03-1.64z"/>
<path d="M76.65 100.22a2.3 2.3 0 01-.1 1.73l-.36.75c-.11.24-.2.5-.2.8-.13-.27-.12-.6-.05-.89s.2-.55.31-.8.21-.5.27-.76c.06-.27.1-.55.13-.83z"/>
<path d="M79.76 99.49c.09.15.13.32.15.5s0 .36-.06.53c-.08.19-.2.31-.3.42-.1.12-.22.21-.2.39-.07-.06-.1-.17-.1-.27s.05-.18.08-.26c.08-.16.18-.29.22-.4.06-.13.09-.27.11-.43s.05-.3.1-.48z"/>
<path d="M83.27 101.07c-.09.27-.19.5-.26.76s-.16.5-.21.75-.08.5-.05.75.1.5.25.74a1.2 1.2 0 01-.5-.69 1.75 1.75 0 01-.02-.85c.05-.3.16-.54.3-.79.12-.25.28-.48.49-.67z"/>
<path d="M80.52 103.33c.04.23.01.46-.06.68s-.15.42-.25.62l-.3.57c-.1.19-.18.37-.27.58-.04-.22-.02-.46.03-.68s.16-.43.24-.62l.31-.57.3-.58z"/>
<path d="M77.84 104.78c.04.3.02.62-.03.92s-.14.6-.22.9c-.07.27-.13.55-.06.8.03.13.09.25.17.36s.2.2.36.23c-.16.04-.33 0-.47-.1a.93.93 0 01-.37-.66l-.01-.25c.01-.17.04-.33.08-.47.08-.31.2-.58.28-.86l.27-.87z"/>
<path d="M75.54 105.95c.03.22.03.41.04.62.01.2.02.4.05.59s.07.36.14.53c.08.18.16.35.32.51-.22-.04-.41-.19-.54-.37s-.22-.4-.24-.63a2.19 2.19 0 01.23-1.25z"/>
<path d="M87.93 102.5c.05.32.06.64.08.96l.03.95c.01.31.04.62.07.93s.09.63.14.95a3.59 3.59 0 01-.54-1.87c0-.33 0-.65.04-.98.03-.31.08-.63.18-.95z"/>
<path d="M84.77 104.44c.12.32.13.68.13 1.01s0 .66.08.95.26.54.47.8l.3.43c.1.16.15.32.16.5-.16-.31-.4-.51-.65-.75a3.95 3.95 0 01-.35-.39l-.14-.23a1.29 1.29 0 01-.1-.26c-.1-.37-.07-.73-.03-1.06.05-.34.11-.66.13-1z"/>
<path d="M82.11 106.39c.05.2.07.4.1.59l.16 1.14c.02.2.05.39.06.6-.14-.16-.23-.34-.3-.53a2.6 2.6 0 01-.17-1.21c.01-.2.07-.4.16-.6z"/>
<path d="M111.58 106.66l.83-.14a8.1 8.1 0 001.54-.53c.25-.11.5-.25.75-.39-.17.25-.38.44-.62.62-.24.17-.5.3-.78.4s-.57.15-.86.16c-.3 0-.58-.03-.86-.12z"/>
<path d="M111.4 109.83c.18-.1.36-.18.54-.25l.51-.22c.18-.07.35-.15.53-.21s.36-.14.56-.18c-.12.17-.27.3-.44.4s-.34.22-.53.3-.37.13-.57.15c-.19.03-.38.04-.6 0z"/>
<path d="M115.83 103.35c.11-.88.88-1.65 1.76-1.65-.66.44-1.21 1.1-1.76 1.65z"/>
<path d="M118.36 102.69c.77-.66.99-1.87 1.87-1.98-.77.55-.99 1.98-1.87 1.98z"/>
<path d="M116.73 100.38c0-.06.01-.12.05-.18s.07-.1.12-.13c.07-.08.16-.15.25-.22.18-.14.37-.26.57-.36.21-.1.43-.18.66-.21s.47-.02.7.07c-.24.05-.43.1-.63.18l-.59.26-.58.28c-.1.05-.2.1-.3.13-.1.05-.2.08-.25.18z"/>
<path d="M120.3 97.49c.28-.07.56-.1.83-.12l.82-.04c.27 0 .5-.04.74-.13l.76-.3c-.18.2-.4.39-.65.53a1.56 1.56 0 01-.84.22c-.28.01-.54 0-.82-.03a5.3 5.3 0 01-.83-.13z"/>
<path d="M122.2 95.03c.34-.03.67-.08 1.01-.13s.7-.06 1.06.02c.36.08.68.28.94.5.28.22.5.45.77.68-.33-.1-.62-.3-.91-.47a3.19 3.19 0 00-.87-.39c-.3-.06-.64-.07-.97-.08-.34 0-.7-.02-1.03-.13z"/>
<path d="M126.75 98.72a4.03 4.03 0 011.44.75c.21.17.41.38.55.62s.26.51.28.78a5.83 5.83 0 00-.47-.62c-.18-.19-.37-.37-.57-.53l-.6-.48a7.11 7.11 0 01-.63-.52z"/>
<path d="M127.4 101.14c.2.16.34.38.46.61.11.24.2.49.24.74.03.25.03.52 0 .78-.05.26-.13.5-.27.73l.01-.74a7.85 7.85 0 00-.2-1.4l-.24-.72z"/>
<path d="M129.72 103.71c.1.23.11.48.1.72a2.48 2.48 0 01-.5 1.34c-.15.19-.32.36-.53.47l.32-.61a6.1 6.1 0 00.46-1.26l.15-.66z"/>
<path d="M126.36 105.54c.04.24-.05.5-.18.71-.13.22-.32.4-.53.53a6.4 6.4 0 01-1.32.56c.17-.18.37-.33.55-.46l.59-.37c.19-.12.35-.27.5-.42.16-.14.29-.32.39-.55z"/>
<path d="M123.14 106.14c-.16.1-.33.15-.48.2-.16.06-.32.1-.48.13a3.94 3.94 0 01-1.03.15c.14-.12.29-.22.45-.3a2.65 2.65 0 011.02-.24c.17 0 .35 0 .52.06z"/>
<path d="M125.21 108.97c-.2.17-.41.29-.66.39a3.33 3.33 0 01-1.5.24c-.26-.02-.51-.07-.75-.18.25-.03.5-.05.73-.09s.49-.05.72-.1c.24-.03.47-.07.71-.12.27-.04.5-.1.75-.14z"/>
<path d="M127 109.31c.2-.16.46-.27.72-.34s.54-.08.77-.09c.24-.02.45-.06.65-.18s.36-.3.5-.53a1 1 0 01-.33.74 1.35 1.35 0 01-.8.32c-.27.02-.51 0-.76.02a3.6 3.6 0 00-.75.06z"/>
<path d="M131.05 102.61c-.03-.24-.03-.47-.04-.7l-.01-.68c-.01-.22-.02-.44-.06-.66s-.08-.44-.16-.67c.19.15.32.37.42.59a2.59 2.59 0 01.07 1.43c-.04.25-.1.47-.22.7z"/>
<path d="M129.67 98.3a.5.5 0 01-.32-.12.93.93 0 01-.23-.28c-.12-.2-.16-.44-.19-.63-.03-.21-.06-.39-.14-.55-.09-.17-.21-.32-.42-.38.1-.04.23-.03.34.01s.21.13.29.21.14.21.17.32c.05.11.07.22.08.33.03.21.04.4.1.6s.13.36.32.5z"/>
<path d="M120.36 94.64c-.15.09-.3.14-.46.19a3.8 3.8 0 01-.94.11 1.85 1.85 0 01-.48-.08c.16-.09.3-.14.46-.19l.47-.09c.16-.03.31-.02.47-.02.15.01.32.02.48.08z"/>
<path d="M123.87 98.03a3.44 3.44 0 011.04-.55c.2-.06.4-.1.6-.08s.42.08.57.2c-.2 0-.38.03-.56.06s-.35.08-.53.14l-.54.16c-.17.03-.37.08-.58.07z"/>
<path d="M121.08 108.08a1.5 1.5 0 01-.97.35c-.18 0-.35-.02-.52-.06a1.43 1.43 0 01-.46-.25h.97l.47-.02c.17-.02.33-.02.5-.02z"/>
<path d="M117.25 108.64c.16.1.3.22.43.35l.35.38c.06.05.11.1.18.14.05.04.12.08.2.11l.26.12c.09.05.16.11.2.2-.18-.06-.33-.03-.52-.07a.94.94 0 01-.55-.27c-.14-.14-.24-.3-.33-.46-.09-.15-.17-.31-.22-.5z"/>
<path d="M120.38 109.63c.21.02.41.13.58.24.16.12.3.26.45.37s.28.2.45.28.34.13.54.19a1 1 0 01-.63.05c-.2-.03-.42-.14-.58-.27s-.3-.29-.42-.43-.23-.29-.39-.43z"/>
<path d="M117.15 104.56c-.33.33-.55.88-.77 1.32a2.3 2.3 0 01-.44.66c.22-.55.22-1.21.66-1.65.11-.11.33-.33.55-.33z"/>
<path d="M110.02 110.03c-.12.12-.24.2-.36.3l-.35.28-.36.26c-.12.1-.24.2-.4.27.04-.17.12-.32.22-.45s.2-.26.34-.35.27-.18.43-.24c.15-.04.32-.08.48-.07z"/>
<path d="M106.62 109.33a.12.12 0 00-.1.06l-.06.1c-.03.08-.1.15-.16.23a1.38 1.38 0 01-1 .45c-.18 0-.37-.03-.54-.13l.51-.13a3.15 3.15 0 00.87-.4l.2-.14.14-.07c.06-.01.11-.01.14.03z"/>
<path d="M105.72 107.78a2.28 2.28 0 01-.86.2c-.14.02-.28.03-.43.02s-.3-.02-.45-.06c.14-.1.28-.16.42-.2a2.16 2.16 0 01.88-.09c.14.03.3.07.44.13z"/>
<path d="M97.79 110.94a7.88 7.88 0 01-1.7.15 3.86 3.86 0 01-.86-.13c-.28-.07-.55-.2-.78-.38.28.05.55.1.82.12.28.03.55.04.83.05.56.06 1.13.07 1.69.19z"/>
<path d="M91.38 109.1c.2-.08.43-.13.64-.15a4.27 4.27 0 011.3.05c.2.05.41.1.62.2a3.3 3.3 0 01-.65.06h-.64l-.63-.05c-.21-.03-.43-.05-.64-.12z"/>
<path d="M88.37 108.78a5.48 5.48 0 001.39 1.55c.18.16.37.3.55.48a2.65 2.65 0 01-1.3-.7 2.02 2.02 0 01-.45-.61c-.1-.21-.19-.46-.19-.72z"/>
<path d="M92.08 113.4c.23-.12.47-.2.73-.26l.36-.09c.12-.02.24-.05.37-.06s.28-.03.42 0c.16.04.29.12.39.2.2.16.34.36.58.47a.93.93 0 01-.39-.08l-.33-.18a.89.89 0 00-.63-.09l-.35.05-.38.03c-.25.01-.5.02-.77 0z"/>
<path d="M86.46 111.61c.01.25.14.45.29.6.15.16.35.27.56.38l.64.33.64.35a2.86 2.86 0 01-1.44-.4 1.74 1.74 0 01-.6-.49.93.93 0 01-.16-.37.61.61 0 01.07-.4z"/>
<path d="M82.72 110.58c.24.13.43.36.56.6.07.12.12.24.17.38.04.12.08.26.13.37s.09.2.16.26.18.12.29.17l.36.14c.12.05.26.12.34.23-.26-.09-.5-.06-.78-.12a.98.98 0 01-.42-.17.9.9 0 01-.26-.4l-.11-.39a3 3 0 00-.11-.36 3 3 0 00-.33-.71z"/>
<path d="M79.1 109.92c.11 0 .2-.03.3-.06.05 0 .1-.03.17-.03s.15.02.2.04c.12.06.21.13.29.19a5.65 5.65 0 01.7.64c.13.15.27.32.38.5a4.58 4.58 0 01-1.06-.69l-.23-.2c-.08-.09-.14-.16-.21-.2-.03-.03-.07-.05-.1-.06l-.13-.02-.17-.03c-.05-.02-.1-.04-.14-.08z"/>
<path d="M80.74 112.65c.3-.1.6-.17.94-.2.31-.01.65.03.96.16.16.07.31.17.43.28s.23.23.33.35c.2.23.38.47.67.6a.92.92 0 01-.47-.13 2.7 2.7 0 01-.38-.28l-.35-.3a1.89 1.89 0 00-.36-.22c-.25-.11-.55-.17-.85-.2s-.6-.03-.92-.06z"/>
<path d="M85.69 115.63a1 1 0 00.4.13l.2.04.21.04.83.1c.28.04.56.07.85.13s.57.13.83.26h-.86c-.28-.01-.57-.02-.85-.06a4.57 4.57 0 01-1.27-.36c-.13-.06-.27-.15-.34-.28z"/>
<path d="M89.67 114.92c.29-.09.57-.14.88-.12a1.74 1.74 0 01.87.3c.25.16.46.33.72.4.25.07.53.1.83.15-.28.09-.57.14-.89.1-.15-.01-.3-.07-.45-.13s-.26-.15-.39-.22-.23-.15-.35-.2-.24-.1-.37-.13c-.27-.08-.56-.1-.85-.15z"/>
<path d="M93.9 116.96c.23-.07.4-.19.6-.3a2.25 2.25 0 011.39-.29c.24.04.47.1.67.24-.24 0-.46 0-.68.03s-.44.04-.65.09-.42.1-.64.17a3.3 3.3 0 01-.35.09.74.74 0 01-.34-.03z"/>
<path d="M84.55 109.1c.23.15.46.25.7.34.24.1.5.17.75.27s.5.22.74.38c.22.17.42.4.5.66-.2-.2-.4-.33-.64-.44s-.47-.2-.71-.3c-.26-.1-.5-.2-.74-.33a1.55 1.55 0 01-.6-.59z"/>
<path d="M87.06 97.38a2.75 2.75 0 00.6 1.5l.27.32c.1.12.18.26.23.4.13.29.17.6.11.88a3 3 0 00-.34-.76c-.07-.11-.15-.22-.24-.32l-.28-.32a1.8 1.8 0 01-.4-.82c-.08-.3-.06-.6.05-.88z"/>
<path d="M74 102.94c.13.18.16.4.17.6s0 .41-.04.61c-.02.19-.04.38-.04.56s0 .37.07.58c-.17-.13-.28-.33-.33-.54s-.04-.43-.02-.63.07-.4.11-.58c.04-.21.08-.39.09-.6z"/>
<path d="M71.59 100.12a5.15 5.15 0 01.23-.91c.1-.3.24-.58.35-.86-.07.3-.14.59-.19.9l-.06.45c-.01.14-.02.3 0 .43h-.33z"/>
<path d="M73.2 92.92c.2-.15.39-.27.59-.38l.6-.31-.5.44c-.16.14-.31.3-.44.47l-.25-.22z"/>
<path d="M76.66 88.44l.48-.18a4.75 4.75 0 001.31-.73 4.65 4.65 0 01-1.21.95c-.14.09-.3.16-.43.25l-.15-.29z"/>
<path d="M72.36 104.36c0-.37.03-.74.1-1.09s.14-.7.17-1.05c.03.36 0 .71 0 1.07-.02.36 0 .7.06 1.05l-.33.02z"/>
<path d="M74.34 108.96a3.9 3.9 0 01.12-1.4c-.02.22-.01.45.03.67.04.22.1.44.17.66l-.32.07z"/>
<path d="M78.12 112.55c-.14-.31-.23-.63-.3-.95s-.1-.64-.15-.96c.09.31.19.62.3.9.13.3.26.58.44.83l-.29.18z"/>
<path d="M82.38 115.72l-.35-.62c-.11-.21-.21-.43-.3-.65.13.2.28.38.43.56s.3.35.47.52l-.25.2z"/>
<path d="M87.48 117.97l-.5-.45c-.16-.15-.32-.31-.47-.49.18.14.37.25.57.36l.58.3-.18.28z"/>
<path d="M94.48 118.13c-.78-.1-1.53-.3-2.25-.6.75.2 1.51.28 2.26.27l-.01.33z"/>
<path d="M103.1 102.67c.1.32.16.64.2.96s.07.64.08.97 0 .65-.03.98-.08.65-.18.97c-.03-.33-.07-.65-.08-.97l-.04-.96a14.88 14.88 0 01.04-1.95z"/>
<path d="M106.7 106c-.3-.37-.56-.76-.82-1.15s-.52-.8-.79-1.17a27 27 0 00-1.26-1.66c-.08-.08-.17-.15-.27-.21s-.2-.1-.31-.06c.04-.03.1-.05.17-.05l.19.02c.12.03.23.1.33.17s.2.15.28.24a7.96 7.96 0 011.16 1.36l.38.6a15.07 15.07 0 01.93 1.9z"/>
<path d="M99.11 103.06a13.13 13.13 0 01-.27 2.9l-.3.92c-.09-.33-.05-.67 0-.99l.15-.94c.06-.32.11-.64.18-.95s.14-.62.24-.94z"/>
<path d="M101.02 107.08c-.04-.44-.08-.88-.16-1.31l-.13-.64c-.05-.2-.1-.42-.17-.62-.12-.41-.26-.83-.44-1.21a2.11 2.11 0 00-.32-.53c-.06-.07-.14-.12-.24-.11-.09 0-.18.09-.25.17.04-.1.1-.2.23-.26a.25.25 0 01.2-.01c.06 0 .12.04.17.09.2.15.33.34.44.54.23.4.4.8.53 1.24l.15.66c.04.22.07.44.08.67.03.43.01.88-.09 1.32z"/>
<path d="M96 102.93a14.38 14.38 0 01-.64 1.6 10.1 10.1 0 01-.43.75c-.17.24-.33.48-.56.67.1-.28.2-.54.33-.8a9.83 9.83 0 011.3-2.22z"/>
<path d="M96.47 106.52c-.01-.29.01-.57.01-.85l.07-1.67c0-.28.02-.56.05-.85.11.27.17.55.2.84s.04.57.03.86-.04.57-.1.84c-.05.29-.13.58-.26.83z"/>
<path d="M93.27 101.96c.14.26.2.55.2.84 0 .3-.05.58-.14.86s-.22.55-.36.78c-.14.24-.3.46-.44.71.01-.28.11-.57.21-.82a8.12 8.12 0 00.47-1.54c.05-.28.07-.54.06-.83z"/>
<path d="M91.12 104.1c.08-.22.2-.4.31-.6s.25-.35.4-.51l.45-.48a6 6 0 01.5-.41 4.23 4.23 0 01-.7 1.11l-.45.47a6.83 6.83 0 01-.5.42z"/>
<path d="M107.54 83.67c.51-.64 1.04-1.25 1.6-1.86.25-.3.54-.6.82-.91l.83-.9.85-.88c.28-.29.56-.59.86-.88l.85-.87c.3-.29.59-.57.86-.87-.22.35-.48.66-.73.98l-.8.93c-.27.31-.53.62-.81.92l-.84.9-.84.88-.86.87a43.08 43.08 0 01-1.8 1.7z"/>
<path d="M110.97 71.52a18.23 18.23 0 01-1.42 3.9c-.6 1.26-1.24 2.48-1.9 3.7a73.3 73.3 0 00-1.86 3.7c-.29.63-.56 1.27-.8 1.92-.24.65-.41 1.3-.52 2 .03-.7.18-1.38.37-2.05.2-.67.44-1.32.7-1.97a47.1 47.1 0 011.82-3.75l.98-1.83c.33-.6.65-1.22.97-1.84s.62-1.23.9-1.86c.3-.62.55-1.26.76-1.92z"/>
<path d="M107.68 89.93c.65-.32 1.29-.66 1.92-.99l.96-.5c.32-.16.64-.32.95-.5l.47-.25.47-.27.94-.53c.62-.35 1.24-.72 1.83-1.12-.51.5-1.1.94-1.7 1.34a24.25 24.25 0 01-2.83 1.61l-.5.23c-.16.08-.32.16-.49.22-.33.14-.66.29-1 .4-.34.14-.68.26-1.02.36z"/>
<path d="M114.34 79.13a72.38 72.38 0 01-4.73 5.52c-.42.43-.84.87-1.28 1.29s-.86.83-1.28 1.27c-.4.44-.81.9-1.18 1.37-.17.24-.36.48-.5.73-.16.26-.3.53-.39.82.06-.3.17-.58.3-.86s.3-.54.46-.8a15.84 15.84 0 012.37-2.77 70.38 70.38 0 002.52-2.6l1.23-1.33a69.96 69.96 0 012.48-2.64z"/>
<path d="M107.72 94.39c.64.03 1.27.04 1.9.08l.94.06.95.06.94.08.95.1c.63.07 1.25.15 1.88.26-.64.03-1.27.02-1.9 0l-.95-.05-.95-.07c-.62-.05-1.25-.1-1.89-.2-.32-.04-.62-.08-.93-.14-.32-.04-.64-.09-.94-.18z"/>
<path d="M115.8 86.88c-.7.75-1.55 1.36-2.42 1.9s-1.77 1.05-2.69 1.51c-.46.23-.91.47-1.37.69l-1.39.66c-.46.22-.92.44-1.36.68a9.4 9.4 0 00-.66.37c-.22.13-.43.28-.6.46.15-.2.34-.37.55-.54a13.09 13.09 0 011.97-1.2c.45-.25.9-.48 1.37-.72l1.36-.7c.45-.22.91-.46 1.35-.7.46-.23.9-.48 1.35-.73.87-.5 1.73-1.04 2.54-1.68z"/>
<path d="M106.94 97.22c.5.23.98.49 1.45.76.25.13.48.28.7.4l.7.44.68.45c.22.15.45.3.67.47.44.32.88.65 1.27 1.05-.47-.28-.95-.55-1.4-.83-.24-.13-.47-.28-.7-.42l-.7-.43c-.46-.3-.9-.58-1.36-.9-.44-.33-.88-.64-1.3-.99z"/>
<path d="M113.69 96.68c-.65.01-1.3 0-1.94-.05-.65-.05-1.29-.11-1.93-.19l-.95-.13c-.32-.06-.64-.1-.95-.14a14.1 14.1 0 00-.96-.1c-.31-.01-.63-.02-.94.06.28-.15.63-.2.94-.23.33-.02.65 0 .98.01.65.05 1.29.15 1.93.21l.96.12.95.14c.63.08 1.27.18 1.9.3z"/>
<path d="M105.57 100.06a11.04 11.04 0 011.2 1.63l.35.57c.23.39.44.78.63 1.19s.35.82.45 1.27c-.22-.4-.46-.77-.68-1.15l-.68-1.14-.33-.58c-.1-.2-.22-.38-.33-.58-.23-.4-.44-.8-.61-1.2z"/>
<path d="M110.97 101.78c-.46-.31-.94-.6-1.42-.85l-.74-.39-.72-.4-1.43-.82-.73-.38c-.24-.12-.5-.22-.77-.28.28-.02.56.05.84.12l.78.3c.26.1.5.24.75.36l.72.4c.49.28.97.54 1.43.85.47.32.91.68 1.29 1.09z"/>
<path d="M100.87 135.23c.06.17.1.36.09.54a.7.7 0 01-.06.26c-.02.09-.06.16-.07.24-.02-.09 0-.17-.02-.25a.73.73 0 00-.03-.23 1.13 1.13 0 00-.22-.4l.31-.16z"/>
<path d="M99.73 137.22c.1.15.17.32.2.5.03.1.03.2.02.27-.02.09-.03.16-.02.25l-.06-.24a.69.69 0 00-.09-.22 1.3 1.3 0 00-.3-.34l.25-.22z"/>
<path d="M103.25 137.9c.2.11.4.25.56.42.07.09.15.18.2.27s.12.21.13.32c-.05-.1-.11-.18-.19-.26s-.16-.13-.25-.2c-.18-.1-.38-.2-.57-.24l.12-.3z"/>
<path d="M103.7 137.38c.18-.14.41-.26.62-.35l.32-.13.33-.12.33-.1c.11-.03.21-.07.31-.12s.18-.13.27-.21.17-.14.27-.2c-.09.07-.18.14-.25.23s-.15.18-.25.26c-.1.06-.2.12-.3.16l-.32.14-.6.32c-.2.11-.36.23-.52.39l-.21-.27z"/>
<path d="M109.5 136.79c.21.2.43.4.68.57s.5.29.77.38l-.13.3c-.28-.14-.53-.33-.75-.55s-.4-.46-.58-.7z"/>
<path d="M112.5 136.05c-.12.1-.23.21-.31.34l-.09.22c-.02.07-.03.17-.06.25l-.02-.26c0-.08 0-.17.02-.26.03-.19.12-.35.2-.5l.26.21z"/>
<path d="M107.69 129.47c.24.32.43.69.55 1.07.13.39.19.8.2 1.19s0 .8-.01 1.19c-.01.38-.01.77.1 1.14-.11-.16-.2-.35-.26-.54a2.8 2.8 0 01-.1-.6c-.03-.39-.03-.78-.04-1.17-.02-.38-.06-.76-.12-1.14-.09-.39-.2-.75-.32-1.14z"/>
<path d="M97.56 116.77c.02-.65.04-1.3.01-1.96-.02-.32-.06-.65-.12-.97s-.18-.62-.36-.9c.2.26.34.56.44.88s.16.64.2.97c.1.65.13 1.3.16 1.97l-.33.01z"/>
<path d="M108.16 111.22c.12.2.21.41.28.63l.19.67c.07.22.13.44.22.65s.2.4.33.56l-.28.2c-.13-.22-.23-.45-.3-.68s-.1-.46-.15-.7l-.1-.67a2.27 2.27 0 00-.19-.66z"/>
<path d="M106.73 112.95a3.5 3.5 0 00-.33-.18l-.3-.15-.3-.12c-.1-.04-.22-.07-.36-.1a.72.72 0 01.38-.15c.14-.01.29.02.4.08.14.05.25.14.34.25.1.1.16.23.17.37z"/>
<path d="M100.67 112.3c-.14.05-.25.11-.35.2s-.19.14-.26.23l-.26.29c-.09.1-.18.2-.3.3 0-.16.03-.3.07-.43.06-.14.13-.27.24-.39.11-.1.25-.2.4-.24.17-.06.33-.06.46.03z"/>
<path d="M102.73 111.47c.05-.11.15-.18.26-.21s.23-.03.34.01c.11.03.21.1.29.2.08.09.12.2.1.33-.1-.06-.19-.1-.27-.12-.07-.04-.15-.06-.22-.08l-.23-.07a.77.77 0 00-.27-.06z"/>
<path d="M105.06 124.91c.18-.58.18-1.22.02-1.81-.08-.31-.18-.61-.27-.92s-.16-.63-.16-.94c.04.32.13.61.25.9.1.3.24.6.35.9.22.6.27 1.29.14 1.95l-.33-.08z"/>
<path d="M102.18 124.72c-.14-.14-.24-.32-.3-.5s-.1-.38-.12-.55l-.03-.53c-.01-.18-.04-.34-.06-.52a5.7 5.7 0 00-.7-1.97 5.7 5.7 0 01.97 2.47l.07.51c.03.16.07.33.14.48s.15.26.27.37l-.24.24z"/>
<path d="M107.81 123.67l-.23-.75-.2-.76c-.05-.25-.1-.52-.13-.77s-.04-.52-.19-.74c.17.2.22.48.28.73a9.33 9.33 0 00.48 1.45l.31.7-.32.14z"/>
<path d="M111.13 124.44a1.8 1.8 0 01-.63-.65c-.16-.26-.27-.53-.36-.8l-.25-.83-.24-.82.32.79.32.79c.1.25.24.5.4.72.16.22.36.39.6.51l-.16.29z"/>
<path d="M105.24 114.83c.08.15.2.25.33.31s.27.12.41.17c.15.05.3.1.46.17s.3.18.41.3c.26.23.43.52.57.81s.21.6.27.93c-.19-.27-.34-.54-.5-.8-.17-.26-.36-.5-.57-.7-.1-.1-.22-.18-.34-.26s-.26-.14-.4-.22-.3-.16-.42-.28a.72.72 0 01-.17-.2c-.02-.06-.05-.14-.05-.23z"/>
<path d="M101.07 114.9c.03.29.04.57.05.85s.03.55.07.81c.03.27.1.53.19.78s.2.5.38.73a1.51 1.51 0 01-.61-.62 2.32 2.32 0 01-.28-.84c-.04-.3-.03-.59.01-.87.02-.29.09-.56.19-.84z"/>
<path d="M99.73 117.29c.14.22.18.5.2.76s-.03.51-.06.76-.06.48-.06.71c0 .24.04.47.14.72-.21-.17-.33-.43-.39-.69a2.4 2.4 0 01-.01-.79c.03-.25.09-.5.12-.74s.06-.47.06-.73z"/>
<path d="M104.58 117.27c0 .15.1.25.18.37s.17.24.23.37a5.33 5.33 0 01.63 1.65c.06.29.1.59.1.88-.13-.26-.24-.54-.35-.8l-.3-.8-.32-.8-.14-.41c-.02-.07-.06-.15-.07-.22 0-.1 0-.18.04-.25z"/>
<path d="M107.76 119.11c.1.2.17.41.26.6s.19.35.3.51.27.34.38.55c.11.2.19.45.13.67-.08-.2-.2-.37-.34-.52a4.67 4.67 0 01-.6-.8 1.78 1.78 0 01-.14-1.01z"/>
<path d="M103.41 113.93c-.09.19-.02.34.03.5.07.17.16.33.22.52s.1.4.1.6c-.02.2-.05.4-.14.58l-.12-.56-.14-.52c-.05-.17-.14-.35-.16-.56a.8.8 0 01.02-.32c.03-.1.1-.2.2-.24z"/>
<path d="M108.9 117.58c.15.2.29.38.4.57s.26.37.37.56c.12.18.24.37.35.57s.23.4.33.6a3 3 0 01-.97-1 4.67 4.67 0 01-.31-.61c-.07-.22-.15-.45-.17-.69z"/>
<path d="M102.93 120.3c.1.23.2.43.33.64.12.2.25.4.36.63s.2.47.22.72-.02.54-.18.74c.03-.25 0-.47-.07-.7s-.17-.41-.27-.62-.22-.43-.3-.66c-.08-.24-.14-.5-.1-.75z"/>
<path d="M101.53 88.39c.33.66.55.99.55 1.65 0 .77.33.99.66 1.54l.33.66v.66c0 .55-.33 1.43.11 1.98.11.44.33.88.44 1.43.22.44-.22.66-.22.99-.11.11-.11.22-.11.33a.7.7 0 010 .66v.22c-.22.44-.66.55-.99.77-.55.55-1.1.88-1.87 1.21l-.66.22c-.44.22-.88.22-1.32.33s-.88.44-1.32.55c-.22.11-.44.11-.66.11-.99.22-2.2-.55-2.64-.55-.11 0-.22 0-.44-.11-.11 0-.22 0-.33-.11s-.22-.33-.22-.55c0 .22.11.44.33.55s.44.11.66.11c1.43.44 1.32.44 2.64.44.22 0 .44 0 .66-.11.44-.11.77-.55 1.21-.66.77 0 1.43-.22 2.09-.55.66-.11 1.1-.66 1.65-1.1.22-.33.88-.33.88-.77.11-.22.11-.44.11-.66 0-.11-.11-.22 0-.33.22-.44.22-.44.22-.99 0-.44-.22-.77-.44-1.21a2.57 2.57 0 010-2.2v-.66c0-.22-.11-.33-.22-.55-.22-.33-.55-.66-.55-.99-.11-.22-.11-.44-.11-.66.11-.33-.11-.66-.11-.99z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 43 KiB

View file

@ -1,142 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/4/44/Smolensk_Ancient.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bearPassant" stroke-width=".375">
<path class="secondary" d="M109.8 121.8s-.8 2.2.4 3.3c-.1-1.8 1.2-2.6 1.2-2.6s-.2-.7-.6-.8c-.6-.2-1 .1-1 .1z"/>
<path class="secondary" d="M109.7 121.7s-2.5 1-2 2.8c-.5-.3-.6-.9-.6-1.7 0-1.2 1-2.2 1-2.2s.6 0 1 .2c.3.2.6 1 .6 1z"/>
<path class="secondary" d="M107 119s-2 .8-2 2c0 1 .9 2.1 1 2 0-.1-.3-.9 0-1.6.4-1 1.7-.8 1.7-.8"/>
<path class="secondary" d="M92.8 122s-.9 2.2.3 3.3c0-1.7 1.2-2.6 1.2-2.6s-.2-.7-.6-.8c-.5-.2-1 .1-1 .1z"/>
<path class="secondary" d="M92.6 122s-2.4 1-1.9 2.7c-.5-.3-.7-.8-.7-1.7 0-1.2 1.1-2.1 1.1-2.1s.6-.2 1 .1c.3.2.5 1 .5 1z"/>
<path class="secondary" d="M90 119.3s-2 .7-2 2c0 1 .8 2 .9 2 0-.2-.3-1 0-1.7.5-.9 1.7-.8 1.7-.8"/>
<path class="secondary" d="M89.7 117.3s-2 0-2.4 1.2c-.4 1 0 2.2 0 2.1.2 0 .2-.9.7-1.5.7-.7 1.9-.1 1.9-.1"/>
<path class="secondary" d="M130.6 121.8s-.6 2.3.8 3.2c-.4-1.7.8-2.7.8-2.7s-.3-.7-.7-.7c-.6-.2-1 .2-1 .2z"/>
<path class="secondary" d="M130.4 121.8s-2.3 1.3-1.5 3c-.6-.3-.8-.8-1-1.6-.1-1.2.9-2.3.9-2.3s.5-.2 1 0l.6.9z"/>
<path class="secondary" d="M127.3 119.5s-1.7 1-1.6 2.3c.2 1 1.1 2 1.2 1.8 0-.1-.4-.8-.2-1.6.3-1 1.6-1 1.6-1"/>
<path class="secondary" d="M126.8 117.6s-2 .3-2.2 1.5c-.3 1 .3 2.2.4 2 .1 0 0-.8.4-1.5.6-.8 1.8-.4 1.8-.4"/>
<path class="secondary" d="M75 121.8s-1 2.1.3 3.2c-.1-1.7 1.1-2.6 1.1-2.6s-.2-.6-.6-.8c-.5-.2-.9.2-.9.2z"/>
<path class="secondary" d="M75.2 121.5s-2.4 1-1.9 2.8c-.5-.3-.7-.9-.7-1.7 0-1.2 1.2-2.2 1.2-2.2s.5 0 1 .2c.2.2.4 1 .4 1z"/>
<path class="secondary" d="M72 119s-1.8.7-1.9 2c0 1 .8 2 1 2 0-.2-.3-1 0-1.7.4-.9 1.7-.8 1.7-.8"/>
<path class="secondary" d="M71.9 117s-2 0-2.5 1.2c-.4 1 0 2.2.1 2.1.1 0 0-.9.6-1.5.7-.7 1.9-.1 1.9-.1"/>
<path class="secondary" d="M106.8 117s-2 0-2.5 1.3c-.3.9 0 2.1.2 2 0 0 0-.8.6-1.4.7-.7 1.8-.1 1.8-.1"/>
<path class="tertiary" d="M68.6 89.8s-1.6-.3-3 .2c-2 .6-2.3 1.2-3.3 1.4-1.3.4-2 .3-2.6.1-1.2-.4-1.2-1-1.4-.8-.1.4.5 1.4 1.3 1.8 1 .5 2 .6 3.8 0 1-.3 1-.5 2.3-.9a5.6 5.6 0 012.3-.2"/>
<path d="M114.4 97c1.6 2.2-4.3 5.8-3.6 10.6.3 3 1.8 4.8 1.8 4.8s.7.8.6 2.2c0 .8-.7 2-1.3 2.1-1.2-.4-1.5.5-2.3.3-.3-.1-1.6 0-2.5-.4-.8-.7-1.8.1-1.7.6 0 0 .4 0 .7.7l.2.8s-.6.4-.5 1l.8.1c.3.2.5.5.5.8l-.2.7c0 .2.2.5.3.4.2-.2.6-.3 1-.2.8.3.3.8 1.4.9.2-.6 1.2-.8 1.5.3.4.3 1 .1 1.4-.2.3-.1.5-.6.9-1l1-.5c1.1-.5 2.4-.2 3.6-1.2l1.4-1.4c.3-.6 0-.6.3-2 .3-1-.1-1 0-2.8s.3-3.4 1.8-5c1.5-1.7 4.3-2.1 6.6-5.8"/>
<path d="M74.5 78s.2-.4.9-.7c.3 0 1.2-.3 2.1 0 .8.3 1.6 1 1.8 1.5"/>
<path fill="#f6f6f6" d="M60.8 89.2s.6 1.2 1.6 1.6a4.5 4.5 0 01-.2-1.6"/>
<path fill="#f6f6f6" d="M66 92.5c-.3 0-.5-.2-.8-.4 0 .3 0 .8.2 1.2m-.6.3a2.4 2.4 0 01-.7-.8c-.3.5-.2 1 0 1.4"/>
<path d="M102 100.3a70.8 70.8 0 00-9-1.3l-.6.1c-.3.1-.4.4-.5.6-.7 1.2-2.2 3-2 4.4.3 1.4 1.8 2.3 2.2 3.6.2.7 2.3 3.7 2.6 4 1.2 1.6 1 2.6 1 3.5 0 .6-.1 1.2-.6 1.5-.7-.4-1.8.7-2.6.5-.3-.1-1.5 0-2.4-.4-.8-.7-1.8.1-1.7.6 0 .1.4.1.7.8l.1.7s-.5.4-.5 1c.1.1.5 0 .8.2.3.1.5.5.6.7-.3.4-.2.5-.2.7 0 .2.2.5.3.5.2-.3.6-.4 1-.2.7.3.3.7 1.3.8.2-.6 1.2-.8 1.5.3.4.3 1 .1 1.5-.1.3-.2.5-.7.8-1 .4-.4 1-.5 1-.6 1.2-.5 2.5-.2 3.7-1.2l1.3-1.4c.4-.6 0-.5.4-2l.4-3.2c.2-1.8-2-4.4-1.8-6.3.2-2.6 1-3.3 1.7-4.7"/>
<path d="M139.7 91.9c-2.2-1-2.5-5.3-7-8.5a48 48 0 00-6.7-4 29 29 0 00-8-2.5 38.5 38.5 0 00-8.2-.3c-3.6.2-4.4 1-9.8 1-5.3 0-7.6-2.9-11-2.3-2.4.4-3.9 1.3-5.6 2-1.4.7-3.1.9-3.4 1l-2.5.2s-.8-1.3-3.6-1c-4.3.6-5.6 2.3-6.4 2.5l-1 .2c-.3.1-.7 1-1 1.1-.8.6-.2 1-.4 1.3-.1.2-.8.2-1.3.4l-1.1.7c-.6.1-.3.6-1.5 1.2-.3.2-2 .3-2.2.8-.1.3 0 .9.4 1.1.4.8.4 1 .3 1.3l.1 1c.2.3.7.2 1.2.3.5 0 1.2.2 1.9 0 .8 0 1.5-.3 2-.4 1.5-.3 2.3.6 2.5 1.9 0 1-1 1-1.2 1.3-.3.3-.6.9-.9 1-.3 0-.3.4-.6.5 0 0-.5.1-1 .5a1 1 0 01-.4.3c-.2 0-.3.4 0 .6.3.2.3.3 1 .3.6 0 1.2.7 1.6.6.4 0 .5-.5 1.3-.6.9-.1 1.2-.8 2 0 .6.7 1.3.4 1.7.7.3.3.8.3 1 .5 0 .1 0 .4.2.4l.8-.8c.1.4.4 1 .7 1.2.2-.5.5-.9 1-1.2-.2.3.1.7 0 1.1.6-.1.9-1 .9-1s.4.5.9 2c1.1 3.2 2.7 2.3 3.1 4.3.2.7-.3 2.1-.2 4.4-.4 3.3.4 5.9 0 6.7-.2.9-1 2.7-1.6 2.8-1.3-.4-2.3.6-3 .4-.4-.1-1.6 0-2.5-.4-.8-.7-1.8.1-1.7.6 0 .1.4.1.7.8l.1.7s-.5.4-.5 1c.1.1.5 0 .8.2.3.1.5.5.6.7-.3.4-.2.5-.2.7 0 .2.2.5.3.5.2-.3.6-.4 1-.2.7.3.3.7 1.3.8.2-.6 1.2-.8 1.5.3.4.3 1 .1 1.5-.1.3-.2.5-.7.8-1 .4-.4 1-.5 1-.6 1.2-.5 1.7-.2 3-1.2.5-.6-.4.2 1-1 .3-.2 1.7-.8 2.6-2 .7-1.1.3-2.3.8-3.4.6-1.4.1-2.9.9-4.3.8-1.7 2.4-2.6 3.2-4a45 45 0 001.9-3.3l1.4.5c1 .4 2.6 1 5 1.2a36 36 0 006.6-.8c1.8-.3 3.9-1 6.9-1 3.7 0 6.1.7 7.5.6.5 0 1.4-.1 2.1-.4.9 1.9 1.5 4.7 4 6.4 2.1 1.6 2.2 1.2 3.4 2.8 1 1.3 1 2 1.8 2.8.7.7 1 2.6.5 2.7-1.3-.2-1.6.7-2.5.6-.3 0-1.5.2-2.5 0-.8-.6-1.7.3-1.6.8 0 0 .5 0 .9.6l.2.7s-.5.5-.3 1c0 .2.5 0 .8.1.3.1.6.5.7.7-.3.4-.2.5-.1.7 0 .2.2.4.3.4.2-.3.6-.4 1-.3.7.1.4.7 1.4.6.2-.6 1.1-1 1.6.1.4.2 1 0 1.4-.4.3-.2.4-.7.7-1 .3-.5.6-.7.7-.8 1-.7 2.6-.6 3.6-1.8l1.1-1.6c.3-.6 0-.5 0-2 .2-1-.7-2.6-1.9-4s-1.4-2-1-5.5c0-1.3 1-4 1.5-7.2a20.6 20.6 0 000-4.6c-.3-.6 2.1 1.5 3.6-1.2.1-.2-1-.2-2-.5z"/>
<path d="M81.7 81.7s.4-.5.3-1.4a3.2 3.2 0 00-1.3-1.8 3.6 3.6 0 00-2.2-.5c-.6 0-1.2.7-1.2.7"/>
<path fill="#f6f6f6" d="M67.2 83.6c0-.2.4-.8.8-.8s.7.3 1.2.6c-.1.1-.2.5-1 .6-.6.1-1-.2-1-.4z"/>
<g fill="#000" stroke="none">
<path d="M116.8 108c.8.1.5 1.5.1 1.5V108z"/>
<path d="M117.5 105.8c1 .5 1.1 1.9.6 2.8 0-1 0-2-.6-2.8z"/>
<path d="M118.1 103.8c1.6.7 1.8 2.9 1.2 4.3 0-1.4 0-3.3-1.2-4.3z"/>
<path d="M119.2 102.4c1 .9 1.7 2.5 1 3.8a8 8 0 00-1-3.8z"/>
<path d="M97.4 109.4c1.2-.1 1 2.4.4.7 0-.3-.2-.5-.4-.7z"/>
<path d="M97 107.2c1.2 0 2 1.2 1.7 2.3-.3-1-.7-1.8-1.7-2.3z"/>
<path d="M97.2 104.6c1.7 0 2.8 1.9 2.8 3.4-.6-1.2-1.3-3-2.8-3.4z"/>
<path d="M98.6 103c1 .5 1.8 1.5 1.7 2.5-.4-.9-1.1-1.6-1.7-2.5z"/>
<path d="M113.6 116.1c.3.5-.4 1.4-.7 1.2.1-.4.4-.8.7-1.2z"/>
<path d="M109 122.4c-.3-.9.3-2.1 1.1-2 .4-.1 2-1 1.5-.5-.8.7-2.6.8-2.2 2.2.2.2-.3.2-.3.3z"/>
<path d="M106.9 120.6c.5-1 1-.5 1.5-1a6 6 0 012.1-.4c-.8.5-1.8.3-2.5 1-.6-.2-.7 1-1.1.4z"/>
<path d="M106.2 118.5c.2-.5 1.4-.2 1 0 .6-.6 2.8-.1 2.5 0l-2.7.2c-.3-.2-.6.3-.8-.2z"/>
<path d="M108 119.3c-1.5-.7 0-1.3 0 0z"/>
<path d="M109 120.4c-1 .1-1.3-1-.2-.3 0 0 .3.2.2.3z"/>
<path d="M107.2 116.4c.3.2.7.8.4 1.1 0-.4-1-.8-.4-1z"/>
<path d="M110.2 120.3c1-.2 2 1.3.6.5-.4-.2-.7.1-.6-.5z"/>
<path d="M96.3 116.3c.4.4 0 1.3-.5 1.3l.5-1.3z"/>
<path d="M92 122.6c-.4-.8.3-2.1 1-2 .4-.1 2.1-1 1.6-.4-.8.6-2.7.7-2.3 2.1.2.2-.2.2-.3.3z"/>
<path d="M89.8 120.9c.5-1 1-.6 1.5-1.1a6 6 0 012.2-.3c-.8.4-1.9.2-2.6.9-.5-.2-.7 1-1 .5z"/>
<path d="M89.1 118.7c.2-.4 1.4-.2 1.1 0 .5-.5 2.7 0 2.4 0l-2.6.2c-.4-.2-.7.3-.9-.2z"/>
<path d="M90.9 119.5c-1.4-.7.1-1.3 0 0z"/>
<path d="M92 120.6c-1 .2-1.3-1-.3-.3l.3.3z"/>
<path d="M90.2 116.6c.3.3.6.8.4 1.2-.1-.4-1-.8-.4-1.2z"/>
<path d="M93.1 120.6c1-.3 2 1.3.6.4-.3-.1-.7.1-.6-.4z"/>
<path d="M114.6 114.2c.8-.2.5 1.4.2 1.1 0-.3 0-.8-.2-1.1z"/>
<path d="M116 113.8c.4.4.3 2.1 0 1.4 0-.4-.4-1 0-1.4z"/>
<path d="M116.8 113.4c1 .1.4 1.7-.1 1.5.2-.4.3-1 .1-1.5z"/>
<path d="M117.9 114.5c-1.1-.7 1-2.3.1-.8a2 2 0 00-.1.8z"/>
<path d="M97.3 114.4c.8-.2.5 1.4.2 1.1 0-.3 0-.8-.2-1z"/>
<path d="M98.7 114c.4.4.3 2.1 0 1.5 0-.5-.3-1 0-1.4z"/>
<path d="M99.5 113.6c1 .1.4 1.7-.1 1.5.2-.4.3-1 .1-1.5z"/>
<path d="M100.6 114.7c-1.1-.6 1-2.3.1-.8a2 2 0 00-.1.8z"/>
<path d="M132.5 112.9c.6-.5 1.1 1 .6.9 0-.3-.3-.7-.6-1z"/>
<path d="M133.5 112c.4.2 1.2.8.8 1.4 0-.6-.9-.9-.8-1.5z"/>
<path d="M134 111.1c.9-.3 1.2 1.3.6 1.4 0-.4 0-1.2-.6-1.4z"/>
<path d="M135.5 111.6c-.6.1-.9-1-.5-1-.4 0 .4-.1.3.6 0 .1 0 .3.2.4z"/>
<path d="M134 93c2.1 3 2 7 1 10.4.5-1.7 1-7.2-1-10.3z"/>
<path d="M137.2 91.3c.1.7 1.4 2 .6 2.3-.1-.8-.3-1.5-.6-2.3z"/>
<path d="M92.7 101.6l1-1.4c.5-.6 1.3-1.1 1.8-1.8.5-.6 0-1.9-.5-3.3-1.4-2.3.4-3.6.4-4-.2 1.2-.9 1.2-.7 2.6.6 2 1.5 3.3 1 4.7-.3.8-1 1.2-1.8 2-.3.5-.7 1.7-1.2 1.2z"/>
<path d="M79.4 103.4c0-1 0-2-.2-3-.3 1.4-.5-2.4-.7-.8-.6.5-.5-.9-.4-1.3 0-.3.7-2.3.5-1.3-.2.8-.5 1.8-.2 2.6-.7 0 .9-1.3.6-.1 0 1.7.5 0 .7 1.7 0 .8.2 1.6 0 2.4l-.3-.2z"/>
<path d="M84.6 97c-.7.4-1.5 1-.4-.2.1 0 .4 0 .4.2z"/>
<path d="M132.4 103.9c-.5.4-.1 1.5-1 1.4-1-.8.3 1.3-.7 1.4-.6 0-1.4-.8-.9-.2.2.8-.6.8-1.2.5-.3-.5-.2 1.6-.6.7.6.4-.1-1.7 1.1-.9.1 0 1-1.5 1.6-.3 0-.5 0-1.2.2-1.5 1.2.4.9-.3 1.5-1.1z"/>
<path d="M121.5 92.1c-.5 3.3.6 8.6.9 9.7-1-2.1-1.5-6.2-1-9.7z"/>
<path d="M77.5 98.6c-.8-.5-.7-1.6-.7-2.3.6.6.4 1.6.7 2.3z"/>
<path d="M79.2 93.6c.6 0 .4 1.2.1 1.3-.2-.4.1-1-.1-1.3z"/>
<path d="M79.7 91.8c1.1.2 0 2.3.2.6l-.2-.6z"/>
<path d="M80.5 90.2c1.2 0 0 2.2.2.3l-.2-.3z"/>
<path d="M80.1 87.7c.7-.3 1 1 1 1.1-.6-.1-.5-.9-1-1z"/>
<path d="M81.3 87.7c-.4-.3-.2-1.4.1-.5.1.2 0 .4-.1.5z"/>
<path d="M83.4 114.4c.9-.7 1.6 1.8.8.7l-.8-.7z"/>
<path d="M113 97.4c.3.8-.5 1.6-1 2.1 0-.8.8-1.4 1-2.1z"/>
<path d="M117.6 95.2c.5.3 0 1.6-.2 1.2-.2-.4.2-.8.2-1.2z"/>
<path d="M114 97.6c.8.7-.6 1.9 0 .4v-.4z"/>
<path d="M111.2 98.3c.9.1-.6 2-.5 1.2 0-.5.6-.8.5-1.2z"/>
<path d="M110 98.6c.4 1.5-.8.7 0 0z"/>
<path d="M116 96.7c.4.4-.2 1.1-.4 1.2-.2-.5.3-.8.4-1.2z"/>
<path d="M137.2 114.3c.6-.5 1.6.4 1.3.8-.4-.4-.8-.6-1.3-.8z"/>
<path d="M88.7 102.3c1.5 0 .8 2.7.5.7a2 2 0 00-.5-.7z"/>
<path d="M87.8 105.5c-.5-.4 0-2 .1-1.4 0 .5.2 1-.1 1.4z"/>
<path d="M85.6 106.5c1.2.3-.5 2.1 0 .7v-.7z"/>
<path d="M87 105.3c.6 0 .2 1.2-.1 1v-1z"/>
<path d="M84.5 108.6c-1-.5.4-1.8 0-.3v.3z"/>
<path d="M89.2 101.2c.7-1 1.5 1.4.6.3a1 1 0 00-.6-.3z"/>
<path d="M89 99.6c.7-.7 1.7.5 1.4.8-.4-.4-.7-.8-1.3-.8z"/>
<path d="M89.1 98.5c.4-.8 1.7.3 1.3.6-.3-.3-.8-.7-1.3-.6z"/>
<path d="M94.2 84c-2-1.9-5.2-2.6-7.6-1.2-1-.3-2 .3-2.7 1 .6-.9 1.7-1.6 2.8-1.3-.3 0 .5-.4.8-.5 2.4-.6 5.1 0 6.7 2z"/>
<path d="M86.5 83.1c0 .2-.3 1.5-.4.7 0-.2.1-.6.4-.7z"/>
<path d="M120.9 86.9c1.8-1.6 4.5-1.6 6.6-.8.2.5 1.4-.1 2 .5.9.4 1.7 1.1.4.3a4 4 0 00-2.2-.3c-1.7-1-4-.8-5.8-.2l-1 .5z"/>
<path d="M128 86.9c1 1 .6 2.4 0 0z"/>
<path d="M133.2 115.6c.6.3.4 1.5-.3 1.3.4-.3.2-1 .3-1.3z"/>
<path d="M129.9 122.5c-.8-.9.3-2.1.8-2.2.4-.1 2-1.4 1.3-.5-.6.8-2.1.8-2 2 0 .4.4.6-.1.7z"/>
<path d="M127.4 121.1c.5-1 1-.7 1.4-1.3.6-.4 1.5-.5 2.2-.8-.7.8-2 .6-2.5 1.4-.6 0-.5 1.1-1 .7z"/>
<path d="M126.4 119c.8-.7 1.2.1 1.6-.4.4-.2 3-.3 1.5 0-1 0-1.7.6-2.6.5-.2.3-.3.2-.5 0z"/>
<path d="M128.3 119.6c-1.5-.4-.1-1.4 0 0z"/>
<path d="M129.5 120.5c-.5.3-1.6-.5-.5-.4.2 0 .5.2.5.4z"/>
<path d="M127.2 116.8c1.4 1 0 1.3-.1.2v-.1z"/>
<path d="M130.7 120.3c.7-.4 2.2 1 .8.3-.4-.1-.8.4-.8-.3z"/>
<path d="M79.8 116.2c-.2 1.2-2.1 1.5-.6.4l.6-.4z"/>
<path d="M74.1 122.3c-.4-.8.3-2.1 1-2 .4-.1 2.1-1 1.6-.4-.8.6-2.7.7-2.3 2.1.2.2-.2.2-.3.3z"/>
<path d="M72 120.6c.5-1 1-.6 1.4-1.1a6 6 0 012.2-.3c-.8.4-1.9.2-2.5.9-.6-.2-.8 1-1.2.5z"/>
<path d="M71.2 118.4c.3-.4 1.4-.2 1.1 0 .6-.5 2.8 0 2.5 0l-2.7.2c-.4-.2-.7.3-.9-.2z"/>
<path d="M73 119.2c-1.4-.7.1-1.3 0 0z"/>
<path d="M74 120.3c-1 .2-1.2-1-.2-.3.1 0 .4.2.3.3z"/>
<path d="M72.3 116.3c.3.3.6.8.4 1.2 0-.4-1-.8-.4-1.2z"/>
<path d="M75.3 120.3c1-.2 2 1.3.5.4-.3-.1-.7.2-.5-.4z"/>
<path d="M76.8 79.6c0-1.4 1.2-1 0 0z"/>
<path d="M66.8 83.1c-1.5.3-1.3-1.9-.3-2.3 1.3-.7 2.7 0 3.3 1.1-.8-.8-1.9-1.4-3-.9-.8.2-1.3 2-.1 2z"/>
<path d="M68.3 91c.8.6 1 1.6 1.4 2.4-.8-.4-.9-1.7-1.4-2.4z"/>
<path d="M71 93.4c-.6-1.8-2.5-3-3-4.9.8 1.8 2.7 3 3 5z"/>
<path d="M66.6 85.8c.5 1.5 1.7 2.4 2.7 3.4 0 .2-1.1-.7-1.5-1-.6-.7-1-1.5-1.2-2.4z"/>
<path d="M69 88c-1.2-.5-2-1.6-2.4-2.8.7 1 1.4 2 2.4 2.7z"/>
<path d="M68.3 86c-.7.2-1.4-.5-1.4-1.2.4.5.8 1 1.4 1.2z"/>
<path d="M67.7 84.8c-.5.3-1.1-1-.5-.5l.5.5z"/>
<path d="M73.6 87.7c-1.2 0-2.9.8-3.7-.5 1 .9 2.5-.1 3.7.5z"/>
<path d="M70.2 83.3c.5-.1 1-.2 1.3-.5.5 0 0 .5.3 0 .5.3-.4 1 .2.6-.4.5-.4-.3-.4-.3-.1-.6.1.1 0 0-.4.6-.9.3-1.4.2z"/>
<path d="M62.8 84.6c.4-.3.9-1.2 1.5-.8-.5 0-.9.8-1.5.8z"/>
<path d="M59.5 86.8c.1-.8.9-.2.8.1-.2.8.3-.4 0 .4-.1-.4.3-.7.7-1 .7-.2-.1.2-.2.5-.3 1-.5 0-.4.5-.4-.7.3.4-.3-.2-.1-.4-.2-.6-.6-.3z"/>
<path d="M60.8 87c.3.7-1 .8-.7.3.3.3.5 0 .7-.4z"/>
<path d="M69.2 84c0 .6-1.2.7-1.3.4.5 0 1-.2 1.3-.4z"/>
<path d="M65 95c0 .3-.7.9-.6.2.2 0 .4 0 .5-.3z"/>
<path d="M69.7 83.1c0 .3-.8.8-.5.1l.5-.1z"/>
<path d="M67.3 83.8c-.6.3-1.3.4-2 .2.7.5 1.8-1 2-.3z"/>
<path d="M67.1 83c-.2-1 1.3-1.3 2-.7-.8 0-1.7 0-2 .8z"/>
<path d="M76.4 80.8c.8.4 1.7 0 1.7-1 .2-1.4 2.4-.7 2.3.6.3.8-.5 2-1 2.2 1.3-.8 1.1-3.6-.7-3.3-.6.4-.6 2-1.7 1.7-.2 0-.4 0-.6-.2z"/>
<path d="M78.6 81.8c-.2-.5-.6-2.4-.1-1 .1.3.4.7 0 1z"/>
<path d="M79.7 81.4c.1-.7-1.4-.8-.4-1.4.6-.6-.2.4 0 .5.3 0 .6.5.4 1z"/>
<path d="M80.5 83.2c.2-1 2.3-2.2.6-.7-.2.3-.5.4-.6.7z"/>
<path d="M64.8 94.6l2-2c-.3.8-.6 1.7-1.6 1.8.1.2-.5 0-.4.2z"/>
<path d="M77.5 87.8c.6.5.5 2.4-.3 1.2.4 0 0 1.4-.2 1.9-.2.7-1 .8-1 0 .3-1.2 0 1.4-.6 1.9-.8 1.4-1 0-.7-1 0 1.3-.1 2 .6.6.5-.5.3-2.4 1-2 0 .4.5 1 0 .8.7-.6.6-1.8 1-2.4.5.1.3.8.4.1 0-.4 0-.7-.2-1z"/>
<path d="M68.3 83.7c.6-1.8-1.4-.4 0 0z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -1,129 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/2/2d/Smolensk_Bergshammar.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bearRampant" stroke-width=".3">
<path class="secondary" d="M79.7 90.4s-1 2.1.2 3.3c0-1.8 1.3-2.6 1.3-2.6s-.2-.6-.6-.7c-.5-.3-1 0-1 0z"/>
<path class="secondary" d="M79.5 90.3s-2.5.9-2 2.7c-.5-.4-.7-1-.6-1.8 0-1.2 1.2-2 1.2-2s.6-.2 1 .2c.2.1.4.9.4.9z"/>
<path class="secondary" d="M77 87.5s-2 .7-2 2c0 1 .7 2 .7 2 .2-.2-.2-1 .2-1.7.4-.9 1.7-.7 1.7-.7"/>
<path class="secondary" d="M76.9 85.5s-2 0-2.6 1.1c-.4 1 0 2.2 0 2.1.2 0 .2-.9.8-1.4.7-.7 1.8 0 1.8 0"/>
<path class="secondary" d="M82.2 117.9s-2 1-2 2.6c1.2-1.3 2.7-1 2.7-1s.3-.7 0-1c-.2-.6-.7-.6-.7-.6z"/>
<path class="secondary" d="M82.1 117.7s-2.4-1-3.2.7c-.2-.5 0-1 .6-1.7.8-.9 2.3-.8 2.3-.8s.5.3.6.8l-.3 1z"/>
<path class="secondary" d="M82 114s-2-.8-2.8.1c-.7.7-.8 2-.6 2 .1 0 .4-.8 1.1-1.1 1-.4 1.8.6 1.8.6"/>
<path class="secondary" d="M83.2 112.3s-1.5-1.3-2.6-.8c-1 .5-1.5 1.6-1.4 1.7.2 0 .7-.6 1.5-.7 1 0 1.5 1.2 1.5 1.2"/>
<path class="secondary" d="M83.3 68.1s-2.2.5-2.4 2.2c1.3-1.1 2.8-.6 2.8-.6s.4-.5.2-1a.9.9 0 00-.6-.6z"/>
<path class="secondary" d="M83.3 67.9s-2.3-1.4-3.4 0c0-.5.3-1 1-1.5 1-.7 2.4-.3 2.4-.3s.4.3.4.9c0 .3-.4.9-.4.9z"/>
<path class="secondary" d="M83.8 64.2s-1.7-1.1-2.7-.4c-.8.6-1.2 1.8-1 1.8.1 0 .5-.7 1.3-.9 1-.2 1.6 1 1.6 1"/>
<path class="secondary" d="M85.4 62.8s-1.2-1.6-2.5-1.3c-1 .3-1.7 1.3-1.6 1.4.1 0 .8-.5 1.6-.4 1 .2 1.2 1.4 1.2 1.4"/>
<path class="secondary" d="M105.9 136.9s-.8 2.2.4 3.3c-.1-1.8 1.1-2.7 1.1-2.7s-.2-.6-.6-.7a.9.9 0 00-1 .1z"/>
<path class="secondary" d="M105.7 136.8s-2.4 1-1.8 2.8c-.5-.3-.7-.8-.8-1.7 0-1.2 1.1-2.2 1.1-2.2s.6-.1 1 .2c.3.2.5 1 .5 1z"/>
<path class="secondary" d="M103 134.2s-2 .8-1.9 2c0 1 .9 2.1 1 2 0-.1-.3-.9 0-1.6.3-1 1.6-.8 1.6-.8"/>
<path class="secondary" d="M102.7 132.2s-2 0-2.4 1.3c-.4 1 0 2.2.2 2 0 0 0-.8.6-1.4.6-.7 1.8-.2 1.8-.2"/>
<path class="tertiary" d="M102.3 69s-1.1-.3-2.6 0c-1.5.2-2.3.9-3.1 1-.9.2-1.5 0-2-.1-.8-.4-.7-1-1-.8 0 .3.5 1.3 1 1.5a3.8 3.8 0 002.9.3c.8-.1 1.2-.5 2.2-.7h1.8"/>
<path fill="#f2f2f2" stroke-width=".2" d="M96.7 67.8s.4 1 1.1 1.4V68"/>
<path fill="#f2f2f2" stroke-width=".2" d="M100.4 70.8a3 3 0 01-.5-.4c-.2.3-.1.6 0 1m-.5.2a1.8 1.8 0 01-.5-.7c-.3.3-.2.8 0 1.1"/>
<path d="M103 101.4c-1.3 0-6 0-8.3 1-2.4 1-4 3.7-4.7 6-.3 1.8 2 4 1.7 6-.3 1.7-.8 2-1.6 2.6-.6.5-2.4-.5-2.5-.8-.6-1.2-1.9-1.3-2.3-2-.1-.3-1.1-1-1.5-2-.2-1-1.4-1.1-1.7-.7 0 0 .3.3 0 1l-.3.7s-.7-.1-1 .3l.4.7v1c-.6 0-.6.2-.7.3s-.2.5-.1.6c.3-.1.7.1.9.5.3.7-.4.7.4 1.5.5-.2 1.4.3.8 1.3.2.5.7.7 1.2.9l1.3-.2c.5 0 1 .3 1.1.3 1.2.4 2.3 1.9 4 1.9.8 0 1.3 0 2.4-.2 1.3-.3 2.3.1 2.7-.2 1.9-1.8.9-2.7 2.7-5 .5-1 1.9-.9 4.5-2.2"/>
<path d="M101.1 79.5c-.8-.5-1.3 0-2.7-1-.7-.6-1-1.5-1.6-2.1l-1.9-1.7c-2.2-2.1-2.5-3-3.2-4.2-.7-1-.6-.8-1.7-2a14 14 0 01-2.9-3.5c-.1-.3-1-1.2-1.1-2.2 0-1-1.2-1.4-1.5-1 0 0 .1.4-.2 1 0 .2-.5.6-.5.6s-.7-.3-1 .1c-.1.2.2.5.2.8 0 .3 0 .7-.2.9-.5 0-.5 0-.7.2-.2.1-.3.4-.2.5.3 0 .6.3.8.8.1.7-.5.6 0 1.5.6-.2 1.4.5.7 1.4 0 .5.4.8 1 1 .2.3.7.1 1.2.2s.7.5 1 .7c.4.4.8 1.9 1.6 2.6.7 1 2.3 6.8 3.7 8.6.8 1 2 3.5 2.8 4.3a5.2 5.2 0 003.3 1.5c1.7.2 3.5 0 5-.7 1.8-.7 3.5-1.9 5.4-2"/>
<path d="M108.4 60.4s.2-.4.7-.5c.3 0 1-.1 1.7.2.6.3 1 1 1.2 1.2"/>
<path d="M87.6 90.2c1.2 0 7 2.2 9.1 2 .7 3.7 7 4.6 6.2 11.6 0 .3-.4 1-.5 1.3-.3.4-.2.7-.4 1.1-1 .8-.3 1.8-.5 2.6-.1.6-1.2 1.2 0 1.3 0 .5-.8.7-.8 1 0 .2.1.6.5.5-.2 1-.3 1.4-.3 2.2 0 1 .1 2 .6 3 1 1.5.8 2 1.5 3.1.3 1.2.8 1.2 1.9 2.4l2.7 2.6c1.3 1.2 1.3 3.6 1.4 4l-.4 2c-.2.5-.6 1.1-.9 1-1.2-.4-1.4.4-2.2.1-.3 0-1.6.1-2.5-.3-.8-.6-1.8.2-1.7.7 0 0 .5 0 .8.7l.2.7s-.6.4-.5 1c0 .1.5 0 .8.2.3.1.5.5.6.7-.3.4-.2.5-.2.7s.2.5.3.4c.2-.2.6-.3 1-.2.7.3.3.8 1.3.8.2-.6 1.2-.8 1.5.3.5.3 1 .1 1.5-.2.3-.1.5-.6.8-1 .4-.4 1-.5 1-.6 1.2-.5 2.2-.3 3.3-1.3l1-.9c.3-.5 0-1.3.4-2.6.4-1.4 0-1-.4-3.4-.5-2.5-2-3.3-1.6-7.5.3-2 3.2-3.7 2.9-8.8 0-.6 1.5 1.4 2.8 0 0 0-.8-.1-1-1-.5-2.3-1.2-4-1.4-4.7 0-.2-2-6-2-12 0-2.2.1-4.6.7-7 .3-1.3.6-3 1.7-5.3.7-1.4 1.6-2.2 1.4-4-.3-1.8-.7-1.8-1.2-3.7-.5-1.4-.2-2.4-.2-2.8 0-.1.6.1.7-.7-.5 0-1-.4-1.4-.8-.3-.3-.4-1.3-.4-1.3s.6 0 .6-.5c-.3-.1-.9-.2-1.1-.7 0-.7-.3-1.4-.6-2-.4-.7-1-1-1-1s.3-.4.3-1.1c0-.4-.3-1.1-.8-1.5-.6-.5-1.3-.6-1.6-.6-.5 0-.8.3-.8.3s-.9-1-3-1c-3.4 0-4.4 1.2-5 1.3-.5.1-.5 0-.8 0s-.7.7-.8.8c-.8.4-.3.7-.5 1-.2.1-.7 0-1 .2-.4.1-.5.3-1 .3-.4.1-.2.5-1.2.9-.2 0-1.5 0-1.7.4-.2.2 0 .7.2.9.2.6.2.8 0 1v.8c.2.2.6.2 1 .3l1.2.2 1.8-.1c1 0 1.7.5 1.8 1.8 0 .7-1 .6-1.2.9-.2.2-.5.6-.7.6s-.3.3-.5.4c-.1 0-.5 0-.8.3l-.4.2c-.1 0-.3.3 0 .4.2.2.2.3.7.3s.9.7 1.2.7.5-.4 1-.4 1-.6 1.6.1c.4.5.6.5.7.8.2.4 0 .8-.3 1-.5.5-2 .2-2.6 1-.3 0-.6-1.4-1.8-.8-.1 0 1 .3.3 1.2-.1.2-.8.1-1 .5-.4.4-1.1.2-1.1 1-.4.4-1 .1-.7 1-.2.5-.9.7-1 .9 0 .1.1.2.4.3-.3.6-.8.8-.9 1 0 .2.4.3.4.3-.3.7-1.2.8-.5 1.4-.5.5-.2.6-.3 1.1-.1.6-.4.6-.4 1-4.4 1.7-5.9.3-7.2.3l-2.4.1c-2.3.2-3.8.4-4.6.1-.3 0-1.5 0-2.4-.5-.8-.7-1.8 0-1.7.5 0 .1.4.2.7.8v.8s-.5.4-.5.9c.1.2.5.1.8.2s.5.6.6.8c-.3.4-.3.5-.3.7s.2.5.3.5c.2-.3.6-.4 1-.2.7.3.2.8 1.3 1 .2-.6 1.2-.8 1.5.3.4.3 1 .2 1.4-.1.4-.1.6-.6 1-1 .3-.3.7-.2 1-.3.6 0 2.2.6 3.3.3z"/>
<path fill="#f2f2f2" stroke-width=".2" d="M102.8 63.4c.3 0 .6.2.9.6-.1.1-.2.4-.8.4-.5 0-.8-.2-.8-.4s.5-.5.7-.6z"/>
<g fill="none" stroke-width=".2">
<path d="M110.1 68v1.2l-.4-.3s0 1-.9 1.8c0-.3 0-.5-.2-.7-.4.7-.6 1.6-1.2 2v-1.1m-3 3s.4 0 .3.7l.6-1-.2 1.4c.2 0 1-1.3 1-1.3l-.1.8a5 5 0 001.2-1.1v.8l.7-.9c0 .3.3.5.3.5.4-.6.6-1.1.7-1.7"/>
<path d="M104 119.9v-.5l.9.4c0-.3 0-.5.4-.8.3.1.5.3.8.3.2 0 .3-.4.6-.4l.8.3c0-.5 0-.9.3-1.4.2.1.4.2.9.1.1-.4.4-.7.6-1"/>
<path d="M96.7 92.2c1 0 2.1.4 3.1-.1.7-.3 1.4-.6 2 0 .6.3 1.2-.1 1.7-.5.5-.6.3-1.5.9-2 .8-1.3.6-1 1.6-1.6"/>
</g>
<g fill="#000" stroke="none">
<path d="M82.5 67.8c.3-.6 1.6-1 2.1-.2.4.2 2 1 1.2.8-1-.3-1.5-1.2-2.6-1-.4 0-.4 1-.7.4z"/>
<path d="M82.5 65c1-.2 1.3.6 2.1.8.3.5 1.3 1.3 1.2 1.3-.8-.4-1.3-1.3-2.2-1.5-.2-.5-1.3 0-1.1-.6z"/>
<path d="M83.8 63.2c.7.1.6 1 1.3 1.3.2.4 1.3 1.9.8 1.4-.6-.5-.7-1.3-1.3-1.5l-.8-1.2z"/>
<path d="M84.3 65c-.2-1.3.7-.3 0 0z"/>
<path d="M84 66.6c-.4-1 0-1.7 0 0z"/>
<path d="M86.1 62.8c.1.4-.7 1.3-.5.8.2-.3 0-1 .5-.8z"/>
<path d="M84.7 67.6c.5.6.2 2.2.1.6 0-.2-.7-.4-.1-.6z"/>
<path d="M95.5 81c-.3.4-1.6.5-1.6-.1 0 .2 1.2.3 1.6.1z"/>
<path d="M94.8 80c-.7.3-2.3-.5-.8-.4.2.2.6 0 .8.4z"/>
<path d="M93.5 77.5c-.4.6-1.7-.6-.9-.2.2.3.9 0 .9.2z"/>
<path d="M93.9 78.5c-1 .3-1.2-.5 0-.1z"/>
<path d="M92 76c1-.4 1.7.9.6.2-.1-.2-.2-.3-.6-.2z"/>
<path d="M82.6 114.7c-.2-1.7.3-.3 0 0z"/>
<path d="M82.6 116.3c-.4-.6-.5-1.4 0-.4v.4z"/>
<path d="M84 112.2c0 1-.8 1.2-.3.1 0-.2.2 0 .3-.1z"/>
<path d="M83.4 117.1c.5 0 .7 1.6.6 1.3 0-.4-.7-.9-.6-1.3z"/>
<path d="M93.6 84.9c.8-.9 2.1-.7 2.9-1.5.2-.5 1.9-1 .8-.8-.1-.6 1.4-1.3 1-1-1.2.1-.5-.7.2-.9.3-.4 2.7-.5 1.1-.3-.7 0-1.4.8-1.9.9 1.5-.1.3.5-.1 1.1.4-.1-.2.9-.9 1.1-.6.8-2 .7-2.8 1.5-.2.2-.2.1-.3-.1z"/>
<path d="M79 90.9c-.3-.8 0-1.9 1.1-1.8.4-.3 1.5-.6 1.7-.7-.7.4-1.4.8-2.2.9-.5.4-.4 1-.6 1.6z"/>
<path d="M76.8 89.1c.6-.7 1.1-.6 1.8-1 .4 0 2.6-.4 1.6-.1-.8.1-1.8.1-2.2.6-.6-.3-.9 1-1.2.5z"/>
<path d="M76.2 87c1-.4 1 0 2-.2 1.2 0 2.1.3.3.2l-2.1.1h-.2z"/>
<path d="M78 87.8c-.9-.5-.4-1.2-.1-.1z"/>
<path d="M79 89c-.5 0-1.5-.7-.6-.5.4 0 .3.4.6.5z"/>
<path d="M77.3 85c.7.6.4 1.4-.1.2 0 0-.1-.3.1-.2z"/>
<path d="M80.1 89c.7-.4 2 1.2.9.5-.2-.4-1.3 0-.9-.5z"/>
<path d="M111.8 130.6c.4-.4 1 .2 1 .4a3 3 0 00-1-.4z"/>
<path d="M86.8 116.2c.6-.4 2.3.6 1.6.7-.4-.4-1.2-.4-1.6-.7z"/>
<path d="M109.7 99.3c2.1 2.8 2.5 9 1 12.7 1.2-3.7 1-9.4-1-12.7z"/>
<path d="M94.5 113.7c.4.2.4.8.2 1.5 0-.5 0-1.1-.2-1.5z"/>
<path d="M95 111.7c.9.4 1 1.8.5 2.6.1-1 .3-2-.5-2.6z"/>
<path d="M96.2 109.7c1.2.5 1.4 2.6 1 3.7.2-1 .2-3-1-3.7z"/>
<path d="M97 107.5c1.2 1 1.6 2.3 1.6 3.8a6.9 6.9 0 00-1.6-3.8z"/>
<path d="M98.9 88.3c.2.6.3 1.5-.5 1.6-.3.2.8-.8.4-1.5 0 0 0-.4.1-.1z"/>
<path d="M96.2 89.8c.1-.3 1-1.1 1-.9-.4.2-.6.8-1 .9z"/>
<path d="M94.2 89c.4.8-1.6.8-.5.6.2 0 .3-.5.5-.6z"/>
<path d="M95.8 89c0 1-1.2 1 0 .2V89z"/>
<path d="M92 89.6c-.3-.9 1.7-1 .4-.4 0 .4-.5 0-.4.4z"/>
<path d="M100 88c.8.4-.1 1.8.2.4-.1 0 0-.4-.2-.4z"/>
<path d="M101 86.9c.8.1.1 2.3.2.7l-.2-.7z"/>
<path d="M101.6 86.3c1-.4.7 2 .5.8 0-.3 0-.9-.5-.8z"/>
<path d="M109.8 85c.6-1.6.5-4.3-1.6-4.7-2-.3.1-1-2.7-.8-.3 0 1.6-.5 1.9.1.2.6.6.2 1.8.8 1.4 1 1.2 3.5.6 4.6z"/>
<path d="M99.5 83.8c-1.2 0-1-.8-.2 0h.2z"/>
<path d="M97.7 80c.3.6-1.5 2.3-.7 1.1.2-.4.7-.6.7-1.1z"/>
<path d="M99.2 78.4c.2.6-.8 1-.7.6.3-.1.7-.6.7-.6z"/>
<path d="M100.6 77.8c-.1 1-1 1-.1.1l.1-.1z"/>
<path d="M102 77.4c.8.4-.8 1.2-.4.6.4-.1.5-.1.4-.6z"/>
<path d="M103.3 77.2c-.6-.2.3-2 .1-.8-.2.3 0 .5-.1.8z"/>
<path d="M104.5 76c.3.9-.9 1 0 0z"/>
<path d="M95.5 80.3c.2-.8 1-.6.1-.2-.2.2-.3-.2-.1.2z"/>
<path d="M87.4 90.2c1-.5 1.6.1.1 0z"/>
<path d="M102.7 104.4c.2-1.2 1.3-2.1 1.1-3.4.5 1.1-.7 2-.8 3.1-.3-.1.1.5-.3.3z"/>
<path d="M101.8 63.6c-1 .1-.8-1.2-.4-1.5.7-.6 2-.6 2.5.3.9 1.2-.3-.3-.7-.4-1.5-.7-2.8 1-1.4 1.6z"/>
<path d="M102.3 69.8c.5.6.6 1.3.8 2l-.8-2z"/>
<path d="M104.2 71.9c-.2-1.5-1.8-2.5-1.9-4.1.6 1.5 1.8 2.7 1.9 4.1z"/>
<path d="M101.5 65.6c.1 1.3 1.1 2.3 1.8 3a10 10 0 01-1.8-3z"/>
<path d="M103.1 67.5a3.4 3.4 0 01-1.5-2.3c.2.7 1.3 2.2 1.5 2.3z"/>
<path d="M102.8 66c-.6.2-1-1-1-1 .3.5.7 1 1 1z"/>
<path d="M101.9 64.6l.4.4c-.3-.1-.4-.3-.4-.4z"/>
<path d="M106.7 67.8c-.7-.3-2.1.3-2.6-.5 1.2.6 2.1 0 2.6.5z"/>
<path d="M104.4 64c.7.5 1.6-.5 1.5.1l-.8.1c-.5.1-.5 0-.7-.2z"/>
<path d="M98.6 64.4c.3-.5 1.8-.7.6-.3-.1.3-.4 0-.6.3z"/>
<path d="M95.8 65.8c.6-.8.7 1 .8.1.7-.6.5-.5 0 .2-.5.2.1-.4-.8-.3z"/>
<path d="M102.9 64.2c.5-1.5-1-.3 0 0z"/>
<path d="M103.7 64.5c-.4.3-.7.3-1 .2l1-.2z"/>
<path d="M116.8 71c-.6-.1-1-1-.2-.2l.2.2z"/>
<path d="M115.7 68.1c-.7-.1-.6-.7 0 0z"/>
<path d="M99.3 72.6c0 .7-.7.5 0 0z"/>
<path d="M104.1 63.9c-.4.2-.4.2-.5-.1h.5z"/>
<path d="M102.1 63.9c.2.1-.7.4-1.4.3.5 0 1.2-.2 1.4-.3z"/>
<path d="M109.4 130.6c.5.7-.6 2-.6 1.8.3-.6.6-1.2.6-1.8z"/>
<path d="M102 63.7c0-.8 1.3-.9 1.8-.5-.9 0-1.3 0-1.8.5z"/>
<path d="M110.2 62.9c1-1.9 3.7-1 1.7 1.4-.1 0 .9-1 .5-1.7-.4-1.2-1.6-.2-2.2.3z"/>
<path d="M111.1 63.6c0-1-.2-1.5.2-.3 0 .2-.1.3-.2.3z"/>
<path d="M112 63.4c-.2-.6-.6-.8 0-1.4-.4.6.4.7 0 1.4z"/>
<path d="M99.2 72.4c.7-.2 1.2-.6 1.6-1.2-.6.6-1 .8-1.6 1.2z"/>
<path d="M109.7 128.8c.5-.1.6.6.4.6 0-.2-.2-.4-.4-.6z"/>
<path d="M110.6 128.2c.3.4.4 1 .4 1-.3-.3-.4-.8-.4-1z"/>
<path d="M111 127.7c.6.2.6 1.2.4 1.2 0-.4-.2-.8-.4-1.2z"/>
<path d="M112 128.2c-.3-.5-.2-.9-.1-1l.1 1z"/>
<path d="M96.8 65.9c-.4.6-.8 0 0 0z"/>
<path d="M112.5 64.9c.3-.7 1.5-1.4 1.1-.9l-1.1.9z"/>
<path d="M110 61.8c-.2-.6.9-1.2.7-.7 0 .3-.5.4-.7.7z"/>
<path d="M100 76.6c.1-.9 1-.8 0 0z"/>
<path d="M105.2 137.4c-.3-.8 0-1.8 1-1.9.5-.2 1.8-1 1.5-.5-.6.2-1.5.6-2.1 1-.4.3-.1 1.2-.4 1.4z"/>
<path d="M103 135.8c.5-.7 1-.8 1.8-1.2l1.5-.3c-.4.4-1.8.1-2.1.9-.6-.3-.9 1-1.2.6z"/>
<path d="M102.2 133.7c.6-.4 1.2 0 1.8-.2.8 0 2.7 0 .9.1-1-.1-1.5.3-2.5.2 0 .3-.1 0-.2-.1z"/>
<path d="M105 135.5c-.3 0-1-.3-.9-.4.4 0 .6.2.9.4z"/>
<path d="M103 131.7c.3 0 .5.7.5.8-.2-.5-.6-.7-.5-.8z"/>
<path d="M106.2 135.5c.8-.4 2 1 .8.4-.2-.2-.7 0-.8-.4z"/>
<path d="M81.3 117.8c.4-1 1.6-1 2.5-.6.8.2 1.8.7.5.4-.8-.3-2-1-2.5-.1 0 .3-.2.5-.5.3z"/>
<path d="M80.9 115c1 0 1.3.1 2.1.4.3.2 2 1.3 1.2.9-.8-.5-1.7-.8-2.5-1-.2-.3-.7.1-.8-.3z"/>
<path d="M81.8 113c.6.3 1 .8 1.6 1.2.3.3 1.6 1.7.7 1-.4-.7-1.2-1.1-1.6-1.4 0-.6-.8-.2-.7-.8z"/>
<path d="M95.3 82.7c-.5.5-1.3 0-.1.1z"/>
<path d="M104 134.4l-.7-.7c.7.1.8.7.7.7z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -1,116 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://www.wappenwiki.org/images/b/bb/Barberini.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bee" stroke-width="0.5475">
<path d="M108.43 117.73a6.53 6.53 0 0 1-1.83 5.58c.17 1.73-1.14 3.97-2.61 4.89.06 1.88-1.67 4-3.96 4a4.05 4.05 0 0 1-3.95-4c-1.49-.92-2.78-3.16-2.6-4.89a6.53 6.53 0 0 1-1.84-5.58c.2-1.53-1.16-2.96-1.4-4.49-.6-3.92-.73-8 .43-11.78s3.73-7.3 7.38-8.85 8.35-.83 10.84 2.23c1.34 1.62 1.98 3.75 2.15 5.83s-.04 4.2-.28 6.28l-.77 6.7"/>
<g>
<path stroke="none" d="M98.8 75.02c-.53 0-1.4-.48-1.77-.8l-.03-.03a10.3 10.3 0 0 1-2.34-5.14c-.28-1.17-.57-2.4-1.18-3.53-.75-1.53-2.35-3.13-3.31-4.12-.72-.74-.85-.87-.83-1.07v-.09l.06-.06c.05-.05.14-.11.27-.11.68 0 3.9 2.03 5.43 4.92.65 1.16.9 2.3 1.14 3.4.35 1.58.68 3.06 2.14 4.64.99 1.12 1.01 1.5.9 1.73-.04.11-.17.26-.48.26z"/>
<path stroke="none" fill="#000" d="M89.67 60.35a11.17 11.17 0 0 1 5.19 4.8c1.55 2.76.76 5.32 3.33 8.08 1.03 1.18 1 1.55.6 1.55s-1.22-.41-1.59-.74c-2.5-2.67-1.93-5.74-3.5-8.63-1.12-2.3-4.12-4.77-4.1-5.01.02-.05.04-.05.07-.05m0-.55a.66.66 0 0 0-.49.2l-.1.13-.03.18c-.04.33.13.5.9 1.29.94.96 2.52 2.54 3.24 4.03v.04c.62 1.12.88 2.26 1.16 3.46a10.64 10.64 0 0 0 2.41 5.28l.02.02.03.02c.39.38 1.33.9 1.95.9.48 0 .67-.3.74-.44.2-.45-.07-1.02-.94-2.01-1.43-1.51-1.73-2.98-2.08-4.51a11.6 11.6 0 0 0-1.18-3.46c-1.5-2.94-4.78-5.13-5.63-5.13z"/>
</g>
<path class="tertiary" d="M106.14 110.2s-2.54.85-6.14.85-6.13-.85-6.13-.85l-1.7 6.98s3.08.86 7.86.86c4.77 0 7.86-.86 7.86-.86z"/>
<path class="tertiary" d="M93.87 102.88s2.54.86 6.13.86 6.14-.86 6.14-.86c-4.91-15.02-8.65-8.8-12.27 0z"/>
<path d="M88.73 118.36c-.57 1.84-.4 3.55-.82 5.33a9 9 0 0 1-2.56 4.8c-1.31-.12-2.45-1-2.6-1.85.9-.68 1.99-1.77 2.54-3.92.54-2.12.2-3.55.83-5.34.61.06 2.45.15 2.6.98z"/>
<g>
<path stroke="none" d="M80.07 139.87c-.08 0-.24-.04-.35-.22-.59-.8-.78-4.88-.2-6.94a17.74 17.74 0 0 1 3.47-6.2l.06-.06.1-.03a2.34 2.34 0 0 1 2.18.6 1.49 1.49 0 0 1 .46 1.05v.1l-.09.1a14.85 14.85 0 0 0-3.72 5.47c-.53 1.29-.77 2.78-.99 3.96-.26 1.45-.39 2.17-.92 2.17z"/>
<path stroke="none" fill="#000" d="M83.67 126.64c.96 0 1.84.68 1.81 1.43a15.07 15.07 0 0 0-3.78 5.58c-1.06 2.6-1.03 5.94-1.6 5.94-.57-.03-.97-4.54-.31-6.82a17.45 17.45 0 0 1 3.4-6.08l.48-.05m0-.54c-.22 0-.42.02-.62.06l-.17.04-.11.14a17.85 17.85 0 0 0-3.5 6.28c-.62 2.17-.4 6.3.24 7.18.2.27.43.33.56.33H80.1c.74 0 .87-.85 1.14-2.38.2-1.16.43-2.63.96-3.9a14.73 14.73 0 0 1 3.66-5.37l.17-.15v-.24c0-.44-.17-.88-.52-1.25a2.63 2.63 0 0 0-1.84-.74z"/>
</g>
<path class="secondary" d="M102.1 93.44c0 1.75-2.14.22-3.34 1.5a11.65 11.65 0 0 0-2.92 6.78c-.06.72.07 1.45.16 2.17.3 2.28.37 4.58.17 6.88a11.9 11.9 0 0 1-1.23 4.84 5.47 5.47 0 0 1-3.85 2.9c-.2 2.04-1.97 3.88-3.37 5.37s-3.18 2.57-5.08 3.33c-2.15.86-5.72 2.9-8.5 1.3-2-2.48-1.18-5.24-.15-7.76 2.1-5.14 3.79-9.9 6.7-14.63 1.49-2.4 3.61-5.56 5.32-7.84 3-4.03 5.12-7.64 8.12-11.67l7.98 6.83z"/>
<g>
<path stroke="none" d="M79.05 96.1c-.9-.7-1.38-1.91-1.06-2.68l.07-.15.17-.02a8.92 8.92 0 0 0 4.1-1.23c1.6-1.03 1.7-1.1 2.93-2.04l.18-.13.24.18c.55.41 1.67 1.27 1.36 2.03l-.02.07-.05.04a14.15 14.15 0 0 1-3.15 2.24 13.7 13.7 0 0 1-4.51 1.73l-.11.02-.15-.07z"/>
<path stroke="none" fill="#000" d="M85.42 90.2c.37.29 1.57 1.16 1.33 1.77a14.96 14.96 0 0 1-3.1 2.22c-1.45.79-3.05 1.53-4.43 1.7-.83-.63-1.23-1.7-.96-2.34a8.9 8.9 0 0 0 4.2-1.27c1.64-1.07 1.75-1.16 2.96-2.08m0-.7-.33.26c-1.2.92-1.31 1.01-2.91 2.02-1.56.98-3.18 1.11-3.97 1.18l-.33.02-.13.3c-.37.9.11 2.22 1.14 3l.18.14.22-.02c1.22-.15 2.69-.7 4.62-1.78a13.98 13.98 0 0 0 3.2-2.27l.1-.09.05-.13c.4-.99-.86-1.9-1.45-2.37l-.06-.04-.33-.22z"/>
</g>
<g>
<path stroke="none" d="M73.94 100.54a.44.44 0 0 1-.22-.07c-.15-.09-.24-.24-.26-.48a5.78 5.78 0 0 1 1.53-3.88c1.34-1.38 2.28-2.3 3.4-2.65l.06-.02.07.02a1.97 1.97 0 0 1 1.3 1.1 1.31 1.31 0 0 1 0 1.14l-.05.09-.11.04a10.23 10.23 0 0 0-5 4.05c-.26.4-.43.66-.72.66z"/>
<path stroke="none" fill="#000" d="M78.45 93.7c.92.22 1.45 1.23 1.12 1.82a10.64 10.64 0 0 0-3.37 2.08c-1.6 1.34-1.9 2.63-2.26 2.63l-.09-.02c-.39-.22.03-2.58 1.34-3.94 1.3-1.34 2.23-2.24 3.26-2.56m-.02-.57-.15.04c-1.16.37-2.15 1.31-3.5 2.72-.68.7-1.1 1.57-1.3 2.19a4.51 4.51 0 0 0-.3 1.92c.04.33.17.55.39.68.11.07.24.09.35.09.44 0 .68-.35.96-.81a10.03 10.03 0 0 1 4.82-3.92l.2-.07.1-.17c.23-.4.23-.9.03-1.38a2.26 2.26 0 0 0-1.47-1.25l-.13-.04z"/>
</g>
<g>
<path stroke="none" d="m85.62 82.08-.16-.03-.06-.02-.05-.04-.44-.35c-.87-.7-1.38-1.1-2.3-2.21a14.9 14.9 0 0 1-2.56-4.25l-.04-.11.04-.11c.46-.9 1.36-1.56 2.17-1.56l.26.03.16.04.04.15c.2.75.7 2.52 2 3.92 1 1.08 1.26 1.3 1.85 1.82l.66.57.16.13-.14.26c-.39.88-.92 1.76-1.6 1.76z"/>
<path stroke="none" fill="#000" d="m82.22 73.71.22.02c.24.86.74 2.63 2.06 4.03 1.31 1.4 1.38 1.4 2.52 2.41-.2.42-.8 1.64-1.4 1.64h-.1c-1.2-.96-1.66-1.24-2.69-2.54a14.02 14.02 0 0 1-2.51-4.16c.41-.85 1.27-1.4 1.9-1.4m0-.55c-.9 0-1.9.73-2.4 1.69l-.12.2.07.22a14.45 14.45 0 0 0 2.63 4.33 11.7 11.7 0 0 0 2.34 2.26l.44.35.1.09.14.02.2.02c.8 0 1.37-.9 1.86-1.88l.04-.07.2-.37-.3-.29-.67-.57c-.57-.5-.83-.74-1.84-1.8-1.27-1.35-1.73-3.06-1.92-3.78l-.09-.33-.33-.07-.35-.02z"/>
</g>
<g>
<path stroke="none" d="m80.95 75.7-.35-.04-.1-.04-.05-.11a8.41 8.41 0 0 0-2.87-3.5c-.88-.73-1.9-1.23-2.65-1.6-.94-.47-1.45-.73-1.3-1.17.12-.28.49-.33.77-.33 1.03 0 3.33.55 4.6 1.4a11.15 11.15 0 0 1 3.5 3.51l.05.07v.08c-.04.92-.79 1.73-1.6 1.73z"/>
<path stroke="none" fill="#000" d="M74.42 69.18c1.01 0 3.25.54 4.45 1.33a10.42 10.42 0 0 1 3.42 3.44c-.05.83-.73 1.47-1.34 1.47a1.1 1.1 0 0 1-.26-.05 9.07 9.07 0 0 0-2.94-3.6c-1.73-1.43-4-2.02-3.85-2.46.04-.09.24-.13.52-.13m0-.55c-.21 0-.85 0-1.02.5-.25.66.45 1.01 1.42 1.5.74.36 1.75.87 2.58 1.55a8.4 8.4 0 0 1 2.78 3.41l.11.22.22.07c.13.04.29.06.42.06.94 0 1.82-.92 1.88-1.99v-.17l-.09-.16a11.23 11.23 0 0 0-3.59-3.59 10.73 10.73 0 0 0-4.7-1.4z"/>
</g>
<g>
<path stroke="none" d="M91.73 85.67a6.42 6.42 0 0 0-3.88-2.24 6.85 6.85 0 0 1-2.9-1.27c-.12-.13-.25-.35-.08-.76.26-.68 1.47-1.95 2.06-1.95.15 0 .28.06.35.17.46.77 1.03 1.1 1.6 1.38l.63.29c1.03.44 2.43 1.03 4.19 3.17l.2.27-2.04 1.13-.13-.2z"/>
<path stroke="none" fill="#000" d="M86.93 79.71c.06 0 .1.02.13.07a3.9 3.9 0 0 0 1.69 1.49c1.07.54 2.62.83 4.73 3.37l-1.56.87c-2.32-2.82-4.7-1.81-6.79-3.57-.43-.43 1.27-2.23 1.8-2.23m0-.55c-.75 0-2.02 1.34-2.32 2.13-.24.59 0 .92.15 1.05h.04c.97.8 2 1.07 2.98 1.33 1.3.33 2.52.66 3.73 2.15l.28.35.4-.22 1.55-.87.57-.33-.42-.5A9.81 9.81 0 0 0 89.6 81a3.98 3.98 0 0 1-.61-.28 3.2 3.2 0 0 1-1.47-1.27v-.05a.88.88 0 0 0-.6-.24z"/>
</g>
<g>
<path stroke="none" d="M86.5 92.8c-.75 0-1.74-1.7-1.85-2.36-.09-.46.15-.59.26-.63h.05c1.16-.22 2-.77 2.87-1.34 1.22-.79 2.47-1.62 4.66-1.62h.3l-.23 2.28-.2.04c-2.34.42-3.04 1.14-3.94 2.06-.44.46-.94.96-1.69 1.49-.04.07-.13.09-.24.09z"/>
<path stroke="none" fill="#000" d="m92.54 87.14-.18 1.77c-3.61.63-3.5 2.04-5.72 3.6l-.13.03c-.63 0-1.95-2.3-1.46-2.45 2.84-.57 3.78-2.95 7.49-2.95m.59-.55h-.62c-2.27 0-3.63.87-4.81 1.66-.86.55-1.67 1.1-2.79 1.3h-.04l-.04.02c-.29.08-.55.39-.46.92.13.74 1.16 2.58 2.1 2.58a.9.9 0 0 0 .42-.1h.04a11.3 11.3 0 0 0 1.7-1.54c.88-.92 1.54-1.58 3.8-1.97l.41-.07.05-.42.17-1.77.07-.61z"/>
</g>
<g stroke="none" fill="#000">
<polygon points="100.2882,80.0176 100.0035,86.0401 99.7407,80.0176"/>
<path d="m93.46 96-.77 2.24-.81 2.23-.83 2.21-.86 2.22v-.18l.7 2.41.05.18-.13.1-2.52 2.09-2.54 2.08.06-.1-2.84 6.16-1.45 3.07-1.47 3.06-.08-.04 1.3-3.13 1.34-3.11 2.72-6.22.02-.04.05-.05 2.51-2.1 2.55-2.08-.1.28-.7-2.4-.02-.1.05-.08a92.16 92.16 0 0 1 1.82-4.38l.94-2.17 1-2.15z"/>
<path d="M84.08 116.77a38.4 38.4 0 0 1 2.65-2.02l1.36-.96 1.38-.92-.04.04.94-.92.94-.9.96-.87.99-.86.06.07-.85 1-.88.97-.9.94-.9.94-.01.03-.03.02-1.38.92-1.4.9c-.94.54-1.88 1.11-2.89 1.62z"/>
<path d="M87.98 120.95a30.99 30.99 0 0 1 1.03-5.91c.17-.64.35-1.3.6-1.91l.08.02a29.17 29.17 0 0 1-.57 3.94c-.15.66-.29 1.3-.46 1.93-.24.68-.42 1.32-.68 1.93z"/>
<path d="M94.22 110.46a8.23 8.23 0 0 1-1.97-1.42 7.86 7.86 0 0 1-.85-.86 6.26 6.26 0 0 1-.77-.94l.07-.07c.37.2.7.44 1 .68a15.7 15.7 0 0 1 1.78 1.64c.26.29.52.6.74.97z"/>
<path d="m94.84 100.14-3.6 1.14h-.04l-2.23.07-2.24.04.2-.1-1.3 2.23-1.3 2.2-1.32 2.22-.66 1.1c-.22.37-.4.76-.59 1.13l-2.39 4.56-1.22 2.28c-.42.74-.81 1.5-1.25 2.25l-.07-.04 1.1-2.34 1.12-2.33 2.27-4.64.6-1.16.65-1.12 1.34-2.2 1.33-2.22 1.36-2.19.07-.11h.13l2.23.02 2.24.05h-.05l3.62-.84z"/>
<path d="M79.72 113.66a20.67 20.67 0 0 1 1.89 3.61c.15.42.28.85.4 1.31l-.1.05c-.28-.37-.5-.77-.72-1.16-.22-.4-.41-.81-.59-1.23l-.5-1.27c-.18-.42-.31-.85-.38-1.31z"/>
<path d="M89.25 105.38a15.4 15.4 0 0 1-3.92 1.34c-.46.08-.9.17-1.38.2l-.02-.1c.41-.22.83-.4 1.27-.57.44-.15.88-.3 1.31-.41s.88-.24 1.34-.33c.48-.04.92-.13 1.4-.13z"/>
</g>
<path d="M111.3 118.36c.57 1.84.4 3.55.81 5.33a9 9 0 0 0 2.57 4.8c1.31-.12 2.45-1 2.6-1.85a6.7 6.7 0 0 1-2.54-3.92c-.55-2.12-.2-3.55-.83-5.34-.6.06-2.45.15-2.6.98z"/>
<g>
<path stroke="none" d="M119.93 139.87c-.5 0-.63-.72-.87-2.17a15.09 15.09 0 0 0-4.71-9.44l-.09-.08v-.11c0-.38.15-.75.46-1.06a2.37 2.37 0 0 1 2.19-.59l.09.03.06.06a17.74 17.74 0 0 1 3.46 6.2c.6 2.06.38 6.13-.2 6.94-.15.18-.28.22-.39.22z"/>
<path stroke="none" fill="#000" d="M116.36 126.64c.16 0 .33.02.48.07 1.32 1.53 2.74 3.83 3.4 6.09s.26 6.79-.3 6.8c-.58 0-.56-3.32-1.6-5.93a15.33 15.33 0 0 0-3.8-5.58c-.02-.77.86-1.45 1.82-1.45m0-.54a2.63 2.63 0 0 0-1.84.74 1.66 1.66 0 0 0-.52 1.25v.24l.17.15a15.01 15.01 0 0 1 3.66 5.37 19.47 19.47 0 0 1 .96 3.9c.27 1.53.42 2.38 1.14 2.38h.02c.14 0 .38-.04.57-.33.64-.87.88-5.01.24-7.18a17.67 17.67 0 0 0-3.5-6.28l-.1-.14-.18-.04c-.2-.04-.4-.06-.62-.06z"/>
</g>
<path class="secondary" d="M97.92 93.44c0 1.75 2.15.22 3.35 1.5a11.65 11.65 0 0 1 2.92 6.78c.06.72-.07 1.45-.16 2.17a31.38 31.38 0 0 0-.17 6.88 11.9 11.9 0 0 0 1.22 4.84 5.47 5.47 0 0 0 3.86 2.9c.2 2.04 1.97 3.88 3.37 5.37s3.18 2.57 5.08 3.33c2.15.86 5.72 2.9 8.5 1.3 2-2.48 1.18-5.24.15-7.76-2.1-5.14-3.79-9.9-6.7-14.63-1.49-2.4-3.61-5.56-5.32-7.84-3-4.03-5.13-7.64-8.13-11.67l-7.97 6.83z"/>
<g>
<path stroke="none" d="M101.23 75.02c-.3 0-.44-.17-.48-.26-.11-.24-.09-.63.9-1.73 1.46-1.58 1.8-3.06 2.14-4.64.24-1.1.5-2.24 1.16-3.4 1.54-2.86 4.73-4.92 5.41-4.92.13 0 .22.06.27.1l.06.07v.09c.02.2-.09.33-.83 1.07a17.39 17.39 0 0 0-3.29 4.1c-.63 1.16-.92 2.36-1.2 3.55-.42 1.73-.83 3.52-2.34 5.14l-.03.02a3.4 3.4 0 0 1-1.77.81z"/>
<path stroke="none" fill="#000" d="m110.36 60.35.07.02c.02.24-2.98 2.72-4.1 5.02-1.57 2.89-1 5.96-3.5 8.63a3.33 3.33 0 0 1-1.6.74c-.4 0-.42-.37.61-1.55 2.57-2.76 1.78-5.32 3.33-8.08 1.53-2.85 4.69-4.78 5.2-4.78m0-.55c-.86 0-4.15 2.2-5.66 5.08-.68 1.2-.92 2.35-1.18 3.46-.35 1.54-.66 3-2.08 4.52-.88.98-1.14 1.55-.94 2.01.06.13.24.44.74.44.64 0 1.56-.53 1.95-.9l.02-.02.02-.02c1.58-1.69 2-3.5 2.41-5.28.29-1.2.55-2.34 1.16-3.46v-.04c.73-1.47 2.3-3.07 3.25-4.03.78-.8.94-.97.9-1.3l-.03-.17-.09-.09a.66.66 0 0 0-.48-.2z"/>
</g>
<path class="tertiary" d="M93.65 77.04c0-2.15.9-3.42 2.35-4.18 2.03-1.1 4-.92 4-.92s2.02-.18 4.05.92c1.45.78 2.35 2.05 2.35 4.18 0 6.07-11.08 4.66-6.35 4.66 4.7.03-6.4 1.4-6.4-4.66z"/>
<path d="M108.13 75.5c-.42-1.68-1.71-2.67-3.29-2.27-.92.24-1.66 1.9-1.29 3.44.42 1.68 1.25 3.08 2.83 2.7 1.57-.4 2.16-2.18 1.75-3.86z"/>
<path d="M93.63 79.34c1.58.4 2.39-1 2.83-2.7.37-1.53-.38-3.2-1.3-3.43-1.57-.4-2.84.59-3.28 2.27-.42 1.71.2 3.49 1.75 3.86z"/>
<g>
<path stroke="none" d="M120.79 96.14c-1.19-.16-2.63-.7-4.51-1.73a14.9 14.9 0 0 1-3.16-2.24l-.04-.04-.02-.07c-.33-.79.8-1.64 1.35-2.03l.22-.18.18.13c1.22.94 1.33 1 2.93 2.04 1.6 1.03 3.29 1.16 4.1 1.23l.17.02.07.15c.33.77-.13 1.97-1.05 2.67l-.09.07-.15-.02z"/>
<path stroke="none" fill="#000" d="M114.61 90.2a33.07 33.07 0 0 0 2.96 2.06 8.98 8.98 0 0 0 4.2 1.27c.26.63-.13 1.7-.96 2.34a13.25 13.25 0 0 1-4.43-1.7 14.2 14.2 0 0 1-3.1-2.22c-.25-.61.96-1.46 1.33-1.75m0-.7-.33.26-.06.05c-.6.46-1.84 1.38-1.45 2.36l.04.13.11.1c1.19 1 1.71 1.44 3.2 2.27a13.73 13.73 0 0 0 4.62 1.77l.22.02.18-.13c1-.79 1.5-2.1 1.14-3l-.14-.3-.32-.03c-.8-.06-2.41-.2-3.97-1.18-1.6-1.03-1.7-1.1-2.91-2.01l-.33-.31z"/>
</g>
<g>
<path stroke="none" d="M126.09 100.54c-.29 0-.46-.26-.73-.68a10.23 10.23 0 0 0-4.99-4.05l-.1-.05-.05-.08a1.31 1.31 0 0 1 0-1.14 2.01 2.01 0 0 1 1.29-1.1l.07-.02.06.02c1.1.35 2.06 1.3 3.4 2.65a5.78 5.78 0 0 1 1.53 3.88c-.05.24-.13.4-.26.48a.28.28 0 0 1-.22.09z"/>
<path stroke="none" fill="#000" d="M121.57 93.7c1.03.33 1.98 1.23 3.29 2.59 1.31 1.36 1.73 3.7 1.34 3.94l-.1.02c-.34 0-.65-1.29-2.25-2.62a10.4 10.4 0 0 0-3.37-2.09c-.35-.6.2-1.62 1.1-1.83m.02-.57-.16.04c-.65.15-1.2.63-1.46 1.25a1.53 1.53 0 0 0 .02 1.38l.1.17.2.07a10.04 10.04 0 0 1 4.82 3.92c.29.46.53.8.97.8.13 0 .24-.03.35-.08.22-.13.35-.35.4-.68.12-.9-.43-2.89-1.6-4.11a9.77 9.77 0 0 0-3.51-2.74l-.13-.02z"/>
</g>
<g>
<path stroke="none" d="M114.41 82.08c-.65 0-1.18-.88-1.62-1.73l-.13-.27.15-.13.66-.57c.6-.5.86-.74 1.86-1.82a8.94 8.94 0 0 0 2-3.92l.04-.15.15-.04.27-.02c.78 0 1.7.65 2.16 1.55l.05.11-.05.11a15.4 15.4 0 0 1-2.56 4.25c-.92 1.14-1.4 1.5-2.3 2.21l-.44.35-.04.04-.06.03h-.14z"/>
<path stroke="none" fill="#000" d="M117.8 73.71c.67 0 1.5.57 1.94 1.4a14.29 14.29 0 0 1-2.52 4.16c-1.05 1.27-1.51 1.58-2.7 2.54h-.08c-.62 0-1.2-1.22-1.4-1.64 1.13-1 1.2-1 2.51-2.4s1.82-3.18 2.06-4.04l.2-.02m0-.55-.33.05-.33.06-.09.33a8.98 8.98 0 0 1-1.92 3.79 18.24 18.24 0 0 1-1.84 1.8l-.66.56-.3.29.19.37.04.07c.49.96 1.06 1.88 1.87 1.88l.2-.02.12-.02.11-.09.44-.35c.9-.72 1.4-1.12 2.34-2.26a14.9 14.9 0 0 0 2.63-4.33l.07-.22-.11-.2c-.53-1-1.53-1.7-2.43-1.7z"/>
</g>
<g>
<path stroke="none" d="M119.08 75.7c-.81 0-1.56-.8-1.62-1.73v-.08l.04-.07a11.15 11.15 0 0 1 3.5-3.5 10.58 10.58 0 0 1 4.6-1.4c.29 0 .68.04.77.32.15.44-.35.7-1.3 1.16-.74.38-1.76.88-2.64 1.6a8.7 8.7 0 0 0-2.87 3.5l-.04.12-.11.04-.33.04z"/>
<path stroke="none" fill="#000" d="M125.6 69.18c.29 0 .49.04.5.13.16.44-2.12 1.03-3.85 2.45a8.72 8.72 0 0 0-2.93 3.61l-.26.05c-.62 0-1.3-.66-1.34-1.47a10.86 10.86 0 0 1 3.42-3.44 10.64 10.64 0 0 1 4.46-1.33m0-.55c-1.07 0-3.41.55-4.75 1.45a11.23 11.23 0 0 0-3.59 3.59l-.09.15V74c.07 1.05.94 1.99 1.89 1.99.15 0 .28-.02.41-.07l.22-.06.11-.22a8.4 8.4 0 0 1 2.78-3.42c.83-.7 1.86-1.2 2.59-1.55.96-.49 1.66-.84 1.42-1.5-.13-.54-.77-.54-.99-.54z"/>
</g>
<g>
<path stroke="none" d="m106.14 84.7.2-.26a9.8 9.8 0 0 1 4.18-3.17l.63-.29a3.43 3.43 0 0 0 1.58-1.38.44.44 0 0 1 .35-.2c.61 0 1.8 1.27 2.06 1.95.15.42.04.64-.1.77a6.66 6.66 0 0 1-2.88 1.3 6.42 6.42 0 0 0-3.88 2.23l-.15.17-2-1.12z"/>
<path stroke="none" fill="#000" d="M113.1 79.71c.55 0 2.26 1.82 1.8 2.23-2.08 1.73-4.47.73-6.8 3.57l-1.55-.87c2.1-2.56 3.64-2.85 4.73-3.4a3.63 3.63 0 0 0 1.69-1.49l.13-.04m0-.55c-.24 0-.46.11-.57.31v.04a3.2 3.2 0 0 1-1.47 1.27l-.61.29a10 10 0 0 0-4.3 3.24l-.4.5.56.33 1.56.88.39.22.28-.35a6.13 6.13 0 0 1 3.73-2.15c.98-.26 2.01-.52 2.98-1.34h.04c.15-.15.37-.48.15-1.05-.33-.85-1.6-2.19-2.34-2.19z"/>
</g>
<g>
<path stroke="none" d="M113.54 92.8a.52.52 0 0 1-.27-.06c-.76-.52-1.24-1.05-1.68-1.51-.88-.92-1.58-1.64-3.94-2.06l-.2-.04-.24-2.28h.3c2.2 0 3.47.81 4.67 1.62.88.57 1.7 1.12 2.87 1.34h.04c.11.04.35.17.27.63-.11.66-1.08 2.37-1.82 2.37z"/>
<path stroke="none" fill="#000" d="M107.52 87.14c3.67 0 4.64 2.4 7.48 2.93.49.17-.83 2.45-1.46 2.45-.05 0-.09 0-.13-.04-2.22-1.56-2.1-2.96-5.72-3.6l-.17-1.74m0-.55h-.62l.07.61.17 1.77.05.42.41.07c2.26.4 2.9 1.05 3.8 1.97.43.46.93.98 1.7 1.53h.04c.13.07.27.11.42.11.94 0 1.97-1.84 2.1-2.58.09-.55-.17-.84-.46-.92l-.04-.03H115.1c-1.11-.21-1.92-.74-2.78-1.29-1.2-.79-2.54-1.66-4.81-1.66z"/>
</g>
<path class="tertiary" d="M100.03 98.92c.32.3.9-.77 1.3-.8.32-.01.6.23.9.23.49 0 .49-.57.93-.37.15.06.28.21.44.24.43.06.65-.77.96-1.16.41-.5 1.27-.31 1.47-.99.1-.33 0-.77.2-1 .1-.14.26-.18.4-.27.71-.48 1.02-2.01 1.5-2.83l.3-.43c.1-.18.1-.4.11-.62.05-.92-.43-.85-.41-1.77.26-.2.72-1.66.63-2.01-.06-.22-.63-.77-.68-.99-.26-.99.1-1.64-.59-2.26.11-.76-.46-1.55-1.07-1.49-.1.03-.2.05-.3-.02-.27-.15-.12-.68-.31-.94-.2-.3-.62-.02-.92-.13-.29-.11-.44-.5-.64-.79s-1.1-.37-1.16 0c-.24-.44-1.12-.61-1.55-.61-1.45 0-1.51 1.11-1.51 1.11s-.38-1.11-1.52-1.11c-.43 0-1.31.17-1.55.61-.07-.37-.96-.28-1.16 0s-.35.7-.64.79c-.3.1-.7-.18-.92.13-.17.26-.04.79-.3.94-.09.05-.2.02-.3.02-.62-.06-1.2.73-1.08 1.5-.68.6-.33 1.24-.6 2.25-.06.22-.63.77-.67.99-.09.37.1 2.16.37 2.34.04.92-.18.52-.15 1.44 0 .22.02.42.1.62.07.17.2.28.31.43.48.82.8 2.33 1.5 2.83.12.09.3.13.4.26.2.27.1.68.2 1.01.22.68 1.06.48 1.47.99.33.39.97 1.22 1.4 1.16.16-.03.29-.18.44-.24.44-.2.46.37.92.37.3 0 .6-.24.9-.22.42.02.52.48.88.79z"/>
<g>
<path stroke="none" fill="#000" d="M100.29 81v1.25l-.02 1.25-.05 1.25c-.02.41-.04.83-.17 1.25h-.07a6.13 6.13 0 0 1-.17-1.25l-.05-1.25-.02-1.25V81h.55z"/>
</g>
<path class="tertiary" d="M103.99 128.2s-1.88.44-3.96.44c-2.1 0-3.95-.44-3.95-.44-1.49-.92-2.78-3.16-2.62-4.89 0 0 2.6.66 6.57.66s6.57-.66 6.57-.66c.17 1.73-1.14 3.97-2.61 4.89z"/>
<g stroke="none" fill="#000">
<path d="m106.6 96 .98 2.15a92.72 92.72 0 0 1 1.86 4.36l.9 2.19.04.09-.02.08-.7 2.41-.09-.28 2.54 2.08 2.52 2.1.05.05.02.04 2.71 6.22 1.34 3.1c.44 1.04.9 2.09 1.31 3.14l-.08.04-1.47-3.06-1.45-3.07-2.84-6.15.06.09-2.54-2.09-2.54-2.08-.13-.1.04-.18.7-2.4v.17l-.85-2.22-.83-2.2-.81-2.24-.72-2.24z"/>
<path d="M115.95 116.77c-.99-.53-1.95-1.1-2.9-1.67l-1.4-.9-1.38-.92-.02-.02-.02-.02-.9-.94-.9-.94-.87-.97-.86-1 .07-.07.99.85.96.88.94.9.94.92-.04-.05 1.38.92 1.36.97c.9.68 1.8 1.33 2.65 2.06z"/>
<path d="M112.05 120.95a21.35 21.35 0 0 1-1.07-3.83c-.14-.66-.27-1.3-.35-1.95a15 15 0 0 1-.22-2l.08-.02c.24.64.42 1.27.6 1.9.17.64.3 1.3.45 1.96l.36 1.97c.04.63.13 1.29.15 1.97z"/>
<path d="M105.8 110.44c.23-.35.49-.66.77-.97a17.17 17.17 0 0 1 1.78-1.64c.33-.24.65-.48 1-.68l.07.07c-.22.35-.48.65-.77.94-.26.3-.57.57-.85.85l-.94.77a5.26 5.26 0 0 1-1.05.66z"/>
<path d="m105.22 100.12 3.65.9h-.04l2.23-.04 2.24-.03h.13l.06.11 1.36 2.2 1.34 2.2 1.33 2.22.66 1.11.6 1.16 2.27 4.65 1.12 2.32 1.1 2.34-.07.05-1.25-2.26-1.23-2.28-2.39-4.55-.59-1.14-.65-1.1-1.32-2.2-1.31-2.22-1.3-2.23.2.1-2.23-.04-2.24-.06h-.04c-1.25-.44-2.45-.8-3.63-1.2z"/>
<path d="M120.33 113.66a12.77 12.77 0 0 1-1.47 3.8c-.22.4-.46.8-.72 1.17l-.1-.05c.1-.46.25-.87.4-1.31a15.15 15.15 0 0 1 1.89-3.61z"/>
<path d="M110.78 105.36a13.2 13.2 0 0 1 4.03.94c.44.15.85.33 1.27.57l-.02.08c-.46-.02-.92-.1-1.38-.2-.46-.08-.9-.21-1.34-.32l-1.31-.44c-.42-.2-.84-.4-1.25-.63z"/>
<path d="M104.38 85.47a.66.66 0 0 1 .29.4.9.9 0 0 1 0 .48 1 1 0 0 1-.24.41.66.66 0 0 1-.46.2l.08-.44.1-.35.1-.33.13-.37z"/>
<path d="M101.62 88.12c.14.11.22.22.29.33l.17.33.14.35c.02.13.06.26.06.44a.82.82 0 0 1-.41-.2.99.99 0 0 1-.36-.79.66.66 0 0 1 .11-.46z"/>
<path d="M105.22 91.2c.15.12.24.27.3.42.05.16.07.33.05.5-.03.18-.1.34-.18.49a.84.84 0 0 1-.4.33l-.02-.48.03-.4.06-.4.16-.45z"/>
<path d="M102.74 94.2a3.02 3.02 0 0 1 .26.82l.07.37.02.46a.8.8 0 0 1-.41-.28.88.88 0 0 1-.2-.44 1.19 1.19 0 0 1 0-.48.82.82 0 0 1 .26-.44z"/>
<path d="M103.18 83.65a.77.77 0 0 1-.04-.43c.02-.14.08-.27.17-.38s.18-.2.3-.28c.14-.07.27-.11.44-.11a.93.93 0 0 1-.13.4l-.17.3-.24.26-.33.24z"/>
<path d="M106.46 87.77c.1.13.14.26.18.37l.04.35-.06.35c-.05.11-.09.24-.2.38a.83.83 0 0 1-.28-.73c0-.13.04-.24.08-.37a.66.66 0 0 1 .24-.35z"/>
<path d="M99.83 91.52a.66.66 0 0 1 .44-.07c.13.02.26.09.37.2.1.08.2.22.24.35a.6.6 0 0 1 0 .43l-.35-.2-.26-.19-.22-.22-.22-.3z"/>
<path d="M97.4 90.62c.1-.18.17-.33.22-.48l.1-.44.12-.48c.04-.18.08-.35.17-.55a1.45 1.45 0 0 1 .24 1.16c-.04.2-.15.41-.3.57a.7.7 0 0 1-.55.22z"/>
<path d="M97.2 86.96c-.02-.18 0-.33.02-.48l.09-.4.13-.37c.07-.13.11-.26.22-.41.13.13.18.3.2.46a1.2 1.2 0 0 1-.24.92.8.8 0 0 1-.42.28z"/>
<path d="m95.01 84.31.29-.42.26-.32.28-.31.37-.35c.07.17.07.37.03.55-.05.17-.13.32-.24.46a1.53 1.53 0 0 1-.42.32c-.2.07-.37.11-.57.07z"/>
<path d="M93.67 87.55c.22.11.35.3.46.5.11.2.18.44.18.66.02.24-.02.46-.11.68s-.22.42-.42.55v-.64l-.02-.57-.04-.57-.05-.6z"/>
<path d="M94.81 92.06c.16.11.24.24.33.35a2.3 2.3 0 0 1 .3.81 1.75 1.75 0 0 1 0 .49c-.17-.1-.28-.2-.39-.31-.1-.13-.17-.26-.21-.4-.05-.15-.1-.28-.1-.46a.92.92 0 0 1 .07-.48z"/>
<path d="M97.24 94.06a1.53 1.53 0 0 1 .46.02l.4.08.37.14c.13.06.26.13.4.24-.14.1-.31.17-.47.2a1.2 1.2 0 0 1-.9-.27c-.08-.13-.19-.24-.26-.41z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 20 KiB

View file

@ -1,18 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/9/90/Algoursan.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bell" stroke-width=".34">
<path d="M101.43 70.02s.88-.98 1.77-.98c.96 0 1.65.52 1.65 1.59 0 1.25-1.2 1.8-1.2 3.08s3.34 2.76 3.34 2.76-.7-.74-.7-2.33c0-2.55 1.98-2.44 1.98-4.83 0-2.4-1.99-3.02-3.5-3.02-2.14 0-3.75 1.43-3.75 1.43l.41 2.3z"/>
<path d="M98.5 70.02s-.88-.98-1.79-.98c-.95 0-1.64.52-1.64 1.59 0 1.25 1.2 1.8 1.2 3.08s-3.35 2.76-3.35 2.76.71-.74.71-2.33c0-2.55-1.98-2.44-1.98-4.83 0-2.4 1.98-3.02 3.5-3.02 2.14 0 3.74 1.43 3.74 1.43l-.4 2.3z"/>
<path d="M100 62.87c.73 0 1.33.6 1.33 1.33 0 .73-.6 1.46-1.33 1.46s-1.33-.72-1.33-1.46a1.33 1.33 0 011.33-1.33m0-1.74a3.08 3.08 0 100 6.15 3.08 3.08 0 000-6.15h0z"/>
<path d="M102.22 66.9c0 5.14-1 10.04-2.21 10.04s-2.21-4.9-2.21-10.03a2.21 2.21 0 014.42 0z"/>
<path class="secondary" d="M100.65 134.24c0 .93 1.08 1.68 1.08 2.9 0 .94-.76 1.72-1.72 1.72h0c-.95 0-1.73-.77-1.73-1.73 0-1.2 1.09-1.96 1.09-2.89"/>
<path d="M100 133.54c10.01 0 30.42-1.18 30.42-7.8 0-3.5-4.48-8.58-8.19-16.05-2.08-4.21-3.93-12.55-4.62-18.43-1.14-9.85-6.2-17.6-17.6-17.6s-16.46 7.75-17.6 17.6c-.69 5.88-2.54 14.22-4.63 18.43-3.72 7.47-8.19 12.55-8.19 16.06 0 6.61 20.41 7.8 30.42 7.8z"/>
<path class="secondary" d="m 102,121 c -1,4 3,8 3.11,10.91 C 105,139 95,139 95,132 c 0,-3 4,-7 3,-11"/>
<path fill="none" d="M69.6 125.76c0-5.05 17.3-6.86 30.4-6.86s30.42 1.8 30.42 6.86"/>
<path fill="none" d="M116.57 86.16c-1.1-2.9-9.9-4.35-16.57-4.35s-15.47 1.44-16.56 4.35"/>
<path fill="none" d="M82.41 91.05c1.1-2.91 10.92-4.6 17.58-4.6s16.49 1.69 17.57 4.6"/>
<path fill="none" d="M128.08 119.86c-4.76-4.24-17.3-5.52-28.08-5.52h.03c-10.77 0-23.32 1.28-28.08 5.52"/>
<path fill="none" d="M123.69 112.74c-6.04-2.29-15.39-3.04-23.7-3.04h.04c-8.4 0-17.9.77-23.91 3.13"/>
<path fill="none" d="m 80,130 c -4,-1 -8,-2 -8,-4 0,-2 12,-5 28,-5 16,0 28,3 28,5 0,2 -4,3 -8,4"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="billet">
<polygon points="80 65 120 65 120 135 80 135"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 268 B

View file

@ -1,44 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/8/89/Vignerot.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="boarHeadErased" stroke-width="0.5775">
<path d="M120.49 70.68c-9.01-9.93-19.31-7.6-19.45-7.18-.14.41.92 1.24 1.96 4.82.42 1.44.97 4.97 1.5 6.89 2.57 8.9 7.23 10.5 7.23 10.5"/>
<path class="tertiary" d="M101 119.1c-4.7-2.38-7.38-3.7-17.38-3.44-3.02.07-6.05.53-9.08.37a14.2 14.2 0 0 1-8.47-2.87 9.98 9.98 0 0 1-3.45-7.02.58.58 0 0 1 1.02-.37 11.48 11.48 0 0 0 4.27 3.6c6.1 2.8 13.15 1.74 19.82 2.5 6.43.74 12.22 3.62 14.23 5.68"/>
<path d="M114.46 71.88c-3.86-.71-6.95.51-10.42.88-3.2.35-6.17 3.14-9.3 3.86a22.18 22.18 0 0 0-4.77 1.87c-2.63 1.32-2.65 3.37-3.28 4.78-2.95-1.04-5.08 2.24-6.33 1.25-2.68-.7-3.65 1.8-6.23 1.57-2.22-.2-3.6 1.92-5.96.55-1.9-.92-.9-3.85-3.68-3.76-2.56.09-2.44 5.06-2.26 6.93.35 3.86 1.09 6.23 2.08 7.62 1.69 2.31 3.47 3 5.15 3.63 3 1.1 5.66.88 8.18.23.95-.26.88.04 1.57.16 1.15.2 1.62.65 3.42.1 2.59-.77 7.39.25 10.19 2.44 2.17 1.92 1.98 1.23 4.18 2.5 2.42 1.43 3.55 6.46 2.9 9.33-.66 2.96-.7 1.8-3.6 1.45-2-.25-5.33.28-7.55.1-3.44-.3-3.6-1.25-5.1-1.25-2.25 0 .18 1.36-3.42 1.48-2.55.09-.56-.81-2.98-.74-1.85.07-5.6.55-5.9 1.38-.36.4.07 1.16.51 1.44.12.78 1.2 1.4 1.2 2.2a3.23 3.23 0 0 1-2.12 2.92 3.05 3.05 0 0 0 3.42-.37c.65-.6 1-1.43 1.52-2.12.9-1.16 2.36-.74 3.38-1.6-.17.42-.26.88-.26 1.35a4.39 4.39 0 0 1 1.85-.7c1.02-.11 2.17.12 3-.5 0 .39.23.6.26.99.25-.33.74-.35 1.15-.35 1.27 0 2.54-.32 3.7-.92.11.41.04.94-.26 1.24 1.27-.09 1.85-.64 4-.34 3.37.44 4.09 1.55 7.02 1.55.46.27 1.27 2.07 1.04 3.76-.16 1.25-.85 2.43-2.42 2.8a3.3 3.3 0 0 1-3.15-.74c-.13 1.1.72 2.8 2.3 3.55a5.08 5.08 0 0 0 5.65-1.31c-.76 1.66-.95 5.06.6 6.84 1.53 1.77 3.86 2.42 5.6 1.75-1.67-.4-2.92-2.61-2.43-4.6.57-2.4 2.56-1.96 3.67-3.55 0 0-.92 2.56 1.7 4.85.82.71 3.15 1.6 4.12 1.13-1.25-.74-1.82-2.06-1.66-3.65.14-1.39 1.5-1.3 1.85-3.26.23 1.5 1.96 3.56 4.1 3.37-1.03-.83-1.38-1.94-.7-3.76.5-1.32 2.1-.88 2.25-3.44.74 2.28 2.5 3.79 4.12 3.5-2.08-4.06 1.04-6.5.97-9.32a4.94 4.94 0 0 0 2.95 2.65c.33.1.93.19 1.04-.14-2.58-3.67.4-4.22.23-8.68.26.71.51 1.43 1.02 1.99.5.55 1.34.87 2.03.57-1.78-4.25 1.46-4.9-.44-8.84.9.9 2.8.8 3.68-.79 0 0-1.3-.35-1.9-1.04-2.08-2.4.19-3.12-1.8-6.68.88 1.55 3.03 2.52 4.6 1-3.17-.37-1.46-3.28-5-7.67a3.43 3.43 0 0 0 3.8.88c-2.75-1.11-1.97-3.54-3.75-5.6.77.15 1.28-.04 2-.34.08-.05.43-.28.45-.37.03-.1-.02-.16-.09-.18-1.3-.14-2.3-.95-3.79-3.6-1.52-2.76-3.16-4.95-5.75-5.88l-11.64-6.07z"/>
<path class="secondary" d="M76.14 101.4c-.16-.78 2-1.54 4.1-.74.4.14 1 .24 1.86.05.8-.16 2.6-.53 2.54-4.9.02-2.6-1.41-4.5-.88-4.62.74-.13 3.37 1.6 3.97 4.6.86 4.32-1.57 7.62-5.06 8.34-4.06.8-6.42-2.17-6.53-2.73z"/>
<g stroke="none" fill="#000">
<path d="M110.28 131.6a4.39 4.39 0 0 1 .35-1.07l.53-.92a5.45 5.45 0 0 0-.3 2.03zm5.98-.6c.12-.84.16-1.67.12-2.52.23.8.39 1.66.46 2.52zm5.73-3.98c-.05-.76.07-1.52.35-2.2-.07.72 0 1.44.23 2.09zm5.06-5.82c-.05-.53 0-1.04.02-1.52 0-.26.03-.51 0-.74-.02-.26-.02-.51-.18-.72.18.19.25.44.32.7l.14.73c.07.49.14 1 .25 1.46zm4.23-6.28a5.78 5.78 0 0 0 .27-1.09l.1-1.13a6.7 6.7 0 0 1 .2 2.33zm2.65-6.05a5.5 5.5 0 0 1-.55-1.18 3 3 0 0 1-.16-1.27c.07.41.23.8.44 1.15.2.35.46.67.74.95zm-1.82-21.19c.25.23.53.42.83.56.3.14.6.2.85.16v.58a1.9 1.9 0 0 1-1.03-.49 4.16 4.16 0 0 1-.65-.8zm1.38 5.94c0-.12-.06-.25-.18-.4-.1-.13-.23-.25-.37-.39l-.4-.44a.96.96 0 0 1-.2-.53c.05.19.18.33.32.44l.47.3c.16.1.32.19.48.33a1.39 1.39 0 0 1 .44.55zm.4 6.7a3 3 0 0 0-.3-.7l-.46-.64.66.46c.24.16.44.4.6.62zm-24.9 15.22a21.28 21.28 0 0 0 .3 2.54c.09.42.18.81.32 1.23.11.41.28.8.42 1.22a3.53 3.53 0 0 1-.86-1.06c-.2-.4-.37-.83-.46-1.27-.1-.44-.12-.9-.1-1.37.08-.43.2-.9.38-1.29zm-5.04 13.28-.14-.9-.18-.83-.26-.8-.3-.86c.3.14.53.37.72.64a2.77 2.77 0 0 1 .46 1.85 1.82 1.82 0 0 1-.3.9zm8.55-20.1c.14.51.23 1 .3 1.5l.09.77c.02.25.02.5.07.72a2.31 2.31 0 0 0 .6 1.17c.32.35.72.67 1.08 1.04a4.59 4.59 0 0 1-1.38-.69 2.77 2.77 0 0 1-.56-.6 2.02 2.02 0 0 1-.3-.8c-.04-.29-.04-.54-.04-.8l.02-.76c-.02-.53.02-1.04.12-1.54zm5.66-12.6a7.28 7.28 0 0 0 .34 2.88 9.52 9.52 0 0 0 1.32 2.61c-.46-.23-.86-.6-1.18-1.01a4.5 4.5 0 0 1-.9-2.98c.05-.54.16-1.04.42-1.5zm-3.98 30.83c-.04.44-.14.86-.2 1.25l-.24 1.2a6.8 6.8 0 0 0 0 2.4 2.47 2.47 0 0 1-.57-1.17 3.6 3.6 0 0 1 0-1.32 5.54 5.54 0 0 1 1.01-2.36zm3.88-5.45c.35.42.6.88.81 1.36a8.39 8.39 0 0 1 .65 3.12c0 .53-.05 1.06-.2 1.57l-.26-1.54-.28-1.5c-.12-.51-.2-1-.35-1.48l-.37-1.53zm4.88-7.74c.07.58.07 1.16.11 1.71.03.56.1 1.11.19 1.64.2 1.06.64 2.06 1.5 2.84a2.9 2.9 0 0 1-1.39-1.08 4.3 4.3 0 0 1-.69-1.64 6.4 6.4 0 0 1-.07-1.76c.07-.6.19-1.15.35-1.7zm3.23-10.07.16 2.61.17 1.27c.06.42.16.83.32 1.23.14.39.3.78.5 1.13.21.37.5.7.7 1.13.2.42.3.9.3 1.34 0 .46-.05.9-.14 1.32a5.32 5.32 0 0 0-.58-2.45c-.2-.35-.5-.67-.76-1.04a6.68 6.68 0 0 1-1-3.88c.03-.93.15-1.8.33-2.66zm3-2.29c.12.33.37.54.6.74.26.21.51.47.72.77.4.57.63 1.27.74 1.94.12.67.12 1.34.2 1.96.05.3.15.6.29.9a2.31 2.31 0 0 0 .6.74 1.62 1.62 0 0 1-.86-.58c-.23-.28-.37-.6-.48-.95-.21-.67-.23-1.33-.33-1.96a6.8 6.8 0 0 0-.55-1.8 5.4 5.4 0 0 0-.53-.8c-.19-.29-.4-.61-.4-.96zm-.04-8.38.67 1.32c.23.41.5.8.78 1.2a22.8 22.8 0 0 0 2 2.14 4.85 4.85 0 0 1-2.46-1.77 5.98 5.98 0 0 1-.74-1.37 4.39 4.39 0 0 1-.25-1.52zm.23-6.26.32.55.3.49.3.46.35.53c-.23.02-.46-.07-.67-.18a1.39 1.39 0 0 1-.48-.49c-.12-.2-.21-.41-.24-.65-.02-.25 0-.48.12-.71zm-2.52 5.43c-.02.3.07.53.16.76l.35.72a4.53 4.53 0 0 1 .4 1.64c-.24-.21-.4-.44-.54-.67l-.4-.74c-.1-.26-.2-.53-.25-.84-.04-.3.03-.66.28-.87zm-3.12 1.43a2.31 2.31 0 0 0-.83 1.48 5.31 5.31 0 0 0 .05 1.7c.04.26.16.45.34.63.19.16.44.3.67.42.49.2 1.07.25 1.6.14h.02c.14-.03.28.04.3.18v.05a1.99 1.99 0 0 1-.8 1.52 1.73 1.73 0 0 1-1.6.25c.53.03 1.04-.18 1.39-.5a1.7 1.7 0 0 0 .5-1.27l.33.23a3.1 3.1 0 0 1-1.94-.1c-.3-.11-.58-.3-.84-.53a2 2 0 0 1-.32-.41c-.1-.16-.14-.35-.14-.51l-.02-.46v-.46c.02-.3.07-.63.16-.93a1.96 1.96 0 0 1 1.13-1.43zm-1.66 16.93a11.78 11.78 0 0 0 .8-6.35 4.85 4.85 0 0 1 .56 1.6 6.05 6.05 0 0 1-.41 3.37c-.23.5-.53.99-.95 1.38zm-3.19-7.3c.21.33.35.67.44 1.02l.26 1.08c.06.37.09.77.06 1.14-.02.39-.06.76-.2 1.13l-.56-.19c.1-.32.16-.64.19-.99a7.8 7.8 0 0 0-.14-2.1 4.23 4.23 0 0 1-.1-1.09zm-9 18.69c-.08.6-.26 1.18-.51 1.73a8 8 0 0 1-2.2 2.8 5.54 5.54 0 0 1-1.5.9l-.02-.05 1.27-1.15a8.25 8.25 0 0 0 2.4-4.28z"/>
<path d="M113.14 125.8h-.04a4.71 4.71 0 0 1-3.86-3.84l.67-.11a4.16 4.16 0 0 0 2.43 3.02c-.44-.94-.3-2.12.06-3 .24-.55.81-1.3 1.41-2.06.67-.85 1.41-1.84 1.6-2.42.25-.83.27-1.34.3-1.69.02-.39.04-.71.32-1.13.07-.1.16-.14.26-.14.11 0 .2.05.27.12.53.64 1.3 1.01 2.17 1.04.77.02 1.5-.23 2.08-.7l-.32-.13c-.58-.26-1.18-.51-1.69-1a4.27 4.27 0 0 1-1.22-3c.04-.79.4-1.46.71-2.1.21-.42.42-.79.54-1.2l.64.2c-.14.47-.37.88-.57 1.3-.33.62-.63 1.2-.65 1.82-.05.81.4 1.87 1.01 2.47.42.42.93.63 1.48.86l.81.37c.1.04.16.14.19.25a.3.3 0 0 1-.1.28 3.83 3.83 0 0 1-2.93 1.22 3.6 3.6 0 0 1-2.3-.9l-.03.37c-.03.4-.05.93-.33 1.85-.2.72-.97 1.71-1.68 2.66a12.52 12.52 0 0 0-1.32 1.91c-.41.93-.46 2.3.35 3.08.11.09.14.25.07.39a.35.35 0 0 1-.33.2z"/>
</g>
<g>
<path d="M111.43 73.61c3.15-8.94 14.1-13.7 14.44-13.42.35.28-.2 1.55.72 5.18.37 1.45 1.7 4.76 2.24 6.7 2.29 8.96-.81 12.47-.81 12.47"/>
<g stroke="none" fill="#000">
<path d="M126.31 86a4.89 4.89 0 0 0 1.46-1.64l.46.3A4.92 4.92 0 0 1 126.3 86zm-3.79 3.14c.4.07.76 0 1.13-.12.37-.11.72-.25 1.07-.41l.18.53c-.4.09-.78.14-1.2.16-.4.02-.8-.02-1.18-.16zm-9.03-1.92a6.08 6.08 0 0 1-1.39-2.93c-.2-1.09-.23-2.2-.16-3.28.16-2.2.72-4.35 1.41-6.4a16.29 16.29 0 0 1 5.78-7.83c.9-.63 1.84-1.18 2.86-1.55a15.18 15.18 0 0 0-4.99 4.04 17.32 17.32 0 0 0-3.12 5.55 36.43 36.43 0 0 0-1.48 6.26 12.45 12.45 0 0 0 0 3.2 6.07 6.07 0 0 0 1.09 2.94zm6.26-13.28c.1.46.18.92.23 1.38l.05.7.02.71c0 .95-.16 1.9-.4 2.82-.15.46-.27.9-.48 1.34l-.14.32-.16.33-.16.32-.18.3a7.16 7.16 0 0 1-1.94 2.06 11.71 11.71 0 0 0 2.54-4.8c.11-.45.23-.88.3-1.32l.11-.67.1-.67.04-.35.02-.35.05-.69c-.02-.5-.05-.97 0-1.43zm5.01-7.6.9 2.12a60.98 60.98 0 0 1 1 3.33c.09.37.18.74.23 1.13l.18 1.16.05.27.02.3.05.58c.07.76.04 1.55.02 2.33l-.11 1.16c-.05.4-.14.76-.21 1.15l-.3 1.14-.19.55-.09.28-.11.28c-.3.71-.7 1.38-1.23 1.96.42-.65.72-1.34.95-2.06l.09-.27.07-.28.14-.56.2-1.1c.24-1.48.26-3 .14-4.5l-.04-.56-.02-.28-.05-.28-.16-1.13-.19-1.1-.2-1.12-.56-2.21c-.16-.81-.37-1.53-.58-2.3z"/>
<path d="M117.4 93.46a11.9 11.9 0 0 0 4.29-1.41 6.84 6.84 0 0 0 2.43-2.27l.25-.48.18-.49c.03-.09.1-.16.19-.18.4-.14.76-.4 1.1-.7a7.48 7.48 0 0 0 1.65-2.14 2.1 2.1 0 0 0 .23-1.2l.55-.12a2.5 2.5 0 0 1-.27 1.55 6.47 6.47 0 0 1-1.8 2.33 4.16 4.16 0 0 1-1.32.79l.18-.19-.23.6-.3.54a7.92 7.92 0 0 1-2.65 2.35 9.4 9.4 0 0 1-4.5 1.11zm-7.35-10.19c-.19-.8-.21-1.64-.19-2.47.03-.83.07-1.64.17-2.47a21.64 21.64 0 0 1 1.15-4.83l.53.18c-.25.77-.5 1.53-.7 2.34l-.27 1.18c-.07.39-.16.78-.2 1.2-.15.8-.21 1.61-.28 2.42l-.14 2.45z"/>
</g>
</g>
<g>
<g>
<g stroke="none" fill="#000">
<path d="M89.21 82.76a3.44 3.44 0 0 1-.11-1.61l.07-.21.06-.21.24-.37c.18-.23.43-.4.69-.53a4.5 4.5 0 0 1 1.64-.32c.55 0 1.08.04 1.62.11 1.06.16 2.08.4 3.11.67l1.53.4c.5.13 1.02.25 1.55.32-.53.04-1.07 0-1.6-.05l-1.57-.23-1.55-.28-1.54-.25c-.51-.07-1.02-.14-1.53-.14-.5-.02-1.01.02-1.45.18a1.57 1.57 0 0 0-.97.95c-.21.51-.21 1.04-.19 1.57zm-6.33 4.18a3.83 3.83 0 0 0-1.1-1.34 3.43 3.43 0 0 0-.72-.46c-.26-.14-.53-.23-.79-.34l.23-.54c.28.17.56.3.79.51a4.46 4.46 0 0 1 1.6 2.17zm-5.61 2.38c-.1-.39-.23-.76-.44-1.1-.1-.2-.2-.33-.32-.5l-.42-.4a4.34 4.34 0 0 0-2.03-.98l.11-.57a4.78 4.78 0 0 1 2.1 1.31c.14.14.26.33.38.49.09.18.2.34.27.53.21.44.28.83.35 1.22zM64.06 91.8c.23-.5.27-.99.3-1.5a11.2 11.2 0 0 0-.14-2.26 2.12 2.12 0 0 0-.26-.67c-.07-.1-.13-.19-.2-.2-.03 0-.07-.03-.1 0l-.11.08c-.14.19-.19.47-.23.72-.05-.25-.1-.55.04-.83.03-.07.1-.14.16-.21.07-.05.19-.1.3-.07.21.05.33.16.44.26a3.46 3.46 0 0 1 .65 1.57l.07.83c0 .27 0 .55-.05.83-.04.28-.13.55-.27.8-.17.28-.35.54-.6.65z"/>
<path d="M63.46 84.77c.23-.2.55-.28.87-.23a1.57 1.57 0 0 1 1.04.6l.14.19.12.2.11.21c.14.28.21.58.28.86.14.57.18 1.15.2 1.73l.08 1.7c.02 1.14.07 2.27.2 3.38.14 1.11.4 2.22.86 3.26a9.7 9.7 0 0 1-1.16-3.21c-.2-1.13-.3-2.27-.39-3.4-.1-1.13-.11-2.26-.34-3.32-.07-.26-.14-.51-.26-.74l-.1-.17-.08-.16-.23-.27c-.3-.4-.74-.6-1.34-.63Z"/>
</g>
<path fill="#F6F6F6" stroke-width="0.513" d="M94.22 89.16c.72.65 6.15.07 6.75-3 .2-1.18-.7-1.67-1.92-1.69-.83.02-4.1.3-5.91.93a4.24 4.24 0 0 0 1.08 3.76z"/>
<g stroke="none" fill="#000">
<path d="M97.02 95.77c.12-.07.18-.12.25-.12l.19.03.14.13.04.28c-.11.07-.18.12-.25.12l-.19-.03-.13-.14c-.05-.06-.07-.13-.05-.27zm1.36-.49c.1-.09.21-.11.3-.14l.23.05.17.16c.04.07.06.16.06.3-.11.07-.23.07-.3.1a.46.46 0 0 1-.2-.05.31.31 0 0 1-.17-.14l-.09-.28zm1.32-.8a.55.55 0 0 1 .4-.14.76.76 0 0 1 .57.32c.07.1.11.2.14.37-.16.04-.28.02-.4.02l-.27-.1-.23-.18-.21-.3zm1.45-.65a.7.7 0 0 1 .42-.12.7.7 0 0 1 .37.1c.12.04.2.13.3.23s.16.23.16.39H102l-.33-.1-.27-.18c-.07-.1-.17-.18-.24-.32zm4.88-1.2c.1-.1.2-.12.3-.14l.23.04.16.17c.05.06.07.16.07.3-.11.06-.23.06-.3.09a.46.46 0 0 1-.2-.05.31.31 0 0 1-.17-.14l-.1-.27zm-1.71.07a.55.55 0 0 1 .4-.14.76.76 0 0 1 .57.32c.07.1.11.2.14.37-.16.05-.28.02-.4.02l-.27-.09-.23-.18-.21-.3zm-1.78.46a.7.7 0 0 1 .42-.12.7.7 0 0 1 .37.1c.11.04.2.13.3.23s.16.23.16.39h-.42l-.32-.1-.28-.18-.23-.32zm-18.18 24.4a2.54 2.54 0 0 1-1.06 1.2c-.46.3-1.02.45-1.55.52s-1.09.05-1.6-.02c-.25-.02-.5-.12-.76-.16-.25-.07-.5-.16-.73-.28l.78-.02h.76c.51 0 1-.05 1.48-.1a4.39 4.39 0 0 0 2.68-1.15zM95.45 84.8c.55-.03.1.57.14 1.7.02.9.55 1.85.16 1.88-.42.02-1.34-.33-1.53-1.07-.06-.23-.09-.6-.11-.85-.05-1.13.8-1.64 1.34-1.66zm6.35 25.43a4.39 4.39 0 0 0-.28-.83l-.39-.79a8.6 8.6 0 0 0-1-1.4c-.36-.47-.75-.86-1.17-1.3l-.65-.63-.64-.62a8.73 8.73 0 0 1 1.57.9c.48.37.94.79 1.34 1.27.39.49.71 1.02.94 1.6a4.02 4.02 0 0 1 .28 1.8zM88.01 90.29c-.18-.44-.3-.92-.37-1.38-.07-.47-.1-.95-.07-1.44.02-.48.1-.97.26-1.43.16-.46.39-.9.74-1.24-.14.46-.24.9-.3 1.33-.07.44-.1.9-.12 1.37-.05.92-.05 1.85-.14 2.8zm1.48-3.8-.12.85c-.02.27-.02.55.03.83a8.78 8.78 0 0 1-.19 3.5 4.39 4.39 0 0 1-.37.84 1.69 1.69 0 0 1-.62.65c.16-.23.25-.51.32-.79l.19-.8.2-1.67c.07-.55.05-1.1.07-1.7.03-.31.07-.61.17-.89.06-.3.18-.57.32-.83zm4.78 2.93-.48.09-.49.14-.97.39c.28-.23.55-.44.86-.62l.46-.28.5-.23z"/>
</g>
</g>
<g stroke="none" fill="#000">
<path d="M90.57 82.62a1.34 1.34 0 0 0-.3.93c0 .32.1.64.21.94a1.55 1.55 0 0 0 .53.72c.23.16.53.2.86.19.62-.03 1.27-.26 1.9-.47a12.47 12.47 0 0 1 .99-.3l.5-.11.51-.1a22.3 22.3 0 0 1 4.11-.34 11 11 0 0 1 4.05.74c-1.34-.3-2.68-.35-4.05-.3a34 34 0 0 0-4.02.46l-.5.1-.49.08-.97.28c-.65.21-1.34.42-2.08.42a1.85 1.85 0 0 1-1.08-.33 1.7 1.7 0 0 1-.63-.94 2.77 2.77 0 0 1-.09-1.07c.12-.34.28-.69.55-.9z"/>
</g>
<g>
<path class="secondary" d="M83.48 116.33c-.04-1.09-4.66-5.18-7.85-16.8-2.06-8.82-1.83-18.4-.86-22.82.14-.65.44-2.63-1.61-.18-4.05 4.73-3.4 17-1.64 26.2 1.75 8.77 6.16 14.38 6.16 14.38 0 .05.81.88 2.5.79 3.23-.19 3.3-1.39 3.3-1.57z"/>
<g stroke="none" fill="#000">
<path d="M80.48 113.95a15.94 15.94 0 0 1-2.29-2.98 34.7 34.7 0 0 1-1.75-3.3 49.9 49.9 0 0 1-3.9-14.44c-.14-1.25-.21-2.5-.21-3.75.02-1.24.11-2.51.41-3.71a18.2 18.2 0 0 0-.23 3.71 40.33 40.33 0 0 0 .92 7.4 63.62 63.62 0 0 0 1.94 7.18 49.25 49.25 0 0 0 2.98 6.84 18.48 18.48 0 0 0 2.13 3.05z"/>
</g>
</g>
</g>
<g stroke="none" fill="#000">
<path d="m79.1 120.5.41-.06.42.04c-.24.12-.4.3-.51.49zm9.56.26v-.44c0-.14.02-.3.07-.41a2.93 2.93 0 0 0 .46.64zm-4.95-.11c.35-.05.7-.12.97-.37-.06.18-.16.34-.3.5l-.43.42zm15.94 2.17c.83-.21 1.64 0 2.27-.23a1.64 1.64 0 0 0 .78-.6l.07-.12.1-.14.22-.23c.14-.14.28-.25.35-.37.1-.16.19-.3.23-.46l.1-.53.09-1.13.02-1.16c.02-.4.07-.78.23-1.13-.16.76.02 1.5.02 2.29l-.02 1.17-.07.6c-.04.24-.14.42-.25.58-.12.21-.28.35-.42.49l-.18.18-.07.1-.1.13a2.31 2.31 0 0 1-.99.81c-.41.16-.85.16-1.22.16-.4 0-.74.03-1.09.12z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

View file

@ -1,26 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="boarRampant" stroke-width=".38">
<path class="secondary" d="M128.56 135.64s.32 2.68 0 3.24c-.73 1.23-2.39 1.32-3.4 1.22-.32-.03-1.18.05-.74-.86 0 0-1.34.14-2.01.01.37-.9 2.39-3.93 3-4.99.3-.4.66-.68 1.23-.74.57-.07 1.23.12 1.68.93.33.63.24 1.19.24 1.19zm-8.64-2.47s.3 2.66-.07 3.19c-.85 1.15-3.06 1.11-4.07.9-.13-.04-.47-.23-.05-.94 0 0-1.35.16-2-.02.46-.88 2.46-3.8 3.19-4.8.32-.37.72-.62 1.28-.62.57 0 1.2.24 1.58 1.08.28.66.14 1.21.14 1.21zm-49.14-26.02s-1.12 2.26-1.6 2.72c-1.09.93-3.14.07-4.07-.34-.25-.1-.14-.63.11-.89h0s-1.07-.67-1.65-1c.63-.74 3.75-1.98 4.67-2.79.4-.29.84-.44 1.4-.31.56.12 1.12.5 1.3 1.42.1.69-.16 1.2-.16 1.2z"/>
<path d="M116.46 105.88c0 .14-1.58 6.25 1.21 8.59 3.21 2.84 4.77 2.4 5.36 4.6.24 1.22.4 1.89-.18 3.34-.92 2.3-1.67 2.29-2.37 2.93a5.46 5.46 0 00-1.7 2.64c-.53 1.46-1.78 2.33-1.98 3.58 2.14-.2 3.16 1.64 3.16 1.64s.64-.15.7-.43c.1-.73-.68-.82-.54-1.31.08-.23 0-.47.5-.61.77-.19 1.02.5 1.7.2.4-.17.36-.15.5-.45.2-.63-.94-.76 0-2.7.2-.47 1.74-1.22 2.32-2.5.57-1.23.66-2.68 1.09-3.08.59-.53 1-.87 1.44-1.49.97-1.61.59-2.1.97-2.41 1.08-.23 1.73-1.07 1.49-2.27-.5-.95-2.25-1.4-3-2.4"/>
<path class="secondary" d="M67.03 96.77s-1.76 1.82-2.36 2.08c-1.33.56-3-.88-3.78-1.56-.2-.18.06-.65.38-.81h0s-.8-.98-1.28-1.47c.84-.52 4.18-.74 5.3-1.24a1.68 1.68 0 012.24 1.87c-.1.72-.5 1.13-.5 1.13z"/>
<path d="M86.23 99.89c-.77-.5-.82-1.13-.82-1.13-.43-.19-.54.13-.85-.02-1.25-.58-1.6-1.44-2.1-1.74-.47-.3-4.2-2.16-5.15-3.6-.73-.18-.92-.69-1.46-.71l-1.15-.08c-1.14.82-1.77 1.11-2.19 1.43-1.75 1.22-1.14 2.16-1.7 2.53-.3.15-.24.15-.66.05-.7-.2-.5-.89-1.2-1.23-.48-.21-.7-.16-.87 0-.38.35.25.82-.23 1.4-.19.23-.8.03-.8.03s.06-2.11-1.88-3.03c.82-.98 2.77-.5 3.94-1.52 1.18-1 2.2-1.96 3.14-2.07.94-.13 2.06-1.42 3.87-.47 1.63.75 2.99.27 4 .68.67.3 2.66-.1 4.5 1.24m3.25-25.68c-3.07-4.53-7.36-4.18-7.45-4.02-.08.15.3.56.52 2.06.09.6.1 2.06.2 2.87.53 3.74 2.31 4.66 2.31 4.66"/>
<path class="tertiary" d="M77.21 84.4c-1.75-1.22-2.77-1.9-6.82-2.38-1.23-.14-2.48-.14-3.69-.37a5.76 5.76 0 01-3.26-1.64 4.05 4.05 0 01-.98-3.05c.02-.22.31-.29.43-.09.36.65.82 1.26 1.51 1.71 2.3 1.48 5.22 1.45 7.86 2.15 2.55.67 4.72 2.17 5.42 3.1"/>
<path d="M118.18 108.84a10.24 10.24 0 00-4.41-.31c-1.04.15-1.18-.22-.38-.83.67-.47 2.43-1.07 2.43-1.07m17.42-11.81c-1.37-1.05-1.27-1.25-2-2.83-.54-1.2-1.95-2.06-1.95-2.06.8-.1 1.6.28 1.52 0-1.65-2.03-2.3-2.43-2.72-2.69-.18-.11-.2-.15-.18-.15.74-.28 1.61-.11 1.47-.35-2.1-1.58-3.22-1.76-3.69-1.93-.2-.08-.3-.22-.29-.23.8-.1 1.57.3 1.48.02-1.65-2.03-3.36-2.25-3.79-2.5-.19-.11-.2-.15-.19-.15.75-.28 1.62-.11 1.48-.35-2.1-1.58-3.22-1.76-3.69-1.94-.2-.07-.17-.1-.16-.11.76-.23 1.59.03 1.46-.23-1.98-1.7-3.67-1.93-4.14-2.1-.2-.08-.2-.17-.19-.17.76-.23 1.6.04 1.47-.22-1.97-1.71-3.42-1.92-3.87-2.13-.2-.1-.21-.13-.2-.14.72-.35 1.6-.27 1.43-.5-2.24-1.36-3.36-1.47-3.86-1.57-.21-.05-.19-.08-.17-.09.72-.35 1.57-.23 1.4-.45-2.23-1.38-3.88-1.38-4.37-1.48-.22-.05-.24-.08-.23-.08.63-.5 1.58-.63 1.36-.82-2.46-.9-3.86-.76-4.35-.76-.22 0-.36.05-.36.03.6-.53 1.45-.63 1.24-.81-2.51-.73-3.9-.3-4.4-.27-.22.02-.26 0-.25 0 .46-.67 1.26-1.02 1.01-1.13-2.61-.12-3.66.34-4.13.49-.21.06-.2.02-.2.01.45-.65 1.26-.96 1.01-1.08-2.62-.12-4.06.68-4.54.83-.21.06-.25.05-.24.04.32-.74 1.08-1.32.8-1.4-2.59.41-3.74 1.23-4.18 1.47-.19.1-.23.1-.23.1.15-.8.85-1.28.57-1.28-2.44.94-3.33 1.76-3.71 2.1-.17.13-.2.13-.2.13.1-.53-.65.24-1.95.79-.24 4.48.23 9.05 2 13.17a9.9 9.9 0 002.5 3.75c1.25 1.05 2.84 1.54 4.4 1.97 6.03 1.66 12.38 2.7 17.73 5.94a44.3 44.3 0 015.76 4.4"/>
<path d="M138.88 99a9.66 9.66 0 00-5.64-4.18c-.14-.04-.28-.09-.43-.12-4.1-1.05-3.93-1.66-8.3-5.1-3.53-2.76-6.22-4.9-9.22-8.04-5.12-5.2-10.51-7.54-15.62-9.06a63.18 63.18 0 00-9.93-2.08l-.19-.27.36-.74-1.97-1.42-.53-.72-.1.28-1.75-1.26-.19-.17c-1.51-.5-2.84-.19-4.26-.24-1.3-.04-2.67.92-3.97 1.02a9.6 9.6 0 00-2.04.48c-1.14.38-1.26 1.22-1.6 1.75-1.13-.6-2.18.62-2.63.14-1.04-.43-1.58.52-2.62.28-.88-.22-1.56.56-2.43-.12-.72-.48-.14-1.6-1.27-1.73-1.05-.11-1.27 1.9-1.31 2.67-.08 1.58.08 2.59.4 3.2a4.02 4.02 0 001.87 1.76 5.4 5.4 0 003.3.57c.4-.05.35.08.63.16.46.16.62.36 1.38.24 1.09-.16 2.97.53 3.98 1.58.76.9.73.6 1.54 1.25.9.72 1.06 2.82.63 3.94-.44 1.15-.39.69-1.54.38-.8-.21-2.17-.19-3.06-.4-1.37-.32-1.39-.72-2-.8-.9-.14 0 .55-1.46.4-1.03-.12-.18-.37-1.16-.47-.76-.08-2.29-.1-2.45.22-.17.14-.04.47.13.61 0 .33.4.63.35.96-.08.52-.52.96-1.04 1.06.4.3 1 .33 1.4.04.3-.2.49-.52.75-.77.43-.42 1-.16 1.45-.45-.09.16-.15.34-.17.53.24-.12.51-.18.78-.17.42.01.87.18 1.24-.02-.03.16.06.26.04.41.1-.12.31-.09.48-.07.51.06 1.04.01 1.54-.15a.56.56 0 01-.18.49c.52.04.78-.15 1.64.09 1.34.38 1.56.86 2.76 1.03 1.59.99 1.93 2.66 4.13 2.93 1.25 2.18.68 6.17 3.67 6.77-.01.02 1.56 4.45 5.84 6.16.92.36 3.03 1.23 4 1.44 1.54.32 3.11.46 4.68.4 1.45-.05 2.74-.21 4.17.22.98.29 2 .35 2.98.6.84.2 1.55.53 2.47.5 1.81-.04 3.3.32 4.88 1.27 1.15.7 2.96 2.39 4.43 2.55-.03.13.24 2.04 1 3.35 2.87 4.67 10.45 5.79 11.26 7.93.35 1.2.7 3.11.26 4.61-.7 2.4-1.22 2.43-1.87 3.12a5.49 5.49 0 00-1.44 2.8c-.38 1.49-1.53 2.48-1.61 3.75 2.1-.4 3.3 1.32 3.3 1.32s.62-.2.64-.5c.03-.75-.75-.75-.65-1.25.05-.23-.06-.47.43-.66.75-.25 1.08.38 1.72.04.38-.22.33-.18.44-.5.14-.65-1-.66-.26-2.68.15-.51 1.39-1.37 1.84-2.7.44-1.28.4-2.74.78-3.17.55-.59.93-.97 1.3-1.63.8-1.69.38-2.14.73-2.5 1.06-.33 1.61-1.23 1.26-2.4-.2-1.06-4.26-1.05-4.9-2.38-1.72-3.88 2.89-8.38 3.02-11.6.12-3.21-.43-4.97-1.17-5.95 1.08.29 2.08.74 3.21 2.18.61.78 1.42 3 1.09 4.88-.08.4-.23.8-.5 1.19-.5.1-1.82 1.16-1.95 1.87-.24.39-.25.93-.14 1.08-.48 1.1-.04 2.1.1 2.18-.4.7.3 1.8.43 1.8.25-.74 1.05-.8 1.28-1.17.21.1 1.07-.25 1.47-.91.56-.34.62-.65.88-1.19a4.1 4.1 0 00-.18-3.2c.15-.25.56-1.69.58-2.62 0-1.63-.26-3.34-1.19-4.93z"/>
<path d="M90.23 101.25c-.9 0-1.35-.49-1.35-.49-.46.08-.38.4-.73.44-1.36.2-2.13-.34-2.7-.34s-4.71.46-6.28-.23c-.72.24-.8.2-1.31.4-.51.18-.81.15-1.02.06-.83 1.14-1.54 1.39-1.83 1.82-1.3 1.7-.43 2.4-.84 2.92-.26.24-.2.22-.63.25-.74.02-.74-.7-1.52-.8-.53-.05-.54.03-.67.23-.25.45.48.7.21 1.4-.1.27-.77.27-.77.27s-.58-2.02-2.7-2.31c.5-1.18 2.31-1.3 3.12-2.62.8-1.31 1.31-1.86 2.14-2.34.82-.48.78-1.56 2.83-1.75 1.76-.25 2.65-1.4 3.72-1.6.7-.1 2.17-1.52 4.45-1.37"/>
<path fill="#F6F6F6" d="M68.18 75.84c-.01-.33.9-.5 1.7-.07.16.08.4.15.75.13.33-.01 1.09-.06 1.31-1.83.16-1.05-.31-1.91-.09-1.92.3-.02 1.28.83 1.34 2.08.1 1.8-1.07 3-2.52 3.07-1.68.1-2.48-1.24-2.5-1.46z"/>
<path d="M84.05 66.64c1.78-3.44 6.48-4.72 6.6-4.59.13.13-.17.62-.01 2.14.06.6.42 2.02.52 2.83.4 3.75-1.05 4.99-1.05 4.99"/>
<path fill="#F6F6F6" d="M76.2 71.93c.25.3 2.48.38 2.9-.82.14-.47-.2-.7-.69-.8a12 12 0 00-2.44.04 1.7 1.7 0 00.23 1.58zM70.29 82.3c.05-.45-1.6-2.37-2.21-7.25-.33-3.67.31-7.54.96-9.27.1-.25.33-1.04-.65-.16-1.9 1.68-2.35 6.67-2.16 10.48a15.1 15.1 0 001.67 6.18c-.01.02.27.4.96.45 1.33.1 1.43-.36 1.43-.44z"/>
<g fill="#000" stroke="none">
<path d="M124.23 139.19l1.6-3.97-1.23 4.09zm-8.68-2.95l1.62-3.68-1.25 3.72zm-50.52-27.75l3.26-2.85-2.92 3.08zm-3.89-12.22l3.97-1.65-3.75 2.01zm17.89-3.95c1.4.95 2.92 2.62 4.6 2.85-2.08.09-3.73-1.4-4.6-2.85zm-4.4.48c-.22-.1-.5-.09-.77-.02-.27.06-.55.16-.82.27-.28.12-.55.23-.83.33s-.57.2-.87.23v-.04c.29-.06.57-.17.83-.3l.8-.4c.26-.14.54-.27.83-.37.3-.09.63-.16.98-.05zm55.26.23c.84-1.01 1.34.03 0 0zm-2.54-1.93c.4-.88 2.28-.74.57-.16-.18.08-.4.14-.57.16zm-.25-3.39a6.8 6.8 0 01-2.06.85 2.7 2.7 0 012.06-.85zm-2.47-2.4c-.54.47-3.14 1.69-1.44.5.43-.28.91-.51 1.44-.5zm-2.53-2.77c-.94.32-1.73 1.4-2.68 1.39.85-.54 1.6-1.42 2.68-1.39zm-2.4-2.56c-1 .03-2.55 1.83-2.8 1.5.79-.75 1.61-1.68 2.8-1.5zm-2.4-2.7c-1.18.3-1.8 2.01-3.05 1.76 1.21-.3 1.65-1.92 3.05-1.76zm-2.56-2.43c-1.26.6-2.11 2.23-3.53 2.29 1.31-.57 2.04-2.07 3.53-2.29zm-2.84-2.24c-1.43.56-2.36 2.53-3.97 2.35 1.58-.39 2.3-2.17 3.97-2.35zm-9.59-.12c1.4-.7 1.74-2.6 3.16-3.16-1.15.96-1.52 2.82-3.16 3.16zm-2.97-.76c.97-1.07 1.23-2.92 2.69-3.42-1.21.91-1.4 2.6-2.69 3.42zm-3.51-.58c1.07-1.05 1.58-2.77 2.78-3.55-.89 1.22-1.4 2.75-2.78 3.55zm-2.55-.96c.56-.73 1.04-3.12 1.59-2.8-.73.83-.51 2.23-1.59 2.8zm11.96 3.28c1.33-.45 1.5-2.2 2.9-2.57 1.24-.45-1.57 1.16-1.62 1.97-.33.36-.8.56-1.28.6zm-4.15-1.67a22.1 22.1 0 002.37-2.37 3.74 3.74 0 01-2.37 2.37zm-3.21-.78c.68-.86 1.5-1.67 2.06-2.58-.08 1.14-1.13 2.05-2.06 2.58zm-3.18-.3c.67-.95 1.35-1.9 1.83-2.96.02 1.1-.88 2.32-1.83 2.96zm-3.09-.12c.64-1 1.25-2.12 1.72-3.16a4.25 4.25 0 01-1.72 3.16zm12.69 2c.83-.74 1.69-1.48 2.33-2.4-.12 1.07-1.3 2.04-2.33 2.4zm2.65 1.14c1-.5 2.02-1.08 2.9-1.72a3.9 3.9 0 01-2.9 1.72zm3.37 2c1-.5 2.02-1.1 2.91-1.72a3.89 3.89 0 01-2.91 1.72zm2.81 2.21c.87-.4 1.69-1.04 2.43-1.53a3.01 3.01 0 01-2.43 1.53zm3.01 1.93c.74-.6 1.85-1.28 2.77-1.01-.95.27-1.83.72-2.77 1.01zm2.34 2.45c.61-.65 1.63-1.33 2.49-1.06-.86.27-1.65.73-2.49 1.06zm5.07 1.67c-.78.25-1.57.68-2.33.84.6-.6 1.5-1.01 2.33-.84zm2.56 2.38c-.52.4-3.02 1.37-1.37.33.43-.2.89-.36 1.37-.33zm.18 3.26c.6-.96 2.47-.65.77-.22-.25.09-.51.15-.77.22zm2.32 2.44c1.58-1.28 1.22.14 0 0zm5.09 32.28c-1.25 1.53-2.38 3.17-3.77 4.59-.33.23.6-.72.76-1 .94-1.25 1.83-2.53 2.72-3.82l.29.23zm-.22-7.01c.61-.1 1.27.58 1.22 1.1-.35-.42-.7-.87-1.22-1.1zm1.82-8.4c.33-.66 1.34-1.11 1.76-1.35-.47.52-1.18.82-1.44 1.52l-.32-.17zm3.09-.6c-.26.62-.45 1.3-.33 1.98 0 .57-.36 1.08-.58 1.56-.13-.55-.15-.07-.22 0-.23-.28.12-.47.24-.73.3-.42.38-.93.36-1.44.07-.46.3-1.1.53-1.37zm.67-.15c-.05.82.38 2.2-.22 2.67-.48-.3.4-1.25.14-1.84 0-.27-.02-.65.08-.83zm-3.64 2.92c.16-.5 1.28-1.29 1.33-1.28-.23.52-.87.79-.96 1.39l-.37-.11zm-42.49-9.65c.2-.15.47-.19.7-.29a16.3 16.3 0 001.81-.63c.02.27-.31.38-.48.54-.6.38-1.34.48-2.03.38zm-3.73-1.49c.23-.24.57-.08.85-.1.24-.1.38-.34.57-.52.23-.24.46-.48.65-.75.12.26-.1.53-.22.76-.2.3-.42.62-.76.78-.26.13-.54 0-.77-.14a.56.56 0 00-.32-.03zm-5.18-8.24c-.04.15-.1.3-.13.45a2.83 2.83 0 00.61 2.48c.04.07.2.13.09.2l-.22.22a2.92 2.92 0 01-.44-3.24l.05-.13.04.02z"/>
<path d="M84.2 95.11c.36-.84.83-1.7 1.62-2.21.11-.09.06-.02.01.04a4.06 4.06 0 011.93-1.89 4.7 4.7 0 012.4-.56c.12-.02.4.1.13.08-.74.04-1.44.32-2.1.62-.8.43-1.65 1-1.99 1.9a3.5 3.5 0 00-1.15 1.27c-.21.22-.3.76-.52.88l-.33-.13zm.94.12c.31.04.57.3.66.6.07.15.16.29.26.43-.1.08-.23-.08-.32-.12-.17-.15-.23-.38-.33-.57-.08-.12-.2-.21-.27-.34z"/>
<path d="M85.26 96.29a3.92 3.92 0 00-.41-.5c-.1-.11-.21-.22-.33-.31-.09-.06-.3-.1-.17-.24.05-.06.08-.2.14-.2a3.27 3.27 0 01.81 1.22l-.04.03zm4.91 4.77c.2.04.2-.19.26-.3.14-.17.37-.15.56-.2.48-.07.97-.17 1.44-.34l.53-.17c.03.14-.22.23-.32.33-.39.24-.83.35-1.26.48-.2.06-.41.1-.62.14.03.04-.06.26-.15.31-.1.09-.3.17-.4.09l-.04-.34zm-10.14-2.27c.98.18 1.98.28 2.97.33.6.01 1.18-.1 1.75-.2.23-.05.47-.04.66-.18.17-.02-.07.2-.14.22-.35.17-.71.27-1.08.39-.44.14-.9.17-1.36.15a7.17 7.17 0 01-2.78-.66c-.04.02-.04-.05-.02-.05zm-3.19 2.51a2.44 2.44 0 00-1.75.61l-.82.65c-.17.11-.35.21-.53.3-.05-.1.16-.1.2-.18.28-.19.52-.44.78-.67a5 5 0 01.78-.68 2.24 2.24 0 011.36-.43l-.02.4zm42.76-2.93a5.46 5.46 0 012.85-4.24 7.1 7.1 0 013.08-.84c.18-.03.54.03.2.1-.35.04-.69.15-1.03.23-1.53.4-3 1.21-3.96 2.49a7.55 7.55 0 00-1.13 2.24l-.01.02zm6.28 13.32c.66.3 1.23.84 1.5 1.52.29.66.36 1.39.54 2.08.12.4.27.78.45 1.15-.11.11-.17-.19-.25-.2-.61-.77-.74-1.75-1-2.65a3.87 3.87 0 00-1.24-1.9zm-7.82-8.72c.38.53.46 1.21.43 1.85-.03 1.14-.4 2.23-.55 3.35-.05.17.03.44-.02.57l-.36.04c-.07-.52.08-1.04.17-1.54.15-.68.33-1.34.43-2.03.12-.73.1-1.5-.13-2.21l.03-.03zM96.82 86.14a4.1 4.1 0 014.27.82 5.22 5.22 0 011.44 2.34c-.12-.04-.18-.26-.28-.36a7.3 7.3 0 00-1.12-1.42 4.57 4.57 0 00-3.22-1.42c-.35-.02-.81 0-1.09.04zm29.53 36.3a74.63 74.63 0 01-3.38 3.3c-.4.36-.79.7-1.2 1.03l-.03-.03a31 31 0 002.24-2.21 72.9 72.9 0 002.1-2.33l.27.24zm-27.64-20.08c.34-.38 1.02-.32 1.32.08-.43.13-.9.04-1.32-.08zm-.76.02c-.32.45-1.04.46-1.43.1.25-.24.89-.07 1.28-.11l.15.01zm-3.52-.51c.6-.1 1.22-.14 1.84-.15a1.4 1.4 0 01-1.84.15zM88.32 81.8c-.83-.65-2.43-.32-2.74-1.56.5.53 1.9.65 2.58 1.3.12.03.1.2.16.26zm1.85 5.11c-.64-.73-1.71-1.22-1.77-2.32-.15-.62.15-1 .24-.2.18 1 1.15 1.5 1.5 2.37zm2.58-10c-1 .54-1.94-.32-2.79-.73-.44-.06-1.05-.24-.25-.3 1.08 0 1.82 1.07 2.92 1zm-2.69 3.66c-1.17-.4-1.58-1.83-2.78-2.19 1.02-.23 1.71.85 2.24 1.55.17.23.34.45.54.64zm-2.63 3.26c-.65.03-1.64.54-2.06-.1.68.1 1.48-.38 2.06.1zm9.82-3.26c-.9-.45-2.15-.48-2.6-1.55-.4-.69-.03-.62.29-.08.57.77 1.62.84 2.24 1.53zm-2.95.83c-.84-.58-2.1-.83-2.35-2-.28-1.29.73 1.02 1.35 1.07.39.23.84.48 1 .93zm1.48-7.98c-.77 1.01-2.14.7-3.22.64-.78-.1.84-.4 1.1-.3.73.03 1.46.01 2.12-.34zm.54.56c1.23-.37 2.16.7 3.03 1.36.55.51-.98-.19-1.13-.44a3.84 3.84 0 00-1.9-.92zM86.18 85.79c.4.5.61 1.16 1.17 1.52-.01.1-.41.04-.55-.06-.48-.3-.7-.91-.62-1.46zm-1.55-.59c.47.47.63 1.26.32 1.86-.11-.18-.15-.44-.2-.66-.1-.4-.12-.8-.12-1.2zm-1.2 1.53c.05.5-.15.98-.21 1.47-.36-.27-.32-.8-.09-1.15a1 1 0 01.3-.32zm31.74 16.39c.11.1.21.2.34.28.1.08.23.13.35.18l.26.07c-.16.15-.42.15-.6.05a.63.63 0 01-.36-.43l.01-.15zm-1.37.31c.08-.02.16 0 .24 0 .05.02.1.04.17.05.06 0 .11.05.17.08.06.03.12.07.16.12a.4.4 0 01-.24.07c-.09 0-.19 0-.27-.06a.34.34 0 01-.15-.13.37.37 0 01-.07-.13h-.01zm-1.3.02c.24-.05.5.07.63.27.02.04.05.1-.01.09a.59.59 0 01-.54-.24c-.04-.03-.05-.1-.08-.12zm-1.4-.23c.07.03.15.05.2.1l.16.09c.06.05.13.1.18.16l.1.1a.44.44 0 01-.4-.05.59.59 0 01-.2-.19.49.49 0 01-.04-.21zm-7.7-12.59c.27.14.43.42.52.7.06.15.06.32.06.5a.89.89 0 01-.2.5c-.06-.02.02-.15 0-.22a3.38 3.38 0 00-.13-.83c-.03-.12-.06-.25-.12-.36l-.13-.29zm30.24 7.27c-.17-.3-.34-.6-.53-.87-.17-.22-.32-.45-.52-.65.4.3.77.66 1.13 1.02.07.09.16.17.21.27-.07.08-.18.13-.27.2-.02 0-.02.02-.02.03zm-40.74-12c-.66-.55-1.65-.71-2.06-1.54-.25-.28-.5-1.6-.06-.76.31.8 1.06 1.28 1.73 1.76.17.14.32.33.39.54zm4.32-8.95c-.83-.25-1.83-.01-2.52-.65-.32-.16-1.04-1.24-.33-.67.6.65 1.52.76 2.32.98.2.07.39.18.53.34zm-16.51 7.92c-.48-.21-.02-.57.04-.9.12-.3.25-.64.52-.86.39-.05.35.55.72.6.27.19.6 0 .25-.25-.34-.5-.28-1.3.27-1.64.15-.14.37-.47.56-.2.28.2-.38.4-.46.6-.4.4-.12 1.02.2 1.38.43.3-.1.64-.43.56-.43.06-.86-.3-1.07-.5-.22.4-.32.85-.6 1.21z"/>
<path d="M80.71 84.87c-.13.26-1.09.78-1 .36.38-.14.67-.87 1-.36zm2.86-5.27c.09.65.02 1.34-.26 1.93-.4.36-.47-.29-.2-.51.18-.45.16-1.06.46-1.42zm2.73-4.33c-.6.4-.41 1.4.38 1.37.3.49-.81.8-.75.5.36.11.55-.68.58-.19-.51-.02-1.08-.46-.85-1.02.07-.31.28-.66.64-.66zm-1.53 2.35c-.22.48-.07 1.52-.27 1.67-.45-.47-.3-1.37.27-1.67zm5.47-5.49c-.18-.18-.32-.35-.03-.54.8-1.19.9-2.7.8-4.08-.1-1.58-.73-3.1-.6-4.7 0-.26.22-.75-.23-.5-1.98.61-3.9 1.67-5.23 3.29-.3.31-.52.85-.79 1.1-.31-.08-.33-.26-.09-.5 1.14-1.85 3.02-3.1 4.99-3.91.51-.19 1.03-.42 1.58-.44.46.21.05.82.13 1.2-.08 1.7.66 3.32.64 5.02.02 1.32-.15 2.74-.96 3.84l-.21.22z"/>
<path d="M82.92 70.45a7.36 7.36 0 01.91-3.85c.5-.11.29.38.11.62-.48 1.01-.72 2.12-.98 3.2l-.04.03zm2.4 4.54c1.03-.07 2.17-.3 2.87-1.13.15-.43.58-.53.93-.75.38-.26.66-.64.81-1.07.5-.27.4.28.18.52-.33.56-.9 1-1.51 1.17.24-.26-.17.35-.27.42a3.4 3.4 0 01-3.02.86zm4.54-10.52c.62 1.85.82 3.96.04 5.8-.23.5-.52 1-.97 1.33.96-1.28 1.11-2.95 1.11-4.5 0-.88-.11-1.75-.18-2.63zm-2.48 2.78c.23 1.45-.37 3.1-1.67 3.86-.4.16.32-.4.37-.6a8.8 8.8 0 001.3-3.26zm-3.28 5c-.67-.97-.48-2.25-.15-3.31a7.7 7.7 0 012.61-4.07 5.3 5.3 0 012.22-1.02 7.56 7.56 0 00-4.29 4.61c-.47 1.18-.95 2.55-.39 3.79z"/>
<path d="M87.63 73.54c.24.04.5-.02.72-.09l.19-.06.07.37c-.3 0-.6-.01-.86-.15l-.12-.08v.01zm1.72-1.04c.24-.17.47-.36.62-.62.02-.02.04.02.06.03l.23.21c-.26.2-.59.3-.9.38h-.01zm-25.34-4.12c.25-.21.65-.06.8.2.23.33.22.75.21 1.14-.06 1.01-.28 2.02-.2 3.04.02.22.06.44.11.65a4.94 4.94 0 01-.32-2.2c.03-.66.1-1.32.06-1.98a.85.85 0 00-.27-.6 1.1 1.1 0 00-.39-.25z"/>
<path d="M63.86 71.26c.16-.53.24-1.1.2-1.66-.03-.57-.36.32-.28-.11.13-.64.72-.03.66.37.09.5-.02 1.22-.58 1.4zm5.48-.24c-.04-.65-.6-1.15-1.13-1.35.06-.18.09-.45.3-.22.53.34.9.93.83 1.57zm2.4-.64a1.85 1.85 0 00-.98-.96c.1-.13.18-.47.34-.2.34.29.6.7.64 1.16zm2.81-1.33c-.17-.46.05-1.03.54-1.18.92-.2 1.82.25 2.65.6.3.16.98.4 1.02.5-1.15-.08-2.2-.7-3.35-.79-.53-.1-.84.4-.86.87zm1.66 3.07c-.28-.02-.55 0-.82.07.24-.2.52-.32.8-.44l.02.37zm-1.77-1.55c-.17.57-.03 1.2-.25 1.76-.12.33-.29.74-.65.87.35-.67.45-1.43.62-2.15.06-.18.17-.33.28-.48zm-.82 1.46c-.23-.7-.18-1.6.42-2.1.25-.17-.06.43-.06.65-.12.48-.18.98-.36 1.45zm4.42 8.85c-.22-.94-.83-1.7-1.33-2.5a2.6 2.6 0 011.42 1.93 1 1 0 01-.09.57zm-1.09-10.64c.06 0 .11.05.1.11l-.11.37c-.05.17-.06.35-.04.53.01.12.04.24.03.37 0 .07-.07.08-.12.06a.73.73 0 01-.44-.32.45.45 0 01-.07-.25v-.3c.02-.2.13-.38.3-.48a.6.6 0 01.35-.09zm-6.37 12.59c-.36.73-1.39.75-2.03.41-.38-.16-.38-.27 0-.22.68.06 1.4.18 2.03-.19zm8.75-8.81c.25-.27.73.37.3.32-.15-.02-.28-.16-.3-.32zm.75-.08c.3-.27.63.44.17.29a.37.37 0 01-.17-.29zm.69.06c.48-.29.23.57 0 .1V74zm-2.04.2a.36.36 0 01.28-.02c.04.02.09.04.12.08.05.08.09.17.06.27H79a.37.37 0 01-.22-.16c-.03-.04-.04-.09-.05-.13v-.04zm-.63.2a.15.15 0 01.18-.05c.08 0 .14.04.2.1.05.04.05.1.05.17 0 .04 0 .08-.05.07-.07 0-.15.01-.21-.02-.08-.04-.13-.13-.15-.22 0 0 0-.05-.02-.05zm-.57.24c.07-.09.22-.1.28 0 .04.06.03.13.01.2-.1.06-.29.06-.29-.08v-.12zm-.58.12l.12-.06.09.01c.05.04.03.1.02.16 0 .04-.03.05-.05.07l-.08.04c-.06 0-.13-.03-.12-.1l.02-.12z"/>
<path d="M75.1 69.08c-.24.26-.17.67-.01.95.13.22.43.2.66.18.3-.04.58-.11.88-.15 1-.08 2.03-.05 2.98.29.27.09.53.21.76.37a9.43 9.43 0 00-3.13-.32c-.18 0-.36.03-.54.02-.48.08-.96.21-1.44.08-.35-.1-.54-.46-.5-.8a.68.68 0 01.34-.62zm-5.89 12.07c-.92-1.12-1.31-2.56-1.67-3.94a18.4 18.4 0 01-.34-5.86c.08-.7.23-1.4.51-2.04-.4 1.52-.33 3.11-.24 4.66.1 1.18.22 2.35.48 3.5.28 1.27.61 2.55 1.27 3.69zm7.23 4.62c.29-.04.57.05.86.05.21 0 .37-.16.51-.3.11-.08.24-.13.31-.25.06-.08.08-.18.12-.28.05-.23.12-.45.16-.68.05-.23.07-.46.21-.65-.1.3-.05.63-.09.94 0 .25-.08.48-.13.72-.03.1-.1.17-.15.26-.08.1-.18.16-.27.24-.14.15-.29.3-.5.36-.33.11-.68-.03-1.02 0v-.41z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

View file

@ -1,19 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="boat" stroke-width=".35">
<path class="secondary" d="M136.3 64.6c-1.7-.16-3.2 1.08-4.9.9-1.35.03-2.5-.7-3.64-1.32a4.52 4.52 0 00-3.9-.45c-1.04.33-1.97 1.07-3.06 1.17-.91-.06-1.66-.74-2.52-1.03-1.35-.59-2.77-1.18-4.28-.97-1.34.03-2.6.48-3.87.88-1.9.71-3.85-.67-5.53-.78s-3.74-.8-4.52.02l.04 5.62c.23.42.6.3 1.16-.04a7.66 7.66 0 012.62-.1c1.03.1 2.04.52 3.03.71 1.53.26 3.1.13 4.53-.46 1.31-.45 2.65-1.31 4.09-1 1.29.5 2.62.89 3.96 1.2a6.09 6.09 0 004.56-1.21c.66-.3 1.21-1.06 2-.81.88.32 1.68.8 2.62.95 1.97.48 4.16.1 5.79-1.13 1.04-.58 2.09-1.28 3.34-1.15.56.04 1.25.79.48-.2-.45-.57-1.4-.74-2-.8z"/>
<path stroke-width=".25" d="M67.2 116.2l32.99-48.57-.08 1.62-31.96 47.3 11.99 3.58 19.98-51.49v2.06l-19.2 49.6"/>
<path stroke-width=".25" d="M100.2 68.09c2.03 3.25 32.14 47.66 32.14 47.66l-.7.36-31.53-46.86 22.2 49.92-1-.09-21.17-47.97"/>
<path d="M128.1 128.1l-2.8 1 1.7 6.5 3-1z"/>
<path d="M98.6 126.1l.8-64h1.3l.9 64z"/>
<path d="M100 60.4c.3 0 1 .5 1 1.5s-1.9 1.2-2 .1c0-1 .7-1.6 1-1.6zm.1 79.3c-26.6 0-27.6-7.7-27.6-7.7l-6.9-20s2.2 10 34.5 10 34.5-10 34.5-10l-6.9 20s-1 7.7-27.6 7.7z"/>
<g fill="none">
<path d="M68.6 119.5c2.3 1 14 5.9 31.4 5.9a82 82 0 0031.6-5.9"/>
<path d="M69.3 122.6a80.4 80.4 0 0030.7 5.7c15.8 0 27-4 30.7-5.6"/>
<path d="M70.6 126.1c4.4 1.8 15 5.3 29.4 5.3 14.3 0 24.9-3.4 29.5-5.2"/>
<path d="M72 129.5a80 80 0 0028 4.9c13 0 23-3 28-4.8m-53.5 3.7a85.7 85.7 0 0051 0m-17.3-2.3l-.3-2.8m1.1-.2l.2 3m-.6 5.8l-.2-2.8m1-.1l.2 2.8m-2-11.6l-.2-2.9m1-.1l.3 3m7.1 7.9l-.5-3m1.1-.1l.4 2.9m-2-5.6l-.4-3m1-.1l.5 2.9m6.7 1.5l-.7-2.8m1-.3l.7 2.9m.4 5.6l-.7-2.7m1-.2l.6 2.6m-3.7-10.6l-.7-3m1-.2l.7 2.9m6 1l-.8-2.6m1-.3l.8 2.7M92 131l.3-2.8m-1.1-.2l-.2 3m.6 5.8l.2-2.8m-1-.1l-.2 2.8m1.9-11.6l.3-2.9m-1.1-.1l-.2 3m-7.2 7.9l.5-3m-1-.1l-.5 2.9m2-5.6l.5-3m-1-.1l-.5 2.9m-6.7 1.5l.7-2.8m-1-.3l-.7 2.9m-.3 5.6l.6-2.7m-.9-.2l-.7 2.6M79 123l.7-3m-1-.2l-.7 2.9m-6 1l.8-2.6m-1-.3l-.8 2.7m28.6 10.9v-3m1 .1v2.9m-1-6v-2.9m1 0v3"/>
</g>
<path d="M61.8 102.8s1.6.4 2.7 1.9c1 1.2 1.3 3.2 1.3 3.2s1.7 10.1 4.8 18c2.8 7.5 7 10.6 7 10.6s-5-2.3-7.2-5.3c-3.9-5.3-8.6-28.4-8.6-28.4zm76.6 0s-1.6.4-2.8 1.9c-1 1.2-1.2 3.2-1.2 3.2s-1.7 10.1-4.8 18c-2.8 7.5-7 10.6-7 10.6s5-2.3 7.2-5.3c3.9-5.3 8.6-28.4 8.6-28.4z"/>
<path d="M133.2 116.3S119.4 123 100 123c-19.4 0-32.9-6.6-32.9-6.6s-.5-.2-.5-1c0-.6.5-.8.5-.8s13.6 6.6 33 6.6 33-6.6 33-6.6.4.3.4 1c-.03.25-.1.55-.3.7z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -1,45 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/7/7f/B%C3%A5%C3%A5th.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="boat2" stroke-width=".35">
<path d="M133.1 86.6c-.11-2.2-.44-3.64-.98-5.87.98-.79 4.95-2.66 7.17-2.66 1.63 11.04 0 20.14-5.03 27.2-6.69 9.38-19.1 14.75-34.85 14.75-15.76 0-28.04-5.37-34.73-14.76-5-7.06-6.65-16.15-5.02-27.2 2.22 0 6.2 1.87 7.17 2.66-.54 2.24-.98 5.95-.98 5.95s11.9 6.79 33.56 6.79c21.66 0 33.7-6.91 33.7-6.85z"/>
<path d="M134.47 87.78c.05 5.86-1.17 11.38-4.4 15.98-5.38 7.66-15.78 12.8-30.71 12.8-14.93 0-25.1-5.14-30.46-12.8-3.22-4.58-4.44-10.07-4.4-15.9l8.27 2.66 15.54 3.26 11.2.57 13.09-1.53 11.63-2.54z"/>
<path d="M135.2 87.39S122.8 95.4 99.35 95.4c-23.46 0-35.67-8.02-35.67-8.02s-.58-.3-.58-1.19c0-.72.58-1.06.58-1.06s12.22 8.02 35.67 8.02c23.44 0 35.87-8.02 35.87-8.02s.41.4.41 1.18c0 .72-.41 1.07-.41 1.07z"/>
<path d="M113.92 88.98l.53 3c.75-.13 1.49-.26 2.2-.4l-.54-3zm6.05-1.1l-2.18.4.53 2.96c.75-.16 1.48-.32 2.18-.5zm-37.8 3.71l2.2.4.55-3-2.19-.4zm-3.83-.83l2.17.5.54-2.98-2.19-.4z"/>
<g fill="none">
<path d="M64.59 90.62c3.28 2.3 15.1 9.4 34.76 9.4 19.96 0 31.93-7.32 35.05-9.5"/>
<path d="M65.06 94.51C68.91 97.48 80.54 105 99.33 105c19.08 0 30.86-7.73 34.58-10.62"/>
<path d="M66.5 99.15c4.83 3.75 15.91 10.56 32.9 10.56 17.17 0 28.43-6.97 33.22-10.7"/>
<path d="M69.55 104.66c5.79 4.18 15.82 9.38 29.83 9.38a50.78 50.78 0 0030.18-9.6"/>
<path d="M112.23 108.36l.74 3.98"/>
<path d="M111.08 108.57l.72 4.02"/>
<path d="M110.91 99.17l.75 4.7"/>
<path d="M109.75 99.32l.74 4.74"/>
<path d="M120.3 93.05l.89 3.73"/>
<path d="M119.15 93.3l.93 3.8"/>
<path d="M130.63 92.82l1.2 3.07"/>
<path d="M129.63 93.33l1.23 3.18"/>
<path d="M122.95 108.5l.46 1.75"/>
<path d="M122.24 100.83l.94 3.83"/>
<path d="M121.17 101.26l.93 3.9"/>
<path d="M124.02 107.93l.4 1.6"/>
<path d="M86.57 108.36l-.74 3.98"/>
<path d="M87.72 108.57L87 112.6"/>
<path d="M87.89 99.17l-.75 4.7"/>
<path d="M89.05 99.32l-.73 4.74"/>
<path d="M78.5 93.05l-.88 3.73"/>
<path d="M79.65 93.3l-.93 3.8"/>
<path d="M68.17 92.82l-1.2 3.07"/>
<path d="M69.17 93.33l-1.23 3.18"/>
<path d="M75.85 108.5l-.45 1.75"/>
<path d="M98.81 109.71V105"/>
<path d="M100 109.71V105"/>
<path d="M98.81 116.55v-2.51"/>
<path d="M100 116.55v-2.51"/>
<path d="M98.81 100.02V95.4"/>
<path d="M100 100.02V95.4"/>
<path d="M76.56 100.83l-.94 3.83"/>
<path d="M77.63 101.26l-.93 3.9"/>
<path d="M74.78 107.93l-.4 1.6"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:Coat_of_Arms_of_Spanish_Army_Paratrooper_Brigade_Anti-Tank_Defense_Company.svg" author="Heralder" license="https://creativecommons.org/licenses/by-sa/4.0"/>
<g id="bone" stroke-width=".6">
<path d="m 106,136 c 0,3 -2,5 -5,4 -1.4,-1 -5.3,1 -7.4,-1 -1.3,-4 3.8,-3 3.3,-12 -0.3,-6 -1.6,-11 -1.9,-16 a 704,704 0 0 1 1.9,-38 c 0,-2.3 -3.3,-5.5 -4.4,-8.2 -0.2,-2.9 2.7,-5.8 5.1,-4.1 1.4,0.2 3.4,-2.4 4.4,-1.5 3,0.1 4,3.2 3,5.4 -1,3.4 -3,4 -2,10.9 0,14.8 -1,39.5 0,54.5 2,3 3,5 3,6 z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 652 B

View file

@ -1,20 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/2/24/Perm.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bookClosed" stroke-width=".716">
<path class="secondary" d="M117.887 60.525H73.669s-2.051 1.86-.573 5.151 4.866 4.389 4.866 4.389h49.465l-9.54-9.54z"/>
<rect x="77.962" y="70.065" width="50.896" height="69.499"/>
<rect x="83.066" y="75.264" width="40.736" height="59.1"/>
<path fill="none" stroke-width=".477" d="M72.858 61.765h46.555M72.715 62.91h47.318M72.62 64.055h48.654m-48.798 1.144h49.704m-48.845 1.145h50.324M74.24 67.537h50.944m-50.133 1.24h51.04"/>
<path stroke-linejoin="round" d="M71.475 131.502c0 6.297 6.535 8.062 6.535 8.062v-69.5s-3.387-1.096-4.866-4.388.573-5.151.573-5.151-1.718.334-2.051 1.43c-.191.62-.191 2.1-.191 2.1v67.447z"/>
<g class="tertiary">
<polygon points="123.802 85.424 116.79 75.264 123.802 75.264"/>
<polygon points="83.066 124.204 90.078 134.364 83.066 134.364"/>
<polygon points="83.066 85.424 90.078 75.264 83.066 75.264"/>
<polygon points="123.802 124.204 116.79 134.364 123.802 134.364"/>
<path d="M77.962 129.69c-4.436 0-6.535-3.626-6.535-3.626s-1.193-1.764-1.193-4.054 1.193-3.387 1.193-3.387c0 7.441 6.535 7.728 6.535 7.728v3.339z"/>
<path d="M77.962 120.15c-4.436 0-6.535-3.626-6.535-3.626s-1.193-1.764-1.193-4.054 1.193-3.387 1.193-3.387c0 7.441 6.535 7.728 6.535 7.728v3.339z"/>
<path d="M77.962 92.436c-4.436 0-6.535-3.625-6.535-3.625s-1.193-1.765-1.193-4.055 1.193-3.386 1.193-3.386c0 7.44 6.535 7.727 6.535 7.727v3.339z"/>
<path d="M77.962 82.896c-4.436 0-6.535-3.625-6.535-3.625s-1.193-1.765-1.193-4.055 1.193-3.386 1.193-3.386c0 7.44 6.535 7.727 6.535 7.727v3.339z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -1,24 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:H%C3%A9raldique_Meuble_Livre.svg" author="Tzeentch" license="http://artlibre.org/licence/lal/en/" />
<g id="bookClosed2" stroke-width="2" transform="translate(72 63.5) scale(0.16)">
<path d="M18.14 7.35c-8.72 16.5 18.96 25.19 38.1 35.71h293.65v414.29H49.09c0-1.48-35.55-2.53-46.03-30.16-.19-3.45 1.22-5.94 4.76-7.14v-66.67c-4.2-2.37-5.46-6.51-5.97-11.11 1.05-4.83 2.4-7.48 5.97-8.2V271.3c-4.2-3.86-7.02-7.49-6.8-12.08.19-6.3 3.35-9.03 7.6-10.08v-59.76c-3.04-1.94-6.27-3.67-7.14-11.4.2-6.42 4.12-8.2 7.14-11.1v-61.12c-9.9-6.58-6.55-15.93 3.17-19.83l-.12-61.78C8.14 22.12 6.6 18.37 7.03 13.7c.43-4.67 3.2-12.13 8.73-12.7h305.56v42.06"/>
<path d="M10.95 423.1c10.58 17.84 26.28 20.07 44.05 24.97"/>
<path d="M8.28 353.09c11.74 13.2 29.78 18.67 46.02 22.73"/>
<path d="M8.14 341.16c11.02 14.48 30.35 19.8 48.55 26.38"/>
<path d="M7.58 271.3c22.29 16.28 33.6 17.01 47.42 21.32"/>
<path d="M8.14 257.55c22.4 21.57 32.73 20.06 46.86 25.81"/>
<path d="M8.7 189.36c12.05 10.6 28.53 17.4 45.74 23.57"/>
<path d="M7.58 176.45C20.66 190 37.5 197.91 55 204.8"/>
<path d="M8.7 105.74c14.06 12.78 28.7 18.96 43.5 23.57"/>
<path d="M8.42 93.12C23.2 111.5 41 116.37 52.48 120.33"/>
<path d="M12.07 24.37C23.57 35.61 37.61 43.9 53.6 49.9"/>
<path d="M47.43 56.04c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 28.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 28.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 26.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 30.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09m-10.38 6.91c5.18 4.66 7.3 2.64 10.38 3.09"/>
<path d="M56.83 42.89C13.06 24.14 13.95 15.49 17.97 7.53h295.46c-.48 1.08-.9 2.12-1.26 3.12a30.52 30.52 0 00-1 3.34c-.4 1.76-.58 3.37-.57 4.87 0 1.84.3 3.5.85 5a15.3 15.3 0 003.04 5 28.05 28.05 0 006.08 4.94 91.38 91.38 0 007.3 4.01c3.22 1.64 6.5 3.25 9.42 5.08H56.83z"/>
<path d="M329.67 38.78H48.2m272.11-5H38.67m275.7-5H29.68m281.6-5H22.68m288-5h-292m292-4h-294m295-4h-294"/>
<path d="M77.07 63.56h250.32v371.23H77.07V63.56zm13.79 13.43H313.6v344.36H90.86V77z"/>
<path d="M306.17 43.3c-4.89 9.5-.63 14.7 7.78 14.49-5.58 14.58 3.69 26.77 18.74 19.8 4.12 9.27 13.12 9.6 15.56 1.06"/>
<path d="M306.17 456.22c-4.89-9.5-.63-14.71 7.78-14.5-5.58-14.57 3.69-26.77 18.74-19.79 4.12-9.27 14.36-8.72 16.8-.18"/>
<path d="M340.82 58.85a7.78 7.78 0 11-15.56 0 7.78 7.78 0 1115.56 0z"/>
<path d="M340.82 436.85a7.78 7.78 0 11-15.56 0 7.78 7.78 0 1115.56 0z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -1,21 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://upload.wikimedia.org/wikipedia/commons/9/93/Meuble_h%C3%A9raldique_Livre_ouvert_2.svg" license="https://creativecommons.org/licenses/by-sa/4.0"/>
<g id="bookOpen" stroke-width=".25">
<g>
<path stroke-width=".54" d="M62.23 73.24h75.78l-1 55.55H63.07l-.84-55.55z"/>
<path class="secondary" d="m64.87 73.9 1.14 52.2h68.02l.97-52.7-3.24-2.85c-7.06 2.3-11.24.98-16.46 0-4.62-1.17-9.27-2.1-15.36 3.12-3.75-2.38-6.16-5.61-17.63-2.88a34.26 39.87 0 0 1-14.19 0l-3.25 3.07z"/>
<g fill="none">
<path d="m99.94 125.02-.04-51.47m.74 51.86c10.7-6.93 22.05 1.75 30.51-3.12"/>
<path d="M100.9 125.8c10.72-6.15 22.63 1.9 30.89-2.65"/>
<path d="M132.56 124.16c-8.3 3.66-20.74-3.03-31.35 1.99 12.15-2.69 23.42 1.28 32.02-1.01l1.1-52.3m-1.84 51.44 1.2-51.98m-1.9 50.97 1.24-51.59m-1.94 50.73 1.27-51.27m-33.2 54.27c-10.7-6.93-22 1.94-30.47-2.88"/>
<path d="M98.87 125.91c-10.7-6.15-22.62 2.03-30.88-2.49"/>
<path d="M67.22 124.36c8.33 3.66 20.77-3.24 31.38 1.79-12.15-2.69-23.42 1.28-32.02-1.01l-1.14-51.79m1.88 51.12-1.2-51.78m1.9 50.85-1.24-51.47m1.9 50.57-1.23-51.11m5.02 3.85c10.04 1.05 16.5-3.35 24.93.66"/>
<path d="M73.14 118.83c10.04 1.05 15.82-3.35 24.26.66M72.6 83.05c6.2.66 10.98-.78 15.7-1.01m-15.63 3.58c10.04 1.05 16.3-3.39 24.76.62m-24.7 1.95c10.04 1.05 16.23-3.39 24.67.62m-24.36 17.25c10.04 1.05 15.92-3.39 24.36.62m-24.33 1.99c10.04 1 15.9-3.43 24.33.58m-24.33 1.87c7.1.74 12.11-1.25 17.4-1.01m-17.36 3.62c10.03 1.05 15.85-3.39 24.29.62m-24.36 1.95c10.04 1.01 15.92-3.39 24.36.62M72.84 90.76c10.03 1.01 16.12-3.39 24.56.62m-24.56 1.9c10.03 1.06 16.12-3.38 24.56.63m-24.53 1.95c3.55.39 6.56.08 9.37-.31m-9.3 2.92c10.04 1.05 16.02-3.47 24.46.58M72.97 101c10.04 1.05 16-3.43 24.43.58m-24.36 2.03c10.04 1 15.92-3.5 24.36.54M72.57 80.52c10.04 1.01 16.4-3.39 24.83.62m-24.93-3.2c10.04 1.06 16.5-3.38 24.93.63m30.24-3.19c-10.04 1.05-16.53-3.35-24.96.66m12.18 42.09a22.75 26.47 0 0 0-12.18 1.36m24.8-36.44c-10.04 1.05-16.37-3.35-24.76.66m6.22.9c-2 .11-4.05.58-6.26 1.63m24.66 1.95c-10.04 1.05-16.23-3.39-24.66.62m24.36 17.25c-10.04 1.05-15.93-3.39-24.36.62m24.33 1.99c-10.04 1-15.9-3.43-24.33.58m24.33 1.87c-10.04 1.05-15.9-3.31-24.33.7m24.3 1.9c-10.04 1.06-15.87-3.38-24.3.63m24.36 1.95c-10.04 1.01-15.93-3.39-24.36.62m24.56-26.16c-10.04 1.01-16.13-3.39-24.56.62m24.56 1.9c-10.04 1.06-16.13-3.38-24.56.63m14.22 1.48c-4.82-.66-9.07-1.36-14.22 1.1m24.5 1.98c-10.04 1.05-16.07-3.47-24.5.58m24.43 1.95c-10.04 1.05-16-3.43-24.43.58m24.4 2.03c-10.04 1-15.97-3.5-24.4.54m24.86-23.63c-10.04 1.01-16.4-3.39-24.86.62m24.96-3.2c-10.04 1.06-16.53-3.38-24.96.63"/>
</g>
</g>
<g>
<path fill="none" stroke-width=".54" d="m64.8 73.88 1.14 52.25h68.02l.95-52.7-3.23-2.85c-7.07 2.29-11.23.99-16.48 0-4.6-1.15-9.25-2.12-15.34 3.08-3.73-2.37-6.15-5.6-17.62-2.86-4.74.82-9.47 1.47-14.2 0l-3.23 3.08z"/>
<path class="tertiary" stroke-width=".54" d="M99.97 125.05a6.49 6.49 0 0 0-3.25 3.89c2.34 1.7 4.36 1.71 6.5-.12a7.87 7.87 0 0 0-3.25-3.77z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/6/66/Luk.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bow" stroke-width=".3">
<path d="M107 64.5v70.9h-1l-.3-71"/>
<path d="M100 103s-2.3 3.1-2.3 6.6c0 6.7 4.3 11.4 6.6 16.2a23.5 23.5 0 012.9 9.6c0 3.7-1.4 6.6-4.9 6.6-1.3 0-2.3-.8-2.3-1.9s1.1-2 2.3-2c.6 0 1.1.1 1.6.5.3-.6.9-1.6.9-3.2 0-2.8-3.2-7.4-5.4-11-3.8-6-6.5-8.8-6.5-14.3a13.2 13.2 0 012.4-7.2v-6.1s-2.4-3.3-2.4-7.2c0-5.5 2.7-8.2 6.6-14.4 2-3.5 5.3-8.1 5.3-11 0-1.5-.6-2.5-1-3-.4.3-1 .4-1.5.4-1.3 0-2.3-1-2.3-2s1.1-2 2.3-2c3.5 0 4.9 3 4.9 6.6a24 24 0 01-2.9 9.7c-2.3 4.8-6.6 9.4-6.6 16.2a13.2 13.2 0 002.2 6.6z"/>
<path d="M95.3 96.8s0-.5 2.3-.5 2.3.5 2.3.5m0 6.1s.1.5-2.2.5c-1.7 0-2.1-.3-2.3-.4h-.1m9.4 33.3v-1h2.5v1zm0-71.8v-1.1h2.5v1z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 898 B

View file

@ -1,15 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/6/66/Luk.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bowWithArrow" stroke-width=".33">
<path d="M97.2 96.6s-2.9-2-6.1-2c-6.1 0-10.3 3.9-14.7 6a21.4 21.4 0 0 1-8.7 2.6c-3.4 0-6-1.3-6-4.4 0-1.2.7-2.1 1.7-2.1s1.8 1 1.8 2.1c0 .5-.1 1-.4 1.4.5.3 1.4.8 2.9.8 2.5 0 6.7-2.9 9.9-4.9 5.6-3.4 8.1-5.9 13.1-5.9a12 12 0 0 1 6.5 2.2h5.6s3-2.2 6.5-2.2c5 0 7.5 2.5 13.1 6 3.2 1.9 7.4 4.8 10 4.8 1.4 0 2.3-.5 2.8-.8-.3-.4-.4-.9-.4-1.4 0-1.2.8-2.1 1.8-2.1s1.8 1 1.8 2.1c0 3.1-2.7 4.4-6 4.4-3 0-6-1.3-8.8-2.6-4.4-2.1-8.6-6-14.7-6a12 12 0 0 0-6 2h-5.7z"/>
<path d="m100.4 139.7 30.5-36c1.2-.8 2-1.7 2.5-2.6v-.4c0-.2 0-.5-.2-.6-.4-.2-.7 0-.9.3-.4.9-1 1.4-1.8 2-1.2.9-30.2 36-30.2 36"/>
<path fill="none" d="M102.8 92.4s.4 0 .4 2.1-.4 2.1-.4 2.1m-5.6 0s-.4.1-.4-2 .4-2.1.4-2.1"/>
<path d="m99.6 139.7-30.5-36c-1.2-.8-2-1.7-2.5-2.6v-.4c0-.2 0-.5.2-.6.3-.2.7 0 .9.3.4.9 1 1.4 1.8 2 1.2.9 30.2 36 30.2 36"/>
<g>
<path class="tertiary" d="M100.814 137.53a6.6 6.6 0 0 0 2.453.671c1.056 0 2.222-1.056 2.222-2.288 0-3.399-4.675-12.254-4.675-12.254zm-1.65 0s-1.331.671-2.453.671c-1.056 0-2.222-1.056-2.222-2.288 0-3.399 4.675-12.254 4.675-12.254z"/>
<path d="M99.164 69.286v70.785s.363.132.825.132.825-.209.825-.209V69.209z"/>
<ellipse cx="99.989" cy="68.923" rx="1.65" ry=".913"/>
<path class="secondary" d="m101.023 68.89-.385-5.819 2.398 4.895h3.564l-6.6-7.909-6.6 7.909h3.564l2.398-4.895-.385 5.819s.308.286 1.034.286c.704 0 1.012-.286 1.012-.286z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,35 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:1129_%D0%97%D0%A0%D0%9F_%D0%BA.svg" author="Inkscape'r" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="bowWithThreeArrows" stroke-width=".44">
<path d="M98.14 132.74s.29.33.41.35c.13 0 .24.11.46 0l10-9.57 19.03-19.12c.42-.43-.15-1.07-.6-.62-6.08 6.09-12.27 12.28-18.34 18.39-.2.19-10.77 10.37-10.96 10.57z"/>
<path class="tertiary" d="M105.59 116.5l-3.74.44.92 6.02z"/>
<path class="secondary" d="M97.96 132.18V74.75l-4.4 3.3 5.26-14.37 5.25 14.37-4.39-3.3v57.4z"/>
<path class="tertiary" d="M97.92 120.81v-5.96l-4 2.95z"/>
<path d="M89.63 86.94a18.02 18.02 0 00-4.8-1.33 11 11 0 00-2.16-.12c.1.12.1.25.1.37v3.24c5.48.11 6.63 2.91 10.87 3.29v-4.02c-2.22-.59-2.7-.88-4.01-1.44zm-8.52-1.31c-.75 0-1.72.2-2.34.36l1.45 3.28.7-.15h.15V85.63zm-3.88 1.02c-.56.33-1.17.83-1.49 1.18-1.13 1.18-2.86 2.9-2.86 7.35 0 .85-.28 2.22-.4 3.51l1.72.54c.63-3.18 1.13-7.75 4.4-9.48zm-4.9 13.15a8.5 8.5 0 01-1.17 2.98l1.14 1.06a11.7 11.7 0 001.53-3.53z"/>
<path d="M94.83 95.03a.87.87 0 01-.88-.87v-5.48c0-.48.4-.87.88-.87s.87.4.87.87v5.48c0 .48-.4.87-.87.87z"/>
<path d="M81.92 91.13a.69.69 0 01-.66-.7v-4.38c0-.38.3-.69.66-.69.37 0 .67.31.67.69v4.38c0 .4-.3.7-.67.7z"/>
<path d="M75.37 100.27c-.07.2-.33.27-.57.19l-2.77-.9a.41.41 0 01-.25-.56c.07-.2.33-.26.57-.19l2.76.91a.4.4 0 01.26.55z"/>
<path d="M68.57 105.22l-.15.09c-.4.13-.85-.31-1.06-.22-.47.18-.33.97-.07 1.33.85 1.09 2.26 1.42 3.2.7z"/>
<path class="tertiary" d="M109.26 120.56l-2.25-3.5-5.7 12.75 2.79 7.53z"/>
<path class="tertiary" d="M104.89 132.56l-5.2-9.06v-8.66l3.16 2.26z"/>
<path d="M93.63 92.54c-4.43-.34-5.45-3.17-10.85-3.26v1.48a9.03 9.03 0 015.35 1.44c1.16.75 3.22 1.93 5.55 2.09zm-12.56-3.18l-.5.1.5 1.14h0zm-2.38.6a6.66 6.66 0 00-2.57 2.8c-1 1.98-1.37 4.52-1.78 6.51l.78.26c.32-1.43.5-2.7.89-4.19a5.7 5.7 0 013.3-3.98zm-4.68 10.4a13.47 13.47 0 01-1.6 3.6l.67.66a14.37 14.37 0 001.74-3.96z"/>
<path d="M71.1 102.96l1.98 1.93a.44.44 0 010 .6.44.44 0 01-.61.02l-1.98-1.93a.44.44 0 01-.01-.62.44.44 0 01.62 0z"/>
<path d="M69.32 104.56l2 1.95a.44.44 0 010 .6.44.44 0 01-.6 0l-2-1.91a.44.44 0 010-.62.44.44 0 01.62 0z"/>
<path d="M96.8 95.03a.87.87 0 01-.86-.87v-5.48c0-.48.39-.87.87-.87.47 0 .87.4.87.87v5.48c0 .48-.4.87-.87.87z"/>
<path class="tertiary" d="M93.48 137.25l-3.65-12.43 6.07 6.1z"/>
<path class="tertiary" d="M90.54 116.9l-2.31 3.6.27 1.67 7.6 7.52z"/>
<path class="tertiary" d="M96.05 117.19l-4.05-.77 5.57 12.9 7.32 3.24z"/>
<path d="M108.05 86.94a17.52 17.52 0 014.79-1.33 11.1 11.1 0 012.16-.12c-.11.12-.11.25-.11.37v3.24c-5.47.11-6.62 2.91-10.86 3.29v-4.02c2.22-.59 2.7-.88 4.02-1.44zm8.52-1.31c.73 0 1.65.16 2.26.33l-1.29 2.98-.15.33c-.14 0-.51-.11-.64-.11h-.14v-3.3-.23zm3.77 1.02c.58.35 1.25.82 1.59 1.18 1.14 1.18 2.87 2.9 2.87 7.35 0 .85.27 2.22.39 3.51l-1.72.54c-.63-3.19-1.19-7.75-4.5-9.47zm5 13.15c.22 1.13.6 2 1.18 2.98l-1.14 1.06a11.78 11.78 0 01-1.54-3.53z"/>
<path d="M102.85 95.03c.47 0 .86-.39.86-.87v-5.48a.87.87 0 00-1.74 0v5.48c0 .48.39.87.88.87z"/>
<path d="M115.76 91.13c.36 0 .66-.3.66-.7v-4.38a.69.69 0 00-.66-.69.67.67 0 00-.67.69v4.38c0 .4.29.7.67.7z"/>
<path d="M122.3 100.27c.08.2.34.27.58.19l2.77-.9c.23-.08.33-.35.25-.56-.09-.2-.33-.26-.58-.19l-2.76.91a.41.41 0 00-.26.55z"/>
<path d="M129.1 105.22l.15.09c.4.13.86-.31 1.07-.22.46.18.33.97.07 1.33-.86 1.09-2.27 1.42-3.2.7z"/>
<path d="M104.03 92.54c4.44-.34 5.46-3.17 10.87-3.26v1.48a9.04 9.04 0 00-5.36 1.44c-1.16.75-3.22 1.93-5.55 2.09zm12.58-3.18l.44.05-.44 1.01zm2.32.6c1.1.6 2.05 1.64 2.63 2.8 1 1.98 1.35 4.52 1.77 6.51l-.78.26c-.31-1.43-.5-2.7-.89-4.19a5.7 5.7 0 00-3.34-3.98zm4.73 10.4c.39 1.27.9 2.54 1.6 3.6l-.67.66a14.37 14.37 0 01-1.74-3.96z"/>
<path d="M126.58 102.96l-1.99 1.93a.44.44 0 000 .6c.17.18.44.18.61.02l1.99-1.93a.44.44 0 000-.62.44.44 0 00-.61 0z"/>
<path d="M126.36 106.5a.44.44 0 000 .62c.15.18.44.18.6 0l2-1.92a.45.45 0 000-.62.44.44 0 00-.62 0c-.64.6-1.33 1.28-1.98 1.93z"/>
<path d="M100.87 95.03c.48 0 .87-.39.87-.87v-5.48a.87.87 0 00-1.75 0v5.48c0 .48.4.87.88.87z"/>
<path class="secondary" d="M103.83 124.28l20.77-47.35 2.7 4.78.97-15.27-10.6 11.05 5.36-1.25-19.56 45.16z"/>
<path class="secondary" d="M96.1 129.7L72.92 76.75l-2.7 4.77-.96-15.25 10.58 11.03-5.35-1.25 24.28 56.08z"/>
<path d="M98.23 132c.43.3-.31 1.06-.61.63l-28.05-28.2c-.45-.45.08-1.12.6-.62 9.33 9.36 18.71 18.8 28.06 28.2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -1,92 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/c/cb/Pontev%C3%A8s.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bridge" stroke-width=".37">
<g stroke-linejoin="round">
<rect x="61.29" y="109.06" width="8.31" height="11.82"/>
<rect x="61.29" y="119.16" width="8.31" height="1.7"/>
<polygon points="132.43 109.06 138.7 109.06 138.7 85.82 132.43 85.82 67.56 85.82 61.29 85.82 61.29 109.06 68.88 109.06 68.88 101.82 70.28 97.51 73.62 94.62 78.85 93.87 82.11 95.52 84.68 99.76 84.68 102.1 84.68 105.66 84.68 109.06 91.87 109.06 91.87 101.21 93.91 97.07 98.03 94.57 101.92 94.3 105.19 95.93 107.38 99 108.15 103.48 108.15 109.06 114.93 109.06 115.04 99.84 117.88 95.52 122.62 94.3 127.7 95.52 131.06 99.76 131.2 105.6 131.2 109.06"/>
<line fill="none" x1="61.49" y1="103.37" x2="69.55" y2="103.37"/>
<line fill="none" x1="61.49" y1="99" x2="69.55" y2="99"/>
<line fill="none" x1="84.56" y1="103.37" x2="92.61" y2="103.37"/>
<line fill="none" x1="84.56" y1="99" x2="92.61" y2="99"/>
<line fill="none" x1="138.52" y1="103.37" x2="130.46" y2="103.37"/>
<line fill="none" x1="138.52" y1="99" x2="130.46" y2="99"/>
<line fill="none" x1="115.09" y1="103.37" x2="108.29" y2="103.37"/>
<line fill="none" x1="115.09" y1="99" x2="107.03" y2="99"/>
<line fill="none" x1="61.49" y1="94.57" x2="138.52" y2="94.57"/>
<rect x="84.37" y="109.06" width="8.31" height="11.82"/>
<rect x="84.37" y="119.16" width="8.31" height="1.7"/>
<rect x="107.38" y="109.06" width="8.31" height="11.82"/>
<rect x="130.4" y="109.06" width="8.31" height="11.82"/>
<rect x="130.4" y="119.16" width="8.31" height="1.7"/>
<path d="M76.93 93.05c-4.91 0-8.9 4-8.9 8.91V108h1.52v-6.04c0-1.78.72-3.48 2.03-4.8 1.42-1.41 3.31-2.2 5.35-2.2s3.93.79 5.34 2.2a6.76 6.76 0 0 1 2.03 4.8v6.03h1.53v-6.03a8.9 8.9 0 0 0-8.9-8.9z"/>
<path d="M100 93.05c-4.9 0-8.9 4-8.9 8.91V108h1.52v-6.04c0-1.78.72-3.48 2.04-4.8 1.41-1.41 3.3-2.2 5.34-2.2s3.93.79 5.35 2.2a6.76 6.76 0 0 1 2.03 4.8v6.03h1.53v-6.03a8.9 8.9 0 0 0-8.9-8.9z"/>
<path d="M123.07 93.05c4.9 0 8.9 4 8.9 8.91V108h-1.53v-6.04c0-1.78-.71-3.48-2.03-4.8a7.5 7.5 0 0 0-5.34-2.2 7.5 7.5 0 0 0-5.35 2.2 6.8 6.8 0 0 0-2.03 4.8v6.03h-1.53v-6.03c0-4.9 4-8.9 8.9-8.9z"/>
<rect x="84.37" y="107.98" width="8.31" height="1.07"/>
<rect x="107.38" y="107.98" width="8.31" height="1.07"/>
<rect x="107.38" y="119.16" width="8.31" height="1.7"/>
<rect x="61.29" y="107.98" width="8.31" height="1.07"/>
<rect x="130.4" y="107.98" width="8.31" height="1.07"/>
<polygon points="139.76 83.64 60.24 83.64 61.29 85.82 138.7 85.82"/>
<rect x="60.24" y="79.01" width="79.51" height="4.63"/>
<line fill="none" x1="91.1" y1="103.37" x2="91.1" y2="107.98"/>
<line fill="none" x1="85.83" y1="103.37" x2="85.83" y2="107.98"/>
<line fill="none" x1="61.49" y1="90.16" x2="138.52" y2="90.16"/>
</g>
<g fill="none" stroke-linejoin="round">
<line x1="100.11" y1="90.16" x2="100.11" y2="85.82"/>
<line x1="88.52" y1="90.16" x2="88.52" y2="85.75"/>
<line x1="111.7" y1="90.16" x2="111.7" y2="85.75"/>
<line x1="134.46" y1="90.16" x2="134.46" y2="85.75"/>
<line x1="123.09" y1="90.16" x2="123.09" y2="85.75"/>
<line x1="65.28" y1="90.16" x2="65.28" y2="85.82"/>
<line x1="76.88" y1="90.16" x2="76.88" y2="85.75"/>
<line x1="105.92" y1="94.57" x2="105.92" y2="90.22"/>
<line x1="94.34" y1="94.57" x2="94.34" y2="90.16"/>
<line x1="117.5" y1="94.57" x2="117.5" y2="90.16"/>
<line x1="128.89" y1="94.57" x2="128.89" y2="90.16"/>
<line x1="71.1" y1="94.57" x2="71.1" y2="90.22"/>
<line x1="82.69" y1="94.57" x2="82.69" y2="90.16"/>
<line x1="105.92" y1="83.48" x2="105.92" y2="79.14"/>
<line x1="94.34" y1="83.48" x2="94.34" y2="79.07"/>
<line x1="117.5" y1="83.48" x2="117.5" y2="79.07"/>
<line x1="128.89" y1="83.48" x2="128.89" y2="79.07"/>
<line x1="71.1" y1="83.48" x2="71.1" y2="79.14"/>
<line x1="82.69" y1="83.48" x2="82.69" y2="79.07"/>
<line x1="88.52" y1="98.99" x2="88.52" y2="94.57"/>
<line x1="111.7" y1="98.99" x2="111.7" y2="94.57"/>
<line x1="134.46" y1="98.99" x2="134.46" y2="94.57"/>
<line x1="65.28" y1="98.99" x2="65.28" y2="94.64"/>
<line x1="88.52" y1="107.8" x2="88.52" y2="103.39"/>
<line x1="111.7" y1="107.8" x2="111.7" y2="103.39"/>
<line x1="134.46" y1="107.8" x2="134.46" y2="103.39"/>
<line x1="65.28" y1="107.8" x2="65.28" y2="103.45"/>
</g>
<g fill="none" stroke-linejoin="round">
<line x1="102.92" y1="93.53" x2="102.23" y2="95.26"/>
<line x1="106.88" y1="96.16" x2="105.71" y2="97.56"/>
<line x1="108.78" y1="100.84" x2="107.44" y2="100.96"/>
<line x1="97.19" y1="93.53" x2="97.87" y2="95.26"/>
<line x1="93.22" y1="96.16" x2="94.39" y2="97.56"/>
<line x1="91.2" y1="100.84" x2="92.54" y2="100.96"/>
<line x1="108.91" y1="105.42" x2="107.57" y2="105.55"/>
<line x1="91.2" y1="105.42" x2="92.54" y2="105.55"/>
<line x1="125.98" y1="93.53" x2="125.3" y2="95.26"/>
<line x1="129.95" y1="96.16" x2="128.77" y2="97.56"/>
<line x1="131.85" y1="100.84" x2="130.51" y2="100.96"/>
<line x1="120.25" y1="93.53" x2="120.93" y2="95.26"/>
<line x1="116.28" y1="96.16" x2="117.45" y2="97.56"/>
<line x1="114.26" y1="100.84" x2="115.6" y2="100.96"/>
<line x1="131.97" y1="105.42" x2="130.63" y2="105.55"/>
<line x1="114.26" y1="105.42" x2="115.6" y2="105.55"/>
<line x1="79.73" y1="93.53" x2="79.05" y2="95.26"/>
<line x1="83.7" y1="96.16" x2="82.52" y2="97.56"/>
<line x1="85.59" y1="100.84" x2="84.25" y2="100.96"/>
<line x1="74" y1="93.53" x2="74.68" y2="95.26"/>
<line x1="70.03" y1="96.16" x2="71.2" y2="97.56"/>
<line x1="68.13" y1="100.84" x2="69.47" y2="100.96"/>
<line x1="85.72" y1="105.42" x2="84.38" y2="105.55"/>
<line x1="68.01" y1="105.42" x2="69.35" y2="105.55"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.1 KiB

View file

@ -1,52 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:BIA_Mosty_COA.svg" author="В.А. Ляхор" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="bridge2" stroke-width=".4">
<path d="M100.07 81.27A67.83 67.83 0 0062.32 92.7v17.91h4.7a6.3 6.3 0 016.32-6.12c3.33 0 6.12 2.7 6.39 6.12h6.3a14.36 14.36 0 0114.04-11.7c6.93 0 12.78 4.95 14.13 11.7h6.39a6.34 6.34 0 016.3-6.39 6.4 6.4 0 016.3 6.39h4.68V92.7a67.84 67.84 0 00-37.8-11.43zm-1.8 2.7v4.77c-2.88.09-5.76.36-8.64.72v-4.68c2.79-.45 5.67-.63 8.64-.81zm3.87.09c2.43.09 5.67.36 8.64.81v4.68a57.17 57.17 0 00-8.64-.81zm-16.47 1.53v4.68a72.68 72.68 0 00-8.37 2.34v-4.59c2.7-.99 5.49-1.8 8.37-2.43zm28.98.09c2.61.54 5.31 1.17 8.37 2.43v4.5c-2.79-.9-5.49-1.8-8.37-2.34zm-41.31 4.05v4.5a178.35 178.35 0 00-7.03 3.42v-4.23c2.1-1.44 4.5-2.61 7.03-3.69zm53.73 0c2.34 1.08 4.77 2.16 7.02 3.69v4.41a51.34 51.34 0 00-7.02-3.6zm-43.29 6.3c.54 0 .99.36.99.99v6.21h-1.89v-6.21c0-.63.45-.99.9-.99zm32.58 0c.54 0 .99.36.99.99v6.21h-1.98v-6.21c0-.63.45-.99.99-.99z"/>
<g fill="none" stroke-width=".36">
<path d="M66.19 93.33v4.41"/>
<path d="M73.25 94.14v-4.5"/>
<path d="M77.21 88.02v4.59"/>
<path d="M85.58 90.27v-4.68"/>
<path d="M89.54 84.78v4.77"/>
<path d="M98.18 88.74v-4.77"/>
<path d="M102.05 83.97v4.77"/>
<path d="M114.56 90.27v-4.68"/>
<path d="M110.69 84.78v4.77"/>
<path d="M126.98 94.14v-4.5"/>
<path d="M123.02 88.02v4.59"/>
<path d="M134 97.74v-4.41"/>
<path d="M68.92 103.32h-6.15"/>
<path d="M86.93 103.32h-9.27"/>
<path d="M123.11 103.32h-9.81"/>
<path d="M137.33 103.32h-6.57"/>
<path d="M90.8 92.16v4.68"/>
<path d="M109.34 92.16v4.68"/>
<path d="M73.25 97.29v4.86"/>
<path d="M126.89 97.29v5.13"/>
<path d="M62.25 103.68v-3.51a67.48 67.48 0 0137.82-11.43 67.4 67.4 0 0137.8 11.43v3.51a64.16 64.16 0 00-37.8-12.15 64.05 64.05 0 00-37.82 12.15z"/>
<path d="M70.06 95.67l1.39 2.52"/>
<path d="M81.71 91.26l.9 2.7"/>
<path d="M93.95 89.01l.27 2.79"/>
<path d="M106.28 89.01l-.27 2.79"/>
<path d="M118.52 91.26l-.9 2.7"/>
<path d="M130.13 95.67l-1.35 2.52"/>
<path d="M77.84 103.59l-1.17 1.8"/>
<path d="M68.63 103.5l1.38 1.98"/>
<path d="M86.93 103.32l1.71 1.26"/>
<path d="M92.78 98.46l.9 1.98"/>
<path d="M100.07 96.75v2.16"/>
<path d="M107.45 98.46l-.99 1.98"/>
<path d="M113.3 103.32l-1.8 1.26"/>
<path d="M122.39 103.68l1.08 1.71"/>
<path d="M131.39 103.68l-.99 1.71"/>
<path d="M64.75 110.7h0a8.5 8.5 0 018.5-8.55 8.49 8.49 0 018.55 8.55h0"/>
<path d="M83.78 110.7a16.53 16.53 0 0116.29-13.95c8.19 0 15.03 5.94 16.29 13.95"/>
<path d="M135.44 110.7h0a8.55 8.55 0 00-8.55-8.28 8.47 8.47 0 00-8.46 8.28h0"/>
<path d="M62.25 95.94a65.55 65.55 0 0141.06-11.88 65.7 65.7 0 0134.65 11.88"/>
<path d="M115.37 96.84H101.6"/>
<path d="M125.9 96.84h-8.55"/>
<path d="M82.88 96.84h-8.55"/>
<path d="M98.63 96.84H84.77"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200"><metadata license="https://creativecommons.org/licenses/by-nc-sa/3.0" source="http://wappenwiki.org/images/1/1e/Buttler.svg"/><g id="bucket" stroke-width=".34"><path d="M122.28 81.04c1.67-3.06 4.66-5.46 8.17-5.9 4.16-.7 8.59 1.45 10.54 5.2 2.32 4.4 1.4 9.93-1.19 13.99-2.88 4.64-7.9 7.12-12.34 9.99-3.5 2.42-7.1 4.91-9.53 8.47-5.41 4.25-3.55-.27-1.73-2.09 2.89-4.1 7.01-7.14 10.91-10.22 3.75-2.74 7.9-5.7 9.37-10.33.42-1.17.61-2.68.61-3.81 0-2.62-.65-5.54-3.1-6.93a7.14 7.14 0 00-7.97 1.15c-1.64 1.5-2.66 3.5-3.58 5.48z" class="secondary"/><path d="M122.28 87.2c1.62-2.98 4.5-5.34 7.92-5.86 4.17-.79 8.7 1.28 10.72 5.03 2.34 4.31 1.53 9.79-.96 13.84-2.64 4.47-7.3 7.03-11.58 9.67-3.88 2.6-7.87 5.28-10.56 9.2-5.35 4.1-3.37-.52-1.67-2.15 2.65-3.82 6.42-6.67 10-9.58 3.93-2.96 8.49-5.82 10.2-10.7.65-1.72.83-3.6.68-5.34-.15-2.4-1.16-4.95-3.5-5.97a7.23 7.23 0 00-7.76 1.61c-1.5 1.47-2.47 3.37-3.34 5.26-16.92 7.83-6.67 2.91-.15-5.02z" class="secondary"/><path d="M99.81 67.15a2.72 2.21 0 00-2.79 2.2c0 1.11-1.1 1.73-2.46 1.77-13.88.3-24.75 2.8-24.75 6.22 0 .21 8.67 49.64 8.67 49.64.72 3.38 8.28 5.74 18.53 5.74 9.66 0 17.6-2.3 18.44-5.23 0 0 10.92-54.51 10.92-54.7 0-3.26-11.66-5.35-26.56-5.64z"/><g transform="matrix(.85 0 0 .85 13 15)"><line x1="109.384" x2="105" y1="61.377" y2="125"/><path d="M73.52 68.91a574037.28 466066.04 0 001.65 10.4l1.06 6.67 1.12 7.07 1.13 7.17 1.08 6.8.97 6.12.8 4.99.55 3.52.26 1.62.01.07"/><line x1="89.751" x2="93.22" y1="67.349" y2="125"/><line x1="123.915" x2="113.835" y1="72.735" y2="136.63"/><line x1="108.492" x2="104.107" y1="74.665" y2="138.288"/><line x1="74.971" x2="84.236" y1="78.221" y2="136.63"/><line x1="90.495" x2="93.964" y1="80.637" y2="138.288"/></g><path d="M99.81 66.85h-.07c-1.5 0-2.72.69-2.72 1.91a2.53 2.06 0 01-2.46 2.06c-13.88.3-24.75 3.1-24.75 6.52 0 3.34 10.37 5.8 23.8 6.2h.12c1.8 0 3.3-1.19 3.3-2.66h0a2.67 2.17 0 012.6-2.16c14.99-.28 26.74-2.67 26.74-5.94 0-3.25-10.7-5.93-26.56-5.93zm18.41 9.04c-4.85 1.12-11.02 1.58-18.19 1.72a4.43 3.6 0 00-4.46 3.57 1.84 1.49 0 01-1.91 1.48c-6.4-.2-12.66-1.05-16.94-2.21-4.33-1.17-5.47-2.36-5.47-3.12 0-.78 1.62-2.4 6.17-3.6C81.9 72.56 88 72.06 94.6 71.92c2.18-.06 3.87-1.4 3.87-3.17 0-.57.57-1.02 1.27-1.02h.03c7.12.14 14.17.66 18.99 1.78 4.56 1.05 6.16 2.52 6.16 3.26 0 .75-2.1 2.04-6.7 3.1z"/><path d="M122.02 94.14c-1.98 3.7-11.64 5.57-24.65 5.57-13.03 0-23.17-2.3-24.68-5.57 0 0-.6-1.24-1.01-3.4-.28-1.48-.13-2.82-.13-2.82.75 3.68 11.98 5.9 25.81 5.9 13.83 0 25.2-2.25 26.02-5.9 0 0-.1 1.36-.23 2.47-.23 1.95-1.13 3.75-1.13 3.75z" class="secondary"/><path d="M117.3 120.19c-1.66 2.8-9.13 4.82-20.14 4.82-11 0-18.81-2.33-20.09-4.82l-1.02-4.9c-.23-1.12 0-1.6 0-1.6.63 2.8 9.44 5.96 21.12 5.96s20.6-3.19 21.29-5.96c0 0-.09 1.03-.2 1.87-.18 1.5-.96 4.63-.96 4.63z" class="secondary"/></g></svg>

Before

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -1,8 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="buckle" stroke-width=".7">
<path d="M117.2 134.72V65.9c0-1.92-1.53-2.96-3.44-2.96-1.92 0-3.46 1.04-3.46 2.96v68.82c0 1.92 1.54 2.96 3.46 2.96 1.91 0 3.45-1.04 3.45-2.96z"/>
<path d="M100.98 134.74c20.01 0 36.24-15.42 36.24-34.44S121 65.85 100.98 65.85c-20.02 0-36.25 15.43-36.25 34.45s16.23 34.44 36.25 34.44zm28.44-34.44c0 14.15-12.26 26.12-28.51 26.12S72.4 114.47 72.4 100.3s12.26-26.12 28.5-26.12 28.52 11.97 28.52 26.12z"/>
<path d="M110.75 105.86c-1.66-.4-2.2-1.42-2.25-2.56l-45.02 1.28-4.75-3.67a.76.76 0 010-1.18l4.75-3.67 45.02 1.28c.03-1.16.57-2.2 2.25-2.6l5.9-.76c.6-.07 1.22.24 1.5.78l2.04 3.88a3.8 3.8 0 010 3.29l-2.03 3.88c-.29.54-.9.88-1.52.78l-5.89-.73z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 906 B

View file

@ -1,18 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/4/45/Orange.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bugleHorn" stroke-width=".57">
<path class="secondary" d="M124 104.84a121.17 121.17 0 01-10.64-9.16c-.66-.66-1.34-1.34-2-2.09 4.48-6.18 6.73-11.52 6.73-16.54 0-3.14-.98-5.95-2.68-8.32a8.55 8.55 0 00-7.18-3.75 7.91 7.91 0 00-6.93 3.91 15.04 15.04 0 00-2.32 8.16c0 5.09 2.68 10.5 8.02 16.72-3.32 4.18-8.68 9.32-10.9 11.34.79.82 1.6 1.61 2.24 2.52 1.94-1.75 6.6-6.18 9.52-9.6l1.41-1.69 1.75 1.8c3.66 3.63 8.68 7.67 10.93 9.38.64-.93 1.27-1.86 2.05-2.68zm-14.93-13.82c-3.61-4.36-6.73-9.18-6.73-13.95 0-2.45.66-4.57 1.8-6.34a4.78 4.78 0 014.07-2.34c3.45 0 6.5 3.73 6.5 8.7 0 4.69-2.48 9.41-5.64 13.93z"/>
<path d="M109.07 91.02l2.27 2.6m-4.36.18l2.3 2.54m29.69-9.43s.05-1.68.34-4.3c.07-.93.46-2.29.46-2.63 0-.34-.35-1.64-4.19-1.64-3.84 0-4.45 1.32-4.45 1.64 0 .2.41 1.55.61 2.77.23 1.7.53 4.73.53 4.73l3.25 1.02 2.86-.68c-.05-.02.59-.25.59-.91z"/>
<path d="M131.13 79.98c0 .3 1.11 1.66 4.45 1.66s4.2-1.32 4.2-1.66"/>
<path fill="#111" stroke="none" d="M135.54 79.73c1.07 0 1.66.11 2 .2a6.2 6.2 0 01-2 .25 6.7 6.7 0 01-2.05-.25c.4-.09 1.03-.2 2.05-.2m0-.57c-2.66 0-3.1.64-3.1.8 0 .16.78.8 3.08.8s2.88-.62 2.88-.8c.05-.18-.2-.8-2.86-.8z"/>
<path d="M138.92 87.39l-1.88 1.34h-2.82l-.95-.27s-.8-1.07-1.03-1.07c0 .72.8 5.54-.5 11.88-2.1 10.3-11.63 17.13-23.88 17.13-5.81 0-10.7-3-14.15-7.15-2.27-2.75-4.25-5.91-5.43-14.55-.7-5.24.04-10.15.04-10.83 0-2.89 1.14-4.34 1.14-5.39 0-1.04-1.16-4.95-14.16-4.95s-15.06 4.02-15.06 4.95c1.18 9.3 1.64 9.3 2.18 16.8.98 6.4 3.93 15.37 8.73 21.9 8.09 10.95 17.97 17.7 32.1 17.7 17.2 0 28.54-12.98 32.9-25.36a60.4 60.4 0 002.55-12.32c.52-6.06.22-9.81.22-9.81z"/>
<path d="M74.92 97.2c10.52 0 13.29-4.27 13.29-4.27s0 0 0 0c-.25-3.25.27-7.97.4-9.47.15-1.87.87-3.96.87-4.98 0-1.04-1.16-4.95-14.15-4.95-13 0-15.07 4.02-15.07 4.95.18 1.84.37 3.5.53 4.98.6 5.68 1.1 8.79 1.45 10.58 0 0 2.16 3.16 12.68 3.16z"/>
<path d="M75.1 87.27c9.34 0 12.81-2.5 13.52-3.81.64-1.5.86-4.25.86-4.98 0-1.04-1.16-4.95-14.15-4.95s-15.07 4.02-15.07 4.95c0 .32-.18 3.16.53 4.98 1.09 1.31 5.43 3.81 14.31 3.81z"/>
<path d="M60.26 78.48c0 .91 3.77 4.86 15.04 4.86s14.16-3.84 14.16-4.86"/>
<path d="M87.28 78.41c0-.72-.98-3.27-12.02-3.27s-12.82 2.64-12.82 3.27c0 .66 3.2 3.32 12.8 3.32 9.58.02 12.04-2.59 12.04-3.32z"/>
<path class="secondary" d="M62.63 96.7s2.5 2.66 12.77 2.66c10.92 0 13.2-4.27 13.2-4.27s.36-.6.2-1.27c-.16-.68-.59-.91-.59-.91s-2.8 4.27-13.3 4.27c-10.51 0-12.67-3.16-12.67-3.16s-.39.37-.39 1.12c-.02.84.78 1.56.78 1.56z"/>
<path class="secondary" d="M74.7 121.92s3.85 1.16 11.65-3.15c7.79-4.32 7.97-8.7 7.97-8.7s-.27-1.05-.82-1.6c-.54-.54-1.31-1.18-1.31-1.18s-.07 4.27-7.87 8.59c-7.79 4.32-12.02 3.1-12.02 3.1s.1.76.66 1.65c.6.86 1.73 1.3 1.73 1.3zm60.86-9.22c.2-.84.07-1.66.07-1.66s-1.27.52-4.36-1c-3.1-1.52-3.18-2.84-3.18-2.84s-.8.25-1.48 1.14c-.66.88-.68 1.38-.68 1.38s.32 1.75 3.4 3.27c3.1 1.53 4.96 1.16 4.96 1.16s.7-.04 1.27-1.45z"/>
<path class="secondary" d="M132.2 88.34s.61 1.57 3.4 1.57c2.82 0 3.42-1.77 3.42-1.77s.18-.41.18-1.2c0-.48-.18-1.03-.18-1.03s-.6 2.02-3.41 2.02c-2.82 0-3.52-1.68-3.52-1.68s-.2.39-.2 1c.04.73.3 1.1.3 1.1z"/>
<path class="secondary" d="M95.78 106.04c.66 0 1.18.52 1.18 1.18a1.19 1.19 0 11-2.37 0 1.16 1.16 0 011.19-1.18m0-2.25c-1.89 0-3.43 1.55-3.43 3.43s1.54 3.43 3.43 3.43c1.88 0 3.43-1.54 3.43-3.43s-1.55-3.43-3.43-3.43h0zm28.99 2.57c.66 0 1.18.52 1.18 1.18 0 .66-.52 1.18-1.18 1.18-.66 0-1.18-.52-1.18-1.18 0-.63.52-1.18 1.18-1.18m0-2.25a3.44 3.44 0 00-3.43 3.43 3.44 3.44 0 003.43 3.43 3.44 3.44 0 003.43-3.43 3.44 3.44 0 00-3.43-3.43h0z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -1,16 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/a/a2/Horn.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bugleHorn2" stroke-width=".57">
<path d="m 138.97,86.91 c 0,0 0.05,-1.68 0.34,-4.3 0.07,-0.93 0.46,-2.29 0.46,-2.63 0,-0.34 -0.35,-1.64 -4.19,-1.64 -3.84,0 -4.45,1.32 -4.45,1.64 0,0.2 0.41,1.55 0.61,2.77 0.23,1.7 0.53,4.73 0.53,4.73 l 3.25,1.02 2.86,-0.68 c -0.05,-0.02 0.59,-0.25 0.59,-0.91 z"/>
<path d="M131.13 79.98c0 .3 1.11 1.66 4.45 1.66s4.2-1.32 4.2-1.66"/>
<path fill="#111" stroke="none" d="M135.54 79.73c1.07 0 1.66.11 2 .2a6.2 6.2 0 01-2 .25 6.7 6.7 0 01-2.05-.25c.4-.09 1.03-.2 2.05-.2m0-.57c-2.66 0-3.1.64-3.1.8 0 .16.78.8 3.08.8s2.88-.62 2.88-.8c.05-.18-.2-.8-2.86-.8z"/>
<path d="M138.92 87.39l-1.88 1.34h-2.82l-.95-.27s-.8-1.07-1.03-1.07c0 .72.8 5.54-.5 11.88-2.1 10.3-11.63 17.13-23.88 17.13-5.81 0-10.7-3-14.15-7.15-2.27-2.75-4.25-5.91-5.43-14.55-.7-5.24.04-10.15.04-10.83 0-2.89 1.14-4.34 1.14-5.39 0-1.04-1.16-4.95-14.16-4.95s-15.06 4.02-15.06 4.95c1.18 9.3 1.64 9.3 2.18 16.8.98 6.4 3.93 15.37 8.73 21.9 8.09 10.95 17.97 17.7 32.1 17.7 17.2 0 28.54-12.98 32.9-25.36a60.4 60.4 0 002.55-12.32c.52-6.06.22-9.81.22-9.81z"/>
<path d="M74.92 97.2c10.52 0 13.29-4.27 13.29-4.27s0 0 0 0c-.25-3.25.27-7.97.4-9.47.15-1.87.87-3.96.87-4.98 0-1.04-1.16-4.95-14.15-4.95-13 0-15.07 4.02-15.07 4.95.18 1.84.37 3.5.53 4.98.6 5.68 1.1 8.79 1.45 10.58 0 0 2.16 3.16 12.68 3.16z"/>
<path d="M75.1 87.27c9.34 0 12.81-2.5 13.52-3.81.64-1.5.86-4.25.86-4.98 0-1.04-1.16-4.95-14.15-4.95s-15.07 4.02-15.07 4.95c0 .32-.18 3.16.53 4.98 1.09 1.31 5.43 3.81 14.31 3.81z"/>
<path d="M60.26 78.48c0 .91 3.77 4.86 15.04 4.86s14.16-3.84 14.16-4.86"/>
<path d="M87.28 78.41c0-.72-.98-3.27-12.02-3.27s-12.82 2.64-12.82 3.27c0 .66 3.2 3.32 12.8 3.32 9.58.02 12.04-2.59 12.04-3.32z"/>
<path class="secondary" d="M62.63 96.7s2.5 2.66 12.77 2.66c10.92 0 13.2-4.27 13.2-4.27s.36-.6.2-1.27c-.16-.68-.59-.91-.59-.91s-2.8 4.27-13.3 4.27c-10.51 0-12.67-3.16-12.67-3.16s-.39.37-.39 1.12c-.02.84.78 1.56.78 1.56z"/>
<path class="secondary" d="M74.7 121.92s3.85 1.16 11.65-3.15c7.79-4.32 7.97-8.7 7.97-8.7s-.27-1.05-.82-1.6c-.54-.54-1.31-1.18-1.31-1.18s-.07 4.27-7.87 8.59c-7.79 4.32-12.02 3.1-12.02 3.1s.1.76.66 1.65c.6.86 1.73 1.3 1.73 1.3zm60.86-9.22c.2-.84.07-1.66.07-1.66s-1.27.52-4.36-1c-3.1-1.52-3.18-2.84-3.18-2.84s-.8.25-1.48 1.14c-.66.88-.68 1.38-.68 1.38s.32 1.75 3.4 3.27c3.1 1.53 4.96 1.16 4.96 1.16s.7-.04 1.27-1.45z"/>
<path class="secondary" d="M132.2 88.34s.61 1.57 3.4 1.57c2.82 0 3.42-1.77 3.42-1.77s.18-.41.18-1.2c0-.48-.18-1.03-.18-1.03s-.6 2.02-3.41 2.02c-2.82 0-3.52-1.68-3.52-1.68s-.2.39-.2 1c.04.73.3 1.1.3 1.1z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -1,17 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bullHeadCaboshed" stroke-width=".3">
<path class="secondary" d="M111.33 86.02c1.3-.92 2.46-3.23 3.68-4.16 0 0 .76.01 1.7-.66 2.22-1.56 1.93-3.93 1.39-5.24-2.15-5.21-12.23-3.2-16.1-9.99-1.78-3.1-.49-6.9.61-7.31.77-.3-.17 1.61 1 3.44 3.89 6.1 17.3 2.58 23.27 11.02a10.4 10.4 0 011.83 5.84c.26 8.81-8.43 11.97-11.67 12.48-1.72 1.72-2.53-.01-4.2-.01m-24.08-5.41c-1.3-.92-2.45-3.23-3.68-4.16 0 0-.76.01-1.7-.66-2.22-1.56-1.93-3.93-1.39-5.24 2.15-5.21 12.23-3.2 16.1-9.99 1.78-3.1.49-6.9-.61-7.31-.77-.3.17 1.61-1 3.44-4.04 6.35-17.42 2.46-23.27 10.72-1.4 1.96-1.77 4.35-1.83 6.14-.26 8.81 8.44 11.97 11.67 12.48 1.72 1.72 2.53-.01 4.2-.01"/>
<path d="M114.73 92.4s3.4-1.7 5.41-1.7c3.65 0 5.83 2.27 8.87 2.27 1.83 0 3.4-.85 4.06-1.27.32-.09.3.03.33.23-.08 1.23-1.67 4.56-4.9 6.32-.28.7-2.24 1.92-3.04 1.92-.3.24-1.07.94-3.5.94-3.4 0-7.16-1.94-7.16-2.42M85.21 92.4s-3.4-1.7-5.4-1.7c-3.65 0-5.84 2.27-8.87 2.27-1.83 0-3.4-.85-4.07-1.27-.31-.09-.3.03-.32.23.07 1.23 1.67 4.56 4.9 6.32.28.7 2.23 1.92 3.04 1.92.3.24 1.07.94 3.5.94 3.4 0 7.16-1.94 7.16-2.42"/>
<path d="M82.7 91.7c-.82 4.79 1.36 5.5 1.24 6.75-1.6 5.22 1.35 6.57 1.35 9 0 1.78.22 1.69.68 3.84.26 1.7 1.8 3.79 2.81 5.78.25.5 1.06 3.97 1.06 4.27 0 .14-1.03 1.82-1.03 4.48 0 3.66 2.14 5.8 3.59 5.8 4.5 0 5.28-.47 7.57-.47 2.3 0 3.06.48 7.58.48 1.45 0 3.58-2.15 3.58-5.8 0-2.67-1.02-4.35-1.02-4.49 0-.3.8-3.78 1.05-4.27 1.01-2 2.56-4.07 2.82-5.78.45-2.15.68-2.06.68-3.84 0-2.43 2.96-3.77 1.35-9-.14-1.25 2.06-1.95 1.23-6.75l-.19-.25c-2.25-1.44-2.4-6.7-1.99-9.5-1.04-1.08-3.32-1.57-6.75-1.57s-5.92 1.2-8.34 1.2c-2.41 0-4.9-1.2-8.33-1.2s-5.71.49-6.76 1.57c.42 2.8.28 8.06-1.99 9.5l-.18.25z"/>
<path fill="#F2BC51" d="m 108.72,124.86 c -0.13,0.71 -0.84,1.42 -1.24,1.68 0.75,1.32 1.19,2.81 1.2,4.34 0.026,4.78 -3.88,8.67 -8.67,8.67 -4.78,0 -8.67,-3.88 -8.67,-8.67 0,-1.55 0.5,-3.1 1.2,-4.35 -0.63,-0.42 -1.02,-1.04 -1.22,-1.7 -1.22,1.7851 -1.92,3.89 -1.93,6.06 -0.02,5.87 4.75,10.63 10.63,10.63 5.87,0 10.67,-4.75 10.63,-10.63 -0.01,-2.15 -0.72,-4.24 -1.93,-6.03 z"/>
<path fill="#F6F6F6" d="M111 100.6c0 .43.68 1.2 2.3 1.2 1.22 0 1.83-2.59 1.83-2.8 0-.22-.03-1.36-1.13-1.36-1.2-.01-3 2.99-3 2.96zm-22.04 0c0 .43-.68 1.2-2.3 1.2-1.23 0-1.83-2.59-1.83-2.8 0-.22.03-1.36 1.13-1.36 1.19-.01 3 2.99 3 2.96z"/>
<path fill="none" stroke-width=".22" d="M112.08 91.93c-.42.47-1.18.92-2.48 1.11-.23.01-.3-.05-.2-.17.47-.6.6-1.19.6-1.67m-2.7 1.4c-.52.38-1.3.7-2.5.9-.16.04-.35.14-.23-.1.42-1-.09-2.3-.09-2.3m-1.43 1.75c-.23.5-.4 1.1-.38 1.77.01.21-.09.21-.34.16a2.14 2.14 0 01-1.55-1m-.56-2s-.2 1.93-2.3 2.42c-.2.01-.34.1-.48-.08.34-.49.35-.87.18-1.2m-2-1.34c-.3.52-.62 1.05-.05 1.77.16.26-.05.24-.28.2-1.27-.22-1.8-.68-2.05-1.21m-1.7-1.83c.62 1.03-1.41 1.35-.25 2.33.03.29-.2.3-.49.3-1.68 0-2.32-.72-2.8-1.5"/>
<g fill="#000" stroke="none">
<path d="M95.78 67.1c.23.58-1.3 1.41-1 .97.39-.28.68-.64 1-.97zm-2.04.97c.16.73-.75 1.4-1.41 1.09a1.65 1.65 0 001.41-1.09zm-1.88.78c-.07.53-.9.93-1.16.82.4-.27.79-.53 1.16-.82zM74.02 81.99c-.03.68.8 2.66-.05 1.18-.12-.38-.14-.82.05-1.18zm1.23 2.18c.28.54.67 1.72.01.69a.87.87 0 01-.01-.69zm1.47 1.73c.02.31.8 1.35.12.82-.22-.2-.26-.56-.12-.82zm1.56 1.27c-.09.5 1.32 1.53.7 1.36a1.3 1.3 0 01-.7-1.36zm5.36-5.65c-1.44-.67-3-1.95-2.96-3.68.08 1.68 1.64 2.82 3.07 3.41l-.07.17zM104.3 67.1c.19.4 1.77 1.43.67 1-.34-.2-.71-.6-.67-1zm2.06.97c-.1.76 1.98 1.11.98 1.15-.55-.04-1.1-.58-.98-1.15zm1.87.78c.81.43 1.68 1.31.31.48-.15-.12-.24-.3-.31-.48zm17.85 13.14c.4.55-.02 1.68-.41 1.78a5 5 0 00.41-1.78zm-1.24 2.18c.5.53-.89 1.76-.25.67.09-.22.18-.45.25-.67zm-1.47 1.73c.54.54-.94 1.53-.19.52 0-.19.17-.34.19-.52zm-1.56 1.27c.25.6-.52 1.5-.91 1.38.4-.37.78-.83.91-1.38zm-5.47-5.91c1.43-.6 3-1.72 3.07-3.41.05 1.74-1.54 2.99-2.96 3.69l-.07-.17zm-20.51 8.85c.53.44.07 1.3-.13 1.55l-.19-.11s.16-.23.36-.58c.1-.25 0-.64-.04-.86zm8.75-1.01c-.5.53-.16 1.18.01 2 0 .04-.16.04-.18.08-.3-.47-.46-1.7.17-2.08zm5.48 32.5c-.2-.74-.92-1.2-1.48-1.58.83.03 1.57.7 1.81 1.49l-.17.05zm-6.89-2.68c-1.9.36-3.87.75-5.77.08-1.61-.33 2.07.25 2.74.17 1.02.02 2-.37 3.03-.25zm1.68-37.61c-2.3.95-4.81.17-7.2.5-.65.29-3.73-.83-1.64-.29 2.2.25 4.42-.17 6.62.13.75.01 1.5-.1 2.22-.34zm4.06 41.29c-.01 1.25.19 3.11-1.19 3.93-.4.18-.57.43-.87.47-.23.03.28-.39.46-.5 1.47-.99 1.45-2.41 1.45-3.75-.21-.02.18-.27.15-.15z"/>
<path d="M108.5 122c-.81.91.22 2.7-1.02 3.33.95-.87-.06-2.64 1.02-3.33zm9.24-27.8c1.92-1.55 4.6-1.64 6.79-.62 2.22.72 4.77.65 6.88-.19-2.73 1.55-6.03.96-8.84-.05-1.63-.54-3.41.08-4.83.86zm4.23.57a5.56 5.56 0 00-3.29 1.71c-.63.19-.87-1.15-.29-.22.95-.68 2.14-1.83 3.57-1.49zM117 97.94c2.8 1.96 6.54 1.95 9.53.44 1.33-.73 3.03-1.94.96-.31-3.07 2.12-7.57 2.45-10.49-.13zm-7.33 28.7c.27-.83.14-1.91-.11-2.66-.68-2.16.8.93.58 1.84-.01.35-.08.82-.28 1.17zm.32.71c.23-.4.37-.86.42-1.29.1.5-.03 1.08-.3 1.53zm-6.24 2.85c-2.52-.3-5.03-.11-7.55.04 2.42-.47 5.07-.56 7.55-.04zm3.8-27.86c-.83 3.13-.28 6.54-1.66 9.57-.38 1.17-1 2.9-.37.47 1.2-3.07.99-6.44 1.8-9.59.1-.12.1-.35.23-.45zm3.51 0c1.11-.27 2.65.65 3.41-.63 1.31-2.06.27 1-1.43 1-.69.01-1.35-.43-1.98-.37zm4.1 3.31c-.4 1.3-.98 2.66-1.52 3.86a7.93 7.93 0 011.52-3.86zm-2.59-8.42c-.11-1.44 3.31-.47 2.09-.43-.71-.11-1.6-.13-2.09.43zm-3.4 4.14c2.33-1.45 2.78-4.27 3.98-6.5 1.2-1.2-.07.09-.17.72-.74 2.23-1.56 4.67-3.81 5.78zm-2.89-7.21c.22.4-.24 1.84-.37 1.58-.05-.56.32-1.03.37-1.58zm.66 1.86c-.4.26-1 1.83-.69.52.15-.25.4-.49.69-.52zm-.32 1.58c-.27 1.11-.8.55-.05.01zm.22.97c.12.78-.5.77-.1.07a.24.24 0 01.1-.07zm.3 1.12c.37.8-.3.76-.07.04l.03-.03zm1.02 15.18c-.29 1.07-.87.5 0 0zm-.11 1.29c.08 1-.52.73-.14.07a.22.22 0 01.14-.07zm.73-3.96c-.31.22-.97 1.45-.7.5.13-.27.42-.5.7-.5zm-.5 1.58c-.58 1-.97.38-.04.01h.04zm.8-15.33c.18-1.12.66-2.61 1.75-3.01-.84.82-1.14 2.04-1.75 3.01zm-19.49 23.07c.22-.76 1.02-1.53 1.81-1.46-.63.35-1.28.82-1.48 1.55 0 .12-.34-.22-.33-.09zm6.61-1.72c1.91.1 3.85.86 5.76.2.8-.29 2.58-.25.86.01-1.9.81-3.99.67-5.87-.07-.24-.09-.54-.06-.75-.14zm-5.09 2.8c.38 1.13.11 2.9 1.36 3.74.73.33 1.64 1.4.2.45-1.58-1.05-1.57-2.76-1.56-4.19z"/>
<path d="M91.52 121.98c1.05.79.07 2.46 1 3.36-1.25-.75-.18-2.44-1-3.36zM82.2 94.21a6.47 6.47 0 00-6.28-.44c-2.32.78-5.28.89-7.33-.43 3 1.43 6.35.4 9.38-.43a5.8 5.8 0 014.23 1.3zm-4.22.55c1.48-.33 2.59.83 3.58 1.51.45-.7.44.03-.11.21-.83-.08-1.16-1.2-2.06-1.33-.42-.16-1.04-.3-1.41-.39zm4.97 3.19c-3.37 2.87-8.74 2.16-11.73-.9 3.03 2.38 7.76 3.44 11.23 1.16l.51-.26zm7.2 28.99c-.4-.82-.37-2 .03-2.77.64-1.72.44-.57.12.58-.13.59-.15 1.3.05 1.9zm-.22.66a2.02 2.02 0 01-.32-1.56c.04.5.19.97.44 1.36zm2.49-25.26c1.12 2.9.65 6.2 1.74 9.15.42 1.17.85 3.55.09.95-1.43-3.03-1.17-6.42-1.7-9.62.52.18-.37-.52-.13-.48zm-3.53 0c-1.17.1-2.68 1.02-3.5-.31-.91-1.65-.14-.53.62.2.88.63 1.97-.22 2.88.12zm-4.09 3.31c.69 1.13 1.54 2.57 1.46 3.87-.47-1.3-1.12-2.56-1.46-3.87zm2.58-8.41c-.63-.75-1.76-.4-2.53-.42.7-.52 2.23-.65 2.53.42zm3.39 4.14c-2.59-1.15-3.13-4.12-4.13-6.42-1.07-1.26.47.05.55.74.84 2.08 1.56 4.47 3.58 5.68zm2.91-7.22c.12.31.54 2.16.24 1.48-.14-.48-.46-.98-.24-1.48zm-.66 1.85c.99.23.94 1.79.31.34-.11-.1-.2-.24-.31-.34zm.32 1.59c.91.63.3 1.28 0 0zm-.22.97c.57.45-.03 1.08.01.13zm-.3 1.12c.43.55-.45 1.1-.03.09.05 0-.02-.1.03-.09zm19.33-.84c.25 1.15-1.06 3.16.95 1.54.56-.7.77-1.86.16-2.59M87.8 98.85c-.25 1.15 1.06 3.16-.95 1.53-.57-.7-.76-1.84-.17-2.58m5.12 17.07c.62.16.47 1.16.12.25l-.06-.12zm.1 1.28c.6.43-.04 1.24.01.04v-.04zm-.73-3.97c.59-.2 1.08 1.43.55.64a5.61 5.61 0 00-.55-.64zm.5 1.59c.83.1.8 1.2.12.12a.46.46 0 00-.12-.12zm-.82-15.32c-.54-1.02-1-2.19-1.7-3.05 1.08.54 1.56 1.95 1.7 3.05zm.61-7.88c-.37-.55-.67-1.48-.15-2.02-.43.6.13 1.43.33 1.92zm8.66 1.2c.4-.83-.9-2.45-.65-2.32.49.21 1.09 1.67.86 2.33-.04.11-.1-.05-.21-.01zm-6.87-8.28c1.24 1.75.47 3.88.62 5.82.18 1.46-.6-1.93-.12-2.4a6.63 6.63 0 00-.5-3.42zm4.57 0c.93 1.66.12 3.44-.07 5.15.36 1.57-.18.48-.16-.4.24-1.58.8-3.16.23-4.75zm-8.86-.11c-.3 2.16-.17 4.5.7 6.47-1.23-1.87-1.3-4.38-.7-6.47zm18.1.22c-1.03 1.88.48 4.16-.55 5.98.7-1.95-.77-4.2.55-5.98zm-4.61 0c-.82 1.8.62 4.07-.45 5.79.74-1.86-.66-4.1.45-5.79zm8.48-.22c-.85 1.88.9 4-.11 5.77.65-1.91-1.08-3.94.11-5.77zm4.62 14.73c-.41-.32-2.27-.29-1.16-.61.37.07 1.13.15 1.16.61zm-4.34 2.47s-2.01 2.35-1.12.95c.2-.14.84-1.09.84-1.09zM84.38 98.1c.12-.66 2.03-.81 1.4-.3-.49-.02-1 .14-1.4.3zm4.6 2.31c.5.3 1.58 2.34.82 1.35-.18-.39-.56-.65-1-1.17z"/>
<path d="M76.58 94.09c-.65.97-1.94 1.47-3.01 1.61 1.02-.48 2.19-.81 3.01-1.61zm.96-.13c-.03.72-.7 1.4-1.33 1.55.48-.47 1.07-.9 1.33-1.55zm45.84.12c.83.8 2.05 1.1 2.99 1.62-1.1-.22-2.33-.65-2.99-1.62zm-.96-.12c.17.6 1.2 1.25 1.24 1.54-.62-.26-1.2-.86-1.24-1.54zM109.9 91.2c.03-.14-.27-1.37-.04-1.08.15.2.48 1.46.04 1.08zm2.64-.73c.42.33-.2 1.52-.42 1.55-.05 0-.14-.02-.14-.16a2 2 0 00.56-1.39zM107.93 92c-.21.42-.57.7-.57.7l-.14-.18s.34-.26.72-.52zm-7.24 1.85c-.3-.25-.49-1.57-.12-.65.05.17.64.96.12.65zm-3.15-.87c-.06-.31-1.29-1.3-.42-.79.21.12.97.93.42.79zm-4.41-.59c-.22-.28-.3-2.16-.06-1.11-.1.27.55 1.34.06 1.11zm-5.22-.69c.04-.46-1.87-2.23-.79-1.48.27.29 1.38 1.56.79 1.48zm15.7.27c-.2.36-.36.73-.48.94l-.2-.08c.13-.35.5-.82.68-.86z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9 KiB

View file

@ -1,21 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="bullPassant" stroke-width=".302">
<path class="secondary" d="M75.045 119.674s.558.301.694.754c.242 1.01-.906 2.851-1.66 3.62-.227.242-.664-1.04-.89-1.9 0 0-.016.452.06.8l.105.573s-.407.573-.8.935c-.241-.483-.06-1.086-.256-2.006-.151-.725.619-1.253 1.192-1.72.574-.468 1.555-1.056 1.555-1.056zm52.995 7.18s.196.604-.03 1.027c-.529.89-2.627 1.433-3.698 1.463-.333.015.241-1.207.679-1.991 0 0-.332.317-.513.618l-.317.483s-.695.12-1.223.12c.166-.512.71-.829 1.207-1.614.393-.618 1.314-.467 2.053-.407.725.046 1.842.302 1.842.302zm-13.238-1.538s.197.604-.03 1.026c-.528.89-2.626 1.433-3.698 1.463-.332.015.242-1.207.68-1.991 0 0-.333.317-.514.618l-.317.483s-.694.12-1.222.12c.166-.512.709-.829 1.207-1.613.393-.619 1.313-.468 2.053-.408.724.046 1.841.302 1.841.302zm-29.674 1.539s.196.603-.03 1.026c-.529.89-2.627 1.433-3.699 1.463-.332.015.242-1.207.68-1.991 0 0-.332.317-.514.618l-.317.483s-.694.12-1.222.12c.166-.512.71-.829 1.207-1.614.393-.618 1.313-.467 2.053-.407.725.046 1.842.302 1.842.302z"/>
<path d="M78.984 109.414c-2.052 1.434-6.596.589-6.279 1.796.076.377 0 1.161.695 3.002.498 1.509.89 2.293 1.207 2.866.272.483.438.332.77.529.332.196.241.513.513.8-.453.452-1.057-.137-1.283.105.015.8 1.042.89.785 1.539-.438.588-2.46 2.263-3.125 2.625a2.006 2.006 0 0 1 .015-1.087c.106-.362.151-1.01-.045-1.554-.196-.528-.619-1.086-.664-1.765-.09-1.161-.392-2.565-.604-3.334-.287-.89-1.041-2.082-1.675-3.213-.528-.785-.151-1.087-.151-1.735s-.392-1.147.362-1.735a14.188 14.182 0 0 1 2.823-1.766c.241-.241 4.075-3.319 4.936-3.771"/>
<path class="secondary" d="M70.079 81.005c.664-1.493-.498-2.127-.498-2.127.15.03-1.48-.422-1.389-1.87.121-2.158 2.52-2.52 2.868-4.919.12-1.358-.845-2.082-.966-2.112-.302-.06.136.709.015 1.327-.543 2.49-4.377 2.686-4.98 6.005-.71 3.304 3.124 4.783 2.807 4.722 0 0 1.479.468 2.143-1.026z"/>
<path d="M67.287 82.997c-.076.166-1.676.166-2.823-.407-.815-.423-.951-.785-1.011-.92-.272-.136-.725-.876-.695-1.162-.785-1.147-.754-2.535-.573-2.957.045-.06.332-.076.422 0 .151.256.257.784.876 1.086 1.026.513 2.143.136 3.366.754a6.294 6.291 0 0 1 1.524 1.494m43.622 24.335c.166.574.423 1.252.755 1.946.815 1.675 2.31 2.309 2.596 4.481.453 2.293.166 5.04-.74 7.498-.286.71-.588 2.264-1.086 3.425-.317.77-.816 1.283-1.072 1.584-.287.347-.634.438-.951.619a1.962 1.961 0 0 0-.77.77c.725.195 3.351.376 4.076.27.618-.3.196-1.644.498-1.659.332-.015.362.83.996.815 0-.392.166-.92.15-1.252-.03-1.056-.452-.875.544-3.636 1.51-4.089 2.52-5.085 3.05-6.126.331-.648.06-2.112-.016-3.032.423-1.162-.06-4.134.559-5.809"/>
<path d="M127.98 78.32c-5.434 0-15.638 3.545-25.011 3.545-4.151 0-5.419-1.72-5.419-3.364 0-2.7 2.672-3.214 4.272-3.214 2.37 0 4.452 1.434 8.679 1.434 3.773 0 5.705.845 8.649.845 4.332 0 6.233-1.343 7.426-2.656a5.132 5.13 0 0 1 3.638-.965c-1.223-1.433-4.634-.272-5.525.12-1.645.076-2.958-1.025-5.66-1.025-2.838 0-3.638 1.523-8.468 1.523-3.592 0-5.615-1.478-8.8-1.478-1.977.03-6.701.513-6.701 5.431 0 4.587 4.543 5.748 7.909 5.748 8.86 0 18.702-3.5 25.086-3.5 6.536 0 8.876 3.681 8.876 6.79 0 2.292-1.012 4.284-3.351 4.284-2.355 0-3.05-2.972-4.77-4.315-1.751-1.569-5.389-2.7-7.819-2.7-3.35 0-5.237.316-7.577.497-.875.076-6.385.65-10.188.755a52.98 52.955 0 0 1-10.883-.905c-3.155-.619-6.068-1.78-7.215-1.977-1.011-.166-1.57-.12-2.008-.12a3.517 3.515 0 0 0 .453-2.264c-.045-.06-.332-.105-.422-.03-.181.242-.332.755-.981.996-1.012.392-1.978-.257-3.85.694l-.045-.045c-.437.075-1.162.135-1.615-.408-.392-.467-.498-1.463-.09-1.946.06.136.166.257.317.302-.046-.166.075-.317.135-.468.121-.256.166-.649.09-.905-.316-.06-.497-.422-.814-.528-.408-.136-.92.211-1.238-.06-.181-.151-.211-.453-.422-.559-.197-.105-.438-.015-.65-.06-.196-.045-.362-.211-.558-.241-.241-.03-.468.15-.725.15-.286 0-.573-.24-.845-.135-.18.075-.302.287-.498.271-.12-.015-.196-.105-.317-.135-.241-.06-.438.18-.604.377-.15.196-.452.377-.634.196-.09-.09-.105-.272-.226-.332-.15-.075-.302.09-.392.226-.166.242-.332.8-.74.649-.166-.06-.287-.287-.438-.392-.045-.03-.603-.211-.588-.136.09.513.015.996-.015 1.509 0 .12-.016.226-.06.332-.061.12-.182.21-.288.316a2.158 2.157 0 0 0-.588.95c-.03.106-.046.212-.121.288-.09.09-.227.12-.332.166-.347.15-.453.497-.453.86 0 .362.181.8.03 1.131a.477.477 0 0 0-.211.211c-.09.046-.121.015-.181 0a.172.172 0 0 1-.181.09c-.03.061-.03.137-.03.212-.016.453-.302.679-.56.996-.452.543-.678 1.252-.995 1.84-.136.347-.272.68-.468.996-.257.74-.604 1.026-1.223 1.343-.483.241-1.011.528-1.222 1.026a1.419 1.418 0 0 0-.106.558c0 .935.785 1.478.981 2.353.045.212.076.423.211.589.348.452 1.042.241 1.6.301.076.363-.06.363-.362.589l-.12.105a.636.636 0 0 0-.167.604 1.51 1.509 0 0 0 .83.95c.393.197.59.242 1.072.317.574.09 1.087.046 1.645-.12s1.072-.498 1.359-1.011c.075-.136.12-.287.12-.287.499-.317 1.163-1.6 1.842-1.946a3.217 3.217 0 0 1 2.008-.302l.075.015c2.717 2.776.634 6.473 2.415 9.188.619.95 1.344 1.403 2.52 3.169 1.178 1.765 1.163 3.062 1.646 3.71.468.68 1.811 1.42 3.11 1.404.603 1.66 1.192 3.47 1.192 3.47s.03 1.116.332 2.444c.302 1.358.86 2.927.89 4.255 0 1.267-.241 4.118-.86 4.888-.287.347-.634.437-.95.618a1.962 1.961 0 0 0-.77.77c.724.196 3.35.377 4.075.271.619-.301.196-1.644.498-1.66.332-.014.362.83.996.816 0-.393.166-.92.15-1.253-.03-1.056-.497-1.539-.618-4.465-.12-4.36.483-5.658.589-6.82.03-.332.09-1.855.136-3.002.996-.106 2.143.347 3.864.166 4.588-.468 5.252-.257 8.06-1.84 3.502 0 6.46-4.21 15.622-4.21.966 0 2.355.483 2.943.875.378.619.876 1.6.876 1.6s.815 1.478 2.28 2.866c1.358 1.282 2.852 1.237 3.939 3.153a14.34 14.333 0 0 1 2.158 7.242c0 1.267-.287 4.119-.92 4.888-.287.347-.635.437-.952.619a1.962 1.961 0 0 0-.77.769c.725.196 3.352.377 4.076.272.619-.302.196-1.645.498-1.66.332-.015.362.83.996.815 0-.393.166-.92.151-1.253-.03-1.056-.573-1.538-.694-4.465-.12-4.36.558-5.658.664-6.82.06-.724-.74-1.991-1.147-2.806-.045-1.237-1.374-3.606-1.374-5.386.483-1.237 1.072-4.737 1.072-5.824 1.51-2.413 1.706-6.608 1.706-6.608s1.192 1.554 3.471 1.554c4.015 0 6.083-2.972 6.083-7.272 0-7.106-6.294-9.429-11.486-9.429z"/>
<path class="tertiary" d="m64.66 94.78-.513-.211h-.015c-.121.256-.181.513-.363.739a3.804 3.802 0 0 1-.588.619c-.438.392-1.223.769-1.419 1.372-.15.468.15 1.026.619 1.147 1.343.362 2.656-1.312 3.049-2.384a6.189 6.186 0 0 0 .347-1.222c-.347.076-.755.06-1.117-.06z"/>
<path class="secondary" d="M76.584 82.59c.295.08 3.804.12 4.559-3.169.845-3.213-2.415-5.265-1.811-7.936.135-.618.815-.995.513-1.07-.121-.03-1.359.06-1.796 1.508-.695 2.338 1.222 4.013.422 6.02-.528 1.358-1.826 1.04-2.053 1.101 0 0-1.313.076-1.343 1.72-.015 1.63 1.51 1.825 1.51 1.825z"/>
<path fill="#f6f6f6" d="M65.158 83.978a1.474 1.474 0 0 1 .03-.92l.046-.121c.075-.136.241-.196.347-.317a1.238 1.237 0 0 1 .573.77c.076.331.03.678-.12.98-.106.18-.287.347-.483.302-.136-.03-.227-.166-.272-.302-.06-.136-.076-.272-.12-.392m7.305 1.312c.03-.241.09-.362-.212-.422-.483-.106-1.041-.272-1.524-.09-.393.135-.755.422-.876.83-.075.225.181.497.378.633.196.136.452.18.694.196.694 0 1.434-.407 1.54-1.147z"/>
<g fill="#000" stroke="none">
<path d="M78.06 109.32c-1.38.5-2.95.48-3.7-.34 1.22.46 2.44.24 3.54 0zM63.9 80.02c.33-.06 1.11-.16 1.24.04-.35.24-.93.26-1.24-.04zm.92.38c.16-.2.54-.34.72-.24-.09.33-.47.4-.72.24zm-1.92-.38c.57.98 1.49 1.8 2.57 2.15l-.04.3a3.19 3.19 0 0 1-2.44-2.12c-.04-.09-.07-.32-.09-.33z"/>
<path d="M62.62 78.38c1.08 1.37 3.35.76 4.26 2.2l-.09.07c-1.22-1.16-3.05-.34-4.17-2.27zm65.96 13.9c1.15-.06 1.9 1.9.7.55-.22-.18-.38-.53-.7-.55zm-3.84-18.02c-2.47 1.01-5.22.03-7.74.82 2.1-1.35 4.93-.27 7.26-1.11.42-.25.37-.07.48.29zm1.9.82c-1.46.92-3.31.7-4.92 1.26-1.08.17-2.25.2-3.28-.14 2.56.11 5.04-.7 7.5-1.26.4-.22.5-.41.7.14zm-40 35.86c.19-1.3-.03-2.8 1.05-3.71.35-.78.32-1.72.18-.15-.3.65-1.01 1.06-.79 1.9-.2.53.46 2.28-.44 1.96zM80 104.46c-.21 2.14.7 4.18 1.42 6.14-1.15-.1-1.07-2.7-1.43-3.88a7.58 7.58 0 0 1 .01-2.26zm38.02 3.2c-.89-1.63-1.6-3.17-2.7-4.57-1.12-1.81-2.09-4.1-1.72-6.17.18 2.91 1.66 5.54 3.38 7.8.5.91.99 1.84 1.48 2.76-.14.07-.31.1-.44.18zm-3.16-16.14c1.37-2.52 4.64-2.76 7.2-2.74 2.68.02.45.23-.68.32-2.29.26-4.96.5-6.52 2.42zm11.52 3.74c.44 1.92-.24 3.93-1.28 5.54.5-1.83 1.01-3.66 1.28-5.54zm-1.2 13.56c.64.8.81 2.5-.32 2.98.6-.84.35-2.06.32-2.98zm-1.56 2.74c-1.2-.3-2.61-.98-2.98-2.24.89.87 2.01 1.47 2.98 2.24zm-42.84-6c.74 1.66 1.76 3.28 1.8 5.18.46 2.4-.52-1.3-.7-2.12-.28-1.05-1.02-1.97-1.1-3.06zm5.38 4.12c.3 1.67.16 4.07-1.6 4.9 1.43-1.13 1.54-3.26 1.6-4.9zm-.68 8.16c0 1.95.03 3.9.02 5.84a15.5 15.5 0 0 1-.02-5.84zm-.02 7.26c.33.73-.49 1.42-1.08 1.72.3-.58 1.01-1.07 1.08-1.72zm41.86-2.06c.07-2.33-.13-4.68-.74-6.94a11 11 0 0 1 .74 6.94zm-9.84-5.74c-.57 1.83-1.43 3.58-1.84 5.46-.02-1.95.93-3.8 1.84-5.46zm-28.74-9.64c1.3.53 2.69.77 3.96 1.36-1.37 0-3.03-.25-3.96-1.36zm-16.8 3.88c.51 1.88 1.12 3.73 1.6 5.62a14.59 14.59 0 0 1-1.6-5.62zm2.12 6.62c.73.34.7 1.37.4 2.02-.18-.65.01-1.45-.4-2.02zm43.86-9.68c.38.99-.14 2.61-1.34 2.64.85-.57 1-1.75 1.34-2.64zm-32.6-19.06c-1.54 1.51-3.4 2.78-4.62 4.58-.46 1.02-.39 2.22-1 3.18.46-1.6.16-3.6 1.66-4.72a22.32 22.32 0 0 1 3.96-3.04zm26.74 9.52c.14.67-1.09 1.23-1.3.8.44-.26.85-.58 1.3-.8zm-3.46 1.66c.19.72-1.37.89-.63.26.19-.14.4-.24.63-.26zm-2.14 1c-.06.9-.85 1.74-1.76 1.82.58-.61 1.18-1.2 1.76-1.82zm-3.42 2.6c-.26 1.14-2.04.56 0 0zm-13.58-.08c-.05-1.53-.55-3.58-.36-4.85.47 1.54.9 3.28.36 4.85zm-20.4-23.34c.58-.04 1.14-1.28 1.58-.64.21 1.09.25 1.38 1.18.54.54-.5-.38.99-.91.94-.54-.12-.65-1.05-.63-1.26.1.18-.94.64-1.22.42zm1.26-1.2c-.22-.49.54-1.13.76-.98-.23.34-.54.64-.76.98zm-2.86.72c1.22.67 0 .81 1.2.08.58-.41-.3 1.06-.64.82-.33-.19-.46-.56-.56-.9zm13.84 5.24c-1.02.38-2.32.6-3.32.1a4.3 4.3 0 0 0 3.18-.5l.14.4zm-.98-2.66c.67-.1 1.74.28.64.32-.24-.02-.53-.1-.64-.32zm-.36.1c1.38.27.14.85 0 0zm-1.6 2.08c1.56.26 3.17-.82 3.98-1.86-.49 1.57-2.45 2.6-3.98 1.86z"/>
<path d="M78.34 83.7a2.11 2.11 0 0 1 1.83-1.22 4.85 4.85 0 0 0 2.83-.94c-.25.49-.78.8-1.27 1.02-.79.37-1.7.12-2.5.45-.33.18-.7.37-.89.71zM70.9 87a3.4 3.4 0 0 0 1.74-.78c.16-.02-.16.45-.32.55-.4.38-.93.32-1.42.23zm2.46-7.14c-.08-.5.4-1 .9-.92-.29.31-.64.6-.9.92zm-1.86-.06c-.3-.58.96-1.17.29-.32-.1.1-.17.26-.29.32zm1.36-1.12c-.22-.3.15-.75.5-.62.2.16-.18.5-.37.58-.02.05-.14-.02-.13.04zm-3.32.72c-.28-.1-.22-.56.06-.62a.7.7 0 0 1-.06.62zm-4.02 4.7c-.2-.28-.1-.72.18-.41.15.15.04.64-.18.4zm1-2.02c.38.05.44.48.06.16.5-.2.54.52.34.78-.16-.04-.37-.27-.32-.5.4.15-.32-.14-.08-.41zm9.8-2.08c-.09-.18-.2-.84.04-.4.29.2.6.75.02.45 0-.03-.13-.01-.06-.05zm-8.68 13.96c-.07.5.17.97.16 1.46-.48.05-.43-.18-.35-.56 0-.31.08-.6.19-.9zm-4.47.14c1.02-.02 1.6.68 2.46.49.6-.05.95-.53 1.22-1 .53-.56 0 .5-.11.75-.55.86-1.77.92-2.6.5-.39-.36-1.3-.03-.97-.73zm1.39 1.24c-.02.82-.5 1.75-1.35 1.94.04-.24.56-.78.74-1.15.17-.29.42-.52.6-.79zm12.9-16.68a2.38 2.38 0 0 0 1.64-1.38c-.1.8-.75 1.43-1.43 1.8-.12.05-.14-.34-.21-.42zm-11.28 6.6c.15-.25.41-1.13.73-.74.13.42-.49.63-.56 1.02-.24.26.06-.9.4-.94.3-.03-.55.64-.57.66zm5.28 7.66c.6.1 1.3.05 1.7-.46-.3.62-1.06.85-1.7.88zm-3.12.16c.94-.37 1.88-.77 2.8-1.18a3.19 3.19 0 0 1-2.8 1.18zm-6.5-2.88c.63-.14 1.11.5 1.74.44.85.05 1.9-.06 2.46.72.21.37-.23-.14-.44-.1-1-.34-2.23.17-3.09-.61-.2-.18-.43-.37-.67-.45zm5.12-2.98c.31.3-.23.52-.26.83 0 .32-.51.67-.62.56.39-.28.22-.9.7-1.09.13-.03.2-.17.18-.3zm3.92-1.78c-.2-1.12-1.1.76-.03.63.48-.13-.02-.38.03-.63zm-.54-.16c-.42.33-1 .46-1.5.18-.14-.1-.7-.13-.26-.13.47.05 1.03.11 1.37-.3.12-.23.28.2.39.25zm-1.46-1.2c.05-.66.71-.19.66-.7.42-.17.84-.18 1.18-.2-.42.26.2-.48.46-.14.5.24.02.11-.22.24.3.27-.42.1-.56.35-.15.18-.4.04-.56.07-.12.48-.59.13-.9.26zm3.36.54c.2.13.48.07.58-.16.11.34-.73.87-.65.44zm1.54 7.12a1 1 0 0 1 1.06-.5 2.8 2.8 0 0 0 1.96-1.19c.52-.09.63-.2.7-.76.32-.4.54-.96.4-1.47.32.51.2 1.16-.11 1.64 0 .36-.09.93-.58.82-.29.1-.42.5-.7.65-.65.53-1.53.58-2.32.46-.17.06-.29.24-.41.35zm-9.96 1.1c.01-.64.94-1.15 1.36-.53.1.23-.65.04-.86.3-.16.07-.36.2-.5.23zm.74.4c.27-.2.6-.35.92-.44-.04.41-.6.68-.92.42zm-2.28-1c-.33-.3-.45-.84-.9-.98.2-.37.87-.04.9.38.11.21.03.4 0 .6zm-.48.2c-.44.16-.86-.46-.58-.82.16.28.36.62.58.82zm2.16-5.86c.37.47-.13 1-.28 1.44-.27-.48.22-.98.28-1.44zm-.7 3.48c.29-.07.58 0 .84.14-.2.24-.72.15-.84-.14zm11.18-8.36c.13-.38.25-1.5.28-.46.04.28.14.81-.27.46zm-.96.3c.01-.46.3-.87.22-1.34.15.42.08.88.1 1.32-.1 0-.26.06-.32.02z"/>
<path d="M73.98 83.28c-.12.03-.2-.08-.2-.19s0-.25-.08-.34a1.08 1.08 0 0 1-.21-.53c.01-.14-.19-.09-.27-.16a1.05 1.05 0 0 1-.62-.82c.1 0 .26-.06.32-.02.03.14.12.24.2.35.1.13.26.24.43.25.08 0 .2-.01.23.08.03.11.01.23.05.34.06.21.23.38.27.6.04.03.12-.1.15-.15.07-.13.07-.28.07-.42 0-.17.03-.34.1-.5 0-.06.05-.13.12-.07l.22.1c-.1.2-.1.44-.1.66a.97.97 0 0 1-.54.78c0 .02-.2.05-.14.04z"/>
<path d="M72.6 81.26c.03-.23.07-.45.19-.65.06-.14.09-.14.07.01-.01.17.01.33.06.48.07.14-.05.14-.16.14l-.16.02zm-3.64-2.46c-.24.14-.49.26-.69.45-.06.14-.08.14-.05-.01.05-.23.21-.4.32-.6.05-.07.09-.25.17-.11.08.09.19.17.25.27zm1.84-.64a.9.9 0 0 1 .29-.4c.1-.1.2-.2.33-.26l.1.44c-.2-.02-.37.05-.55.13-.05.03-.15.04-.17.09zm1.98-.32c-.24 0-.48.03-.7.14.11-.2.27-.36.46-.48.09-.09.18-.06.17.06l.07.28zm1.76.52c.24-.06.48-.1.72-.14l-.08.44c-.2-.12-.42-.22-.64-.3z"/>
</g>
<path fill="none" stroke-width=".4" d="M78.2 91.46c.64-.34.8-.66.88-.8.38-.14 1.06-1.06 1.06-1.44a5.4 5.4 0 0 0 .56-.82"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

View file

@ -1,64 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/0/0e/Barrin.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="butterfly" stroke-width=".585">
<g>
<path class="secondary" d="M101.74 96.958c2.878-3.885 5.756-7.77 8.635-11.63 3.088-4.189 6.224-8.377 10.132-11.84 4.773-4.236 11.091-7.606 17.597-6.155.702.164 1.52.468 1.708 1.17.257 1.006.14 1.872-.702 2.48-.304.211-.655.375-.89.68-.327.444-.257 1.029-.257 1.59 0 1.826-.866 3.627-2.293 4.75-.398.305-.866.609-1.006 1.1-.21.726.444 1.404.561 2.153.258 1.615-1.872 2.668-2.176 4.282-.164.866.258 1.826-.093 2.645-.445 1.1-1.943 1.404-2.48 2.457-.539 1.123.21 2.667-.61 3.58-.514.585-1.473.655-1.918 1.287-.562.749-.14 1.872-.632 2.69-.608 1.007-2.223.913-2.925 1.85-.234.304-.35.701-.538 1.076-.538 1.076-1.919 1.919-3.44 1.895-1.755 0-3.37-.491-5.101-.772a41.52 41.52 0 0 0-13.291.094"/>
<path class="tertiary" d="M110.375 85.328a293.584 293.584 0 0 1 2.433-3.253c.796 1.662.936 3.206.936 3.206s.562-.398 1.545-.89c.28-.14 1.053-.374 1.357-.42a3.14 3.14 0 0 1 .936-.024c.28.024.655.14.772.234.047.047.07.07.117.164.047.07.07.21.094.351.046.257 0 .538-.094.819-.187.538-.608 1.006-1.1 1.193l-1.03.539s1.124 1.123 1.475 1.357c.515.35 1.193.889 1.263 1.544.024.304.047.468-.117.913-.163.444-.585.842-.585.842s.983 0 1.662-.725c.21-.234.421-.468.491-.866.047-.164 0-.328 0-.515-.023-.164-.047-.35-.093-.515-.211-.725-.75-1.193-1.124-1.52a2.285 2.285 0 0 0-.327-.258c.444-.421.772-.936.983-1.498a3.033 3.033 0 0 0 .14-1.52 2.184 2.184 0 0 0-.234-.796 1.758 1.758 0 0 0-.632-.749c-.538-.351-.983-.421-1.45-.515a4.184 4.184 0 0 0-1.428.047 5.314 5.314 0 0 0-1.334.468c-.047.023-.07.047-.117.07-.093-.444-.234-.866-.374-1.287a7.406 7.406 0 0 0-.515-1.17c1.942-2.457 3.978-4.797 6.318-6.88 0 0 1.661-.959 4.82-.959 1.24 0 3.019.398 3.768.82.515.28 1.006.654 1.123 1.24.117.608-.187 1.216-.538 1.731a9.888 9.888 0 0 1-3.253 2.972c.749.374 1.568.819 1.919 1.614.562 1.287-.538 2.738-1.802 3.323-.491.234-1.006.375-1.404.749-.398.351-.795 1.147-.444 1.544 1.03.211 1.474 1.545 1.076 2.504-.398.96-1.334 1.591-2.246 2.036-.936.468-1.943.819-2.691 1.521-.211.187-.398.421-.445.702-.117.679.679 1.147.983 1.778.304.656.047 1.475-.468 1.99-.515.514-1.194.818-1.872 1.076-1.919.772-3.978 1.45-6.037 1.17.023-.632-.328-1.194-.585-1.755-.258-.562-.398-1.31 0-1.779.234-.28.608-.42.819-.702.491-.631-.047-1.614-.82-1.872-.748-.257-1.567 0-2.34.258a2.706 2.706 0 0 0-.795-2.434c-.515-.468-1.357-.749-2.574-.678a738.761 738.761 0 0 1 3.838-5.195z"/>
<path class="tertiary" d="M132.909 70.633c-.07.117-.164.257-.117.397.07.258.444.281.702.234a6.5 6.5 0 0 0 1.942-.725c.328-.187.913-.608.421-.983-.164-.117-.398-.14-.608-.164-.913-.023-1.825.492-2.34 1.24z"/>
<path class="tertiary" d="M133.494 75.5c.093.07.187.093.28.14.68.187 1.522.024 1.826-.608.421-.82-.304-1.521-1.147-1.498-.866.024-1.872 1.217-.96 1.966z"/>
<path class="tertiary" d="M130.335 80.344c.093.561.585 1.1 1.17 1.123.093 0 .187 0 .28-.024.632-.14 1.054-.865 1.147-1.544.281-2.083-2.901-1.38-2.597.445z"/>
<path class="tertiary" d="M128.205 86.849c.024.164.07.327.164.468.117.14.258.21.421.257a1.531 1.531 0 0 0 1.545-.444c.444-.492.678-1.615-.047-1.943-.328-.14-.702-.093-1.03.047-.678.304-1.146.843-1.053 1.615z"/>
<path class="tertiary" d="M125.655 95.18c1.872-.68 1.591-3.838-.609-3.16-2.082.632-1.918 4.072.609 3.16z"/>
<path class="tertiary" d="M120.694 99.789c.023.14.047.257.14.374.117.164.328.234.515.258.843.093 1.966-1.357.936-1.849-.28-.14-.632-.093-.936.024-.468.234-.702.678-.655 1.193z"/>
<path class="tertiary" d="M104.29 100.631s-.28-1.31.515-3.018c.422-.913 1.077-1.802 2.06-2.13.07-.023.14-.046.234-.023.14.023.21.164.257.28a3.74 3.74 0 0 1 .187 2.317c.492.024.983-.023 1.451.14.468.165.866.656.725 1.124-.093.328-.42.515-.748.585-.328.07-.656 0-.983-.023a6.718 6.718 0 0 0-3.697.748z"/>
</g>
<g>
<path class="secondary" d="M98.3 96.958c-2.878-3.885-5.756-7.77-8.634-11.63-3.09-4.189-6.225-8.377-10.133-11.84-4.773-4.236-11.091-7.606-17.596-6.155-.702.164-1.521.468-1.709 1.17-.257 1.006-.14 1.872.702 2.48.305.211.656.375.89.68.327.444.257 1.029.257 1.59 0 1.826.866 3.627 2.293 4.75.398.305.866.609 1.006 1.1.211.726-.444 1.404-.561 2.153-.258 1.615 1.872 2.668 2.176 4.282.164.866-.257 1.826.094 2.645.444 1.1 1.942 1.404 2.48 2.457.538 1.123-.21 2.667.608 3.58.515.585 1.475.655 1.92 1.287.56.749.14 1.872.631 2.69.608 1.007 2.223.913 2.925 1.85.234.304.351.701.538 1.076.538 1.076 1.919 1.919 3.44 1.895 1.755 0 3.37-.491 5.101-.772a41.52 41.52 0 0 1 13.291.094"/>
<path class="tertiary" d="M89.666 85.328a293.584 293.584 0 0 0-2.434-3.253c-.796 1.662-.936 3.206-.936 3.206s-.562-.398-1.544-.89c-.281-.14-1.053-.374-1.358-.42a3.14 3.14 0 0 0-.936-.024c-.28.024-.655.14-.772.234a.492.492 0 0 0-.117.164c-.047.07-.07.21-.093.351-.047.257 0 .538.093.819.187.538.609 1.006 1.1 1.193l1.03.539s-1.124 1.123-1.475 1.357c-.514.35-1.193.889-1.263 1.544-.024.304-.047.468.117.913.164.444.585.842.585.842s-.983 0-1.662-.725c-.21-.234-.42-.468-.491-.866-.047-.164 0-.328 0-.515.023-.164.047-.35.094-.515.21-.725.748-1.193 1.123-1.52.07-.07.187-.164.327-.258a3.974 3.974 0 0 1-.982-1.498 3.033 3.033 0 0 1-.14-1.52c.023-.258.093-.515.233-.796.117-.281.351-.562.632-.749.538-.351.983-.421 1.45-.515.469-.07.96-.047 1.428.047.468.094.913.257 1.334.468.047.023.07.047.117.07.094-.444.234-.866.374-1.287.14-.398.305-.795.515-1.17-1.942-2.457-3.978-4.797-6.318-6.88 0 0-1.661-.959-4.82-.959-1.24 0-3.019.398-3.768.82-.514.28-1.006.654-1.123 1.24-.117.608.187 1.216.538 1.731a9.888 9.888 0 0 0 3.253 2.972c-.749.374-1.568.819-1.919 1.614-.561 1.287.538 2.738 1.802 3.323.491.234 1.006.375 1.404.749.398.351.796 1.147.445 1.544-1.03.211-1.475 1.545-1.077 2.504.398.96 1.334 1.591 2.247 2.036.936.468 1.942.819 2.69 1.521.211.187.398.421.445.702.117.679-.678 1.147-.983 1.778-.304.656-.046 1.475.468 1.99.515.514 1.194.818 1.872 1.076 1.943.772 3.978 1.45 6.038 1.17-.024-.632.327-1.194.585-1.755s.397-1.31 0-1.779c-.234-.28-.609-.42-.82-.702-.49-.631.047-1.614.82-1.872.748-.257 1.567 0 2.34.258a2.706 2.706 0 0 1 .795-2.434c.515-.468 1.357-.749 2.574-.678a738.761 738.761 0 0 0-3.837-5.195z"/>
<path class="tertiary" d="M67.131 70.633c.07.117.164.257.117.397-.07.258-.444.281-.702.234a6.5 6.5 0 0 1-1.942-.725c-.327-.187-.912-.608-.421-.983.164-.117.398-.14.608-.164.913-.023 1.826.492 2.34 1.24z"/>
<path class="tertiary" d="M66.546 75.5c-.093.07-.187.093-.28.14-.679.187-1.521.024-1.826-.608-.42-.82.305-1.521 1.147-1.498.866.024 1.872 1.217.96 1.966z"/>
<path class="tertiary" d="M69.705 80.344c-.093.561-.585 1.1-1.17 1.123-.093 0-.187 0-.28-.024-.632-.14-1.053-.865-1.147-1.544-.28-2.083 2.902-1.38 2.597.445z"/>
<path class="tertiary" d="M71.858 86.849c-.023.164-.07.327-.164.468a.798.798 0 0 1-.42.257 1.531 1.531 0 0 1-1.545-.444c-.445-.492-.679-1.615.047-1.943.327-.14.702-.093 1.03.047.654.304 1.146.843 1.052 1.615z"/>
<path class="tertiary" d="M74.409 95.18c-1.872-.68-1.591-3.838.608-3.16 2.06.632 1.919 4.072-.608 3.16z"/>
<path class="tertiary" d="M79.346 99.789c-.023.14-.047.257-.14.374-.117.164-.328.234-.515.258-.842.093-1.966-1.357-.936-1.849.28-.14.632-.093.936.024.468.234.702.678.655 1.193z"/>
<path class="tertiary" d="M96.007 100.631s.28-1.31-.515-3.018c-.421-.913-1.076-1.802-2.059-2.13-.07-.023-.14-.046-.234-.023-.14.023-.21.164-.257.28a3.74 3.74 0 0 0-.188 2.317c-.491.024-.982-.023-1.45.14-.468.165-.866.656-.726 1.124.094.328.421.515.749.585.328.07.655 0 .983-.023 1.263-.117 2.574.163 3.697.748z"/>
</g>
<path class="secondary" d="M102.114 103.299c2.13 2.13 3.136 5.148 3.58 8.12.445 2.972.375 6.014.68 9.009.093.936.28 1.989 1.076 2.504.702.468 1.684.374 2.386.819.843.538 1.077 1.661 1.475 2.574.42.912 1.497 1.801 2.34 1.24.865-.562.725-2.2 1.731-2.434.726-.164 1.287.632 1.615 1.287 1.544 3.089 3.065 6.154 4.61 9.243.28.585.046.304.702.328.514 0 .936-.492 1.006-1.006s-.07-1.03-.21-1.545c-.61-2.106-1.054-4.259-1.147-6.458-.024-.679-.024-1.38.21-2.013s.772-1.193 1.451-1.287c.538-.07 1.147.14 1.638-.093.585-.258.749-1.03.632-1.638s-.421-1.194-.562-1.802c-.28-1.264.585-2.434 1.896-2.644.327-.047.702-.047 1.006-.21 1.24-.726.023-2.551-.375-3.394-.35-.678-.561-1.568-.117-2.176.188-.257.445-.421.632-.655 1.545-1.802-2.761-4.587-3.978-5.476-2.457-1.825-5.312-3.112-8.283-3.814-4.61-1.076-9.477-.819-14.04.398"/>
<path class="tertiary" d="M116.108 101.801c.631.14 1.263.328 1.872.539.889.608 1.708 1.333 2.386 2.129.702.819 1.31 1.966.843 2.948-.468.96-1.732 1.194-2.808 1.287.772.585.772 1.849.14 2.574-.655.702-1.778.866-2.667.492.772.678.468 2.106-.422 2.62-.889.515-2.082.235-2.878-.444.164.772.258 1.778-.444 2.2-.539.327-1.24.046-1.732-.328-1.1-.866-1.685-2.2-2.246-3.463-.866-1.966-2.621-4.704-4.493-6.973a11.135 11.135 0 0 0-1.568-2.06l-.047-1.1c4.61-1.24 9.477-1.497 14.064-.42z"/>
<g stroke="none" fill="#000">
<path d="M115.92 105.569c-.561-.117-1.1-.234-1.638-.375l-1.614-.397-1.615-.398c-.538-.14-1.076-.258-1.614-.421a8.111 8.111 0 0 1 1.684-.024c.562.047 1.124.14 1.662.281.538.14 1.076.304 1.614.538.562.21 1.053.468 1.521.796z"/>
<path d="M114.259 109.313c-.351-.258-.655-.538-.96-.82l-.912-.818-.913-.82c-.304-.28-.608-.56-.889-.865.421.117.796.28 1.17.491.375.211.702.468 1.03.75.304.28.608.608.842.935.258.375.492.726.632 1.147z"/>
<path d="M110.047 110.834c-.328-.515-.608-1.03-.913-1.521-.304-.492-.608-.983-.936-1.474-.327-.492-.655-.96-1.006-1.428-.35-.468-.702-.936-1.053-1.427.515.304.983.702 1.404 1.146.421.422.796.89 1.147 1.404a9.47 9.47 0 0 1 .866 1.592c.21.538.397 1.123.491 1.708z"/>
</g>
<path class="tertiary" d="M122.847 110.202c-.187.047-.375.07-.538.117-.585.234-.726.983-.726 1.615 0 .631-.023 1.38-.538 1.731-.538.375-1.31.094-1.919.375-.702.304-.866 1.193-1.03 1.942-.14.749-.538 1.614-1.286 1.685-.773.07-1.592-.796-2.2-.328-.28.21-.351.632-.608.89-.281.28-.726.28-1.1.257-.749-.07-1.498-.305-2.247-.234-.748.07-1.544.561-1.614 1.31-.07.655.468 1.24 1.03 1.591.584.328 1.24.515 1.778.913.374.28.702.632 1.123.795.936.328 1.942-.491 2.925-.374.866.094 1.474.866 1.942 1.591.702 1.1 1.31 2.27 1.825 3.487.422-.234.445-.796.445-1.264l-.07-3.018c-.024-.632-.024-1.31.35-1.826.656-.936 2.27-1.076 2.505-2.2.07-.303 0-.608.023-.912.023-.327.14-.608.28-.912.68-1.475 1.639-2.808 2.154-4.33.397-1.24.514-3.065-.422-4.141-1.146-1.287-.959.936-2.082 1.24z"/>
<path class="secondary" d="M97.926 103.299c-2.13 2.13-3.136 5.148-3.58 8.12s-.375 6.014-.679 9.009c-.094.936-.28 1.989-1.076 2.504-.702.468-1.685.374-2.387.819-.843.538-1.077 1.661-1.474 2.574-.422.912-1.498 1.801-2.34 1.24-.866-.562-.726-2.2-1.732-2.434-.725-.164-1.287.632-1.615 1.287-1.544 3.089-3.065 6.154-4.61 9.243-.28.585-.046.304-.701.328-.515 0-.936-.492-1.007-1.006-.093-.515.07-1.03.211-1.545.608-2.106 1.053-4.259 1.147-6.458.023-.679.023-1.38-.211-2.013s-.772-1.193-1.45-1.287c-.539-.07-1.147.14-1.639-.093-.585-.258-.749-1.03-.632-1.638.117-.632.422-1.194.562-1.802.28-1.264-.585-2.434-1.895-2.644-.328-.047-.702-.047-1.007-.21-1.24-.726-.023-2.551.375-3.394.35-.678.561-1.568.117-2.176-.187-.257-.445-.421-.632-.655-1.544-1.802 2.761-4.587 3.978-5.476 2.457-1.825 5.312-3.112 8.284-3.814 4.61-1.076 9.477-.819 14.04.398"/>
<path class="tertiary" d="M83.933 101.801a17.12 17.12 0 0 0-1.872.539 12.237 12.237 0 0 0-2.387 2.129c-.702.819-1.31 1.966-.843 2.948.468.96 1.732 1.194 2.808 1.287-.772.585-.772 1.849-.14 2.574.655.702 1.778.866 2.668.492-.773.678-.468 2.106.42 2.62.89.515 2.083.235 2.879-.444-.164.772-.257 1.778.445 2.2.538.327 1.24.046 1.731-.328 1.1-.866 1.685-2.2 2.247-3.463.865-1.966 2.62-4.704 4.492-6.973.445-.75.96-1.428 1.568-2.06l.047-1.1c-4.61-1.24-9.477-1.497-14.063-.42z"/>
<g stroke="none" fill="#000">
<path d="M84.12 105.569a7.675 7.675 0 0 1 1.497-.796c.515-.21 1.053-.398 1.615-.538.538-.14 1.1-.234 1.661-.28a8.111 8.111 0 0 1 1.685.023c-.538.163-1.076.304-1.614.42l-1.615.399-1.615.397c-.514.14-1.053.281-1.614.375z"/>
<path d="M85.781 109.313c.14-.398.375-.772.609-1.123a6.48 6.48 0 0 1 .842-.936c.304-.281.655-.539 1.03-.75.374-.21.748-.397 1.17-.49-.305.327-.609.584-.89.865l-.912.82-.913.818c-.28.258-.585.515-.936.796z"/>
<path d="M89.993 110.834c.094-.609.281-1.17.515-1.732a8.05 8.05 0 0 1 .866-1.591 9.391 9.391 0 0 1 1.146-1.404c.422-.421.89-.819 1.404-1.147-.35.492-.702.96-1.053 1.428-.35.468-.678.96-1.006 1.427-.327.492-.632.983-.936 1.474-.327.539-.608 1.053-.936 1.545z"/>
</g>
<path class="tertiary" d="M77.193 110.202c.188.047.375.07.539.117.585.234.725.983.725 1.615s.023 1.38.538 1.731c.538.375 1.31.094 1.919.375.702.304.866 1.193 1.03 1.942.14.749.538 1.614 1.287 1.685.772.07 1.59-.796 2.2-.328.28.21.35.632.608.89.28.28.725.28 1.1.257.748-.07 1.497-.305 2.246-.234.749.07 1.544.561 1.614 1.31.07.655-.468 1.24-1.03 1.591-.584.328-1.24.515-1.778.913-.374.28-.702.632-1.123.795-.936.328-1.942-.491-2.925-.374-.866.094-1.474.866-1.942 1.591-.702 1.1-1.31 2.27-1.825 3.487-.421-.234-.445-.796-.445-1.264l.07-3.018c.024-.632.024-1.31-.35-1.826-.656-.936-2.27-1.076-2.504-2.2-.07-.303 0-.608-.024-.912-.023-.327-.14-.608-.28-.912-.68-1.475-1.639-2.808-2.153-4.33-.398-1.24-.515-3.065.42-4.141 1.147-1.287.96.936 2.083 1.24z"/>
<path class="secondary" d="M79.51 118.088a1.2 1.2 0 0 1-.515-.14c-.468-.235-.889-.913-.515-1.428.375-.491 1.381-.374 1.709.094.397.538.046 1.474-.679 1.474z"/>
<path class="secondary" d="M82.716 121.013c-.258.257-.726.257-.96-.024-.117-.14-.163-.304-.187-.491-.047-.328 0-.749.398-.796.702-.07 1.31.773.749 1.31z"/>
<path class="secondary" d="M120.53 118.088a1.2 1.2 0 0 0 .515-.14c.468-.235.89-.913.515-1.428-.375-.491-1.38-.374-1.708.094-.375.538-.047 1.474.678 1.474z"/>
<path class="secondary" d="M117.324 121.013c.258.257.726.257.96-.024.117-.14.164-.304.187-.491.047-.328 0-.749-.398-.796-.702-.07-1.287.773-.749 1.31z"/>
<g>
<path d="M107.543 67.31c.772-.632.913-.796 1.38-1.287.82-.866 2.013-1.357 3.183-1.568.632-.117 1.357-.14 1.919.187.562.328.866 1.147.491 1.662-.234.304-.608.42-.959.514-1.053.281-1.919.398-2.972.609-1.146.234-1.825.304-2.363.678"/>
<g>
<path stroke-width=".468" d="M100.406 84.813h1.03c0-3.931 3.463-14.04 6.762-16.708l-.655-.795c-3.3 2.69-7.137 12.893-7.137 17.503z"/>
</g>
<path d="M92.497 67.31c-.772-.632-.913-.796-1.38-1.287-.82-.866-2.013-1.357-3.183-1.568-.632-.117-1.357-.14-1.919.187s-.866 1.147-.491 1.662c.234.304.608.42.96.514 1.052.281 1.918.398 2.971.609 1.147.234 1.825.304 2.363.678"/>
<g>
<path stroke-width=".468" d="M99.634 84.813h-1.03c0-3.931-3.463-14.04-6.762-16.708l.655-.795c3.323 2.69 7.137 12.893 7.137 17.503z"/>
</g>
</g>
<g>
<path d="M100.921 85c.14-.14.374-.164.585-.164.983-.046 2.083-.07 2.855.562.491.374.772.983.889 1.591.28 1.404.234 3.51-1.498 3.955-.655.164-1.45-.117-1.708-.749-.07-.187-.21-.468-.421-.398"/>
<path d="M99.12 85c-.141-.14-.375-.164-.586-.164-.983-.046-2.082-.07-2.855.562-.491.374-.772.983-.889 1.591-.28 1.404-.234 3.51 1.498 3.955.655.164 1.45-.117 1.708-.749.07-.187.21-.468.421-.398"/>
</g>
<path d="M100.032 92.652c-.772 0-1.38-.187-1.966-.913-.96-1.193-.866-3.135-.678-4.54.234-1.871.538-3.228 2.667-3.158 2.13-.07 2.41 1.263 2.668 3.159.187 1.404.257 3.37-.679 4.54-.632.725-1.263.912-2.012.912z"/>
<path d="M101.202 102.948c1.24 1.17 1.919 2.785 2.176 4.423.28 1.661.164 3.907.047 5.569a194.115 194.115 0 0 1-.421 5.195c-.281 3.252-.702 7.066-2.387 9.968-.258.445-.936.468-1.194.023-1.778-2.878-1.965-5.85-2.386-10.553-.164-1.755-.305-3.51-.422-5.242-.117-1.638-.21-3.322.047-4.937.258-1.638.936-3.253 2.176-4.423"/>
<path d="M100.032 104.001c.608 0 1.123-.304 1.474-.679.421-.42 1.264-1.357 1.474-3.486.187-1.802.375-4.002-.374-5.733-.398-.936-1.03-1.779-2.598-1.779-1.193 0-2.176.843-2.597 1.779-.725 1.731-.538 3.931-.351 5.733.21 2.13 1.053 3.065 1.474 3.486.375.351.89.679 1.498.679z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 16 KiB

View file

@ -1,125 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/9/99/Kr%C3%B6cher.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="camel" stroke-width=".338">
<path class="secondary" d="M82.37 129.86c-.03-.44.05-.94-.25-1.27-.32-.34-.86-.29-1.27-.05a.87.87 0 00-.42.72c-.02.12-.02.25.05.35.05.08.13.12.2.18l.3.19c.35.24.7.44 1.11.34.16-.03.23-.13.26-.28.02-.06.02-.12.02-.18z"/>
<path class="secondary" d="M82.24 128.03c-.02-.18-.03-.36-.12-.5a.83.83 0 00-.59-.42c-.24-.04-.5 0-.72.06a.63.63 0 00-.22.1c-.1.1-.36.26-.4.4-.07.3.1.58.21.88.05.11.16.22.26.17.26.29.58.54.94.7.13.08.28.12.43.08.14-.05.23-.19.27-.33.03-.15.02-.3 0-.45l-.06-.7z"/>
<path d="M76.95 108.97c.86-.42 1.53-.31 2.3-.9 1.24-1 1.18-1.24 2.69-1.75 1.34-.45 5.95.01 7.65-1.03l.46-5.63-9.15-.73c-.91 1.69-1.42 1.7-2.77 2.88-.54.47-1.04 1-1.55 1.52-1.7 1.72-1.3.51-3.72 2.38-.43.2-.75.62-.84 1.09-.06.3.2 2.95.2 3.25-.03 2.29-.8 3.74.13 5.94.17.4.16.8.27 1.23.24 2.3.1 2.91 1.93 6.03.46.79 1.26 2.7 3.11 3.44.18.06.6.29.7.46.23.42.78 1.14 1.02 1.56.21.42.93 1.01 1.18 1 .03-.45.3-.6.24-.84-.23-.3-.33-.62-.17-.82.16-.2.43-.27.69-.28.42-.03.68.33.93.24-.04-.87.23-2.52-.64-3.51-.3-.35-.87-.98-1.32-1.06-.47-.08-.68 0-1.18-.34-.56-.47-1.56-.35-2.04-.75-.67-.56-.12-1.64-.56-2.36-.45-.75-1.3-.43-1.3-1.99.13-.63-.11-1.26-.03-1.9.07-.6-.3-1.03.01-1.54.44-.73.63-1.6.6-2.44a7.2 7.2 0 00-.23-1.55c-.12-.37.68-1.27 1.39-1.6z"/>
<path class="secondary" d="M101.9 137.04c.43.07.9.24 1.28 0 .4-.25.46-.78.3-1.23a.74.74 0 00-.29-.4c-.12-.07-.2-.1-.34-.15a.66.66 0 00-.36-.02.7.7 0 00-.21.16l-.25.24c-.3.3-.57.6-.55 1.03 0 .16.07.24.22.32.07.03.14.04.2.05z"/>
<path class="secondary" d="M103.71 137.28c.18.01.36.03.53-.02a.87.87 0 00.52-.5 1.44 1.44 0 00.02-.95c-.07-.11-.19-.4-.3-.46-.29-.14-.6-.02-.9.03-.12.03-.25.12-.22.22-.34.19-.64.46-.88.78-.09.12-.17.26-.16.4.01.15.14.27.27.34.14.07.28.08.44.1l.68.06z"/>
<path d="M115.75 92.5l-11.95 7.1c.07 1.27 1.84 3.49 2.48 4.58.6 1.02.54 4.31 1.04 5.37a44.2 44.2 0 011.3 3.84l.37 1.79c.3 1.42.68 1.75.65 3.2-.02 1.4-.04 2.8-.14 4.21-.17 2.42-.5 3.06-1.33 5.34-.32.87-.65 1.73-.96 2.6l-.34.92c-.13.32-.25.75-.39 1.08 0 .2-.5.82-.68.88-.45.15-1.73.77-2.18.91-.46.14-1.19.73-1.22.97.44.13.53.41.78.4.35-.16.68-.2.83 0 .17.2.18.47.15.73-.06.43-.45.62-.42.87.87.12 2.47.1 3.61-.16.78-.17 1.13-.58 1.32-1.1.17-.44-.13-1.03-.18-1.51-.04-.49.43-1.13.85-1.56.11-.13.36-.42.45-.57.2-.35.16-.77.15-1.18-.07-1.65 1.8-6.35 1.95-6.78.35-1 .84-2.06 1.26-3.03l.63-1.47.41-.93c.18-.4.36-.83.35-1.27 0-.24-.06-.47-.12-.7-.35-1.39-1.26-2.47-1.26-4.1 0-2.17 2.68-11.65 3.64-14.31.86-2.38-1.4-3.6-1.05-6.12z"/>
<path class="secondary" d="M86.44 140.31c.44.07.91.24 1.28 0 .4-.24.47-.77.3-1.23a.74.74 0 00-.28-.39 1.5 1.5 0 00-.34-.16.66.66 0 00-.36-.02.7.7 0 00-.22.16l-.25.25c-.3.3-.56.6-.55 1.02 0 .16.08.24.23.32.06.03.13.04.19.05z"/>
<path class="secondary" d="M88.25 140.55c.18.01.37.03.53-.02a.87.87 0 00.52-.5 1.43 1.43 0 00.03-.95c-.07-.1-.2-.4-.3-.46-.3-.13-.6-.02-.91.04-.11.02-.25.1-.22.21-.33.2-.64.46-.88.78-.09.12-.16.26-.15.4 0 .15.13.28.27.34.13.07.28.08.44.1l.67.06z"/>
<path class="secondary" d="M116.45 140.2c.44.07.91.24 1.28 0 .4-.25.46-.78.3-1.23a.74.74 0 00-.29-.4c-.12-.07-.19-.1-.34-.15a.66.66 0 00-.36-.02.7.7 0 00-.21.15l-.25.25c-.3.3-.56.6-.55 1.03 0 .16.08.24.22.31.07.04.14.05.2.06z"/>
<path class="secondary" d="M118.26 140.44c.18 0 .36.03.53-.02a.87.87 0 00.52-.5 1.43 1.43 0 00.02-.95c-.06-.11-.19-.4-.3-.46-.28-.14-.6-.02-.9.03-.12.03-.25.12-.22.22-.34.19-.64.46-.88.78-.09.12-.17.26-.16.4.02.15.14.27.28.34.13.07.28.08.44.09l.67.07z"/>
<path d="M128.21 111.34c.18 2.9 1.68 5.24 3.54 7.43.37-2.9.7-5.7-.37-8.4-.48-1.24-1.26-2.37-1.53-3.66-.16-.77-.14-1.57-.14-2.35.01-3.9-.48-8.38-1.4-12.15a32.89 32.89 0 00-1.78-4.46 25.96 25.96 0 00-2.58-3.63 5.33 5.33 0 00-2.2-1.6c-1-.34-2.48-1.58-3.42-2.14-1.56-.95-3.82-4.22-5.38-5.2-1.3-.83-2.73-2.6-3.87-3.76-.27-.27-.53-.55-.82-.79-1.38-1.16-2.77-1.26-4.4-1.29-1.66-.02-2.98.1-4.14 1.68-.35.48-.6 1.05-.9 1.58a15 15 0 01-5.18 5.5 17.5 17.5 0 00-2.28 1.96 11 11 0 00-2.06 3.27c-.7 2.33-2.1 6.58-4.33 5.97-.81 0-1.85-1.02-1.96-1.1-1.65-1.52.21-5.53 1.2-7.32 2.1-3.72 4.18-9.25 4.44-11.07.1.17.27.22.46.28l-.09-1c.13.1.33-.02.36-.17.04-.16-.04-.32-.11-.46s-.15-.3-.11-.45c.03-.14.14-.26.17-.4.03-.18-.08-.35-.16-.53-.08-.17-.1-.42.08-.52.05-.04.12-.04.15-.1.07-.07.03-.2-.04-.26-.07-.07-.17-.13-.21-.22-.15-.27.22-.56.18-.86-.05-.25-.4-.42-.37-.7.04-.25-.2-.48-.29-.73-.08-.22-.02-.46-.02-.7 0-.5-.22-1.01-.64-1.28-.2-.53-.6-1.09-1.17-1.12-.14-.01-.29.01-.42.03l-.41.07c-.1.01-.22.03-.32.01-.1-.02-.2-.1-.21-.2-.2.01-.4-.01-.58-.07l-.05-.38a1 1 0 01-1.09-.43l-.36.2c-.13.06-.31.13-.43.01-.03-.03-.05-.09-.09-.1-.1-.1-.27 0-.4.04-.22.05-.49-.08-.49-.3-.25.12-.5.2-.76.27a.96.96 0 01-.14-.43c-.17 0-.28.19-.36.33-.08.16-.21.33-.37.3-.15-.04-.28-.22-.4-.14a.3.3 0 00-.09.09l-.28.5a.7.7 0 01-.5-.2c-.38.48-.03.97-.03 1.3l-.14.13a10.02 10.02 0 01-3.5 1.66c-.7.16-1.68.07-2.4.03a3.4 3.4 0 00-2.92 1c-.81.83-.9 1.41-1.18 2.16a2.1 2.1 0 01-.61.91c-.24.2-.42.46-.52.76a1.4 1.4 0 00-.03.66c0 .15.1.28.24.33.16.06.2-.03.35-.15 0 0 .12.14.32.2.33.1.78-.1.77-.06-.43.25-.48.5-.75.9-.19.28-.23.52-.3.7a.55.55 0 000 .4c.13.27.3.19.56.1.1-.03.2-.06.3-.13.1-.07.19-.17.28-.26.79-.79 1.96-1.3 3-.92.5.58 1.42.91 2.19.86.76-.05 1.53-.46 2.26-.22.44.15.77.5 1.13.78.36.28.85.54 1.29.4.17 1.38-2.35 3.27-2.5 4.65-.07.66-2.24 2.79-2.33 5.27-.02.57-1.73 2.28-1.73 4.7 0 1.21-.41 2.32-.09 3.5.26.96.42 3.53.76 4.47.94 2.55 2.13 3.64 4.23 5.37 2.09 1.71 2.83 2.13 5.5 2.26 1.65.08 2.49.88 3.83 1.53 1.03.73 1.57.96 2.7 2.27.9 1.69.32 2.6.56 4.36.09.73.26 1.43.4 2.14.41 1.94 1.01 3.54.92 5.52-.1 2.1-.6 4.08.26 6.19.17.4.15.8.25 1.23.28 1.12-.16 2.1-.4 3.24-.62 2.8-.19 1.48-.4 4.33 0 .2-.76 1.7-.84 3.5-.01.2-.4.53-.58.6-.46.14-1.28.53-1.73.68-.46.13-1.19.72-1.22.97.44.12.53.4.78.4.35-.16.68-.2.83 0 .17.19.18.47.15.73-.06.43-.45.62-.42.87.87.12 2.47.09 3.61-.16a2.5 2.5 0 001.32-1.2c.17-.46.1-.82.05-1.3-.05-.5.16-1.1.42-1.52l.07-.14c.1-.22.06-.6.05-.83-.08-.87.01-1.22.11-2.06.1-.76.05-1.53.06-2.3.02-1.76.65-3.38 1.04-5.1.14-.64.26-1.27.34-1.91.07-.6.16-1.02.48-1.52a4.46 4.46 0 00.43-3.65c-.11-.35-.27-.7-.33-1.06-.12-.87.02-1.93.14-2.8.12-.95.23-1.54.14-2.5-.14-1.59-.37-1.7.04-3.24.36-1.37 1.24-2.23 1.3-4.23 1.26-.41 3.33.3 5.74.3 1.2-.02 2.8-.25 3.91-.73 7.52-3.2 7.94-5.96 9.29-5.96.17 1.67.05 2.3.26 4.24a12.6 12.6 0 001.58 4.51c.64.98 1.77 1.97 2.3 3.01a16.63 16.63 0 011.27 2.97l.22.79.46 1.77c.36 1.4.75 1.71.81 3.16.05 1.4.1 2.8.07 4.22-.06 2.42-.24 5.33-.96 7.65l-.84 2.65-.29.92c-.1.33-.21.77-.33 1.1 0 .19-.51.87-.7.92-.45.15-1.72.77-2.17.92-.47.13-1.19.72-1.22.97.44.12.53.4.78.4.35-.17.67-.21.83 0 .17.18.18.46.15.72-.06.43-.45.62-.42.87.87.13 2.47.1 3.61-.15.78-.17 1.13-.6 1.32-1.1.17-.45-.13-1.04-.18-1.52-.04-.49.46-1.32.87-1.74.11-.12.34-.43.42-.59.18-.36.12-.79.09-1.18-.15-1.65.06-3.18.34-4.8.16-1.02.47-2.01.76-3l.4-1.32c.3-1.01.74-2.1 1.11-3.09l.57-1.5.36-.95c.16-.41.32-.84.28-1.3a2.44 2.44 0 00-.16-.68c-.41-1.37-.9-2.7-1.45-4.03-.18-.45-.37-.9-.53-1.35-.51-1.5-.46-1.99-.78-3.52-.55-2.78.13-4.48.97-7.19.6-1.93 1.4-3.13 1.8-4.83.58 2.55.68 6.03.66 9.29-.07 2.74-.76 2.82-.59 5.5z"/>
<path d="M86.23 61.63a2.47 2.47 0 011.84 0c.7.3 1.19.93 1.88 1.23.03 0 .06.02.09.05.03.04.03.1.02.14-.05.4-.37.72-.69.98l-.52.45c-.37.33-.79.67-1.27.68-.66.01-1.18-.54-1.82-.67"/>
<path fill="#f6f6f6" d="M79.36 64.2a.77.77 0 01-.2.36c-.04.06-.1.1-.16.15-.12.1-.27.19-.43.23-.24.07-.53.04-.77-.04-.14-.05-.38-.2-.43-.3-.05-.13-.1-.27-.06-.39.2-.13.63-.17.94-.17.35 0 .81.05.97.08.07 0 .12.03.14.08z"/>
<g fill="#000" stroke="none">
<path d="M85.37 102.98a.7.7 0 01-.26.2c-.1.04-.2.09-.3.1-.22.08-.44.11-.65.14a12.5 12.5 0 01-1.28.15c-.2.02-.39.08-.57.16-.2.08-.37.16-.57.26-.37.19-.72.43-1.11.63.28-.34.6-.63.97-.88a2.6 2.6 0 011.25-.47c.23-.03.44-.03.65-.04.22 0 .43 0 .65-.02.21-.01.43-.02.63-.05.2-.02.4-.04.59-.18z"/>
<path d="M75.47 123.64c.17.26.36.47.59.67.21.19.46.36.7.54.24.17.48.35.72.55.24.2.46.42.63.68l-.79-.45a9.96 9.96 0 01-.76-.5 3.63 3.63 0 01-.7-.63 2.05 2.05 0 01-.39-.86z"/>
<path d="M80.94 127.5a.38.38 0 01-.24-.04c-.08-.03-.15-.1-.2-.15-.12-.14-.19-.26-.28-.39l-.27-.36-.3-.36c.15.05.29.14.43.24a2 2 0 01.33.35c.1.13.17.28.23.4.07.14.15.25.3.3z"/>
<path d="M79.27 124.6c.05.06.1.06.14.07h.14l.16.05c.06.03.12.06.16.12a.48.48 0 01-.18.06.48.48 0 01-.18 0 .3.3 0 01-.2-.08.2.2 0 01-.07-.1c0-.05 0-.1.03-.12z"/>
<path d="M80.55 128.76a.34.34 0 01-.12-.13l-.08-.13-.07-.12c-.02-.05-.05-.08-.06-.15a1.26 1.26 0 00-.25-.42l-.17-.21-.03-.06-.03-.04-.1-.1a1.18 1.18 0 01-.28-.45c.08.15.2.28.34.4.04.01.07.05.1.08.03.01.04.03.05.05l.04.04.2.18c.12.13.27.25.36.44a1.04 1.04 0 00.13.2l.08.08.07.06z"/>
<path d="M74.29 110.97c.07.34.07.68.03 1.02-.03.34-.1.67-.18.99-.08.33-.16.64-.22.96-.07.31-.12.64-.16.98a3.08 3.08 0 01-.1-1.02c0-.33.08-.67.15-1l.25-.96c.1-.31.16-.64.23-.97z"/>
<path d="M106.4 101.52l.08.1c.04.03.07.08.1.12a2.2 2.2 0 01.23.39l.1.25c.04.09.06.18.08.28l.06.3.02.3-.01.29-.03.27-.06.24-.07.19-.05.14a.65.65 0 01-.07.13v-.49l-.01-.22-.01-.26-.03-.27c0-.1-.02-.18-.03-.28a2.26 2.26 0 00-.05-.28c0-.09-.03-.18-.04-.27l-.06-.24-.05-.23-.1-.34v-.12z"/>
<path d="M111.91 113.95l.05.11.1.3a13.43 13.43 0 01.45 1.82l.03.32.01.12-.06-.1-.16-.28a3.83 3.83 0 01-.42-1.42 3.28 3.28 0 01-.03-.45v-.32l.03-.1z"/>
<path d="M110.15 119.39a4.2 4.2 0 00.36.65l.15.2a2.65 2.65 0 00.52.46l.09.03c.04.02.05.02.1.02a.8.8 0 00.4-.05l.2-.1.09-.07.04-.04.05-.04.14-.18.14-.2c.09-.14.17-.3.25-.45a.1.1 0 01.1-.05h.1a.3.3 0 00.1-.1c.07-.1.12-.2.15-.3.01.1 0 .23-.05.35a.5.5 0 01-.1.17l-.05.04c-.01 0-.04 0-.06.02l-.12.01.1-.06c-.06.17-.1.33-.18.49l-.13.24c-.04.07-.1.14-.17.22l-.04.05-.06.05a.44.44 0 01-.11.1l-.25.14c-.18.08-.38.11-.6.08a2.36 2.36 0 01-.14-.05 1.22 1.22 0 01-.36-.25 2.05 2.05 0 01-.33-.42 5.6 5.6 0 01-.23-.49c-.05-.12-.09-.3-.1-.47z"/>
<path d="M109.28 129.07l-.02.04a.58.58 0 00-.05.11l-.06.19c-.03.06-.06.14-.08.23l-.18.6a3.77 3.77 0 01-.48 1.02c-.06.1-.14.19-.22.28l-.42.47a4.1 4.1 0 01-.32.32.58.58 0 01-.12.11l.07-.16c.04-.1.12-.24.21-.4l.33-.52c.06-.1.12-.2.2-.3.06-.1.12-.19.16-.3.1-.2.2-.43.28-.64a4.56 4.56 0 01.43-.8c.05-.06.1-.1.13-.15.03-.05.06-.07.09-.1h.05z"/>
<path d="M104.49 136.1v-.08a.41.41 0 01.12-.2l.13-.1c.04-.04.1-.07.14-.09l.16-.07.16-.06.3-.15.25-.14.2-.1.07-.03-.04.07-.14.17c-.05.06-.14.13-.24.2a1.65 1.65 0 01-.3.18l-.17.07a.94.94 0 01-.17.04.56.56 0 00-.14.05c-.05 0-.08.03-.13.04a.63.63 0 00-.16.12l-.04.09z"/>
<path d="M107.66 135.03l-.04.03a.25.25 0 00-.04.05l-.01.04-.01.02v.02l-.03.1a.51.51 0 01-.12.22l-.09.08s-.02-.06-.02-.13a.5.5 0 01.03-.25.38.38 0 01.07-.13l.03-.03c.01 0 .02-.03.04-.03l.06-.03c.05-.01.1 0 .1.01l.03.03z"/>
<path d="M103.33 135.47h.02c.01-.02.02-.03.04-.03l.05-.02c.07-.04.15-.06.25-.1.05 0 .1-.03.17-.04h.09l.06-.02c.1-.03.23-.09.34-.15.06-.03.13-.05.18-.09.06-.03.13-.05.17-.08l.3-.17a.9.9 0 01.22-.07l.1-.02-.1.04a.86.86 0 00-.21.11l-.27.22c-.06.04-.12.06-.16.1l-.16.11a1.8 1.8 0 01-.35.21l-.1.04-.08.02-.14.06-.19.11-.02.02-.01.01z"/>
<path d="M119.04 139.26v-.02l.01-.07a.41.41 0 01.11-.2l.13-.1.15-.08.15-.07.16-.06.3-.15.25-.14.2-.1.08-.03-.05.07-.14.17a1.1 1.1 0 01-.23.2 1.65 1.65 0 01-.3.18l-.18.07a.94.94 0 01-.17.04.56.56 0 00-.14.05c-.05 0-.08.03-.13.04a.63.63 0 00-.15.11l-.05.1z"/>
<path d="M122.21 138.2l-.03.02a.25.25 0 00-.05.05v.04l-.02.02v.02l-.02.1a.51.51 0 01-.13.22c-.04.05-.09.08-.09.08s-.02-.06-.02-.13a.5.5 0 01.03-.25.38.38 0 01.07-.13l.04-.04.03-.02.07-.03h.1l.02.04z"/>
<path d="M117.88 138.63h.02c.01-.02.02-.03.05-.03l.04-.02c.07-.04.15-.06.25-.1.06 0 .1-.03.17-.04l.09-.01.07-.01.34-.15.18-.09.17-.08.29-.17a.9.9 0 01.22-.08h.1s-.04 0-.1.03c-.05.02-.12.05-.21.11-.08.06-.16.14-.27.21-.06.05-.11.07-.16.1l-.16.12c-.11.08-.22.16-.35.21l-.1.04-.08.02c-.04.02-.09.03-.13.06l-.2.1c0 .02 0 .02-.02.03v.01z"/>
<path d="M95.11 103.99l.03.04a1.04 1.04 0 01.02.6c-.05.2-.13.42-.22.64l-.13.33c-.01.05-.05.11-.06.17 0 .06-.03.11-.04.17-.04.11-.06.24-.07.35l-.05.35-.04.63-.03.46-.03.18-.04-.16a4.05 4.05 0 01-.1-.46l-.05-.3-.02-.35a3.03 3.03 0 01.15-.96l.06-.18.17-.34.17-.3.14-.25.09-.23.04-.19.01-.07v-.13z"/>
<path d="M94.55 118.14l.02.15.02.18.02.25c0 .1 0 .18-.03.28 0 .1-.02.2-.04.32l-.08.33-.1.32a10.62 10.62 0 01-.2.62c0 .05-.02.1-.04.15l-.03.15-.06.27-.04.22-.04.18-.03.16-.04-.16-.03-.18a1.54 1.54 0 01-.02-.23v-.45l.03-.16.03-.17.05-.17.1-.34.22-.63.09-.3c.03-.08.04-.17.08-.25l.05-.23.05-.18c0-.08.02-.13.02-.13z"/>
<path d="M119.45 104.67l.1.1a.6.6 0 01.1.12l.12.17a1.66 1.66 0 01.24.46l.1.28.06.3.03.3.01.3c0 .09 0 .18-.02.27l-.04.23c-.01.08-.04.14-.06.2-.02.06-.03.12-.06.15l-.05.13-.01-.14-.03-.35c0-.07 0-.14-.02-.22l-.02-.25-.04-.27c0-.1-.03-.18-.04-.27l-.06-.27-.05-.26-.07-.25-.07-.23a4.76 4.76 0 01-.1-.34l-.02-.16z"/>
<path d="M113.84 97.47l-.05.05-.1.14c-.1.1-.26.21-.41.3a1.5 1.5 0 01-.48.16l-.18.02h-.07l.05-.05.11-.14a1.8 1.8 0 01.88-.46l.18-.02h.07z"/>
<path d="M112.58 98.9l-.04.03a.19.19 0 01-.08.07.49.49 0 01-.26.1.55.55 0 01-.27-.04l-.09-.06c-.02 0-.03-.03-.03-.03l.03-.04.08-.07a.49.49 0 01.26-.1c.1-.02.2 0 .27.04.04.02.07.03.1.06l.03.04z"/>
<path d="M111.56 100.12l-.04.04a1.05 1.05 0 01-.47.24 1.1 1.1 0 01-.58-.06s0-.02.04-.04l.11-.1c.1-.06.23-.1.37-.14a1.1 1.1 0 01.57.06z"/>
<path d="M125.45 114.57l.05.11.13.3a9.16 9.16 0 01.53 1.8l.04.32.02.12s-.04-.03-.08-.1a7 7 0 01-.17-.27 2.28 2.28 0 01-.2-.4 3.07 3.07 0 01-.16-.5c-.05-.16-.1-.33-.12-.49a8.2 8.2 0 01-.05-.45v-.44z"/>
<path d="M123.95 120.09a4.07 4.07 0 00.4.64c.04.07.1.12.15.2.11.12.24.22.36.32.07.04.13.09.2.12l.08.04c.05 0 .07 0 .1.02.14.01.28-.01.41-.08a.97.97 0 00.26-.18l.03-.03.05-.05c.05-.06.1-.11.14-.18l.12-.2.23-.45v-.02c.03-.03.06-.05.1-.04h.08l.02-.01a.43.43 0 00.1-.1c.06-.1.1-.2.12-.32a.8.8 0 01-.03.36.52.52 0 01-.1.17l-.05.03a.09.09 0 01-.05.03h-.13l.1-.05c-.04.17-.09.34-.15.5-.04.08-.07.17-.12.25a1.5 1.5 0 01-.15.23l-.05.06a.2.2 0 00-.04.06l-.1.1c-.09.07-.16.11-.25.16a.96.96 0 01-.6.1c-.04-.01-.12-.02-.14-.04a.35.35 0 01-.14-.06c-.1-.05-.17-.12-.24-.17a2.38 2.38 0 01-.35-.4l-.14-.23c-.04-.08-.08-.16-.1-.24-.05-.2-.1-.37-.12-.54z"/>
<path d="M123.94 132.06l-.01.04a.58.58 0 00-.05.11l-.07.18-.06.24-.16.6c-.06.23-.14.46-.25.7l-.2.34-.2.3-.41.48-.3.32-.13.13.07-.16c.04-.1.1-.24.2-.4l.31-.54.19-.3.15-.3c.1-.21.18-.42.27-.64.1-.21.17-.42.27-.57l.14-.22.12-.16.1-.09c0-.05.02-.06.02-.06z"/>
<path d="M92.5 132.76l-.03.15c0 .1-.03.25-.05.42l-.2 1.24c-.07.45-.18.9-.29 1.23l-.08.23-.06.17-.07.14v-.15c0-.1 0-.25.02-.42a11.94 11.94 0 01.3-1.92 4.1 4.1 0 01.28-.79l.07-.17.1-.13z"/>
<path d="M95.02 122.64l.01.09c.02.05.02.13 0 .23 0 .1-.03.2-.07.32l-.07.17-.1.17a1.37 1.37 0 01-.23.3l-.26.2-.11.05a.18.18 0 01-.1.03c-.05.03-.08.03-.08.03s0-.04.04-.08l.12-.2.35-.52.33-.53.13-.18a.31.31 0 00.04-.08z"/>
<path d="M89.03 139.38v-.02l.01-.07a.41.41 0 01.12-.2c.03-.04.08-.07.12-.1l.15-.09.16-.06.15-.07.3-.15.26-.13.19-.1.08-.04-.05.07-.13.17c-.06.07-.15.13-.24.2a1.65 1.65 0 01-.3.18l-.17.07a.94.94 0 01-.17.04.56.56 0 00-.15.05l-.12.04a.63.63 0 00-.16.12l-.05.09z"/>
<path d="M92.2 138.3s0 .02-.03.03a.25.25 0 00-.05.05v.04l-.02.02v.02l-.02.1a.51.51 0 01-.13.22c-.04.06-.09.08-.09.08s-.02-.06-.02-.13a.5.5 0 01.04-.24.38.38 0 01.06-.14l.04-.03.03-.03.07-.03c.04-.01.09 0 .1.01l.02.04z"/>
<path d="M114.3 91.61c.05.12.08.23.14.33.02.06.05.1.09.16l.09.14c.12.2.26.41.38.63l-.03-.05.09.09.05.08.1.17.2.34.18.34c.06.1.11.23.16.35.2.47.38.94.55 1.42l.12.36.06.18.06.19a4.89 4.89 0 01.1.78c.04.52.03 1.02.03 1.52h-.34c0-.5.01-1.01-.02-1.5a41.6 41.6 0 00-.03-.36c-.01-.12-.04-.24-.06-.35l-.04-.18-.06-.18-.11-.36c-.16-.48-.32-.96-.5-1.42a4.38 4.38 0 00-.15-.34l-.15-.34-.17-.33-.1-.16-.04-.07a.21.21 0 00-.03-.05l-.04-.04-.31-.65c-.06-.11-.1-.22-.14-.34l-.04-.18a.99.99 0 01-.03-.18z"/>
<path d="M96.95 98.5l.05.07.11.2.14.32a2.5 2.5 0 01.05 1c-.02.19-.07.38-.12.58-.1.4-.2.81-.25 1.23l-.02.32v.35s0 .02.02.02l.01.03.02.1.01.07c.03.1.04.18.08.26.04.08.08.15.14.22l.04.04.06.06.05.05.05.07c.13.18.18.36.23.53.09.34.1.61.11.81l.01.3h-.34v-.28c-.02-.18-.03-.44-.1-.75a1.2 1.2 0 00-.19-.43l-.03-.04a.25.25 0 01-.05-.06l-.02-.02-.02-.04-.06-.05a1.26 1.26 0 01-.27-.63l-.01-.07-.01-.06-.02-.03v-.05c-.02-.03-.02-.06-.03-.1v-.35l.03-.33c.07-.43.2-.86.31-1.25a6.52 6.52 0 00.2-1.05c0-.31-.07-.56-.11-.74a1.05 1.05 0 00-.07-.2l-.02-.08z"/>
<path d="M86.48 97.72s.03.13.05.38c.02.12.02.27.05.43l.05.26c.02.09.02.19.06.3l.06.3.04.18c0 .05.03.1.04.17a6.93 6.93 0 00.23.71c.08.24.19.48.3.73.1.24.23.48.35.73l.4.71a17.89 17.89 0 00.81 1.31 11 11 0 01.6 1.1 113.38 113.38 0 00.35.74l-.3.14-.17-.34c-.04-.12-.1-.24-.19-.39-.06-.14-.17-.31-.26-.5l-.32-.57-.39-.64-.4-.69-.4-.73-.35-.76c-.1-.26-.2-.5-.28-.75l-.11-.38-.1-.36c0-.05-.03-.11-.04-.17l-.03-.17-.06-.32c-.03-.2-.03-.4-.04-.58a14.6 14.6 0 01.02-.82z"/>
<path d="M87.87 138.75l.02-.02.05-.02.04-.02.25-.1c.06 0 .1-.02.17-.04h.1l.06-.02c.1-.03.22-.09.34-.15l.18-.09.17-.07c.1-.06.2-.13.29-.17a.9.9 0 01.23-.08l.09-.01s-.04 0-.1.03l-.2.11-.28.22-.16.1-.16.11c-.1.08-.22.16-.34.22-.04 0-.07.02-.1.03l-.09.02-.13.06-.2.11-.01.02-.02.02z"/>
<path d="M91.19 83.46s0 .12-.03.31c0 .1-.02.2-.04.32l-.08.35-.09.35a4.8 4.8 0 01-.23.6v-.32c0-.09.02-.2.04-.32l.07-.36.1-.35c.03-.11.08-.21.11-.29.08-.2.15-.3.15-.3z"/>
<path d="M91.18 85.46v.1l-.02.22-.03.32-.03.36-.04.36v.17l-.02.14-.02.23-.01.09s-.06-.12-.1-.3c-.02-.1-.03-.2-.03-.33v-.18l.01-.2.07-.37.1-.31.1-.22c0-.05.02-.08.02-.08z"/>
<path d="M91.6 86.99l-.02.1-.04.26c-.03.1-.04.22-.06.36-.02.13-.03.27-.06.4 0 .14-.03.29-.04.41l-.01.2-.01.16c-.01.12-.01.2-.03.26v.1l-.04-.09a3.37 3.37 0 01-.11-.63v-.43l.04-.21.05-.2.05-.2.07-.17.12-.23.08-.1z"/>
<path d="M125.74 96.69l.05.03.09.1.08.16c.02.06.03.13.03.2a1 1 0 01-.02.19l-.07.15-.08.1-.04.04-.03-.05c0-.03-.03-.06-.04-.1a.93.93 0 01-.05-.32.8.8 0 01.05-.32c0-.05.03-.09.04-.11v-.07z"/>
<path d="M125.32 97.74s.03.02.05.06l.09.16c.03.08.04.17.06.26v.15c0 .06-.02.1-.03.16-.02.1-.05.2-.1.3a.81.81 0 01-.16.2.6.6 0 01-.15.12l-.07.03.01-.07.03-.16c.04-.14.07-.3.1-.48l.1-.48.05-.17.02-.08z"/>
<path d="M124.5 98.77l.03.09c.03.05.05.13.06.23.02.1.02.22.03.34v.2l-.03.18a3.6 3.6 0 01-.09.38l-.13.3c-.05.1-.1.16-.14.2l-.06.07v-.09c0-.05 0-.13.02-.24 0-.19.04-.42.09-.67l.13-.67.07-.22c0-.07.02-.1.02-.1z"/>
<path d="M112.44 76.7s.07.03.15.09a2.38 2.38 0 01.5.5l.08.15s-.07 0-.16-.05a1 1 0 01-.5-.53.37.37 0 01-.07-.16z"/>
<path d="M111.67 77.38s.06.03.13.1.13.16.19.26.09.21.1.3l.01.16-.12-.1a1.2 1.2 0 01-.2-.26.88.88 0 01-.1-.3c-.02-.1 0-.16 0-.16z"/>
<path d="M111.03 77.45l.07.16c.03.1.04.23.04.36 0 .13-.02.26-.04.36-.02.1-.07.16-.07.16l-.07-.16c-.03-.1-.04-.22-.04-.36 0-.12.02-.26.04-.36l.07-.16z"/>
<path d="M96.55 78.4l.18-.07-.05.04.1-.3.14-.29.17-.27.21-.25a2.29 2.29 0 01-.36.9 2.2 2.2 0 01-.2.25v.03h-.04a.92.92 0 01-.15-.04z"/>
<path d="M97.73 79.12l.06-.04.05-.06.07-.06.15-.2c.02-.03.04-.08.07-.1l.06-.13.06-.13.04-.12c.04-.08.06-.16.08-.24l.03-.1c0-.03 0-.06.02-.08l.02-.07.02.07c.02.02.02.05.03.08v.1c.02.08 0 .17 0 .27l-.04.15-.05.15-.08.13c-.04.05-.06.1-.1.13l-.12.1a.3.3 0 01-.11.06c-.03.03-.07.04-.1.05l-.08.02-.08.02z"/>
<path d="M99.23 79.27l-.06-.2c-.02-.13-.03-.28-.02-.45a1.61 1.61 0 01.16-.65l.06.2c.02.13.03.29.02.46a1.61 1.61 0 01-.16.64z"/>
<path d="M100.86 79.36s-.06-.08-.1-.2a2.23 2.23 0 01-.18-1.17s.06.07.1.2a2.23 2.23 0 01.18 1.17z"/>
<path d="M102.12 79.8s-.02-.08-.02-.19a1.7 1.7 0 01.18-.77c.04-.1.1-.16.1-.16s.02.08.02.2c.01.1-.01.26-.04.4-.04.13-.08.27-.14.36l-.1.16z"/>
<path d="M103.33 79.61s-.04-.07-.06-.15a1.3 1.3 0 01-.07-.31c0-.12-.02-.23 0-.33l.01-.16s.06.05.1.13a.86.86 0 01.1.67.64.64 0 01-.08.15z"/>
<path d="M104.2 79.84v-.19c0-.1 0-.22-.02-.34 0-.13-.03-.25-.04-.35l-.02-.13-.02-.06.05.03c.03.02.07.04.1.09.08.09.15.22.16.38.01.15-.01.3-.07.4a.49.49 0 01-.08.12.65.65 0 00-.05.05z"/>
<path d="M105.68 79.61l-.06-.14a1.66 1.66 0 01-.13-.57l.01-.15.12.1a.7.7 0 01.13.3.8.8 0 010 .32l-.07.14z"/>
<path d="M106.4 79.26l-.08-.14a.87.87 0 01-.1-.31 1.06 1.06 0 010-.33l.05-.16.1.14c.04.08.07.2.08.31v.33c-.01.1-.04.16-.04.16z"/>
<path d="M107.58 78.84s-.05-.05-.08-.12a.75.75 0 01-.07-.3.88.88 0 01.02-.3l.06-.13s.05.05.08.12c.03.08.07.18.07.3 0 .1 0 .2-.02.3l-.06.13z"/>
<path d="M108.9 78.83l-.1-.13-.12-.3a1.88 1.88 0 01-.06-.34v-.17l.12.12c.07.08.13.19.16.31.03.13.04.25.03.35 0 .1-.03.16-.03.16z"/>
<path d="M109.87 78.75l-.02-.05a1.17 1.17 0 01-.04-.14l-.1-.37c-.03-.14-.08-.26-.11-.36l-.05-.13a.47.47 0 00-.02-.05l.06.02c.03.01.08.04.12.09a.8.8 0 01.23.37c.04.16.04.32.02.43-.01.06-.03.1-.05.14l-.04.05z"/>
<path d="M123.88 86.2h.06l.14.08c.12.06.24.18.32.32.08.15.12.3.13.43v.16l-.02.06-.04-.04c-.04-.02-.07-.06-.12-.1a2.93 2.93 0 01-.24-.34 1.53 1.53 0 01-.17-.37l-.05-.15a.14.14 0 00-.01-.05z"/>
<path d="M124.6 88.38l.05.02c.03 0 .08.04.12.08.1.06.2.2.24.34a.8.8 0 01.03.4.38.38 0 01-.04.14.47.47 0 01-.03.05s-.02 0-.04-.04a2.22 2.22 0 01-.25-.44 1.54 1.54 0 01-.09-.36l-.01-.14.01-.05z"/>
<path d="M124.82 90.47l.05.04.12.09a.9.9 0 01.19.37.74.74 0 01-.1.55.33.33 0 01-.03.05s0-.02-.03-.05a1.59 1.59 0 01-.21-.85v-.2z"/>
<path d="M129.8 108.48l.05.07.16.2a5.73 5.73 0 01.98 2.04 7.68 7.68 0 01.25 1.5l.04.77.03.74c.03.49.04.94.04 1.32l.01.94v.35l-.05-.35-.09-.94-.1-1.32-.06-.74-.06-.77a15.54 15.54 0 00-.22-1.48 6.95 6.95 0 00-.82-2.07l-.13-.23c-.03 0-.04-.03-.04-.03z"/>
<path d="M130.14 110.44a5.51 5.51 0 01.53 1.75c.05.3.05.6.06.91v.91a24.13 24.13 0 00.14 2.7l.05.45.02.23c0 .03.03.07.04.1.02.01.04.04.06.01h.03v.01l-.01.2-.02-.2.03.02c-.01 0-.05.02-.07 0l-.06-.03-.05-.1-.06-.24-.1-.45c-.05-.3-.1-.6-.13-.9l-.07-.91c-.02-.15-.02-.3-.03-.47v-.91l.01-.45c.02-.3 0-.6 0-.9a6.05 6.05 0 00-.37-1.73z"/>
<path d="M129.32 110.76l.08.19c.04.12.1.3.15.53a4.4 4.4 0 01.12.77l.05.44.05.45.03.45.05.43.05.4a21.62 21.62 0 00.25 1.1l-.09-.2c-.05-.12-.13-.29-.2-.51l-.1-.36a3.63 3.63 0 01-.1-.41c-.01-.15-.04-.3-.06-.44l-.05-.45-.03-.45-.02-.44-.06-.77a12.53 12.53 0 00-.07-.54.96.96 0 01-.05-.2z"/>
<path d="M129.05 112.37s-.06-.21-.1-.55a7.1 7.1 0 01-.06-.58l-.01-.32-.01-.34v-.34l.03-.33c.01-.21.03-.4.07-.57.04-.33.1-.56.1-.56l.01.16.01.4.01.57v1.86l-.02.4-.03.2z"/>
<path d="M80.37 74.1s-.04.08-.13.17a1.39 1.39 0 01-.79.43c-.12.02-.2.01-.2.01l.04-.03.12-.1.37-.22.4-.18.13-.05.06-.03z"/>
<path d="M80.1 75.38c-.06 0-.1.08-.08.1v.02l-.02.01-.18.15c-.07.05-.13.1-.2.13l-.2.1-.21.08-.23.05-.11.02-.11.02c-.16 0-.3 0-.47-.03l.22-.08.1-.03.1-.03.2-.07.2-.07c.14-.04.28-.1.41-.15l.2-.07.1-.05.1-.04-.01.04c.03-.09.14-.13.2-.1z"/>
<path d="M85.75 64.65l-.07-.02-.14-.04a4.96 4.96 0 00-.51-.05c-.2-.02-.39-.05-.52-.1a.73.73 0 01-.16-.07l-.06-.04s.03.02.07.02l.17.02c.14.01.33 0 .5-.02l.54-.06h.26z"/>
<path d="M84.75 62.73s.06-.1.18-.23a4.25 4.25 0 01.98-.88l.19-.12.08-.03.12.32-.08.02c-.04 0-.1.03-.19.07a3.27 3.27 0 00-1.07.66c-.14.11-.21.2-.21.2z"/>
<path d="M89.25 63.5l-.22.27-.23.25-.3.27-.18.12a.77.77 0 01-.18.1.59.59 0 01-.18.07.94.94 0 01-.17.05h-.35l.1-.04c.05-.02.13-.04.22-.09l.13-.07.15-.1.16-.1c.05-.04.1-.09.16-.12l.3-.24.28-.2.3-.17z"/>
<path d="M85.9 62.5l.02-.04a.36.36 0 01.07-.08 1.26 1.26 0 01.3-.21c.14-.07.32-.13.5-.15l.3-.02h.3a1.33 1.33 0 01.57.2l.23.13c.06.04.13.09.2.12.25.16.4.3.4.3s-.2-.06-.47-.18a7.2 7.2 0 01-.7-.3l-.26-.04c-.09-.02-.19-.02-.28-.02-.09 0-.18 0-.27.02-.18 0-.34.03-.47.06l-.18.07a.75.75 0 00-.14.07c-.03.02-.07.03-.08.05l-.04.02z"/>
<path d="M86.43 62.7s0 .04-.03.1a.34.34 0 01-.1.15.53.53 0 01-.18.06c-.05.02-.1 0-.1 0l.02-.1c.03-.06.06-.1.12-.14a.53.53 0 01.17-.07h.1z"/>
<path d="M85.76 63.78l.02-.07.1-.18c.04-.06.1-.14.19-.21l.12-.1.11-.08.1-.1.1-.12.2-.19.17-.12.04-.04h.01v.02s0 .03-.02.05l-.09.18c-.03.07-.09.15-.15.24l-.09.12a.45.45 0 01-.1.13c-.03.02-.05.04-.09.05l-.02.02h-.02l-.04.03c-.04.02-.09.04-.12.08-.08.04-.16.1-.22.15-.06.04-.1.09-.15.1l-.05.04z"/>
<path d="M86.14 63.93l.13-.04a.83.83 0 01.24 0 .77.77 0 01.32.15s-.04.04-.11.06a.58.58 0 01-.25.02.45.45 0 01-.22-.09l-.1-.1z"/>
<path d="M86.7 63.74l.03-.01.08-.02c.06 0 .14 0 .2.02.07 0 .14.03.2.05l.1.06-.1.07a.4.4 0 01-.23.03.3.3 0 01-.2-.11c-.07-.04-.08-.1-.08-.1z"/>
<path d="M87.25 63.41l.09-.07a.39.39 0 01.2-.04.6.6 0 01.2.04c.06.02.1.07.1.07l-.1.07a.39.39 0 01-.2.04.6.6 0 01-.2-.04l-.09-.07z"/>
<path d="M79.29 62.03a.6.6 0 00-.1.33l-.04-.06.15.02h.06a.2.2 0 01.1.03c.05.02.09.08.09.11v.09l.04.01.12.04h.42c.06.02.14.03.2.08s.07.09.1.1h.23a1.42 1.42 0 01.59.16h-.3c-.1 0-.19 0-.28.02l-.14.02a.33.33 0 01-.2-.02c-.07-.05-.1-.1-.13-.1a.17.17 0 00-.1-.03h-.28a.67.67 0 01-.16-.02c-.06 0-.1-.03-.16-.05a1.04 1.04 0 01-.09-.06.2.2 0 01-.06-.13v-.06h.01l-.03-.01-.07-.03-.14-.04h-.01c-.03-.01-.05-.04-.04-.06a.45.45 0 01.21-.34z"/>
<path d="M70.07 66.06v-.03l.02-.1a.46.46 0 01.07-.12l.06-.08c.02-.03.05-.04.1-.06a.83.83 0 01.22-.06l.25-.02.26-.01h.26c.09 0 .17 0 .26-.02.08 0 .17 0 .24-.02a.87.87 0 00.2-.05.8.8 0 00.16-.12.91.91 0 00.19-.25l.06-.1-.02.12a.97.97 0 01-.13.3.91.91 0 01-.17.17.62.62 0 01-.25.11c-.09.02-.18.05-.27.05h-1.24l-.07.03-.07.05a.73.73 0 01-.1.09l-.05.06c0 .05.02.06.02.06z"/>
<path d="M73.33 64.31l.03.02a.2.2 0 01.07.07c.06.06.1.16.1.26s-.02.2-.07.26c-.04.07-.1.1-.1.1v-.04a1.39 1.39 0 01-.05-.32v-.22l.02-.1v-.03z"/>
<path d="M73.8 64.36s.04 0 .07.04c.05.04.07.08.07.14 0 .05-.01.11-.05.14a.5.5 0 01-.06.06s-.04-.03-.06-.07a.24.24 0 01-.05-.11l.03-.12c0-.05.04-.08.04-.08z"/>
<path d="M71.84 67.62c.06-.05.12-.08.2-.12l.1-.04.1-.03c.06-.03.14-.04.22-.05l.23-.01.1.01a.4.4 0 01.12.02l.11.04c.04 0 .08.03.12.05l.1.07.09.08.08.09.07.1v.01a.5.5 0 01.03.25 1.04 1.04 0 01-.23.63c.04-.14.06-.28.06-.43l-.01-.2a.61.61 0 00-.05-.17v.01l-.05-.08-.07-.06-.07-.06a.18.18 0 00-.08-.04.2.2 0 00-.09-.05l-.09-.03-.09-.03c-.03 0-.07 0-.1-.02l-.1-.01-.1-.01h-.2l-.1.01-.1.01-.11.02a.13.13 0 01-.09.04z"/>
<path d="M69.6 65.46l.2-.12.2-.16.24-.24.27-.29c.06-.04.1-.1.16-.16l.18-.16a.77.77 0 01.23-.1l.04-.02h.03l.08-.01.14.01a.5.5 0 01.27.1c.04.01.09.06.12.1l.05.08v.13a.41.41 0 01-.06.15.1.1 0 01-.05.06l-.03.04-.04.03-.13.04-.11.05-.44.16a4.15 4.15 0 00-.72.38c-.1.07-.18.15-.25.21l-.2.17c-.06.05-.12.06-.16.07l-.06.01.06-.02c.03-.02.08-.04.13-.1.06-.05.1-.11.17-.2l.23-.25c.09-.1.2-.17.32-.25.13-.08.26-.15.4-.21l.44-.19.11-.04.1-.03h.02v-.02c.02 0 .03-.02.04-.03a.1.1 0 00.03-.07v-.03l-.06-.06a.48.48 0 00-.2-.06l-.1-.02h-.09l-.18.08c-.11.07-.23.17-.34.26l-.29.26c-.18.17-.36.28-.5.34l-.15.07-.1.04z"/>
<path d="M68.9 70.53v-.22a.93.93 0 01.07-.21.84.84 0 01.15-.2l.15-.15.04-.07.06-.09a.2.2 0 01.07-.07l.06-.02h.06l-.04.04a.17.17 0 00-.05.1l-.01.1-.01.05-.02.07a.97.97 0 01-.16.2l-.15.16-.11.15-.1.16z"/>
<path d="M73.88 65.71v.06l-.05.16a.85.85 0 01-.1.2l-.16.2-.2.16a.85.85 0 01-.21.1l-.16.05a.14.14 0 00-.05 0s0-.02.04-.04l.1-.11.32-.3.31-.32a.82.82 0 01.12-.1.65.65 0 01.04-.06z"/>
<path d="M76.5 64.47a.21.21 0 01-.02-.09v-.09a.45.45 0 01.06-.17l.1-.15.1-.12.02-.02.08-.06.08-.04.06-.04a1.65 1.65 0 01.21-.15c.03 0 .07-.03.1-.04l.09-.03.3-.13.33-.11a1.8 1.8 0 01-.27.22l-.14.1a.72.72 0 01-.15.1c-.03 0-.05.02-.07.03l-.07.03-.13.1-.08.05-.08.05-.14.06.03-.02c-.08.1-.17.17-.24.24l-.1.11-.04.07-.03.1z"/>
<path d="M82.04 62.12a.8.8 0 01.24-.5c.02 0 .05-.02.07 0 .03 0 .05 0 .06.02a.2.2 0 01.05.06v.03l.02.02.01.05.04.15-.02-.04.05.01-.07.05a.68.68 0 01.52-.3c.05 0 .11.04.11.1v.02c0 .03.02.09.06.1l-.16.08.04-.1a.23.23 0 01.13-.1c.01-.02.03-.02.06-.02h.05l.04.01.03.04c.05.04.05.09.06.1 0 .04 0 .05.02.07l.02.02c.02.02.07.02.12.02l.06-.01.08-.02.17-.07.1-.02h.1c.06 0 .12.04.15.1-.04-.05-.1-.05-.16-.05a.2.2 0 00-.08.03l-.06.03-.15.09-.08.04-.1.04a.4.4 0 01-.23-.02.2.2 0 01-.1-.1l-.04-.1-.03-.04h.02-.02.02c.02-.01 0 0 0 .01-.02.01-.02.03-.03.06 0 .05-.08.09-.13.08l-.03-.02a.35.35 0 01-.16-.32l.1.12a.46.46 0 00-.2.06.5.5 0 00-.16.13v.01a.09.09 0 01-.07.04.22.22 0 01-.2-.08l-.02-.01v-.04l-.03-.16-.01-.05v-.04h.01c.01 0 .02 0 .03-.02h.02a2.1 2.1 0 00-.33.44z"/>
<path d="M83.57 63.1l.01.07.02.18c0 .04 0 .07.02.1 0 .04.02.06.03.1l.1.22a.6.6 0 01.06.12l.04.14.04.12.02.12.03.14.05.05-.02.01h-.06a.4.4 0 01-.18-.11l-.08-.1-.08-.1a1.23 1.23 0 01-.07-.13l-.06-.14a.87.87 0 01-.1-.3v-.16a.48.48 0 01.05-.13.47.47 0 01.11-.16c.05-.01.07-.03.07-.03z"/>
<path d="M85 67.19s.05.02.1.07c.05.04.1.13.1.22a.4.4 0 01-.03.25.3.3 0 01-.07.1s-.04-.04-.06-.1a1.07 1.07 0 01-.06-.2v-.3l.01-.04z"/>
<path d="M84.63 67.88s.05.03.08.1a.43.43 0 01-.07.5c-.04.05-.1.07-.1.07l-.02-.12c-.01-.07 0-.15.01-.23a1.19 1.19 0 01.1-.29v-.03z"/>
<path d="M84.01 68.5s.04.05.05.14c0 .1 0 .2-.02.32a.77.77 0 01-.15.27c-.06.07-.11.1-.11.1s-.02-.07 0-.14c0-.08.02-.2.05-.29l.11-.27.07-.13z"/>
<path d="M83.37 69.1a.47.47 0 00.04.2.76.76 0 01-.1.42l-.06.1c-.02 0-.03.03-.04.04l-.04.05a.53.53 0 01-.18.11c-.06.02-.12.02-.15.02a.14.14 0 01-.06 0l.05-.04.09-.1a.7.7 0 00.1-.13l.04-.08a.2.2 0 00.05-.09c.07-.11.12-.23.17-.32l.06-.13.03-.05z"/>
<path d="M82.8 69.65v.04c0 .03 0 .07-.02.12a.7.7 0 01-.19.29.6.6 0 01-.31.16c-.1.02-.17 0-.17 0l.03-.04.08-.08.22-.21.24-.2.1-.07.03-.01z"/>
<path d="M76.96 67.92l.04.02c0 .02.03.03.05.05.05.03.1.07.13.11l.1.15.04.09s-.04.02-.11.01a.28.28 0 01-.2-.1.34.34 0 01-.08-.21v-.08l.03-.04z"/>
<path d="M77.65 68.1s.06 0 .1.03a.4.4 0 01.24.3v.11s-.05 0-.1-.03a.31.31 0 01-.15-.13.37.37 0 01-.08-.18c-.02-.05-.01-.1-.01-.1z"/>
<path d="M78.5 68.38l.03.02.06.02c.04.01.09.03.12.07a.4.4 0 01.08.1l.03.09s-.03.03-.09.03a.22.22 0 01-.18-.05.22.22 0 01-.08-.17l.01-.07.02-.04z"/>
<path d="M77.57 66.02l.06.04.14.07.1.01c.03 0 .07-.01.14 0s.14.04.17.09l.1.12c.01.03.02.04.04.05l.04.03.1.05.22.08.17.08c.02 0 .03.02.04.03l.01.01h-.23l-.26-.01a.32.32 0 01-.16-.07l-.04-.02v-.01l-.03-.02-.06-.07a.29.29 0 00-.08-.1c-.02-.03-.03-.05-.05-.05l-.11-.02a.23.23 0 01-.13-.06.34.34 0 01-.12-.14c-.06-.07-.06-.1-.06-.1z"/>
<path d="M77.53 65.37l.06.05.17.07h.4c.04 0 .09 0 .13-.02.03 0 .04 0 .05-.02l.04-.03.15-.1.26-.1a.64.64 0 01.27-.05l-.06.04c-.03.04-.09.07-.15.13-.07.04-.14.1-.22.17l-.11.09-.08.05c-.03.03-.07.04-.1.05l-.2.02H78a.81.81 0 01-.3-.1.38.38 0 01-.16-.21v-.04z"/>
<path d="M78.36 64.68l.02-.04c.03-.1-.03-.2-.04-.3l-.01-.14a.18.18 0 00-.03-.11c0-.01 0-.03-.02-.04a.09.09 0 00-.05-.02c-.16-.01-.32 0-.48.03-.01.08-.1.22.07.43.17.22.4.23.48.22l.06-.03z"/>
<path d="M78.9 61.37l.04-.01.04-.03.06-.02c.08-.03.19-.04.28-.05l.27-.04.12-.02-.1.07-.23.14a.79.79 0 00-.2.15l-.03.03-.02.03-.02.02z"/>
<path d="M69.28 69.02l.03-.03c.03 0 .06-.03.1-.05.1-.05.23-.1.4-.12a.74.74 0 01.27.02c.1 0 .2.05.27.08.08.02.16.04.25.04s.18 0 .27-.02l.26-.08c.08-.04.16-.08.24-.14.08-.04.15-.1.23-.13a.66.66 0 01.24-.06.69.69 0 01.43.15l.02.02-.02-.02c-.02-.01-.05-.04-.1-.05a.7.7 0 00-.33-.05.79.79 0 00-.21.06c-.07.04-.14.1-.2.15-.08.06-.15.13-.24.17a1.26 1.26 0 01-.6.18.9.9 0 01-.3-.02c-.09-.02-.16-.05-.23-.05l-.2.01a.61.61 0 00-.28.12l-.06.04-.03.02z"/>
<path d="M68.34 69.17h-.02c-.03 0-.07 0-.1-.02h-.02l-.02-.02v-.01l-.04-.04a.2.2 0 01-.05-.05l-.06-.11a.3.3 0 01-.05-.13v-.27c0-.04 0-.09.02-.12a.97.97 0 01.13-.22.97.97 0 00.31-.6 1 1 0 01-.2.7.34.34 0 00-.06.17v.1s0 .03.02.04v.05l.02.03.02.03.05.07.05.07.03.02v-.01a.12.12 0 00-.1-.01c-.02 0 0 0 0 0z"/>
<path d="M79.32 71.6l.08-.01.08-.01.11-.03.3-.1a.54.54 0 01.2-.04h.19a1.81 1.81 0 00.65-.05l.3-.08-.29.13c-.09.03-.18.08-.3.11a2.2 2.2 0 01-.37.07l-.1.01-.07.01c-.05.01-.1.04-.14.06l-.28.16-.12.05c-.04.01-.08.02-.1.04-.06 0-.08.02-.08.02z"/>
<path d="M79.38 63.99c.02 0 .02 0 .03.02l.1.04c.05.01.1.04.17.05h.1l.1.02c.15.01.29 0 .39-.02.05-.01.09-.04.12-.05a.12.12 0 00.05-.02l-.04.03a.32.32 0 01-.11.08c-.1.06-.25.12-.4.15l-.1.02-.12.01a.68.68 0 01-.22 0 .47.47 0 01-.21-.05z"/>
<path d="M77.41 64.35s-.04 0-.1.03l-.22.08a1.7 1.7 0 00-.2.1l-.09.07.04-.1a.9.9 0 01.13-.2l.16-.19.08-.08z"/>
<path d="M127.94 96.63l-.02-.28a7.16 7.16 0 00-.17-1.22c-.03-.17-.07-.27-.07-.27l.12.26c.06.16.14.37.2.59.08.21.14.43.19.6l.08.28z"/>
<path d="M84.59 92.75v.31l.03.35.02.21.04.24.09.53.12.58.14.64c.03.21.08.45.08.68 0 .24-.03.47-.04.68a6.09 6.09 0 00.15 2.19l.09.34.09.3-.05-.08-.1-.19-.17-.32a3.8 3.8 0 01-.28-.98l-.07-.63.03-.65c0-.23.04-.44.04-.66 0-.21 0-.41-.04-.64l-.1-.63-.07-.6-.05-.54v-.46a3.25 3.25 0 01.06-.59l-.01-.08z"/>
<path d="M83.28 91.3l-.03.4a18.53 18.53 0 00-.14 1.71 6.7 6.7 0 00.1 1.56l.18.82c.06.28.13.56.16.85l.01.12v.11l.01.21v.42l-.05.77a4 4 0 00.08 1.24 2.54 2.54 0 00.28.68l.05.09-.06-.08-.18-.24c-.07-.1-.15-.24-.22-.4a2.66 2.66 0 01-.16-.58 4.5 4.5 0 01-.05-.7v-.77l-.01-.4-.02-.2v-.2a6.88 6.88 0 00-.17-.81c-.05-.28-.12-.55-.16-.85a5.31 5.31 0 01-.04-1.61 12.6 12.6 0 01.33-1.7c.04-.3.09-.44.09-.44z"/>
<path d="M80 96.93c-.05-.1-.1-.2-.14-.33a3.82 3.82 0 01-.15-1.07c.02-.24.03-.48.06-.71l.1-.7.13-.7.06-.34.07-.35.1-.35.13-.34c.09-.22.19-.44.34-.64l-.02.02.07-.15a.5.5 0 01.1-.12l.18-.21.2-.2.19-.22c-.07.18-.2.34-.3.5l-.15.23c-.03.05-.05.08-.06.13a.25.25 0 00-.03.1l-.01.03v.01c-.06.1-.1.2-.14.3-.05.1-.08.22-.11.33l-.1.33c-.04.11-.06.23-.08.33-.03.11-.04.22-.05.35-.01.11-.03.24-.06.35l-.1.69-.13.68c-.05.23-.1.46-.11.68l-.04.34-.01.34c-.03.22 0 .46.07.69z"/>
<path d="M82.66 90.71l-.11.4-.13.45-.16.57c-.05.22-.1.44-.18.69l-.18.77-.17.82a19.37 19.37 0 00-.27 1.72l-.09.83-.03.78.01.7a14 14 0 00.15 1.46l-.04-.1-.09-.29a7.61 7.61 0 01-.28-1.77 10.6 10.6 0 01-.01-.8c.01-.28.02-.57.06-.86a11.79 11.79 0 01.29-1.75l.2-.83a10.46 10.46 0 01.46-1.45l.41-.99c.06-.11.1-.2.12-.27l.04-.08z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 33 KiB

View file

@ -1,20 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="cancer" stroke-width=".3">
<path d="M105.3 65.7c-.3 0-1.3 1.4-1.4 4.1-.1 2.2.8 5.9.8 5.9s1.8 6.3 2.6 7.1c.8 1 5-3.2 4.6-4.7-.4-1.5-2.2-1.7-2.9-2.8-.4-.3-.2-1-.3-1.1-.1-.2-.7 0-1-.3-.2-.4-.6-.4-.7-1 0-.6.8-.7.5-1.4-.3-.6-1.5-1-1.7-1.5 0-.6.5-1.2.4-1.5 0-.3-.8-.6-.8-1.2s.4-1 .2-1.4c-.1-.4 0-.2-.3-.2zm-10.5 0c.2 0 1.2 1.4 1.3 4.1.1 2.2-.8 5.9-.8 5.9s-1.8 6.3-2.6 7.1c-.8 1-5-3.2-4.6-4.7.4-1.5 2.2-1.7 3-2.8.3-.3.1-1 .2-1.1.1-.2.8 0 1-.3.2-.4.7-.4.7-1 .1-.6-.8-.7-.5-1.4s1.5-1 1.7-1.5c.1-.6-.5-1.2-.4-1.5 0-.3.9-.6.9-1.2s-.4-1-.3-1.4c.1-.4.1-.2.4-.2zm26.4 22.2s1-1.4 1.7-3.8l.6-2.9c0-1.4-.2-2.5 0-2.6.3 0 .6.9.8 2 .2 1.1.2 2.5.2 2.5s.7-.6 1.3-1.5c.4-.6.6-1.6.7-1.6.2.2 0 2.3-1 4.6a22.3 22.3 0 01-3.3 4.8l-1-1.5zm2.2 6.5s1.2-.8 2.3-2.6c.4-.6 1-1.4 1.2-2 .5-1.2.6-2.1.8-2 .2 0 .2.8 0 1.7 0 1-.5 2-.5 2s.8-.3 1.5-.8c.5-.4.9-1.1 1-1 .1.1-.6 1.7-2 3.3-1.6 1.6-4 3-4 3l-.3-1.6z"/>
<path d="M106.9 62.7c1-.2 2.5 0 4 1.3 1.6 1.4 3.3 4 4.4 7.5.3.7 1 2.7 1.6 5.2 1.1 4.3.9 7.6 0 9.2-.5 1-2 2.3-3.4 2.7-1.4.4-1.9-.3-2.2-.3-1.3.4-2.5-1.7-3.4-3.5-.7-1.2-1.5-1.9-1.6-2.4-.2-.7.5-.1 1.8-1 .7-.4.1-.9.9-1.6.8-.7 1-.1.9-1-.8-2.4.3-2.7 0-3.6-.1-1-.8-1.4-.9-1.8-.1-.7.3-.6.1-1.6 0-.4-.3-.8-.4-1.2-.1-.8.5-1.4.4-1.7s-1.2-.6-1.3-1c-.1-.5.6-1.2.3-2.3-.2-.8-.6-1.3-.9-1-.5-.3-.3-.6-.6-.8-.6-.6-1 0-1-.2-.2 0 0-.6 1.3-.9zm18.9 39.1l.8-.7 2.3-1.7c1-.7 3-.4 2.9-.4-.1-.5-2-1.2-3.8-.4-1.7.8-3.4 2.5-3.4 2.5l1.2.7zm-1.3 5.6l.8-.6s1.8-1.2 2.6-2.1c.8-1 2.8-1.3 2.8-1.3-.3-.4-2.3-.3-3.8.9a26.6 26.6 0 01-3.6 2.4l1.2.7zm-21.7-22.9c.1-1.4-.8-5.7-.6-11.4.3-6.2 1.9-12 1.7-12.2a48 48 0 00-2.4 12.1c-.6 5.6 0 10.3 0 11.3s1.2 1.6 1.3.2zm-24 3.4s-1-1.4-1.7-3.8l-.6-2.9c0-1.4.2-2.5 0-2.6-.3 0-.6.9-.8 2-.2 1.1-.2 2.5-.2 2.5s-.7-.6-1.3-1.5c-.4-.6-.6-1.6-.7-1.6-.2.2 0 2.3 1 4.6 1.1 2.4 3.3 4.8 3.3 4.8l1-1.5zm-2.2 6.5s-1.2-.8-2.3-2.6c-.4-.6-1-1.4-1.2-2-.5-1.2-.6-2.1-.8-2-.2 0-.2.8 0 1.7 0 1 .5 2 .5 2s-.8-.3-1.5-.8c-.5-.4-.9-1.1-1-1-.1.1.6 1.7 2 3.3 1.6 1.6 4 3 4 3l.3-1.6zm16.5-31.7c-1-.2-2.5 0-4 1.3-1.6 1.4-3.3 4-4.4 7.5-.3.7-1 2.7-1.6 5.2-1.1 4.3-.9 7.6 0 9.2.5 1 2 2.3 3.4 2.7s1.9-.3 2.2-.3c1.3.4 2.5-1.7 3.4-3.5.7-1.2 1.5-1.9 1.6-2.4.2-.7-.5-.1-1.8-1-.7-.4-.1-.9-.9-1.6-.8-.7-1-.1-.9-1 .8-2.4-.3-2.7 0-3.6.1-1 .8-1.4.9-1.8.1-.7-.3-.6-.1-1.6 0-.4.3-.8.4-1.2.1-.8-.5-1.4-.4-1.7 0-.2 1.2-.6 1.3-1 .1-.5-.6-1.2-.3-2.3.2-.8.6-1.3.9-1 .5-.3.3-.6.6-.8.6-.6 1 0 1-.2.2 0 0-.6-1.3-.9zm-18.9 39.1l-.8-.7-2.3-1.7c-1-.7-3-.4-2.9-.4.1-.5 2-1.2 3.8-.4 1.7.8 3.4 2.5 3.4 2.5l-1.2.7zm1.3 5.6l-.8-.6s-1.8-1.2-2.6-2.1c-.8-1-2.8-1.3-2.8-1.3.3-.4 2.3-.3 3.8.9 1.4 1.2 3.6 2.4 3.6 2.4l-1.2.7zm21.7-22.9c-.1-1.4.8-5.7.6-11.4-.3-6.2-1.9-12-1.7-12.2.4-.2 1.8 6 2.4 12.1.5 5.6 0 10.3 0 11.3s-1.2 1.6-1.3.2zm-.7 45.5s-1.4.5-2.6 1.4c-1.3 1-2.3 2.1-2.6 2.5-.3.4-.4 1 .4 2.1.9 1.1 2.8 2.2 4 2.2 1 0 2-1.3 2-1.3v-4.6l-1.2-2.3zm7.1 0s1.4.5 2.6 1.4c1.4 1 2.3 2.1 2.6 2.5.3.4.4 1-.4 2.1-.9 1.1-2.8 2.2-3.9 2.2s-2-1.3-2-1.3v-4.6l1.1-2.3z"/>
<path d="M102.2 128.7s1.1 2.4 1.1 6c0 2-.4 3.2-.7 3.6-.3.4-1.4 1-2.6 1-1.1 0-2.2-.6-2.5-1-.3-.4-.7-1.6-.7-3.7 0-3.5 1.1-5.9 1.1-5.9h4.3zm-7.4-.5c-1 0-.6.2-1.6.2s-2.2-1-3.3-1c-1 0-2.2.9-2.2 2.8s1.5 4.3 3 4.3 5.1-4.6 5.1-4.6 0-1.7-1-1.7zm10.5 0c1 0 .6.2 1.6.2s2.2-1 3.3-1c1 0 2.2.9 2.2 2.8s-1.5 4.3-3 4.3-5-4.6-5-4.6 0-1.7 1-1.7z"/>
<path d="M97 128.3s-.3.6-.8 1c-.5.3-1 .5-1 .7-.1.3.1.7.7 1.2.5.5.7.5 1 .4.2-.1.4-.5.7-1.2a8 8 0 00.4-1.4l-1-.7zm6 0s.4.6 1 1c.4.3 1 .5 1 .7 0 .3-.2.7-.8 1.2-.5.5-.7.5-1 .4-.2-.1-.4-.5-.7-1.2a8 8 0 01-.4-1.4l1-.7z"/>
<path d="M95.8 127.4c-.2.1-.4.6-1.2.8-.4.1 0 1 .3 1.4.3.5 1.2-.3 1.4-.4l.5-.7c.3-.5-.8-1.2-1-1zm8.5 0c.2.1.4.6 1.2.8.4.1 0 1-.3 1.4-.3.5-1.2-.3-1.4-.4l-.5-.7c-.3-.5.8-1.2 1-1z"/>
<path d="M103.4 125c0 .9 1 2.2 1 2.5s-.5.2-.8.6c-.4.4-.6 1-1.1 1.2-1.2.2-1.5.7-2.5.7s-1.2-.5-2.3-.7c-.6-.2-.8-.8-1.2-1.2-.3-.4-.7-.4-.7-.6s.9-1.7.9-2.6 6.7-.9 6.7 0zm19.1-22.8s.2 0 1.5-1c.8-.4 2-1.5 2.1-1.6.7-.4 1.3 1 .6 1.8-.4.4-1.3 1.1-2.5 1.8-1.5.7-1.7.5-1.7.5l-.5-.9.5-.6zm-1.2 5.5l1.5-.8c.8-.4 1.9-1.3 2.1-1.4.7-.3 1.3.8.5 1.6-.3.3-1.4 1-2.6 1.5-1.4.6-1.7.4-1.7.4l-.4-.8.6-.5zm-43.8-5.5s-.2 0-1.6-1c-.7-.4-1.8-1.5-2-1.6-.7-.4-1.4 1-.6 1.8.4.4 1.3 1.1 2.5 1.8 1.5.7 1.7.5 1.7.5l.5-.9-.5-.6zm1.3 5.5l-1.6-.8-2.1-1.4c-.7-.3-1.3.8-.5 1.6.4.3 1.4 1 2.6 1.5 1.5.6 1.7.4 1.7.4l.4-.8-.5-.5z"/>
<path d="M103.3 122c0 1 1.3 2.7 1.3 3 0 .2-.5.8-1 .9-.5 0-.4-.2-1 0-.5.2-1 .6-2.5.6s-2-.4-2.6-.6c-.6-.2-.4 0-1 0-.4-.1-1-.7-1-1 0-.2 1.4-2 1.4-2.9 0-.9 6.4-.9 6.4 0zm3.9-29.2c-.5-.5-.6-1.3 0-1.7.6-.4 1.4-.8 2.6-1.8.5-.4.7-1 .7-1l1.1-.6c.7-.2 1.4 0 1.6 0 .5.4 1 0 .9 1.4 0 .7-2.2 4.3-2.2 4.3s-.3.5-1.4.5c-1 0-1.1-.7-1.5-.4-.7.2-1.3-.2-1.8-.7zm9.3-.3s1.6-1.1 3-2.7l1.6-2.3c.7-.7 2.1.7 1.5 2-.5 1.3-5 4.7-5 4.7l-1-1v-.7zm1.3 5.9s1.8-1 3.2-2.2c.8-.6 2-2 2.3-2.1.7-.5 1.7 1 1 2a14 14 0 01-2.9 2.2c-1.5 1-3.1 1.8-3.1 1.8l-.6-1v-.7zm.4 5.7s.6 0 2.2-.7c1-.5 2.3-1.5 2.6-1.7.7-.3 1.3 1.2.4 2a11 11 0 01-3 1.7c-1.8.7-2 .4-2 .4l-.4-1 .2-.7zm-1.2 5.1s.5 0 2.1-.6c1-.3 2.3-1.2 2.6-1.3.8-.3 1.3 1.2.3 1.9-.5.3-1.7.9-3 1.3-1.8.5-2 .2-2 .2l-.4-1 .3-.5zM92.8 92.8c.5-.5.6-1.3 0-1.7-.6-.4-1.4-.8-2.6-1.8-.5-.4-.7-1-.7-1l-1.1-.6c-.7-.2-1.4 0-1.6 0-.5.4-1 0-.9 1.4 0 .7 2.2 4.3 2.2 4.3s.3.5 1.4.5c1 0 1.1-.7 1.5-.4.7.2 1.3-.2 1.8-.7zm-9.3-.3s-1.6-1.1-3-2.7L79 87.5c-.7-.7-2.1.7-1.5 2 .5 1.3 5 4.7 5 4.7l1-1v-.7zm-1.3 5.9s-1.8-1-3.2-2.2c-.8-.6-2-2-2.3-2.1-.7-.5-1.7 1-1 2a14 14 0 002.9 2.2 33 33 0 003.1 1.8l.6-1v-.7zm-.4 5.7s-.6 0-2.2-.7c-1-.5-2.3-1.5-2.6-1.7-.7-.3-1.3 1.2-.4 2a11 11 0 003 1.7c1.8.7 2 .4 2 .4l.4-1-.2-.7zm1.2 5.1s-.5 0-2.1-.6c-1-.3-2.4-1.2-2.6-1.3-.8-.3-1.3 1.2-.3 1.9.5.3 1.7.9 3 1.3 1.8.5 2 .2 2 .2l.4-1-.3-.5z"/>
<path d="M100 123.6c1.6 0 3-.8 3.6-1h1c.5 0 1-.7 1-1 0-.3-1.4-2.1-1.4-3 0-1-8.4-1-8.4 0s-1.4 2.7-1.4 3c0 .3.5 1 1 1h1c.7.2 2 1 3.6 1m7.5-31s3.1.2 3.4 1.1c.3 1-.6 1.7-2 2-1.5.3-2.4-2.4-2.4-2.4-.2-1.6 1-.7 1-.7zm2.4 4.8s2.2-1 4-2.5c1.6-1.4 2.8-2.7 3-2.9.2 0 .5.1.8.6.3.5.5 1.2.3 1.4 0 .2-1.8 2-3.7 3.2l-4 2-.4-1.8zm.1 3.9s2.5-.2 4.4-1.2c1.7-.8 3.5-2 3.7-2 .2 0 .5.2.6.7v1.2c-.2.2-2.6 1.5-4.6 2.1-1.9.6-4.2.7-4.2.7v-1.5zm0 4s2.5.3 4.5-.2l4.1-1.3c.2 0 .4.3.5.8 0 .5-.1 1.1-.3 1.3a19.3 19.3 0 01-9.2 1l.4-1.6zm-1.3 4.7s2.5.3 4.5 0l4.1-1c.2 0 .4.3.4.7 0 .5-.1 1-.3 1.1-.2.2-2.8.7-4.8.8-2 .1-4.3-.3-4.3-.3l.4-1.3zM92.5 92.6s-3.1.2-3.4 1.1c-.3 1 .6 1.7 2 2 1.5.3 2.4-2.4 2.4-2.4.2-1.6-1-.7-1-.7zm-2.4 4.8s-2.2-1-4-2.5c-1.6-1.4-2.8-2.7-3-2.9-.2 0-.5.1-.8.6-.2.5-.4 1.2-.3 1.4 0 .2 1.8 2 3.8 3.2 1.9 1.1 3.9 2 3.9 2l.4-1.8zm-.1 3.9s-2.4-.2-4.4-1.2l-3.7-2c-.2 0-.4.2-.6.7v1.2a19 19 0 008.8 2.8v-1.5zm0 4s-2.5.3-4.5-.2l-4.1-1.3c-.2 0-.4.3-.4.8s0 1.1.2 1.3a19.3 19.3 0 009.2 1l-.4-1.6zm1.3 4.7s-2.5.3-4.5 0l-4-1c-.3 0-.5.3-.5.7 0 .5.1 1 .3 1.1.2.2 2.8.7 4.9.8 2 .1 4.2-.3 4.2-.3l-.4-1.3z"/>
<path d="M104.8 114.4c0 1.1 1.5 3.1 1.5 3.4 0 .4-.6 1-1.2 1.2-.5 0-.4-.2-1 0s-1.9 1.3-4 1.3c-2.2 0-3.3-1.1-4-1.3s-.5 0-1.1 0c-.6-.1-1.2-.8-1.2-1.2 0-.3 1.5-2.3 1.5-3.4 0-1 9.5-1 9.5 0zm-.8-20.7s.8 0 1.4-.4c.6-.3 1.1-.9 1.1-.9l1 1.3c.6.7 1.4 1.4 1.4 1.6.1.3.2.5-.3.8-.5.3-2.7.4-3.2 1.3-.5.8-1.4-3.7-1.4-3.7zm1.9 4.3s1.5.2 2.7-.2c1-.4 1.7-.8 2-.8.1 0 .8 1.4.2 2-.5.8-4 1-4 1l-1-2zm.3 3s1.3.4 2.4.3c1 0 1.7-.3 1.9-.2.1 0 .4 1.4-.2 1.8-.6.5-3.7 0-3.7 0l-.4-1.9zm.1 3.4s1.2.6 2.3.7l2 .1s.1 1.5-.6 1.8c-.7.4-3.6-.7-3.6-.7v-2zm-1.2 4.6s1.2.6 2.3.7l1.9.2c.1 0 0 1.3-.6 1.6-.7.3-3.5-.8-3.5-.8V109zm-2.4-21.4c-.1-.7.5-3.1.2-3.4-.3-.2-1.4-.3-1.5 0a10 10 0 000 3.5c.3.8 1.5.6 1.3-.1zM96 93.7s-.7 0-1.3-.4c-.7-.3-1.2-.9-1.2-.9l-1 1.3c-.6.7-1.4 1.4-1.4 1.6-.1.3-.2.5.3.8.5.3 2.7.4 3.2 1.3.5.8 1.4-3.7 1.4-3.7zM94.1 98s-1.5.2-2.7-.2c-1-.4-1.7-.8-2-.8-.1 0-.8 1.4-.2 2 .5.8 4 1 4 1l1-2zm-.3 3s-1.2.4-2.4.3c-1 0-1.7-.3-1.8-.2-.2 0-.5 1.4.1 1.8s3.7 0 3.7 0l.4-1.9zm-.1 3.4s-1.2.6-2.4.7l-1.8.1c-.2 0-.2 1.5.5 1.8.7.4 3.6-.7 3.6-.7v-2zm1.1 4.6s-1.1.6-2.2.7l-1.9.2c-.1 0 0 1.3.6 1.6.7.3 3.5-.8 3.5-.8V109zm2.5-21.4c.1-.7-.4-3.1-.2-3.4.3-.2 1.4-.3 1.5 0 .1.1.3 2.8 0 3.5-.3.8-1.5.6-1.3-.1z"/>
<path d="M94.8 110.6c0 1.2-1.6 3.3-1.6 3.7 0 .3.6 1 1.2 1.1.7.1.5-.2 1.2 0 .7.3 1.7 1.5 4.4 1.5 2.8 0 3.8-1.2 4.5-1.4.7-.2.5 0 1.2 0 .6-.2 1.2-.9 1.2-1.2 0-.4-1.6-2.5-1.6-3.7 0-1.1-10.5-1.1-10.5 0z"/>
<path d="M95.5 91.3c-.5 1.9-.7 4.3-.7 4.3s-2.4 4-2.5 7.7c0 4.2 1.9 8.2 2.2 8.6.4.4 1.5 1.2 5.5 1.2s5-.8 5.4-1.2c.4-.4 2.3-4.4 2.3-8.6 0-3.7-2.6-7.7-2.6-7.7s-.1-2.4-.6-4.3a16 16 0 00-1.3-3.2c-.3-.5-.4-1.3-.3-1.7.2-.7.3-1.8 0-1.8-.2 0-1.5 2.6-2 2.5H99c-.6.1-1.9-2.5-2.1-2.5-.3 0-.1 1 0 1.8.1.4 0 1.2-.3 1.7-.4.7-.7 1.3-1.2 3.2z"/>
<path fill="#333" d="M103.7 91s0-.6-.8-1c-.3-.2-1-.2-1.2.6-.2.8.8 1.8.8 1.8l1.8-.2-.6-1.1zm-7.4 0s0-.6.8-1c.3-.2 1-.2 1.2.6.2.8-.8 1.8-.8 1.8l-1.8-.2.6-1.1z"/>
<path d="M103.4 103s-1.5 4.9-.7 9.9c0 0-1 .2-2.7.2-1.7 0-2.7-.2-2.7-.2.8-5-.7-10-.7-10l2.6-2.6 4.2 2.7z"/>
<path d="M100 80.7s.4 5 1.4 8.2c.5 1.3 1 2.3 1.4 2.9.1.3.4.5.8 0l.1-1.1c.2-.4.6-.3.6-.3s1.4 2.6 1.4 5.2c0 3.4-1.8 5.4-2.3 7.4-.4 0-1.4-.3-3.4-.3s-3 .3-3.3.3c-.5-2-2.3-4-2.3-7.4 0-2.6 1.4-5.2 1.4-5.2s.3-.1.5.3c.2.3 0 .8.2 1 .3.6.6.4.8 0l1.3-2.8c1-3.1 1.3-8.3 1.4-8.2z"/>
<path fill="#000" stroke="none" d="M96.5 114.7a7.5 7.5 0 007 0 5.4 5.4 0 01-7 0zm6.8 3.6a5.3 5.3 0 01-6.6 0c2.3 1 4.2 1 6.6 0zm-6.3 3.5a5.1 5.1 0 006.1 0 7 7 0 01-6.1 0zm.4 3.2a7 7 0 005.4 0 4.8 4.8 0 01-5.4 0zm-2.5-56.2a25 25 0 01-2.6 11.8c1.1-3.7 2.4-7.3 2.6-11.8zm-3.9 15c-1.1-.2-1.9-1-1.9-1.9.4 1 .7 1.3 1.9 1.9zm-.3-16.7c-4 4.7-5.4 14.5-5.3 19.5.8-5.5 1-12 5.3-19.5zm14.3 1.7c0 4 1.4 8.2 2.5 11.8-1.4-3.2-3.2-8.3-2.5-11.8zm3.8 15c1.3-.6 1.7-1.2 1.9-1.9 0 1.2-1.3 1.8-1.9 1.9zm5.6 2.7a44.2 44.2 0 00-5.2-19.4c3.8 4.4 5.3 13.5 5.2 19.4z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.4 KiB

View file

@ -1,68 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/0/0d/Smolensk_1857.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="cannon" stroke-width=".39">
<path stroke-width=".4" d="m98.15 99.13 10.87 20.33 3.8 3.44-.94-26.38-13.73 2.61z"/>
<g>
<g>
<path d="M89.168 113.692c.455.455.676 1.95.676 2.847v2.626h2.262v-2.626c0-.884.208-2.392.676-2.847"/>
<path d="M92.743 113.445c-.455-.455-.676-1.95-.676-2.847v-2.626h-2.262v2.626c0 .884-.208 2.392-.676 2.847"/>
<path d="M90.949 114.381c-1.144 0-1.898-.338-1.924-.364-.208-.104-.286-.39-.247-.611.039-.247.195-.403.377-.403.052 0 .091.013.13.026 0 0 .663.299 1.651.299s1.651-.299 1.664-.299c.039-.026.091-.026.13-.026.182 0 .338.156.377.403.039.234-.039.52-.247.611-.052.039-.78.364-1.911.364z"/>
<path d="M81.537 102.486c-.455.455-1.95.676-2.847.676h-2.626v2.262h2.626c.884 0 2.392.208 2.847.676"/>
<path d="M81.693 106.451c-.221 0-.416-.104-.494-.26-.039-.078-.364-.806-.364-1.924s.325-1.846.364-1.924c.078-.156.26-.26.494-.26a.36.36 0 0 1 .117.013.493.493 0 0 1 .364.234.282.282 0 0 1 0 .286s-.299.663-.299 1.651.299 1.651.299 1.664a.462.462 0 0 1 .026.13c0 .182-.156.338-.403.377-.026.013-.065.013-.104.013z"/>
<path d="M83.019 109.662c0 .65-.91 1.859-1.534 2.483l-1.859 1.859 1.599 1.599 1.859-1.859c.624-.624 1.833-1.534 2.483-1.534"/>
<path d="M85.736 112.015c0-.65.91-1.859 1.534-2.483l1.859-1.859-1.599-1.599-1.859 1.859c-.624.624-1.833 1.534-2.483 1.534"/>
<path d="M96.357 112.197c.65 0 1.859.91 2.483 1.534l1.859 1.859 1.599-1.599-1.859-1.859c-.624-.624-1.534-1.833-1.534-2.483"/>
<path d="M98.71 109.493c-.65 0-1.859-.91-2.483-1.534l-1.859-1.859-1.599 1.586 1.859 1.859c.624.624 1.534 1.833 1.534 2.483"/>
<path d="M96.357 112.548a.603.603 0 0 1-.481-.286.49.49 0 0 1-.091-.429.342.342 0 0 1 .195-.208s.676-.26 1.378-.962c.702-.702.962-1.378.962-1.378a.324.324 0 0 1 .325-.208c.104 0 .208.039.312.117.195.13.338.39.26.611-.026.078-.325.832-1.105 1.612-.793.793-1.534 1.079-1.612 1.105-.052.026-.091.026-.143.026z"/>
<path d="M75.973 95.635c4.784-8.281 15.366-11.115 23.634-6.331s11.115 15.366 6.331 23.634c-4.784 8.281-15.366 11.115-23.634 6.331-8.281-4.771-11.115-15.353-6.331-23.634zm8.385 20.085c6.318 3.653 14.404 1.482 18.057-4.836s1.482-14.404-4.836-18.057-14.404-1.482-18.057 4.836-1.495 14.404 4.836 18.057z"/>
<path d="M90.949 99.054c-2.873 0-5.213 2.34-5.213 5.213s2.34 5.213 5.213 5.213 5.213-2.34 5.213-5.213-2.327-5.213-5.213-5.213zm0 7.826a2.6 2.6 0 1 1 2.6-2.6c.013 1.43-1.157 2.6-2.6 2.6z"/>
<circle cx="90.949" cy="104.267" r="2.6"/>
</g>
<g class="secondary">
<path d="M96.097 82.947c.819-.117 1.82-1.469 2.574-2.028 1.248-.91 2.782-.637 3.9.52.338.351.377.494.741.806.377.312.936.416 1.417.39l2.275-.104s-.364-.091-1.027-.754c-.546-.546-1.079-1.118-1.612-1.677-1.794-1.872-4.628-2.197-6.851-.845-1.118.676-2.002 2.288-3.328 2.47-.208.026-.416.026-.611.078-.533.13-.884.676-.871 1.222 0 .013 3.263-.065 3.393-.078z"/>
<ellipse cx="63.181" cy="87.822" rx="2.548" ry="6.292"/>
<ellipse cx="63.181" cy="87.822" rx=".767" ry="3.146"/>
<circle cx="138.139" cy="87.822" r="2.054"/>
<path d="M136.358 86.73c-1.911-1.547-3.276-3.874-5.265-6.019.702.962 2.002 2.912 2.002 7.111s-1.3 6.149-2.002 7.111c2.002-2.145 3.354-4.472 5.265-6.019 0 0-.13-.442-.13-1.092s.13-1.092.13-1.092z"/>
<path d="M63.181 94.114c1.404 0 2.548-2.821 2.548-6.292s-1.144-6.292-2.548-6.292c7.67 1.95 25.285.91 35.451.663 14.69-.351 32.448-1.482 32.448-1.482.702.962 2.002 2.912 2.002 7.111s-1.3 6.149-2.002 7.111c0 0-17.745-1.144-32.448-1.482-10.166-.234-27.664-1.313-35.451.663z"/>
<path d="M107.927 94.4a.816.816 0 0 1-.247-.039c-.429-.143-.663-.325-.533-.754.013-.039.494-1.677.494-5.785 0-4.134-.494-5.772-.494-5.785-.13-.429.104-.611.533-.754a.832.832 0 0 1 1.027.52c.026.078.572 1.56.572 6.019s-.546 5.941-.572 6.019a.812.812 0 0 1-.78.559z"/>
<path d="M121.824 95.154a.816.816 0 0 1-.247-.039c-.429-.143-.663-.325-.533-.754.013-.039.559-1.885.559-6.526 0-4.667-.559-6.513-.559-6.539-.13-.429.104-.611.533-.754a.828.828 0 0 1 1.027.533c.026.078.637 1.768.637 6.76s-.611 6.682-.637 6.76a.836.836 0 0 1-.78.559z"/>
<path d="M88.843 93.958a.816.816 0 0 1-.247-.039c-.429-.143-.663-.325-.533-.754.013-.039.455-1.547.455-5.33 0-3.809-.455-5.317-.455-5.33-.13-.429.104-.611.533-.754a.832.832 0 0 1 1.027.52c.026.065.533 1.43.533 5.564s-.52 5.499-.533 5.564a.824.824 0 0 1-.78.559z"/>
<path d="M73.568 93.789a.816.816 0 0 1-.247-.039c-.429-.143-.663-.325-.533-.754.013-.039.442-1.508.442-5.174 0-3.705-.442-5.161-.442-5.174-.13-.429.104-.611.533-.754a.832.832 0 0 1 1.027.52c.026.065.52 1.391.52 5.408s-.494 5.343-.52 5.408a.819.819 0 0 1-.78.559z"/>
<path d="M101.284 82.128c.819-.117 1.82-1.469 2.574-2.028 1.248-.91 2.782-.637 3.9.52.338.351.377.494.741.806.377.312.936.416 1.417.39l2.275-.104s-.364-.091-1.027-.754c-.546-.546-1.079-1.118-1.612-1.677-1.794-1.872-4.628-2.197-6.851-.845-1.118.676-2.002 2.288-3.328 2.47-.208.026-.416.026-.611.078-.533.13-.884.676-.871 1.222-.013.013 3.263-.065 3.393-.078z"/>
</g>
<path d="M137.112 118.359c-1.456 0-2.561-.767-3.276-1.846-.65-.988-.975-2.184-1.794-3.055-1.014-1.092-2.756-1.417-4.095-.78.221-3.939-3.263-6.032-6.539-4.849l-8.294-16.757H81.55v11.492h20.41l10.868 20.332h24.271l.013-4.537z"/>
<path d="m80.211 94.933-1.274-1.157-.13-.832h-1.066v6.188l3.809 3.432V91.072h-.78l-.559 3.861z"/>
<circle cx="123.202" cy="112.743" r="2.288"/>
<g>
<path d="M100.92 96.142c-.455-.455-.676-1.95-.676-2.847v-2.626h-2.262v2.626c0 .884-.208 2.392-.676 2.847"/>
<path d="M97.345 96.402c.455.455.676 1.95.676 2.847v2.626h2.262v-2.626c0-.884.208-2.392.676-2.847"/>
<path d="M100.92 96.831c-.052 0-.091-.013-.13-.026 0 0-.663-.299-1.651-.299s-1.651.299-1.664.299a.462.462 0 0 1-.13.026c-.182 0-.338-.156-.377-.403-.039-.234.039-.52.247-.611.078-.039.806-.364 1.924-.364s1.846.325 1.924.364c.208.104.286.39.247.611-.039.247-.195.403-.39.403z"/>
<path d="M97.345 114.992c.455.455.676 1.95.676 2.847v2.626h2.262v-2.626c0-.884.208-2.392.676-2.847"/>
<path d="M100.92 114.745c-.455-.455-.676-1.95-.676-2.847v-2.626h-2.262v2.626c0 .884-.208 2.392-.676 2.847"/>
<path d="M99.126 115.681c-1.144 0-1.898-.338-1.924-.364-.208-.104-.286-.39-.247-.611.039-.247.195-.403.377-.403.052 0 .091.013.13.026 0 0 .663.299 1.651.299s1.651-.299 1.664-.299c.039-.026.091-.026.13-.026.182 0 .338.156.377.403.039.234-.039.52-.247.611-.052.039-.78.364-1.911.364z"/>
<path d="M108.551 107.361c.455-.455 1.95-.676 2.847-.676h2.626v-2.262h-2.626c-.884 0-2.392-.208-2.847-.676"/>
<path d="M108.304 103.773c-.455.455-1.95.676-2.847.676h-2.626v2.262h2.626c.884 0 2.392.208 2.847.676"/>
<path d="M108.395 107.751c-.039 0-.078 0-.117-.013a.494.494 0 0 1-.364-.234.318.318 0 0 1-.013-.286s.299-.663.299-1.651-.299-1.651-.299-1.664c-.026-.039-.026-.091-.026-.13 0-.182.156-.338.403-.377.039-.013.078-.013.117-.013.221 0 .416.104.494.26.013.026.364.78.364 1.924 0 1.118-.325 1.846-.364 1.924-.078.169-.273.26-.494.26z"/>
<path d="M89.714 103.786c-.455.455-1.95.676-2.847.676h-2.626v2.262h2.626c.884 0 2.392.208 2.847.676"/>
<path d="M89.961 107.361c.455-.455 1.95-.676 2.847-.676h2.626v-2.262h-2.626c-.884 0-2.392-.208-2.847-.676"/>
<path d="M89.87 107.751c-.221 0-.416-.104-.494-.26-.039-.078-.364-.806-.364-1.924s.325-1.846.364-1.924c.078-.156.26-.26.494-.26a.36.36 0 0 1 .117.013.493.493 0 0 1 .364.234.282.282 0 0 1 0 .286s-.299.663-.299 1.651.299 1.651.299 1.664a.462.462 0 0 1 .026.13c0 .182-.156.338-.403.377-.026.013-.065.013-.104.013z"/>
<path d="M107.069 100.172c0-.65.91-1.859 1.534-2.483l1.859-1.859-1.599-1.599-1.859 1.859c-.624.624-1.833 1.534-2.483 1.534"/>
<path d="M104.352 97.819c0 .65-.91 1.859-1.534 2.483l-1.859 1.859 1.599 1.599 1.859-1.859c.624-.624 1.833-1.534 2.483-1.534"/>
<path d="M106.822 100.757c-.143 0-.273-.078-.312-.208 0 0-.26-.676-.962-1.378-.702-.702-1.378-.962-1.378-.962a.307.307 0 0 1-.117-.078c-.13-.13-.13-.351.013-.559.117-.169.312-.286.481-.286.039 0 .091.013.13.026.078.026.832.325 1.612 1.105.793.793 1.079 1.534 1.105 1.612.078.221-.065.468-.26.611a.519.519 0 0 1-.312.117z"/>
<path d="M91.196 110.962c0 .65-.91 1.859-1.534 2.483l-1.859 1.859 1.599 1.599 1.859-1.859c.624-.624 1.833-1.534 2.483-1.534"/>
<path d="M93.913 113.315c0-.65.91-1.859 1.534-2.483l1.859-1.859-1.599-1.599-1.859 1.859c-.624.624-1.833 1.534-2.483 1.534"/>
<path d="M93.718 113.848a.462.462 0 0 1-.13-.026c-.078-.026-.832-.325-1.612-1.105-.793-.793-1.079-1.534-1.105-1.612-.078-.221.065-.468.26-.611a.519.519 0 0 1 .312-.117c.143 0 .273.078.312.208 0 0 .26.689.962 1.378.702.702 1.378.962 1.378.962a.307.307 0 0 1 .117.078c.13.13.13.351-.013.559a.585.585 0 0 1-.481.286z"/>
<path d="M104.534 113.497c.65 0 1.859.91 2.483 1.534l1.859 1.859 1.599-1.599-1.859-1.859c-.624-.624-1.534-1.833-1.534-2.483"/>
<path d="M106.887 110.793c-.65 0-1.859-.91-2.483-1.534l-1.859-1.859-1.599 1.586 1.859 1.859c.624.624 1.534 1.833 1.534 2.483"/>
<path d="M104.534 113.848a.603.603 0 0 1-.481-.286.49.49 0 0 1-.091-.429.342.342 0 0 1 .195-.208s.676-.26 1.378-.962c.702-.702.962-1.378.962-1.378a.324.324 0 0 1 .325-.208c.104 0 .208.039.312.117.195.13.338.39.26.611-.026.078-.325.832-1.105 1.612-.793.793-1.534 1.079-1.612 1.105-.052.026-.091.026-.143.026z"/>
<path d="M93.731 97.637c-.65 0-1.859-.91-2.483-1.534l-1.859-1.859-1.599 1.599 1.859 1.859c.624.624 1.534 1.833 1.534 2.483"/>
<path d="M91.378 100.354c.65 0 1.859.91 2.483 1.534l1.859 1.859 1.599-1.599-1.859-1.859c-.624-.624-1.534-1.833-1.534-2.483"/>
<path d="M91.443 100.757a.519.519 0 0 1-.312-.117c-.195-.13-.338-.39-.26-.611.026-.078.325-.832 1.105-1.612.793-.793 1.534-1.079 1.612-1.105a.385.385 0 0 1 .13-.026c.169 0 .364.104.481.286a.49.49 0 0 1 .091.429.342.342 0 0 1-.195.208s-.689.26-1.378.962c-.702.702-.962 1.378-.962 1.378a.307.307 0 0 1-.078.117.347.347 0 0 1-.234.091z"/>
<path d="M84.15 96.935c4.784-8.281 15.366-11.115 23.634-6.331s11.115 15.366 6.331 23.634c-4.784 8.281-15.366 11.115-23.634 6.331-8.281-4.771-11.115-15.353-6.331-23.634zm8.385 20.085c6.318 3.653 14.404 1.482 18.057-4.836s1.482-14.404-4.836-18.057-14.404-1.482-18.057 4.836-1.495 14.404 4.836 18.057z"/>
<path d="M99.126 100.354c-2.873 0-5.213 2.34-5.213 5.213s2.34 5.213 5.213 5.213 5.213-2.34 5.213-5.213-2.327-5.213-5.213-5.213zm0 7.826a2.6 2.6 0 1 1 2.6-2.6c.013 1.43-1.157 2.6-2.6 2.6z"/>
<circle cx="99.126" cy="105.567" r="2.6"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

View file

@ -1,70 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/a/a6/Andronikashvili.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="caravel" stroke-width=".4475">
<path class="tertiary" d="M99.7885 68.4353c-1.1456.179-2.2912.3222-3.4547.2685-.6802-.0358-1.3604-.1253-2.0227-.3043-.6444-.179-1.5215-.4833-2.1838-.5728-1.611-.179-2.8103.3938-3.0967.6981.4833-.0358 2.0406-.0179 3.6516.9308.4117.2327 1.1814.4117 1.6468.4833-.4654.1611-1.3067.1074-1.79.2148-.3222.0716-.6444.1969-.9845.2685-.3759.0716-.7697.0358-1.1456.1253-.5191.1253-1.0382.3938-1.3604.8413.4833-.1253 1.0024-.1611 1.5036-.0716.4117.0716.8055.2148 1.2172.3222 1.253.3222 2.5955.0895 3.8664.0179 1.4141-.0716 2.8103.4654 4.2244.2864m-25.1316 1.1098c-.9845.1611-1.969.2685-2.9535.2327-.5907-.0179-1.1814-.1074-1.7363-.2685-.5549-.1611-1.3067-.4296-1.8795-.4833-1.3783-.1432-2.4165.3401-2.6671.5907.4117-.0358 1.7542-.0179 3.1325.7876.3401.1969 1.0024.358 1.4141.4117-.4117.1432-1.1277.0895-1.5394.1969-.2864.0716-.5549.179-.8413.2327-.3222.0537-.6623.0358-.9845.1074-.4475.1074-.895.3401-1.1635.716.4117-.1074.8592-.1432 1.2888-.0537.358.0537.6981.179 1.0382.2685 1.074.2685 2.2375.0716 3.3294.0179 1.2172-.0537 2.4165.3938 3.6337.2506m51.6057-3.0072c-.9845.1611-1.969.2685-2.9535.2327-.5907-.0179-1.1814-.1074-1.7363-.2685-.5549-.1611-1.3067-.4296-1.8795-.4833-1.3783-.1432-2.4165.3401-2.6671.5907.4117-.0358 1.7542-.0179 3.1325.7876.3401.1969 1.0024.358 1.4141.4117-.4117.1432-1.1277.0895-1.5394.1969-.2864.0716-.5549.179-.8413.2327-.3222.0537-.6623.0358-.9845.1074-.4475.1074-.895.3401-1.1635.716.4117-.1074.8592-.1432 1.2888-.0537.358.0537.6981.179 1.0382.2685 1.074.2685 2.2375.0716 3.3294.0179 1.2172-.0537 2.4165.3938 3.6337.2506"/>
<g stroke-width=".2685">
<rect x="104.3351" y="114.7605" width="4.5466" height=".6086"/>
<rect x="104.0666" y="112.6125" width="4.2781" height=".6086"/>
<rect x="103.8876" y="110.4645" width="3.8664" height=".6086"/>
<rect x="103.5654" y="108.3165" width="3.4547" height=".6086"/>
<rect x="103.1358" y="106.1685" width="3.3294" height=".6086"/>
<rect x="102.8673" y="104.0205" width="3.0072" height=".6086"/>
<rect x="102.4735" y="101.8725" width="2.9356" height=".6086"/>
<rect x="102.2229" y="99.7245" width="2.6313" height=".6086"/>
<rect x="101.9723" y="97.5765" width="2.2912" height=".6086"/>
<rect x="88.9769" y="103.8952" transform="rotate(81.425 102.8456 104.2102)" width="27.7629" height=".6086"/>
<rect x="91.7514" y="103.8952" transform="rotate(74.687 105.9815 104.2079)" width="28.461" height=".6086"/>
<rect x="90.3373" y="103.8952" transform="rotate(77.854 104.3748 104.2095)" width="28.0851" height=".6086"/>
<rect x="91.9841" y="114.7605" width="4.5466" height=".6086"/>
<rect x="92.539" y="112.6125" width="4.2781" height=".6086"/>
<rect x="93.1118" y="110.4645" width="3.8664" height=".6086"/>
<rect x="93.8636" y="108.3165" width="3.4547" height=".6086"/>
<rect x="94.4006" y="106.1685" width="3.3294" height=".6086"/>
<rect x="94.9913" y="104.0205" width="3.0072" height=".6086"/>
<rect x="95.4567" y="101.8725" width="2.9356" height=".6086"/>
<rect x="96.0116" y="99.7245" width="2.6313" height=".6086"/>
<rect x="96.6023" y="97.5765" width="2.2912" height=".6086"/>
<rect x="97.73" y="90.327" transform="rotate(8.583 98.0372 104.2625)" width=".6086" height="27.7629"/>
<rect x="94.5796" y="89.969" transform="rotate(15.312 94.8721 104.2163)" width=".6086" height="28.461"/>
<rect x="96.1906" y="90.1659" transform="rotate(12.15 96.5114 104.1879)" width=".6086" height="28.0851"/>
</g>
<path d="M101.7038 117.9288s.0716.6265-1.2709.6265c-1.3246 0-1.253-.6265-1.253-.6265l.7697-49.8694c.0179-.2685.2327-.4833.5012-.4833.2864 0 .5012.2148.5012.4833l.7518 49.8694zm-25.8118-2.7745s.0716.5907-1.1993.5907c-1.253 0-1.1814-.5907-1.1814-.5907l.716-42.3872c.0179-.2506.2148-.4654.4654-.4654.2685 0 .4654.2148.4654.4654l.7339 42.3872zm51.6773 0s.0716.5907-1.1993.5907c-1.253 0-1.1814-.5907-1.1814-.5907l.716-42.3872c.0179-.2506.2148-.4654.4654-.4654.2685 0 .4654.2148.4654.4654l.7339 42.3872z"/>
<path class="secondary" d="M111.1729 87.3019c-.716 2.4344-.6265 7.5001 0 10.7758.9308 4.7435 3.0251 8.3951 6.265 10.74.0537-2.148 2.1659-3.8485 4.296-4.2244s5.2089.3938 7.1779 1.253c2.7566 1.1993 5.0836 3.759 5.0836 3.759-1.1277-3.1862-1.2709-7.6433-.4296-10.919.8592-3.2757 2.9893-6.3008 5.2268-7.6075 0 0-1.4857-.9845-3.6874-.4475-5.4774 1.3246-17.9179-1.0024-21.6769-3.0967-1.3604-.7697-2.2554-.2327-2.2554-.2327z"/>
<path d="M139.5265 91.3831a.2484.2484 0 0 1-.1611 0l-29.2844-4.2065c-.2685-.0358-.4475-.2864-.4117-.5549.0358-.2685.2864-.4475.5549-.4117l29.2665 4.2065c.2685.0358.4475.2864.4117.5549-.0179.2148-.179.3759-.3759.4117z"/>
<path class="secondary" d="M62.4849 82.9164c1.2888 1.2351 3.3115 1.79 4.9583 1.1098 1.0382-.4296 2.0227-1.5573 2.3449-2.4881.8055.7518 2.7208 1.0382 4.2423.5728 1.9153-.5907 3.4726-1.8974 3.8843-3.8843 1.2351.4654 2.9356.358 4.117-.1611 1.7005-.7339 2.8998-2.7566 2.8998-4.117l-22.4466 8.9679z"/>
<path d="M105.1406 84.4379s-1.6289-1.6647-4.7077-1.6647c-3.0609 0-4.7077 1.6647-4.7077 1.6647l2.2375 4.1528s1.0561.2148 2.4523.2148 2.4523-.2148 2.4523-.2148l2.2733-4.1528z"/>
<path d="M79.1498 84.5453s-1.5573-1.5752-4.4571-1.5752-4.4571 1.5752-4.4571 1.5752l2.1301 3.938s1.0024.1969 2.327.1969 2.327-.1969 2.327-.1969l2.1301-3.938z"/>
<path d="M130.7197 81.3233s-1.5573-1.5752-4.4571-1.5752-4.4571 1.5752-4.4571 1.5752l2.1301 3.938s1.0024.1969 2.327.1969 2.327-.1969 2.327-.1969l2.1301-3.938z"/>
<path d="M85.916 73.6442c-.0358.0358-.0716.0537-.1253.0716l-23.8428 9.4154c-.2148.0895-.4654-.0179-.537-.2327-.0895-.2148.0179-.4654.2327-.537l23.8428-9.4154c.2148-.0895.4654.0179.537.2327.0716.179.0179.358-.1074.4654zm49.404 39.7917c.4296-.1432 1.3783-.4296 1.3783-.4296.4654-1.4678.5728-3.0072.5907-4.6719-4.1528 1.1635-12.7985 3.3831-22.6077 3.759-.0358.7518-.3043 3.0609-.6265 4.3318l3.222 6.1397m-50.8718-9.1648c.7339-.0716 1.4141-.5012 1.8974-1.0561.4833-.5549.8234-1.2351 1.1277-1.9153 3.5263.6802 7.2853 1.1993 10.8653 1.5215-.0716.6623-.1969 2.9356 0 3.7948l-1.1456 3.7232m48.2226 4.2781c.1969 0 .3759 0 .5728-.0179.0716 0 .1253 0 .179.0537.0358.0537.0537.1074.0358.179-.0179.6802-.1253 2.148.0537 2.8103.358 1.3425.5728 2.0764-.0179 2.9356-.8413 1.2709-3.4189.9487-4.5824 1.1277"/>
<path d="M135.32 113.4359c-4.7793 1.5036-12.9775 2.5418-18.8487 2.8998-13.4966.8413-30.8059.8413-46.6653-2.2375-.1074 3.1862.5907 6.5514 2.0406 9.3438 1.432 2.7924 3.5979 5.1552 6.1934 6.7841 6.4619 2.0764 39.7559 2.5239 45.5734.6444.7339-.1611 1.3962-.6265 1.8616-1.2351.4654-.5907.8592-1.4499 1.1635-2.3628.6086-1.8616 1.4141-5.4237 2.3807-7.3748.9666-1.9511 2.6671-3.7948 5.9428-4.7614 0-.0179.179-1.2172.358-1.7005z"/>
<g fill="none">
<path d="M70.7189 120.5243c4.833 1.79 15.7699 2.6134 27.4407 2.7387 12.6374.1432 24.8452-.5191 30.1436-1.611m-58.3898-4.3318c4.7972 1.5394 17.005 2.7745 29.3739 2.8998 13.3534.1432 25.2032-.9308 30.8059-2.0048m-57.9244 5.7996c4.7435 1.7542 15.1434 2.6492 26.6352 2.7745 12.4226.1432 23.2163-.4833 28.4252-1.5394m-52.7155 2.0048c4.475 1.6647 14.2126 2.5418 25.0421 2.6671 11.7066.1432 21.6769-.4117 26.5994-1.432"/>
<rect x="73.6187" y="112.2903" transform="rotate(-171.65 74.5495 113.1644)" width="1.8616" height="1.7542"/>
<rect x="76.8407" y="112.7736" transform="rotate(-173.826 77.7704 113.6432)" width="1.8616" height="1.7542"/>
<rect x="83.9112" y="123.5494" transform="rotate(-176.861 84.8416 124.4891)" width="1.8616" height="1.8974"/>
<rect x="89.7645" y="124.0327" transform="rotate(-176.861 90.6978 124.9714)" width="1.8616" height="1.8974"/>
<rect x="95.6178" y="124.1222" transform="rotate(-178.854 96.555 125.0698)" width="1.8616" height="1.8974"/>
<rect x="101.489" y="124.2475" transform="rotate(180.0 102.4096 125.1948)" width="1.8616" height="1.8974"/>
<rect x="107.3423" y="124.1401" transform="rotate(177.856 108.2676 125.0773)" width="1.8616" height="1.8974"/>
<rect x="113.1956" y="123.8179" transform="rotate(177.856 114.1237 124.7559)" width="1.8616" height="1.8974"/>
<rect x="70.5578" y="111.807" transform="rotate(-171.65 71.4929 112.6818)" width="1.8616" height="1.7542"/>
<rect x="129.9321" y="111.3416" transform="rotate(169.052 130.8579 112.2121)" width="1.8616" height="1.7542"/>
<rect x="133.1541" y="110.6972" transform="rotate(169.052 134.0742 111.563)" width="1.8616" height="1.7542"/>
<rect x="126.549" y="111.9323" transform="rotate(171.189 127.4753 112.8166)" width="1.8616" height="1.7542"/>
<rect x="119.7828" y="112.9526" transform="rotate(174.81 120.7195 113.8324)" width="1.8616" height="1.7542"/>
<rect x="123.148" y="112.523" transform="rotate(172.658 124.0727 113.3949)" width="1.8616" height="1.7542"/>
<rect x="116.3639" y="113.2032" transform="rotate(176.968 117.2926 114.0887)" width="1.8616" height="1.7542"/>
</g>
<path d="M69.8239 114.0982c-1.3067-.2506-2.1301-.3938-3.4189-.6981-.0537 1.2709.0537 2.6313.2685 4.0096.3222 2.0943.9487 4.1707 1.8079 5.8712 1.432 2.7924 2.7387 4.2602 5.6922 5.8533 1.0203.4296 2.2375.8592 3.8664 1.0919-2.5955-1.611-4.7435-3.9917-6.1934-6.7841-1.432-2.8103-2.148-6.1755-2.0227-9.3438z"/>
<path d="M66.6556 117.4097c-.2148-1.3783-.3043-2.7566-.2685-4.0096-1.5394-.3759-4.4929-.9666-6.0502-1.2351-.179.5549-.2506 1.3067-.1969 1.8795 1.4678.3759 4.0991 1.1456 4.9762 1.6647.7697.4475 1.1635.7339 1.5394 1.7005m66.4985 3.9022s-7.6075 1.611-12.2078 1.7721v-4.0096c5.1731-.3938 13.3176-1.9332 13.3176-1.9332-.1432 2.1838-1.1098 4.1707-1.1098 4.1707z"/>
<path d="M124.1683 122.7797v-4.0096m3.3652 3.5442v-4.0096m3.3652 3.5621v-4.0096"/>
<path class="secondary" d="M110.7254 88.2864c-.1969-1.5394-.9129-10.9369 5.3163-13.9978-5.3163-.7697-18.5444-.6802-27.3333 8.7173 2.5597-1.1456 6.6409-2.0764 10.561-1.5752 4.8688.6086 8.8963 3.222 11.456 6.8557z"/>
<path class="secondary" d="M86.5604 86.21c-.9666 2.506-1.3246 8.2519-.9129 11.7782.8592 7.3032 4.6182 12.1541 7.8223 14.9107.3222-2.5955 2.9893-4.0991 5.2805-4.1349 5.5311-.0895 10.203 4.8867 10.203 4.8867-.9129-3.4905-.8771-9.9882.3222-13.3892s2.2375-6.7662 4.7256-7.9655c0 0 0-.8055-2.3807-.4296-5.9249.9129-18.8845-2.6492-22.6972-5.2089-1.3783-.9308-2.3628-.4475-2.3628-.4475z"/>
<path d="M114.3949 92.7077c-.0537 0-.1074 0-.1611-.0179l-28.7653-6.8736c-.2506-.0537-.4117-.3222-.358-.5728.0537-.2506.3222-.4117.5728-.358l28.7832 6.8736c.2506.0537.4117.3222.358.5728-.0537.2148-.2327.358-.4296.3759z"/>
<path class="secondary" d="M62.8429 87.3019c-.716 2.4344-.6265 7.5001 0 10.7758.9308 4.7435 3.0251 8.3951 6.265 10.74.0537-2.148 2.1659-3.8485 4.296-4.2244s5.2089.3938 7.1779 1.253c2.7566 1.1993 5.0836 3.759 5.0836 3.759-1.1277-3.1862-1.2709-7.6433-.4296-10.919.8592-3.2757 2.9893-6.3008 5.2268-7.6075 0 0-1.4857-.9845-3.6874-.4475-5.4774 1.3246-17.9179-1.0024-21.6769-3.0967-1.3604-.7697-2.2554-.2327-2.2554-.2327z"/>
<path d="M91.1965 91.3831a.2484.2484 0 0 1-.1611 0L61.751 87.1766c-.2685-.0358-.4475-.2864-.4117-.5549.0358-.2685.2864-.4475.5549-.4117l29.2665 4.2065c.2685.0358.4475.2864.4117.5549-.0179.2148-.179.3759-.3759.4117z"/>
<g stroke="none" fill="#000">
<path d="M132.0622 94.9094c-.3759.537-.6623 1.1277-.9129 1.7363-.2506.6086-.4117 1.253-.537 1.8974-.1074.6444-.179 1.3067-.179 1.9511 0 .6623.0716 1.3067.2327 1.9511.0358-.6444.0537-1.2888.1253-1.9332.0716-.6265.1432-1.2709.2685-1.8974.1074-.6265.2685-1.2351.4296-1.8616.179-.6265.3759-1.2351.5728-1.8437zm-6.6051-1.5215c-.358.6265-.6444 1.2888-.8771 1.969-.2327.6802-.3759 1.3962-.4833 2.1122-.0895.716-.1432 1.432-.1074 2.1659.0358.716.1253 1.432.3043 2.1301 0-.716.0179-1.432.0537-2.1301.0358-.6981.1074-1.4141.1969-2.0943.0895-.6981.2327-1.3962.3759-2.0764.1611-.6981.3401-1.3783.537-2.0764zm-10.5431-2.6313c-.1432.895-.2327 1.7721-.2685 2.6671-.0358.895-.0179 1.8079.0895 2.7029s.3043 1.79.6444 2.6492c.3222.8413.7697 1.6468 1.3783 2.327-.4475-.7697-.7876-1.5931-1.0382-2.4344-.1253-.4296-.2327-.8413-.3222-1.2709a15.2967 15.2967 0 0 1-.2148-1.3067c-.1074-.8771-.1432-1.7542-.179-2.6492s-.0358-1.7721-.0895-2.685zM79.5615 77.618c.3401.0895.6981.1074 1.0382.0537s.6981-.1611 1.0024-.3222c.3222-.1611.6086-.3759.8413-.6265.2327-.2506.4475-.5549.5549-.8771a12.0519 12.0519 0 0 1-.7876.6265c-.2685.179-.537.358-.8234.5012s-.5728.2685-.8771.3759c-.2864.0895-.6086.179-.9487.2685zm-8.6457 3.3115a4.0461 4.0461 0 0 0 1.6647.3043c.5728-.0179 1.1456-.1432 1.6826-.358.2685-.1253.5191-.2506.7697-.4117.2327-.1611.4654-.3401.6623-.5549.4117-.4117.7339-.8771.9487-1.4141-.358.4296-.7518.8234-1.1635 1.1456-.4296.3222-.8771.6086-1.3783.8055-.4833.2148-1.0024.3401-1.5394.4296-.5549.0895-1.0919.0895-1.6468.0537zm-5.7101 2.3091a2.987 2.987 0 0 0 1.1277 0c.3759-.0537.7339-.179 1.074-.358.3401-.179.6623-.3938.9308-.6623s.5191-.5907.5728-.9666c-.2327.3043-.5012.5012-.8055.6981a7.6382 7.6382 0 0 1-.9129.537c-.3043.1611-.6265.2864-.9666.4117-.3222.1253-.6623.2327-1.0203.3401zm43.0853 12.7627c-.6802.8234-1.2172 1.7721-1.6289 2.7566a13.4005 13.4005 0 0 0-.8592 3.1146c-.1611 1.074-.2148 2.148-.1611 3.222.0537 1.074.1969 2.148.4475 3.1862-.0716-1.074-.1253-2.1301-.1074-3.1862.0179-1.0561.0895-2.1122.2506-3.1504a18.1917 18.1917 0 0 1 .7518-3.0609c.3401-.9845.7876-1.9511 1.3067-2.8819zm-10.1851-1.969c-.3401.9487-.5728 1.9511-.716 2.9535s-.2148 2.0227-.1969 3.043c.0179 1.0203.1253 2.0406.3043 3.043s.4654 1.9869.8413 2.9177c-.1969-.9845-.3759-1.9869-.4833-2.9714a27.9691 27.9691 0 0 1-.2148-2.9893c-.0179-1.0024.0179-2.0048.0895-2.9893a43.1045 43.1045 0 0 1 .3759-3.0072zm-8.9679-1.8616c-.4296 1.3067-.6623 2.6671-.7697 4.0454-.0537.6802-.0716 1.3783-.0358 2.0764.0179.6981.0895 1.3783.2148 2.0764.2506 1.3604.6086 2.7029 1.1814 3.9738.2864.6265.6265 1.2351 1.0203 1.8079.4117.5549.8771 1.074 1.3962 1.5215-.4475-.5191-.8592-1.0561-1.1993-1.6468-.3401-.5728-.6444-1.1993-.8771-1.8258-.5012-1.253-.8234-2.5776-1.074-3.9022-.2506-1.3246-.3043-2.685-.2864-4.0454a22.238 22.238 0 0 1 .4296-4.0812zm-5.4058 2.7387c-.3759.537-.6623 1.1277-.9129 1.7363-.2506.6086-.4117 1.253-.537 1.8974-.1074.6444-.179 1.3067-.179 1.9511 0 .6623.0716 1.3067.2327 1.9511.0358-.6444.0537-1.2888.1253-1.9332.0716-.6265.1432-1.2709.2685-1.8974.1074-.6265.2685-1.2351.4296-1.8616.179-.6265.3759-1.2351.5728-1.8437zm-6.6051-1.5215c-.358.6265-.6444 1.2888-.8771 1.969-.2327.6802-.3759 1.3962-.4833 2.1122-.0895.716-.1432 1.432-.1074 2.1659.0358.716.1253 1.432.3043 2.1301 0-.716.0179-1.432.0537-2.1301.0358-.6981.1074-1.4141.1969-2.0943.0895-.6981.2327-1.3962.3759-2.0764.1611-.6981.3401-1.3783.537-2.0764zM66.584 90.7566c-.1432.895-.2327 1.7721-.2685 2.6671-.0358.895-.0179 1.8079.0895 2.7029s.3043 1.79.6444 2.6492c.3222.8413.7697 1.6468 1.3783 2.327-.4475-.7697-.7876-1.5931-1.0382-2.4344-.1253-.4296-.2327-.8413-.3222-1.2709a15.2967 15.2967 0 0 1-.2148-1.3067c-.1074-.8771-.1432-1.7542-.179-2.6492s-.0358-1.7721-.0895-2.685z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="carreau">
<path stroke-width=".5" d="M100 59.8C94.4 75.1 86.2 88.6 75 100c11.2 11.4 19.4 24.9 25 40.2 5.6-15.3 13.8-28.8 25-40.2-11.2-11.4-19.4-24.9-25-40.2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 372 B

View file

@ -1,24 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/8/82/Alfonso_VIII_of_Castile.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="castle" stroke-width=".4">
<path d="M109.3 63.4H90.8l-.2 1.9 1.4 1.9h16l1.6-1.9zM92 67.2h16V102H92zM90.8 60h3.8v3.4h-3.8zm14.7 0h3.8v3.4h-3.8zM98 60h4.2v3.4H98zm-5.8 13h15.7m-15.7 5.6h15.7m-15.7 5.6h15.7m-15.7 5.7h15.7M92.2 67.2h15.7M92 95.6h16m-8 5.7v-5.7m0-5.7v-5.7m0-5.7v-5.7m3.9 22.9V90m-7.7 5.7V90m7.7-5.8v-5.7m-7.7 5.7v-5.7m7.7-5.7v-5.6m-7.7 5.6v-5.6m13.4-1.9h-19"/>
<path class="secondary" d="M98 72.7c0-1.2 1-2.4 2-2.4s2 1.2 2 2.4V87h-4V72.7z"/>
<path d="M115.6 66.6h3.1v3.5h-3.1zm5.4 0h3.6v3.5H121zm5.9 0h3.1v3.5h-3z"/>
<path d="M130 70h-14.4l-.2 1.9 1.6 2h11.6l1.6-2zm-13 3.9h11.5v26.7h-11.4zm0 5.3h11.6M117 84.6h11.6M117 90h11.6M117 95.5h11.6m-5.8-5.5v-5.4m0-5.3V74m3.8 21.6V90m-7.6 5.6V90m7.6-5.4v-5.4m-7.6 5.4v-5.4m11.2-7.3h-14.8"/>
<path class="secondary" d="M120.9 79c0-1.3.8-2.5 2-2.5 1 0 1.8 1.2 1.8 2.4v9.2h-3.8z"/>
<path d="M69.9 66.7H73v3.5h-3.1zm5.4 0h3.6v3.5h-3.6zm5.9 0h3.1v3.5h-3z"/>
<path d="M84.3 70.1H69.9l-.2 1.9 1.6 2h11.6l1.6-2zm-13 3.9h11.5v26.7H71.4zm0 5.3h11.6m-11.6 5.4h11.6m-11.6 5.4h11.6m-11.6 5.5h11.6m-5.8-5.5v-5.4m0-5.3v-5.3m3.8 21.6v-5.6m-7.6 5.6v-5.6m7.6-5.4v-5.4m-7.6 5.4v-5.4M84.5 72H69.7"/>
<path class="secondary" d="M75.2 79.1c0-1.3.8-2.5 2-2.5 1 0 1.8 1.2 1.8 2.4v9.2h-3.8z"/>
<path d="M70.3 99h59.4v34.5H70.3z"/>
<path d="M126.6 135.4H73.4L69 133l-1.2 3 4.4 3.8h55.6l4.4-3.7-1.2-3.1zm3.1-4.1l-3.5 2.1H73.8l-3.5-2L69 133l4.4 2.4h53.2l4.4-2.4zm-20.4-20.5h16.9m-52.4 16.8H92m15.8.2h18.5M73.8 122H92m15.8.2l18.4.1m-3.4 5.6v-5.7m0-5.7v-5.7m-7.7 17.1v-5.7m0-5.7v-5.7m3.9 22.6V128m0-5.8v-5.7m0-5.7v-5.6m-7.7 5.8v-6m0 28.4V128m0-5.9v-5.7m-41-.1H92m15.8.2h22m-.1 9.6l-3.5 1.8m3.5-6.5l-3.5.9m0-17.3l3.5 1.8m-3.5 4l3.5.8m-59.4 14.3l3.5 1.7m-3.5-6.4l3.5.8m.1-17l-3.6 1.8m3.6 4l-3.6.8m52.5-6.4v-5.8m-7.7 5.8v-5.8m-22.5 0v5.8M77.2 122v5.7M85 122v5.7m-4 .1v5.5m0-17v5.7m0-16.8v5.6m7.7-5.7v5.9m0 16.8v5.4m0-17v5.7M77.2 99.4v5.8m7.8-5.8v5.8m-11.2-4.9v33.1m52.4-33.1v33.1m-26.4-28.2v-5.8m7.7 5.8v-5.8m-33.6 11.4h16.9M73.9 105h52.3"/>
<path fill="none" d="M126.2 133.4l.4 2m1.2 4.4l-1.2-4.4m-52.8-2l-.4 2m-1.2 4.4l1.2-4.4"/>
<path d="M107.6 103.7l2.6 1.5v3.2l-2.6-1.5zM92.4 107l-2.6 1.4v-3.2l2.6-1.5zm2.6-3.4h3.6v3.5H95zm6.4 0h3.6v3.5h-3.6zm-10.4 7h17.8v29.2H91z"/>
<path d="M92.6 109h14.8l2.8 1.5v-2l-2.6-1.6H92.4l-2.6 1.5v2.1z"/>
<path d="M93.6 127.6h2.1v4.1h-2.1zm2.1 8.1l1.3 4.1h-3.4v0-4zm-.2-19.7a6 6 0 012.5-1.4l.7 2.7-1.7.7-1.9-1.5zm8.8 0a6 6 0 00-2.5-1.4l-.7 2.7 1.6.7 2-1.5zm-12.1 7.7h3.5v3.9h-3.5zm0 8h3.5v4h-3.5zm13.7-16.1l-3.2 2.4.6 1.7h4.3c-.2-1.5-.8-3-1.7-4.1zm-1.9 8.1h3.6v3.9h-3.5zm0 8h3.6v4h-3.5zm-6.4-18.5l1.1 4.1h2.4l1.1-4.1c-.7-.2-1.5-.4-2.3-.4-.8 0-1.6.2-2.3.4zm-3.6 2.4l3 2.4-.5 1.7h-4.3c.2-1.5.8-3 1.7-4.1zm12.2 8.1v-4h-2.9c.1 4.5-1.3 4 2.9 4zm-10.5 0h-2.1v-4h2.9zm8.4 3.9h2.1v4l-2.2.1zm0 8.1l-1.4 4.1h3.5v0-4zm-13-23.7l2-1h13.7l2 1 1.4-1.5-2.8-1.5H92.6l-2.8 1.5z"/>
<path class="secondary" d="M95.2 120.6c0-3 2-4.8 4.7-4.8s4.8 1.9 4.8 5.3v18.7h-9.5v-19.2z"/>
<path d="M70.3 102.4l3.5-2.1h52.4l3.5 2 1.3-1.6-4-2.4H73l-4 2.4zm57.5-11.2l3.7 2.5v3.7l-3.7-2.5zm-55.6 0l-3.7 2.5v3.7l3.7-2.5zm46.2 0h5V95h-5zm-41.8 0h5V95h-5zm25.1 0h5V95h-5zm8.3 0h5V95h-5zm-25 0h5V95h-5zm8.4 0h4.9V95h-5z"/>
<path d="M127 98.3H73l-4 2.4-.5-3.3 3.7-2.5h55.6l3.7 2.5-.5 3.3z"/>
<path fill="none" d="M73 98.3l.8 2m52.4 0l.9-2"/>
<path class="secondary" d="M113.2 110.1c0-1.2.9-2.4 2-2.4 1 0 1.8 1.2 1.8 2.4v15.5h-3.8V110v0zm7.4-.1c0-1.2.9-2.3 2-2.3 1 0 2 1.2 2 2.4v15.5h-4zm-45.3.1c0-1.2 1-2.4 2-2.4s2 1.2 2 2.4v15.5h-4V110v0zm7.5 0c0-1.2.9-2.4 2-2.4 1 0 1.9 1.2 1.9 2.4v15.5h-3.9z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -1,60 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:Coa_Illustration_Elements_Building_Castle.svg" author="Madboy74" license="https://www.gnu.org/licenses/fdl-1.3.html"/>
<g id="castle2" stroke-width="3" transform="matrix(0.22,0,0,0.22,59.3,67)">
<path class="tertiary" d="M160.64 175v35.5h-19.06v5.5h19.06v7.35l2.75 5.69 2.75-5.7V216h16.11v7.36l2.75 5.69 2.75-5.7V216h16.11v7.36l2.75 5.69 2.75-5.7V216h19.06v-5.5h-19.06V175h-5.5v35.5h-16.11V175h-5.5v35.5h-16.11V175h-5.5z"/>
<path d="M70.53 93.28v37.09h229.2v-37.1h-50.59v17.15h-32.42V93.28h-63.18v17.14h-32.42V93.28z"/>
<rect width="42.879" height="24.606" x="70.533" y="130.368" />
<rect width="35.981" height="24.606" x="113.412" y="130.368"/>
<rect width="35.755" height="24.606" x="149.393" y="130.368"/>
<rect width="53.859" height="24.606" x="131.402" y="154.974"/>
<rect width="53.859" height="24.606" x="77.543" y="154.974"/>
<rect width="42.879" height="24.606" x="70.533" y="179.58"/>
<rect width="35.981" height="24.606" x="113.411" y="179.58"/>
<rect width="53.859" height="24.606" x="77.543" y="204.185"/>
<rect width="42.879" height="24.606" x="70.533" y="228.791"/>
<rect width="35.981" height="24.606" x="113.412" y="228.791"/>
<rect width="53.859" height="24.606" x="77.543" y="253.397"/>
<path d="M70.53 278.02v15.48h42.85v-15.48H70.53z"/>
<path d="M113.38 278.02v15.48h36v-15.48h-36z"/>
<rect width="42.879" height="24.606" x="-299.723" y="130.368" transform="scale(-1 1)"/>
<rect width="35.981" height="24.606" x="-256.844" y="130.368" transform="scale(-1 1)"/>
<rect width="35.755" height="24.606" x="-220.863" y="130.368" transform="scale(-1 1)"/>
<rect width="53.859" height="24.606" x="-238.854" y="154.974" transform="scale(-1 1)"/>
<rect width="53.859" height="24.606" x="-292.712" y="154.974" transform="scale(-1 1)"/>
<rect width="42.879" height="24.606" x="-299.723" y="179.58" transform="scale(-1 1)"/>
<rect width="35.981" height="24.606" x="-256.844" y="179.58" transform="scale(-1 1)"/>
<rect width="53.859" height="24.606" x="-292.712" y="204.185" transform="scale(-1 1)"/>
<rect width="42.879" height="24.606" x="-299.723" y="228.791" transform="scale(-1 1)"/>
<rect width="35.981" height="24.606" x="-256.844" y="228.791" transform="scale(-1 1)"/>
<rect width="53.859" height="24.606" x="-292.712" y="253.397" transform="scale(-1 1)"/>
<path d="M256.82 278.02v15.48h42.9v-15.48h-42.9z"/>
<path d="M220.88 278.02v15.48h35.94v-15.48h-35.94z"/>
<path d="M49.94 41.74l-31.2 5.37L7.16 293.5h85.56L81.22 47.1l-31.28-5.36z"/>
<path d="M9.91 6.5L7.16 41.29l10.87 13.3h63.82l10.87-13.3L89.97 6.5h-19.7v20.34H60.12V6.5H39.77v20.34H29.61V6.5H9.9z"/>
<path d="M6.52 116.36v27.25h86.84v-27.25H6.52z"/>
<path class="secondary" d="M62.3 165.73a12.36 12.36 0 01-24.7 0 12.36 12.36 0 1124.7 0z"/>
<path d="M320.06 41.74l-31.2 5.37-11.58 246.39h85.56l-11.5-246.4-31.28-5.36z"/>
<path d="M280.03 6.5l-2.75 34.79 10.87 13.3h63.82l10.87-13.3-2.75-34.79h-19.7v20.34h-10.16V6.5h-20.34v20.34h-10.17V6.5h-19.7z"/>
<path d="M276.64 116.36v27.25h86.84v-27.25h-86.84z"/>
<path class="secondary" d="M332.43 165.73a12.36 12.36 0 01-24.72 0 12.36 12.36 0 1124.72 0z"/>
<path d="M185.13 149.17c-5.72 0-11.27.79-16.56 2.17l7.86 29.36a36.24 36.24 0 018.7-1.1c3.05 0 5.97.4 8.76 1.1l7.86-29.36a65.44 65.44 0 00-16.62-2.17z"/>
<path d="M170.04 156.9a59.14 59.14 0 00-26.35 14.84l17.33 17.33a33.84 33.84 0 0115.41-8.37l-6.4-23.8z"/>
<path d="M143.69 171.74a57.99 57.99 0 00-15.6 26.16l24.04 6.46a32.64 32.64 0 018.89-15.29l-17.33-17.33z"/>
<path d="M128.09 197.9a57.7 57.7 0 00-2.05 15.34h24.88c0-3.09.46-6.07 1.21-8.88l-24.04-6.46z"/>
<path d="M200.22 156.9l-6.33 23.8a33.8 33.8 0 0115.35 8.44l17.33-17.33a59.1 59.1 0 00-26.35-14.9z"/>
<path d="M226.57 171.8l-17.33 17.34a32.58 32.58 0 018.89 15.22l24.04-6.46a57.94 57.94 0 00-15.6-26.1z"/>
<path d="M242.17 197.96l-24.04 6.4c.74 2.81 1.21 5.8 1.21 8.88h24.88c0-5.28-.71-10.41-2.05-15.28z"/>
<path d="M126.04 213.24v16.89h24.88v-16.89h-24.88z"/>
<path d="M126.04 230.13v16.94h24.88v-16.94h-24.88z"/>
<path d="M126.04 247.07v16.89h24.88v-16.89h-24.88z"/>
<path d="M126.04 263.96v16.94h24.88v-16.94h-24.88z"/>
<path d="M126.04 280.9v12.6h24.88v-12.6h-24.88z"/>
<path d="M219.34 213.24v16.89h24.88v-16.89h-24.88z"/>
<path d="M219.34 230.13v16.94h24.88v-16.94h-24.88z"/>
<path d="M219.34 247.07v16.89h24.88v-16.89h-24.88z"/>
<path d="M219.34 263.96v16.94h24.88v-16.94h-24.88z"/>
<path d="M219.34 280.9v12.6h24.88v-12.6h-24.88z"/>
<path fill="#000" stroke="none" d="M49.94 58.3v2.04h27.82l-.07-2.04H49.94zm0 8.18v2.05h28.2l-.06-2.05H49.94zm0 8.19v2.05h28.59l-.07-2.05H49.94zm0 8.18v2.05h29.03l-.12-2.05h-28.9zm0 8.19v2.05h29.42l-.13-2.05H49.94zm0 8.19v2.04h29.8l-.13-2.04H49.94zm0 8.18v2.05h30.18L80 107.4H49.94zm0 13.43v2.05H89.4v-2.05H49.94zm0 8.18v2.05H89.4v-2.05H49.94zm0 8.19v2.05H89.4v-2.05H49.94zm0 11.13v2.04h32.1l-.12-2.04H49.94zm11.51 8.18c.52.65 1 1.32 1.4 2.05h19.58l-.13-2.05H61.45zm3.2 8.19c.02.33.06.68.06 1.02 0 .34-.04.69-.06 1.02H82.8l-.13-2.04H64.65zm-1.8 8.18c-.4.73-.88 1.4-1.4 2.05H83.2l-.12-2.05H62.86zm-12.9 8.19v2.05h33.63l-.13-2.05h-33.5zm0 8.18v2.05h34.01l-.13-2.05H49.94zm0 8.19v2.05h34.4l-.13-2.05H49.94zm0 8.19v2.04h34.78l-.13-2.04H49.94zm0 8.18v2.05H85.1l-.06-2.05h-35.1zm0 8.19v2.04H85.5l-.07-2.04H49.94zm0 8.18v2.05h35.93l-.06-2.05H49.94zm0 8.19v2.04h36.31l-.06-2.04H49.94zm0 8.18v2.05h36.7l-.07-2.05H49.94zm0 8.19v2.04h37.08l-.06-2.04H49.94zm0 8.18v2.05H87.4l-.06-2.05h-37.4zm0 8.19v2.04H87.8l-.07-2.04H49.94zm0 8.18v2.05h38.23l-.06-2.05H49.94z"/>
<path fill="#000" stroke="none" d="M320.06 58.3v2.04h27.82l-.07-2.04h-27.75zm0 8.18v2.05h28.2l-.06-2.05h-28.14zm0 8.19v2.05h28.58l-.06-2.05h-28.52zm0 8.18v2.05h29.03l-.13-2.05h-28.9zm0 8.19v2.05h29.42l-.13-2.05h-29.3zm0 8.19v2.04h29.8l-.13-2.04h-29.67zm0 8.18v2.05h30.18l-.13-2.05h-30.05zm0 13.43v2.05h39.45v-2.05h-39.45zm0 8.18v2.05h39.45v-2.05h-39.45zm0 8.19v2.05h39.45v-2.05h-39.45zm0 11.13v2.04h32.1l-.13-2.04h-31.97zm11.51 8.18c.51.65 1 1.32 1.4 2.05h19.57l-.12-2.05h-20.85zm3.2 8.19c.02.33.06.68.06 1.02 0 .34-.04.69-.06 1.02h18.16l-.13-2.04h-18.03zm-1.8 8.18c-.4.73-.89 1.4-1.4 2.05h21.74l-.13-2.05h-20.2zm-12.91 8.19v2.05h33.64l-.13-2.05h-33.51zm0 8.18v2.05h34.02l-.13-2.05h-33.9zm0 8.19v2.05h34.4l-.12-2.05h-34.28zm0 8.19v2.04h34.79l-.13-2.04h-34.66zm0 8.18v2.05h35.17l-.06-2.05h-35.11zm0 8.19v2.04h35.55l-.06-2.04h-35.5zm0 8.18v2.05H356l-.07-2.05h-35.87zm0 8.19v2.04h36.32l-.06-2.04h-36.26zm0 8.18v2.05h36.7l-.06-2.05h-36.64zm0 8.19v2.04h37.09l-.07-2.04h-37.02zm0 8.18v2.05h37.47l-.06-2.05h-37.41zm0 8.19v2.04h37.86l-.07-2.04h-37.8zm0 8.18v2.05h38.24l-.06-2.05h-38.18z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.7 KiB

View file

@ -1,67 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/6/64/Bonanno.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="catPassantGuardant" stroke-width=".39">
<g>
<g stroke-linejoin="round">
<path class="secondary" d="M61.2 117.14c.3.97 1.6 2.08 2.5 1.64.02-.58-.98-1.1-.67-2.51"/>
<path d="M74.91 101.66c-1.39.52-1.83 1.22-3.13 1.9-1.5.8-2.72.85-4.13 1.87-.51.36-1 .77-1.6 1.03-.59.27-2.73.56-3.34.77-.94.33-2.25 1.04-2.03 3.19.3 2.3-.76 2.69-.52 4.99-.5.69.08 1.91.7 1.95.43.03.45-.38.75-.64.48-.43 1.13-.5 1.49-.3l3.18-1.05c.43-.33.58-1.12.08-1.8-1.56-2.14-.56-1.85-1.22-2.8 1.57-.57 3.75.25 5.47-.31.53-.17.94-.51 1.5-.54.35-.02.68.17 1.03.17 2.3.04 2.07-.54 4.24-.67"/>
<path class="secondary" d="M66.34 115.23c-.3 1.4.7 1.92.68 2.5-.9.46-2.2-.64-2.5-1.63-.06-.16.38-.44.5-.59.14-.18.9-.26 1.26-.13m-1.99.35c-.31 1.4.69 1.93.68 2.51-.91.46-2.21-.65-2.51-1.63-.04-.15-.04-.34-.04-.49 0-.09.66-.24.99-.28"/>
<path d="M64.23 115.89c-.34-.2-1-.13-1.49.3-.3.27-.32.65-.75.64-.8-.07-1.18-.87-.65-1.56"/>
<path d="M66.27 115.42c-.34-.2-1-.13-1.49.3-.3.27-.19.64-.62.63-.73-.12-1.23-.9-.61-1.64"/>
</g>
<g stroke="none" fill="#000">
<path d="M61.21 115.12c.16-.13.17-.44.14-.74-.02-.31-.05-.62-.05-.95a3.96 3.96 0 0 1 .42-1.86l.04.02a4.38 4.38 0 0 0-.22 1.83c.02.31.07.61.13.92.02.16.05.33.03.51 0 .18-.06.39-.2.55l-.29-.28zm2.18-.53c.04-.04.06-.14.03-.27-.01-.12-.07-.26-.1-.4l-.26-.81a3.27 3.27 0 0 1-.13-.86c-.02-.29.02-.58.13-.86l.04.01a4.55 4.55 0 0 0-.06.42l.03.42c.04.27.12.54.2.8l.33.78c.05.13.12.28.16.43.02.08.04.16.04.26a.52.52 0 0 1-.08.3l-.33-.22z"/>
<path d="M63.42 114.58a1.43 1.43 0 0 1 .36-.38 1.69 1.69 0 0 1 .46-.23c.16-.07.32-.1.5-.13l.24-.03c.08 0 .17-.01.25.04-.08.06-.15.08-.22.1l-.23.08-.4.2c-.13.09-.25.18-.35.27-.12.09-.2.2-.31.3l-.3-.22zm-2.24.6a.76.76 0 0 1 .24-.34c.1-.1.22-.17.32-.24.12-.06.24-.1.37-.14l.18-.05c.06-.01.12-.04.2 0a.26.26 0 0 1-.15.13l-.14.1-.27.22-.23.24-.18.24-.34-.17zm3.81-4.3a1.2 1.2 0 0 1 0-1.2c-.07.39.08.75.32.96l-.32.23zm5.92-2.95c.2-.1.44-.13.67-.13.24 0 .46.04.68.08.22.04.43.07.62.07.21 0 .38-.04.58-.12.2-.07.39-.17.62-.25a2.47 2.47 0 0 1 .69-.11c.47-.03.9.05 1.34.15-.44.05-.9.07-1.31.14-.21.04-.42.1-.6.17l-.61.26c-.12.04-.24.08-.36.1h-.36c-.25 0-.47-.07-.69-.14-.43-.1-.82-.27-1.27-.22z"/>
</g>
</g>
<g>
<g stroke-linejoin="round">
<path class="secondary" d="M103.88 128.73c-1.4.32-1.46 1.45-2 1.68-.79-.64-.34-2.29.42-2.96a2.08 2.08 0 0 1 1.68.41"/>
<path class="secondary" d="M105.57 129.64c-1.4.32-1.46 1.45-2 1.68-.79-.64-.34-2.29.42-2.96.38-.04.76-.04 1.1.09s.67.39.83.73m-3.9-1.36c-1.4.32-1.46 1.45-2 1.68-.79-.64-.34-2.29.42-2.96.35-.07.73-.1 1.08-.03.26.07.54.18.67.42"/>
<path d="M119.11 110.89c-.48 1.32.18 2.6-.23 3.69-.6 1.58-1.95 2.47-3.5 3.16-2.61 1.15-5.91 3.94-6.2 8.08-.03 1.38-1.5 3.03-1.99 3.53a1.9 1.9 0 0 1-1.75.44c.04-.4-.3-.96-.9-1.21-.37-.16-.73-.02-.9-.42l.03.5s-.24-.74-.83-1c-.37-.15-.73 0-.9-.4l-.07.55c0-.25-.3-.8-.88-1.05-.36-.16-.74-.01-.9-.42-.22-.58.28-1.53 1.1-1.38.55 0 2.6-.3 3.7-2.18 1.26-2.6 2.6-3.47 3.96-5.82.32-.55.63-1.1.78-1.73.32-1.34-1.39-2.65-1.22-4.8.1-1.18-.6-2.73 0-3.76.26-.44.72-.75 1.16-1a12.83 12.83 0 0 1 4.42-1.45c1.5-.22 3.06-.24 4.58-.24l3.5-.01c.08 0 .16 0 .21.05.07.07.06.18.03.27a10.9 10.9 0 0 1-.77 2.19"/>
</g>
<path fill="none" d="M104.88 126.9c-.94-.25-1.43.53-1.24 1.25m-.6-2.29c-.85-.18-1.37.64-1.1 1.38"/>
<g stroke="none" fill="#000">
<path d="M106.52 125.43c0 .05.02.1 0 .16l-.03.15-.1.3a2.03 2.03 0 0 1-.86.93 1.01 1.01 0 0 1-.7.11l.06-.37c.14 0 .3-.04.47-.1a2.3 2.3 0 0 0 .84-.68l.16-.24.06-.13.1-.13zm-1.58-.9.02.16-.04.16-.07.15-.08.15a2.05 2.05 0 0 1-1.05.82c-.22.07-.45.11-.7.06l.04-.38c.35-.01.74-.1 1.08-.28a2 2 0 0 0 .46-.35l.1-.12.07-.12.07-.13.1-.13z"/>
<path d="M104.92 126.7a1.9 1.9 0 0 1 .96.52c.13.14.23.3.31.46l.1.25c.03.08.07.17.07.26-.07-.07-.1-.15-.16-.21l-.15-.2a2.18 2.18 0 0 0-.8-.52l-.44-.15.1-.4zm-1.84-1.03a.9.9 0 0 1 .38.1 2.26 2.26 0 0 1 .64.44l.13.14c.04.06.07.1.09.17l-.16-.09-.15-.08c-.1-.05-.23-.07-.33-.11l-.34-.1-.3-.08.04-.4zm-1.88-.93c.13-.02.27 0 .4.06s.25.13.34.2l.26.24.13.1.15.1h-.18l-.18-.05-.34-.13-.28-.08-.29-.03-.01-.4z"/>
</g>
<g stroke-linejoin="round">
<path class="secondary" d="M130.77 129.98c-1.4.31-1.45 1.45-1.99 1.68-.79-.64-.35-2.29.42-2.97a2.08 2.08 0 0 1 1.68.42"/>
<path class="secondary" d="M132.46 130.9c-1.4.3-1.45 1.43-1.99 1.67-.79-.64-.35-2.29.42-2.97.38-.03.75-.03 1.1.1s.67.39.82.72m-48.32-.44c-1.4.31-1.45 1.45-1.99 1.68-.79-.64-.35-2.29.42-2.97a2.08 2.08 0 0 1 1.68.42"/>
<path class="secondary" d="M86.18 130.9c-1.4.3-1.45 1.43-1.99 1.67-.79-.64-.35-2.29.42-2.97.38-.03.75-.03 1.1.1s.67.39.82.72m-3.9-1.36c-1.4.31-1.45 1.44-1.98 1.68-.8-.64-.36-2.3.41-2.97.35-.06.73-.1 1.08-.02.26.06.53.18.66.41m46.11.9c-1.4.31-1.45 1.44-1.99 1.68-.79-.64-.35-2.3.42-2.97.35-.06.73-.1 1.08-.02.26.06.53.18.66.41"/>
<path d="M68.39 86.19c1.1 3.14-.15 3.14.24 5.22.52 2.78.19 2.24.1 4.76-.06 1.35.84 2.35 1.14 3.78.14.73.17 1.5.39 2.21a9.83 9.83 0 0 0 3.31 4.53c.3.2.63.32.91.54.9.68 1.17 1.8 1.94 2.63.87.92 1.55 1.65 2.8 1.9.37.07 1.14.14 1.53.16 1.06 1.68 1.16 2.41 1.48 3.32.48 1.34 1.7 2.1 1.99 3.48.1.43 1.08 2.08.83 5.33-.26 1.89-2.69 2.14-3.24 2.14-.83-.16-1.32.79-1.1 1.37.16.4.53.26.9.42.58.25.88.8.88 1.05l.07-.56c.16.4.53.26.9.42.58.25.83.99.83.99l-.03-.5c.17.4.53.26.9.42.58.25.93.82.9 1.2.19.1 1.15.18 1.75-.43.48-.48 1.94-2.08 1.96-3.46.03-1.24-.74-1.57-.57-4.47.08-2.28.78-4.07.3-6.06-.44-1.82-.21-1.55-.18-3.45 3.83.89 6.83-.98 9.55-.5 2.91.5 6.81-1.07 9-2.24 1.18-.64 2.84-1.1 4.13-1.48 1.34-.4 2.3-.61 4.25-1.44 1.34 3.4 3.17 5 5.62 6.1.86.4 2.65.7 3.47 1.15.87.48 2.14 1.16 2.98 1.83.75.6 1.53 1.03 2.1 1.82 1.26 1.77 1.19 3.5.9 5.66-.26 1.88-2.7 2.13-3.24 2.13-.83-.16-1.32.8-1.1 1.38.15.4.53.26.9.41.58.25.88.81.88 1.06l.06-.56c.17.39.54.26.9.41.58.25.83 1 .83 1l-.02-.5c.16.39.53.26.9.41.58.25.93.82.89 1.21.2.1 1.16.17 1.75-.44.49-.48 1.94-2.08 1.97-3.46.02-1.23-.74-1.57-.57-4.47.15-1.8.35-2.47.63-4.26.1-.68.64-1.63.63-2.32-.02-.69-.13-1.41-1.06-1.65a5.24 5.24 0 0 1-3.13-1.83 7.05 7.05 0 0 1-1.66-4.95c.5-3.62 1.76-5.32.7-9.61 2.59.41 9.03-3.06 8.15-11.05-.55-4.88-4.25-7.67-8.97-8.69-10.2-2.17-19.66 3-27.43 1.2-3.08-.71-4.93-2.38-5.25-5.1-.33-2.79 2.22-4.5 4.08-4.56 1.01-.02 3.1.33 3.31 2.63.04.24.1.56.4.56.24 0 .41-.37.5-.68.55-2.26-1.64-4.89-4.67-4.89a6.76 6.76 0 0 0-6.89 7.46c.43 4.18 2.97 6.71 7.88 7.75 7.71 1.64 18.74-3.12 26.73-1 3.33.89 5.85 2.61 6.25 5.7.6 4.45-2.67 7-5.37 6.73-4.82-5.88-12.23-5.36-18.75-4.51-2.75.36-4.97 1.12-7.69 1.6-5.8 1.02-12.04.9-14.12-.85-.93-.8-2.63-1.43-3.09-2-1.14-1.44-.92-2.83-1.83-4.35"/>
</g>
<g stroke="none" fill="#000">
<path d="M79.38 108.09c.23.27.4.58.51.91.13.33.22.66.3 1 .08.34.14.65.27.96.12.3.28.59.45.87l-.33.21a4.34 4.34 0 0 1-.48-.95c-.12-.33-.18-.69-.25-1.01-.06-.34-.11-.66-.22-.98-.09-.32-.2-.63-.28-.97l.03-.04zm10.12-3.91c.15.74.36 1.45.53 2.2.08.38.16.76.18 1.15.04.4.02.78-.04 1.17-.09.77-.26 1.5-.39 2.25-.13.74-.27 1.48-.28 2.22h-.4a17.15 17.15 0 0 1 .3-2.28c.15-.75.32-1.49.44-2.23.05-.36.09-.73.06-1.1a8.03 8.03 0 0 0-.14-1.1c-.14-.75-.31-1.5-.31-2.27l.05-.01zm24.07-6.6a11.17 11.17 0 0 1 1.94 4.82c.13.87.16 1.73.29 2.57l.11.62.15.62.18.6.2.6-.36.15a10.74 10.74 0 0 1-.67-2.54c-.12-.87-.15-1.73-.25-2.57a10.9 10.9 0 0 0-.61-2.47c-.29-.8-.68-1.57-1.01-2.37l.03-.02zM79.1 98.83l.04.7-.02.68a11.75 11.75 0 0 1-.09 1.38 3.25 3.25 0 0 1-.2-2.1c.06-.22.14-.45.27-.66zm-1.04 5.66c.06.23.12.44.2.63a7.51 7.51 0 0 0 .51 1.15l.35.56a1.82 1.82 0 0 1-1-.97c-.1-.22-.15-.45-.18-.68a1.4 1.4 0 0 1 .12-.7zm11.43-4.63c.11.04.2.12.27.2s.12.18.14.28c.03.1.04.2.03.31a.65.65 0 0 1-.13.31c-.08-.09-.13-.18-.17-.26l-.1-.24-.04-.26v-.34zm15.44 7.76a.87.87 0 0 1-.18.47 1.18 1.18 0 0 1-.89.45.86.86 0 0 1-.5-.13l.44-.17.38-.18.36-.2.39-.24zm-3.1.78c-.09.13-.19.22-.28.3l-.3.23a2.77 2.77 0 0 1-.7.38c.02-.16.09-.29.18-.4.1-.12.18-.21.3-.29a1.43 1.43 0 0 1 .38-.18.78.78 0 0 1 .43-.04zm-3.5 1.34c-.1.12-.21.2-.32.27a2.26 2.26 0 0 1-.72.3 1.5 1.5 0 0 1-.43.04.98.98 0 0 1 .3-.31c.11-.08.23-.16.36-.21a1.14 1.14 0 0 1 .82-.1zm-3.3.86c-.14.13-.3.22-.47.28a1.86 1.86 0 0 1-1.1.07 1.29 1.29 0 0 1-.5-.24l.53-.07.5-.04.51-.03.54.03zm29.37 2.38h.55l.5.05.51.08c.17.03.34.07.52.14-.17.09-.35.14-.53.17-.18.02-.36.02-.55 0a2.47 2.47 0 0 1-.53-.15 1.5 1.5 0 0 1-.47-.3zm5.8-13.12c.13.52.2 1.06.24 1.6V102.65l-.03.4a9.84 9.84 0 0 1-.83 3.13l.24-1.59c.08-.52.15-1.05.2-1.57l.04-.39.02-.39.03-.39.03-.39.06-1.61zm-43 15.77a.8.8 0 0 1 .23.58c0 .1-.01.21-.04.3a.6.6 0 0 1-.17.29.78.78 0 0 1-.14-.3c-.03-.1-.04-.2-.04-.29 0-.09 0-.2.03-.28.02-.1.05-.2.13-.3zm-.38 1.9c.1.06.13.15.14.24a.5.5 0 0 1-.2.48c-.08.06-.17.1-.28.07l.04-.25.05-.18.1-.17a.64.64 0 0 1 .15-.2zm-.16-2.67-.2-.12-.12-.11a1.43 1.43 0 0 1-.08-.15.91.91 0 0 1-.05-.23c.09-.04.18-.03.26 0a.4.4 0 0 1 .18.14.4.4 0 0 1 .08.21c.01.1 0 .17-.07.26zm26.6-1.03.3-.09.29-.09.28-.09.28-.12c.35-.15.67-.36.96-.62s.53-.57.84-.86l.25-.2a3.12 3.12 0 0 1 .27-.16l.16-.07.16-.05.3-.04c-.38.17-.67.43-.92.73-.24.3-.48.65-.8.94-.31.3-.7.52-1.12.62l-.31.08-.31.04h-.32c-.1 0-.2 0-.3-.02zm20.53 1.91c0 .19.01.34.04.48.02.15.08.28.13.42a2.13 2.13 0 0 0 .53.74.73.73 0 0 1-.53-.14 1.07 1.07 0 0 1-.43-1c.02-.21.12-.4.26-.5zM70.97 96c.15.14.19.35.19.54s-.04.38-.1.55l-.15.48c-.05.16-.08.3-.08.5-.16-.11-.22-.33-.23-.53-.02-.2.04-.39.07-.55l.17-.49c.07-.15.12-.3.13-.5zM72.88 94c.1.1.13.18.17.29.03.1.04.2.04.3 0 .1-.02.2-.06.28a.6.6 0 0 1-.2.26c-.06-.1-.09-.2-.11-.3-.02-.09-.03-.18-.02-.27 0-.1.03-.18.05-.27.02-.1.06-.18.13-.29z"/>
</g>
<path fill="none" d="M131.77 128.15c-.93-.25-1.43.53-1.23 1.25m-.59-2.3c-.85-.17-1.37.65-1.1 1.39"/>
<g stroke="none" fill="#000">
<path d="M133.41 126.68c.02.05.03.1.02.16l-.04.15-.1.3a2.03 2.03 0 0 1-.87.92 1.01 1.01 0 0 1-.68.12l.05-.38c.14 0 .3-.03.47-.1.15-.06.3-.16.45-.27.14-.12.27-.25.39-.4l.16-.24.06-.13.1-.13zm-1.57-.91.01.17-.04.16-.06.15-.08.14a2.05 2.05 0 0 1-1.05.82c-.22.08-.46.12-.7.07l.03-.38c.36-.01.75-.1 1.08-.28a2 2 0 0 0 .47-.36l.1-.11.07-.12.07-.13.1-.13z"/>
<path d="M131.81 127.95a1.9 1.9 0 0 1 .96.52c.13.13.24.29.32.46l.1.25c.03.07.07.17.07.26-.07-.07-.1-.15-.16-.21l-.16-.2a2.18 2.18 0 0 0-.79-.52l-.44-.15.1-.4zm-1.83-1.04a.9.9 0 0 1 .38.1 2.26 2.26 0 0 1 .63.45l.13.14c.04.05.08.1.1.17l-.16-.09-.16-.08c-.1-.05-.22-.08-.32-.11l-.34-.1-.31-.09.05-.39zm-1.89-.92c.13-.03.28 0 .4.05s.25.13.35.21l.26.23.13.1.15.1h-.18l-.18-.04-.34-.13-.29-.08-.28-.04-.02-.4zm3.33-27.87c-.06-.2-.13-.43-.22-.64l-.3-.6a5.55 5.55 0 0 0-.84-1.1l.02-.03a5.98 5.98 0 0 1 1.4 1.59c.11.2.22.43.3.65l-.36.13zM79.15 94.5c.05.1.08.19.1.28 0 .08 0 .17-.04.24a.67.67 0 0 1-.31.42.84.84 0 0 1-.09-.27.54.54 0 0 1 .03-.25.69.69 0 0 1 .31-.42zm-2.4-.44c.13.07.19.21.2.34a.83.83 0 0 1-.05.36 1.95 1.95 0 0 1-.14.3l-.18.28a.48.48 0 0 1-.1-.37c0-.13.03-.23.06-.33l.1-.28c.04-.09.1-.17.12-.3zm4.34-1.45c.06.1.1.2.13.28l.07.21.04.1.06.12c0 .05.04.1.04.17s0 .13-.06.18c-.09-.09-.15-.1-.23-.17l-.12-.1a.39.39 0 0 1-.09-.16.65.65 0 0 1-.01-.35.5.5 0 0 1 .17-.28zm-6.4 1.95c.05.05.08.13.1.2l-.03.2-.1.3-.02.26c0 .09.01.2.06.34a.47.47 0 0 1-.35-.24.58.58 0 0 1-.06-.44c.04-.17.13-.26.2-.35.07-.1.15-.14.2-.27zm-1.44 3.84a.8.8 0 0 1 .08.42l-.03.34v.32l.01.38a.56.56 0 0 1-.3-.3c-.06-.13-.09-.27-.09-.41s.07-.3.12-.4l.2-.35zm3.12.63c-.07-.04-.12-.13-.14-.2a.58.58 0 0 1-.02-.27c.03-.17.1-.31.17-.43l.18-.32.17-.4a.65.65 0 0 1 .13.46c0 .16-.06.33-.14.46l-.22.32c-.05.1-.12.21-.13.38z"/>
</g>
<path fill="none" d="M85.5 128.15c-.94-.25-1.44.53-1.24 1.25m-.59-2.3c-.85-.17-1.37.65-1.1 1.39"/>
<g stroke="none" fill="#000">
<path d="M87.13 126.68c.02.05.03.1.02.16l-.04.15-.1.3a2.03 2.03 0 0 1-.87.92 1.01 1.01 0 0 1-.68.12l.05-.38c.14 0 .3-.03.47-.1.15-.06.3-.16.45-.27.14-.12.27-.25.39-.4l.16-.24.06-.13.1-.13zm-1.56-.91.02.17-.04.16-.07.15-.08.14a2.05 2.05 0 0 1-1.05.82c-.22.08-.45.12-.7.07l.04-.38c.35-.01.74-.1 1.08-.28a2 2 0 0 0 .46-.36l.1-.11.07-.12.07-.13c.02-.04.05-.1.1-.13z"/>
<path d="M85.55 127.95a1.9 1.9 0 0 1 .96.52c.13.13.23.29.31.46l.1.25c.03.07.07.17.07.26-.07-.07-.1-.15-.16-.21l-.15-.2a2.18 2.18 0 0 0-.8-.52l-.44-.15.1-.4zm-1.85-1.04a.9.9 0 0 1 .38.1 2.26 2.26 0 0 1 .63.45l.13.14c.04.05.08.1.1.17l-.16-.09-.16-.08c-.1-.05-.22-.08-.32-.11l-.34-.1-.31-.09.05-.39zm-1.89-.92c.13-.03.28 0 .4.05s.26.13.35.21l.26.23.13.1.15.1h-.18l-.18-.04-.34-.13-.29-.08-.28-.04-.01-.4z"/>
</g>
<path stroke-linejoin="round" d="M72.1 90.24c.15.59.54 1.1.91 1.37a4.88 4.88 0 0 0 3.03.79 4.81 4.81 0 0 0 3.03-.8c.38-.27.77-.77.91-1.36"/>
<path d="M85.3 78.3c.31.42.43.97.43 1.5 0 .68-.24 1.29-.12 1.95.1.56.01.78.25 1.3.04.1.1.2.13.3.13.5-.35.91-.43 1.38-.04.2.18.38.17.6-.02.2-.18.3-.28.46-.15.3.04.65-.13.89a.4.4 0 0 1-.14.12l-.69.44s-1.04 1.47-1.9 1.64a5.3 5.3 0 0 1-1.22 1.4 2.78 2.78 0 0 1-1.22.48 6.63 6.63 0 0 1-4.1-.73s-.86.4-1.41.55a6.66 6.66 0 0 1-2.68.18 2.78 2.78 0 0 1-1.22-.48 5.3 5.3 0 0 1-1.22-1.4c-.86-.17-1.9-1.64-1.9-1.64l-.69-.44c-.05-.04-.1-.07-.14-.12-.17-.23.02-.61-.13-.88-.1-.17-.26-.26-.28-.47 0-.22.21-.38.17-.6-.07-.46-.56-.87-.43-1.38.03-.1.1-.2.13-.3.24-.52.16-.73.25-1.3.12-.66-.12-1.27-.12-1.95 0-.53.12-1.08.43-1.5l-.63-3.87 4.07.24c.48-.74 1.92-1.24 2.9-1.26.14-.13.64-.37 1.03-.47.67-.17 1.02-.22 1.89-.22s1.2.05 1.88.22c.4.09.9.32 1.04.47.97.02 2.3.35 2.92 1.26l3.34-.56.05 4.18z"/>
<path d="M81.88 74.67c1.03-1.07 3.13-1.37 3.59-3.7.08-.45.27-.3.39 0 1.02 2.53 1.02 5.41-.61 7.3m-15.02-3.6c-1.03-1.07-3.13-1.37-3.59-3.7-.07-.45-.27-.3-.39 0-1.02 2.53-1.02 5.41.61 7.3"/>
<g stroke="none" fill="#000">
<path d="m77.47 82.73.13.84c.04.28.03.56.06.85s.06.56.11.84c.04.29.1.56.17.85l-.02.01a8.53 8.53 0 0 1-.51-1.65c-.05-.29-.13-.57-.12-.87.01-.3.04-.59.17-.87h.01zm.86 5.31a12.44 12.44 0 0 1 2.94-1.85 3.77 3.77 0 0 1 1.14-.28l-1.01.55-.99.57a12.56 12.56 0 0 1-2.08 1.01zm.38.88c.27-.21.56-.38.84-.55a9.58 9.58 0 0 1 1.86-.77c.33-.08.68-.11 1.02-.08l-.93.38-.9.4-.92.35c-.3.1-.63.2-.97.26zm4.78-11.68c-.09-.25-.09-.53-.02-.8.06-.25.18-.5.3-.73.27-.46.58-.87.87-1.29.28-.42.54-.84.75-1.3.2-.46.33-.95.38-1.46.1.51.08 1.06-.1 1.56a5.38 5.38 0 0 1-.7 1.42l-.46.63a10.63 10.63 0 0 0-.46.6c-.31.4-.58.84-.56 1.37zm-14.9 0c.03-.53-.24-.96-.53-1.36l-.45-.61-.46-.63a5 5 0 0 1-.71-1.42 3.19 3.19 0 0 1-.1-1.56c.06.52.17 1 .38 1.46a7.67 7.67 0 0 0 .76 1.3c.28.42.6.83.85 1.29.13.23.25.48.32.74.04.26.04.54-.06.8zm15.06 3.4c.06-.07.1-.12.15-.15.04-.04.1-.06.13-.08l.15-.02.22.02c.01.1-.03.19-.07.24-.04.06-.1.1-.17.13a.39.39 0 0 1-.2.01.39.39 0 0 1-.21-.14zm-.18 1.13.22-.08.15-.02.16.04c.05.03.12.06.2.12-.04.1-.11.16-.17.18a.32.32 0 0 1-.23.04.57.57 0 0 1-.2-.08.26.26 0 0 1-.13-.2zm-.37.93c.1-.04.16-.05.22-.05s.12 0 .16.03c.05 0 .09.05.13.09l.13.18a.39.39 0 0 1-.2.1c-.07.02-.14 0-.2-.02s-.12-.07-.16-.12c-.04-.04-.07-.1-.08-.2zm-.57.78.18.05.1.04c.02.02.03.05.04.1l.07.18a.23.23 0 0 1-.2.09.26.26 0 0 1-.18-.08.26.26 0 0 1-.09-.17c0-.07.02-.14.08-.2zm-2.08-8.4c.07.16.1.3.12.43l.1.37.16.3c.06.11.14.2.28.3a.56.56 0 0 1-.5-.06.75.75 0 0 1-.3-.4 1.07 1.07 0 0 1 .14-.94zm-8.8 0a.91.91 0 0 1 .18.43c.03.16.01.33-.04.5a.8.8 0 0 1-.31.4c-.14.09-.34.14-.5.06.14-.09.23-.2.3-.3l.15-.3.1-.37.12-.42zm6.37 1.02a.55.55 0 0 1 .32.02c.1.03.19.08.26.15a1.04 1.04 0 0 1 .2.22c.05.09.09.18.09.3-.12 0-.2-.04-.3-.08a1.3 1.3 0 0 1-.22-.14.87.87 0 0 1-.18-.2.65.65 0 0 1-.17-.27zM76 74.52c.08.1.12.2.16.3a1.17 1.17 0 0 1 0 .6c-.03.1-.08.2-.16.3a1.1 1.1 0 0 1-.15-.3 1.17 1.17 0 0 1 0-.6c.04-.1.08-.2.15-.3zm1.28-.63.3.05.23.09.2.13.24.2a.5.5 0 0 1-.3.1.78.78 0 0 1-.3-.07c-.1-.03-.19-.1-.26-.2s-.11-.19-.11-.3zm1.29 5.25a2.34 2.34 0 0 1 .62-.31 2.96 2.96 0 0 1 1.36-.1c.23.03.46.1.67.2a10.95 10.95 0 0 1-1.33.14l-.65.04c-.22.03-.44.04-.67.03zm6.78-3.32c.08.13.1.26.1.4s0 .28-.06.4a.94.94 0 0 1-.2.35c-.09.1-.19.2-.33.25l.06-.4.1-.33.14-.33.2-.34zm-10.7 6.9a2.47 2.47 0 0 1 .17.88c.01.3-.06.58-.12.87l-.2.84c-.1.28-.19.55-.3.81l-.03-.01a8.84 8.84 0 0 0 .29-1.7c.02-.28.01-.56.05-.84.04-.28.06-.56.13-.84h.01zm-.35 3.39c.13-.08.27-.13.42-.18l.44-.1a5.2 5.2 0 0 1 .88-.09v.4-.4a4.97 4.97 0 0 1 1.33.19c.14.05.28.1.41.18l-.44.01h-1.28v-.39.39h-1.3l-.46-.01zm.26.87c.17.05.31.13.47.2l.34.3c.23.2.48.36.74.46h-.14c.27-.1.52-.27.74-.45l.33-.32c.16-.06.3-.14.47-.2a3.1 3.1 0 0 1-.2.49 4.33 4.33 0 0 1-1.21.84l-.07.03-.06-.03c-.33-.13-.6-.3-.86-.52l-.37-.32-.18-.48zm-.8 1.06a8.56 8.56 0 0 1-1.07-.46c-.35-.17-.68-.37-1.01-.55l-1-.57-1-.55c.38.03.77.13 1.14.28a7.84 7.84 0 0 1 2.03 1.13c.3.23.62.46.9.72zm-.38.88a8.28 8.28 0 0 1-1.9-.63l-.9-.39-.92-.38c.34-.03.68.02 1.01.08a6.45 6.45 0 0 1 1.86.77c.29.17.58.34.85.55zM85.4 78.4l-.3.23-.3.22a1.73 1.73 0 0 0-.45.56 1.95 1.95 0 0 1 .31-.69l.24-.3c.07-.1.17-.2.22-.3l.28.28zM67 78.14l.22.28.23.32a1.95 1.95 0 0 1 .31.69c-.11-.23-.27-.4-.45-.56l-.29-.22-.31-.24.29-.27zM82 74.8a.39.39 0 0 0-.1.07l-.08.09a.85.85 0 0 0-.16.22.94.94 0 0 0-.11.26 1.04 1.04 0 0 0-.08.28l-.02-.3.04-.3.1-.3.07-.15.1-.16.24.29zm-.47 5.13c.16-.02.31-.05.47-.11.16-.05.29-.14.43-.24l.03.03a1.43 1.43 0 0 1-.34.4c-.15.12-.3.21-.47.29l-.12-.36zm-3.99 2.42a3.59 3.59 0 0 1 .52-1.18l.29.26c-.15.13-.29.27-.42.43-.13.16-.23.32-.35.5h-.04z"/>
</g>
<path fill="#F6F6F6" stroke-linejoin="round" d="M81.6 80.13c.07.52.02 1.15-.32 1.8-.38.72-1.2 1.24-2.01 1-.84-.26-1.13-.81-1.06-1.6.32-.35.67-.6 1.02-.76.52-.22 1.1-.24 1.67-.3.24-.03.47-.08.7-.14z"/>
<g stroke="none" fill="#000">
<path d="M68.44 80.65a.39.39 0 0 1-.2.14c-.07.01-.14.01-.2-.01s-.13-.07-.17-.13c-.04-.07-.08-.13-.07-.24.1-.02.17-.02.22-.02l.15.02c.03.02.09.04.13.08l.14.16zm.18 1.11a.36.36 0 0 1-.13.21.32.32 0 0 1-.2.08.34.34 0 0 1-.23-.04.39.39 0 0 1-.17-.18c.08-.07.15-.1.2-.12l.15-.04.16.02c.06.01.13.02.22.07zm.36.94c0 .1-.03.17-.07.22-.04.05-.1.1-.16.12-.07.03-.13.03-.2.03a.39.39 0 0 1-.2-.1c.04-.1.08-.15.13-.2l.13-.08.15-.03c.07-.01.13 0 .22.04zm.58.78c.06.07.07.14.07.2a.26.26 0 0 1-.09.18.46.46 0 0 1-.18.08.26.26 0 0 1-.2-.1l.07-.18.05-.09.1-.04.18-.05zm4.5-7.38c-.03.11-.08.2-.14.27a.87.87 0 0 1-.18.2l-.22.14c-.09.04-.18.08-.3.09 0-.12.04-.22.1-.31a.65.65 0 0 1 .19-.22c.08-.07.15-.1.26-.15a.45.45 0 0 1 .3-.02zm.75-2.21c0 .11-.05.22-.12.3a.75.75 0 0 1-.25.2.78.78 0 0 1-.3.06.5.5 0 0 1-.3-.1 1.43 1.43 0 0 1 .23-.2l.2-.13.24-.1c.09 0 .18-.03.3-.03zm-1.28 5.25c-.23.01-.45 0-.67-.01l-.65-.04-.65-.06a13.91 13.91 0 0 1-.68-.09c.21-.11.43-.16.66-.2a3.03 3.03 0 0 1 1.37.1c.22.05.43.16.62.3zm-6.8-3.32c.1.12.15.24.2.34l.13.33.1.34.07.39a.82.82 0 0 1-.34-.25.94.94 0 0 1-.2-.35 1.36 1.36 0 0 1-.06-.4c0-.14.03-.27.1-.4z"/>
</g>
<line fill="none" x1="76.04" y1="88.25" x2="76.04" y2="90.02"/>
<g stroke="none" fill="#000">
<path d="M87.61 97.27a1.26 1.26 0 0 1 1.17.82c.06.16.08.34.03.51a2.8 2.8 0 0 0-.3-.35l-.29-.31-.3-.31-.3-.36zm-2.9-7.87c.02.11.07.18.1.24l.12.16.15.18c.05.08.1.16.14.27a.55.55 0 0 1-.32-.02.55.55 0 0 1-.26-.2.53.53 0 0 1-.12-.33c0-.12.06-.25.18-.3zm-1.92 1.52a.78.78 0 0 1 .16.22.65.65 0 0 1 0 .44.58.58 0 0 1-.16.22.78.78 0 0 1-.16-.22.65.65 0 0 1 0-.44.63.63 0 0 1 .16-.22zm-12 1.23.08.48.08.45.09.42.09.48a.92.92 0 0 1-.38-.36 1.27 1.27 0 0 1-.18-.48 1.74 1.74 0 0 1 0-.52c.03-.17.1-.34.22-.47zm8.63-11.53c-.27.35-.2.99-.02 1.35.04.1.11.2.23.2.08 0 .14-.05.2-.1.45-.47.56-1.09.53-1.68m-9.93-.08a2.15 2.15 0 0 1-.47-.29 1.25 1.25 0 0 1-.34-.4l.03-.03c.14.1.27.19.43.24.15.05.3.09.46.11l-.11.37zm4.07 2.07c-.12-.19-.22-.36-.35-.51-.13-.16-.28-.3-.42-.43l.29-.26a3.59 3.59 0 0 1 .52 1.18l-.04.02z"/>
</g>
<path fill="#F6F6F6" stroke-linejoin="round" d="M70.5 80.13c-.09.52-.03 1.15.3 1.8.38.72 1.21 1.24 2.02 1 .83-.26 1.13-.81 1.05-1.6a3.17 3.17 0 0 0-1.01-.76c-.52-.22-1.1-.24-1.68-.3a4.05 4.05 0 0 1-.69-.14z"/>
<g stroke="none" fill="#000">
<path d="M72.68 80.62c.27.35.2.99.02 1.35-.04.1-.12.2-.23.2-.08 0-.14-.05-.2-.1-.45-.47-.56-1.09-.53-1.68m5.89-1.88c.08.08.1.16.12.24v.23a.45.45 0 0 1-.1.21.39.39 0 0 1-.23.14.47.47 0 0 1-.06-.24v-.2a.46.46 0 0 1 .09-.18c.04-.07.09-.13.18-.2zm-.36 1.25c.06.1.09.18.1.28a.65.65 0 0 1-.01.27.65.65 0 0 1-.1.26.64.64 0 0 1-.22.2 1.17 1.17 0 0 1 .07-.76c.04-.08.08-.17.15-.25zm-2.8-1.25c.08.07.12.13.16.19a.69.69 0 0 1 .05.6.47.47 0 0 1-.2-.15.43.43 0 0 1-.09-.2c-.01-.08-.02-.15-.01-.23 0-.05.03-.13.09-.2zm.35 1.25a1 1 0 0 1 .14.25l.08.23.03.25c0 .1 0 .18-.04.29a.64.64 0 0 1-.2-.21c-.06-.08-.09-.17-.11-.26-.02-.1-.03-.18-.02-.27.03-.1.06-.19.12-.28zm-4.47-5.24c.05.06.08.1.1.16l.08.14.1.3.03.31-.01.3-.08-.28-.12-.26a3.25 3.25 0 0 0-.15-.22l-.1-.1a.39.39 0 0 0-.09-.06l.24-.29z"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 20 KiB

View file

@ -1,75 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:Belarus_knight.svg" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="cavalier" stroke-width=".405">
<path d="m122.945 63.53 2.565.945-2.565.945-23.22.675V62.99Z"/>
<path class="tertiary" d="m98.105 63.665.675-3.645h.945v9.045h-1.08l-.54-3.24"/>
<path d="M97.43 80.27c-2.97-1.08-7.155-4.59-7.155-4.59 0-.81.135-1.35.405-2.025 0-1.35.405-2.295.81-3.24 1.215.27 2.565.405 3.915.405-1.35 0-2.7-.135-3.915-.405l-.27-.135 2.43-3.78c-.54-1.08-.405-3.645.81-3.645.405-.54.675-.405 1.08-.405.27-.54.675-.54 1.08-.405.405-.54 1.215-.135 1.215.135l.135 1.485c1.485 1.08.135 2.16-.945 2.97-.81 1.215-1.215 2.565-1.215 4.185h-.405l-.54 2.025c.27.27.54.81.54 1.215 1.62.54 2.97 1.215 4.185 2.16l2.16-.54" stroke-width=".473"/>
<g stroke-width=".27">
<path d="m101.75 75.815-2.16.405c-.27.405-.54.945-.675 1.62l7.56-1.215-1.485-1.35"/>
<path d="M95.675 65.015c-.675-.54-1.08-1.485-1.215-2.16m2.16 1.89c-.81-.675-1.08-1.35-1.08-2.295m1.215.675c-.135-.405-.27-.54-.135-.945m-1.215 11.88c-1.08.54-2.43 2.025-2.835 3.24m-1.89-3.645c1.62.405 2.97.135 4.185-.81m5.805 3.105c-.27.54-.54 1.08-.675 1.755m1.215-1.755c.54.405.81.81 1.08 1.35"/>
<path fill="#eabfa2" d="M102.425 71.225c-.405.675-.945 1.35-1.215 2.025 0 .135.54.135.54.135l-.27.81h.27l.135.54c-.135.27-.27.54-.135.945.135.54 1.35.27 3.105-.405l-.135-.405.405-2.835c0-.27-.27-.54-.675-.675"/>
<path fill="#725a42" d="M101.75 73.385h.675c.54.27.81.81.945 1.215-.27-.135-.675-.405-.945-.405h-.945z"/>
</g>
<path d="M108.77 76.085c-1.08-2.025 2.565-5.4-.54-9.18-2.7 0-5.535.135-6.345 4.185.405.405 2.025-.135 2.97.405.675.405-.135 2.295-.135 3.51.405.675 1.08 1.08 1.89 1.485"/>
<g class="tertiary">
<path d="M94.325 65.15H91.76V63.8h1.89z"/>
<circle cx="90.275" cy="64.475" r="1.485"/>
</g>
<path d="M96.755 63.125c.675.27.945.54 1.485.81" stroke-width=".338"/>
<path d="M102.965 71.765c-.135 0-.135-.135 0-.135 0 0 .27.135 0 .135zm0-.405c.405.27.675.405.675.675l-.27-.135c-.405.27-.945 0-.675-.405l-.405-.135" stroke="none" fill="#000" fill-rule="evenodd"/>
<path d="M95.27 65.42c-.945 0-1.35-1.35-1.62-2.025m3.375 3.24c-1.62.135-1.89-.405-1.755-1.215.135 0 .405-.135.405-.405.27.135.54 0 .81-.27.27 0 .405 0 .675-.135 0-.27-.27-.405-.54-.675s-.27-.405.135-.81" fill="none" stroke-width=".338"/>
<path fill="#000" stroke-width=".135" d="M93.742 66.382h.572c.191 0-.286.286-.572.191"/>
<path fill="#000" stroke-width=".166" d="m96.958 64.525.475.524c.158.175-.502-.03-.652-.37"/>
<path fill="#000" stroke-width=".166" d="m97.126 64.39.69.15c.23.05-.425.266-.743.077"/>
<path class="secondary" d="M123.35 110.915c1.35-1.485 2.835-2.7 4.32-3.51-.135-.54-.54-1.35-1.08-1.62-.81.405-2.835.81-4.32 0 .675 1.62 1.08 3.24 1.08 5.13-.405 2.43-1.08 3.51-2.7 6.21l-1.62 1.755c-.27.27-.405.675 0 1.08l4.59 3.375c.405.27.54.81.135 1.485-2.025 3.24-3.78 6.75-4.32 10.53-.135.945.135 1.755-1.215 1.35l-1.35-.405c-.405.27-.675.54-.945.405.675 2.835-2.835 3.915-6.075 2.565l.135-.81c.81-2.835 2.43-3.375 4.455-3.645.81-.135 1.215-.135 1.62-.54.945-1.215 2.025-3.105 2.565-5.535.27-1.08.27-1.89-.405-2.295l-4.455-2.295 4.455 2.295c.675.405.675 1.215.405 2.295-1.755 1.755-2.97 3.915-4.185 6.075-2.025.27-3.645.81-4.455 3.645-1.35.27-2.835 0-3.645-.675.675-2.97 1.485-3.375 3.915-3.915.81-.135 1.35-.27 2.295-1.35 1.215-1.62 2.025-2.97 2.97-4.59.27-.54.27-.945 0-1.35l-1.755-2.43c-2.025-1.08-3.645-2.43-4.86-4.455-1.215-.81-1.62-1.89-1.755-3.375h-.675c-1.62.54-2.43-1.215-2.43-1.485-5.67-2.43-11.07-1.08-18.36-4.725-.405.81-.945 1.215-1.485.945-5.535-2.97-3.105-.135-9.18-5.265-.675-.54-1.35-.27-1.755.135l-2.43 2.835c-.54.54.135 2.025 0 2.16-.405.27-.675.27-.405.81.135.27.675-.135.675-.135 1.755 1.485 2.16 3.78.945 6.075-2.835-.54-3.915-1.485-4.05-4.05-.27-1.89-1.215-2.43-.945-4.86 0-.27.81-.945 1.755-2.16 1.215-1.35 2.835-4.05 3.51-4.86.27-.27.81-1.08 1.755-1.215 1.08-.135 1.215.54 2.43.945-1.215-.405-1.35-1.08-2.43-.945-.945.135-1.485.945-1.755 1.215-.405 0-1.08-.54-1.08-.54s-2.43 2.835-2.43 5.4c-.945 1.215-1.755 1.89-1.755 2.16-.27 2.43.675 2.97.945 4.86 0 0-.945 1.215-1.62 1.62-1.35-.81-1.89-2.025-2.16-3.105 0-1.215.405-2.565.54-3.375.135-.945 0-2.565.54-3.105 2.565-3.105 3.105-6.345 3.24-7.02.405-.81 1.485-1.755 2.835-1.89.675 0 2.7 1.215 5.265 1.755 0 0-.27 1.89-.135 2.97-.135-1.08.135-2.97.135-2.97.405-2.16 1.755-3.645 2.7-4.455.405-.54-.54-2.295 6.345-9.315-.54.27-1.35.405-2.025.27l-3.105 2.025c.81 1.89-4.455 2.025-1.35-.675l-.405-.675c-.675.405-1.08.81-1.485 1.755-.405 1.08-1.08.945-2.025-.54-.135-.27-.27-.405-.135-.81 1.485-5.13 4.59-8.1 6.885-10.53v-1.35c.675-.405 1.755-.81 3.24-.81.405 0 1.08.135 1.08.135s-.675-.135-1.08-.135c.27-.675.81-1.215 1.62-1.485v.81l1.08-.81c.135.54.135 1.35-.135 2.025 6.75 2.16 9.18 8.1 9.855 13.5.27 5.4.675 10.8 9.585 10.935 8.64-.81 11.61 5.265 14.445 5.4 2.16.27 8.37-6.21 12.42-1.89 4.725 5.805-1.62 12.285-9.045 14.985-1.215.405-3.105 2.16-1.35 3.915-1.755-1.755.135-3.51 1.35-3.915-.945 2.7 1.08 2.16 2.295 1.89-3.24 3.24-6.21 2.565-6.75-1.62 1.62-2.7 2.295-3.78 2.7-6.21z" stroke-width=".473"/>
<g fill="#000">
<path stroke-width=".135" d="m80.42 87.02-.405-.405c-.135-.135.405 0 .54.27"/>
<path stroke-width=".135" d="m66.879 109.517-.573-.002c-.19-.001.288-.286.574-.19"/>
<path stroke-width=".186" d="m67.514 107.867-.891.003c-.297.001.445.35.891.23"/>
<path stroke-width=".18" d="m70.338 111.1-.996.116c-.332.038.603.222 1.066.07"/>
<path stroke-width=".181" d="m70.704 111.886-.74.682c-.248.227.225-.604.644-.857"/>
<path stroke-width=".157" d="m113.056 134.939-.54-.404c-.181-.134.042.442.389.563"/>
<path stroke-width=".196" d="m117.059 136.271-.668-.507c-.223-.169.052.555.48.708"/>
<path stroke-width=".173" d="m71.376 101.231.452-.576c.15-.193-.514.062-.644.426"/>
</g>
<g stroke="none" fill="#000">
<path d="M76.1 86.21c.27.27.81-.54.675-.675s-.945.405-.675.675zm.81-1.215c.81.405-.405 1.89-.945 1.485-.675-.54.54-1.35.945-1.08 0-.405-.54-.27-.675-.135.135-.27.405-.405.675-.27z"/>
<path d="M82.04 79.055c.135-.405-.675-.54-.945-.135-.135.405.675.54.945.135zm-.135-1.215-.405.54c.81-.135.81.405 1.755.405-.135.135-.405.27-.81.135 0 .54-.81.945-1.485.54 0 .27-.135.405-.27.54.135-.81 0-.81.135-1.08s.81-.945 1.08-1.08z"/>
<path d="M126.32 105.65c5.4-2.565 8.775 1.35 1.755 6.075 4.185-2.025 5.13-3.915 4.455-6.615 1.755 4.455-3.51 6.885-6.48 7.425 1.89-.945 4.455-2.7 5.265-4.725 1.215-3.24-2.97-2.7-4.725-1.755m-7.155 16.065c.54.81 1.62 1.485 1.89 2.295.945.27.945.54 1.215.81-.135-.675-.27-.675-.945-1.08-.54-.81-.945-1.215-2.16-2.025zm-4.32-2.97c3.51-.135 3.24-2.16 4.86-3.375-.945-.135-1.89 2.835-4.86 3.375zM76.64 101.33c1.62.945 5.13 1.35 6.48 1.755.405.135.945.945 1.215 1.755.135.405-.945-1.215-1.485-1.485-1.485-.405-3.78 0-7.155-2.025m9.72-16.74c1.215-1.08 2.565-2.16 2.97-5.13.405 1.35-.27 3.105-2.565 5.535zm-.81 10.26c2.835-.675 5.67-1.35 9.045-.675-3.105-1.215-6.48-.54-9.045.675zm-7.425 11.07c.675.54 1.62 1.215 2.565 1.89.81.405 2.43 1.08 2.565.405-1.215-.27-1.89-.405-2.7-.81-2.43-1.755-2.43-1.62-2.43-1.485zm30.24 10.8c-.135-1.485.405-4.05-1.35-5.13.405.405.81 1.89.81 3.645-1.89-.135-3.51-1.08-3.51-.81 0 .135 1.755.945 3.51 1.08v.675m-21.33-6.345c.405-.945.405-1.485 1.485-2.025.405-.135-.945 1.35-1.08 2.16"/>
</g>
<g stroke-width=".338">
<path d="M126.59 105.65c2.295 1.89 1.08 4.185-1.35 6.48-2.16 2.16-4.455 5.13-2.43 8.505M78.665 85.67c.945-.81 1.89-.54 2.025-.405-.405.405-.945.81-1.62 1.215m28.62 48.33c.27.81 2.16 1.62 3.375 1.485m.135-.135c1.215 1.215 3.78 1.755 4.86 1.485M68.54 115.64c2.16-.945 2.43-2.97 2.025-3.915m-6.345.405c1.08-.135 1.89-.54 2.835-1.215m14.31-34.56c1.485-1.89 2.7-1.89 4.185-1.755 4.455.81 7.965 4.185 9.45 8.775 1.485 4.455.27 8.64 2.025 9.99.675.54 1.89 1.35 2.295 1.62m-15.795-20.25c1.08.675.405.81 1.89-.135" fill="none"/>
<path class="secondary" d="M85.55 75.68c-.135-.81.135-1.89 2.43-3.78-.135 2.835-.405 2.295-2.43 3.78z"/>
</g>
<g class="tertiary">
<path d="M76.91 97.685c7.695 1.485 12.555-.135 17.955-1.35l-.675 2.16c-6.21 1.89-12.015 2.295-17.55.945zm7.02-12.69c-2.43-.81-2.97-.945-6.48-3.78l-.54.945c1.08 1.08 2.97 2.43 5.265 3.78zm3.105-9.99c-.54 2.565-3.51 6.21-5.535 9.045l.945.405c2.16-2.7 5.13-6.615 5.535-9.045zm-4.59.27c2.16 1.755 4.725 3.24 3.915 8.64l1.08-1.35c.135-2.565.405-4.725-3.915-7.83-.405.135-.675.27-1.08.54zm40.77 36.315c-5.13 2.16-11.34-1.62-18.495-7.02l.27-1.62c5.265 3.78 12.96 9.855 18.225 7.02zm-7.155-11.205c-.405 5.4-2.565 10.53-2.835 11.745-.27.675-.27 1.215-.135 1.755.54-.27 1.08-.54 1.35-1.215 1.485-3.51 2.565-6.75 2.97-11.34zm-5.94-2.025c.135 5.13-2.16 9.855-2.43 11.07-.27.675-.27 1.215-.135 1.755.54-.27 1.08-.54 1.35-1.215 1.485-3.51 2.835-7.02 2.7-11.34z" stroke-width=".27"/>
<path d="M105.26 101.465c-3.51 14.445 7.02 22.545 1.755 30.24-2.295-3.78-3.645-7.425-4.59-11.745h-.945c1.215 5.94 4.185 10.26 4.59 12.96-5.67-1.215-7.965-7.425-9.045-12.825h-.81c.945 5.265 3.915 9.99 4.59 12.15-7.83-.945-10.53-14.445-10.8-18.495-.27-4.86 1.89-10.125 4.32-15.39M81.5 86.075c.135 2.025 0 4.185-.135 6.48 5.13.54 10.665-.54 16.335-1.755v-.27c-5.4.135-10.935.54-16.2 0h1.215c.135-1.755.135-3.375-.135-4.995"/>
<path d="M107.555 96.47c-2.43-1.35-5.805 3.105-9.585-4.995-.81 1.755-2.025 2.97-2.97 4.725-4.455 8.235 11.745 10.935 12.555.27z" stroke-width=".473"/>
<g stroke-width=".338">
<circle cx="86.09" cy="78.245" r=".945"/>
<circle cx="109.31" cy="106.865" r=".945"/>
<circle cx="114.71" cy="109.97" r=".945"/>
</g>
<circle cx="81.608" cy="85.049" r="1.134"/>
</g>
<g>
<path d="M106.61 96.065c-2.565 4.185-8.235 4.86-11.61 10.26.27 2.7-.675 4.32-2.7 4.995l-2.97 3.105v3.24c-2.7-.27-4.05-1.89-9.315-.81 1.485-3.375 4.185-3.51 6.885-3.51l4.05-7.695c-.27-.675-.675-1.485-.405-2.43.54-.54 1.485-.81 2.16-.945 2.43-7.695 7.02-7.695 7.29-10.665h1.08" stroke-width=".54"/>
<path class="tertiary" d="M85.145 113.48c-.675.945-1.215 1.89-1.89 3.375l2.97.675c.405-1.62.405-2.835.27-3.78m4.455-8.37-4.725 6.345.945.81"/>
<path d="M99.05 87.155c-1.08.135-1.89.27-2.025.81s.54.54 1.35.54c-.81 0-1.485-.135-1.485.54 0 .405.27.54 1.485.54-.945 0-1.35 0-1.35.54 0 .27 0 .405 1.485.405-.54 0-.945 0-.945.54.135.675 1.08.54 1.755.54h1.89"/>
<g stroke-width=".27">
<path d="m86.63 114.83 8.505-1.485v.135l-8.64 2.43m7.83-4.455c.405.54.675.945.81 1.35.675 0 1.485 0 2.16.135-.54.405-1.35.945-1.89 1.08.135.405 0 .945-.135 1.755-1.08-1.08-1.485-2.97-.945-4.32z"/>
<path d="M91.085 105.65c1.485-.405 2.7-.135 3.78.675m-2.025-3.915c.675 1.215 2.025 1.62 3.78 1.62m7.83-5.67c.405-1.89-.135-2.97-1.485-3.24-2.97 2.7-6.075 5.94-8.235 8.64m-.945 1.89c-1.89 5.67-3.78 4.32-5.4 8.91m-7.02.27c0 .675.135 1.215.405 1.755m.675-2.43c-.135.675 0 1.485.675 2.295m.27-2.565c0 .675.135 1.08.54 1.62m14.58-28.35c-.27 2.295-.135 3.915.675 4.455m.27-3.24c0 1.755 0 2.7.81 3.24" fill="none"/>
</g>
<g class="tertiary">
<circle cx="85.982" cy="112.819" r="1.228" stroke-width=".439"/>
</g>
<g stroke-width=".473">
<path class="tertiary" d="m98.78 92.96 3.915-.675c1.485 14.175 3.915 23.895 2.16 26.865-2.97-2.295-3.375-12.285-6.075-26.19z"/>
<path d="m99.455 97.55 3.645-.675m-3.915-.675 3.78-.675" stroke-width=".338"/>
</g>
</g>
<g class="tertiary" transform="rotate(-9.4 190.4315 -132.895)">
<path d="M63.815 60.02h17.28c0 8.775.27 16.2-8.64 20.655-8.91-4.455-8.64-11.88-8.64-20.655z" stroke-width=".54"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 21 KiB

View file

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/5/50/Neuhoff.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="chain" stroke-width=".36">
<path d="M99.272 116.408c-2.844 0-5.616-1.416-7.776-3.996-2.508-2.976-3.9-7.032-3.9-11.4s1.38-8.424 3.9-11.4c2.172-2.58 4.932-3.996 7.776-3.996s5.616 1.416 7.776 3.996c2.508 2.976 3.9 7.032 3.9 11.4s-1.38 8.424-3.9 11.4c-2.172 2.58-4.932 3.996-7.776 3.996m0 8.232c10.992 0 19.908-10.584 19.908-23.64s-8.916-23.64-19.908-23.64S79.364 87.944 79.364 101s8.904 23.64 19.908 23.64z"/>
<path d="M90.236 79.94c-1.716-2.736-2.652-6.108-2.652-9.696 0-2.484.444-4.86 1.284-6.996a44.67 44.67 0 0 1-7.788-2.664 27.298 27.298 0 0 0-1.74 9.66c0 5.88 1.812 11.244 4.8 15.384 1.704-2.34 3.768-4.284 6.096-5.688z"/>
<path d="M117.44 60.584a45.015 45.015 0 0 1-7.788 2.664c.84 2.136 1.284 4.512 1.284 6.996 0 4.38-1.38 8.424-3.9 11.4-2.172 2.58-4.932 3.996-7.776 3.996-.18 0-.36 0-.528-.012-2.664.168-5.208 1.56-7.248 3.972-.456.54-.864 1.116-1.248 1.716 2.712 1.632 5.772 2.568 9.024 2.568 10.992 0 19.908-10.584 19.908-23.64a27.03 27.03 0 0 0-1.728-9.66z"/>
<path d="M90.248 122.072c-2.328-1.416-4.404-3.348-6.096-5.688-2.988 4.14-4.8 9.504-4.8 15.384 0 3.444.624 6.708 1.74 9.66a45.015 45.015 0 0 1 7.788-2.664c-.84-2.136-1.284-4.512-1.284-6.996 0-3.588.924-6.948 2.652-9.696z"/>
<path d="M99.272 108.128c-3.252 0-6.312.924-9.024 2.568.372.6.792 1.176 1.248 1.716 2.028 2.412 4.584 3.816 7.248 3.972.18-.012.348-.012.528-.012 2.844 0 5.616 1.416 7.776 3.996 2.508 2.976 3.9 7.032 3.9 11.4 0 2.484-.444 4.86-1.284 6.996a44.67 44.67 0 0 1 7.788 2.664 27.298 27.298 0 0 0 1.74-9.66c-.012-13.056-8.928-23.64-19.92-23.64z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -1,13 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/0/05/Hussite.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="chalice" stroke-width=".36">
<path d="M104.52 109.64c-1.08-3.84-.84-5.52-.84-12.72h-7.44c.12 7.08.36 8.88-.72 12.72-3 5.76-15.84 8.04-15.84 16.92 0 9.48 9.12 15.24 20.28 15.24s20.4-5.76 20.4-15.24c0-7.32-13.44-11.04-15.84-16.92z"/>
<path d="M70.44 66.8C72.36 87.44 95.4 87.56 95.4 97.4v4.56h9.24V97.4c0-9.84 22.44-9.96 24.96-30.72z"/>
<path d="M131.28 65.72c0 2.28-14.04 3.96-31.08 3.96s-30.96-1.92-30.96-4.08c0-.48-.24-2.16.84-2.52 4.2-1.56 17.04-2.64 30.48-2.64 13.08 0 25.2 1.08 29.76 2.64 1.2.36.96 2.16.96 2.64z"/>
<g class="secondary">
<path d="M96.84 101.12c0 2.64-.48 4.2-2.04 4.2s-3.24-1.44-3.24-4.2c0-2.4 1.56-4.2 3.24-4.2s2.04 1.56 2.04 4.2zm6.48 0c0 2.64.48 4.2 2.16 4.2s3.24-1.44 3.24-4.2c0-2.4-1.56-4.2-3.24-4.2-1.56 0-2.16 1.56-2.16 4.2z"/>
<ellipse cx="100.08" cy="101.84" rx="3.24" ry="4.44"/>
</g>
<path fill="none" stroke-width=".42" d="M102.24 95.12c1.32-2.64 2.64-5.16 7.8-7.8m-12.12 7.8c-1.32-2.64-2.64-5.16-7.8-7.8m23.28 33.6c-4.56-4.08-8.4-8.04-8.88-11.64m-18.24 11.64c4.44-2.88 8.28-6 9.36-11.4M81.12 127.4c3.84 15.48 33.6 15.48 37.8.12M120 63.56a190.18 190.18 0 0 0-38.76 0m-7.68 1.32c16.8 3.12 33.6 3.12 53.4-.12"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,15 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/c/cb/M%C3%BCllenheim_Zurich.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="cinquefoil" stroke-width=".496">
<g>
<path d="M139.71 89.644c-.532-1.637-6.53-4.768-9.714-9.269-2.963-4.188-5.29-4.576-7.136-3.977-6.556 2.13-7.388 14.31-13.58 16.324-.323.104-.819-.026-.819-.026s-.508-.14-1.014-.465c-.448-.375-.723-.794-.723-.794s-.275-.439-.275-.775c0-6.512 11.327-11.067 11.327-17.96 0-1.942-1.087-4.035-5.987-5.559-5.265-1.637-10.097-6.374-11.817-6.374s-6.987 4.851-11.886 6.374-5.987 3.617-5.987 5.559c0 6.893 11.327 11.448 11.327 17.96 0 .296-.385 1.038-.632 1.292a4.85 4.85 0 0 1-1.261.796c-.272.066-.563.07-.868-.03-6.193-2.01-7.025-14.191-13.58-16.322-1.846-.6-4.173-.21-7.137 3.977-3.184 4.501-9.182 7.634-9.714 9.27-.53 1.635 2.455 8.143 2.39 13.273-.065 5.13 1.59 6.812 3.435 7.412 6.556 2.13 14.388-7.236 20.582-5.223.28.09.87.69 1.038 1.01.313.72.274 1.532.274 1.532s-.023.46-.21.718c-3.826 5.267-15.668 2.294-19.72 7.871-1.14 1.572-1.49 3.904 1.576 8.016 3.298 4.42 4.422 11.093 5.814 12.102 1.39 1.012 8.505.184 13.363 1.83 4.858 1.647 6.969.593 8.11-.977 4.052-5.576-2.434-15.919 1.393-21.188.162-.222.562-.462.562-.462s.514-.195 1.131-.222c.618.027 1.131.222 1.131.222s.4.24.562.462c3.826 5.27-2.66 15.612 1.392 21.188 1.141 1.57 3.251 2.624 8.11.977 4.86-1.646 11.972-.818 13.363-1.829 1.392-1.01 2.517-7.684 5.815-12.102 3.066-4.113 2.716-6.445 1.576-8.017-4.051-5.576-15.893-2.604-19.721-7.871a1.574 1.574 0 0 1-.295-.81s.047-.719.36-1.44a4.006 4.006 0 0 1 .364-.573 1.552 1.552 0 0 1 .674-.437c6.193-2.012 14.025 7.353 20.582 5.223 1.845-.6 3.5-2.282 3.435-7.412-.064-5.13 2.921-11.638 2.39-13.274zm-36.709 3.587a9.803 9.803 0 1 1-6.058 18.646A9.803 9.803 0 0 1 103 93.231z"/>
<g fill="#000">
<path d="m106.759 111.7 8.638 12.069-8.937-11.848z"/>
<path d="m110.6 98.92 14.441-4.622-14.323 4.975z"/>
<path d="m93.411 111.92-8.933 11.849 8.633-12.07z"/>
<path d="m89.193 99.388-14.358-5.09 14.478 4.738z"/>
<path d="m99.789 91.42.094-15.402.278 15.4z"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -1,34 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="cock" stroke-width=".4">
<path d="M116 112.6c1.3.8 2.1 2.2 2.4 3.7.2 1.5-.1 3-.5 4.5 1.2-.1 2.3-1 3-2.2.5-1.1.6-2.5.4-3.7-.2-1.3-.7-2.5-1.2-3.7"/>
<path d="M121.2 110a9 9 0 013.2 3.1c.8 1.3 1.1 3 .7 4.4-.3 1-1 2-2 2.7.3-1.6.1-3.4-.8-4.8-.4-.7-1-1.1-1.4-1.8-.5-.7-.7-1.7-1.2-2.4"/>
<path d="M121.6 109a8 8 0 013.4 1c1 .8 1.9 1.8 2.1 3 .2 1 0 2-.5 2.7a5 5 0 00-2.2-3.2c-.6-.4-1.2-.4-1.7-.7l-1.7-1.4"/>
<path class="secondary" d="M81.5 124.3s-.4-1-1.3-.8c-.9.3-.8.9-.8.9v.6c0 .9-.6 1-1.2 1l-.4-.1c-.2 0 .5 1.2 2.1.8 1.8-.5 1.6-2.4 1.6-2.4zm-9.7-4s1 .5.7 1.4c-.4.8-1 .7-1 .7H71c-.8 0-1 .5-1 1.1l.1.5c0 .2-1.2-.6-.7-2.2.5-1.8 2.5-1.5 2.5-1.5zm-.8-4.9s.9.8.2 1.5-1.1.4-1.1.4l-.6-.3c-.8-.3-1.2.1-1.3.7l-.1.4c-.1.2-.9-1 .2-2.3 1-1.4 2.7-.4 2.7-.4zm3.7-2.7s0 1.2-1 1.2c-.8 0-1-.4-1-.4l-.1-.6c-.4-.8-1.1-.8-1.6-.5-.2.1-.2.3-.4.3s0-1.3 1.8-1.6c1.8-.3 2.3 1.6 2.3 1.6z"/>
<path class="secondary" d="M92.8 115.1c-.3.6-3 2.4-4.1 2.7-3.4 1-5.7.4-8.8.2-.6 0-1.1-.4-1.7-.7-.9-.7-1-1.6-1.5-2.3-.1-.3-.5-.5-.6-.5-.7-.2-.9-1-.8-1.2.4-.6.2-1-.2-1.4-.5-.4-1-.2-1-.2s.5.5-.5 1.2l-.4.2-.5.1c-.2.2-.3.6.1 1 .3.3.7.3 1 .2 0 .5.3.9.8 1.1l.4.3v.5c0 .3.6.6.7.8-.4-.2-1-.3-1.5-.7-.3-.3-.6-.6-1-.7h-1l-.1-.5-.3-.4c-.4-.3-1.5-.5-1.8.2v.1c.5.2.6 1.3-.1 2-.1 0-.2.3-.1.4 0 .3.5.7 1 .8.6 0 .8-.4.9-.5h1.2c.6 0 1 .5 1.4.9.5.4 1 .5 1.6.6-1.2.6-1.2 0-2 .2l-.7.3-.4.3s0-.5-.7-.7c-.7-.3-1.5.2-1.6.7v.3c.9 0 1.4 1.5 1 2-.1.1 0 .5.7.6.3 0 .7 0 1-.5.3-.3 0-.3.3-.7.3-.3 1-.1 1.4-.1.8 0 1.2-.8 1.7-.9.5-.1.5-.1.8.2.3.4.8.2 1 .3.5 0 1 .4.8.7-.4.6.2.9.1 1-.2.2-.8.4-.7 1.2.2.7.7.6.7.6s.9-1 2.1 0c.2.1.7-.2.5-1.1-.1-.6-.7-.6-.7-.6s0-.6-.4-1c-.3-.3 0-.3 0-.7 0-.3-.5-1-.5-1a11 11 0 014.4.7s0 1.8.8 3c1 1.4 2.3 1.7 3.5 1.6a5 5 0 01-2.3-3.8c0-1 2.2-1.7 3.2-1.8 2.6-.5 3.5-.3 5.7-.5"/>
<path d="M94.5 106.8c-1 1.6-1.2 3.7-2.2 5.2-.4.8-1 1.4-1.3 2.2-.3.8-.5 1.5-.6 2.3.6 0 1.4.2 1.8.7.2.3.3.8.6 1l.6.4c.3.3.3.8.2 1.3h1.1l1.8-.6c1-.2 2.7-1.3 4.2-2.4m17.9-12.4c1.6-.5 3.2-.8 4.8-1 2.9-.4 5.1.2 6.8-1.8.4 1-.4 2.3-1.1 3a14.9 14.9 0 01-6.5 3.4c-3.5 1-7.2 2-10.8 1.8"/>
<path d="M110 105.5c4.5-.5 9.8-4.1 13-6.2 1.4-1 2.8-1.7 4.3-2.5 1.4-.7 3-1 4.4-1.6 1.1-.5 2.5-1.2 3-1.7a4 4 0 01-.5 1.8 36 36 0 01-16 11.3c-2.4.7-6.5 1.5-8.4 1.6"/>
<path d="M112.4 104.8c4.8-2 9.5-8 12.4-11.5 1.2-1.5 2.5-2.9 4-4.2 1.3-1.3 2.9-2.3 4.4-3.4 1-.9 2.1-2 2.7-3 .3.7.2 1.5 0 2.2-.7 3.4-2.7 6.6-4.8 9.2a41.1 41.1 0 01-18 13.8"/>
<path d="M111 104.4c5-3.6 9-11.6 11.4-16.2 2.8-5.6 8-9.4 10.8-13.9.1 5-1.2 8.7-3.4 13.2-2.2 4.6-4.7 9-8.1 12.6a64 64 0 01-9.1 7.6"/>
<path d="M112 103.5c4-4.8 5.9-13.7 7-19 1.3-6 3.9-10.4 6.6-16 1.4 4.8 1.4 8.5.5 13.5-1 5-2.3 10-4.7 14.6a62.7 62.7 0 01-7 9.8"/>
<path d="M111 99.4c2.5-4.7 2-11.5 2.2-16.8.3-6.3 2-11 4-17 2.6 4.5 3.5 8.1 3.4 13.3s-1.1 10.1-2.4 15a27 27 0 01-5.8 11"/>
<path class="tertiary" d="M87.6 72.4a8 8 0 004-1.4 6.1 6.1 0 002.1-3.6c.2-1.1 0-3.7-1.2-4.7-.2 1.2-1.3 3-2.5 3.5-1.3.5-1.8.1-1.8.2l.8-1.1c.4-.4.8-.7 1-1.1.2-.5.2-1.5-.2-2-1.6 1-2.6.6-3.8 1-1.1.4-1.5 1.3-2.1 2.2-.6-.6-.5-1.3-.4-2 0-.6 0-1.2-.4-1.5-.7 1-1.8 1-2.6 1.6-.8.7-1 1.5-1.3 2.5-1.3-.1-1.8-1.3-2.3-1.8-.2-.2-.4-.4-.8-.4v1.4l-.3 1.5c0 .7.3 1.6.3 1.6-1 0-1.8-.2-2.7-.7H73c0 .8.2 1.6.8 2.2 1 1.1 2 1.4 4.7 1.4"/>
<path d="M93 92c0-1.6.8-3.6 1-5.9.2-2.9-1-6.2-2.2-8.9-1-2-1.6-3.9-2-4.8-.1-.2-.7-1.3-1.6-2-1.4-1.1-2.5-1.8-4.3-1.8-1 0-2.5 0-3.6.5-1 .5-2.2 1.8-2.2 2.3-.5.5-.7 1.8-.5 2.5.2.7.7 1.3 1.3 1.8l1.7 1.3c.4.4.9.9 1 1.4v1.1l-.1 1.1c-.1.8-.5 1.6-.2 2.3l-.8-.3c-1.3 2.5.3 1.3-1.7 3.3 0 0-1.2 2-2.5 3.1-1.8 2-7.3 5.1-6.6 11.5a9.7 9.7 0 002.6 5.7c2.7 5 6.3 4.6 8.4 5.5 4 3 10 2.4 13.7 2.4 2.1 0 3.7 1 5.8.6l10.6-.6c1.1-.2 3.1-.3 4.1-.7 1.4-.5 1.6-.7 2.2-.8 2.3-.1 5-1.8 5-1.8l2.6-.1c1.4-.2 2-.4 2-.5.3-.7-.8-1.8-1.5-1.8 0-.6-.4-1-.9-1.5s-1-.6-1.6-.6c.2-.7-.4-1.5-.8-1.9-.5-.5-1.5-.6-1.5-.6-.2-1.7-3.4-2.9-5.6-3.6l-5-2c-.5-.2-1.7-.6-2-1a37 37 0 00-9-4.2c-2.8-.7-4-1-5.8-1z"/>
<path class="tertiary" d="M81.4 79.5c.2 2.4-3.6 2.6-4.3 2.7a3 3 0 00-2.2 1.6c-.4.9-.3 2.1.5 2.7 2.1 1.4 4-.8 5.3-2 .8-.9 1.4-3.5 1.7-4.4"/>
<path class="tertiary" d="M81.7 80.5c0 1.2-1 1.4-2 2.6-.5.4-1.3 1.7-1.3 2.7 0 .5 0 1.1.3 1.7.3.8.8 1.3 2 1.5.6.2 1.3.2 2 0 1.8-.3 2.8-2.2 2.6-4-.1-1-.4-2-1.1-3-.7-1-1.4-1.5-1.7-2.9"/>
<path fill="#fff" d="M83.4 72.2c.6 0 .7.4.7.8 0 1-.5 1.8-1.5 2-1 0-1.7-.8-2-1.9 0-.3 0-.8.4-.9 1.1-.4 1.8-.2 2.4 0z"/>
<path class="secondary" d="M81.7 80.5c.7.3.9-.8.8-1.4 0-.3-.3-1-.6-1.3 0 0 0 0 0 0-.2-.2-.2-.3-.2-.5 0-.5-.5-1-1-1.3-.2 0-.2-.1-.3-.3l-.2-.4c0-.3-.3-.7-.6-1-.3-.1-.7-.2-.8-.5l-.1-.4c0-.3-.2-.5-.4-.7a.8.8 0 01-.3-.5l.1-.8-1.5.1c-.6.1-1.4.4-1.8.8l-.2.2-.5.2C73 73.1 71 74.4 71 76c.2-.2 1-.3 1.6-.5.6-.2 1.6-.2 2.3-.2 1 .1 1.5.4 2.5.6.6 0 1.2.4 1.8.6 1 .5 1.4.9 1.9 1.6v.4c-1-.3-2-1-4.2-1s-3.5.4-4.5.7c0 .1 0 .2.2.3h1.1c1.6-.1 3.7.2 5.2.7.7.4 2.1.9 2.9 1.4zm25.6 52.8s-1-.3-1.4.6c-.3.9.2 1.1.2 1.1l.6.4c.7.5.4 1.1 0 1.5l-.3.3c-.1.2 1.3.3 2-1.3.6-1.6-1-2.6-1-2.6zm-12.1 4.4s1.2-.1 1.3.8c.1 1-.4 1-.4 1l-.6.3c-.7.5-.6 1-.4 1.5l.4.4c0 .2-1.4 0-1.7-1.6-.4-1.8 1.4-2.4 1.4-2.4zm-2.3-4.3s1.1.3.9 1.2c-.2.9-.8.9-.8.9h-.6c-.9 0-1 .7-.9 1.2 0 .3.2.4.2.5 0 .2-1.3-.4-1-2 .2-2 2.2-1.8 2.2-1.8zm1.9-4.2s.6 1-.2 1.5-1.1.1-1.1.1l-.5-.5c-.7-.4-1.3-.1-1.6.4l-.2.4c-.1.1-.6-1.2.7-2.2 1.5-1 2.9.3 2.9.3z"/>
<path class="secondary" d="M102.1 118.7c.5.4 1.2 3.6 1 4.7-.2 3.5-.4 5.2-2 7.7-.3.3-.4.4-1 .4-1.1-.2-1.6-1-2.4-1.3l-.8-.1c-.8.1-1.3-.5-1.3-.8 0-.6-.4-.8-1-1-.5-.1-.8.3-.8.3s.6.2.1 1.2l-.2.4-.4.5c-.2.2 0 .6.6.7.4.1.7-.1.9-.2.4.3.8.5 1.3.5l.5.1.3.4c.2.2.8.3 1 .3-.5 0-1 .3-1.7.2l-1.1-.2c-.5.2-.7.3-1 .6a1 1 0 00-.3-.4l-.5-.2c-.5-.1-1.5.3-1.4 1 0 0 0 0 0 0 .5 0 1.2.9.9 1.9l.1.5c.2.2.8.3 1.3 0 .5-.2.4-.6.5-.8.3 0 .7-.5 1-.6.5-.2 1.2 0 1.7.1.7.2 1.1 0 1.7-.3-.4.5-.8 1-1.4 1-.4 0-.7.3-1 .6l-.3.6-.3.4s-.3-.3-1-.2c-.7.1-1.1.9-1 1.4l.2.2c.7-.4 1.8.7 1.7 1.3 0 .1.4.5 1 .2.3-.1.6-.4.6-.9v-.7c0-.5.8-.7 1-.8.4-.2.7-.5.9-.8.3-.4.3-.7.7-1 .3-.4.9-.3 1.5-.3.7-.2.5-.8 1-1.2 0 0 .7-.7 1-.2.3.6 1.3.3 1.3.4.1.3-.1 1 .6 1.3.6.3 1-.2 1-.2s-.4-1.3 1.2-1.7c.1-.1.2-.8-.7-1-.5-.3-.9.2-.9.2s-.4-.5-1-.3c-.4 0-.3-.2-.6-.3-.2-.2-1-.2-1-.4.2-1.3 1-2.4 1.2-3.7.8.4 2 .7 3.2.4a3.6 3.6 0 002.7-2.7 5 5 0 01-4.3.8c-1-.3-1-2.3-.8-3.3.4-2.6 1.2-3.7 1.7-5.8"/>
<path d="M95.6 113.2c1 1.5 2.8 2.6 3.7 4.2.5.8.9 1.5 1.5 2.2.5.6 1.1 1 1.7 1.5.4-.5.8-1.1 1.4-1.2l1.2-.1.6-.4c.4-.1.9.1 1.2.4l.5-1 .3-1.8a8 8 0 000-3.5"/>
<g fill="#000" stroke="none">
<path d="M75.5 117.3c-.4-.2-.9 0-1.3.1-.4.4-.3-.2-.3-.4s.4 0 .6-.1c.3 0 .6.2 1 .4zm2.5 4.1c.3-.3 1-.7 1.3-.5 0 .2.1.6-.1.5h-1.3.1zm-8.2-7l.1-.8c.1.1.6.1.4.3l-.4.5zm4.2.6l.7.6c.3 0 .6 0 .8.3.4.3.3.1-.1 0-.6.1-1.2.1-1.5-.3-.3-.1-.3-.3-.1-.4 0 0 .2-.4.2-.2zm-.4-3.6c-.3.3-1 .7-1.2.5.5 0 .5-1 1-.7l.2.2zm4.4 7.1c.2-.3.2-.6.5-.8.3-.3.1.1.1.3 0 .2 0 .5-.2.4l-.4.1zm-6.9-.5l-.1 1.2c-.2-.2-.2-.8-.5-1l.6-.3v.1zm11.5.9c0-.5.6-.7 1-1 .2 0 .4-.2 0 0-.4.3-.3 1-.6 1h-.4zM90 114l.7-1.6h.8c-.4.4-.6 1-1 1.5-.2 0-.3.2-.5.1zm2.6 2.5c.1-.3.5-.4.8-.5.4-.2 1 0 1.4-.1 0 0 .3 0 .1.1-.3.3-.7.3-1 .5h-1.3zm36.8-29.1c-.8 1.3-1.8 2.5-2.7 3.8a67.9 67.9 0 01-8.6 9.8l-.3-.4c3.5-3.2 6.7-6.7 9.5-10.5.7-.9 1.3-1.9 2.1-2.7zm-3.2-4.6c-1 2.2-3.8 6-5 8v-.5c1.2-2 3.7-5.4 5-7.5zm-4.2-5a74.4 74.4 0 01-7.2 21.2l-.5-.2c4.2-6.7 5.6-13.5 7.6-21zM76.4 67a6 6 0 012.4-1.4c1.7-.7 3.7-.7 5.4 0 .9.4 1.5 1 2.5 1v.1c-.5 0-1 0-1.4-.3l-1.2-.5c-.9-.3-1.7-.4-2.6-.4-1.3 0-2.6.3-3.8.8l-1.3.6zm38.8 8c-.3 2.1-.4 4.2-.4 6.4 0 2.1 0 4.3-.2 6.4-.3 3.5-1.4 6.9-3.2 10l-.4-.4c1.8-3 2.9-6.2 3.3-9.7.2-2.1.2-4.3.3-6.4 0-2 .2-4.2.6-6.3z" transform="translate(2 2)"/>
<path fill="none" stroke="#000" d="M86 104.6c1 2.8 3.6 4.2 7 5 4.6.8 9.4-.6 10-.4 2.2.6 5.7.6 7.8 1.1 5.3 1.2 8.4.8 11.3.6"/>
<path d="M84.1 107c.6.6 2 2.6 1.4 2.6-1-.6-1.3-1.6-1.4-2.6zm2.2 1.8c1 .2 2.2 2.2.6 1.1-.3-.3-.5-.7-.6-1.1zm19.1-10.4c4.2 1.6 8.4 2.2 12.8 3.2v.5c-4.5-1.2-8.8-1.8-12.8-3.7zm-1.8 2.6c5.9 2 11.5 2.5 16.9 3l-.2.6a52 52 0 01-16.7-3.6zm-1.7 2.6c7.6 2 14 2.8 21.2 2.6v.5c-7.4 0-15-.8-21.2-3.1zm-12.5 6.7c-1.1.3-1.3-2-.3-.7 0 .1.6.7.3.7zM82.2 98c1.5.4 1.9 3.3 2 4.5l-.5.2c-.2-1.4-.1-3.7-1.5-4.7zm2.8.6c.8.3 2.7-.3 2.9.5-1 .4-2.3.3-2.9-.5z" transform="translate(2 2)"/>
<path fill="none" stroke="#000" d="M95 99.7s3.5 0 3.6-2m5.7 2.9c-.2 2.3-3.6 2.3-3.6 2.3s0 1.7-3.5 2.2"/>
<path d="M96.6 95.4c.9-.2 2-.2 2.5-1 .4-.7.2.7-.3.7-.6.4-1.4.8-2.1.9l-.1-.6zM89 99.5c.8-.1 1.5-.3 2.2-.6.6-.3 1.4-.6 1.4-1.3.5-.2.9.3.4.6-.8.8-2 1.2-3 1.3h-1zm6.5 3.7c-.4 1.3-1.8 1.8-3 1.8h-2.6c-.5-.1.7-.1.8-.1 1.4 0 2.8-.2 3.8-1.1.2-.4.7-1 1-.6zm9.6-6.7c.1 1-.6 1.7-1.5 2-.3 0-1.3.7-1.3.1s1 0 1.3-.5c.7-.2 1.4-.8 1.5-1.6zm-16 6.2l3.3 1.1c-.9 0-1.8-.1-2.6-.6l-.7-.5zm3.6-2.4l3.4 1.2c.2.3-.8.1-1 0-1-.2-1.8-.5-2.4-1.2zm3.1-2l3.8 1.1c-1.1 0-2.4 0-3.3-.7a4 4 0 01-.5-.4zm3.9-2.4c1 .2 2.1.5 3.1.9-.8.1-1.6-.2-2.3-.5-.3 0-.6-.5-.8-.4z" transform="translate(2 2)"/>
<path d="M102.2 98.9c-1.4-.5-3-.8-4.2-1.7l1 .4c1 .4 2.2.5 3.3.7l-.1.6zm-7.8.5c1 .8 2.3 1 3.6 1.1.4 0 .9-.1.7.4 0 .4-.7 0-1 0a7 7 0 01-2.9-1c-.1-.2-.4-.3-.4-.5zm-3.2 2.2c1 .6 2.2 1 3.4 1.1.5 0 .7.2.6.7l-1.1-.2-3-1.5.1-.1zm-1.3-4.8c1 .3 2 .5 3.1.6 0 .5-.2.7-.6.4-.9-.3-1.8-.4-2.5-.9zm4-2c1 .3 1.8.5 2.8.6 0 1.3-1.5-.1-2.2-.2l-.6-.4zm-5.2-4.5c.8-.3 1.6-.7 2.4-.6.2.6-.3.5-.7.5l-1.7.1zM84.9 89c.4 0 .6.4.5.8-.2.3-.7 0-.6-.5l.1-.3zm-2.3 0c.2.4 0 1-.6.8-.1-.4.2-.7.6-.8zm-5.4 2.3v1c-.5 0-.5-.6-.3-.8l.3-.2zm3.1.3c.2.4.7.6.8 1.1-.4 0-1 0-1-.6 0-.2 0-.4.2-.5zm-5.2-2c0 .4.2 1-.3 1.2-.3.5-.3.3-.3-.2 0-.4.2-.9.6-1zm5.3-10.3c.5.3.8 1 1 1.5a3 3 0 01-.1 1.8l-.3-1.8-.6-1.5z" transform="translate(2 2)"/>
<path d="M80.6 79.7c.2.5.2 1 0 1.6l-.4.7-.6.6.2-.8.3-.7.2-.7.3-.7zm-.3-.1c.1.3 0 .6-.2.9 0 .2-.3.4-.5.6l-.6.4c-.2.1-.4.2-.6.5 0-.3.1-.6.3-.8l.5-.6.6-.4.5-.6zm6.1-8.9l.6.1.4.4.2.6c0 .1 0 .4-.2.5l-.3-.4-.2-.3-.2-.4a2 2 0 01-.3-.5zm.1 1.7c.3 0 .5.2.7.5l.4.8v.8l-.4.8-.1-.8-.1-.7a4.7 4.7 0 00-.5-1.4zm1.3 5.7c.2 0 .4.1.5.3l.3.3.2.4v.6l-.4-.3-.2-.3-.3-.4V78zm.7 2.7c.2 0 .4.2.5.3.2.1.3.3.3.5l.2.5v.5a2.4 2.4 0 01-.8-1.2 1 1 0 01-.2-.6zm.5 2.9l.4.5c.2.1.3.4.3.6l.1.6c0 .2 0 .4-.2.6l-.3-.5-.1-.6-.2-.6v-.6zm-.5 2.2c.2.1.3.3.3.4l.2.4v.4c0 .2-.2.3-.3.4l-.2-.4-.1-.3v-.4l.1-.5zM84.9 89l.3.1.2.2v.6H85l-.2-.3v-.5zm-2.3 0c0 .1.1.3 0 .4v.2l-.2.2H82v-.5l.3-.2.3-.1zm-3-1.7c.2.1.1.3 0 .5l-.2.3-.4.1-.3.1V88l.3-.3c.2 0 .2-.1.3-.2l.3-.1zm-2.4 4l.1.3v.4l-.1.3a.5.5 0 01-.4-.2v-.6l.4-.2zm3.1.3l.2.3.2.2.2.2.2.4h-.5a.7.7 0 01-.4-.2.7.7 0 01-.1-.5c0-.2 0-.3.2-.4zm-5.2-2v.9l-.3.3-.3.4v-.9l.2-.4c.1-.2.3-.3.4-.3zm8.3-14.8l.4.1.3.1c.1 0 .2 0 .3.2l.4.2-.5.2H84l-.4-.3-.1-.5zm-1.9-4.9c.3 0 .6.2.8.4l.8.4-.9-.1-.8-.1.1-.6zm-2.5.6a2 2 0 01-1 0 .7.7 0 01-.4-.4.8.8 0 01-.2-.4l.3.3.4.1c.3 0 .5 0 .8-.2l.1.6zm1.6.6c0 .5.2.9-.2.9-.5 0-.9-.4-.9-.9s.3-.8.7-.8c.5 0 .4.4.4.8zm-7.2.4c-.1-.3 0-.6.1-.9l.8-.4c.3 0 .6 0 .8.3.3.1.5.4.3.7a.9.9 0 00-.5-.3h-1.1a1 1 0 00-.4.6z" transform="translate(2 2)"/>
<path d="M74 71.6l.1-.4.3-.1h.3l.3.3c-.2 0-.3.1-.3.2zm3.6-2.4c.1-.4.5-.6.8-.7.4-.2.8-.2 1.2-.1l1 .2 1 .4h-1l-1-.1h-1c-.4 0-.7 0-1 .3zm-.4-5.5c.5.1 1 .4 1.3.8-.4-.2-1-.2-1.4-.2v-.6zM74.1 66c.5 0 1 .3 1.2.5h-1.2zm7.9-2.8c.4.3.5.8.4 1.2-.1-.4-.4-.6-.7-.8l.4-.4zm4.5 1.2a8 8 0 00-.6 1.3v-1.5zm-13.9 39.1l.8 1 .7 1 .7.8.8 1c-.4-.1-.8-.4-1-.6a5.3 5.3 0 01-1.6-2zm2.1.2l.5.5.4.5.3.4.4.6-.6-.2-.6-.4a2 2 0 01-.3-.6zm.5-3.2l.7 1.3.8 1.2 1 1.1 1 1c-.4 0-.9-.3-1.3-.6a5.6 5.6 0 01-1.9-2.5zm3 1.5l.4.2.2.3.2.2.1.5-.4-.1-.3-.3-.2-.3zm1.4-.3l.4.3h.9l.6.3-.5.2-.6.1c-.2 0-.4 0-.6-.2-.2-.2-.3-.4-.2-.7zm24.8 9.5c-.5 0-.8-.5-1.2-.8l-.9-.9c.5 0 1 .2 1.4.6.3.3.7.6.7 1.1zm-11 .2a6 6 0 01-.9-2c0-.6-.1-1.3.2-1.8-.2.4-.2.9 0 1.4 0 .8.6 1.4 1.1 2zm12.1.1c-.1-.7-.7-1.2-.8-2l1 1.3c.3.2.4.8-.1.7zm-9.9.5c-.5-.1-.7-1.3-.2-1.3.4.3.3.9.2 1.3zm-.7-2c-.6-.5-.2-1.6.5-1.6.4 0-.3.8-.3 1zm6.6 6.6c-.4-.9-1-1.7-1-2.8 0-.4.4-1.2.4-.4 0 .8.5 1.4.6 2.1 0 .4.2.8 0 1.1zm-.6 1.2c-.6.2-1.4 0-1.6-.6.4-.4 1 .3 1.5.5zm3.4-1.8c0-.6-.3-1.3.2-1.9.1-.3.5-.9.4-.2.1.8-.3 1.4-.6 2zm-5.9 15.5c-.5.3-.8.61-1.1 1.01l-.36-.46zm5.28.53c0-.4-.11-.68.29-.98l.25.3c-.16.22-.3.25-.54.68zM92 131.8c-.1-.4-.4-1 .3-.7 0 .2-.1.6-.3.7zm3.9-1.6H98c-.7.6-1.6.6-2.1.6zm-2-2.8c0 .4-.5 1-.7.8.2-.2 0-.9.5-.8zm7.5 2.73l-.6-.73.9.3zm.7-4.73c.4.2.9.6.5 1-.2.12-.48-.75-.5-1z" transform="translate(2 2)"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -1,17 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/4/48/Giuliano_I_Cesarini.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="column" stroke-width=".306">
<g stroke-linejoin="round">
<polygon points="92.556 128.678 107.519 128.678 111.956 133.472 88.119 133.472"/>
<rect x="88.119" y="133.472" width="23.837" height="1.54"/>
<rect x="89.761" y="138.215" width="20.553" height="1.867"/>
<polygon points="111.956 135.013 88.119 135.013 89.761 136.379 110.314 136.379"/>
<path d="M110.416 138.215H89.649a.914.914 0 0 1-.918-.918c0-.51.408-.918.918-.918h20.767c.51 0 .918.408.918.918s-.408.918-.918.918z"/>
</g>
<path d="M94.096 62.878c0 .439.112 1.449.663 1.449h10.465c.602 0 .755-.929.755-1.449l.204-1.734H93.81l.286 1.734z"/>
<path stroke-linejoin="round" d="M94.759 64.327h10.465s.796 36.138 1.132 48.388c.306 11.343-.102 16.29-.102 16.29s-.275 1.642-6.222 1.642-6.314-1.642-6.314-1.642-.275-6.753-.102-16.371c.194-10.302 1.143-48.307 1.143-48.307z"/>
<path stroke-linejoin="round" d="M93.208 128.78c.082-.49.47-.846.602-.673.061.112 1.183 1.224 6.232 1.224s6.161-1.122 6.212-1.224c.133-.183.52.174.602.673.051.276.03.908-.581 1.224-1.194.623-3.448.98-6.233.98-2.794 0-5.059-.357-6.252-.98-.612-.326-.633-.948-.582-1.224z"/>
<path d="M105.979 62.888c.653 0 1.214-1.111 1.214-1.764 0-.673-14.311-.673-14.311 0 0 .653.561 1.764 1.214 1.764h11.883z"/>
<rect x="91.403" y="59.951" width="17.34" height="1.561"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:Meuble_comets.svg" author="Chatsam" license="https://creativecommons.org/licenses/by-sa/3.0"/>
<g id="comet" stroke-width=".5" transform="translate(60 60) scale(0.4)">
<path d="M91.05 69.92c-.38-.29-6.94 2.9-14.63 7.26-7.7 4.19-14.06 7.66-14.25 7.48-.1-.1 3.51-5.89 8.17-12.96 4.56-6.95 8.17-13.15 7.88-13.72-.28-.56-7.5-2.63-16.15-4.61-8.75-2.03-15.21-3.89-14.58-4.22.62-.31 6.1-1.67 12.21-3 6.08-1.33 12.92-2.81 15.1-3.3 2.28-.51 4.09-1.29 4.09-1.73 0-.46-3.71-6.53-8.17-13.52-4.47-6.98-7.98-12.83-7.79-13.01.19-.18 6.36 3.16 13.77 7.43 7.41 4.26 13.87 7.73 14.35 7.71.47 0 2.56-6.47 4.65-14.37C97.8 7.46 99.83-.55 100 0l4.3 13.97c2.5 8.1 4 15.31 4.4 15.7.3.38 6.7-2.73 14.3-6.98 7.5-4.23 13.9-7.51 14.2-7.3.1.22-3.5 6.14-8 13.18-4.7 7.03-8.1 13.05-7.7 13.37.4.3 7.6 2.17 16 4.14 8.4 1.97 15.3 3.8 15.3 4.05 0 .26-7.1 2.05-15.7 3.95-10.6 2.31-15.8 3.81-15.8 4.47 0 .66 3.7 6.76 8.1 13.71 4.4 6.89 8 12.77 8 13.06.1.19-6.2-3.19-13.9-7.67-7.7-4.45-14.2-8.11-14.6-8.11-1.5 2.82-4.8 3.85-5.8 24.08-.4 10.08 11.9 21.08 11.4 32.68-.5 16.7-16 23.2-16.7 37.9-.9 20.8 3.7 32.8 2.2 35.8-1.4-2.7-11.99-17.7-12.37-38.6-.29-15.5 13.97-18.1 13.67-35.7-.2-11.1-12.06-23.7-12.44-33.24-.57-19.73 4.09-20.2 2.19-22.54z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="compassRose" stroke-width=".5">
<path d="M100 60l6 28 14-8-8 15 28 5-28 6 8 14-14-8-6 28-6-28-14 8 8-14-28-6 28-6-8-14 14 8z"/>
<path fill="#000" stroke="#000" fill-opacity=".5" stroke-opacity=".2" d="M100 61v39l7-6 5 1c2.7-5 5.3-10 8-15-4.3 4.3-8.7 9.7-13 14-2.3-10.7-4.7-22.3-7-33zm0 39l7 7c10.7-2.3 21.3-4.7 32-7zm0 0l-7 7c2.3 10.7 4.7 21.3 7 32zm0 0l-7-7-32 7zm-7-7l1-5-14-8zm0 14c-1.7-.3-3.3-.7-5-1-2.7 4.7-5.3 9.3-8 14l13-13zm14 0c-.3 1.7-.7 3.3-1 5 4.7 2.7 9.3 5.3 14 8z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 696 B

View file

@ -1,201 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="https://commons.wikimedia.org/wiki/File:Herb_Viyska_Zaporozkoho.svg" author="Alex Tora" license="https://creativecommons.org/licenses/by-sa/3.0/"/>
<g id="cossack" stroke-width="2" transform="matrix(-0.12 0 0 0.12 140 49)">
<path class="tertiary" d="M125.77 143.9c-2.7 3.2-3.3 6.9-1.8 11.1l30.8 9.3 3.5-3.2 1 .3 15.1 5.3 1.1.4 47.2 15.5c.7-2.8 2.2-5.2 4.4-7.3l-47.5-15.6h-.1l-36-10.7-.8-.1-4.1-1.3-12.8-3.7"/>
<path class="tertiary" d="M123.97 155c-1.5-4.2-.9-7.9 1.8-11.1l-11.3-4.9c-4.9 3.4-5.8 7.8-2.4 13.4l11.9 2.6"/>
<path class="tertiary" d="M159.27 161.4c-.4.1-.9.3-1.3.4l-3.5 3.2 1.1 4.2c1.1.4 2.1.7 3.3 1.1.8.3 1.8.6 2.8.9 3.1 1 6.2 2 9.4 3 .7.3 1.5.5 2.3.7.7.3 1.6.5 2.4.8l46.6 15.9c-.6-3.3-.5-6.3.3-9l-47.2-15.5-1.1-.3v-.1l-15.1-5.3"/>
<path class="tertiary" d="M161.68 176.2v-5c-1-.3-2-.6-2.8-.9v8.3l12.2 4 2.3-7.7c-.8-.2-1.6-.4-2.3-.7l-1.8 4.4-7.6-2.4"/>
<path class="tertiary" d="M171.07 182.6l-12.2-4c0 77.5 24.2 111.6 72.6 102.3 2-2.2 4.1-4.4 6.3-6.6-47.2 6.8-69.4-23.7-66.7-91.7"/>
<path class="tertiary" d="M222.68 182.6c-.8 2.7-.9 5.7-.3 9 2.5 2.4 7 4 13.8 4.7-.6-3.4-.4-6.4.4-9.1.8-2.7 2.3-5.1 4.4-7.3-3.8-3.3-8.5-4.8-13.9-4.6-2.2 2.1-3.7 4.5-4.4 7.3"/>
<path class="tertiary" d="m 241,179.9 c -2.1,2 -3.6,4.5 -4.4,7.3 l 77.7,25.4 -1.5,-9.3 -71.8,-23.4"/>
<path class="secondary" d="M299.68 141.4c-1.5 1.3-2.8 2.9-4.1 4.5-6.5 8.5-9.7 17.7-9.9 27.8 1.7 6.4 5.5 8.6 11.4 6.6.8-.2 1.7-.7 2.6-1.3.7-.4 1.3-1 2.1-1.7.6-.5 1.3-1.2 1.9-1.9.6-.7 2.3-2.4 5.4-5.1 3-2.8 7.3-8.6 13-17.4-5.7 8.8-10 14.6-13 17.4-3.1 2.7-4.8 4.4-5.4 5.1l29-18.7c3.8-2.4 6.4-5.2 7.9-8.4 8.8 6.2 14.1 13.4 15.7 21.5 1.8-8.5 4.6-14 8.3-16.5-6.1-13.8-17.8-21.3-35.1-22.8-12.7.5-22.7 4.1-29.8 10.9"/>
<path d="M303.68 175.4c-.6.7-1.3 1.4-1.9 1.9 2.1 6.6 5.1 10.4 9.1 11.4v-1.2c0-1.2.4-2.2 1.2-3l.1-.1c.7-.7 1.6-1.3 2.5-1.6v-.1h.1c18.7-9.4 32.6-13.7 41.5-12.9-1.6-8.1-6.9-15.3-15.7-21.5-1.5 3.2-4.1 6-7.9 8.4l-29 18.7"/>
<path fill="#fff2d3" d="m 363,171.4 c -4.9,-2.3 -14.1,-2 -24.7,1.4 -6.2,2.3 -20.6,9.3 -26.6,11.5 -5.1,17.3 10.9,15.8 9.9,33.2 11.2,13 27.6,14.6 30.5,19.1 0,-2.7 4.8,-7 11.4,-13.8 11,-7.1 -2,-7.5 6.6,-25.7 1.5,-9.6 0,-19.6 -7.1,-25.7 z" />
<path fill="#FFF" stroke-width="1" d="M345.88 183.4c-.2-.1-.3-.2-.5-.3-.2 0-.5-.1-.8-.1.3 1.3.3 2.5-.2 3.5-.6.9-1.5 1.4-2.8 1.3-.9 0-1.6-.2-2.2-.6-1-.7-1.4-1.6-1.3-3v-.3c0-.3 0-.5.1-.8-.2.1-.3.2-.5.2-.2.4-.2.9-.2 1.5-.1 1.3.3 2.3 1.2 2.9a5 5 0 002.7 1c.9.1 2 .2 3.1.3.5.1.9.2 1.4.2h1.9c0-.6.2-1.1.5-1.4.8-.7 1-2 .8-3.6-1.1-.3-2.2-.5-3.2-.8"/>
<path fill="#FFF" stroke-width="1" d="M367.98 180.5c-.2.1-.5.3-.6.4-.6.2-1.2.5-1.8.8l-.6.3c-.1.1-.4.2-.6.3.5 1.6.4 2.8 0 3.6-.5.6-1.3 1.1-2.3 1.3-1.2.2-1.9.1-2.3-.4.1.4.1.8.2 1.1.1.4.3.7.4 1.1.5-.4.9-.7 1.6-.8 1.2 0 2.3-.2 3-.5.4-.2.9-.5 1.3-.9.4-.3.9-.6 1.3-.9 0-.1.2-.3.2-.6.1-.2.1-.5.2-.8.1-.5.1-1.1.1-1.6s0-1.1-.1-1.7v-.7"/>
<path d="M369.07 162.3a9.34 9.34 0 010-10.6c-1.6.1-3.1.7-4.5 1.6-3.7 2.5-6.5 8-8.3 16.5 5.3.4 9 2.6 10.8 6.6.4-.3.8-.5 1.3-.6.1-.1.2-.2.3-.2.8.6 1.2 1.5 1 2.8l.5.8c.8-.5 1.6-1.2 2.3-1.9 1.2-1.2 2.1-2.8 2.6-4.7-.6-2.5-1.4-4.6-2.6-6.4-1-1.6-2.1-2.9-3.4-3.9"/>
<path fill="#501616" d="M345.88 178.7s-.1 0-.2-.1c-.7-.3-1.6-.4-2.4-.5h-.8l-3.1.3c-1.3.2-2 .8-2.3 1.9-.2 1-.3 2.1-.3 3.2.3-.1.6-.1.9-.2.2 0 .3-.1.5-.2.8-.1 1.5-.1 2.3-.2.7-.1 1.3-.1 2-.1.3 0 .7 0 1 .1.4 0 .8 0 1.1.1.3 0 .6.1.8.1.2.1.3.2.5.3 1 .3 2.1.5 3.2.8.4.1.8.1 1.2.2 1.5.3 2.7.3 3.6 0a14 14 0 01-2.9-2.3c-.7-.6-1.6-1.3-2.5-2-.8-.5-1.7-1-2.6-1.4Z"/>
<path fill="#501616" d="M368.68 175.6c-.1 0-.2.1-.3.2-.5.1-.9.3-1.3.6-.5.3-.9.7-1.2 1.1l-1.8 2.7c-.7.8-1.5 1.3-2.4 1.6-.4.1-.8.3-1.3.7 0 .2.2.3.5.4.3.1.6.1 1.2.1.3 0 .7 0 1-.1l.6-.3c.3-.1.5-.2.7-.3.2-.1.5-.2.6-.3l.6-.3c.6-.3 1.2-.6 1.8-.8.1-.1.4-.3.6-.4.5 0 1-.3 1.3-.6v-.2c.2-.3.4-.7.4-1.3.2-1.3-.2-2.2-1-2.8"/>
<path fill="#000" stroke="none" d="M343.48 182.9c-.3-.1-.7-.1-1-.1-.7 0-1.3 0-2 .1-.8.1-1.5.1-2.3.2-.1.3-.1.5-.1.8v.3c-.1 1.4.3 2.3 1.3 3 .6.4 1.3.6 2.2.6 1.3.1 2.2-.4 2.8-1.3.5-1 .5-2.2.2-3.5-.3-.1-.7-.1-1.1-.1"/>
<path fill="#000" stroke="none" d="M363.68 182.6l-.6.3c-.3.1-.7.1-1 .1-.6 0-.9 0-1.2-.1-.3-.1-.5-.2-.5-.4l-.2.2c-.4.7-.6 1.6-.6 2.9v.1c0 .2 0 .3.1.5 0 .2 0 .5.1.6.4.5 1.1.6 2.3.4 1-.2 1.8-.7 2.3-1.3.4-.8.5-2 0-3.6-.2.1-.4.2-.7.3"/>
<path class="tertiary" d="M431.38 225.5c0-.2 0-.3-.1-.4l-18.9 5.5c1.7.1 3.5.1 5.4.2 1.9 0 3.7 0 5.6-.2 1.3 0 2.6-.3 3.9-.7.5-.1 1-.3 1.5-.6 1.1-.5 1.9-1.2 2.3-2.2.2-.5.3-1 .3-1.6"/>
<path class="tertiary" d="M450.07 247.9l-14.4-4.7-7-2.1-28.4-9.4-8-2.6-26-8.5-.1.1c-.5.5-1.4 1-2.7 1.2-.7 1.7-1.4 3.2-2.4 4.4h-.1c-.1.2-.3.4-.4.6 0 0-.1 0-.2.1v.4l36.1 11.7 29.6 11.2c11.8.7 19.8-.1 24-2.4"/>
<path class="tertiary" d="M423.18 213.9c-1.2 0-2.2.4-2.9 1.3-.8.9-1.2 1.9-1.2 3.1 0 1.3.4 2.3 1.2 3 .3.3.6.5.9.8.6.3 1.3.5 2 .5 1.2 0 2.1-.5 2.9-1.3.1-.1.1-.2.2-.2a4.47 4.47 0 00-.2-5.9 3.6 3.6 0 00-2.9-1.3"/>
<path class="tertiary" d="M423.18 222.6c-.7 0-1.4-.2-2-.5-2.2.5-4.1 1.9-5.9 4-1.7 2.2-2.5 3.3-2.4 3.5 0 0-.1.3-.5 1l18.9-5.5c0-.7-.3-1.2-.9-1.7-1.2-1-2.6-1.8-4.1-2.3-.1 0-.1.1-.2.2-.8.8-1.7 1.3-2.9 1.3"/>
<path class="tertiary" d="M401.38 219.6c-1.3-1.2-2.6-2.2-3.9-3.3-.3-.2-.6-.4-.8-.7-.3 2.1-.1 4 .4 5.9.1.2.1.3.2.6.8 1.2 1.5 2.6 2.3 4 .3.7 1.1 1 2.5 1 1.9-1 2.3-2.5 1.6-4.5-.6-1.2-1.3-2.3-2.3-3"/>
<path class="tertiary" d="M397.27 222.1v.6c0 1.4-.6 2.6-1.7 3.6-1.2 1.1-2.3 2-3.3 2.8l8 2.6c-.5-2.2.1-3.8 1.8-4.6-1.4 0-2.2-.3-2.5-1-.8-1.4-1.5-2.8-2.3-4"/>
<path class="tertiary" d="M390.57 250.8l.9.4c9.9 3.7 19.7 7.5 29.4 11.2 5.6 2.2 11 4.3 16.4 6.4v-.1c2 .7 3.9 1.4 5.8 2 2 .7 4.8 2.4 8.4 4.9l4.1 6.4 3.1 4.9 47.7 75.3h.1c2.7-1.1 6.1-1.6 10.4-1.3 1.6-.4 3.2-.8 4.8-1.3 1.2-1.8 1.9-3.1 2.1-3.9-1.2-3.6-1.8-6.4-1.7-8.3 0-2 .4-3.5 1-4.5.7-1 1.3-1.7 1.8-2.1a5.9 5.9 0 013.6-5.9c.2-2.4 1.1-3.3 2.6-2.7s2.4 1.6 2.5 2.8c.2.7.4 1.4.7 2.1 1.3-1.5 2.4-1.5 3.7 0l4.3 8.8c2.6-3.5 4.5-7.6 5.8-12.2l-80.6-70.6c-1.5-6-7.2-11-17.4-15.2-4.2 2.3-12.2 3.1-24 2.4l-29.6-11.2-36.1-11.7v8.4c.6.7 1.3 1.4 2.1 2.1l1-.2.6 1.5c3.4 1.4 6.8 2.9 10.2 4.6 3.3 1.6 5.6 2.8 6.8 3.5l5.4 2 4.1 1.5"/>
<path class="tertiary" d="M431.07 227.1c-.4 1-1.2 1.7-2.3 2.2-.5.3-1 .5-1.5.6 2.5 3.7 3 7.4 1.4 11.2l7 2.1c1.8-5.4.3-10.7-4.6-16.1"/>
<path class="tertiary" d="M417.57 263.6c-.5 0-.9.1-1.3.4-.4.3-.6.7-.6 1.2-.1.6-.1.9 0 1 .2.1 1.6.3 4.4.5 2.8.1 4.9 3 6.5 8.5 1.5 5.4 2.4 8.3 2.6 8.5.2.3.5.5.8.5 4.4 1.4 8.3 2.6 11.7 3.4 3.5.7 6.4 1.2 8.7 1.3 2.7.2 5-.2 6.9-1.1.6-.3 1.1-.6 1.4-.9l-3.1-4.9c-.2.1-.3.2-.5.4-.3.4-.4.9-.3 1.5 0 .3 0 .6-.3.7-.8.5-2.2.6-3.9.6-3-.2-7.1-1-12.3-2.4-2-.5-4.1-1.1-6.4-1.9-2.9-10.6-7.6-16.3-14.3-17.3"/>
<path class="tertiary" d="M437.27 268.7v.1c2.1.8 3.2 1.8 3.4 3 .2 1.2-.1 2.3-.9 3.3-.7 1.5-2.6 2.1-5.7 2-.7 0-1.4 0-2.1-.1.5.2 1.5 1 3.1 2 .2.2.5.3.8.5 1.3.7 2.7.8 4.1.2 1.7-.6 2.9-1.2 3.5-1.6 2.2-1.4 4.9-2.2 8-2.5-3.6-2.5-6.4-4.2-8.4-4.9-1.9-.6-3.8-1.3-5.8-2"/>
<path class="tertiary" d="M315.57 214.1c-.2-.2-.3-.4-.4-.5-.3-.4-.6-.8-.9-1l-77.7-25.4c-.8 2.7-1 5.7-.4 9.1l79.8 27.1 1.5-8.8c-.8 0-1.4-.2-1.9-.5Z"/>
<path class="secondary" d="M411.57 345.5c-.4 3.4-.9 6.8-1.5 10.2-9.4.8-18.9 1.5-28.6 1.9l-3.5.6c-.6.7-1.4.9-2.3.9-.9 0-1.7-.2-2.3-.9-.1-.1-.2-.1-.2-.2a633 633 0 01-33.8.3c-4.8 0-9.7-.1-14.5-.2l-13.9 12.4 13.9-12.4c-2.8-2.5-6.8-3.3-11.8-2.5-5.1.9-8.7-.1-10.4-2.9-1.1-1.4-2-2.9-3-4.4l-2.3 14.4c0 .1 0 .2.1.3.6.8 1.2 1.6 1.8 2.2.4.4.7.9 1 1.7 1.2.6 2.4 1.4 3.4 2.2.4.3.5.8.4 1.7-.1 1.3-.2 2.5-.2 3.6.4.7.5 1.4.4 2.3-.2 1.7-.5 3.5-1.1 5.2 3 .5 6.1.9 9.2 1.4 3.5.4 7.6 0 12-1.4l20.1-16-20.1 16c4.8 1.3 9.8 2 15 2.1 6.2.1 12.8-.6 19.7-2.2l17.8-15.1-17.8 15.1a119.61 119.61 0 0051-1.7l8.6-5.5c-.7-12.2-3.1-21.9-7.1-29.1"/>
<path d="M385.88 323.7l-1.8-4.9-7.8 1.5v.1c.7.7 1 1.5 1 2.5 0 .9-.3 1.7-1 2.4l9.6-1.6"/>
<path d="M387.38 341.1l-1.8-4.9-7.7 1.5v.1c.6.7.9 1.5.9 2.5 0 .9-.3 1.7-.9 2.4l9.5-1.6"/>
<path d="M387.48 356.6l-1.8-4.9-7.7 1.6c.6.7.9 1.5.9 2.5 0 .7-.2 1.4-.6 2-.1.1-.2.2-.3.4l3.5-.6 6-1"/>
<path class="secondary" d="M418.68 374.6l-.1 31.8.1-31.8-8.6 5.5c3.6 19.9 5.5 39.9 5.8 59.9l7-5.5 7.1-5.8c-.4-18-4.1-36.1-11.3-54.1"/>
<path d="M385.98 392.1l-1.9-5-7.6 1.6v.1c.6.6.9 1.4.9 2.4 0 .9-.3 1.8-.9 2.4l9.5-1.5"/>
<path d="M384.07 387.1l1.9 5-9.5 1.5c-.7.7-1.5 1-2.4 1s-1.6-.3-2.2-1c-.1 0-.1-.1-.2-.2l17.9 181.4-23.4 22c10.3 7.6 19.8 7.6 28.5 0v-35.2 35.2c7.7 6.8 14.5 9.7 20.4 8.5 2.2-.4 4.4-1.4 6.4-3 1.7-1.4 3.3-3.2 4.8-5.5l-6-83.3 6 83.3c8.4.6 14.4-2.3 17.8-8.7l-13.7-99.1-3.4-24.1-4.1-30.4-7 5.5c-.3-20-2.2-40-5.8-59.9-12.7 3.2-25.6 4.3-38.6 3.3 0 1.9 0 3.8.1 5.7 0-.1.2-.3.3-.3.6-.7 1.3-1 2.2-1s1.6.3 2.2.9h.2l7.6-1.6"/>
<path class="tertiary" d="M464.48 421.8c1.3 2 3.1 2.2 5.3.4 2.2-1.8 5.8-1.1 10.7 2.2.7.4 2.4 1.6 5 3.6 2.1-.2 2.5-2 1.3-5.5s-3.6-6.4-7.2-8.7c-3.6-2.3-7.1-1.7-10.4 1.7-.8 1.3-1.7 2.6-2.5 3.9-.7.8-1.4 1.6-2.2 2.4"/>
<path class="tertiary" d="M469.77 422.2c-2.2 1.8-4 1.6-5.3-.4-8 7.8-14.9 16.6-20.7 26.6h.3c2.4.6 6-.7 10.9-3.7-1.8 5.9-2.4 10.2-1.8 12.9 9.2-8.2 15.9-17.6 20-28.5.4-.6.9-1.2 1.3-1.9 1.1-1.6 3.1-2.5 6-2.8-4.9-3.3-8.5-4-10.7-2.2"/>
<path fill="#FFF2D3" stroke="none" d="M534.27 337.1c-.3-.7-.5-1.4-.7-2.1-.1-1.2-1-2.2-2.5-2.8s-2.4.3-2.6 2.7c.4 1.7.9 3.6 1.5 5.6.6 1.6 1.5 3.4 2.6 5.6.7 1 1.2 2 1.7 3-.5-1-1-2-1.7-3-1.1-2.2-2-4-2.6-5.6-.6-2-1.1-3.9-1.5-5.6-.9.3-1.5.9-2.2 1.6a5.9 5.9 0 00-1.4 4.3c.7 1.2 1.4 2.8 2 4.5.5 1.7 1.1 3.4 1.8 4.9.7 1.5 1.3 3.1 1.7 5 0 .3.1.6.2.9-.1-.3-.2-.6-.2-.9-.4-1.9-1-3.5-1.7-5s-1.3-3.2-1.8-4.9c-.6-1.7-1.3-3.3-2-4.5-.5.4-1.1 1.1-1.8 2.1-.6 1-1 2.5-1 4.5-.1 1.9.5 4.7 1.7 8.3.3.4.6.7.9 1-.3-.3-.6-.6-.9-1-.2.8-.9 2.1-2.1 3.9-.3.6-.6 1.1-1.1 1.7-1.3-.2-2.5-.4-3.7-.4-4.3-.3-7.7.2-10.4 1.3-.4.2-.8.3-1.1.6-5.1 2.8-7.2 8.5-6.3 17.2 2.1.2 3.8.3 5.3.4.7.1 1.5.1 2.1 0 1.7-.1 3.6-.2 5.4-.2 1.7 0 3.4-.4 4.8-1.1 1.4-.8 2.9-1.6 4.4-2.6 4-1 7.5-2.4 10.3-4 4.1-2.3 6.9-5.3 8.4-8.8 1.2-4.1 2.1-9.9 2.8-17.3l-.3-.5-4.3-8.8c-1.3-1.5-2.4-1.5-3.7 0l4.3 11-4.3-11"/>
<path class="secondary" d="M516.67 379.1c-1.4.7-3.1 1.1-4.8 1.1-1.8 0-3.7.1-5.4.2-.6.1-1.4.1-2.1 0 1.2 1.1 2.6 2.1 4.1 3 1.6 1 3.1 2.1 4.5 3.3 1.4 1.1 3 1.8 4.8 2 1.8.1 3.6.3 5.4.3h10.9v-5.8c0-2.1-.1-4.1-.5-5.9-.5-1.6-1.1-3.2-2.2-4.8-2.8 1.6-6.3 3-10.3 4-1.5 1-3 1.8-4.4 2.6"/>
<path class="tertiary" d="M436.68 444.3a15.5 15.5 0 01-4.5-7.4c-3.2-1.9-5.6-1.7-7.2.4-1 1.2-1.4 2.4-1 3.7.3 1.2 1.4 2.5 3.2 3.9 2.8-.2 5.1.6 6.8 2.4 1.4 1.6 2.5 2.6 3.1 2.9.8 1.9 1.4 3 1.6 3.3.3.6.5 1.2.7 2 .5 2.5-.1 6-1.8 10.8 4.2-2.5 7.6-3.5 10.4-2.7.7.2 1.3.5 1.9.9.8.4 1.4.9 2.1 1.3 1.9 1.4 3.3 2.7 4.1 3.9 1.1 1.5 1.7 3.9 1.8 7.2 2 1.2 4.3 1.8 6.8 1.7 3.1-2 2.9-4.8-.4-8.3-2.6-.6-4.8-2-6.9-4.3-2-2.2-3.4-4.9-4.2-8v-.4c-.6-2.7 0-7 1.8-12.9-4.9 3-8.5 4.3-10.9 3.7h-.3c-2.6-.7-5-2-7.1-4.1"/>
<path class="tertiary" d="M438.68 453.5c-.2-.3-.8-1.4-1.6-3.3l-10.1 14.7 3.4 24.1 21.6-23.2c-.7-.4-1.3-.9-2.1-1.3-.6-.4-1.2-.7-1.9-.9-2.8-.8-6.2.2-10.4 2.7 1.7-4.8 2.3-8.3 1.8-10.8-.2-.8-.4-1.4-.7-2"/>
<path class="secondary" d="M415.07 605.3c-5.9 1.2-12.7-1.7-20.4-8.5-8.7 7.6-18.2 7.6-28.5 0-6.4 4.1-13.5 6.3-21.2 6.7-1.1 2.4-2.9 4.5-5.4 6.6-3.4 2.8-7.3 5.2-11.6 7-3 1.4-6 3.1-8.9 5.2 2.3 4.7 5.8 7.4 10.3 7.9 4.1.4 8.5.5 13.4.3 3.6-.2 6.9-1.1 9.8-2.6.8-.4 1.6-.9 2.4-1.3.1-.2.4-.3.7-.4 2.8 3.3 6.8 5.1 11.9 5.2 4.9.1 9.5-.5 14-2 2.4-.7 4.7-1.8 6.9-3.1 1-.6 1.9-1.3 2.9-1.9.5-.4 1-.9 1.5-1.3-.5.4-1 .9-1.5 1.3 3.8 2.4 7.8 2.5 12 .4 4.1-2.2 7.2-6.6 9.4-12.9.7-2.4 1.5-4.6 2.3-6.6"/>
<path d="M388.68 642c.1-5 .1-10.3-.2-15.7-2.2 1.3-4.5 2.4-6.9 3.1-4.5 1.5-9.1 2.1-14 2-5.1-.1-9.1-1.9-11.9-5.2-.3.1-.6.2-.7.4-.8.4-1.6.9-2.4 1.3 3.7 3.2 5.6 7.4 5.8 12.6l.3 14.4c.1 5.2-.9 9.6-3 13.1-2.2 3.9-3.1 8.4-2.8 13.9.3 4.9 2.6 7.9 6.8 8.9 4.5 1.1 8.1 3.1 10.7 5.9 2.7 3.1 5.3 6.4 7.8 10.1 2.7 3.9 6.1 6.1 10.3 6.9 4.1.8 8.3 1.4 12.5 2 4.1.5 8.1 1 11.9 1.7 3.7.6 6.4.9 8.1.8-.4-.5-.9-1.6-1.3-3.4-1.4-4.8-2.9-9.3-4.4-13.7a21.36 21.36 0 00-11.3-12.2c-4.2-1.6-7.5-3.7-10.2-6.2-2.8-2.7-4.4-6.6-4.7-11.7-.4-4.8-.6-9.7-.7-14.6 0-4.8.1-9.7.3-14.4"/>
<path fill="#501616" d="M362.77 205.3c-.9.8-2.1 1.2-3.6 1.5-1.1-1.7-2.5-2.2-4.2-1.7-1.8.5-2.9.7-3.2.3-.8.2-1.4.4-1.8.4-.3.1-1 .4-2.1.9-1.1.4-2.1 1-2.9 1.9-.8.7-1.6 1.4-2.2 2.1-.7.7-1.1 1.4-1.4 1.9-.3.5-1.2 1.3-2.8 2.5-1.6 1-3.3 1.4-5.1 1-1.7-.3-2.6-.5-2.8-.5l.1.1c.8 1.1 1.6 2.1 2.3 2.9.8.8 1.5 1.5 2.2 1.9 1.3.9 3.1 1.4 5.1 1.5.9.1 1.8 0 2.7-.2 1.1-.2 2.3-.7 3.4-1.2 2-1 3.9-2.3 5.9-3.6.2-.2.5-.4.7-.6 1.5-1.2 2.6-1.9 3.2-2.4 0 .6.9 1.2 2.6 1.8 2.4.9 3.9 2.2 4.4 3.8.2.7.2 1.5.2 2.3 1.3-.2 2.2-.7 2.7-1.2l.1-.1c.8-.7 1.3-1.6 1.8-2.6v-.2c.1-.2.2-.6.2-1-.1-1.2-.6-2.9-1.5-5.3-.3-.8-.6-1.4-.9-2.1-1.1-2.3-2.2-3.7-3.1-4.1"/>
<path d="M356.88 229.6c-.5.6-1.1 1.2-1.6 1.8-1.5 1-2.5 2.8-3.2 5.2-.3.7-.5 1.5-.6 2.5.6-.5 1.2-.8 2-.7h.5c.6-.1 1.1-.3 1.7-.5 1.5-.6 3.1-1.3 4.7-2.1V227l-.3.3-1.6 1.3c-.5.3-1 .6-1.6 1"/>
<path d="M353.98 238.4h-.5c-.8-.1-1.4.2-2 .7h-.1l-.1.1c0 .1-.1.1-.1.1-.7.7-1 1.5-1 2.5 0 .9.3 1.8 1 2.4.6.7 1.4 1 2.3 1s1.6-.3 2.2-1c.7-.6 1-1.5 1.1-2.4-.1-1-.4-1.8-1.1-2.5-.5-.4-1-.7-1.7-.9"/>
<path d="M346.57 232.8c-2.6-.6-6.4-2.3-11.2-5.2-7.8-4.6-12.2-8.3-13.3-10.8-.3-.7-.6-1.4-.8-2-.1-.5-.2-.8-.3-1.2-.4.3-1 .5-1.5.6-.2 0-.3.1-.5.1h-.2c-.3 0-.6 0-.9.1-.1.1-.3.1-.4.2l-1.5 8.8-1.1 6.7c14.4 8.5 26.5 11.5 36.4 9.1l.1-.1c-.2-1.3-.5-2.3-1-3.2a5.9 5.9 0 00-3.8-3.1"/>
<path d="M355.68 239.3c.7.7 1 1.5 1.1 2.5-.1.9-.4 1.8-1.1 2.4l9.7-1.6-1.3-3.4-.6-1.5-1 .2-6.8 1.4"/>
<path d="M351.18 244.2c-.7-.6-1-1.5-1-2.4 0-1 .3-1.8 1-2.5 0 0 .1 0 .1-.1-9.9 2.4-22-.6-36.4-9.1-5.4 1.1-10.5 2.6-15.2 4.5a70.8 70.8 0 00-12.3 6.2c1.9 1.5 3.5 3.8 4.8 6.6-1.3-2.8-2.9-5.1-4.8-6.6-1.1-1-2.4-1.7-3.6-2.2-3.9-1.3-8.4-.5-13.5 2.8-.4 1.3-1.6 3.2-4.1 6-4 4.6-11 11.2-21 19.9-2.5 2.3-5 4.6-7.4 7-2.2 2.2-4.3 4.4-6.3 6.6-.9 1-1.8 1.9-2.6 3a195 195 0 00-24.6 35.8c-10.4 13.6-13.1 23.3-7.9 29.2 19 20 37.2 34.8 54.4 44.2.6 0 1.2 0 1.7-.1.2.1.5.3.6.4h.1c9.8.8 18.6-1.9 26.2-8.3 7.5-4.6 11.3-9.3 11.3-13.9l-10.7-9.5c-.6 0-1.2 0-1.7.1-.8-.1-1.5 0-2.2.1-2 .2-3.8.5-5.5 1.1-1.8.5-3.5 1.3-5.1 2.2-1.7.9-3.3 1.6-4.8 2.2.1 1.5 0 3-.3 4.4-.5 1.9-.9 3.8-1.1 5.7l-.6 2.8.6-2.8c.2-1.9.6-3.8 1.1-5.7.3-1.4.4-2.9.3-4.4-.1-.3-.1-.7-.2-1.1l-.3.6c-.7.9-1.4 2.1-2.3 3.3l-3.2 4.7 3.2-4.7c.9-1.2 1.6-2.4 2.3-3.3l.3-.6-21.2-29.8c-3.2-5.2-8.9-7.9-16.9-8 8 .1 13.7 2.8 16.9 8 24.8-11.2 38.9-21.8 42.5-31.8 5.4 2.2 10.6 2.9 15.7 2.1-5.1.8-10.3.1-15.7-2.1 4.1 16.1 9.4 29.4 15.7 40.2.7 1.2 1.4 2.3 2.2 3.4 1 1.5 1.9 3 3 4.4 1.7 2.8 5.3 3.8 10.4 2.9 5-.8 9 0 11.8 2.5 4.8.1 9.7.2 14.5.2 11.3.2 22.7.1 33.8-.3a3 3 0 01-.8-2.2c0-1 .4-1.8 1-2.5.1 0 .1-.1.1-.2 0-3.5-.2-7.1-.4-10.7-.6-.6-.8-1.3-.7-2.1 0-.7.1-1.3.4-1.8-.3-4.5-.7-8.9-1.2-13.3-.6-.7-.9-1.4-.8-2.3-.1-.7.1-1.2.3-1.7-.5-3.8-1-7.8-1.6-11.6-.2-.2-.4-.3-.5-.4-.7-.6-1-1.5-1-2.5 0-.8.2-1.5.7-2-.7-4-1.5-8-2.2-12-.2-.1-.4-.3-.6-.4-.6-.6-.9-1.5-.9-2.5 0-.6.1-1.2.4-1.7-.8-4.1-1.9-8.2-2.9-12.3-.5-.2-.9-.5-1.2-.8-.7-.7-1-1.5-1-2.5 0-.8.3-1.6.8-2.2l-3-10.4c-.3-.2-.5-.3-.7-.7a3.2 3.2 0 01-1.1-2.4c0-.6.2-1.2.5-1.6-.2-.6-.5-1.2-.6-1.8-.2-.4-.3-.9-.5-1.3-.8-2.4-1.5-4.7-2.2-6.9-.9 0-1.7-.3-2.3-1"/>
<path d="M365.88 270.1c.6.7.9 1.5.9 2.4 0 1-.3 1.8-.9 2.5l9.5-1.7-1.9-4.9-7.6 1.7"/>
<path d="M366.77 272.5c0-.9-.3-1.7-.9-2.4h-.1c-.7-.7-1.4-1-2.3-.9-.9-.1-1.6.3-2.2.9l-.2.2c-.5.6-.8 1.4-.8 2.2 0 1 .3 1.8 1 2.5.3.3.7.6 1.2.8.3.1.6.1 1 .1.9 0 1.7-.3 2.4-.9.6-.7.9-1.5.9-2.5"/>
<path d="M380.07 290.7l-1.9-4.9-7.7 1.6c.7.7 1 1.5 1 2.4 0 1-.3 1.9-1 2.5l9.6-1.6"/>
<path d="M365.38 288.1c-.3.5-.4 1.1-.4 1.7 0 1 .3 1.9.9 2.5.2.1.4.3.6.4.4.4 1 .6 1.7.6.9 0 1.7-.3 2.3-1 .7-.6 1-1.5 1-2.5 0-.9-.3-1.7-1-2.4h-.1c-.6-.7-1.3-1-2.2-.9-.8-.1-1.6.3-2.3.9-.2.2-.3.4-.5.7"/>
<path d="M368.98 304.3c-.2.1-.3.3-.3.4-.5.5-.7 1.2-.7 2 0 1 .3 1.9 1 2.5.1.1.3.2.5.4.5.3 1.1.5 1.8.6.9 0 1.6-.3 2.2-1 .7-.6 1-1.5 1.1-2.5-.1-.9-.4-1.7-1.1-2.4-.7-.7-1.4-1-2.2-.9-.9-.1-1.7.3-2.3.9"/>
<path d="M374.57 306.7c-.1 1-.4 1.9-1.1 2.5l9.7-1.7-1.9-4.9-7.8 1.7c.7.7 1 1.5 1.1 2.4"/>
<path fill="#FFF2D3" stroke="none" d="M283.88 361.1c-1.2.3-2.6.5-3.9.6l10.7 9.5c.3-.1.6-.2.6-.1h.9c1.7 0 3.5 0 5.3.1h.3c1.6.1 3.2.5 4.6 1.3.8.5 1.3 1.1 1.5 1.9 0-1.1.1-2.3.2-3.6.1-.9 0-1.4-.4-1.7-1-.8-2.2-1.6-3.4-2.2-.4-.2-.9-.4-1.2-.6-.6-.2-1-.5-1.6-.7-1.2-.3-2.5-.4-3.8-.4-1.8.1-3.6.2-5.5.2 1.9 0 3.7-.1 5.5-.2 1.3 0 2.6.1 3.8.4.6.2 1 .5 1.6.7.3.2.8.4 1.2.6-.3-.8-.6-1.3-1-1.7-.6-.6-1.2-1.4-1.8-2.2-.1-.1-.1-.2-.1-.3-.5-.6-.9-1.3-1.3-2s-.9-.9-1.7-.8c-1.7.3-3.5.4-5.3.6-1.9 0-3.6.3-5.2.6"/>
<path d="M234.57 426.8c2-4.3 2-5.6-.3-4.1-2.3.8-4.3 2-5.9 3.5l5 3.2c0-1 .4-1.9 1.2-2.6"/>
<path d="M233.38 429.4l-5-3.2c-3.7 3.2-5.7 7.9-5.8 14 2-4 5.6-7.7 10.8-10.8"/>
<path d="M267.68 398.2c-.7-.1-1.4-.2-2.2-.4-2.2-.5-4.9-1.3-7.8-2.5-1 .4-1.9.9-2.8 1.6-1.6 1.4-2.4 3-2.4 5 0 .4 0 .8.1 1.2.3 1.5 1.1 2.7 2.3 3.8 1.6 1.4 3.5 2.1 5.9 2.1 2.1 0 4.1-.7 5.6-2.1 1.3-1 2-2.1 2.4-3.4 0-.5.1-1.1.1-1.6 0-1.4-.5-2.6-1.2-3.7"/>
<path fill="#FFF2D3" stroke="none" d="M265.48 397.8c.8.2 1.5.3 2.2.4 1.5.2 2.8.2 3.9 0 1.5-.2 2.7-.5 3.7-.7 3.8-2 6.8-3.7 9-4.8 2.5-1.5 4-2.4 4.6-2.8.5-.3 1-.5 1.4-.8.9-.5 1.6-1.1 2.6-1.6.5-.3 1-.7 1.5-1.2.3-.2.7-.5 1.1-.7-.4.2-.8.5-1.1.7-.5.5-1 .9-1.5 1.2-1 .5-1.7 1.1-2.6 1.6-.4.3-.9.6-1.1 1.1-.8.9-1 2-.8 3.4 0 .6.3 1.3.5 1.8 1.1-.7 2.2-1.4 3.3-2 1.2-.7 2.5-1.2 3.7-1.7.4-.2.8-.3 1.2-.5h.4c1.4-.6 2.9-1.2 4.6-2 1.1-1.1 1.6-2.7 1.5-4.8-.1-.8-.2-1.7-.4-2.5-.3-1-.8-1.9-1.3-2.8-1.5-.3-2.9-.4-4.4-.4h-1 1c1.5 0 2.9.1 4.4.4.5.9 1 1.8 1.3 2.8.6-1.7.9-3.5 1.1-5.2.1-.9 0-1.6-.4-2.3-.2-.8-.7-1.4-1.5-1.9-1.4-.8-3-1.2-4.6-1.3h-.3c-1.8-.1-3.6-.1-5.3-.1h-.9c0-.1-.3 0-.6.1 0 4.6-3.8 9.3-11.3 13.9-7.6 6.4-16.4 9.1-26.2 8.3 1.6.7 3.1 1.4 4.5 1.9 2.9 1.2 5.6 2 7.8 2.5"/>
<path d="M260.77 409c-2.4 0-4.3-.7-5.9-2.1-1.2-1.1-2-2.3-2.3-3.8-1.9.5-3.6 1.2-5.2 2.2-2.6 1.5-4.2 3.2-4.9 5.3-.2.7-.3 1.5-.3 2.2 0 1.8.6 3.4 1.9 4.9.8.9 1.9 1.8 3.3 2.6 3.5 2.1 7.8 3.1 12.7 3.1 3.4 0 6.5-.4 9.3-1.5.5-.9.9-1.7 1.3-2.6 1.7-3.8 3.6-7.5 5.5-11.2-.9-1-2-2-3.5-2.8-1.3-.8-2.5-1.4-3.9-1.8-.4 1.3-1.1 2.4-2.4 3.4a8.12 8.12 0 01-5.6 2.1"/>
<path d="M376.27 320.4v-.1c-.7-.6-1.4-.9-2.3-.9s-1.7.3-2.3 1c-.2.2-.4.5-.6.8-.2.5-.4 1-.3 1.7-.1.9.2 1.6.8 2.3l.1.1c.6.6 1.4.9 2.3.9s1.7-.3 2.3-.9c.7-.7 1-1.5 1-2.4 0-1-.3-1.8-1-2.5"/>
<path d="M377.88 337.8l-.1-.1c-.6-.6-1.3-.9-2.2-.9s-1.6.4-2.3 1c-.2.2-.3.5-.5.7-.3.5-.4 1.1-.4 1.8-.1.8.1 1.5.7 2.1 0 .1.1.2.2.3.7.6 1.4 1 2.3 1s1.7-.4 2.3-1c.6-.7.9-1.5.9-2.4 0-1-.3-1.8-.9-2.5"/>
<path d="M373.48 353.1c0 .1 0 .2-.1.2-.6.7-1 1.5-1 2.5 0 .8.2 1.6.8 2.2 0 .1.1.1.2.2.6.7 1.4.9 2.3.9.9 0 1.7-.2 2.3-.9.1-.2.2-.3.3-.4.4-.6.6-1.3.6-2 0-1-.3-1.8-.9-2.5h-.1c-.6-.7-1.3-1-2.2-.9-.8 0-1.6.2-2.2.7"/>
<path class="secondary" d="M324.38 381.9c-4.4 1.4-8.5 1.8-12 1.4-3.9 5-7 11.5-9.3 19.7 2.3-8.2 5.4-14.7 9.3-19.7-3.1-.5-6.2-.9-9.2-1.4.2.8.3 1.7.4 2.5.1 2.1-.4 3.7-1.5 4.8-1.7.8-3.2 1.4-4.6 2h-.4c-.4.2-.8.3-1.2.5-8.1 13.7-12.5 29.1-13 46.1h27.7c2.8-22.5 7.4-41.1 13.8-55.9"/>
<path d="M376.48 388.8l-.2-.1c-.6-.6-1.3-.9-2.2-.9s-1.6.3-2.2 1c-.1 0-.3.2-.3.3-.4.6-.7 1.3-.7 2.1s.2 1.5.7 2.2h.1c.1.1.1.2.2.2.6.7 1.3 1 2.2 1s1.7-.3 2.4-1c.6-.6.9-1.5.9-2.4 0-1-.3-1.8-.9-2.4"/>
<path class="secondary" d="M371.68 393.4h-.1c1.6 75.7-.3 143.5-5.4 203.4l23.4-22-17.9-181.4"/>
<path class="tertiary" d="M177.07 574.4c-18.5-1-18.5 2.1 0 9.1 15.4 5.9 30.7 6.2 46.2.8.8-6.9 1.9-13.6 3-20.3-15.4 6.8-31.8 10.3-49.2 10.4"/>
<path class="secondary" d="M261.18 599.4c-5 2.1-9.2 3.1-12.7 3.2 1.4 4.1 2.6 8.2 3.6 12.3.5 2 1.3 4.1 2.6 6.1.5.7.9 1.5 1.5 2.1.9 1.4 1.9 2.5 2.8 3.5 1.4 1.3 3.7 2.6 6.9 3.7 3.2 1.2 7 .9 11.3-.6 4.1-1.5 8.1-3.3 12.1-5.5.1-.1.4-.2.6-.2 1-.7 2.2-1.3 3.2-1.8 2 4.9 5.7 7.1 11.2 6.7 4.8-.4 9-2.1 12.6-4.9.8-.6 1.5-1.2 2.2-1.7 2.9-2.1 5.9-3.8 8.9-5.2 4.3-1.8 8.2-4.2 11.6-7 2.5-2.1 4.3-4.2 5.4-6.6-3.1.2-6.5.1-9.8-.3-24.5 6.8-40 5.6-46.5-3.5l-4-.3c-10 5.8-17.8 5.8-23.5 0"/>
<path class="secondary" d="M237.38 594.9c-.8.1-1.6.1-2.4.1-.9 5.9-.5 10.7 1.1 14.5 1.3 3.5 3.2 6.1 5.4 8 2.9 2.4 6.1 4.1 9.7 5 .4 0 .9.1 1.3.2 1 .3 2.2.4 3.7.4-.6-.6-1-1.4-1.5-2.1-1.3-2-2.1-4.1-2.6-6.1-1-4.1-2.2-8.2-3.6-12.3-5.7 0-9.4-2.5-11.1-7.7"/>
<path d="M277.18 629.7c-4.3 1.5-8.1 1.8-11.3.6-3.2-1.1-5.5-2.4-6.9-3.7-.9-1-1.9-2.1-2.8-3.5-1.5 0-2.7-.1-3.7-.4-.4-.1-.9-.2-1.3-.2.6 5.3 1 10.2 1.3 14.8.4 4.6.8 8.5 1.3 11.5.6 3.1.8 5.9.5 8.3-.3 2.4-.5 4.3-.5 5.8 0 1.3-1.1 4.9-3.4 10.5-2.3 5.5-5.5 9.8-9.5 12.8-3.7 2.7-6.2 6.1-7.6 10.2-1.6 4.9-1.7 9.4-.3 13.6 1.2 3.8 1.6 7.5 1.3 11.1 4.5-3.4 9.3-6 14.3-7.9 4.9-1.9 9-3.5 12.2-5 3-1.5 6.4-3.4 9.9-5.9 3.5-2.6 5.1-6.5 4.8-11.8 1.6-2.4 4.6-4.9 8.9-7.2 2.2-1.1 3.3-3 3.5-5.7.3-5.1-.6-9.2-3-12.5-1.5-2.2-2.2-5-2.2-8.4.1-5.2 1-9.9 3-13.9 1.9-4.2 3-8.6 3.2-13.2.1-2 .2-3.7.4-5.4-4 2.2-8 4-12.1 5.5"/>
<path d="M276.77 407c-.2.3-.5.7-.6 1.1-1.9 3.7-3.8 7.4-5.5 11.2-.4.9-.8 1.7-1.3 2.6-.7 1.8-1.6 3.5-2.3 5.2-1.2 2.3-2.2 4.7-3.2 7-1 2.4-2 4.7-3 7-.7 2-1.6 4-2.4 6-1.6 4-3.2 8-4.7 12.1v.1c-5.3 14-10 28.4-14.1 43.2 0 .3-.1.5-.1.8a552.9 552.9 0 00-13.3 60.7c-1.1 6.7-2.2 13.4-3 20.3-.2 1.4-.5 3-.6 4.5 2.5 4.1 6.6 6.1 12.3 6.2.8 0 1.6 0 2.4-.1 2.8-32.7 7.8-63.3 14.7-91.6.1-.3.1-.5.2-.8-.1.3-.1.5-.2.8-6.9 28.3-11.9 58.9-14.7 91.6 1.7 5.2 5.4 7.7 11.1 7.7 3.5-.1 7.7-1.1 12.7-3.2-.5-20.6 1-39.9 4.4-57.9-3.4 18-4.9 37.3-4.4 57.9 5.7 5.8 13.5 5.8 23.5 0l4 .3v-35.5 35.5c6.5 9.1 22 10.3 46.5 3.5V554v49.2c3.3.4 6.7.5 9.8.3 7.7-.4 14.8-2.6 21.2-6.7 5.1-59.9 7-127.7 5.4-203.4-.5-.7-.7-1.4-.7-2.2s.3-1.5.7-2.1c-.1-1.9-.1-3.8-.1-5.7-4.1-.3-8.3-.9-12.4-1.6-6.9 1.6-13.5 2.3-19.7 2.2-5.2-.1-10.2-.8-15-2.1-6.4 14.8-11 33.4-13.8 55.9h-27.7c.5-17 4.9-32.4 13-46.1-1.2.5-2.5 1-3.7 1.7-1.1.6-2.2 1.3-3.3 2-.2-.5-.5-1.2-.5-1.8-.2-1.4 0-2.5.8-3.4.2-.5.7-.8 1.1-1.1-.4.3-.9.5-1.4.8-.6.4-2.1 1.3-4.6 2.8-2.6 4.7-5.1 9.5-7.5 14.3"/>
<path d="M244.07 417.7c-1.7 2.8-2.3 5.8-1.7 8.9-2.2 1.8-3.3 3.8-3.1 5.9-2 1-3.1 1.8-3.2 2.5-.8 0-1.5-1-2.1-2.9-.4-1-.6-1.9-.6-2.7-5.2 3.1-8.8 6.8-10.8 10.8a9.8 9.8 0 00-1.3 5.4c.1 6.9 2.1 11.5 6.1 14.1 4 2.5 8.9 3.8 14.7 3.8 1.6-.1 3-.5 4.2-1 2.7-1.2 5.2-2.3 7.5-3.3 1.5-4.1 3.1-8.1 4.7-12.1.8-2 1.7-4 2.4-6 1-2.3 2-4.6 3-7 1-2.3 2-4.7 3.2-7 .7-1.7 1.6-3.4 2.3-5.2-2.8 1.1-5.9 1.5-9.3 1.5-4.9 0-9.2-1-12.7-3.1-1.4-.8-2.5-1.7-3.3-2.6"/>
<path d="M388.18 250.1l-1.7-.8-5.4-2c-1.2-.7-3.5-1.9-6.8-3.5-3.4-1.7-6.8-3.2-10.2-4.6l1.3 3.4-9.7 1.6c-.6.7-1.3 1-2.2 1 .7 2.2 1.4 4.5 2.2 6.9.2.4.3.9.5 1.3.1.6.4 1.2.6 1.8-.3.4-.5 1-.5 1.6 0 .9.4 1.8 1.1 2.4.2.4.4.5.7.7.4.2 1 .3 1.5.3.9 0 1.7-.3 2.3-1 .6-.6.9-1.5.9-2.4 0-1-.3-1.7-.9-2.4l-.1-.1h.1l8-.9 1.6 4.2-9.6 1.6c-.6.7-1.4 1-2.3 1-.5 0-1.1-.1-1.5-.3l3 10.4.2-.2c.6-.6 1.3-1 2.2-.9.9-.1 1.6.2 2.3.9h.1l7.6-1.7 1.9 4.9-9.5 1.7c-.7.6-1.5.9-2.4.9-.4 0-.7 0-1-.1 1 4.1 2.1 8.2 2.9 12.3.2-.3.3-.5.5-.7.7-.6 1.5-1 2.3-.9.9-.1 1.6.2 2.2.9h.1l7.7-1.6 1.9 4.9-9.6 1.6c-.6.7-1.4 1-2.3 1-.7 0-1.3-.2-1.7-.6.7 4 1.5 8 2.2 12 0-.1.1-.3.3-.4.6-.6 1.4-1 2.3-.9.8-.1 1.5.2 2.2.9l7.8-1.7 1.9 4.9-9.7 1.7c-.6.7-1.3 1-2.2 1-.7-.1-1.3-.3-1.8-.6.6 3.8 1.1 7.8 1.6 11.6.2-.3.4-.6.6-.8.6-.7 1.4-1 2.3-1s1.6.3 2.3.9l7.8-1.5 1.8 4.9-9.6 1.6c-.6.6-1.4.9-2.3.9s-1.7-.3-2.3-.9l-.1-.1c.5 4.4.9 8.8 1.2 13.3.2-.2.3-.5.5-.7.7-.6 1.4-1 2.3-1s1.6.3 2.2.9h.1l7.7-1.5 1.8 4.9-9.5 1.6c-.6.6-1.4 1-2.3 1s-1.6-.4-2.3-1c-.1-.1-.2-.2-.2-.3.2 3.6.4 7.2.4 10.7.6-.5 1.4-.7 2.2-.7.9-.1 1.6.2 2.2.9h.1l7.7-1.6 1.8 4.9-6 1c9.7-.4 19.2-1.1 28.6-1.9.6-3.4 1.1-6.8 1.5-10.2.6-5 .9-10 .9-15 .1-9.3-.6-18.5-2.1-27.7 3.9-9.5 3.9-18.9.1-28.4 3.8 9.5 3.8 18.9-.1 28.4 1.5 9.2 2.2 18.4 2.1 27.7 5.2 12.1 11.4 19.8 18.5 22.9 15.8 10.2 30.6 17.5 44.6 21.9 8.1 2.6 16 4.1 23.5 4.7-.9-8.7 1.2-14.4 6.3-17.2l-44.8-34.7c-4.7.4-8.1 2.7-10.2 6.9-.6 1.3-1.2 2.5-1.7 3.6.5-1.1 1.1-2.3 1.7-3.6 2.1-4.2 5.5-6.5 10.2-6.9-3.4-2.3-7.6-2.8-12.6-1.7 5-1.1 9.2-.6 12.6 1.7 2.5-5.6-3.7-19.1-18.9-40.5-3.4-.8-7.3-2-11.7-3.4-.3 0-.6-.2-.8-.5-.2-.2-1.1-3.1-2.6-8.5-1.6-5.5-3.7-8.4-6.5-8.5-2.8-.2-4.2-.4-4.4-.5-.1-.1-.1-.4 0-1 0-.5.2-.9.6-1.2.4-.3.8-.4 1.3-.4 6.7 1 11.4 6.7 14.3 17.3 2.3.8 4.4 1.4 6.4 1.9l-2.4-3.3c-.3-.2-.6-.3-.8-.5-1.6-1-2.6-1.8-3.1-2 .7.1 1.4.1 2.1.1-2.2-2.8-4.4-5.7-6.7-8.8-2.2-2.1-4.3-4-6.5-5.9-9.7-3.7-19.5-7.5-29.4-11.2-.2-.1-.6-.2-1.3-.4-.6-.2-1.2-.5-2-.7 8.9 7.3 13.8 14.9 14.9 22.8-1.1-7.9-6-15.5-14.9-22.8"/>
<path d="M361.88 254.4c.6.7.9 1.4.9 2.4 0 .9-.3 1.8-.9 2.4l9.6-1.6-1.6-4.2-8 .9v.1"/>
<path d="m 324.2,204.8 c -0.5,-2 -2.2,-4.1 -2.2,-4.1 0.2,1.9 -0.3,6.4 -3.2,7 -3,0.6 -4.6,-4.8 -4.4,-7.1 0,0 -2.2,2.6 -2.3,4.6 -0.2,1.9 0.4,5.1 2,7.1 1.3,1.6 4.1,2 5.4,1.8 2.5,-0.4 4.2,-2.7 4.8,-4.7 0.4,-1.5 0.3,-3.4 -0.1,-4.6 z"/>
<g fill="none">
<path d="M323.38 185.3c-.8-.7-1.6-1.4-2.4-2 0 0-.1-.1-.1-.2-.9-.6-1.9-.9-3-1-1.1 0-2.1.2-3.1.6l-.1.1c-.9.3-1.8.9-2.5 1.6l-.1.1c-.8.8-1.2 1.8-1.2 3v1.2"/>
<path d="m 320.6,197.8 c 0.3,-0.9 -0.2,-1.7 -1.5,-2.5 -0.7,-1 -1,-2.1 -0.9,-3.3 0.2,-1.2 1.3,-2 0.9,-3.2 -0.4,-1.2 -1.7,-2.6 -3.3,-2.6 -1.8,-0.2 -2.9,1.6 -2.9,3.2 0,2 0.8,3.7 1.8,5.3 0.7,1.2 0.3,2.6 0.7,3.8"/>
<path d="M359.98 187.9c-.1-.3-.1-.7-.2-1.1-.1-.1-.1-.4-.1-.6-.1-.2-.1-.3-.1-.5v-.1c0-1.3.2-2.2.6-2.9l.2-.2"/>
<path d="m 362.1,205.8 c 0.4,-0.3 1.4,-1.1 1.8,-1.4 1.1,-0.8 1.6,-1.3 1.5,-1.6 -0.1,-0.2 -0.3,-0.9 -0.6,-1.9 -0.4,-0.9 -0.8,-2.2 -1.4,-3.7 0,-0.1 0,-0.1 -0.1,-0.1 -0.7,-1.7 -1.1,-3.1 -1.4,-4.3 -0.3,-1 -0.7,-2.2 -1.5,-3.8"/>
<path d="M412.48 330.5c.1-9.3-.6-18.5-2.1-27.7-1-5.7-2.2-11.4-3.8-17.1"/>
<path d="M534.27 337.1c-.3-.7-.5-1.4-.7-2.1-.1-1.2-1-2.2-2.5-2.8s-2.4.3-2.6 2.7"/>
<path d="M531.67 365.6a25 25 0 003-12.2c0-1.5-.1-2.9-.4-4.3-.5-1-1-2-1.7-3-1.1-2.2-2-4-2.6-5.6-.6-2-1.1-3.9-1.5-5.6"/>
<path d="M542.27 345.9l-4.3-8.8c-1.3-1.5-2.4-1.5-3.7 0"/>
<path d="M531.38 372.5c4.1-2.3 6.9-5.3 8.4-8.8 1.2-4.1 2.1-9.9 2.8-17.3l-.3-.5"/>
<path d="M535.58 365c1.7-5 2.7-9.8 3-14.7v-2.2l-4.3-11"/>
<path d="M528.08 366.7c1.3-2.4 2-4.4 2.3-5.8.3-1.6.4-3.2.2-4.8-.1-.3-.2-.6-.2-.9-.4-1.9-1-3.5-1.7-5s-1.3-3.2-1.8-4.9c-.6-1.7-1.3-3.3-2-4.5"/>
<path d="M528.48 334.9c-.9.3-1.5.9-2.2 1.6a5.9 5.9 0 00-1.4 4.3"/>
<path d="M524.88 340.8c-.5.4-1.1 1.1-1.8 2.1-.6 1-1 2.5-1 4.5-.1 1.9.5 4.7 1.7 8.3"/>
<path d="M516.88 360.9c-4.3-.3-7.7.2-10.4 1.3"/>
<path d="M499.07 380c2.1.2 3.8.3 5.3.4"/>
<path d="M403.38 615.9a51.9 51.9 0 00-10.5 7.2c-.5.4-1 .9-1.5 1.3"/>
<path d="M354.98 199.7c-1.2-.1-2.2.1-2.9.4-.8.2-1.2 1-1 2.3.2 1.3.3 2.2.4 2.4 0 .1 0 .2.1.3 0 0 .2.1.2.2v.1"/>
<path d="M332.77 221.6c.4.3.8.7 1.2 1 6 4.5 10.9 7 14.6 7.5 1.2 0 2.6 0 4.2.1 1.5 0 2.9-.3 4.1-.6"/>
<path d="M323.88 203.8c0-1.2.1-2.5.1-3.7-.5.6-1 1.2-1.5 1.9"/>
<path d="M295.88 260.7c-.8-5.4-2.1-9.8-3.7-13.3-1.3-2.8-2.9-5.1-4.8-6.6"/>
<path d="M281.77 304.7c6.1-1.3 11.4-4.1 15.7-8.6 1.8-1.8 3.4-3.9 4.9-6.3"/>
<path d="M297.38 362.7c-.5-.6-.9-1.3-1.3-2s-.9-.9-1.7-.8c-1.7.3-3.5.4-5.3.6-1.9 0-3.6.3-5.2.6-1.2.3-2.6.5-3.9.6"/>
<path d="M257.68 395.3c2.9 1.2 5.6 2 7.8 2.5.8.2 1.5.3 2.2.4"/>
<path d="M267.68 398.2c1.5.2 2.8.2 3.9 0 1.5-.2 2.7-.5 3.7-.7 3.8-2 6.8-3.7 9-4.8"/>
<path d="M290.68 371.2c0 4.6-3.8 9.3-11.3 13.9-7.6 6.4-16.4 9.1-26.2 8.3"/>
<path d="M297.38 362.7c0 .1 0 .2.1.3.6.8 1.2 1.6 1.8 2.2.4.4.7.9 1 1.7"/>
<path d="M290.68 371.2c.3-.1.6-.2.6-.1h.9c1.7 0 3.5 0 5.3.1h.3c1.6.1 3.2.5 4.6 1.3.8.5 1.3 1.1 1.5 1.9"/>
<path d="M300.27 366.9c-.4-.2-.9-.4-1.2-.6-.6-.2-1-.5-1.6-.7-1.2-.3-2.5-.4-3.8-.4-1.8.1-3.6.2-5.5.2"/>
<path d="M303.88 374.4c0-1.1.1-2.3.2-3.6.1-.9 0-1.4-.4-1.7-1-.8-2.2-1.6-3.4-2.2"/>
<path d="M303.18 381.9c-.3-1-.8-1.9-1.3-2.8-1.5-.3-2.9-.4-4.4-.4h-1c-1.9 0-3.8.3-5.4.7"/>
<path d="M303.18 381.9c.6-1.7.9-3.5 1.1-5.2.1-.9 0-1.6-.4-2.3"/>
<path d="M295.48 385.6c-.4.2-.8.5-1.1.7-.5.5-1 .9-1.5 1.2-1 .5-1.7 1.1-2.6 1.6"/>
<path d="M292.57 285.7c-3.2 7.5-6.9 13.9-10.8 19"/>
<path d="M312.77 614.4c-3.7.6-7.1 1.6-10.2 3.1-3.2 1.4-6.3 2.9-9.5 4.7"/>
<path d="M369.48 618.5c-1.1.2-2.1.6-3 1-3.6 2.1-7.2 4.3-10.8 6.7"/>
</g>
<g fill="none" stroke-width="1.5">
<path d="M315.18 346.2h-16.4"/>
<path d="M162.88 191.6c.1-3.5 0-6.8-.3-10.1"/>
<path d="M226.47 188c-.3 1.5-.3 3.2-.2 5.1"/>
<path d="M310.57 183.3l-3.2-3.8"/>
<path d="M323.68 178.3l-4.7-6.9"/>
<path d="M318.68 180.6l-3.9-5.6"/>
<path d="M328.48 176.8l-4.8-7.8"/>
<path d="M297.38 175.9c-7.7 0-8-7.9-.9-23.6"/>
<path d="M314.77 181.5l-4.2-4.7"/>
<path d="M310.88 161.9c-1.1-.2-1.1-3.1 0-8.6"/>
<path d="M306.18 167.9c-2.3-1.3-2.3-5.2 0-11.7"/>
<path d="M300.77 172c-4-.5-4-5.8 0-15.8"/>
<path d="M362.38 164.6l3.9-8.7"/>
<path d="M366.77 165l1.9-4"/>
<path d="M422.57 304.4c-2.8 3.1-6.6 4.8-11.3 4.9"/>
<path d="M468.18 282.9l-5.7 4.8"/>
<path d="M472.88 289l-6.3 5.2"/>
<path d="M477.38 294.7l-6.8 5.8"/>
<path d="M424.57 319.4a20.1 20.1 0 01-10.9 4.7"/>
<path d="M425.88 328.3c-3.6 2.8-8.3 4.1-14 4.2"/>
<path d="M428.57 335c-4 3.2-7.9 4.1-11.9 2.8"/>
<path d="M515.27 343.3l-11.5 9.5"/>
<path d="M510.48 337.2l-10.8 9.1"/>
<path d="M496.18 318.4l-9.2 7.8"/>
<path d="M505.98 331.5l-10.3 8.6"/>
<path d="M500.98 325.1l-9.8 8.2"/>
<path d="M481.98 416.2c-3.9-1.3-7.1-.8-9.5 1.6"/>
<path d="M481.88 300.5l-7.4 6.2"/>
<path d="M424.48 310.9c-3.9 4.7-8.3 7-13.2 6.7"/>
<path d="M486.57 306.5l-7.9 6.7"/>
<path d="M491.07 312.3l-8.5 7.1"/>
<path d="M446.88 459.2c-1 0-2.1-.1-3.3-.3.4-2.7.1-4.9-.9-6.5"/>
<path d="M287.48 256.9c-.1-1.3-.6-2.4-1.2-3.6-2.9-5.4-8.6-7.7-17.2-7.1"/>
<path d="M233.68 278.9h-7.4c-4 .1-7.6-.1-11-.6"/>
<path d="M272.77 260.9c-3.8-3.3-9.1-4.7-16.2-4"/>
<path d="M264.18 264.3c-3.3-1.7-7.3-2.3-12.4-2.1"/>
<path d="M255.47 269.9c-2-1.8-5-2.4-9-1.7"/>
<path d="M247.38 275.9c-.6-2.6-3.1-3.3-7.5-2.3"/>
<path d="M280.27 257.1c-3.8-4.5-9.5-6.3-17.2-5.5"/>
<path d="M259.57 405.3c-3.4-.4-4.4-2.5-3-6.3"/>
<path d="M285.18 412.2h-10.2"/>
<path d="M283.38 419.4h-12"/>
<path d="M282.18 426.5h-13.8"/>
<path d="M313.68 339.6l-19-.6"/>
<path d="M166.77 191.3V183"/>
<path d="M307.77 331.9c-6 0-11.8-.3-17.3-1.2"/>
<path d="M291.07 398.5h-10.2"/>
<path d="M286.88 405.1h-7.7"/>
<path d="M377.07 513.5l-6.8 6.1"/>
<path d="M378.27 523.4l-8 7.5"/>
<path d="M379.18 532.4l-9.8 8.3"/>
<path d="M246.77 451.5c-2.1-2.3-4-4.5-5.6-6.6-2.2-3.1-3.1-6.6-2.7-10.5"/>
<path d="M251.88 444c-1.8-.6-3.6-1.9-5.4-3.8-2.8-3-4.6-6.2-5.6-9.9"/>
<path d="M254.88 435.9c.3 0-.3-.3-1.7-.9-1.4-.5-2.7-1.3-3.8-2.3-2.6-2.3-5-5.1-7-8.4"/>
<path d="M277.07 433.7h-12.2"/>
<path d="M271.38 440.2c-3 .1-5.9.1-8.9 0"/>
<path d="M238.18 452.4c-1.2-1.6-2-3.5-2.4-5.7-.7-3.6-.8-7.3-.3-11.1"/>
<path d="M229.88 449.7c-.8-2-1-4.4-.8-7.2.3-4 2-7 4.9-9"/>
<path d="M268.88 634.2c-6.7-.2-12-2.1-16-5.7"/>
<path d="M266.27 645.2c-5.7.1-10.1-1.4-13.4-4.5"/>
<path d="M268.38 639.5c-6.3.8-11.8-1-16.4-5.3"/>
<path d="M265.38 656.7c-4.6.8-8.2-.1-10.7-2.6"/>
<path d="M265.38 651.3c-4.1.9-8.1-.4-12.2-3.7"/>
<path d="M381.77 551.6l-12.1 11.5"/>
<path d="M381.48 562.9l-12.8 11.9"/>
<path d="M382.38 572.2l-14.4 12.9"/>
<path d="M365.27 662.2c-3.1.5-5.2-.2-6.2-2.1"/>
<path d="M372.18 656.5c-.8 0-1.6.1-2.4.1-4.1.3-7.6-.4-10.4-2.2"/>
<path d="M373.68 649.7h-3.6c-4.1.2-7.9-.2-11.3-1.2"/>
<path d="M375.98 643.7c-2.2 0-5.1-.1-8.6-.2-4.2-.2-7-1.2-8.6-3.1"/>
<path d="M375.38 636.9c-2.4 0-4.9 0-7.4.2-4 .3-7.5-.6-10.4-2.6"/>
<path d="M381.27 540.9l-11.6 10.7"/>
<path d="M377.18 680c.4-1.1 1.1-2 2-2.6 2.9-2.1 6.2-3.5 9.9-4.2"/>
<path d="M263.27 678.5c-5-2.5-10.1-2.5-15.2 0"/>
<path d="M266.57 669.9c-4.6-2.8-9.4-3-14.3-.5"/>
<path d="M262.68 673.2c-4-2-8.1-2-12.2 0"/>
<path d="M258.48 684.8c-4.4-2.2-9.5-2-15.4.3"/>
<path d="M391.27 688.7c1.1-2 3.1-3.1 5.9-3.3"/>
<path d="M397.18 694a7.7 7.7 0 015.3-4.5"/>
<path d="M386.27 686.5c1.4-3.3 4-5 7.6-5"/>
<path d="M382.38 682.7c2-2.5 4.7-4.3 7.9-5.3"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 31 KiB

View file

@ -1,10 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="cowHorns" stroke-width=".3">
<path d="M95.56 120.94c-.91-.13-1.52.89-2.56 1.24-1.22.4-2.4.18-4.09-.47-6.16-2.37-13.34-12.34-13.34-23.32 0-12.67 5.97-19.14 10.6-28.82 1.94-4.06 1.43-9.1.54-9.52-.62-.3-.92 1.37-1.33 2.57-3.61 10.64-18 20.62-18 38.86 0 13.18 6.16 21.42 12.46 27.63 3.75 3.7 8.2 5.89 9.18 6.8.74.68 1.3 1.5 1.55 2.01.23.51.46 1.1.98 1.59.56.48.97.33 1.38.18 1.35-.67 4.07-4.18 4.76-9.01.7-5.06.1-9.42-2.13-9.74zm8.82 0c.91-.13 1.52.89 2.56 1.24 1.22.4 2.4.18 4.09-.47 6.16-2.37 13.34-12.34 13.34-23.32 0-12.67-5.97-19.14-10.6-28.82-1.94-4.06-1.43-9.1-.54-9.52.62-.3.92 1.37 1.33 2.57 3.61 10.64 18 20.62 18 38.86 0 13.18-6.16 21.42-12.46 27.63-3.75 3.7-8.2 5.89-9.18 6.8-.74.68-1.3 1.5-1.55 2.01-.23.51-.47 1.1-.98 1.59-.56.48-.97.33-1.38.18-1.35-.67-4.07-4.18-4.76-9.01-.7-5.06-.1-9.42 2.13-9.74z"/>
<g fill="#000" stroke="none">
<path d="M83.47 73.4a2.2 2.2 0 01-.67 1.08c.09-.42.23-.94.67-1.07zm-.9 1.38c.22.54-.18.84-.56 1.02.17-.35.41-.66.56-1.02zm-1.66 2.23c.37-.24.68-.56 1-.86-.25.7-.52.85-1 .86zm-.18.42c-.24.36-.53.7-.76 1.09.03-.57.22-.92.76-1.09zm5.33-15.4c.22.43-.04.8-.33 1.11.14-.37.28-.74.33-1.11zm.34.98c.28.44-.08.85-.33 1.11.12-.38.3-.73.33-1.11zm.56-.21c.43.39.2.8-.02 1.15.01-.4.07-.84.02-1.15zm-9.16 49.15c-.34-.67-1.07-1.08-1.14-1.82.45.61 1.03 1.04 1.13 1.82zm-.97-2.4a1.24 1.24 0 01-1.04-1.2c.27.45.67.88 1.04 1.2zm-.44-1.69c-.78-.17-1.31-.65-1.41-1.41.37.62.84.98 1.4 1.41zm-.85-1.86c-.47-.4-.58-.91-.54-1.47a9 9 0 01.53 1.46zm-.08-1.97c-.69-.41-.58-1.2-.12-1.68-.15.62-.13 1.25.12 1.68zm32.92 32.12c.63-3.19-.94-10.94-3.76-12.74-2.06 2.42-.11 13.65 2.68 14.81-3.13-1.32-4.9-11.6-3.23-14.47.15-.27.28-.48.55-.58.29.02.5.24.68.4 2.46 2.41 3.97 8.65 3.08 12.58zm8.09-62.75c.49.22.57.63.67 1.07-.34-.24-.47-.69-.67-1.06zm.9 1.38c.15.35.41.7.57 1.02-.45-.19-.69-.57-.57-1.02zm.66 1.37c.32.3.67.64 1 .86-.56.04-.9-.37-1-.86zm1.18 1.28c.53.2.81.55.77 1.1-.19-.43-.54-.73-.77-1.1zm-5.33-15.4c.01.4.21.76.33 1.12-.36-.35-.5-.69-.32-1.12zm-.34.98c.01.4.21.76.33 1.12-.35-.35-.5-.7-.32-1.12zm-.56-.21c-.1.4-.02.76.01 1.15-.27-.43-.29-.78-.01-1.16zm9.17 49.15c.03-.8.73-1.24 1.13-1.83-.1.72-.75 1.23-1.14 1.83zm.96-2.4a5.7 5.7 0 001.04-1.21c.03.6-.56 1.13-1.04 1.21zm.44-1.69a4.98 4.98 0 001.41-1.41c-.07.94-.7 1.25-1.4 1.41zm.85-1.86c.12-.5.33-.99.54-1.48.1.58-.14 1.1-.54 1.47zm.08-1.97c.37-.58.29-1.05.12-1.67.7.6.47 1.3-.12 1.66zm-32.92 32.12c-.68-4.1.36-8.96 2.8-12.23.25-.32.8-1.05 1.23-.59 2.28 3.49-.04 13.4-2.72 14.85 2.7-2.42 4.33-10.6 2.68-14.52-.4-.7-1.02.48-1.28.75-2.08 3.63-3.34 7.87-2.71 11.74z"/>
<path d="M94.27 122.29c-.56.43-1.03.97-1.45 1.52-2.5 3.62-3.3 10.66-2.13 14.08l-.27.1c-.84-2.99-.59-10.5 2.33-14.24.45-.53.95-1.05 1.52-1.46zm11.4 0c3.71 2.63 5.55 10.75 3.84 15.7l-.28-.1c1.47-3.84.3-11.96-3.56-15.6z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -1,43 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/7/76/Beauville.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="cowStatant" stroke-width=".37">
<path class="secondary" d="M80.34 121.65s.2.9-.03 1.32c-.54.93-2.7 1.19-3.8 1.23-.35.01.24-1.24.68-2.04 0 0-.33.33-.52.63a5.31 5.31 0 0 1-.33.5s-.7.12-1.26.12c.17-.53.73-1.07 1.24-1.89.4-.63 1.35-.26 2.1-.19.77.07 1.92.32 1.92.32z"/>
<path d="M82.75 100.16a14.66 14.66 0 0 0-1.82 7.45c.07 2.61.13 4.9-.81 7.41-.3.74-.61 2.3-1.1 3.5a7.07 7.07 0 0 1-1.1 1.72c-.3.36-.65.46-.98.64-.27.15-.55.38-.78.78.74.2 3.43.39 4.18.28.65-.3.2-1.69.5-1.7.35-.01.38.86 1.04.84 0-.4.17-.94.17-1.3.2-1.1-.22-1 .8-3.82 1.55-4.17 2.57-5.19 3.1-6.24.32-.63.16-1.53.09-2.2a3.9 3.9 0 0 1 .43-2.46 15.18 15.18 0 0 0 1.7-6.28"/>
<path class="secondary" d="M132.27 123.57s.2.9-.03 1.32c-.54.93-2.7 1.19-3.8 1.23-.35.01.24-1.24.68-2.04 0 0-.33.33-.52.63a5.31 5.31 0 0 1-.33.5s-.7.12-1.26.12c.17-.54.73-1.07 1.24-1.89.4-.63 1.35-.26 2.1-.2.76.06 1.92.33 1.92.33zm-13.6-1.87s.2.9-.04 1.33c-.54.92-2.69 1.18-3.8 1.23-.35.01.24-1.25.68-2.05 0 0-.33.33-.52.64a5.31 5.31 0 0 1-.33.5s-.7.12-1.26.12c.17-.54.73-1.08 1.24-1.9.4-.63 1.36-.25 2.1-.18.76.06 1.92.31 1.92.31zm-29.06 1.87s.2.9-.03 1.32c-.53.93-2.69 1.19-3.8 1.23-.35.01.24-1.24.69-2.04 0 0-.34.33-.53.63a5.31 5.31 0 0 1-.33.5s-.7.12-1.26.12c.17-.54.74-1.07 1.25-1.89.4-.63 1.35-.26 2.1-.2.77.06 1.91.33 1.91.33z"/>
<path d="M115.76 100.81c.18.58.43 1.28.79 2 .84 1.73 2.39 2.37 2.66 4.61a14.6 14.6 0 0 1-.77 7.71c-.3.74-.6 2.34-1.12 3.54-.33.78-.84 1.3-1.09 1.63-.3.35-.65.45-.98.63-.27.15-.55.39-.78.79.74.2 3.43.38 4.18.27.65-.3.2-1.68.5-1.7.35 0 .38.86 1.04.85 0-.4.17-.94.17-1.3-.03-1.09-.47-.9.55-3.74 1.56-4.2 2.6-5.23 3.13-6.3.35-.65.06-2.17-.01-3.11.44-1.2-.06-4.25.58-5.96"/>
<path class="tertiary" d="M127.96 107.02c-.54 1.38-2.83 3.05-3.23 3.3-.4.25-.18 2.33-.6 2.33-.49 0-.67-1.8-1.14-1.8-.24 0-.71.1-1.25.12-.47 0-1-.1-1.31-.1-.67 0-.62 1.99-1.1 1.99-.66 0-.28-2.25-1.1-2.4-2.47-.4-5.86-5.39-5.86-5.39a11.05 11.05 0 0 1 6.75-4.29c1.03-.15 2.15-.14 3.03.43 1.56 1 1.74 3.31 3.16 4.51.75.64 1.73.87 2.68 1.1"/>
<g stroke="none" fill="#000">
<path d="m121.12 113.23-.5 1.4-.51 1.4-.51 1.4-.24.7a4.14 4.14 0 0 0-.15.72 2.35 2.35 0 0 1 .02-.76 13.1 13.1 0 0 1 .6-2.16 17.17 17.17 0 0 1 1.29-2.7zm-1.78-3.85c-.28.07-.57.07-.84.03s-.56-.14-.82-.26a2.07 2.07 0 0 1-.68-.53 1.02 1.02 0 0 1-.22-.37.76.76 0 0 1-.04-.43c.1.26.28.44.47.6a6.67 6.67 0 0 0 1.37.73l.76.23z"/>
</g>
<path class="secondary" d="M76.7 83.86c-.3-.13 3.62.87 5.11-2.4 1.44-2.83-.62-4.32.53-6.86.27-.62.94-.78.63-.92a2.09 2.09 0 0 0-2.3 1.12c-.81 1.6.07 2.95-1.02 4.6-.84 1.3-2.53.64-2.38.72 0 0-1.39-.19-1.76 1.5-.37 1.72 1.18 2.24 1.18 2.24zm-6.15-.71c.16-1.74-1.24-1.96-1.24-1.96.17-.03-1.64.1-2.05-1.4-.67-2.34.9-2.23.45-4.63a2 2 0 0 0-1.78-1.74c-.32.04.2.44.3 1.1.34 2.75-2.19 2.97-1.62 6.58.44 3.56 4.5 3.77 4.16 3.81a1.83 1.83 0 0 0 1.78-1.76z"/>
<path d="M67.4 81.97c-1.28-.7-2.48-.34-3.54-.94-.63-.35-.73-.9-.88-1.2-.1-.1-.4-.08-.46-.02-.2.44-.3 1.91.5 3.17-.04.3.41 1.1.69 1.27.05.14.2.54 1.05 1"/>
<g stroke="none" fill="#000">
<path d="M64.83 85.1c.41.27.9.46 1.38.59l.74.15.39.02H67.63c.03-.02.07-.02.08-.05-.01.03-.05.04-.08.05l-.1.03-.2.03-.38.01c-.26 0-.52-.02-.78-.05a5.1 5.1 0 0 1-1.54-.44zm4.14-1.48c-.25-.3-.5-.58-.78-.85-.13-.12-.27-.26-.42-.37-.16-.11-.3-.22-.46-.29l.18-.32a3.26 3.26 0 0 1 .83.86c.25.32.45.65.65.97zm-3.36-.53c-.08.11-.2.15-.33.2-.12.02-.25.04-.36.02a.97.97 0 0 1-.34-.07c-.11-.04-.22-.1-.32-.18.13-.04.25-.04.36-.05h.33l.33.03a.83.83 0 0 0 .33.05zm.36.15c0 .1-.05.17-.1.24a.52.52 0 0 1-.22.12c-.06.03-.15.03-.23.03a.57.57 0 0 1-.23-.1c.06-.07.12-.1.19-.14a.97.97 0 0 1 .18-.06l.18-.05.23-.04zm1.59.7a3.16 3.16 0 0 0-1.15-1.04l-.15-.06-.33-.08-.69-.15a5.7 5.7 0 0 1-1.02-.37l-.3-.2c-.21-.14-.39-.29-.57-.45-.17-.18-.33-.36-.41-.6.13.2.31.35.5.49.2.13.4.26.6.37l.3.16a11.98 11.98 0 0 0 1.67.49l.36.1.18.1.15.1c.4.3.7.7.86 1.15z"/>
</g>
<path fill="#f6f6f6" d="M64.94 85.57c-.1-.31-.09-.66.02-.97l.06-.13c.08-.14.26-.2.37-.33.2-.06.4.17.53.33a2.35 2.35 0 0 1 .38 2.03c-.22.68-.92 1.21-1.64 1.09"/>
<path d="M76.83 99.13a6.04 6.04 0 0 0-1.86-2.3l-2.5-1.4c-1.4.36-2.81-.33-3.61-.02-.3.13-.8.4-1.22.8-.12.13-.29.4-.38.54a2.66 2.66 0 0 1-1.54 1.13c-.6.13-1.22-.08-1.83-.17a1.8 1.8 0 0 1-1.02-.52l-.75-.67c-.36 0-.7-.04-.9-.32-.15-.18-.17-.41-.23-.62-.2-.92-1.05-1.52-1.05-2.51 0-.2.03-.4.11-.6.22-.53.79-.82 1.3-1.09.55-.29.91-.53 1.17-1.11l.91-1.98c.22-.47.43-.94.76-1.34.28-.33.6-.57.6-1.04l.02-.21c.03-.07.09-.13.15-.11.1.01.13.05.24 0 .1-.04.18-.13.22-.22.17-.36-.03-.83-.03-1.22 0-.37.11-.74.49-.9.12-.06.26-.09.35-.19.07-.08.1-.19.13-.3a2.07 2.07 0 0 1 .62-1c.11-.1.23-.2.3-.34.06-.1.06-.23.07-.36.03-.55.1-1.06.02-1.61-.02-.07.58.12.63.15.17.1.3.34.46.41.42.16.6-.42.78-.69.1-.15.25-.31.42-.23.12.05.13.25.25.34.19.2.5 0 .67-.2.17-.21.39-.47.64-.4.12.02.2.13.33.13.2.02.34-.2.52-.29.3-.1.6.14.9.14.26 0 .5-.19.77-.15.22.03.39.2.6.26.24.06.5-.05.7.07.22.13.25.44.44.6.35.3.88-.07 1.33.08.33.1.52.34.85.4.1.29.04.85-.1 1.13-.08.17-.19.33-.15.5a.48.48 0 0 1-.33-.32c-.43.51-.32 1.57.1 2.08.48.58 1.36.43 1.85.32 2.1-.45 2.7-2.1 2.7-2.1 5.33.79 6.17-.7 7.48-.7 2.02 0 3.47 1.06 6.76 1.35 2.92.26 7.98.17 11.1.08 3.92-.1 8.72-.96 9.63-.96 1.22 0 3.55.29 5.94.34 2.35.05 4.38-.22 5.8-.22 2.5 0 5.73 1.05 6.67 2.18a15.73 15.73 0 0 1 3.4 8c.74 5.18-.63 10.85-.25 13.02.3 1.96 1.46 2.3 1.58 4.24.09 2.34-.81 3.53-.69 4.97.39.75 1.52 3.68.32 4.8.07-1.48-.5-2.3-1.1-3.15-1.19-1-2.34-2.6-2.7-6.36-.44-5.22 1.2-9.76 1.04-14.53 0-3.5-1.56-4.7-1.56-4.7s-.47 4.3-2.03 6.8c0 1.11-1.16 4.72-1.64 5.98 0 1.83 1.37 4.27 1.4 5.54.44.84 1.25 2.14 1.18 2.88-.1 1.19-.8 1.42-.67 5.9.1 3.02.67 3.5.7 4.6.01.35-.17.89-.17 1.29-.66.01-.69-.86-1.03-.84-.3.01.14 1.39-.51 1.7-.75.1-3.44-.08-4.18-.28.23-.4.5-.64.78-.79.33-.18.68-.27.98-.63.64-.79.94-3.72.94-5.03-.08-2.7-.9-4.1-2.22-6.11-1.1-1.97-2.65-1.92-4.04-3.24-1.5-1.44-2.34-2.96-2.34-2.96s-.5-1.21-.9-1.86c-.6-.41-2.02-.41-3.02-.41-4.96 0-7.63 5.93-12.44 5.93-1.6 0-2.18-.37-3.33-.47-.88-.08-4.18.58-7.06-.15-2.09-.52-2.99.2-3.54.2h-.08c-.06 1.46-.6 2.66-.65 3.15-.1 1.19-.73 1.42-.6 5.9.1 3.02.6 3.5.63 4.6.01.35-.17.89-.17 1.29-.66.01-.69-.86-1.03-.84-.3.01.14 1.39-.51 1.7-.75.1-3.44-.08-4.18-.28.23-.4.5-.64.78-.79.33-.18.68-.29.98-.63.64-.79.89-3.72.89-5.03-.05-1.36-.63-1.87-.93-3.25-.3-1.38-.33-2.53-.33-2.53s-.88-1.4-1.55-3.24l-.56.01a5.49 5.49 0 0 1-3.58-1.8c-.5-.67-.96-.8-2.18-2.6-1.2-1.84-1.51-3.62-2.1-4.62z"/>
<g stroke="none" fill="#000">
<path d="m68.2 94.82.78-.3.75-.3.73-.32.74-.35a3.45 3.45 0 0 1-3 1.27zm-6.1 1.5c.24 0 .48-.02.74 0s.5.07.73.13l.7.2.17.06.17.06.33.07c.44.05.9-.05 1.24-.32.16-.14.29-.32.4-.53a1.8 1.8 0 0 1 .44-.58l.03.03c-.14.2-.2.42-.3.64-.09.22-.21.47-.42.63a1.63 1.63 0 0 1-.68.37 2.37 2.37 0 0 1-1.14.03l-.18-.05-.17-.06a12.42 12.42 0 0 0-.67-.2c-.22-.05-.46-.09-.68-.1h-.7zm6.98-14.14c.26-.08.5-.2.7-.36l.28-.25.13-.15.13-.08.11-.03.14.03c.08.04.12.12.14.18l.02.12.04.2.09.38c.03.13.07.24.12.32.06.08.13.15.2.18l-.13.03a10.7 10.7 0 0 1 .97-.67c.1-.08.18-.18.23-.29 0 .14-.07.28-.14.39l-.27.3-.58.54c-.04.03-.09.04-.13.03h-.01a.69.69 0 0 1-.43-.29c-.1-.14-.15-.29-.18-.43l-.07-.4-.02-.2-.02-.07h.07l-.04.04-.15.12c-.11.1-.24.18-.36.24-.3.06-.57.13-.84.12zm1.35-1.28a.9.9 0 0 1 .01-.39 1.03 1.03 0 0 1 .49-.6.62.62 0 0 1 .38-.1l-.23.27-.22.26-.21.27-.22.29z"/>
</g>
<path d="M73.1 82.87c.16.34.49.62.88.6 0 0-.03.19.1.5.06.16.21.25.27.42.03.1.04.2.03.29a.79.79 0 0 0 .33-.37c.07-.18.05-.35.08-.53.04-.32.14-.48.18-.57.12.06.34.38.63.5"/>
<g stroke="none" fill="#000">
<path d="m75.43 83.71.05-.2.06-.21.05-.2.03-.1.01-.06.02-.03v-.01.1l.01.1.03.21.03.2.04.2zm-2.36-1.96c-.03.39.02.78.2 1.05l-.33.14c-.05-.2-.05-.43-.03-.62.02-.2.07-.39.16-.57zm-5.68-.1c.17.12.3.25.43.4a1 1 0 0 0 .39.27l-.18.14c0-.16.08-.28.18-.36a.99.99 0 0 1 .26-.18l.25-.14a.41.41 0 0 0 .2-.2c.02.1-.04.21-.1.3a1.66 1.66 0 0 1-.21.22l-.2.18c-.05.05-.08.1-.08.16 0 .09-.07.14-.15.14h-.03a.58.58 0 0 1-.29-.18c-.08-.07-.14-.16-.19-.25l-.14-.25a.55.55 0 0 1-.14-.24zm-5.97 10.52c.2-.05.44.01.63.1l.56.27c.34.16.73.2 1.13.2l.62.01c.2.01.43.04.63.1.2.05.42.14.6.26s.33.29.41.5a1.66 1.66 0 0 0-1.06-.47 8.14 8.14 0 0 0-.6-.03h-.62c-.2-.01-.42-.01-.65-.07a1.73 1.73 0 0 1-.62-.25c-.19-.1-.34-.25-.5-.37a.94.94 0 0 0-.53-.25zm8.1-4.66.01.44c0 .14.03.26.02.43l-.04.24a.6.6 0 0 1-.14.23l-.18.15-.1.05c-.03.02-.08.04-.12.03.04-.01.04-.06.05-.08l.06-.1.1-.18c.05-.12.06-.22.08-.36 0-.12 0-.3.04-.44a1 1 0 0 1 .22-.41zM66.87 89c.04 0 .1.04.11.1.03.05.03.1.01.16 0 .06-.04.11-.07.15l-.1.12c-.06.05-.1.1-.12.13l-.07.18-.08.24c-.04.08-.08.18-.16.25a.47.47 0 0 1-.25.12l-.24.08c.02-.1.09-.16.14-.23l.14-.17c.05-.1.07-.23.11-.41.03-.08.07-.18.14-.28l.12-.1.13-.08.1-.04.06-.04c.03-.04.07-.11.03-.18z"/>
</g>
<path fill="#f6f6f6" d="M72.55 86.97c.03-.17.1-.39-.22-.46-.33-.08-.85-.26-1.47-.1a1.32 1.32 0 0 0-.93.89c-.07.25.18.52.4.68.22.15.49.19.73.2.75.02 1.36-.42 1.5-1.21z"/>
<path stroke="none" fill="#000" d="M71.05 87.13v-.1c0-.09-.01-.21-.1-.27-.08-.05-.23-.01-.3.04l-.05.04c-.13.11-.13.3-.12.47.02.17.16.46.4.5.18.03.49-.07.35-.3-.04-.07-.1-.13-.12-.2-.06-.07-.06-.12-.06-.18z"/>
<g stroke="none" fill="#000">
<path d="M70.4 86.9c-.14.1-.29.22-.47.29l-.27.08h-.3c-.19-.03-.34-.1-.5-.15-.17-.05-.32-.11-.5-.11.17-.04.34-.01.51 0 .17.03.35.06.5.04.08 0 .15-.03.22-.04.07-.03.15-.06.2-.1.13-.07.24-.18.36-.3zm-1.49-1.23c-.03-.22.18-.45.46-.45l.16.01h.04-.02l.01-.07a.48.48 0 0 1 .11-.22c.11-.12.28-.2.44-.15l.15.04h.02s-.02 0 0 0l.1-.08a.43.43 0 0 1 .19-.09.74.74 0 0 1 .38-.01l-.16.14a.3.3 0 0 1 .07-.18c.04-.04.08-.08.12-.1.1-.04.18-.05.28-.04.16.04.27.13.41.2-.15 0-.3-.03-.41-.02-.06 0-.1.03-.14.06-.04.02-.04.05-.03.06.03.05.02.1-.03.13l-.05.01h-.1a.57.57 0 0 0-.22.04l-.1.06-.13.1a.28.28 0 0 1-.15.05l-.14-.01-.14-.04c-.03-.02-.08 0-.11.02l-.04.06-.03.08a.37.37 0 0 1-.08.14.23.23 0 0 1-.15.05h-.12l-.13-.06c-.15 0-.36.08-.46.27zm3.48.68c.07.05.2.05.33.01a.47.47 0 0 0 .3-.26c0 .15-.08.3-.2.41l-.22.14a.64.64 0 0 1-.3.04zm-1.34 2.45.53-.15.48-.18.45-.23.24-.14.25-.14a1.38 1.38 0 0 1-.16.24 1.63 1.63 0 0 1-.67.52c-.18.08-.36.13-.55.14-.2.03-.39.01-.57-.06zm3.1 5.04c.07-.01.12-.08.14-.14.03-.07.06-.13.13-.19a.36.36 0 0 1 .22-.12c.08-.03.16-.03.23-.03.15 0 .3.01.43-.02a2.46 2.46 0 0 0 1.17-.39c.24-.13.46-.31.64-.52l.12-.16.17-.2c.04-.02.08-.06.14-.08.05-.03.12-.03.18-.03l.19.03.04-.03c.03-.02.04-.08.04-.13l.02-.22a.83.83 0 0 1 .08-.27c.04-.08.1-.13.14-.19l.1-.17c.08-.12.13-.24.16-.38.08-.28.08-.57.01-.86.14.26.2.58.17.89-.02.15-.06.3-.13.45-.05.15-.16.3-.2.39-.03.05-.03.1-.03.15v.22a.8.8 0 0 1-.07.29.97.97 0 0 1-.11.14.33.33 0 0 1-.2.07c-.13.01-.2-.03-.24-.03-.03 0-.04 0-.07.04l-.11.14-.15.18c-.42.47-1 .78-1.62.88-.15.03-.3.04-.47.03-.15 0-.31-.03-.44-.06-.14-.01-.27-.02-.37.06l-.14.15c-.03.06-.1.12-.18.11zM63.54 95c.05-.15.12-.29.21-.41.1-.13.24-.24.4-.3a.72.72 0 0 1 .5-.04.6.6 0 0 1 .22.14c.06.06.1.11.17.13-.07.05-.18.01-.25 0-.07-.03-.13-.03-.2-.03-.12 0-.24.03-.35.07s-.24.1-.35.2c-.1.07-.2.16-.36.24zm.77.41.26-.13.22-.11.23-.11.27-.11c0 .1-.06.2-.13.28a.67.67 0 0 1-.25.2.8.8 0 0 1-.3.07.5.5 0 0 1-.3-.09zm-2.43-1.27-.21-.34-.2-.32c-.06-.1-.12-.2-.2-.26s-.18-.12-.33-.12c.1-.11.29-.13.44-.07a.83.83 0 0 1 .35.3c.06.12.12.26.15.4a.83.83 0 0 1 0 .41zm-.5.24a.55.55 0 0 1-.33-.04.64.64 0 0 1-.25-.22.69.69 0 0 1-.12-.32.48.48 0 0 1 .08-.33l.14.26.14.22.15.2.2.23zm2.53-6.03c.1.1.13.27.12.41a1.31 1.31 0 0 1-.11.42l-.17.34-.15.36c-.08-.12-.08-.29-.07-.43.03-.14.07-.27.13-.4l.15-.34c.05-.1.08-.21.1-.36zm-.98 3.71c.1-.03.18-.03.24-.03l.23.02.2.05.22.11a.41.41 0 0 1-.23.11.75.75 0 0 1-.48-.08.45.45 0 0 1-.18-.18zm10.7-10.87a.72.72 0 0 1 .07-.38c.06-.1.13-.22.21-.3.08-.08.2-.17.3-.2a.67.67 0 0 1 .38-.08l-.25.25-.22.22-.22.22c-.09.1-.15.18-.26.27zm-1.95-.03c-.05-.1-.03-.2-.02-.3.02-.09.06-.17.11-.25a.69.69 0 0 1 .2-.21c.08-.06.16-.1.27-.11l-.1.26-.12.2-.14.2-.2.2zm1.44-1.22a.41.41 0 0 1 0-.26.55.55 0 0 1 .14-.22.44.44 0 0 1 .22-.12.41.41 0 0 1 .27 0l-.14.19-.14.14-.15.12-.2.15zm-3.53.78a.32.32 0 0 1-.14-.17c-.02-.07-.02-.14-.02-.2l.07-.17c.04-.06.1-.1.17-.13l.05.2v.15l-.05.15-.08.17zm-4.01 4.57-.03.27-.03.28c-.01.19-.03.37 0 .56l-.18-.54-.07-.27-.05-.3zm.82-1.87.22.25.1.11.11.14.02.03V84.17l-.02.1.03.16c.01.07 0 .15-.06.2a.17.17 0 0 0-.08-.13c-.04-.04-.08-.07-.1-.14a.44.44 0 0 1-.06-.22v-.08.01l-.07-.14-.07-.16a1.45 1.45 0 0 1-.02-.35zm10.46-2.08.02.03-.02-.06a.28.28 0 0 0-.05-.08l-.06-.11c-.05-.15-.04-.3-.04-.43a1.1 1.1 0 0 0 .2.33l.15.11c.03.03.07.06.1.11.02.06.05.14.02.22zm-2.07 1.8c.09-.1.11-.28.14-.46a1.1 1.1 0 0 1 .15-.56c-.05.18-.01.36.03.54l.06.3a.9.9 0 0 1-.03.32zm-1.02.31.1-.35.11-.33c.03-.1.06-.22.06-.33l-.02-.34.11.34.04.37-.02.36-.02.35z"/>
</g>
<g>
<g>
<path d="M78.5 83.9c2.39-1.35 3.1-.56 4.25-1 .68-.26 1.13-.91 1.33-1.18.1-.08.41-.02.45.05.15.47-.07 2.13-1.02 3.25 0 .3-.56 1.05-.85 1.16-.07.14-.27.51-1.18.86"/>
</g>
<g stroke="none" fill="#000">
<path d="M81.52 87.22a5.16 5.16 0 0 1-1.57.22 7.5 7.5 0 0 1-1.17-.11l-.2-.06-.1-.04-.06-.05c.01.02.05.04.08.05l.1.03.2.03.38.02c.26 0 .5-.01.76-.04.5-.05 1-.18 1.45-.38zm-4.25-1.55a4.13 4.13 0 0 1 .72-1.5c.13-.15.26-.3.4-.42l.22.3c-.13.09-.29.19-.41.3a3.42 3.42 0 0 0-.93 1.32zm3.36-1.07h.34l.33.02.34.04c.1.03.22.05.34.1a.8.8 0 0 1-.34.12c-.13.03-.24.03-.36.02a1.69 1.69 0 0 1-.36-.08.41.41 0 0 1-.3-.22zm-.6.31.21.06.18.07.17.1c.05.03.1.08.16.16a.53.53 0 0 1-.23.05.41.41 0 0 1-.22-.05c-.07-.04-.14-.08-.18-.15a.25.25 0 0 1-.1-.24zm-1.38.2c.23-.43.61-.78 1.04-1l.34-.15.36-.08c.25-.04.49-.06.72-.06.47-.01.94-.01 1.4-.1a2.25 2.25 0 0 0 1.2-.63 1.8 1.8 0 0 1-.49.53c-.2.13-.43.24-.66.31-.23.07-.47.11-.72.14l-.72.06a10.76 10.76 0 0 0-.69.05c-.23.03-.42.1-.64.18-.4.17-.8.41-1.14.75zm.11 1.3c.43.05.85.06 1.26 0l.29-.05.29-.1a4.58 4.58 0 0 0 2.4-1.89 3.5 3.5 0 0 1-1.71 1.9c-.2.1-.4.17-.6.24l-.32.09c-.11.02-.23.02-.34.02a3.04 3.04 0 0 1-1.27-.2z"/>
</g>
</g>
<g stroke="none" fill="#000">
<path d="M118.23 83.5a33.27 33.27 0 0 0 5.22.89 27.86 27.86 0 0 0 5.28.04 13.2 13.2 0 0 1-2.63.37c-.44.03-.9.03-1.34.03a21.77 21.77 0 0 1-2.66-.26c-.44-.09-.89-.15-1.31-.26a13.74 13.74 0 0 1-2.56-.82zm14.04 7.4c.01.25-.02.5-.06.75l-.15.73c-.12.48-.29.95-.48 1.4-.2.46-.42.9-.65 1.34l-.37.65-.4.62.01-.18c.23.56.29 1.14.3 1.72a9.83 9.83 0 0 1-.19 1.68 13.52 13.52 0 0 1-1.08 3.19 23.4 23.4 0 0 0 .78-3.25c.08-.53.13-1.09.13-1.62 0-.54-.08-1.08-.27-1.56a.17.17 0 0 1 .01-.17l.4-.6.39-.63.36-.63.18-.32.16-.33c.21-.44.42-.88.57-1.35l.1-.35.1-.36c.07-.25.13-.48.16-.73zm-2.96 14.78a2.48 2.48 0 0 1 .28 2.44 1.1 1.1 0 0 1-.25.36.69.69 0 0 1-.37.22c.2-.2.29-.44.34-.69.06-.24.09-.5.1-.76.01-.26 0-.5-.01-.77l-.09-.8zm-1.57 2.43a3.83 3.83 0 0 1-.95-.3 6.65 6.65 0 0 1-1.64-1.12l-.17-.2a1.97 1.97 0 0 1-.36-.66c.22.25.47.44.72.64l.79.55.8.54.81.55zm-33.7-5.35a3.57 3.57 0 0 1-.36-1.47c-.04-.5-.04-1-.07-1.49a6.49 6.49 0 0 0-.04-.73c-.01-.25-.05-.48-.1-.72a3.33 3.33 0 0 0-.52-1.35 2.62 2.62 0 0 1 .8 1.28c.15.5.2 1.01.22 1.5.02.5 0 1-.01 1.5 0 .5-.02 1 .08 1.48zm-8.6-10.93a6.57 6.57 0 0 1-.88 1.94l-.25.36a8.25 8.25 0 0 1-1.12 1.31l-.59.6a8.05 8.05 0 0 0-1.08 1.3c.17-.56.52-1.04.87-1.48.36-.45.75-.86 1.1-1.29a15.4 15.4 0 0 0 1.95-2.74zm.27 10.72c.12.54.24 1.06.4 1.59l.24.77.13.39c.04.13.1.26.12.4a12.93 12.93 0 0 1 .44 2.42c.03.27.09.54.16.8a3.1 3.1 0 0 1-.33-.75c-.09-.27-.14-.53-.21-.8-.13-.53-.25-1.05-.42-1.56l-.24-.78-.2-.8a8.74 8.74 0 0 1-.1-1.68zm4.95 4.08a6.76 6.76 0 0 1 .12 2.1l-.12.7c-.11.46-.28.93-.57 1.33a2.24 2.24 0 0 1-1.1.88c.37-.29.66-.63.87-1.03a4.2 4.2 0 0 0 .44-1.27c.11-.44.18-.88.22-1.34.07-.44.1-.9.14-1.37zm-.69 14.9c.07.06.11.17.11.28s-.01.21-.04.3c-.07.2-.17.37-.29.52a2.01 2.01 0 0 1-.92.67 5.44 5.44 0 0 1 .63-.88l.32-.4.12-.2a.8.8 0 0 0 .07-.3zm-.26-7.49-.02 1.5.02 1.5.01 1.5-.01 1.5c-.1-.49-.17-.99-.2-1.48a27.46 27.46 0 0 1-.1-1.5 13.7 13.7 0 0 1 .3-3.02zm3.61-10.55c.34.16.67.27 1.01.38l1.02.32 1.04.32c.34.1.69.22 1.02.37a6.98 6.98 0 0 1-3.18-.73 3.1 3.1 0 0 1-.9-.66zm27.92-.43-1-1.67.04.05a13.72 13.72 0 0 1-2.94-3.46 9.63 9.63 0 0 1-.94-2.07 5.92 5.92 0 0 1-.25-2.25h.04a7.33 7.33 0 0 0 .44 2.17 9.4 9.4 0 0 0 .97 1.99 15 15 0 0 0 2.92 3.32l.04.04 1 1.67zm12.4-14.13c.16 0 .31.07.45.14l.4.23c.26.17.51.36.76.55l-.26.26a14.13 14.13 0 0 0-.96-.97 1.16 1.16 0 0 0-.38-.21zm-41.9 19.14.05-1.33.03-.66.01-.33.07-.34.1-.34a.7.7 0 0 1 .2-.31l.03-.03.05-.01.06-.05.13-.1a1.1 1.1 0 0 0 .2-.23c.13-.18.2-.38.25-.6.05-.2.07-.42.07-.64.03.22.03.44-.01.66-.03.22-.1.44-.2.65-.06.1-.13.2-.22.28l-.13.1-.07.06-.04.03-.02.01a.6.6 0 0 0-.12.25l-.06.3-.02.32v2.32zm-7.39-6.64a11.45 11.45 0 0 0 .14 3.38c.1.55.25 1.1.42 1.64l.56 1.6-.34.12-.49-1.65a14.19 14.19 0 0 1-.44-3.4 7.73 7.73 0 0 1 .15-1.69zm-1.3 11.69a41.32 41.32 0 0 1-.99 2.77l-.5 1.38-.23.7a4.14 4.14 0 0 0-.15.71 2.7 2.7 0 0 1 0-.74 16.93 16.93 0 0 1 .6-2.16c.17-.45.35-.92.56-1.36.22-.43.44-.87.72-1.3zm-2.35 6.49c.07.06.1.17.1.29s0 .2-.03.3c-.07.2-.17.36-.3.51a2.01 2.01 0 0 1-.92.68 5.44 5.44 0 0 1 .64-.89l.31-.4.13-.2a.8.8 0 0 0 .07-.3zm38.3.05c.07.07.12.18.12.3s-.02.2-.05.3c-.06.19-.16.35-.29.5a2.01 2.01 0 0 1-.92.68 5.44 5.44 0 0 1 .63-.88l.32-.4.13-.2a.8.8 0 0 0 .07-.3zm13.74 1.85c.07.07.1.18.1.29s0 .2-.03.3c-.07.2-.17.36-.3.51a2.01 2.01 0 0 1-.92.68 5.44 5.44 0 0 1 .64-.88l.31-.4.13-.21a.8.8 0 0 0 .07-.29zm-1.05-2.11.01-1.67c0-.28 0-.55-.03-.83a14.92 14.92 0 0 0-.35-2.43l-.4-1.61a10.2 10.2 0 0 1 .84 2.37l.13.83a8.63 8.63 0 0 1 .03 1.68c-.04.57-.1 1.12-.23 1.66zm7.27-5.38a5.52 5.52 0 0 1-.5-1.69 14.49 14.49 0 0 1-.12-1.7 11.73 11.73 0 0 0-.48-3.33l.02-.02c.3.49.49 1.05.6 1.62.1.56.14 1.14.18 1.7.04.57.07 1.14.15 1.7.08.54.23 1.07.47 1.56zm-.77 1.68a4.1 4.1 0 0 1-.68-1.74l-.16-.88-.1-.43-.06-.2-.07-.23a8.8 8.8 0 0 1-.35-1.8 6.1 6.1 0 0 1 .1-1.8h.03c.03.6.05 1.2.11 1.78.07.6.23 1.16.42 1.71l.07.2.07.23.1.44.19.88a5.8 5.8 0 0 0 .22.85c.1.26.22.52.38.76z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

View file

@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crescent" stroke-width=".5">
<path d="M84 65c-32 15-24 68 16 68s48-53 16-68c18 20 2 41-16 41S67 85 84 65z"/>
<path fill="none" d="M84 65c-26 15-14 56 16 56s42-41 16-56"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 386 B

View file

@ -1,66 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata source="http://wappenwiki.org/images/a/ad/Rossiter.svg" license="https://creativecommons.org/licenses/by-nc-sa/3.0"/>
<g id="crocodile" stroke-width=".35">
<g>
<path class="secondary" d="M109.05 119.34c-.95.53-1.2 1.82-.9 2.23.17-.24.46-.52.71-.64.6-.32 1.15-.36 1.78-.27"/>
<path class="secondary" d="M110.36 120.32c-.8.75-.9 2.25-.51 2.57.1-.27.34-.57.54-.76.22-.2.71-.7 1.35-.76m-3.05-3.8c-1.07.2-1.79 1.39-1.61 1.86.22-.17.58-.38.87-.42.7-.1 1.2.03 1.77.3"/>
<g>
<path d="M107.95 111.14c.29.37.57.74.92 1.04 1.03.87 3.47.81 4.38 1.8.75.82.61 1.07.65 2.02.02.29-.76.6-1.02.84-.46.4-1.33.47-1.86.5-.16 0-.46.06-.64-.07-.15-.1-.7-.44-1.32-.3-.58.14-.7.42-.7.62.63.26.71.58.77.87a.87.87 0 0 0-.4 1c.64-.16 1.1.35 1.18.64-.03.25.09.51.3.41.6-.23 1.17.29 1.3.93.04.22.01.18.22.2.23.03.23.09.45.03.13-.04.23-.12.34-.19.37-.29.2-.59.28-.7.39-.7.95-.71 1.6-.98.32-.13 2.37-.53 3.2-1.34.55-.75 1.16-.78 1.71-1.52.3-.39.6-.8.68-1.28.08-.51-.08-.79-.12-1.31-.04-.72.21-.94.3-1.66.07-.72-.05-1.76-.6-2.21-.37-.3-2.09-.9-2.53-1.1"/>
</g>
<g stroke="none" fill="#000">
<path d="M109.73 120.07a1.4 1.4 0 0 1 .4-.7 1.03 1.03 0 0 1 .98-.22l.18.06c.1.04.2.07.31.08.22.02.43.02.67.01l.02.04c-.19.17-.47.22-.72.2-.13 0-.26-.02-.39-.05l-.16-.05h-.15a.72.72 0 0 0-.52.19 1.09 1.09 0 0 0-.3.5l-.32-.06zm-.68-1.76a1.45 1.45 0 0 1 1.26-.06l.14.06.12.05c.04.03.15.03.24.03h.3a.58.58 0 0 1 .3.09l-.02.03-.28.06-.29.06c-.1.01-.2.04-.33 0l-.15-.06-.13-.04a1.57 1.57 0 0 0-.51-.06c-.18.01-.34.06-.5.14l-.15-.3z"/>
</g>
<path class="secondary" d="M77.15 119.4c-.94.55-1.16 1.85-.85 2.25.15-.25.44-.53.69-.65.6-.33 1.13-.39 1.77-.32"/>
<path class="secondary" d="M78.5 120.36c-.78.76-.85 2.26-.46 2.57.1-.26.33-.56.54-.76.2-.21.7-.72 1.32-.79m-3.15-3.75c-1.06.23-1.75 1.43-1.57 1.9.22-.17.58-.39.86-.44a2.7 2.7 0 0 1 1.77.27"/>
<g>
<path d="M89.65 112.63c.1.42-.16.64-.31 1.04-.16.39.08.94-.44 1.33a9.26 9.26 0 0 0-2.22 1.93c-.5.55-.7 1.25-1.33 1.67-.26.52-2.5 1.02-2.82 1.14-.65.28-1.2.3-1.59 1.02-.06.12.1.41-.25.71-.1.08-.21.16-.34.2-.22.06-.22 0-.45-.01-.21-.01-.19.01-.23-.2-.14-.63-.72-1.14-1.33-.9-.2.11-.32-.15-.3-.4-.1-.29-.54-.79-1.18-.61a.88.88 0 0 1 .37-1.02c-.07-.3-.15-.6-.8-.85.01-.21.12-.49.7-.64a1.72 1.72 0 0 1 1.33.27c.17.13.48.04.64.06.53-.05 1.66.05 2.1-.36.5-.39 1.02-.53 1.5-.9.6-.47 1.27-2.25 1.21-2.92"/>
</g>
<g stroke="none" fill="#000">
<path d="M83.71 113.21a1.6 1.6 0 0 0-.23-.7c-.13-.24-.3-.46-.45-.69a4.52 4.52 0 0 1-.43-.72c-.12-.25-.2-.52-.25-.8a2.9 2.9 0 0 0 .32.76c.14.23.31.45.5.66.17.2.37.41.53.65a1.97 1.97 0 0 1 .36.82l-.35.02zm33.25-3.67a1.98 1.98 0 0 1-.74-.64 3.6 3.6 0 0 1-.42-.85c-.2-.58-.32-1.18-.56-1.74.3.53.48 1.14.72 1.68a3.25 3.25 0 0 0 .45.76 1.74 1.74 0 0 0 .68.48l-.13.3zm-10.29-1.69c-.07.3-.03.6.04.9s.2.57.33.82c.28.52.65 1.01 1.03 1.46l-.27.22a7.83 7.83 0 0 1-.92-1.6 4.06 4.06 0 0 1-.27-.88 2.2 2.2 0 0 1 .06-.92zm-18.95 1.13c.1.34.25.64.45.93.18.29.4.55.61.83.21.28.43.56.62.86.18.3.35.63.44.99l-.34.07a3.48 3.48 0 0 0-.32-.94c-.15-.3-.34-.6-.52-.88s-.39-.58-.55-.9a2.82 2.82 0 0 1-.4-.96zm-9.88 11.14a1.3 1.3 0 0 1 .4-.7 1.04 1.04 0 0 1 1.15-.2c.1.04.2.06.32.07.22.02.44.02.68 0v.04c-.18.18-.46.23-.7.23-.13 0-.26-.01-.38-.05l-.17-.03-.15-.01c-.2 0-.38.07-.52.2a1.11 1.11 0 0 0-.29.53l-.34-.08zm-.7-1.74a1.47 1.47 0 0 1 1.26-.1l.14.06.12.06c.04.02.15.02.24.02h.29c.1.01.2.02.3.08l-.01.04-.28.07-.29.06c-.1 0-.2.03-.33 0l-.16-.04-.12-.05c-.18-.04-.35-.07-.51-.04-.18.02-.34.07-.5.15l-.15-.31zm9.96-5.16-.5 1.01a.46.46 0 0 1-.14-.3.68.68 0 0 1 .07-.35.7.7 0 0 1 .22-.26c.12-.07.24-.12.35-.1zm-5.31 4.66.72-.41.7-.38h.02c.06-.04.12-.01.15.04.02.05.01.1-.03.14-.12.1-.24.24-.37.36a1.28 1.28 0 0 1-.44.32c.13-.13.22-.27.33-.42.1-.15.2-.3.35-.43l.12.18-.36.21-.38.18c-.28.08-.54.16-.81.2zm32.39-.85a7.89 7.89 0 0 0 .68-.45l.3-.27.3-.28a.12.12 0 0 1 .17 0c.03.04.03.08.02.12a2.63 2.63 0 0 1-.98 1.26c.16-.22.3-.43.43-.66a4.76 4.76 0 0 0 .33-.7l.18.13c-.2.19-.4.39-.65.54a1.62 1.62 0 0 1-.37.2c-.14.05-.26.1-.41.11zm3.19-5.51c.04.13.05.24.08.35l.04.31.03.33-.01.36a.68.68 0 0 1-.26-.3.99.99 0 0 1-.07-.73.58.58 0 0 1 .19-.32zm-5.47.78a6.06 6.06 0 0 0 1.3-.15 5.29 5.29 0 0 0 1.2-.51c-.1.2-.27.39-.47.53a1.95 1.95 0 0 1-.65.3c-.23.06-.47.08-.72.06a1.74 1.74 0 0 1-.66-.23z"/>
</g>
</g>
<g>
<g fill="#F6F6F6" stroke-width=".29" stroke-linejoin="round">
<path d="M64.88 112.25c-.12-.74.14-1.5.55-2.12-.02.7.23 1.42.71 1.96m.65.31a3.1 3.1 0 0 1-.13-2.2 2.78 2.78 0 0 0 1.29 1.64m.87.32a3.1 3.1 0 0 1-.13-2.2 2.78 2.78 0 0 0 1.29 1.64m-8.06-8.58c-.27.7-.16 1.5.11 2.19.12-.7.53-1.35 1.1-1.78m.5-.32c-.24.7-.1 1.5.2 2.18.1-.7.47-1.37 1.01-1.82m1.36.34a3 3 0 0 0-.3 2.16 2.9 2.9 0 0 1 1.41-1.54m.66.04c-.24.7-.11 1.5.18 2.18.1-.71.48-1.37 1.04-1.81m.81-.01c-.24.7-.11 1.5.18 2.18.1-.71.48-1.37 1.04-1.81m.45-.37c-.24.7-.11 1.5.18 2.18.1-.71.48-1.37 1.04-1.81m.74-.21a3.12 3.12 0 0 0-.36 2.17 2.82 2.82 0 0 1 1.45-1.5"/>
</g>
<path d="M80.19 110.1c-.1.22-.38.28-.62.22s-.43-.2-.65-.27c-.61-.21-1.24.11-1.83.24-.67.14-1.32.32-2.02.2-.5-.1-.95-.34-1.45-.47a2.54 2.54 0 0 0-1.55.06c-.67.27-1.29.66-1.96.92-.9.35-1.86.45-2.81.6-1.43.22-2.03.31-3.41.73-.26.08-.49.05-.64.27-.17.08-.29.25-.31.45s.03.38.14.55c.29.44.88.61 1.41.53.56-.08.95-.4 1.46-.62.7-.29.83-.09 1.57-.2a29.31 29.31 0 0 1 8.27-.02c2 .28 3.16.54 5.18.54 1.09 1.15 3.92 3.3 5.48 3.6l5.02-.16a12 12 0 0 0 5.8 1.62c10.14.58 14.66-2.02 21.9-2.02l3.2-.17a31.82 31.82 0 0 0 6.03-2.67c.96-.68 2.18-1.4 3.26-1.93 1.08-.53 2.17-1.17 3.21-2s2.05-1.82 2.88-3.07a11.16 11.16 0 0 0 1.83-5.38l.02-.56v-.53c0-.66-.07-.77-.2-1.49a10.9 10.9 0 0 0-1.8-4.34 10.01 10.01 0 0 0-3.52-3 16.83 16.83 0 0 0-3.62-1.4c-1.16-.3-2.26-.5-3.33-.64a82.18 82.18 0 0 0-3.14-.37c-2.04-.2-4.01-.34-5.94-.54a129.43 129.43 0 0 1-5.74-.72 43.15 43.15 0 0 1-5.4-1.12c-1.56-.45-3.64-1.5-3.64-3.48 0-1.57 1.03-2.65 2.94-3.11a16.59 16.59 0 0 1 2.53-.36c.22-.01.44-.03.68-.03l.73-.04 1.5-.06c1-.04 2.03-.11 3.05-.18 1.02-.1 2.04-.19 3.06-.34 2.04-.28 4.08-.68 6.09-1.31a17.88 17.88 0 0 0 2.94-1.17 11 11 0 0 0 2.64-1.78c.12-.1 1.18-1.25 1.13-1.4 0 0-.86.49-1.54.73-1.83.66-3.74.42-4.9 1-1.13-.4-2.86.43-3.5.05-1.21-.5-2.04.11-3.18.02-1.38-.49-2.27-.12-3.41-.23-1.5-.53-2.49.45-3.4.07-.92-.46-2.15.11-3.11-.06-1.5-.34-1.78.23-3.24.33-1.54 0-1.8.4-3.1.9-1.42.25-2.1 1.52-2.51 2.18-1.38.58-1.14 2.55-1.52 3.23-.73 1.54.12 3.16.1 3.8-.2.96.95 1.76 1.34 2.72.2 1.77 2.13 1.66 2.7 2.34.4.88 1.55 1.1 2.77 1.47.74.75 2.47.76 3 .95 1.06.77 2.24.5 3.28.77 1.03.7 1.89.29 2.9.5 1.08.74 2.15.28 3.16.46.98.67 2.14.35 3.17.5 1.36.67 2.05.26 3.58.59 1.16.67 2.32.31 3.22.47.93.9 2 .48 2.76.7 1.07.96 1.66.6 2.14 1.3-.08.87.6 1.38.6 2.34-.8.86 0 1.38-.67 2.18-1.05.25-1.32 1.57-1.94 1.44-1.42-.29-2.44.49-3 .47-1.6-1.05-2.2-.47-3.86-1.05a2.98 2.98 0 0 0-1.62-.82 6.48 6.48 0 0 0-2.01-.13c-1.1-.95-2.09-.47-3.1-.68a3.39 3.39 0 0 0-1.73-.46c-.6 0-1 .19-1.77.12 0 0-.38-.1-.79-.03-.81.12-1.59.34-2.12.11-.86-.37-1.84.13-2.97.23-.21-.23-.76-.24-.96-.25-1.06-.05-1.25.49-2.5.61-.17-.17-.43-.23-.67-.26a4 4 0 0 0-1.53.09c-.4.11-.2.17-.58.36-.17.07-.3.16-.46.23-.82-.32-1.36-.05-1.98.1l-1.14.25c-.2-.2-.62-.2-1.19-.1-.92.17-1.24.48-1.8.56-1.29-.35-2.04.52-3.01-.02-1.32-.73-2.1-.33-3-.44-1.16-.8-2.05-.28-3.1-.44-1.07-.76-1.93-.26-3-.47-.93-.4-2.2-.08-3.57-.08-.88-.02-1.56-.79-2.45-.9a3.13 3.13 0 0 0-2.44.8 2.93 2.93 0 0 1-.48.36c-2.7-.85-4.85-.23-7.25-.72-1.1-.22-2.33-.36-3.24-1-.16-.1-.32-.23-.52-.23-.14 0-.26.07-.37.15-1.86 1.48-.95 2.13-.76 2.97.22.67 1.66.03 2.2-.13a5.68 5.68 0 0 1 2.13-.1c.88.09 1.42.8 2.18 1.24.66.38 1.34.78 2.09.95 1.31.29 2.74-.16 4.01.28a5.45 5.45 0 0 1 1.38.79c.97.7 1.9 1.5 3.04 1.85.56.18 1.15.26 1.7.46.54.23 1.34.46 1.17 1z"/>
<g stroke="none" fill="#000">
<path d="M79.16 108.28c.37-.02.74 0 1.1.07.38.07.75.21 1.06.43.32.22.6.55.72.92.07.18.09.4.09.58a3.1 3.1 0 0 1-.1.56c-.04-.38-.08-.74-.23-1.04a2.06 2.06 0 0 0-.67-.74 3.63 3.63 0 0 0-.93-.45l-1.04-.33zm-2.13-4.32c.4.31.77.63 1.23.83-.5-.08-.96-.32-1.41-.54l.18-.3zm-5.66-.5c.14.09.3.11.45.11a3 3 0 0 0 .92-.16l.45-.16.1.34-.5.08a3.48 3.48 0 0 1-.99 0 .88.88 0 0 1-.43-.21zm-10.75-.8a.9.9 0 0 1 .07-.46 1.14 1.14 0 0 1 .27-.39c.11-.12.25-.2.41-.24a.83.83 0 0 1 .48-.01l-.35.25-.3.26-.28.29-.3.3zm1.58-.69a.3.3 0 0 1 .15.14.6.6 0 0 1 .07.19c0 .07.02.14 0 .22-.01.08-.06.15-.1.22a.6.6 0 0 1-.78.14l.3-.18.2-.17a.49.49 0 0 0 .09-.22c.04-.1.08-.2.07-.34zm22.64 10.55a4.33 4.33 0 0 1-.85.6 6.96 6.96 0 0 1-1.7.63l-.13.02-.13.02-.5.12c-.17.03-.34.07-.53.08v-.35l.49-.03.5-.07.14-.01.12-.02.26-.03.5-.1c.32-.1.66-.2.97-.33.3-.15.6-.32.86-.53z"/>
</g>
<path fill="#F6F6F6" d="M76.94 104.1a2.67 2.67 0 0 1-1.17 1.05c-.21.08-.45.1-.67.08a1.9 1.9 0 0 1-1.03-.45c-.18-.16-.33-.37-.48-.57a2 2 0 0 1-.35-.79 4.25 4.25 0 0 1 3.02.3c.24.1.46.25.68.39z"/>
<g>
<g stroke="none" fill="#000">
<path d="m90.2 111.55-.28-.25-.28-.2-.3-.15-.36-.13c.12-.08.27-.1.4-.1.15.01.29.05.41.13a.93.93 0 0 1 .32.29c.04.14.1.28.09.41zm-2.24-.8c-.08.09-.16.13-.24.18l-.25.11-.25.09c-.1.02-.19.03-.3.02.05-.1.12-.18.2-.23s.17-.1.26-.14a.8.8 0 0 1 .28-.06c.1-.02.2-.01.3.03zm25.96-1.38c.04-.09.1-.16.19-.22a.78.78 0 0 1 .55-.12c.1.02.19.04.27.11l-.26.08-.23.06-.23.05c-.1.02-.18.04-.29.04zm1.65-.72c.1-.07.2-.09.31-.09a1.04 1.04 0 0 1 .33.05.7.7 0 0 1 .27.17c.09.08.14.16.17.28l-.28-.12-.26-.1-.25-.1c-.1-.02-.19-.04-.3-.09zm2 .14c.1-.05.19-.08.3-.09a.8.8 0 0 1 .54.2c.07.07.14.15.16.25l-.28-.05-.24-.09-.23-.09-.25-.13z"/>
</g>
</g>
<path class="secondary" d="M114.52 122.5c-.98.47-1.33 1.73-1.05 2.15.17-.22.49-.47.74-.6a2.75 2.75 0 0 1 1.8-.13"/>
<path class="secondary" d="M115.77 123.57c-.85.69-1.06 2.18-.69 2.53.12-.25.37-.53.6-.72.24-.18.76-.65 1.4-.66m-2.79-4.01c-1.08.14-1.88 1.26-1.74 1.75.23-.16.62-.34.9-.36.7-.06 1.19.1 1.75.43"/>
<g>
<path d="M113.99 114.25c.27.38.52.77.85 1.1.95.94 3.4 1.05 4.23 2.1.7.87.55 1.11.51 2.06 0 .3-.79.55-1.08.77-.48.37-1.34.37-1.88.37-.16-.02-.46.02-.62-.12a1.76 1.76 0 0 0-1.3-.4c-.6.1-.73.37-.76.58.62.31.68.62.72.91a.86.86 0 0 0-.46.98c.65-.12 1.05.42 1.12.72-.03.24.06.5.27.43.63-.19 1.15.37 1.23 1.02.02.22 0 .18.21.22.22.03.23.09.45.06.13-.03.25-.1.35-.17.4-.25.26-.57.32-.68.45-.69 1-.66 1.69-.87.32-.1 2.4-.37 3.27-1.13.6-.7 1.22-.7 1.82-1.39.31-.37.64-.75.75-1.22.12-.5-.02-.79-.02-1.3 0-.73.28-.94.4-1.64s.09-1.77-.43-2.27c-.35-.32-2.03-1.04-2.45-1.27"/>
</g>
<g stroke="none" fill="#000">
<path d="M115.15 123.27c.04-.14.1-.25.17-.37a1.16 1.16 0 0 1 .67-.49 1.28 1.28 0 0 1 .41-.02l.2.05.17.06.32.1c.22.06.43.07.67.07l.01.03c-.2.16-.47.19-.73.16a1.33 1.33 0 0 1-.37-.08l-.16-.05-.15-.03a.7.7 0 0 0-.54.16 1.03 1.03 0 0 0-.33.5l-.34-.09zm-.56-1.8c.2-.08.42-.13.64-.13s.44.06.63.16l.14.07.11.06c.05.03.15.04.25.05l.29.02c.1.03.2.04.3.12l-.01.04c-.1 0-.19.02-.28.04l-.3.04c-.1 0-.2 0-.33-.03l-.15-.05-.13-.06a1.33 1.33 0 0 0-1.02 0l-.14-.33z"/>
</g>
<path class="secondary" d="M79.18 122.5c-.99.47-1.34 1.73-1.06 2.15.18-.22.49-.47.75-.6a2.75 2.75 0 0 1 1.8-.13"/>
<path class="secondary" d="M80.42 123.57c-.85.69-1.06 2.18-.68 2.53.11-.25.37-.53.6-.72.23-.18.75-.65 1.4-.66m-2.8-4.01c-1.07.14-1.87 1.26-1.73 1.75.23-.16.61-.34.89-.36.7-.06 1.2.1 1.75.43"/>
<g>
<path d="M92.25 116.91c.05.43-.22.62-.42 1-.2.38 0 .95-.56 1.29a9.4 9.4 0 0 0-2.4 1.72c-.54.5-.82 1.18-1.48 1.53-.31.48-2.6.77-2.91.88-.67.22-1.23.18-1.68.87-.07.1.07.42-.33.68a.96.96 0 0 1-.34.17c-.23.03-.23-.03-.46-.06-.2-.04-.18 0-.2-.22-.09-.64-.6-1.21-1.24-1.02-.2.08-.3-.19-.26-.43a1 1 0 0 0-1.13-.72c-.03-.2-.07-.7.47-.98-.05-.29-.1-.6-.72-.91.02-.21.16-.48.75-.57.64-.1 1.16.27 1.3.4.16.13.46.09.63.1.53 0 1.64.22 2.12-.15.53-.34 1.06-.43 1.59-.77a4.93 4.93 0 0 0 1.47-2.78"/>
</g>
<g stroke="none" fill="#000">
<path d="M86.29 116.94c.01-.25-.06-.49-.17-.73a11.25 11.25 0 0 0-.4-.73 4.6 4.6 0 0 1-.36-.77 2.9 2.9 0 0 1-.17-.82 3.13 3.13 0 0 0 .25.78 5 5 0 0 0 .43.71c.16.23.33.45.48.7.14.24.26.53.29.85h-.35zm36.8-3.67a2 2 0 0 1-.69-.7 3.69 3.69 0 0 1-.35-.86c-.16-.6-.23-1.2-.44-1.78.26.56.4 1.16.6 1.73a2.9 2.9 0 0 0 .41.78 1.74 1.74 0 0 0 .64.53l-.16.3zm-10.13-2.4c-.08.29-.08.6-.03.9.06.28.16.57.28.84.25.55.58 1.04.93 1.53l-.29.2a8.8 8.8 0 0 1-.81-1.66c-.1-.29-.17-.6-.2-.9-.02-.3 0-.62.12-.91zm-22.3 2.23c.07.33.2.66.36.96.16.3.35.6.54.9.18.28.37.58.53.9.16.31.29.66.35 1.03l-.35.04a3.54 3.54 0 0 0-.23-.97 9.67 9.67 0 0 0-.44-.93 8.76 8.76 0 0 1-.46-.94 3.32 3.32 0 0 1-.3-1zm-10.85 10.17c.03-.14.09-.25.17-.37a1.16 1.16 0 0 1 .66-.49 1.28 1.28 0 0 1 .42-.02l.2.05.17.06.31.1c.22.06.43.07.68.07v.03c-.2.16-.47.19-.72.16a1.33 1.33 0 0 1-.38-.08l-.16-.05-.15-.03a.7.7 0 0 0-.53.16 1.03 1.03 0 0 0-.34.5l-.33-.09zm-.55-1.8c.2-.08.42-.13.64-.13s.44.06.62.16l.14.07.12.06c.05.03.15.04.24.05l.3.02c.1.03.2.04.3.12l-.02.04c-.09 0-.18.02-.28.04l-.29.04c-.1 0-.2 0-.33-.03l-.15-.05-.13-.06a1.33 1.33 0 0 0-1.02 0l-.14-.33zm31.52-8.5c-.06.16-.17.3-.3.43a1.76 1.76 0 0 1-.87.47c-.17.04-.34.04-.51 0l.44-.22.41-.2.41-.24.42-.24zm-1.63 2.18a.46.46 0 0 1-.17.24.7.7 0 0 1-.26.15c-.09.04-.2.06-.29.06-.1 0-.2-.02-.29-.07a1.28 1.28 0 0 1 .27-.1l.24-.1.25-.09a8.24 8.24 0 0 0 .25-.09zm-1.52 1.5a1.4 1.4 0 0 1-.76.44c-.15.03-.3.03-.45.02a.93.93 0 0 1-.43-.13l.43-.05.4-.07.4-.1.41-.1zm-15.91-2.74a.78.78 0 0 1 .06-.49 1.22 1.22 0 0 1 .7-.68.87.87 0 0 1 .48-.05 2.62 2.62 0 0 0-.74.48c-.1.1-.2.2-.28.33-.1.13-.15.26-.22.4z"/>
<g>
<path d="M94.78 109.5c.24-.1.49-.16.74-.2a8.41 8.41 0 0 1 1.52-.12c.26 0 .51.04.77.1a8.53 8.53 0 0 1-1.51.2 8.2 8.2 0 0 1-1.52.02zm4.58-.73c.1-.05.21-.07.32-.1l.3-.03.3.01a1.04 1.04 0 0 1 .31.09.99.99 0 0 1-.6.2l-.31-.04a.75.75 0 0 1-.32-.13zm2.86-.51c.12-.07.25-.1.4-.13.12-.02.26-.03.39-.02.12 0 .26.02.39.06s.25.08.37.17a2.5 2.5 0 0 1-.78.06l-.38-.04-.4-.1zm3.07-.51c.1-.08.2-.14.33-.17l.34-.07a1.25 1.25 0 0 1 .71.15 1.98 1.98 0 0 1-.68.15h-.34l-.36-.06zm3.2-.88a2.17 2.17 0 0 1 1.58 0 2.17 2.17 0 0 1-1.58 0zm3.55-.55c.15-.06.3-.06.45-.06a1.92 1.92 0 0 1 .85.3c.12.1.23.2.31.34-.15-.03-.29-.09-.41-.14l-.4-.14-.4-.13-.4-.17zm3.56.51c.17-.11.35-.17.55-.22a2.03 2.03 0 0 1 1.16.13c.17.08.35.19.49.33l-.56-.1-.54-.09a4.12 4.12 0 0 0-.53-.04h-.57zm4.14.72a.58.58 0 0 1 .3-.1c.11-.01.21 0 .32.02.1.02.2.07.28.13.08.06.16.14.2.24-.11 0-.2 0-.3-.03l-.26-.06-.27-.08-.27-.12zm3.36.58a2 2 0 0 1 1.48 0 2 2 0 0 1-1.48 0zm3.74.35c.13-.08.26-.13.4-.16.14-.04.26-.07.4-.08.14-.03.28-.03.42-.03.14 0 .28.02.43.06-.13.08-.25.13-.4.16-.13.04-.26.07-.4.09-.14.02-.28.02-.42.02a2.55 2.55 0 0 1-.43-.06zm3.2-.77a2.02 2.02 0 0 1 .65-.44l.35-.15a1.4 1.4 0 0 1 .4-.09c-.08.12-.18.2-.28.29a2.03 2.03 0 0 1-.7.35c-.15.03-.28.06-.42.04zm2.73-1a.64.64 0 0 1-.1-.38.9.9 0 0 1 .36-.68.7.7 0 0 1 .37-.14l-.21.3-.16.27-.13.29-.13.35zm2.78-4.71a.53.53 0 0 1-.1-.32 1.8 1.8 0 0 1 .14-.58l.12-.28c.07.1.1.21.1.32a1.8 1.8 0 0 1-.14.58l-.12.28zm-1.06 2.43a.66.66 0 0 1 .02-.33c.04-.1.1-.2.16-.27.06-.08.13-.14.2-.21l.22-.2c.04.1.01.22-.02.33-.04.1-.1.2-.16.26-.06.09-.13.14-.2.21l-.22.21zm.97-5.47a1.2 1.2 0 0 1-.4-.64 1.31 1.31 0 0 1 0-.76c.07.12.11.24.16.34a3.85 3.85 0 0 1 .24 1.06zm-2.03-3.4c-.16 0-.32-.05-.47-.1a2.2 2.2 0 0 1-.8-.56 1.4 1.4 0 0 1-.25-.42l.4.24.38.26.37.26.37.32zm-3.27-2.09c-.15.1-.32.16-.5.2a1.74 1.74 0 0 1-.54-.03 1.6 1.6 0 0 1-.5-.22c-.15-.1-.28-.23-.36-.4l.47.2a5.8 5.8 0 0 0 .94.23l.5.02zm-3.97-.75c-.14.07-.27.1-.41.11a1.77 1.77 0 0 1-.85-.13 1.2 1.2 0 0 1-.37-.24 1.74 1.74 0 0 1 .43.02l.4.05.4.07c.13.03.26.06.4.12zm-3.6-.55c-.13.08-.28.13-.43.16a1.62 1.62 0 0 1-.93-.14 1.3 1.3 0 0 1-.38-.27l.45.05.42.07.43.06.45.07zm-3.34-.38a1.62 1.62 0 0 1-.47.13c-.16.02-.31 0-.47 0a2.09 2.09 0 0 1-.47-.12 1.28 1.28 0 0 1-.42-.24c.17-.02.32 0 .47.02l.44.05.44.05.48.1zm-3.23-.48a1.62 1.62 0 0 1-.46.13c-.17.02-.32.01-.48 0a2.09 2.09 0 0 1-.46-.12 1.28 1.28 0 0 1-.42-.24c.16-.01.31.01.46.02l.44.05.44.06.48.1zm-2.86-.59a1.28 1.28 0 0 1-.41.13c-.14.02-.28.02-.42 0a1.62 1.62 0 0 1-.4-.12 1.14 1.14 0 0 1-.35-.23c.15-.01.28 0 .42.01l.38.06.38.06c.13.01.26.04.4.1zm-3.04-.52a1.36 1.36 0 0 1-.84.05 1.62 1.62 0 0 1-.4-.16 1.23 1.23 0 0 1-.33-.25 4.6 4.6 0 0 1 .8.14l.38.1c.13.01.26.06.39.12zm-7.2-2.67a.55.55 0 0 1-.36.04c-.11-.04-.23-.1-.32-.17a.82.82 0 0 1-.31-.6 2.67 2.67 0 0 1 .26.2l.24.18.23.19c.08.03.16.1.26.16zm1.76 1.17a.52.52 0 0 1-.34.12.7.7 0 0 1-.35-.08.99.99 0 0 1-.29-.2.61.61 0 0 1-.17-.3l.31.11.28.13.27.12.29.1zm2.4.76c-.07.09-.19.15-.32.16a.95.95 0 0 1-.67-.2.56.56 0 0 1-.2-.28l.32.08.29.1.28.08.3.06zm-6.45-5.4a1.13 1.13 0 0 1-.18-.3c-.03-.1-.05-.22-.05-.34-.02-.11 0-.22.02-.33s.06-.22.14-.33a2 2 0 0 1 .13.64v.31c-.02.12-.03.24-.06.35zm.77 2.06a1.04 1.04 0 0 1-.5-.46 1.28 1.28 0 0 1-.13-.31.85.85 0 0 1-.04-.35 2.18 2.18 0 0 1 .42.51l.15.28c.03.1.08.2.1.33zm-.77-4.26a.86.86 0 0 1-.08-.37c0-.13.02-.26.07-.39a1.04 1.04 0 0 1 .2-.32c.1-.1.2-.16.33-.2-.04.12-.1.22-.14.33l-.13.3-.11.31c-.04.1-.07.22-.14.34zm3.04-2.8c.05-.12.12-.23.23-.33.1-.1.22-.18.36-.21a1.18 1.18 0 0 1 .8.02c-.12.07-.25.12-.36.15l-.34.1-.32.13-.37.14zm-1.95.88c.02-.13.07-.26.14-.38s.17-.22.29-.29c.11-.07.24-.11.37-.15.13-.02.25-.03.4-.02l-.32.23-.3.19-.28.2-.3.22zm4.42-1.47c.1-.11.23-.2.37-.25.14-.06.28-.1.43-.13a1.4 1.4 0 0 1 .86.14l-.42.08-.4.06-.41.05a2.55 2.55 0 0 1-.43.05zm3.1-.35a1.97 1.97 0 0 1 .82-.15 2.3 2.3 0 0 1 .81.15 1.97 1.97 0 0 1-.81.15 2.3 2.3 0 0 1-.81-.15zm3-.18c.17-.1.36-.15.54-.18a2.33 2.33 0 0 1 1.13.1c.17.07.35.15.5.26l-.56-.04-.53-.06-.54-.05-.54-.03zm4 .09a2.17 2.17 0 0 1 1.58 0 2.17 2.17 0 0 1-1.58 0zm2.82-.2a3.9 3.9 0 0 1 1.18-.36c.14 0 .28-.02.43 0-.11.1-.23.17-.36.22a2.67 2.67 0 0 1-.4.14c-.13.04-.27.05-.41.06-.16 0-.3-.01-.44-.06zm3.44-.34.34-.12.31-.1.32-.11.35-.1a.66.66 0 0 1-.24.3 1.02 1.02 0 0 1-.7.23.72.72 0 0 1-.38-.1zM92.87 109.2a3.94 3.94 0 0 1-2.1 0 3.94 3.94 0 0 1 2.1 0zm-3.29-.78c-.17.07-.36.1-.53.13a2.47 2.47 0 0 1-1.07-.17 1.62 1.62 0 0 1-.46-.3l.53.08.51.08.51.08.51.1zm-3.81-.97a.6.6 0 0 1-.26.16c-.09.03-.2.04-.3.03a.72.72 0 0 1-.28-.1.64.64 0 0 1-.2-.22l.27.01.25.03.24.03c.1.01.17.02.28.06z"/>
</g>
<path d="M75.49 104.23a.9.9 0 0 0 .58-.62 4.16 4.16 0 0 0-1.59-.35c-.17.36.06.75.23.88.21.19.51.2.78.1zm14.18 13.03-.58.95a.48.48 0 0 1-.1-.32c0-.12.03-.23.1-.33a.7.7 0 0 1 .24-.24.46.46 0 0 1 .34-.06zm-5.74 4.14.76-.33.74-.33h.01c.06-.02.13 0 .15.06.03.05 0 .1-.04.14-.14.1-.27.2-.4.32-.15.12-.3.24-.48.28.13-.11.25-.25.36-.38.11-.14.23-.28.38-.4l.11.2-.38.18-.4.14c-.26.05-.53.11-.8.12zm35.87-.86.37-.18.34-.22c.1-.08.22-.16.31-.26l.32-.26c.04-.05.11-.04.16 0 .03.04.03.09.01.14a2.87 2.87 0 0 1-1.06 1.2c.18-.2.33-.42.48-.62a5.45 5.45 0 0 0 .37-.68l.18.14a4.27 4.27 0 0 1-1.07.66 1.1 1.1 0 0 1-.4.08zm3.56-5.27c.04.12.05.24.06.36l.02.32v.33l-.03.36a.73.73 0 0 1-.23-.3 1.02 1.02 0 0 1-.03-.75c.04-.11.1-.23.21-.32zm-5.5.4h.68a5.65 5.65 0 0 0 1.25-.23l.63-.25c-.12.2-.3.37-.51.5a1.83 1.83 0 0 1-.68.25c-.24.05-.48.05-.72 0a1.36 1.36 0 0 1-.65-.28z"/>
<g>
<path d="M96.57 103.2a5.96 5.96 0 0 1 1.39 1.7c.35.63.6 1.32.76 2.03a7.42 7.42 0 0 0-.91-1.94 5.66 5.66 0 0 0-1.45-1.52l.2-.28zm3.1-.37c.3.2.55.43.78.67a7.02 7.02 0 0 1 1.14 1.66c.14.3.27.62.34.94a5.66 5.66 0 0 0-1.66-2.42 4.04 4.04 0 0 0-.78-.57l.19-.28zm3.27-.4c.27.22.5.48.67.77.18.3.32.6.45.9l.37.91c.13.3.26.6.43.87-.2-.25-.36-.54-.5-.83l-.45-.87a4.8 4.8 0 0 0-.51-.82 2.64 2.64 0 0 0-.66-.63l.2-.3zm3.45-.36c.26.2.45.45.62.7.16.26.3.54.43.8.12.27.24.55.38.8a4.52 4.52 0 0 0 .46.76 3.9 3.9 0 0 1-.53-.71l-.46-.77a8 8 0 0 0-.5-.73 2.38 2.38 0 0 0-.6-.58l.2-.27zm-12.8 1.6c.39.4.74.85 1.02 1.34.28.49.47 1.02.58 1.56a5.94 5.94 0 0 0-1.84-2.65l.24-.25zm-3.02-.03c.35.39.61.8.85 1.24.23.45.41.9.59 1.36-.22-.44-.47-.87-.73-1.26-.28-.4-.58-.78-.94-1.08l.23-.26zm25.2-1.55c.48.34.85.8 1.13 1.29.28.5.48 1.02.67 1.54a11.05 11.05 0 0 0-.8-1.45 3.5 3.5 0 0 0-1.18-1.1l.18-.28zm3.12.7a4.92 4.92 0 0 1 .97 1.19c.27.43.49.9.61 1.37a5.1 5.1 0 0 0-.76-1.28 4.78 4.78 0 0 0-1.04-1l.22-.29zm3.63.95c.22.2.4.43.55.66a9.2 9.2 0 0 1 1 2.27 8.13 8.13 0 0 0-1.22-2.11 3.51 3.51 0 0 0-.55-.55l.22-.27zm-10.23-1.99a10.56 10.56 0 0 1 1.24 1.26c.37.45.68.96.87 1.51a5.03 5.03 0 0 0-1.01-1.4 10.92 10.92 0 0 0-1.33-1.1l.23-.27zm-2.88.12.53.74c.19.24.36.5.54.77a6.15 6.15 0 0 1 .44.8c.12.29.22.59.25.89a3.13 3.13 0 0 0-.32-.85 6.61 6.61 0 0 0-1.1-1.45l-.6-.7.26-.2zm-21.83 1.34a5.07 5.07 0 0 1 .9 2.7c-.07-.46-.23-.9-.43-1.32a4.54 4.54 0 0 0-.74-1.14l.27-.24zm-3.12-.47c.37.28.68.65.88 1.05.2.41.31.86.29 1.3a2.64 2.64 0 0 0-1.36-2.06l.19-.3zm-3-.45a3.5 3.5 0 0 1 .9.96c.11.18.2.4.26.59l.19.62-.27-.58c-.09-.19-.2-.38-.33-.54a3.48 3.48 0 0 0-.95-.79l.2-.26zm29.28-27.1a3.56 3.56 0 0 1 .8 2.2 3.32 3.32 0 0 0-1.05-1.96l.25-.24zm3.4-.06c.26.33.4.7.51 1.06.12.36.2.73.31 1.09-.17-.34-.3-.7-.47-1.04a3.06 3.06 0 0 0-.62-.89l.27-.22zm3.43.26a5.45 5.45 0 0 1 .34.91l.21.93c-.12-.29-.23-.58-.37-.87-.14-.28-.28-.56-.47-.79l.3-.18zm3.15-.07a2.54 2.54 0 0 1 .78 1.84 2.34 2.34 0 0 0-1-1.57l.22-.27zm3.56 0c.22.54.24 1.13.1 1.65a2.5 2.5 0 0 0-.4-1.48l.3-.16zm-16.62-.14c.16.37.32.74.45 1.13.13.4.2.8.23 1.2-.08-.4-.22-.78-.4-1.13-.17-.36-.39-.7-.6-1.04l.32-.16zm-3.27.29a3.13 3.13 0 0 1 .83 2.27 3.02 3.02 0 0 0-1.08-2.02l.25-.25zm-3.23.92a4.4 4.4 0 0 1 1.29 1.76 4.23 4.23 0 0 0-1.5-1.48l.21-.28zm-2.48 2.1c.23.05.44.16.62.28.19.12.35.27.52.4.16.14.3.28.48.4s.36.21.56.26c-.21-.02-.42-.1-.6-.2a5.2 5.2 0 0 1-.55-.32 4.94 4.94 0 0 0-.53-.32 1.95 1.95 0 0 0-.55-.16l.05-.34zm2.42 12.25c.04-.26.13-.5.22-.72a4.3 4.3 0 0 1 .83-1.19 2.09 2.09 0 0 1 .58-.43 2.04 2.04 0 0 0-.51.49 4.36 4.36 0 0 0-.64 1.23 2.2 2.2 0 0 0-.12.65l-.36-.03zm-2.67-2.42a5.53 5.53 0 0 1 2.01-1.43c-.7.42-1.29.99-1.73 1.64l-.28-.21zm-1.3-2.85a2.53 2.53 0 0 1 2.05-.84c-.73.06-1.4.48-1.77 1.04l-.27-.2zm0-3.74a6.4 6.4 0 0 1 2.48.43 6.02 6.02 0 0 0-2.45-.08l-.04-.35zm29.2 23.03c.06.03.13.08.17.12l.06.07.06.07a2.55 2.55 0 0 1 .2.3c.12.2.2.39.3.59l.26.6.25.6a14.21 14.21 0 0 1-.66-1.11 8.58 8.58 0 0 0-.36-.54l-.2-.23c-.07-.07-.15-.11-.2-.15l.12-.32zm-22.45-12.52a6.11 6.11 0 0 1 .3-1.62c.1-.26.22-.5.36-.73s.32-.45.54-.6c-.2.18-.35.4-.46.64a4.04 4.04 0 0 0-.4 1.52c-.02.26-.03.52 0 .77l-.34.02zm3 .96a6.32 6.32 0 0 1 .1-1.6c.06-.28.14-.53.26-.77.12-.25.27-.47.46-.64a1.95 1.95 0 0 0-.38.67 4.34 4.34 0 0 0-.17 1.53c0 .26.04.51.08.77l-.35.04zm3.27.77a7.27 7.27 0 0 1 .3-2.36c.1-.24.21-.48.36-.7a3.41 3.41 0 0 0-.4 1.5c-.03.5 0 1.03.08 1.52l-.34.04zm2.92.49a7.97 7.97 0 0 1 .14-1.51c.04-.25.08-.5.15-.74.07-.25.15-.5.28-.7a5.2 5.2 0 0 0-.24 1.46v.74l.05.73-.38.02zm3.16.47a7.16 7.16 0 0 1 .54-2.83 6.94 6.94 0 0 0-.2 2.79l-.34.04zm3.17.5a5.24 5.24 0 0 1 .14-1.46 4.23 4.23 0 0 1 .48-1.37c-.1.22-.17.45-.22.68-.04.24-.08.47-.1.71-.03.23-.03.48-.03.71s.03.46.06.7l-.33.03zm3.58.6a5.22 5.22 0 0 1 .37-2.22c.1-.24.21-.46.37-.64-.14.2-.23.43-.29.66-.07.23-.1.48-.14.7a5.06 5.06 0 0 0 .03 1.42l-.34.07zm3.21.47c0-.28.04-.52.1-.78a5.83 5.83 0 0 1 .54-1.41 2.55 2.55 0 0 1 .47-.6 2.33 2.33 0 0 0-.39.63 4.48 4.48 0 0 0-.37 2.12l-.35.04zm2.78.62c.17-.4.37-.8.61-1.16a4.06 4.06 0 0 1 .87-.96 4.06 4.06 0 0 0-.72 1.06 7.39 7.39 0 0 0-.44 1.2l-.32-.14zm2.19 1.23c.37-.3.78-.56 1.22-.74s.91-.24 1.38-.23c-.47.05-.92.17-1.31.4a4.35 4.35 0 0 0-1.06.84l-.23-.27zm.65 2.31a3.18 3.18 0 0 1 1.46-.15 4.18 4.18 0 0 1 1.36.47 4.07 4.07 0 0 0-1.37-.3c-.47 0-.9.12-1.32.3l-.13-.32zm-.56 2.18a2.8 2.8 0 0 1 1.46 1.07c.1.17.2.36.23.55a1.69 1.69 0 0 0-.3-.5 2.47 2.47 0 0 0-1.46-.78l.07-.34zm-1.88 1.46c.3.26.57.55.77.89.2.32.33.7.4 1.06-.11-.36-.3-.68-.54-.96a3.42 3.42 0 0 0-.84-.7l.21-.29z"/>
</g>
<path d="M66.44 102.74c.36.1.71.15 1.06.16.36.01.7-.01 1.06-.03.36-.02.74-.04 1.1 0s.75.12 1.07.3a4.2 4.2 0 0 0-1.06-.08l-1.08.05a6 6 0 0 1-1.12-.03 2.22 2.22 0 0 1-1.03-.37zm7.32 8.7c.36-.1.74-.12 1.12-.1.37 0 .74.06 1.1.1.17.02.36.03.53.03h.53c.36-.02.71-.09 1.05-.24a2.06 2.06 0 0 1-1.02.46 4.06 4.06 0 0 1-1.13.03l-1.09-.17a8.47 8.47 0 0 0-1.09-.11z"/>
</g>
<path fill="none" d="M75.87 106.4c.33.17.63.4.87.67m.4.35a1.86 1.86 0 0 1 1.13.32"/>
<g>
<path stroke="none" fill="#000" d="M74.28 102.66a6.84 6.84 0 0 1 2.38-.03c.4.09.79.21 1.14.4.36.18.68.43.94.74a5.25 5.25 0 0 0-2.14-.92 9.61 9.61 0 0 0-1.16-.15l-1.16-.04z"/>
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 24 KiB

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200"><metadata license="https://creativecommons.org/licenses/by-nc-sa/3.0" source="http://wappenwiki.org/images/b/b0/Eichst%C3%A4tt.svg"/><g id="crosier" stroke-width=".28"><path d="M105.7 72.4c-.4 1-1 1.8-1.8 2.4-.74.4-1.28.15-1.9 0-.3-.1-.6 0-.7.3s0 .6.2.7l-1.2.1c-.6 0-1.1 0-1.6-.2a2 2 0 01-.9-1.3v-.3c-.1-.2-.4-.4-.7-.3-.2 0-.3.1-.4.3a4.7 4.7 0 01-.7-2.2v-.4a4 4 0 01.5-1.6c.2-.3.6-.5 1-.5h.3c.3 0 .5-.3.5-.5s-.2-.4-.5-.5a3.6 3.6 0 012.4-.4c.5 0 .7.4.9 1v.2c0 .3.3.4.6.4.2 0 .4-.3.4-.6 1.22 1.68-.07 4.4-2.2 3.6l-.42-.08A1.74 1.74 0 00100.6 71c0-1-.8-1.6-1.7-1.6s-1.8.8-1.8 1.8c0 1.8 1.7 3 3.3 3 2.05-.24 3.58-1.54 3.5-3.5a4 4 0 00-.6-2.1c.3 0 .5-.3.5-.5 0-.3-.3-.5-.5-.6h-.3c-.3 0-.6 0-.9-.2a4 4 0 00-.4-.2 4.4 4.4 0 00-2.1-.6c-.96 0-1.9.27-2.7.8v-.1c0-.3-.3-.5-.6-.5-.2 0-.5.2-.5.5v.2c0 .5-.4 1-.5 1.3a5.3 5.3 0 00-1 2.7v1a6.5 6.5 0 001.3 3.3c-.3 0-.5.3-.5.6s.3.5.6.5h.3c.4-.1 1 .2 1.2.3.62.36 1.3.6 2 .7l.6.1h.5l2-.1c-.11.96 1 .98 1 .2.36-.47.89-.75 1.4-1.1a7.5 7.5 0 003.1-3.6z"/><path d="M109.5 72.8c-.2-.1-.5 0-.7-.2-.4-.1-.5-.8-.4-1.2a8.7 8.7 0 000-2.9c-.2-1.5-.9-3-1.9-4.2.3 0 .6-.4.6-.7s-.4-.6-.7-.6h-.3c-.6.1-1.3-.3-1.6-.5a9.3 9.3 0 00-3.5-1.3l-1.3 1.6.8 1.3c.55.07 1.08.2 1.6.4.4 0 .8.5 1 1.3v.3c.2.3.6.5.9.4.2 0 .4-.3.5-.5.7.8 1.2 1.8 1.4 3l.1 1.2c0 .2 0 .4-.2.5-.4.2-.6 0-.8 0h-.2c-.4.5-.1 1.5.3 1.9.5.4 1 .3 1.6.2-.1.5 0 1 .3 1.5.5.6 2 .6 2-.4.7.1 1.2-.8.5-1.1z"/><path d="M98.4 98v34.8l1.6 7.2 1.6-7.2V98"/><path d="M102.2 86.5l-.1-.8c0-.4-.1-1.1.1-1.6l.2-.3c.1-.3 0-.7-.3-.8a.7.7 0 00-.9.2l-.1-.2a7.4 7.4 0 00-.8-1l-1.4-1c-.3-.3-.8-.9-.8-1.4v-.3c-.1-.4-.5-.6-.8-.6s-.6.4-.5.7a32.62 32.62 0 01-2.7-2.1c-.8-1-1.5-2.1-1.4-3.3 0-.3.1-.7.4-.8 0 .2.3.3.6.3.3-.2.3-.8.1-1-.2-.3-.5-.4-.9-.3-.6 0-1 .6-1 .6v-1.7c0-1 .2-1.9.6-2.7.2-.4.7-.8 1.4-1h.4c.3 0 .5-.4.5-.7s-.43-.58-.8-.5l.7-.6c.9-.6 2-1 3-1.3l1.3.1c.3.3 0 1 0 1 .64.65 1.59-.3 1.8-.8.1-.6-.2-1.3-.5-1.7.3-.1 1-.7 1.2-1.1.3-.8-.2-2.4-1.2-2-.2-.7-1.2-.8-1.2 0l.2.7c0 .4-.4.6-1 .7h-1a10.9 10.9 0 00-6.2 3.2c0-.3-.4-.6-.7-.5-.4 0-.6.4-.6.7l.1.3c.2.6-.3 1.7-.3 1.7a11.7 11.7 0 00-1.4 5.2.7.7 0 00-1 .1c-.1.3-.1.7.1.9l.3.2c.5.3.7 1.2.8 1.5.32 1.6 1 3.1 2 4.4.7 1.1 1.6 2 2.5 2.7l1.6 1.4c-.3 0-.6.4-.6.7s.4.6.7.6l.4-.1c.5-.1 1.2.3 1.6.4l.5.6c.5.7.6 1.5.6 1.8.06.83.06 1.67 0 2.5.11.47.1 1 .4 1.38l3.9-.03c.27-.25.3-.85.4-1.35-.03-1-.1-2-.2-3z"/><path d="M97.5 89h5.2a.4.4 0 110 1h-5.2a.4.4 0 110-1z"/><path d="M100.2 95.3c-1.4 0-2.5 1.1-2.5 2.5h4.9c0-1.4-1.1-2.5-2.4-2.5z"/><path d="M102.6 98h-5.2c-.53 0-.53-.8 0-.8h5.2c.6 0 .6.8 0 .8zm-4.4 12.2c-.6 0-.6-.9 0-.9h3.4c.67 0 .7.9 0 .9h-3.4zm3.5 22.8h-3.4c-.67 0-.67-1 0-1h3.4c.67 0 .67 1 0 1z"/><path d="M101.2 96.4H99a2.6 2.6 0 01-2.5-2.6v-.6c0-1.4 1.1-2.6 2.5-2.6h2.2c1.4 0 2.6 1.2 2.6 2.6v.6c0 1.4-1.2 2.6-2.6 2.6z"/><path fill="none" d="M98.44 102.2h3.16m0 .9h-3.16"/><path d="M96.4 93.3h7.4a.4.4 0 110 .9h-7.4a.4.4 0 110-.9z"/><path fill="#000" stroke="none" d="M100.5 85.3c-2.16-4.85-7.88-6.62-8.8-11.1.09 4.28 5.98 6.52 8.8 11.1z"/></g></svg>

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossAnkh" stroke-width=".5">
<path d="M100 56c-9.32 0-15 9-15 19 0 8 4.01 14.1 10 23l-20-4v14l20-2-3 40h16l-3-40 20 2V94l-20 4c5.99-8.9 10-15 10-23 0-10-5.68-19-15-19zm8.84 20C109 85 104 90 100 96c-4-6-9-11-9-20 0-18 18-18 17.84 0z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 447 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossArrowed" stroke-width=".5">
<path d="M100 60L84 76h8v16H76v-8l-16 16 16 16v-8h16v16h-8l16 16 16-16h-8v-16h16v8l16-16-16-16v8h-16V76h8l-16-16z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 360 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossAvellane" stroke-width=".5">
<path d="M99.9 60c-1.8 0-2.4 3.2-4.2 3.5-2.6.5-4.9-3.2-7.6-2.4-2.6.7-5 3-6.4 6.3 1.9-2 4.3-2.6 6.5-1.6 2.2.9 4.1 3.3 5 6.4.3 1.2.1 2.5-.5 3.5-.8 1.8-1.3 6-1.3 8.1 0 6.6 2 9.8 7.6 10.2a5.3 5.3 0 00-5 5c-.3-5.6-3.6-7.5-10.3-7.5-2.1 0-6.3.4-8.1 1.3-1 .6-2.3.8-3.5.5-3.1-.9-5.5-2.7-6.4-4.9-.9-2.2-.3-4.6 1.6-6.5-3.3 1.4-5.6 3.7-6.3 6.4-.7 2.6 2.9 4.9 2.4 7.5-.3 1.7-3.2 2.3-3.2 4.1 0 1.8 2.9 2.5 3.2 4.3.4 2.6-3.1 4.9-2.4 7.5.7 2.6 3 4.9 6.3 6.4-1.9-1.9-2.5-4.2-1.7-6.4.9-2.2 3.2-4 6.2-5 1.2-.3 2.6-.2 3.6.4 1.8.9 6.1 1.3 8.2 1.3 6.6 0 10.1-1.8 10.4-7.4.2 2.9 2.1 4.7 5 5-5.6.3-7.7 3.4-7.7 10.1 0 2.1.4 6.3 1.3 8.1.6 1 .8 2.3.5 3.5-.9 3.1-2.7 5.5-5 6.4-2.2.9-4.6.3-6.5-1.6 1.4 3.3 3.7 5.6 6.4 6.3 2.6.7 5-2.9 7.6-2.4 1.8.3 2.5 3.3 4.2 3.3 1.8 0 2.4-3 4.2-3.3 2.6-.5 4.9 3.2 7.6 2.4 2.6-.7 5-3 6.4-6.3-1.9 1.9-4.2 2.6-6.4 1.7-2.2-.9-4-3.2-5-6.2-.3-1.2-.2-2.6.4-3.6.9-1.8 1.3-6.1 1.3-8.2 0-6.6-1.7-9.8-7.3-10.2a5.3 5.3 0 005-5c.3 5.6 3.3 7.5 10 7.5 2.1 0 6.4-.5 8.2-1.3 1-.6 2.4-.7 3.6-.4 3 .9 5.3 2.7 6.2 5 .9 2.2.3 4.6-1.7 6.4 3.3-1.4 5.6-3.7 6.3-6.4.7-2.6-2.9-4.9-2.4-7.5.3-1.8 3.4-2.6 3.4-4.4 0-1.7-3-2.3-3.4-4-.5-2.6 3.1-4.9 2.4-7.5-.7-2.6-3-4.9-6.3-6.4 2 1.9 2.6 4.3 1.6 6.5-.9 2.2-3.3 4.1-6.4 4.9-1.2.3-2.5.1-3.5-.5-1.8-.8-6-1.3-8.1-1.3-6.6 0-9.6 1.8-9.9 7.4-.2-2.8-2.1-4.7-5-5 5.6-.3 7.2-3.4 7.2-10.1 0-2.1-.5-6.4-1.3-8.2-.5-1-.7-2.4-.4-3.6.9-3 2.7-5.3 5-6.2 2.2-.9 4.6-.3 6.4 1.7-1.4-3.3-3.7-5.6-6.4-6.3-2.6-.7-5 2.9-7.6 2.4-1.8-.4-2.3-3.5-4.2-3.5z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossBiparted" stroke-width=".5">
<path d="m 90,60 10,10 10,-10 v 30 h 30 l -10,10 10,10 h -30 v 30 L 100,130 90,140 V 110 H 60 L 70,100 60,90 h 30 z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 364 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossBottony" stroke-width=".5">
<path d="M78.7 95.8a5.5 5.5 0 10-9.7-.4 5.5 5.5 0 100 9.3 5.5 5.5 0 109.7-.4h17.1v17.2a5.5 5.5 0 10-.4 9.7 5.5 5.5 0 109.3 0 5.5 5.5 0 10-.4-9.7v-17.2h17.1a5.5 5.5 0 109.7.4 5.5 5.5 0 100-9.3 5.5 5.5 0 10-9.7.4h-17.1V78.7a5.5 5.5 0 10.4-9.7 5.5 5.5 0 10-9.3 0 5.5 5.5 0 10.4 9.7v17.2z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 532 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossBurgundy" stroke-width=".4">
<path d="M73 65v3l-5-5h-5v5l2 2v3l5 5v-3l4 4v3l5 5v-3l7 7v3l5 5v-3l2.53 2.55L89 103h3l-7 7h-3l-6 6h3l-5 5h-3l-5 5h3l-6 6v5h5l2-2h3l5-5h-3l5-5h3l5-5h-3l6-6h3l5-5h-3l2-2.6 5.54 5.53.46-2.93 6 6v3l6 6v-3l4 4v3l6 6v-3l6 6h5v-6l-2.07-1.5.07-2.5-2-2-4-4v3l-5-5v-3l-6-6v3l-4-4v-3l-6-6 .13 3.08-1.85-1.87L112 96h-3l6-6h3l5-5h-3l5-5h3l6-6h-3l6-6v-5h-5l-2 2h-3l-5 5h3l-5 5h-3l-6 6h3l-5 5h-3l-6 6h3l-1.52 1.49L95 87v3l-6-6v-3l-5-5v3l-6-6v-3z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 679 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200"><metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/><g id="crossCalvary" stroke-width=".5"><path d="m 95,55 h 10 v 15 h 20 v 10 h -20 v 40 h 3 v 10 h 10 v 10 h 17 v 10 H 65 v -10 h 17 v -10 h 10 v -10 h 3 V 80 H 75 V 70 h 20 z"/></g></svg>

Before

Width:  |  Height:  |  Size: 367 B

View file

@ -1,38 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Gothika" source="https://en.wikipedia.org/wiki/File:Triquetra-Cross.svg" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossCarolingian" stroke-width=".32">
<path d="M84.44 63.48a21 21 0 00-3.46.28c-.96.18-.91.2-.61 1.06 2.78 7.45 8.83 11.7 15.4 13.02a20.7 20.7 0 00-1.17 6.6c0 4.65 1.57 8.91 4.15 12.39-.6.69-1.23 1.32-1.92 1.92a20.77 20.77 0 00-12.4-4.15c-2.31 0-4.5.47-6.59 1.17-1.33-6.57-5.57-12.62-13.02-15.4-.93-.35-.9-.32-1.06.6A20.83 20.83 0 0070.52 100a20.83 20.83 0 00-6.76 19.03c.17.95.2.88 1.06.61 7.45-2.78 11.7-8.83 13.02-15.4a20.7 20.7 0 006.6 1.17c4.65 0 8.91-1.57 12.39-4.15.69.6 1.32 1.23 1.92 1.92a20.77 20.77 0 00-4.15 12.4c0 2.31.47 4.5 1.17 6.59-6.57 1.33-12.62 5.57-15.4 13.02-.42.97-.37.9.6 1.06a20.83 20.83 0 0019.02-6.76 20.83 20.83 0 0019.03 6.76c.97-.15.89-.19.61-1.06-2.78-7.45-8.83-11.7-15.4-13.02a20.7 20.7 0 001.17-6.6c0-4.65-1.57-8.91-4.15-12.39.6-.69 1.23-1.32 1.92-1.92a20.77 20.77 0 0012.4 4.15c2.31 0 4.5-.47 6.59-1.17 1.33 6.57 5.57 12.62 13.02 15.4.95.42.89.35 1.06-.6a20.83 20.83 0 00-6.76-19.02 20.83 20.83 0 006.76-19.03c-.06-1-.18-.84-1.06-.61-7.45 2.78-11.7 8.83-13.02 15.4a20.7 20.7 0 00-6.6-1.17c-4.65 0-8.91 1.57-12.39 4.15-.69-.6-1.32-1.23-1.92-1.92a20.77 20.77 0 004.15-12.4c0-2.31-.47-4.5-1.17-6.59 6.57-1.33 12.62-5.57 15.4-13.02.32-.92.3-.9-.6-1.06A20.83 20.83 0 00100 70.52a20.83 20.83 0 00-15.57-7.04zm0 1.95c5.74 0 10.82 2.6 14.3 6.61A20.86 20.86 0 0096.42 76a18.24 18.24 0 01-13.55-10.43c.52-.04 1.05-.13 1.58-.13zm31.12 0c.53 0 1.06.09 1.58.13A18.24 18.24 0 01103.6 76a20.86 20.86 0 00-2.34-3.95c3.58-4.19 8.8-6.6 14.31-6.61zM100 73.56c.6.85 1.09 1.77 1.54 2.71-1.24.14-2.05.2-3.08 0 .45-.94.94-1.86 1.54-2.7zm-2.29 4.56c1.59.31 2.99.23 4.58 0 .7 1.98 1.15 4.09 1.15 6.32 0 4.05-1.28 7.79-3.44 10.87a18.89 18.89 0 01-3.44-10.87c0-2.23.45-4.34 1.15-6.32zm-32.15 4.74A18.24 18.24 0 0176 96.4c-1.4.63-2.72 1.42-3.95 2.34a18.87 18.87 0 01-6.61-14.31c.02-.54.08-1.14.12-1.57zm68.88 0c.04.52.13 1.05.13 1.58 0 5.74-2.6 10.82-6.61 14.3a20.86 20.86 0 00-3.95-2.33 18.24 18.24 0 0110.43-13.55zm-50 13.7c4.05 0 7.79 1.28 10.87 3.44a18.9 18.9 0 01-10.87 3.44c-2.23 0-4.34-.45-6.32-1.15a22.6 22.6 0 000-4.58c1.98-.7 4.09-1.15 6.32-1.15zm31.12 0c2.23 0 4.34.45 6.32 1.15-.3 1.63-.2 3.09 0 4.58-1.98.7-4.09 1.15-6.32 1.15A18.9 18.9 0 01104.7 100a18.89 18.89 0 0110.87-3.44zM100 98.35a21.4 21.4 0 001.65 1.65 21.4 21.4 0 00-1.65 1.65 20.94 20.94 0 00-1.65-1.65 21.4 21.4 0 001.65-1.65zm-23.73.11c.17 1.2.18 2.08 0 3.08-.94-.45-1.86-.94-2.7-1.54.84-.6 1.76-1.09 2.7-1.54zm47.46 0c.94.45 1.86.94 2.7 1.54-.84.6-1.76 1.09-2.7 1.54-.13-.98-.18-2.08 0-3.08zm-51.69 2.8c1.23.9 2.53 1.7 3.95 2.33a18.24 18.24 0 01-10.43 13.55c-.04-.52-.13-1.05-.13-1.58 0-5.74 2.6-10.82 6.61-14.3zm55.92 0c4.18 3.57 6.6 8.8 6.61 14.3 0 .53-.09 1.06-.13 1.58A18.24 18.24 0 01124 103.6c1.4-.63 2.72-1.42 3.95-2.34zM100 104.68a18.9 18.9 0 013.44 10.87c0 2.23-.45 4.34-1.15 6.32-1.8-.2-3.05-.14-4.58 0a18.89 18.89 0 01-1.15-6.32c0-4.05 1.28-7.79 3.44-10.87zm1.54 19.04c-.45.94-.94 1.86-1.54 2.7-.6-.84-1.09-1.76-1.54-2.7a10.7 10.7 0 013.08 0zm-5.13.28c.63 1.4 1.42 2.72 2.34 3.95a18.87 18.87 0 01-14.31 6.61c-.53 0-1.06-.09-1.58-.13 2.5-5.5 7.58-9.41 13.54-10.43zm7.18 0a18.24 18.24 0 0113.55 10.43c-.52.04-1.05.13-1.58.13-5.74 0-10.82-2.6-14.3-6.61.9-1.23 1.7-2.53 2.33-3.95z"/>
<path d="M124.01 103.59l-.28-2.05"/>
<path d="M122.18 104.33l-.28-1.97"/>
<path d="M127.96 101.25l1.67-1.35"/>
<path d="M126.55 99.92l1.4-1.17"/>
<path d="M123.73 98.46l.3-2.1"/>
<path d="M121.88 97.71l.28-1.94"/>
<path d="M75.99 96.41l.28 2.05"/>
<path d="M77.84 95.6l.28 2.11"/>
<path d="M72 98.76l-1.63 1.38"/>
<path d="M73.4 100.1l-1.36 1.15"/>
<path d="M76.27 101.54l-.28 2.05"/>
<path d="M78.12 102.29l-.28 1.94"/>
<path d="M96.41 124.01l2.05-.28"/>
<path d="M95.67 122.18l1.97-.28"/>
<path d="M98.75 127.96l1.35 1.67"/>
<path d="M100.08 126.55l1.17 1.4"/>
<path d="M104.23 122.16l-.64 1.85"/>
<path d="M102.29 121.88l-.75 1.85"/>
<path d="M103.59 75.99l-2.05.28"/>
<path d="M104.33 77.82l-1.97.28"/>
<path d="M101.25 72.04l-1.35-1.67"/>
<path d="M99.92 73.45l-1.17-1.4"/>
<path d="M95.77 77.84l.64-1.85"/>
<path d="M97.71 78.12l.75-1.85"/>
<path d="M98.75 103.17l1.25-1.52"/>
<path d="M101.25 103.17l-1.25 1.52"/>
<path d="M101.25 96.83L100 98.35"/>
<path d="M100 95.31l-1.25 1.52"/>
<path d="M95.31 100l1.52 1.25"/>
<path d="M96.83 98.75l1.52 1.25"/>
<path d="M101.65 100l1.52 1.25"/>
<path d="M103.17 98.75l1.52 1.25"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossCeltic" stroke-width=".5">
<path d="m 95,60 v 7 C 80,70 70,80 67,95 h -7 v 10 h 7 c 3,15 13,25 28,28 v 7 h 10 v -7 c 15,-3 25,-13 28,-28 h 7 V 95 h -7 C 130,80 120,70 105,67 v -7 z m 0,15 V 95 H 75 C 77,85 85,77 95,75 Z m 10,0 c 10,2 18,10 20,20 h -20 z m -30,30 h 20 v 20 C 85,123 77,115 75,105 Z m 30,0 h 20 c -2,10 -10,18 -20,20 z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 553 B

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossCeltic2" stroke-width=".5">
<path d="M99.99 59.85c-4.86.02-10.1.95-14.21 2.72.6 2.64 1.27 5.26 1.96 7.87A32 32 0 0070.4 87.87c-2.64-.7-5.28-1.43-7.92-2.18a39.37 39.37 0 00-2.67 14.3c.02 4.85.95 10.1 2.72 14.2 2.65-.6 5.28-1.28 7.9-1.97a32 32 0 0017.43 17.39c-.7 2.63-1.42 5.25-2.17 7.87 4.4 1.76 9.4 2.66 14.3 2.68 4.85-.02 10.1-.96 14.2-2.72-.6-2.64-1.27-5.25-1.96-7.86a32 32 0 0017.38-17.43c2.65.71 5.29 1.43 7.93 2.19 1.76-4.4 2.66-9.4 2.67-14.3-.02-4.86-.95-10.1-2.72-14.2-2.64.6-5.27 1.27-7.9 1.97a32 32 0 00-17.47-17.43c.7-2.62 1.42-5.24 2.17-7.86a39.37 39.37 0 00-14.3-2.67zM110 78.22c5.2 2.4 9.2 6.4 11.77 11.7l-11.37 2.9c.2 3.4-1.79 4.81-4 4.8a4 4 0 01-4-4c-.15-2.43 1.8-4.2 4.6-4zm-20.16.03l2.9 11.37c3.4-.2 4.82 1.79 4.8 4a4 4 0 01-4 4c-2.42.15-4.2-1.8-4-4.6l-11.4-3c2.4-5.2 6.4-9.2 11.7-11.77zm3.75 24.15a4 4 0 014 4c.15 2.43-1.8 4.2-4.6 4l-3 11.4c-5.2-2.4-9.2-6.4-11.77-11.7l11.37-2.9c-.2-3.4 1.78-4.8 4-4.8zm13.01.06c2.31-.02 3.97 1.9 3.78 4.6l11.4 3c-2.4 5.2-6.4 9.2-11.7 11.78l-2.9-11.37c-3.4.2-4.82-1.79-4.8-4a4 4 0 014.22-4z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossCercelee" stroke-width=".5">
<path d="M133 100.05c3.59-.26 6.43-4.77 6.43-10.24 0-5.65-3.02-10.24-6.73-10.24h-5.73c2.36 0 4.28 3.24 4.28 7.26 0 4.03-1.92 7.26-4.28 7.26h-20.94V73.14c0-2.36 3.28-4.29 7.26-4.29s7.26 1.93 7.26 4.29v-5.73c0-3.72-4.59-6.74-10.23-6.74-5.47 0-9.97 2.84-10.23 6.43-.26-3.59-4.77-6.43-10.23-6.43-5.64 0-10.23 3.02-10.23 6.74v5.73c0-2.36 3.24-4.29 7.26-4.29s7.26 1.93 7.26 4.29V94.1H73.19c-2.36 0-4.28-3.28-4.28-7.26s1.92-7.26 4.28-7.26h-5.73c-3.72 0-6.73 4.59-6.73 10.24 0 5.47 2.84 9.98 6.43 10.24-3.59.26-6.43 4.77-6.43 10.24 0 5.65 3.02 10.24 6.73 10.24h5.73c-2.36 0-4.28-3.24-4.28-7.26 0-4.03 1.92-7.26 4.28-7.26h20.94v20.96c0 2.36-3.28 4.29-7.26 4.29s-7.26-1.93-7.26-4.29v5.73c0 3.72 4.59 6.74 10.23 6.74 5.47 0 9.93-2.84 10.23-6.43.26 3.59 4.77 6.43 10.23 6.43 5.64 0 10.23-3.02 10.23-6.74v-5.73c0 2.36-3.24 4.29-7.26 4.29s-7.26-1.93-7.26-4.29v-20.96h20.94c2.36 0 4.28 3.28 4.28 7.26s-1.92 7.26-4.28 7.26h5.73c3.72 0 6.73-4.59 6.73-10.24 0-5.47-2.84-9.98-6.43-10.24z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -1,6 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="#d7374a" stroke="#000" viewBox="50 50 200 200">
<metadata author="Azgaar" license="https://creativecommons.org/publicdomain/zero/1.0"/>
<g id="crossClechy" stroke-width=".5">
<path d="M 96.9,103.1 C 97,112 92,122 87,127 c 5.2,2.3 11,8 13,15 2,-7 7.8,-12.7 13,-15 -5,-5 -10,-15 -9.9,-23.9 8.9,-0.1 19.9,4.9 24.9,9.9 2,-5 8,-11 15,-13 -7,-2 -13,-8 -15,-13 -5,5 -16,10 -24.9,9.9 C 103,88 108,78 113,73 108,71 102,65 100,58 98,65 92,71 87,73 92,78 97,88 96.9,96.9 88,97 78,92 73,87 c -2,5 -8,11 -15,13 7,2 13,8 15,13 7,-5 15,-10 23.9,-9.9 z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 608 B

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