Skip to content

Instantly share code, notes, and snippets.

@vtta
Last active June 17, 2024 17:51
Show Gist options
  • Save vtta/d6268ba81ebfdd1dc573db4b72df8436 to your computer and use it in GitHub Desktop.
Save vtta/d6268ba81ebfdd1dc573db4b72df8436 to your computer and use it in GitHub Desktop.
acmart typst template
// made according to typst ieee template and official acm word template
// --- Draft Formatting
// Papers will be submitted electronically in PDF format via the web submission form.
// 1. Submissions may have at most 12 pages of technical content, including all text, figures, tables, etc. Bibliographic references are not included in the 12-page limit.
// 2. Use A4 or US letter paper size, with all text and figures fitting inside a 178 x 229 mm (7 x 9 in) block centered on the page, using two columns separated by 8 mm (0.33) of whitespace.
// 3. Use 10-point font (typeface Times Roman, Linux Libertine, etc.) on 12-point (single-spaced) leading.
// 4. Graphs and figures should be readable when printed in grayscale, without magnification.
// 5. All pages should be numbered, and references within the paper should be hyperlinked.
// Authors may optionally include supplementary material, such as formal proofs or analyses, as a separate document; PC members are not required to read this material, so the submission must stand alone without it. Supplementary material is intended for items that are not critical for evaluating the paper but may be of interest to some readers.
// Submissions violating these rules will not be considered for publication, and there will be no extensions for fixing violations. We encourage you to upload an early draft of the paper well before the deadline to check if the paper meets the formatting rules.
// Most of these rules are automatically applied when using the official SIGPLAN Latex or MS Word templates from the ACM.
// For Latex, we recommend you use:
// \documentclass[sigplan,10pt]{acmart}
// \renewcommand\footnotetextcopyrightpermission[1]{}
// ...
// \settopmatter{printfolios=true}
// \maketitle
// \pagestyle{plain}
// ...
// --- Camera-ready Formatting
// 1. Camera-ready papers can have 12 pages of technical content, including all text, figures, tables, etc. Your shepherd can approve up to two additional pages of technical content. Bibliographic references are not included in the 12-page limit.
// 2. You must use the US letter paper size, with all text and figures fitting inside a 178 x 229 mm (7 x 9 in) block centered on the page, using two columns separated by 8 mm (0.33) of whitespace.
// 3. Use 10-point font (typeface Times Roman, Linux Libertine, etc.) on 12-point (single-spaced) leading.
// 4. Graphs and figures should be readable when printed in grayscale, without magnification.
// 5. Do not include page numbers, footers, or headers. References within the paper should be hyperlinked.
// 6. Paper titles should be in Initial Caps Meaning First Letter of the Main Words Should be Made Capital Letters. As an example, refer to the previous sentence: note the Capital Letter "M" in Must, Meaning, and Main, the Capital Letter "C" in Caps and Capital and the Capital Letter "L" in Letter and Letters.
// Most of these rules are automatically applied when using the official SIGPLAN LaTeX or MS Word templates from the ACM, available from the ACM Template Page.
// Please follow the font requirements from part 8 of the ACM Guidelines for Proceedings.
// 7. In particular, papers should have Type 1 fonts (scalable), not Type 3 (bit-mapped).
// 8. All fonts MUST be embedded within the PDF file. This will usually happen by default when using pdflatex, but in rare cases, PDFs generated with pdflatex will not contain embedded fonts. This most often occurs when vector images included in paper do not themselves embed their fonts.
// 9. Authors should make sure to use the ACM classification system. For details, please see the ACM CCS Page.
// 10. Be sure that there are no bad page or column breaks, meaning no widows (last line of a paragraph at the top of a column).
// 11. Section and Sub-section heads should remain with at least 2 lines of body text when near the end of a page or column.
// 12. When submitting the camera-ready paper, make sure the author full names and affiliations in HotCRP are up-to-date, and that the abstract in HotCRP is also updated.
// ---
#let copyright-owner(mode: none) = {
if mode == "acmcopyright" [
ACM.
] else if mode == "acmlicensed" [
Copyright held by the owner/author(s). Publication rights licensed to ACM.
] else if mode in ("rightsretained", "cc") [
Copyright held by the owner/author(s).
] else [
// TODO
]
}
#let copyright-permission(mode: none) = {
if mode == "acmcopyright" [
Permission to make digital or hard copies of all or part of this
work for personal or classroom use is granted without fee provided
that copies are not made or distributed for profit or commercial
advantage and that copies bear this notice and the full citation on
the first page. Copyrights for components of this work owned by
others than ACM must be honored. Abstracting with credit is
permitted. To copy otherwise, or republish, to post on servers or
to redistribute to lists, requires prior specific permission
and/or a fee. Request permissions from permissions\@acm.org.
] else if mode == "acmlicensed" [
Permission to make digital or hard copies of all or part of this
work for personal or classroom use is granted without fee provided
that copies are not made or distributed for profit or commercial
advantage and that copies bear this notice and the full citation on
the first page. Copyrights for components of this work owned by
others than the author(s) must be honored. Abstracting with credit
is permitted. To copy otherwise, or republish, to post on servers
or to redistribute to lists, requires prior specific permission
and/or a fee. Request permissions from
permissions\@acm.org.
] else if mode == "rightsretained" [
Permission to make digital or hard copies of part or all of this
work for personal or classroom use is granted without fee provided
that copies are not made or distributed for profit or commercial
advantage and that copies bear this notice and the full citation on
the first page. Copyrights for third-party components of this work
must be honored. For all other uses, contact the
owner/author(s).
] else if mode == "cc" [
#v(-0.5em)
#image("cc-by.svg", width: 25%)
#v(-0.5em)
This work is licensed under a
#link("https://creativecommons.org/licenses/by/4.0/")[
Creative Commons Attribution International 4.0
]
License.
] else [
// TODO
]
}
// This function gets your whole document as its `body` and formats
#let acmart(
// The paper's title.
title: "Paper Title",
subtitle: none,
// An array of authors. For each author you can specify a name,
// department, organization, location, and email. Everything but
// but the name is optional.
authors: (
(
name: "Junliang Hu",
department: [Department of Computer Science and Engineering],
organization: [The Chinese University of Hong Kong],
location: [Hong Kong],
email: "jlhu@cse.cuhk.edu.hk"
),
),
// The paper's abstract. Can be omitted if you don't have one.
abstract: none,
ccs-concepts: (
(
generic: "Software and its engineering",
specific: ("Virtual machines", "Virtual memory", ),
),
(
generic:"Computer systems organization",
specific: ("Heterogeneous (hybrid) systems", ),
),
),
keywords: ("Virtual machine", "Virtual memory", "Operating system"),
conference: (
name: "ACM SIGOPS 30th Symposium on Operating Systems Principles",
short: "SOSP ’24",
year: "2024",
date: "November 4–6",
venue: "Austin, TX, USA",
),
copyright: (
doi: "https://doi.org/10.1145/1234567890",
isbn: "979-8-0000-0000-0/00/00",
price: "$15.00",
mode: "cc",
),
// Whether we are submitting as a draft version or for the camera-ready stage
review: false,
// The path to a bibliography file if you want to cite some external
// works.
bibliography-file: none,
// The paper's content.
body
) = {
let anon = if review { hide } else { x => x }
// Set document metdata.
set document(
title: title,
author: authors.map(author => author.name),
keywords: keywords
)
// Set the body font. (rule 3)
set text(font: "Linux Libertine", size: 10pt)
let spacing = 0.55em
// Configure the page. (rule 2)
// Text block: 178 x 229 mm (7 x 9 in)
// US letter: 8½″ × 11″ (216 mm × 279 mm)
// A4: 210 mm × 297 mm (8.3″ × 11.7″)
set page(
paper: "us-letter",
margin: (x: (8.5 - 7) / 2 * 1in, y: (11 - 9) / 2 * 1in),
)
// Configure equation numbering and spacing.
// set math.equation(numbering: "(1)")
// we used the em unit to specify the leading relative to the size of the font
// https://typst.app/docs/tutorial/formatting/
// show math.equation: set block(spacing: spacing)
// Configure lists.
set enum(indent: 10pt, body-indent: 9pt)
set list(indent: 10pt, body-indent: 9pt)
// Configure headings.
set heading(numbering: "1.1.1.")
show heading: it => locate(loc => {
// Find out the final number of the heading counter.
let levels = counter(heading).at(loc)
let deepest = if levels != () { levels.last() } else { 1 }
v(2 * spacing, weak: true)
if it.level == 1 {
let no-numbering = it.body in ([Abstract], [Acknowledgments], [Acknowledgment])
block(text(size: 11pt, {
if it.numbering != none and not no-numbering{
numbering(it.numbering, ..levels)
h(spacing, weak: true)
}
it.body
v(1.5 * spacing, weak: true)
}))
} else if it.level == 2 {
block(text(size: 10pt,{
if it.numbering != none {
numbering(it.numbering, ..levels)
h(spacing, weak: true)
}
it.body
v(1.5 * spacing, weak: true)
}))
} else {
if it.numbering != none {
h(-1em)
numbering(it.numbering, ..levels)
h(spacing, weak: true)
}
it.body + [.]
}
})
// Display the paper's title.
align(center, text(font: "Linux Biolinum", size: 2.1em, [* #title *]))
// Display the authors list.
for i in range(calc.ceil(authors.len() / 3)) {
let end = calc.min((i + 1) * 3, authors.len())
let is-last = authors.len() == end
let slice = authors.slice(i * 3, end)
anon(grid(
columns: slice.len() * (1fr,),
gutter: 1.2em,
..slice.map(author => align(center, {
text(1.2em, author.name)
if "department" in author [
\ #author.department
]
if "organization" in author [
\ #author.organization
]
if "location" in author [
\ #author.location
]
if "email" in author [
\ #link("mailto:" + author.email)
]
}))
))
if not is-last {
v(1.6em, weak: true)
}
}
// Start two column mode and configure paragraph properties.
show: columns.with(2, gutter: 8mm)
// 12pt leading, i.e. 1.2x font-size (rule 3)
set par(justify: true, first-line-indent: 1em, leading: spacing)
show par: set block(spacing: spacing)
// copyright footer
set footnote.entry(separator: line(length: 100%, stroke: 0.5pt))
place(bottom + end, float: true, clearance: 0em, {
footnote(numbering: (loc) => " ", par(first-line-indent: 0em, [
#v(-spacing)
#copyright-permission(mode: copyright.mode)
_ #conference.short, #conference.date, #conference.year, #conference.venue. _
#sym.copyright #conference.year #copyright-owner(mode: copyright.mode)
ACM ISBN #copyright.isbn...#copyright.price
#copyright.doi
]))
v(-spacing)
})
set footnote.entry(separator: line(length: 30%, stroke: 0.5pt))
if abstract != none [
#heading(numbering: none, level: 1, [
Abstract
])
#abstract
]
// ccs
[
#set par(first-line-indent: 0em)
#v(spacing)
*
_CCS Concepts:_
#ccs-concepts.map(concept =>
[ #sym.bullet #concept.generic #sym.arrow.r #concept.specific.join("; ")]
).join("; ").
*
]
// keywords
[
#set par(first-line-indent: 0em)
#v(spacing)
*_Keywords:_*
#keywords.join(", ")
]
// reference
[
#set par(first-line-indent: 0em)
#set text(size: 0.9em)
#v(spacing)
*ACM Reference Format:*
#anon(authors.map(author => if authors.last() == author { "and " } else { } + author.name).join(", ") + [.])
#conference.year
#title.
In _ #conference.name (#conference.short), #conference.date, #conference.year, #conference.venue. _
ACM, New York, NY, USA, #counter(page).display() pages.
#copyright.doi
]
// Display the paper's contents.
body
// Display bibliography.
if bibliography-file != none {
show bibliography: set text(8pt)
bibliography(bibliography-file, title: text(11pt)[References], style: "association-for-computing-machinery")
}
}
Display the source blob
Display the rendered blob
Raw
<?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://web.resource.org/cc/"
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="120"
height="42"
id="svg2759"
sodipodi:version="0.32"
inkscape:version="0.45+devel"
version="1.0"
sodipodi:docname="by.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs
id="defs2761" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#8b8b8b"
borderopacity="1"
gridtolerance="10000"
guidetolerance="10"
objecttolerance="10"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1"
inkscape:cx="179"
inkscape:cy="89.569904"
inkscape:document-units="px"
inkscape:current-layer="layer1"
width="120px"
height="42px"
inkscape:showpageshadow="false"
inkscape:window-width="1198"
inkscape:window-height="624"
inkscape:window-x="396"
inkscape:window-y="242" />
<metadata
id="metadata2764">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1">
<g
transform="matrix(0.9937728,0,0,0.9936696,-177.69267,6.25128e-7)"
id="g260"
inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by.png"
inkscape:export-xdpi="300.23013"
inkscape:export-ydpi="300.23013">
<path
id="path3817_1_"
nodetypes="ccccccc"
d="M 181.96579,0.51074 L 296.02975,0.71338 C 297.6235,0.71338 299.04733,0.47705 299.04733,3.89404 L 298.90768,41.46093 L 179.08737,41.46093 L 179.08737,3.75439 C 179.08737,2.06934 179.25046,0.51074 181.96579,0.51074 z"
style="fill:#aab2ab" />
<path
d="M 297.29636,0 L 181.06736,0 C 179.82078,0 178.80613,1.01416 178.80613,2.26074 L 178.80613,41.75732 C 178.80613,42.03906 179.03513,42.26757 179.31687,42.26757 L 299.04734,42.26757 C 299.32908,42.26757 299.55808,42.03905 299.55808,41.75732 L 299.55808,2.26074 C 299.55807,1.01416 298.54343,0 297.29636,0 z M 181.06735,1.02148 L 297.29635,1.02148 C 297.98043,1.02148 298.53658,1.57714 298.53658,2.26074 C 298.53658,2.26074 298.53658,18.20898 298.53658,29.71045 L 215.19234,29.71045 C 212.14742,35.21631 206.28121,38.95459 199.54879,38.95459 C 192.81344,38.95459 186.94869,35.21973 183.90524,29.71045 L 179.8276,29.71045 C 179.8276,18.20899 179.8276,2.26074 179.8276,2.26074 C 179.82761,1.57715 180.38376,1.02148 181.06735,1.02148 z"
id="path263" />
<g
enable-background="new "
id="g265">
<path
d="M 253.07761,32.95605 C 253.39499,32.95605 253.68503,32.98437 253.94773,33.04003 C 254.20945,33.09569 254.43308,33.18749 254.62058,33.31542 C 254.8071,33.44237 254.95261,33.6123 255.05515,33.82323 C 255.15769,34.03514 255.20945,34.29589 255.20945,34.60741 C 255.20945,34.94335 255.13328,35.22264 254.97996,35.44628 C 254.82762,35.67089 254.60105,35.85351 254.30223,35.99706 C 254.71434,36.11522 255.02196,36.32226 255.22508,36.61815 C 255.4282,36.91404 255.52977,37.27049 255.52977,37.68749 C 255.52977,38.02343 255.46434,38.31444 255.33348,38.56054 C 255.20262,38.80566 255.02586,39.00683 254.80516,39.1621 C 254.58348,39.31835 254.33055,39.43358 254.04735,39.5078 C 253.76317,39.583 253.47215,39.6201 253.17235,39.6201 L 249.936,39.6201 L 249.936,32.95604 L 253.07761,32.95604 L 253.07761,32.95605 z M 252.89011,35.65137 C 253.15183,35.65137 253.36667,35.58887 253.53562,35.46485 C 253.70359,35.34083 253.78757,35.13965 253.78757,34.86036 C 253.78757,34.70509 253.75925,34.57716 253.70359,34.47852 C 253.64695,34.37891 253.57273,34.30176 253.47898,34.24512 C 253.38523,34.18946 253.27781,34.15039 253.15671,34.12891 C 253.03561,34.10743 252.90866,34.09668 252.77878,34.09668 L 251.40476,34.09668 L 251.40476,35.65137 L 252.89011,35.65137 z M 252.97604,38.47949 C 253.11959,38.47949 253.25631,38.46582 253.38717,38.4375 C 253.51803,38.40918 253.63326,38.3623 253.73385,38.29785 C 253.83346,38.23242 253.91256,38.14355 253.97213,38.03125 C 254.0317,37.91992 254.061,37.77637 254.061,37.60254 C 254.061,37.26074 253.96432,37.0166 253.77096,36.87012 C 253.5776,36.72461 253.32174,36.65137 253.00436,36.65137 L 251.40475,36.65137 L 251.40475,38.47949 L 252.97604,38.47949 z"
id="path267"
style="fill:#ffffff" />
<path
d="M 255.78854,32.95605 L 257.43209,32.95605 L 258.99264,35.58789 L 260.54342,32.95605 L 262.17721,32.95605 L 259.70358,37.0625 L 259.70358,39.62012 L 258.23483,39.62012 L 258.23483,37.02539 L 255.78854,32.95605 z"
id="path269"
style="fill:#ffffff" />
</g>
<g
id="g5908_1_"
transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
<path
id="path5906_1_"
cx="296.35416"
ry="22.939548"
cy="264.3577"
type="arc"
rx="22.939548"
d="M 186.90065,-141.46002 C 186.90623,-132.77923 179.87279,-125.73852 171.19257,-125.73291 C 162.51235,-125.72736 155.47051,-132.76025 155.46547,-141.44098 C 155.46547,-141.44714 155.46547,-141.45331 155.46547,-141.46002 C 155.46043,-150.14081 162.49333,-157.18152 171.17355,-157.18658 C 179.8549,-157.19213 186.89561,-150.15924 186.90065,-141.47845 C 186.90065,-141.4729 186.90065,-141.46619 186.90065,-141.46002 z"
style="fill:#ffffff" />
<g
id="g5706_1_"
transform="translate(-289.6157,99.0653)">
<path
id="path5708_1_"
d="M 473.57574,-253.32751 C 477.06115,-249.8421 478.80413,-245.5736 478.80413,-240.52532 C 478.80413,-235.47594 477.09136,-231.25329 473.66582,-227.85741 C 470.03051,-224.28081 465.734,-222.49309 460.77635,-222.49309 C 455.87858,-222.49309 451.65648,-224.26628 448.11122,-227.81261 C 444.56541,-231.35845 442.79277,-235.59563 442.79277,-240.52532 C 442.79277,-245.45391 444.56541,-249.7213 448.11122,-253.32751 C 451.56642,-256.81402 455.7885,-258.557 460.77635,-258.557 C 465.82465,-258.55701 470.09039,-256.81403 473.57574,-253.32751 z M 450.45776,-250.98267 C 447.51104,-248.00629 446.03823,-244.51978 446.03823,-240.52033 C 446.03823,-236.52198 447.49651,-233.06507 450.41247,-230.14966 C 453.32897,-227.23316 456.80096,-225.77545 460.82952,-225.77545 C 464.85808,-225.77545 468.35967,-227.24768 471.33605,-230.19385 C 474.16198,-232.9303 475.57549,-236.37091 475.57549,-240.52033 C 475.57549,-244.63837 474.13903,-248.13379 471.26781,-251.00501 C 468.39714,-253.87568 464.9179,-255.31159 460.82952,-255.31159 C 456.74112,-255.31158 453.28314,-253.86841 450.45776,-250.98267 z M 458.21225,-242.27948 C 457.76196,-243.26117 457.08795,-243.75232 456.18903,-243.75232 C 454.59986,-243.75232 453.80558,-242.68225 453.80558,-240.54321 C 453.80558,-238.40368 454.59986,-237.33471 456.18903,-237.33471 C 457.23841,-237.33471 457.98795,-237.85546 458.43769,-238.89922 L 460.64045,-237.72625 C 459.59052,-235.86077 458.01536,-234.92779 455.91496,-234.92779 C 454.29506,-234.92779 452.99733,-235.42449 452.0229,-236.4168 C 451.0468,-237.41021 450.56016,-238.77953 450.56016,-240.52532 C 450.56016,-242.24035 451.06245,-243.60186 452.06764,-244.61034 C 453.07283,-245.61888 454.32466,-246.12291 455.82545,-246.12291 C 458.04557,-246.12291 459.63526,-245.24803 460.59626,-243.50005 L 458.21225,-242.27948 z M 468.57562,-242.27948 C 468.12475,-243.26117 467.46417,-243.75232 466.5932,-243.75232 C 464.97217,-243.75232 464.16107,-242.68225 464.16107,-240.54321 C 464.16107,-238.40368 464.97217,-237.33471 466.5932,-237.33471 C 467.64429,-237.33471 468.38037,-237.85546 468.80048,-238.89922 L 471.05249,-237.72625 C 470.00421,-235.86077 468.43127,-234.92779 466.33478,-234.92779 C 464.7171,-234.92779 463.42218,-235.42449 462.44831,-236.4168 C 461.47614,-237.41021 460.98896,-238.77953 460.98896,-240.52532 C 460.98896,-242.24035 461.48341,-243.60186 462.47181,-244.61034 C 463.45966,-245.61888 464.71711,-246.12291 466.24531,-246.12291 C 468.4615,-246.12291 470.04896,-245.24803 471.0066,-243.50005 L 468.57562,-242.27948 z" />
</g>
</g>
<g
id="g275">
<circle
cx="255.55124"
cy="15.31348"
r="10.80664"
id="circle277"
sodipodi:cx="255.55124"
sodipodi:cy="15.31348"
sodipodi:rx="10.80664"
sodipodi:ry="10.80664"
style="fill:#ffffff" />
<g
id="g279">
<path
d="M 258.67819,12.18701 C 258.67819,11.77051 258.3403,11.4331 257.92526,11.4331 L 253.15182,11.4331 C 252.73678,11.4331 252.39889,11.7705 252.39889,12.18701 L 252.39889,16.95996 L 253.72994,16.95996 L 253.72994,22.61182 L 257.34713,22.61182 L 257.34713,16.95996 L 258.67818,16.95996 L 258.67818,12.18701 L 258.67819,12.18701 z"
id="path281" />
<circle
cx="255.53854"
cy="9.1723604"
r="1.63281"
id="circle283"
sodipodi:cx="255.53854"
sodipodi:cy="9.1723604"
sodipodi:rx="1.63281"
sodipodi:ry="1.63281" />
</g>
<path
clip-rule="evenodd"
d="M 255.5239,3.40723 C 252.29148,3.40723 249.55515,4.53516 247.31589,6.79102 C 245.01804,9.12452 243.8696,11.88672 243.8696,15.07569 C 243.8696,18.26466 245.01804,21.00733 247.31589,23.30225 C 249.61374,25.59668 252.35007,26.74414 255.5239,26.74414 C 258.73679,26.74414 261.52195,25.58789 263.87742,23.27295 C 266.09715,21.07568 267.2075,18.34326 267.2075,15.07568 C 267.2075,11.8081 266.07762,9.04687 263.8198,6.79101 C 261.56003,4.53516 258.79538,3.40723 255.5239,3.40723 z M 255.55319,5.50684 C 258.20163,5.50684 260.45065,6.44092 262.30026,8.30811 C 264.1694,10.15528 265.10397,12.41114 265.10397,15.07569 C 265.10397,17.75928 264.18893,19.98633 262.35885,21.75587 C 260.43014,23.66212 258.16256,24.61476 255.55319,24.61476 C 252.94284,24.61476 250.69381,23.67189 248.80612,21.78517 C 246.91647,19.89845 245.97311,17.66212 245.97311,15.0757 C 245.97311,12.48879 246.92721,10.23341 248.83541,8.30812 C 250.6655,6.44092 252.90475,5.50684 255.55319,5.50684 z"
id="path285"
style="fill-rule:evenodd" />
</g>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment