Added organisation global ranking dipslay
|
@ -1,5 +1,6 @@
|
|||
import util
|
||||
import math, random
|
||||
import os
|
||||
import configparser
|
||||
import json
|
||||
import datetime
|
||||
|
@ -8,6 +9,13 @@ class Contributor_helper:
|
|||
def __init__(self, serv_redis_db, cfg):
|
||||
self.serv_redis_db = serv_redis_db
|
||||
self.cfg = cfg
|
||||
self.cfg_org_rank = configparser.ConfigParser()
|
||||
self.cfg_org_rank.read(os.path.join(os.environ['DASH_CONFIG'], 'rankTitle.cfg'))
|
||||
|
||||
self.org_rank_maxLevel = self.cfg_org_rank.getint('rankTitle', 'maxLevel')
|
||||
self.org_rank = {}
|
||||
for rank in range(1, self.org_rank_maxLevel+1):
|
||||
self.org_rank[rank] = self.cfg_org_rank.get('rankTitle', str(rank))
|
||||
|
||||
self.misp_web_url = cfg.get('RedisGlobal', 'misp_web_url')
|
||||
self.MAX_NUMBER_OF_LAST_CONTRIBUTOR = cfg.getint('CONTRIB', 'max_number_of_last_contributor')
|
||||
|
@ -187,6 +195,7 @@ class Contributor_helper:
|
|||
for d in range(15):
|
||||
dic = {}
|
||||
dic['rank'] = random.randint(1,self.levelMax)
|
||||
dic['orgRank'] = random.randint(1,self.levelMax),
|
||||
dic['logo_path'] = 'logo'
|
||||
dic['org'] = 'Org'+str(d)
|
||||
dic['pnts'] = random.randint(1,2**self.levelMax)
|
||||
|
@ -206,36 +215,42 @@ class Contributor_helper:
|
|||
data2 = [
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': self.getOrgLogoFromRedis('MISP'),
|
||||
'org': 'MISP',
|
||||
'pnts': random.randint(1,2**self.levelMax)
|
||||
},
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': 'logo1',
|
||||
'org': 'CIRCL',
|
||||
'pnts': random.randint(1,2**self.levelMax)
|
||||
},
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': 'logo2',
|
||||
'org': 'CASES',
|
||||
'pnts': random.randint(1,2**self.levelMax)
|
||||
},
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': 'logo3',
|
||||
'org': 'SMILE',
|
||||
'pnts': random.randint(1,2**self.levelMax)
|
||||
},
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': 'logo4',
|
||||
'org': 'ORG4',
|
||||
'pnts': random.randint(1,2**self.levelMax)
|
||||
},
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': 'logo5',
|
||||
'org': 'ORG5',
|
||||
'pnts': random.randint(1,2**self.levelMax)
|
||||
|
@ -248,6 +263,7 @@ class Contributor_helper:
|
|||
data2 = [
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': self.getOrgLogoFromRedis('MISP'),
|
||||
'org': 'MISP',
|
||||
'pnts': random.randint(1,2**self.levelMax),
|
||||
|
@ -255,6 +271,7 @@ class Contributor_helper:
|
|||
},
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': 'logo1',
|
||||
'org': 'CIRCL',
|
||||
'pnts': random.randint(1,2**self.levelMax),
|
||||
|
@ -262,6 +279,7 @@ class Contributor_helper:
|
|||
},
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': 'logo2',
|
||||
'org': 'CASES',
|
||||
'pnts': random.randint(1,2**self.levelMax),
|
||||
|
@ -269,6 +287,7 @@ class Contributor_helper:
|
|||
},
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': 'logo3',
|
||||
'org': 'SMILE',
|
||||
'pnts': random.randint(1,2**self.levelMax),
|
||||
|
@ -276,6 +295,7 @@ class Contributor_helper:
|
|||
},
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': 'logo4',
|
||||
'org': 'ORG4',
|
||||
'pnts': random.randint(1,2**self.levelMax),
|
||||
|
@ -283,6 +303,7 @@ class Contributor_helper:
|
|||
},
|
||||
{
|
||||
'rank': random.randint(1,self.levelMax),
|
||||
'orgRank': random.randint(1,self.levelMax),
|
||||
'logo_path': 'logo5',
|
||||
'org': 'ORG5',
|
||||
'pnts': random.randint(1,2**self.levelMax),
|
||||
|
|
|
@ -151,6 +151,10 @@ def contrib():
|
|||
categ_list = contributor_helper.categories_in_datatable
|
||||
categ_list_str = [ s[0].upper() + s[1:].replace('_', ' ') for s in contributor_helper.categories_in_datatable]
|
||||
categ_list_points = [contributor_helper.DICO_PNTS_REWARD[categ] for categ in categ_list]
|
||||
org_rank = contributor_helper.org_rank
|
||||
org_rank_list = [[rank, title] for rank, title in org_rank.items()]
|
||||
org_rank_list.sort(key=lambda x: x[0])
|
||||
|
||||
currOrg = request.args.get('org')
|
||||
if currOrg is None:
|
||||
currOrg = ""
|
||||
|
@ -162,6 +166,8 @@ def contrib():
|
|||
categ_list=json.dumps(categ_list),
|
||||
categ_list_str=categ_list_str,
|
||||
categ_list_points=categ_list_points,
|
||||
org_rank_json=json.dumps(org_rank),
|
||||
org_rank_list=org_rank_list,
|
||||
min_between_reload=cfg.getint('CONTRIB', 'min_between_reload')
|
||||
)
|
||||
|
||||
|
|
|
@ -9,8 +9,13 @@
|
|||
bottom: 18%;
|
||||
}
|
||||
|
||||
.orgRankClass {
|
||||
top: 6px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.questionBadgeDiv {
|
||||
float: right;
|
||||
float: left;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background-color: #286090;
|
||||
|
@ -19,12 +24,12 @@
|
|||
color: white;
|
||||
top: 4px;
|
||||
position: relative;
|
||||
left: 78%;
|
||||
left: 1%;
|
||||
}
|
||||
|
||||
.infoBlue {
|
||||
background-color: #719bc0 !important;
|
||||
color: white;
|
||||
background-color: #d1d1d1 !important;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.centerInBtn {
|
||||
|
@ -60,9 +65,15 @@
|
|||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.table > tbody > tr > td.centerCellPic {
|
||||
.table > tbody > tr > td.centerCellPicOrgLogo {
|
||||
padding: 5px;
|
||||
text-align: center;
|
||||
text-align: right;
|
||||
min-width: 45px;
|
||||
}
|
||||
|
||||
.table > tbody > tr > td.centerCellPicOrgRank {
|
||||
padding: 0px;
|
||||
text-align: left;
|
||||
min-width: 45px;
|
||||
}
|
||||
|
||||
|
|
|
@ -49,13 +49,17 @@ var optionDatatable_light = {
|
|||
"infoEmpty": "",
|
||||
},
|
||||
"info": false,
|
||||
"columnDefs": [
|
||||
{ className: "centerCellPicOrgRank", "targets": [ 2 ] },
|
||||
{ className: "centerCellPicOrgLogo", "targets": [ 3 ] }
|
||||
]
|
||||
};
|
||||
var optionDatatable_top = jQuery.extend({}, optionDatatable_light)
|
||||
var optionDatatable_last = jQuery.extend({}, optionDatatable_light)
|
||||
optionDatatable_last.columnDefs = [
|
||||
{ 'orderData':[4], 'targets': [0] },
|
||||
{ 'orderData':[5], 'targets': [0] },
|
||||
{
|
||||
'targets': [4],
|
||||
'targets': [5],
|
||||
'visible': false,
|
||||
'searchable': false
|
||||
},
|
||||
|
@ -71,6 +75,10 @@ var optionDatatable_Categ = {
|
|||
scrollCollapse: true,
|
||||
paging: false,
|
||||
"info": false,
|
||||
"columnDefs": [
|
||||
{ className: "centerCellPicOrgRank", "targets": [ 2 ] },
|
||||
{ className: "centerCellPicOrgLogo", "targets": [ 3 ], 'searchable': false, 'sortable': false }
|
||||
]
|
||||
};
|
||||
|
||||
var typeaheadOption = {
|
||||
|
@ -90,11 +98,11 @@ var typeaheadOption = {
|
|||
}
|
||||
|
||||
/* FUNCTIONS */
|
||||
function getRankIcon(rank, size, header) {
|
||||
function getMonthlyRankIcon(rank, size, header) {
|
||||
if (rank > 16) {
|
||||
rankLogoPath = url_baseRankLogo+0+'.svg';
|
||||
var rankLogoPath = url_baseRankMonthlyLogo+0+'.svg';
|
||||
} else {
|
||||
rankLogoPath = url_baseRankLogo+rank+'.svg';
|
||||
var rankLogoPath = url_baseRankMonthlyLogo+rank+'.svg';
|
||||
}
|
||||
var img = document.createElement('img');
|
||||
img.src = rankLogoPath;
|
||||
|
@ -118,13 +126,29 @@ function getRankIcon(rank, size, header) {
|
|||
return img.outerHTML;
|
||||
}
|
||||
|
||||
function createImg(source) {
|
||||
function getOrgRankIcon(rank, size) {
|
||||
if (rank > 16) {
|
||||
var rankLogoPath = url_baseOrgRankLogo+0+'.svg';
|
||||
} else {
|
||||
var rankLogoPath = url_baseOrgRankLogo+rank+'.svg';
|
||||
}
|
||||
var obj = document.createElement('img');
|
||||
obj.height = size/2;
|
||||
obj.width = size;
|
||||
obj.src = rankLogoPath;
|
||||
obj.type = "image/svg"
|
||||
obj.title = org_rank_obj[rank];
|
||||
obj.classList.add('orgRankClass')
|
||||
return obj.outerHTML;
|
||||
}
|
||||
|
||||
function createImg(source, size, return_obj) {
|
||||
var obj = document.createElement('object');
|
||||
obj.height = 22;
|
||||
obj.width = 22;
|
||||
obj.height = size;
|
||||
obj.width = size;
|
||||
obj.style.margin = 'auto';
|
||||
obj.data = source;
|
||||
obj.type = "image/jpg"
|
||||
obj.type = "image/png"
|
||||
return obj.outerHTML;
|
||||
}
|
||||
|
||||
|
@ -171,7 +195,7 @@ function generateRankingSheet(rank, rankDec, stepPnt, pnt, Rpnt) {
|
|||
for (var i=1; i<=maxRank; i++) {
|
||||
var tr = document.createElement('tr');
|
||||
var td1 = document.createElement('td');
|
||||
td1.innerHTML = getRankIcon(i, 40);
|
||||
td1.innerHTML = getMonthlyRankIcon(i, 40);
|
||||
td1.style.padding = "2px";
|
||||
var td2 = document.createElement('td');
|
||||
td2.innerHTML = Math.floor(Math.pow(rankMultiplier, i));
|
||||
|
@ -215,13 +239,15 @@ function generateRankingSheet(rank, rankDec, stepPnt, pnt, Rpnt) {
|
|||
|
||||
function addToTableFromJson(datatable, url) {
|
||||
$.getJSON( url, function( data ) {
|
||||
console.log(data);
|
||||
for (i in data) {
|
||||
var row = data[i];
|
||||
i = parseInt(i);
|
||||
var to_add = [
|
||||
row.pnts,
|
||||
getRankIcon(row.rank),
|
||||
createImg(row.logo_path),
|
||||
getMonthlyRankIcon(row.rank),
|
||||
getOrgRankIcon(row.orgRank, 60),
|
||||
createImg(row.logo_path, 32),
|
||||
row.org
|
||||
];
|
||||
datatable.row.add(to_add);
|
||||
|
@ -244,8 +270,9 @@ function addLastFromJson(datatable, url) {
|
|||
function addLastContributor(datatable, data, update) {
|
||||
var to_add = [
|
||||
data.pnts,
|
||||
getRankIcon(data.rank),
|
||||
createImg(data.logo_path),
|
||||
getMonthlyRankIcon(data.rank),
|
||||
getOrgRankIcon(data.orgRank, 60),
|
||||
createImg(data.logo_path, 32),
|
||||
data.org,
|
||||
data.epoch
|
||||
];
|
||||
|
@ -270,8 +297,8 @@ function updateProgressHeader(org) {
|
|||
$('#orgText').text(data.org);
|
||||
var popoverRank = $('#btnCurrRank').data('bs.popover');
|
||||
popoverRank.options.content = generateRankingSheet(rank, rankDec, data.stepPts, data.points, data.remainingPts);
|
||||
$('#orgRankDiv').html(getRankIcon(rank, 40, true));
|
||||
$('#orgNextRankDiv').html(getRankIcon(rank+1, 40, true));
|
||||
$('#orgRankDiv').html(getMonthlyRankIcon(rank, 40, true));
|
||||
$('#orgNextRankDiv').html(getMonthlyRankIcon(rank+1, 40, true));
|
||||
if (data.rank > 16){
|
||||
$('#progressBarDiv').width(1*150); //150 is empty bar width
|
||||
} else {
|
||||
|
@ -350,7 +377,8 @@ $(document).ready(function() {
|
|||
i = parseInt(i);
|
||||
var to_add = [
|
||||
row.pnts,
|
||||
getRankIcon(row.rank),
|
||||
getMonthlyRankIcon(row.rank),
|
||||
getOrgRankIcon(row.orgRank, 44),
|
||||
row.logo_path,
|
||||
row.org,
|
||||
];
|
||||
|
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 242 B After Width: | Height: | Size: 242 B |
Before Width: | Height: | Size: 275 B After Width: | Height: | Size: 275 B |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 5.5 KiB After Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 8.3 KiB |
Before Width: | Height: | Size: 304 B After Width: | Height: | Size: 304 B |
Before Width: | Height: | Size: 329 B After Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 400 B After Width: | Height: | Size: 400 B |
Before Width: | Height: | Size: 401 B After Width: | Height: | Size: 401 B |
Before Width: | Height: | Size: 400 B After Width: | Height: | Size: 400 B |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.1 KiB |
|
@ -0,0 +1,83 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="1-Ensign.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-0.1416896,248.21496)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-4">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5608"
|
||||
d="m 203.92291,97.380318 47.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -47.26363,0.14212 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="m 245.67812,122.66153 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.0 KiB |
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="10-Colonel.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.19595437,247.30259)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-62">
|
||||
<g
|
||||
id="g5478-6">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482-1"
|
||||
d="M 4.3655218,146.68142 C 4.2166368,146.29338 4.1609914,135.07386 4.2418652,121.74916 L 4.3889086,97.522435 127.92291,97.380318 l 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 C 29.58578,147.35818 4.5814298,147.24416 4.3655218,146.68142 Z M 44.539934,122.66153 c 0.106868,-13.1064 -0.03351,-18.46326 -0.498508,-19.02355 -0.529525,-0.63804 -3.631174,-0.75276 -17.051123,-0.63067 l -16.403859,0.14925 -0.148358,19.02343 -0.148357,19.02344 17.050725,-0.14913 17.050726,-0.14912 z m 40.002201,-0.31087 c 0.115945,-14.46905 -0.0081,-18.65404 -0.563412,-19.00653 -0.822351,-0.52201 -31.442049,-0.64091 -32.780516,-0.12729 -0.787535,0.3022 -0.891199,2.48672 -0.891199,18.7804 0,10.14114 0.172726,18.61115 0.383835,18.82226 0.21111,0.21111 7.880561,0.31675 17.043222,0.23476 l 16.659385,-0.14908 z m 40.001935,-0.17894 -0.14835,-19.01516 H 107.77506 91.154398 l -0.148347,19.01516 -0.148346,19.01516 h 16.917355 16.91735 z m 40.56577,0.0126 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z m 40.00218,-0.0126 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z m 40.5661,0.48981 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5496-8"
|
||||
d="m 10.438086,122.17999 0.148358,-19.02343 16.403859,-0.14925 c 13.419949,-0.12209 16.521598,-0.007 17.051123,0.63067 0.465,0.56029 0.605376,5.91715 0.498508,19.02355 l -0.148754,18.24365 -17.050726,0.14912 -17.050725,0.14913 z"
|
||||
style="fill:#f80909;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5494-7"
|
||||
d="m 50.690843,140.8195 c -0.211109,-0.21111 -0.383835,-8.68112 -0.383835,-18.82226 0,-16.29368 0.103664,-18.4782 0.891199,-18.7804 1.338467,-0.51362 31.958165,-0.39472 32.780516,0.12729 0.555299,0.35249 0.679357,4.53748 0.563412,19.00653 l -0.148685,18.55452 -16.659385,0.14908 c -9.162661,0.082 -16.832112,-0.0237 -17.043222,-0.23476 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492-9"
|
||||
d="m 91.006051,122.17172 0.148347,-19.01516 h 16.620662 16.62066 l 0.14835,19.01516 0.14834,19.01516 H 107.77506 90.857705 Z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490-2"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488-0"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480-2"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="11-Senior_Colonel.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-0.18202182,247.60498)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-6">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="M 4.3655218,146.68142 C 4.2166368,146.29338 4.1609914,135.07386 4.2418652,121.74916 L 4.3889086,97.522435 127.92291,97.380318 l 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 C 29.58578,147.35818 4.5814298,147.24416 4.3655218,146.68142 Z M 44.539934,122.66153 c 0.106868,-13.1064 -0.03351,-18.46326 -0.498508,-19.02355 -0.529525,-0.63804 -3.631174,-0.75276 -17.051123,-0.63067 l -16.403859,0.14925 -0.148358,19.02343 -0.148357,19.02344 17.050725,-0.14913 17.050726,-0.14912 z m 40.002201,-0.31087 c 0.115945,-14.46905 -0.0081,-18.65404 -0.563412,-19.00653 -0.822351,-0.52201 -31.442049,-0.64091 -32.780516,-0.12729 -0.787535,0.3022 -0.891199,2.48672 -0.891199,18.7804 0,10.14114 0.172726,18.61115 0.383835,18.82226 0.21111,0.21111 7.880561,0.31675 17.043222,0.23476 l 16.659385,-0.14908 z m 40.001935,-0.17894 -0.14835,-19.01516 H 107.77506 91.154398 l -0.148347,19.01516 -0.148346,19.01516 h 16.917355 16.91735 z m 40.56577,0.0126 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z m 40.00218,-0.0126 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z m 40.5661,0.48981 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5496"
|
||||
d="m 10.438086,122.17999 0.148358,-19.02343 16.403859,-0.14925 c 13.419949,-0.12209 16.521598,-0.007 17.051123,0.63067 0.465,0.56029 0.605376,5.91715 0.498508,19.02355 l -0.148754,18.24365 -17.050726,0.14912 -17.050725,0.14913 z"
|
||||
style="fill:#f80909;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5494"
|
||||
d="m 50.690843,140.8195 c -0.211109,-0.21111 -0.383835,-8.68112 -0.383835,-18.82226 0,-16.29368 0.103664,-18.4782 0.891199,-18.7804 1.338467,-0.51362 31.958165,-0.39472 32.780516,0.12729 0.555299,0.35249 0.679357,4.53748 0.563412,19.00653 l -0.148685,18.55452 -16.659385,0.14908 c -9.162661,0.082 -16.832112,-0.0237 -17.043222,-0.23476 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m 91.006051,122.17172 0.148347,-19.01516 h 16.620662 16.62066 l 0.14835,19.01516 0.14834,19.01516 H 107.77506 90.857705 Z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="12-Major_General.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.12036891,247.86957)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-9">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="M 4.3655218,146.68142 C 4.2166368,146.29338 4.1609914,135.07386 4.2418652,121.74916 L 4.3889086,97.522435 127.92291,97.380318 l 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 C 29.58578,147.35818 4.5814298,147.24416 4.3655218,146.68142 Z M 44.539934,122.66153 c 0.106868,-13.1064 -0.03351,-18.46326 -0.498508,-19.02355 -0.529525,-0.63804 -3.631174,-0.75276 -17.051123,-0.63067 l -16.403859,0.14925 -0.148358,19.02343 -0.148357,19.02344 17.050725,-0.14913 17.050726,-0.14912 z m 40.002201,-0.31087 c 0.115945,-14.46905 -0.0081,-18.65404 -0.563412,-19.00653 -0.822351,-0.52201 -31.442049,-0.64091 -32.780516,-0.12729 -0.787535,0.3022 -0.891199,2.48672 -0.891199,18.7804 0,10.14114 0.172726,18.61115 0.383835,18.82226 0.21111,0.21111 7.880561,0.31675 17.043222,0.23476 l 16.659385,-0.14908 z m 40.001935,-0.17894 -0.14835,-19.01516 H 107.77506 91.154398 l -0.148347,19.01516 -0.148346,19.01516 h 16.917355 16.91735 z m 40.56577,0.0126 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z m 40.00218,-0.0126 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z m 40.5661,0.48981 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5496"
|
||||
d="m 10.438086,122.17999 0.148358,-19.02343 16.403859,-0.14925 c 13.419949,-0.12209 16.521598,-0.007 17.051123,0.63067 0.465,0.56029 0.605376,5.91715 0.498508,19.02355 l -0.148754,18.24365 -17.050726,0.14912 -17.050725,0.14913 z"
|
||||
style="fill:#f80909;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5494"
|
||||
d="m 50.690843,140.8195 c -0.211109,-0.21111 -0.383835,-8.68112 -0.383835,-18.82226 0,-16.29368 0.103664,-18.4782 0.891199,-18.7804 1.338467,-0.51362 31.958165,-0.39472 32.780516,0.12729 0.555299,0.35249 0.679357,4.53748 0.563412,19.00653 l -0.148685,18.55452 -16.659385,0.14908 c -9.162661,0.082 -16.832112,-0.0237 -17.043222,-0.23476 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m 91.006051,122.17172 0.148347,-19.01516 h 16.620662 16.62066 l 0.14835,19.01516 0.14834,19.01516 H 107.77506 90.857705 Z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="13-Lieutenant_General.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="-84.285714"
|
||||
inkscape:cy="560"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.42274238,247.41597)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-7">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="M 4.3655218,146.68142 C 4.2166368,146.29338 4.1609914,135.07386 4.2418652,121.74916 L 4.3889086,97.522435 127.92291,97.380318 l 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 C 29.58578,147.35818 4.5814298,147.24416 4.3655218,146.68142 Z M 44.539934,122.66153 c 0.106868,-13.1064 -0.03351,-18.46326 -0.498508,-19.02355 -0.529525,-0.63804 -3.631174,-0.75276 -17.051123,-0.63067 l -16.403859,0.14925 -0.148358,19.02343 -0.148357,19.02344 17.050725,-0.14913 17.050726,-0.14912 z m 40.002201,-0.31087 c 0.115945,-14.46905 -0.0081,-18.65404 -0.563412,-19.00653 -0.822351,-0.52201 -31.442049,-0.64091 -32.780516,-0.12729 -0.787535,0.3022 -0.891199,2.48672 -0.891199,18.7804 0,10.14114 0.172726,18.61115 0.383835,18.82226 0.21111,0.21111 7.880561,0.31675 17.043222,0.23476 l 16.659385,-0.14908 z m 40.001935,-0.17894 -0.14835,-19.01516 H 107.77506 91.154398 l -0.148347,19.01516 -0.148346,19.01516 h 16.917355 16.91735 z m 40.56577,0.0126 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z m 40.00218,-0.0126 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z m 40.5661,0.48981 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5496"
|
||||
d="m 10.438086,122.17999 0.148358,-19.02343 16.403859,-0.14925 c 13.419949,-0.12209 16.521598,-0.007 17.051123,0.63067 0.465,0.56029 0.605376,5.91715 0.498508,19.02355 l -0.148754,18.24365 -17.050726,0.14912 -17.050725,0.14913 z"
|
||||
style="fill:#f80909;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5494"
|
||||
d="m 50.690843,140.8195 c -0.211109,-0.21111 -0.383835,-8.68112 -0.383835,-18.82226 0,-16.29368 0.103664,-18.4782 0.891199,-18.7804 1.338467,-0.51362 31.958165,-0.39472 32.780516,0.12729 0.555299,0.35249 0.679357,4.53748 0.563412,19.00653 l -0.148685,18.55452 -16.659385,0.14908 c -9.162661,0.082 -16.832112,-0.0237 -17.043222,-0.23476 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m 91.006051,122.17172 0.148347,-19.01516 h 16.620662 16.62066 l 0.14835,19.01516 0.14834,19.01516 H 107.77506 90.857705 Z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.3 KiB |
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="14-General.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="-84.285714"
|
||||
inkscape:cy="560"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.12035921,247.49161)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-1">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="M 4.3655218,146.68142 C 4.2166368,146.29338 4.1609914,135.07386 4.2418652,121.74916 L 4.3889086,97.522435 127.92291,97.380318 l 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 C 29.58578,147.35818 4.5814298,147.24416 4.3655218,146.68142 Z M 44.539934,122.66153 c 0.106868,-13.1064 -0.03351,-18.46326 -0.498508,-19.02355 -0.529525,-0.63804 -3.631174,-0.75276 -17.051123,-0.63067 l -16.403859,0.14925 -0.148358,19.02343 -0.148357,19.02344 17.050725,-0.14913 17.050726,-0.14912 z m 40.002201,-0.31087 c 0.115945,-14.46905 -0.0081,-18.65404 -0.563412,-19.00653 -0.822351,-0.52201 -31.442049,-0.64091 -32.780516,-0.12729 -0.787535,0.3022 -0.891199,2.48672 -0.891199,18.7804 0,10.14114 0.172726,18.61115 0.383835,18.82226 0.21111,0.21111 7.880561,0.31675 17.043222,0.23476 l 16.659385,-0.14908 z m 40.001935,-0.17894 -0.14835,-19.01516 H 107.77506 91.154398 l -0.148347,19.01516 -0.148346,19.01516 h 16.917355 16.91735 z m 40.56577,0.0126 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z m 40.00218,-0.0126 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z m 40.5661,0.48981 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5496"
|
||||
d="m 10.438086,122.17999 0.148358,-19.02343 16.403859,-0.14925 c 13.419949,-0.12209 16.521598,-0.007 17.051123,0.63067 0.465,0.56029 0.605376,5.91715 0.498508,19.02355 l -0.148754,18.24365 -17.050726,0.14912 -17.050725,0.14913 z"
|
||||
style="fill:#f80909;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5494"
|
||||
d="m 50.690843,140.8195 c -0.211109,-0.21111 -0.383835,-8.68112 -0.383835,-18.82226 0,-16.29368 0.103664,-18.4782 0.891199,-18.7804 1.338467,-0.51362 31.958165,-0.39472 32.780516,0.12729 0.555299,0.35249 0.679357,4.53748 0.563412,19.00653 l -0.148685,18.55452 -16.659385,0.14908 c -9.162661,0.082 -16.832112,-0.0237 -17.043222,-0.23476 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m 91.006051,122.17172 0.148347,-19.01516 h 16.620662 16.62066 l 0.14835,19.01516 0.14834,19.01516 H 107.77506 90.857705 Z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.2 KiB |
|
@ -0,0 +1,204 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="15-Marshal.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="-84.285714"
|
||||
inkscape:cy="560"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.47693593,249.0448)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-5">
|
||||
<path
|
||||
style="fill:#a4a2a1;stroke-width:0.57450134"
|
||||
d="m 7.9803632,163.76207 c -0.2113938,-0.2114 -0.3843524,-20.10938 -0.3843524,-44.21775 0,-42.748803 0.027495,-43.848097 1.1112341,-44.428096 C 10.46673,74.174576 245.48823,74.29641 246.77143,75.239636 c 0.90714,0.666796 0.96632,3.859571 0.82793,44.667474 l -0.14904,43.94935 -119.5428,0.14498 c -65.748543,0.0797 -119.7157629,-0.028 -119.9271568,-0.23937 z"
|
||||
id="path3768-3"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4811"
|
||||
d="m 14.05082,158.49447 c -0.565796,-0.35914 -0.692852,-4.45475 -0.574502,-18.51887 l 0.151957,-18.05773 16.046403,-0.1529 c 12.454663,-0.11867 16.14975,0.01 16.508116,0.5745 0.253943,0.40007 0.465673,8.40007 0.470511,17.77778 0.0076,14.74219 -0.113417,17.17259 -0.893991,17.95316 -0.775209,0.77521 -3.02812,0.90155 -15.942412,0.894 -8.271793,-0.005 -15.366531,-0.21632 -15.766082,-0.46994 z"
|
||||
style="fill:#f7b634;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4809"
|
||||
d="M 53.116911,158.49447 C 52.551116,158.13533 52.42406,154.03972 52.54241,139.9756 l 0.151957,-18.05773 16.046402,-0.1529 c 12.454661,-0.11867 16.14975,0.01 16.508118,0.5745 0.253942,0.40007 0.465674,8.5387 0.470511,18.08585 0.0084,16.57863 -0.04113,17.38517 -1.102439,17.95317 -1.320583,0.70675 -30.400682,0.81383 -31.500048,0.11598 z"
|
||||
style="fill:#f7b634;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4807"
|
||||
d="m 92.109646,158.18608 c -0.464393,-0.55956 -0.609305,-5.91613 -0.501224,-18.52767 l 0.152036,-17.74054 16.046402,-0.1529 c 12.45466,-0.11867 16.14975,0.01 16.50812,0.5745 0.25394,0.40007 0.46567,8.5387 0.47051,18.08585 0.008,16.57863 -0.0411,17.38517 -1.10244,17.95317 -0.68409,0.36611 -6.84032,0.59471 -16.01569,0.59471 -11.919518,0 -15.035291,-0.15764 -15.557714,-0.78712 z"
|
||||
style="fill:#f7b634;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4805"
|
||||
d="m 131.2491,158.49447 c -0.5658,-0.35914 -0.69286,-4.45475 -0.57451,-18.51887 l 0.15196,-18.05773 h 16.37329 16.37329 l 0.15203,17.74054 c 0.10808,12.61154 -0.0368,17.96811 -0.50122,18.52767 -0.52356,0.63085 -3.69028,0.78537 -15.95082,0.77833 -8.41366,-0.005 -15.62448,-0.21632 -16.02402,-0.46994 z"
|
||||
style="fill:#f7b634;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4803"
|
||||
d="m 170.31519,158.49447 c -0.5658,-0.35914 -0.69286,-4.45475 -0.5745,-18.51887 l 0.15195,-18.05773 h 16.37329 16.37329 l 0.15203,17.74054 c 0.10809,12.61154 -0.0368,17.96811 -0.50122,18.52767 -0.52356,0.63085 -3.69027,0.78537 -15.95082,0.77833 -8.41366,-0.005 -15.62447,-0.21632 -16.02402,-0.46994 z"
|
||||
style="fill:#f7b634;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4801"
|
||||
d="m 209.30792,158.18608 c -0.46439,-0.55956 -0.6093,-5.91613 -0.50122,-18.52767 l 0.15203,-17.74054 h 16.37329 16.37329 l 0.15196,18.05773 c 0.11835,14.06412 -0.009,18.15973 -0.57451,18.51887 -0.39954,0.25362 -7.61036,0.4651 -16.02402,0.46994 -12.26054,0.007 -15.42726,-0.14748 -15.95082,-0.77833 z"
|
||||
style="fill:#f7b634;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4799"
|
||||
d="m 14.059151,115.50512 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.10821,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109282,-0.391845 31.301105,0.245999 1.059107,0.566817 1.111234,1.369912 1.111234,17.120139 0,12.087104 -0.185156,16.710584 -0.689401,17.214824 -0.503953,0.50395 -4.792445,0.6772 -15.942413,0.64405 -8.389156,-0.025 -15.576167,-0.17575 -15.971137,-0.33513 z"
|
||||
style="fill:#f7b634;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4797"
|
||||
d="m 53.125243,115.50512 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.108209,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109284,-0.391845 31.301104,0.245999 1.05911,0.566817 1.111235,1.369912 1.111235,17.120139 0,12.087104 -0.185156,16.710584 -0.689402,17.214824 -0.503952,0.50395 -4.792444,0.6772 -15.942412,0.64405 -8.389156,-0.025 -15.576168,-0.17575 -15.971137,-0.33513 z"
|
||||
style="fill:#f7b634;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4795"
|
||||
d="m 92.191334,115.50512 c -1.014213,-0.40924 -1.041755,-33.536167 -0.02872,-34.549196 0.895527,-0.895528 29.861466,-0.982541 31.520436,-0.09469 1.05912,0.566817 1.11124,1.369912 1.11124,17.120139 0,12.087107 -0.18516,16.710587 -0.68941,17.214827 -0.50395,0.50395 -4.79244,0.6772 -15.9424,0.64405 -8.389159,-0.025 -15.576171,-0.17575 -15.971141,-0.33513 z"
|
||||
style="fill:#f7b634;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4793"
|
||||
d="m 131.25743,115.50512 c -1.01422,-0.40924 -1.04176,-33.536167 -0.0287,-34.549196 0.98228,-0.982279 30.96,-0.982279 31.94228,0 0.98397,0.983976 0.98397,33.256296 0,34.240276 -0.50396,0.50395 -4.79245,0.6772 -15.94242,0.64405 -8.38915,-0.025 -15.57616,-0.17575 -15.97113,-0.33513 z"
|
||||
style="fill:#f60c0c;fill-opacity:1;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4791"
|
||||
d="m 170.29479,115.1962 c -0.98397,-0.98398 -0.98397,-33.2563 0,-34.240276 0.98228,-0.982279 30.96,-0.982279 31.94228,0 0.98397,0.983976 0.98397,33.256296 0,34.240276 -0.98228,0.98228 -30.96,0.98228 -31.94228,0 z"
|
||||
style="fill:#f60c0c;fill-opacity:1;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3766-5"
|
||||
d="m 209.36088,115.1962 c -0.98397,-0.98398 -0.98397,-33.2563 0,-34.240276 0.98228,-0.982279 30.96,-0.982279 31.94228,0 0.98398,0.983976 0.98398,33.256296 0,34.240276 -0.98228,0.98228 -30.96,0.98228 -31.94228,0 z"
|
||||
style="fill:#f60c0c;fill-opacity:1;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4785"
|
||||
d="m 14.05082,158.49447 c -0.565796,-0.35914 -0.692852,-4.45475 -0.574502,-18.51887 l 0.151957,-18.05773 16.046403,-0.1529 c 12.454663,-0.11867 16.14975,0.01 16.508116,0.5745 0.253943,0.40007 0.465673,8.40007 0.470511,17.77778 0.0076,14.74219 -0.113417,17.17259 -0.893991,17.95316 -0.775209,0.77521 -3.02812,0.90155 -15.942412,0.894 -8.271793,-0.005 -15.366531,-0.21632 -15.766082,-0.46994 z"
|
||||
style="fill:#f60c0c;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4783"
|
||||
d="M 53.116911,158.49447 C 52.551116,158.13533 52.42406,154.03972 52.54241,139.9756 l 0.151957,-18.05773 16.046402,-0.1529 c 12.454661,-0.11867 16.14975,0.01 16.508118,0.5745 0.253942,0.40007 0.465674,8.5387 0.470511,18.08585 0.0084,16.57863 -0.04113,17.38517 -1.102439,17.95317 -1.320583,0.70675 -30.400682,0.81383 -31.500048,0.11598 z"
|
||||
style="fill:#f60c0c;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4781"
|
||||
d="m 92.109646,158.18608 c -0.464393,-0.55956 -0.609305,-5.91613 -0.501224,-18.52767 l 0.152036,-17.74054 16.046402,-0.1529 c 12.45466,-0.11867 16.14975,0.01 16.50812,0.5745 0.25394,0.40007 0.46567,8.5387 0.47051,18.08585 0.008,16.57863 -0.0411,17.38517 -1.10244,17.95317 -0.68409,0.36611 -6.84032,0.59471 -16.01569,0.59471 -11.919518,0 -15.035291,-0.15764 -15.557714,-0.78712 z"
|
||||
style="fill:#f60c0c;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4779"
|
||||
d="m 131.17574,158.18608 c -0.4644,-0.55956 -0.60931,-5.91613 -0.50123,-18.52767 l 0.15204,-17.74054 h 16.37329 16.37329 l 0.15266,17.80954 c 0.13914,16.23327 0.0659,17.87309 -0.82793,18.52766 -1.48725,1.08917 -30.81387,1.02539 -31.72212,-0.069 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4777"
|
||||
d="m 170.56791,158.25508 c -0.8938,-0.65457 -0.96708,-2.29439 -0.82793,-18.52766 l 0.15266,-17.80954 h 16.37329 16.37329 l 0.15266,17.80954 c 0.13914,16.23327 0.0659,17.87309 -0.82793,18.52766 -0.72411,0.5303 -4.83006,0.71813 -15.69802,0.71813 -10.86796,0 -14.97391,-0.18783 -15.69802,-0.71813 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4775"
|
||||
d="m 209.634,158.25508 c -0.8938,-0.65457 -0.96707,-2.29439 -0.82793,-18.52766 l 0.15266,-17.80954 h 16.37329 16.37329 l 0.15266,17.80954 c 0.13915,16.23327 0.0659,17.87309 -0.82793,18.52766 -0.72411,0.5303 -4.83006,0.71813 -15.69802,0.71813 -10.86796,0 -14.97391,-0.18783 -15.69802,-0.71813 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4773"
|
||||
d="m 14.059151,115.50512 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.10821,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109282,-0.391845 31.301105,0.245999 1.059107,0.566817 1.111234,1.369912 1.111234,17.120139 0,12.087104 -0.185156,16.710584 -0.689401,17.214824 -0.503953,0.50395 -4.792445,0.6772 -15.942413,0.64405 -8.389156,-0.025 -15.576167,-0.17575 -15.971137,-0.33513 z"
|
||||
style="fill:#f60c0c;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4771"
|
||||
d="m 53.125243,115.50512 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.108209,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109284,-0.391845 31.301104,0.245999 1.05911,0.566817 1.111235,1.369912 1.111235,17.120139 0,12.087104 -0.185156,16.710584 -0.689402,17.214824 -0.503952,0.50395 -4.792444,0.6772 -15.942412,0.64405 -8.389156,-0.025 -15.576168,-0.17575 -15.971137,-0.33513 z"
|
||||
style="fill:#f60c0c;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3764-6"
|
||||
d="m 92.191334,115.50512 c -1.014213,-0.40924 -1.041755,-33.536167 -0.02872,-34.549196 0.895527,-0.895528 29.861466,-0.982541 31.520436,-0.09469 1.05912,0.566817 1.11124,1.369912 1.11124,17.120139 0,12.087107 -0.18516,16.710587 -0.68941,17.214827 -0.50395,0.50395 -4.79244,0.6772 -15.9424,0.64405 -8.389159,-0.025 -15.576171,-0.17575 -15.971141,-0.33513 z"
|
||||
style="fill:#f60c0c;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4825"
|
||||
d="m 14.05082,158.49447 c -0.565796,-0.35914 -0.692852,-4.45475 -0.574502,-18.51887 l 0.151957,-18.05773 16.046403,-0.1529 c 12.454663,-0.11867 16.14975,0.01 16.508116,0.5745 0.253943,0.40007 0.465673,8.40007 0.470511,17.77778 0.0076,14.74219 -0.113417,17.17259 -0.893991,17.95316 -0.775209,0.77521 -3.02812,0.90155 -15.942412,0.894 -8.271793,-0.005 -15.366531,-0.21632 -15.766082,-0.46994 z"
|
||||
style="fill:#062e5f;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4823"
|
||||
d="M 53.116911,158.49447 C 52.551116,158.13533 52.42406,154.03972 52.54241,139.9756 l 0.151957,-18.05773 16.046402,-0.1529 c 12.454661,-0.11867 16.14975,0.01 16.508118,0.5745 0.253942,0.40007 0.465674,8.5387 0.470511,18.08585 0.0084,16.57863 -0.04113,17.38517 -1.102439,17.95317 -1.320583,0.70675 -30.400682,0.81383 -31.500048,0.11598 z"
|
||||
style="fill:#062e5f;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4821"
|
||||
d="m 92.109646,158.18608 c -0.464393,-0.55956 -0.609305,-5.91613 -0.501224,-18.52767 l 0.152036,-17.74054 16.046402,-0.1529 c 12.45466,-0.11867 16.14975,0.01 16.50812,0.5745 0.25394,0.40007 0.46567,8.5387 0.47051,18.08585 0.008,16.57863 -0.0411,17.38517 -1.10244,17.95317 -0.68409,0.36611 -6.84032,0.59471 -16.01569,0.59471 -11.919518,0 -15.035291,-0.15764 -15.557714,-0.78712 z"
|
||||
style="fill:#062e5f;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4819"
|
||||
d="m 14.059151,115.50512 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.10821,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109282,-0.391845 31.301105,0.245999 1.059107,0.566817 1.111234,1.369912 1.111234,17.120139 0,12.087104 -0.185156,16.710584 -0.689401,17.214824 -0.503953,0.50395 -4.792445,0.6772 -15.942413,0.64405 -8.389156,-0.025 -15.576167,-0.17575 -15.971137,-0.33513 z"
|
||||
style="fill:#f60c0c;fill-opacity:1;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path4817"
|
||||
d="m 53.125243,115.50512 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.108209,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109284,-0.391845 31.301104,0.245999 1.05911,0.566817 1.111235,1.369912 1.111235,17.120139 0,12.087104 -0.185156,16.710584 -0.689402,17.214824 -0.503952,0.50395 -4.792444,0.6772 -15.942412,0.64405 -8.389156,-0.025 -15.576168,-0.17575 -15.971137,-0.33513 z"
|
||||
style="fill:#f60c0c;fill-opacity:1;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3762-2"
|
||||
d="m 92.191334,115.50512 c -1.014213,-0.40924 -1.041755,-33.536167 -0.02872,-34.549196 0.895527,-0.895528 29.861466,-0.982541 31.520436,-0.09469 1.05912,0.566817 1.11124,1.369912 1.11124,17.120139 0,12.087107 -0.18516,16.710587 -0.68941,17.214827 -0.50395,0.50395 -4.79244,0.6772 -15.9424,0.64405 -8.389159,-0.025 -15.576171,-0.17575 -15.971141,-0.33513 z"
|
||||
style="fill:#f60c0c;fill-opacity:1;stroke-width:0.57450134" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
|
@ -0,0 +1,87 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="16-Grand General.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35"
|
||||
inkscape:cx="-84.285714"
|
||||
inkscape:cy="560"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.25014905,248.81803)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-6">
|
||||
<g
|
||||
id="g3760">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3768"
|
||||
d="m 7.9803632,163.76207 c -0.2113938,-0.2114 -0.3843524,-20.10938 -0.3843524,-44.21775 0,-42.748803 0.027495,-43.848097 1.1112341,-44.428096 C 10.46673,74.174576 245.48823,74.29641 246.77143,75.239636 c 0.90714,0.666796 0.96632,3.859571 0.82793,44.667474 l -0.14904,43.94935 -119.5428,0.14498 c -65.748543,0.0797 -119.7157629,-0.028 -119.9271568,-0.23937 z"
|
||||
style="fill:#a4a2a1;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3766"
|
||||
d="m 14.05082,158.49447 c -0.565796,-0.35914 -0.692852,-4.45475 -0.574502,-18.51887 l 0.151957,-18.05773 16.046403,-0.1529 c 12.454663,-0.11867 16.14975,0.01 16.508116,0.5745 0.253943,0.40007 0.465673,8.40007 0.470511,17.77778 0.0076,14.74219 -0.113417,17.17259 -0.893991,17.95316 -0.775209,0.77521 -3.02812,0.90155 -15.942412,0.894 -8.271793,-0.005 -15.366531,-0.21632 -15.766082,-0.46994 z m 39.066091,0 C 52.551116,158.13533 52.42406,154.03972 52.54241,139.9756 l 0.151957,-18.05773 16.046402,-0.1529 c 12.454661,-0.11867 16.14975,0.01 16.508118,0.5745 0.253942,0.40007 0.465674,8.5387 0.470511,18.08585 0.0084,16.57863 -0.04113,17.38517 -1.102439,17.95317 -1.320583,0.70675 -30.400682,0.81383 -31.500048,0.11598 z m 38.992735,-0.30839 c -0.464393,-0.55956 -0.609305,-5.91613 -0.501224,-18.52767 l 0.152036,-17.74054 16.046402,-0.1529 c 12.45466,-0.11867 16.14975,0.01 16.50812,0.5745 0.25394,0.40007 0.46567,8.5387 0.47051,18.08585 0.008,16.57863 -0.0411,17.38517 -1.10244,17.95317 -0.68409,0.36611 -6.84032,0.59471 -16.01569,0.59471 -11.919518,0 -15.035291,-0.15764 -15.557714,-0.78712 z m 39.139454,0.30839 c -0.5658,-0.35914 -0.69286,-4.45475 -0.57451,-18.51887 l 0.15196,-18.05773 h 16.37329 16.37329 l 0.15203,17.74054 c 0.10808,12.61154 -0.0368,17.96811 -0.50122,18.52767 -0.52356,0.63085 -3.69028,0.78537 -15.95082,0.77833 -8.41366,-0.005 -15.62448,-0.21632 -16.02402,-0.46994 z m 39.06609,0 c -0.5658,-0.35914 -0.69286,-4.45475 -0.5745,-18.51887 l 0.15195,-18.05773 h 16.37329 16.37329 l 0.15203,17.74054 c 0.10809,12.61154 -0.0368,17.96811 -0.50122,18.52767 -0.52356,0.63085 -3.69027,0.78537 -15.95082,0.77833 -8.41366,-0.005 -15.62447,-0.21632 -16.02402,-0.46994 z m 38.99273,-0.30839 c -0.46439,-0.55956 -0.6093,-5.91613 -0.50122,-18.52767 l 0.15203,-17.74054 h 16.37329 16.37329 l 0.15196,18.05773 c 0.11835,14.06412 -0.009,18.15973 -0.57451,18.51887 -0.39954,0.25362 -7.61036,0.4651 -16.02402,0.46994 -12.26054,0.007 -15.42726,-0.14748 -15.95082,-0.77833 z M 14.059151,115.50512 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.10821,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109282,-0.391845 31.301105,0.245999 1.059107,0.566817 1.111234,1.369912 1.111234,17.120139 0,12.087104 -0.185156,16.710584 -0.689401,17.214824 -0.503953,0.50395 -4.792445,0.6772 -15.942413,0.64405 -8.389156,-0.025 -15.576167,-0.17575 -15.971137,-0.33513 z m 39.066092,0 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.108209,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109284,-0.391845 31.301104,0.245999 1.05911,0.566817 1.111235,1.369912 1.111235,17.120139 0,12.087104 -0.185156,16.710584 -0.689402,17.214824 -0.503952,0.50395 -4.792444,0.6772 -15.942412,0.64405 -8.389156,-0.025 -15.576168,-0.17575 -15.971137,-0.33513 z m 39.066091,0 c -1.014213,-0.40924 -1.041755,-33.536167 -0.02872,-34.549196 0.895527,-0.895528 29.861466,-0.982541 31.520436,-0.09469 1.05912,0.566817 1.11124,1.369912 1.11124,17.120139 0,12.087107 -0.18516,16.710587 -0.68941,17.214827 -0.50395,0.50395 -4.79244,0.6772 -15.9424,0.64405 -8.389159,-0.025 -15.576171,-0.17575 -15.971141,-0.33513 z m 39.066096,0 c -1.01422,-0.40924 -1.04176,-33.536167 -0.0287,-34.549196 0.98228,-0.982279 30.96,-0.982279 31.94228,0 0.98397,0.983976 0.98397,33.256296 0,34.240276 -0.50396,0.50395 -4.79245,0.6772 -15.94242,0.64405 -8.38915,-0.025 -15.57616,-0.17575 -15.97113,-0.33513 z m 39.03736,-0.30892 c -0.98397,-0.98398 -0.98397,-33.2563 0,-34.240276 0.98228,-0.982279 30.96,-0.982279 31.94228,0 0.98397,0.983976 0.98397,33.256296 0,34.240276 -0.98228,0.98228 -30.96,0.98228 -31.94228,0 z m 39.06609,0 c -0.98397,-0.98398 -0.98397,-33.2563 0,-34.240276 0.98228,-0.982279 30.96,-0.982279 31.94228,0 0.98398,0.983976 0.98398,33.256296 0,34.240276 -0.98228,0.98228 -30.96,0.98228 -31.94228,0 z"
|
||||
style="fill:#f7b634;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3764"
|
||||
d="m 14.05082,158.49447 c -0.565796,-0.35914 -0.692852,-4.45475 -0.574502,-18.51887 l 0.151957,-18.05773 16.046403,-0.1529 c 12.454663,-0.11867 16.14975,0.01 16.508116,0.5745 0.253943,0.40007 0.465673,8.40007 0.470511,17.77778 0.0076,14.74219 -0.113417,17.17259 -0.893991,17.95316 -0.775209,0.77521 -3.02812,0.90155 -15.942412,0.894 -8.271793,-0.005 -15.366531,-0.21632 -15.766082,-0.46994 z m 39.066091,0 C 52.551116,158.13533 52.42406,154.03972 52.54241,139.9756 l 0.151957,-18.05773 16.046402,-0.1529 c 12.454661,-0.11867 16.14975,0.01 16.508118,0.5745 0.253942,0.40007 0.465674,8.5387 0.470511,18.08585 0.0084,16.57863 -0.04113,17.38517 -1.102439,17.95317 -1.320583,0.70675 -30.400682,0.81383 -31.500048,0.11598 z m 38.992735,-0.30839 c -0.464393,-0.55956 -0.609305,-5.91613 -0.501224,-18.52767 l 0.152036,-17.74054 16.046402,-0.1529 c 12.45466,-0.11867 16.14975,0.01 16.50812,0.5745 0.25394,0.40007 0.46567,8.5387 0.47051,18.08585 0.008,16.57863 -0.0411,17.38517 -1.10244,17.95317 -0.68409,0.36611 -6.84032,0.59471 -16.01569,0.59471 -11.919518,0 -15.035291,-0.15764 -15.557714,-0.78712 z m 39.066094,0 c -0.4644,-0.55956 -0.60931,-5.91613 -0.50123,-18.52767 l 0.15204,-17.74054 h 16.37329 16.37329 l 0.15266,17.80954 c 0.13914,16.23327 0.0659,17.87309 -0.82793,18.52766 -1.48725,1.08917 -30.81387,1.02539 -31.72212,-0.069 z m 39.39217,0.069 c -0.8938,-0.65457 -0.96708,-2.29439 -0.82793,-18.52766 l 0.15266,-17.80954 h 16.37329 16.37329 l 0.15266,17.80954 c 0.13914,16.23327 0.0659,17.87309 -0.82793,18.52766 -0.72411,0.5303 -4.83006,0.71813 -15.69802,0.71813 -10.86796,0 -14.97391,-0.18783 -15.69802,-0.71813 z m 39.06609,0 c -0.8938,-0.65457 -0.96707,-2.29439 -0.82793,-18.52766 l 0.15266,-17.80954 h 16.37329 16.37329 l 0.15266,17.80954 c 0.13915,16.23327 0.0659,17.87309 -0.82793,18.52766 -0.72411,0.5303 -4.83006,0.71813 -15.69802,0.71813 -10.86796,0 -14.97391,-0.18783 -15.69802,-0.71813 z M 14.059151,115.50512 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.10821,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109282,-0.391845 31.301105,0.245999 1.059107,0.566817 1.111234,1.369912 1.111234,17.120139 0,12.087104 -0.185156,16.710584 -0.689401,17.214824 -0.503953,0.50395 -4.792445,0.6772 -15.942413,0.64405 -8.389156,-0.025 -15.576167,-0.17575 -15.971137,-0.33513 z m 39.066092,0 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.108209,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109284,-0.391845 31.301104,0.245999 1.05911,0.566817 1.111235,1.369912 1.111235,17.120139 0,12.087104 -0.185156,16.710584 -0.689402,17.214824 -0.503952,0.50395 -4.792444,0.6772 -15.942412,0.64405 -8.389156,-0.025 -15.576168,-0.17575 -15.971137,-0.33513 z m 39.066091,0 c -1.014213,-0.40924 -1.041755,-33.536167 -0.02872,-34.549196 0.895527,-0.895528 29.861466,-0.982541 31.520436,-0.09469 1.05912,0.566817 1.11124,1.369912 1.11124,17.120139 0,12.087107 -0.18516,16.710587 -0.68941,17.214827 -0.50395,0.50395 -4.79244,0.6772 -15.9424,0.64405 -8.389159,-0.025 -15.576171,-0.17575 -15.971141,-0.33513 z"
|
||||
style="fill:#f60c0c;stroke-width:0.57450134" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path3762"
|
||||
d="m 14.05082,158.49447 c -0.565796,-0.35914 -0.692852,-4.45475 -0.574502,-18.51887 l 0.151957,-18.05773 16.046403,-0.1529 c 12.454663,-0.11867 16.14975,0.01 16.508116,0.5745 0.253943,0.40007 0.465673,8.40007 0.470511,17.77778 0.0076,14.74219 -0.113417,17.17259 -0.893991,17.95316 -0.775209,0.77521 -3.02812,0.90155 -15.942412,0.894 -8.271793,-0.005 -15.366531,-0.21632 -15.766082,-0.46994 z m 39.066091,0 C 52.551116,158.13533 52.42406,154.03972 52.54241,139.9756 l 0.151957,-18.05773 16.046402,-0.1529 c 12.454661,-0.11867 16.14975,0.01 16.508118,0.5745 0.253942,0.40007 0.465674,8.5387 0.470511,18.08585 0.0084,16.57863 -0.04113,17.38517 -1.102439,17.95317 -1.320583,0.70675 -30.400682,0.81383 -31.500048,0.11598 z m 38.992735,-0.30839 c -0.464393,-0.55956 -0.609305,-5.91613 -0.501224,-18.52767 l 0.152036,-17.74054 16.046402,-0.1529 c 12.45466,-0.11867 16.14975,0.01 16.50812,0.5745 0.25394,0.40007 0.46567,8.5387 0.47051,18.08585 0.008,16.57863 -0.0411,17.38517 -1.10244,17.95317 -0.68409,0.36611 -6.84032,0.59471 -16.01569,0.59471 -11.919518,0 -15.035291,-0.15764 -15.557714,-0.78712 z M 14.059151,115.50512 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.10821,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109282,-0.391845 31.301105,0.245999 1.059107,0.566817 1.111234,1.369912 1.111234,17.120139 0,12.087104 -0.185156,16.710584 -0.689401,17.214824 -0.503953,0.50395 -4.792445,0.6772 -15.942413,0.64405 -8.389156,-0.025 -15.576167,-0.17575 -15.971137,-0.33513 z m 39.066092,0 c -0.551961,-0.22272 -0.718127,-4.25245 -0.718127,-17.415468 0,-15.086425 0.108209,-17.167222 0.908739,-17.474414 1.604917,-0.615864 30.109284,-0.391845 31.301104,0.245999 1.05911,0.566817 1.111235,1.369912 1.111235,17.120139 0,12.087104 -0.185156,16.710584 -0.689402,17.214824 -0.503952,0.50395 -4.792444,0.6772 -15.942412,0.64405 -8.389156,-0.025 -15.576168,-0.17575 -15.971137,-0.33513 z m 39.066091,0 c -1.014213,-0.40924 -1.041755,-33.536167 -0.02872,-34.549196 0.895527,-0.895528 29.861466,-0.982541 31.520436,-0.09469 1.05912,0.566817 1.11124,1.369912 1.11124,17.120139 0,12.087107 -0.18516,16.710587 -0.68941,17.214827 -0.50395,0.50395 -4.79244,0.6772 -15.9424,0.64405 -8.389159,-0.025 -15.576171,-0.17575 -15.971141,-0.33513 z"
|
||||
style="fill:#062e5f;stroke-width:0.57450134" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 12 KiB |
|
@ -0,0 +1,93 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="2-Junior Lieutenant.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-0.21728494,247.64799)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-1">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5608"
|
||||
d="m 165.92291,97.380318 85.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -85.26363,0.14212 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5600"
|
||||
d="m 205.11202,122.17172 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="m 245.67812,122.66153 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.9 KiB |
|
@ -0,0 +1,103 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="3-Second_Lieutenant.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.17359836,247.459)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-9">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5608"
|
||||
d="m 124.3889,97.272435 3.53401,0.107883 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 -3.06558,-0.21966 c -0.42164,-16.58271 -0.49956,-33.1651 -0.44537,-49.752735 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5602"
|
||||
d="m 165.10984,122.18432 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5600"
|
||||
d="m 205.11202,122.17172 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="m 245.67812,122.66153 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
|
@ -0,0 +1,103 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="4-Lieutenant.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,-0.01538974,248.02597)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-1">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5608"
|
||||
d="m 124.3889,97.272435 3.53401,0.107883 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 -3.06558,-0.21966 c -0.42164,-16.58271 -0.49956,-33.1651 -0.44537,-49.752735 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5602"
|
||||
d="m 165.10984,122.18432 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5600"
|
||||
d="m 205.11202,122.17172 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="m 245.67812,122.66153 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
|
@ -0,0 +1,113 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="5-Senior_Lieutenant.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.17359766,247.64799)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-3">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5608"
|
||||
d="m 84.388905,97.272435 43.534005,0.107883 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 -43.065582,-0.21966 c -0.421642,-16.58271 -0.499553,-33.1651 -0.445363,-49.752735 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5604"
|
||||
d="m 124.54407,122.17172 -0.14835,-19.01516 H 107.77506 91.154398 l -0.148347,19.01516 -0.148346,19.01516 h 16.917355 16.91735 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5602"
|
||||
d="m 165.10984,122.18432 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5600"
|
||||
d="m 205.11202,122.17172 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="m 245.67812,122.66153 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m 91.006051,122.17172 0.148347,-19.01516 h 16.620662 16.62066 l 0.14835,19.01516 0.14834,19.01516 H 107.77506 90.857705 Z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
|
@ -0,0 +1,113 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="6-Captain.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.1735978,247.64799)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-9">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
sodipodi:nodetypes="cccccccc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5608"
|
||||
d="m 84.388905,97.272435 43.534005,0.107883 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 -43.065582,-0.21966 c -0.421642,-16.58271 -0.499553,-33.1651 -0.445363,-49.752735 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5604"
|
||||
d="m 124.54407,122.17172 -0.14835,-19.01516 H 107.77506 91.154398 l -0.148347,19.01516 -0.148346,19.01516 h 16.917355 16.91735 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5602"
|
||||
d="m 165.10984,122.18432 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5600"
|
||||
d="m 205.11202,122.17172 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="m 245.67812,122.66153 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m 91.006051,122.17172 0.148347,-19.01516 h 16.620662 16.62066 l 0.14835,19.01516 0.14834,19.01516 H 107.77506 90.857705 Z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
|
@ -0,0 +1,123 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="7-Senior_Captain.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.21394269,247.6398)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-2">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
sodipodi:nodetypes="cacccccsc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5608"
|
||||
d="m 44.834272,146.80642 c -0.148885,-0.38804 -0.359491,-16.70392 -0.433767,-25.05726 -0.07254,-8.15859 -0.0116,-24.476725 -0.0116,-24.476725 l 83.534005,0.107883 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 c -98.314074,0.11335 -82.849674,0.12433 -83.065582,-0.43841 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5606"
|
||||
d="m 84.542135,122.35066 c 0.115945,-14.46905 -0.0081,-18.65404 -0.563412,-19.00653 -0.822351,-0.52201 -31.442049,-0.64091 -32.780516,-0.12729 -0.787535,0.3022 -0.891199,2.48672 -0.891199,18.7804 0,10.14114 0.172726,18.61115 0.383835,18.82226 0.21111,0.21111 7.880561,0.31675 17.043222,0.23476 l 16.659385,-0.14908 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5604"
|
||||
d="m 124.54407,122.17172 -0.14835,-19.01516 H 107.77506 91.154398 l -0.148347,19.01516 -0.148346,19.01516 h 16.917355 16.91735 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5602"
|
||||
d="m 165.10984,122.18432 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5600"
|
||||
d="m 205.11202,122.17172 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="m 245.67812,122.66153 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5494"
|
||||
d="m 50.690843,140.8195 c -0.211109,-0.21111 -0.383835,-8.68112 -0.383835,-18.82226 0,-16.29368 0.103664,-18.4782 0.891199,-18.7804 1.338467,-0.51362 31.958165,-0.39472 32.780516,0.12729 0.555299,0.35249 0.679357,4.53748 0.563412,19.00653 l -0.148685,18.55452 -16.659385,0.14908 c -9.162661,0.082 -16.832112,-0.0237 -17.043222,-0.23476 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m 91.006051,122.17172 0.148347,-19.01516 h 16.620662 16.62066 l 0.14835,19.01516 0.14834,19.01516 H 107.77506 90.857705 Z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
|
@ -0,0 +1,123 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="8-Major.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.4029308,247.45081)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-9">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
sodipodi:nodetypes="cacccccsc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5608"
|
||||
d="m 44.834272,146.80642 c -0.148885,-0.38804 -0.359491,-16.70392 -0.433767,-25.05726 -0.07254,-8.15859 -0.0116,-24.476725 -0.0116,-24.476725 l 83.534005,0.107883 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 c -98.314074,0.11335 -82.849674,0.12433 -83.065582,-0.43841 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5606"
|
||||
d="m 84.542135,122.35066 c 0.115945,-14.46905 -0.0081,-18.65404 -0.563412,-19.00653 -0.822351,-0.52201 -31.442049,-0.64091 -32.780516,-0.12729 -0.787535,0.3022 -0.891199,2.48672 -0.891199,18.7804 0,10.14114 0.172726,18.61115 0.383835,18.82226 0.21111,0.21111 7.880561,0.31675 17.043222,0.23476 l 16.659385,-0.14908 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5604"
|
||||
d="m 124.54407,122.17172 -0.14835,-19.01516 H 107.77506 91.154398 l -0.148347,19.01516 -0.148346,19.01516 h 16.917355 16.91735 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5602"
|
||||
d="m 165.10984,122.18432 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5600"
|
||||
d="m 205.11202,122.17172 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="m 245.67812,122.66153 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5494"
|
||||
d="m 50.690843,140.8195 c -0.211109,-0.21111 -0.383835,-8.68112 -0.383835,-18.82226 0,-16.29368 0.103664,-18.4782 0.891199,-18.7804 1.338467,-0.51362 31.958165,-0.39472 32.780516,0.12729 0.555299,0.35249 0.679357,4.53748 0.563412,19.00653 l -0.148685,18.55452 -16.659385,0.14908 c -9.162661,0.082 -16.832112,-0.0237 -17.043222,-0.23476 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m 91.006051,122.17172 0.148347,-19.01516 h 16.620662 16.62066 l 0.14835,19.01516 0.14834,19.01516 H 107.77506 90.857705 Z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
|
@ -0,0 +1,123 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="128"
|
||||
viewBox="0 0 67.733332 33.866668"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.1 r15371"
|
||||
sodipodi:docname="9-Lieutenant_Colonel.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="1.4"
|
||||
inkscape:cx="102.89677"
|
||||
inkscape:cy="139.70413"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1855"
|
||||
inkscape:window-height="1056"
|
||||
inkscape:window-x="65"
|
||||
inkscape:window-y="1104"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-263.13332)">
|
||||
<g
|
||||
transform="matrix(0.26458333,0,0,0.26458333,0.21394297,247.26183)"
|
||||
inkscape:label="Layer 1"
|
||||
id="layer1-7">
|
||||
<g
|
||||
id="g5478">
|
||||
<path
|
||||
sodipodi:nodetypes="cacccccsc"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5608"
|
||||
d="m 44.834272,146.80642 c -0.148885,-0.38804 -0.359491,-16.70392 -0.433767,-25.05726 -0.07254,-8.15859 -0.0116,-24.476725 -0.0116,-24.476725 l 83.534005,0.107883 123.534,-0.142116 -0.14672,24.932258 -0.14671,24.93225 -123.26363,0.14212 c -98.314074,0.11335 -82.849674,0.12433 -83.065582,-0.43841 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5606"
|
||||
d="m 84.542135,122.35066 c 0.115945,-14.46905 -0.0081,-18.65404 -0.563412,-19.00653 -0.822351,-0.52201 -31.442049,-0.64091 -32.780516,-0.12729 -0.787535,0.3022 -0.891199,2.48672 -0.891199,18.7804 0,10.14114 0.172726,18.61115 0.383835,18.82226 0.21111,0.21111 7.880561,0.31675 17.043222,0.23476 l 16.659385,-0.14908 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5604"
|
||||
d="m 124.54407,122.17172 -0.14835,-19.01516 H 107.77506 91.154398 l -0.148347,19.01516 -0.148346,19.01516 h 16.917355 16.91735 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5602"
|
||||
d="m 165.10984,122.18432 0.14843,-18.72082 -1.27526,-0.31154 c -0.70139,-0.17134 -8.37425,-0.24041 -17.0508,-0.15349 l -15.77554,0.15805 -0.14884,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.1264,19.02357 0.21611,0.56318 3.87865,0.68519 17.0512,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5600"
|
||||
d="m 205.11202,122.17172 -0.14834,-19.01516 -16.27067,-0.14962 c -11.53446,-0.10606 -16.49556,0.037 -17.04323,0.49155 -0.6252,0.51887 -0.77255,4.1026 -0.77255,18.78917 0,9.9814 0.16903,18.31703 0.37561,18.52361 0.20658,0.20659 7.94279,0.37561 17.19157,0.37561 h 16.81596 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5482"
|
||||
d="m 245.67812,122.66153 c 0.10686,-13.1064 -0.0335,-18.46326 -0.49852,-19.02355 -0.52952,-0.63804 -3.63117,-0.75276 -17.05112,-0.63067 l -16.40386,0.14925 -0.14883,18.30632 c -0.0819,10.06847 -0.025,18.62908 0.12639,19.02357 0.21612,0.56318 3.87866,0.68519 17.05121,0.56799 l 16.77597,-0.14926 z"
|
||||
style="fill:#a6a3a3;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5494"
|
||||
d="m 50.690843,140.8195 c -0.211109,-0.21111 -0.383835,-8.68112 -0.383835,-18.82226 0,-16.29368 0.103664,-18.4782 0.891199,-18.7804 1.338467,-0.51362 31.958165,-0.39472 32.780516,0.12729 0.555299,0.35249 0.679357,4.53748 0.563412,19.00653 l -0.148685,18.55452 -16.659385,0.14908 c -9.162661,0.082 -16.832112,-0.0237 -17.043222,-0.23476 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5492"
|
||||
d="m 91.006051,122.17172 0.148347,-19.01516 h 16.620662 16.62066 l 0.14835,19.01516 0.14834,19.01516 H 107.77506 90.857705 Z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5490"
|
||||
d="m 131.13423,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.1264,-19.02357 l 0.14884,-18.30632 15.77554,-0.15805 c 8.67655,-0.0869 16.34941,-0.0178 17.0508,0.15349 l 1.27526,0.31154 -0.14843,18.72082 -0.14844,18.72082 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.0512,-0.56799 z"
|
||||
style="fill:#f80909;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5488"
|
||||
d="m 171.25284,140.81127 c -0.20658,-0.20658 -0.37561,-8.54221 -0.37561,-18.52361 0,-14.68657 0.14735,-18.2703 0.77255,-18.78917 0.54767,-0.45452 5.50877,-0.59761 17.04323,-0.49155 l 16.27067,0.14962 0.14834,19.01516 0.14835,19.01516 h -16.81596 c -9.24878,0 -16.98499,-0.16902 -17.19157,-0.37561 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path5480"
|
||||
d="m 211.70218,140.48645 c -0.15138,-0.39449 -0.20826,-8.9551 -0.12639,-19.02357 l 0.14883,-18.30632 16.40386,-0.14925 c 13.41995,-0.12209 16.5216,-0.007 17.05112,0.63067 0.465,0.56029 0.60538,5.91715 0.49852,19.02355 l -0.14876,18.24365 -16.77597,0.14926 c -13.17255,0.1172 -16.83509,-0.005 -17.05121,-0.56799 z"
|
||||
style="fill:#062e5f;fill-opacity:1;stroke-width:0.56341225" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.5 KiB |
|
@ -46,7 +46,7 @@
|
|||
<body>
|
||||
<!-- Modal -->
|
||||
<div id="myModal" class="modal fade" role="dialog">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-dialog modal-lg" style="width: 1300px;">
|
||||
|
||||
<!-- Modal content-->
|
||||
<div class="modal-content">
|
||||
|
@ -61,6 +61,9 @@
|
|||
<li>{{ text }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<h4>Points awarded by category:</h4>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
|
@ -80,6 +83,29 @@
|
|||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<h4>Organisation rank title:</h4>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Org. rank</th>
|
||||
<th>Title</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for item in org_rank_list %}
|
||||
<tr>
|
||||
<td style='padding: 0px; text-align: right;'><img height='32px' width='64px' style="margin-right: 20px;" src="{{ url_for('static', filename='pics/rankingMISPOrg/1.svg')[:-5]}}{{ item[0] }}.svg" type='image/svg' style="margin: auto;"</img></td>
|
||||
<td>{{ item[1] }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
|
@ -115,6 +141,7 @@
|
|||
<div class='textTopHeader' style="padding-top: 9px;">
|
||||
<input type="text" id="orgName" data-provide="typeahead" size="20" style="margin-bottom: 5px;">
|
||||
</div>
|
||||
<button type="button" class="questionBadgeDiv" data-toggle="modal" data-target="#myModal"><i class="fa fa-question-circle questionBadgeText"></i></button>
|
||||
<button id="btnCurrRank" class='btn btn-default popOverBtn' data-container='body' data-toggle='popover' style="display: none; margin-left: 20px;" onclick="showOnlyOrg()">
|
||||
<strong id="orgText" class="centerInBtn"></strong>
|
||||
<div id="orgRankDiv" class='textTopHeader' style="padding-top: 0px; position: relative; width: 40px; height: 40px;"></div>
|
||||
|
@ -126,7 +153,6 @@
|
|||
</div>
|
||||
<div id="orgNextRankDiv" class='textTopHeader' style="padding-top: 0px; position: relative; width: 40px; height: 40px;"></div>
|
||||
</button>
|
||||
<button type="button" class="questionBadgeDiv" data-toggle="modal" data-target="#myModal"><i class="fa fa-question-circle questionBadgeText"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.navbar-header -->
|
||||
|
@ -152,8 +178,9 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th>Points</th>
|
||||
<th>Rank</th>
|
||||
<th>Logo</th>
|
||||
<th>Cur. rank</th>
|
||||
<th>Org. rank</th>
|
||||
<th></th>
|
||||
<th>Organisation</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -170,7 +197,7 @@
|
|||
<div class="col-lg-4">
|
||||
<div class="panel panel-default" style="height: 100%;">
|
||||
<div class="panel-heading bg-info" style="font-weight: bold;">
|
||||
<i class="glyphicon glyphicon-fire " style="margin-right: 5px; color: #d9534f;"></i><b>Last contributors (24h)</b>
|
||||
<i class="glyphicon glyphicon-fire " style="margin-right: 5px; color: #d9534f;"></i><b>Last contributors</b>
|
||||
</div>
|
||||
<div id="panellast" class="panel-body" style="height: 100%;">
|
||||
|
||||
|
@ -179,8 +206,9 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th>Points</th>
|
||||
<th>Rank</th>
|
||||
<th>Logo</th>
|
||||
<th>Cur. rank</th>
|
||||
<th>Org. rank</th>
|
||||
<th></th>
|
||||
<th>Organisation</th>
|
||||
<th>epoch</th>
|
||||
</tr>
|
||||
|
@ -206,8 +234,9 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th>Points</th>
|
||||
<th>Rank</th>
|
||||
<th>Logo</th>
|
||||
<th>Cur. rank</th>
|
||||
<th>Org. rank</th>
|
||||
<th></th>
|
||||
<th>Organisation</th>
|
||||
{% for categ in categ_list_str %}
|
||||
<th>{{ categ }}</th>
|
||||
|
@ -242,7 +271,8 @@
|
|||
<tr>
|
||||
<th>Points</th>
|
||||
<th>Prev. rank</th>
|
||||
<th>Logo</th>
|
||||
<th>Org. rank</th>
|
||||
<th></th>
|
||||
<th>Organisation</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@ -289,14 +319,17 @@
|
|||
var url_eventStreamLastContributor = "{{ url_for('getLastContributor') }}";
|
||||
var url_getAllOrg = "{{ url_for('getAllOrg') }}";
|
||||
var url_getOrgRank = "{{ url_for('getOrgRank') }}";
|
||||
var url_baseRankLogo = "{{ url_for('static', filename='pics/rankingMISP/1.png') }}";
|
||||
url_baseRankLogo = url_baseRankLogo.substring(0, url_baseRankLogo.length-5);
|
||||
var url_baseRankMonthlyLogo = "{{ url_for('static', filename='pics/rankingMISPMonthly/1.svg') }}";
|
||||
url_baseRankMonthlyLogo = url_baseRankMonthlyLogo.substring(0, url_baseRankMonthlyLogo.length-5);
|
||||
var url_baseOrgRankLogo = "{{ url_for('static', filename='pics/rankingMISPOrg/1.svg') }}";
|
||||
url_baseOrgRankLogo = url_baseOrgRankLogo.substring(0, url_baseOrgRankLogo.length-5);
|
||||
|
||||
/* DATA FROM CONF */
|
||||
var currOrg = "{{ currOrg }}";
|
||||
var min_between_reload = {{ min_between_reload }};
|
||||
var rankMultiplier = {{ rankMultiplier }};
|
||||
var categ_list = JSON.parse('{{ categ_list|safe }}');
|
||||
var org_rank_obj = JSON.parse('{{ org_rank_json|safe }}');
|
||||
|
||||
</script>
|
||||
<script src="{{ url_for('static', filename='js/contrib.js') }}"></script>
|
||||
|
|