Site icon R-bloggers

Alternative to Grouped Bar Charts in R

[This article was first published on rud.is » R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

The #spiffy @dseverski gave me this posit the other day:

Hey, @hrbrmstr, doughnut chart aside, how would you approach the first graph at http://t.co/zjHoHRVOeo? Bump chart? Trend line? Leave as is?

— David F. Severski (@dseverski) October 25, 2013

and, I obliged shortly thereafter, but figured I’d toss a post up on the blog before heading to Strata.

To rephrase the tweet a bit, Mr. Severski asked me what alternate encoding I’d use for this grouped bar chart (larger version at the link in David’s tweet):

I have almost as much disdain for grouped bar charts as I do for pie or donut charts, so appreciated the opportunity to try a makeover. However, I ran into an immediate problem: the usually #spiffy 451 Group folks did not include raw data. So, I reverse engineered the graph with WebPlotDigitizer, cleaned up the result and made a CSV from it. Then, I headed to RStudio with a plan in mind.

The old chart and data screamed faceted dot plot. The only trick necessary was to manually order the factor levels.

library(ggplot)
 
# read in the CSV file
nosql.df <- read.csv("nosql.csv", header=TRUE)
# manually order facets
nosql.df$Database <- factor(nosql.df$Database,
                            levels=c("MongoDB","Cassandra","Redis","HBase","CouchDB",
                                     "Neo4j","Riak","MarkLogic","Couchbase","DynamoDB"))
 
# start the plot
gg <- ggplot(data=nosql.df, aes(x=Quarter, y=Index))
# use points, colored by Quarter
gg <- gg + geom_point(aes(color=Quarter), size=3)
# make strips by nosql db factor
gg <- gg + facet_grid(Database~.)
# rotate the plot
gg <- gg + coord_flip()
# get rid of most of the junk
gg <- gg + theme_bw()
# add a title
gg <- gg + labs(x="", title="NoSQL LinkedIn Skills Index\nSeptember 2013")
# get rid of the legend
gg <- gg + theme(legend.position = "none")
# ensure the strip is gone
gg <- gg + theme(strip.text.x = element_blank())
gg

The result is below in SVG form (install a proper browser if you can’t see it, or run the R code 🙂 I think it conveys the data in a much more informative way. How would you encode the data to make it more informative and accessible?

Full source & data over at github.

< ?xml version="1.0" encoding="UTF-8"?> < svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="225pt" height="562pt" viewBox="0 0 225 562" version="1.1"> < defs> < g> < symbol overflow="visible" id="glyph0-0"> < path style="stroke:none;" d="M 0.3125 0 L 0.3125 -6.875 L 5.765625 -6.875 L 5.765625 0 Z M 4.90625 -0.859375 L 4.90625 -6.015625 L 1.171875 -6.015625 L 1.171875 -0.859375 Z "/> < symbol overflow="visible" id="glyph0-1"> < path style="stroke:none;" d="M 0.296875 0 C 0.328125 -0.570312 0.445312 -1.070312 0.65625 -1.5 C 0.863281 -1.9375 1.269531 -2.328125 1.875 -2.671875 L 2.765625 -3.1875 C 3.171875 -3.425781 3.457031 -3.628906 3.625 -3.796875 C 3.875 -4.054688 4 -4.351562 4 -4.6875 C 4 -5.070312 3.878906 -5.378906 3.640625 -5.609375 C 3.410156 -5.835938 3.101562 -5.953125 2.71875 -5.953125 C 2.132812 -5.953125 1.734375 -5.734375 1.515625 -5.296875 C 1.398438 -5.066406 1.335938 -4.742188 1.328125 -4.328125 L 0.46875 -4.328125 C 0.476562 -4.910156 0.582031 -5.382812 0.78125 -5.75 C 1.144531 -6.40625 1.789062 -6.734375 2.71875 -6.734375 C 3.488281 -6.734375 4.050781 -6.523438 4.40625 -6.109375 C 4.757812 -5.691406 4.9375 -5.226562 4.9375 -4.71875 C 4.9375 -4.1875 4.75 -3.726562 4.375 -3.34375 C 4.15625 -3.125 3.757812 -2.851562 3.1875 -2.53125 L 2.546875 -2.1875 C 2.242188 -2.019531 2.003906 -1.859375 1.828125 -1.703125 C 1.515625 -1.429688 1.316406 -1.128906 1.234375 -0.796875 L 4.90625 -0.796875 L 4.90625 0 Z "/> < symbol overflow="visible" id="glyph0-2"> < path style="stroke:none;" d="M 2.59375 -6.703125 C 3.457031 -6.703125 4.085938 -6.347656 4.484375 -5.640625 C 4.773438 -5.085938 4.921875 -4.328125 4.921875 -3.359375 C 4.921875 -2.453125 4.785156 -1.695312 4.515625 -1.09375 C 4.128906 -0.238281 3.488281 0.1875 2.59375 0.1875 C 1.78125 0.1875 1.179688 -0.160156 0.796875 -0.859375 C 0.460938 -1.453125 0.296875 -2.238281 0.296875 -3.21875 C 0.296875 -3.976562 0.394531 -4.632812 0.59375 -5.1875 C 0.957031 -6.195312 1.625 -6.703125 2.59375 -6.703125 Z M 2.578125 -0.578125 C 3.015625 -0.578125 3.363281 -0.769531 3.625 -1.15625 C 3.882812 -1.550781 4.015625 -2.273438 4.015625 -3.328125 C 4.015625 -4.085938 3.921875 -4.710938 3.734375 -5.203125 C 3.546875 -5.703125 3.179688 -5.953125 2.640625 -5.953125 C 2.148438 -5.953125 1.789062 -5.71875 1.5625 -5.25 C 1.332031 -4.78125 1.21875 -4.09375 1.21875 -3.1875 C 1.21875 -2.5 1.289062 -1.945312 1.4375 -1.53125 C 1.65625 -0.894531 2.035156 -0.578125 2.578125 -0.578125 Z "/> < symbol overflow="visible" id="glyph0-3"> < path style="stroke:none;" d="M 0.921875 -4.75 L 0.921875 -5.390625 C 1.523438 -5.453125 1.945312 -5.550781 2.1875 -5.6875 C 2.425781 -5.832031 2.609375 -6.164062 2.734375 -6.6875 L 3.390625 -6.6875 L 3.390625 0 L 2.5 0 L 2.5 -4.75 Z "/> < symbol overflow="visible" id="glyph0-4"> < path style="stroke:none;" d="M 0.390625 -3.109375 L 2.75 -3.109375 L 2.75 -2.234375 L 0.390625 -2.234375 Z "/> < symbol overflow="visible" id="glyph0-5"> < path style="stroke:none;" d="M 1.28125 -1.625 C 1.300781 -1.15625 1.476562 -0.832031 1.8125 -0.65625 C 1.988281 -0.5625 2.179688 -0.515625 2.390625 -0.515625 C 2.796875 -0.515625 3.140625 -0.679688 3.421875 -1.015625 C 3.703125 -1.347656 3.90625 -2.03125 4.03125 -3.0625 C 3.84375 -2.769531 3.609375 -2.5625 3.328125 -2.4375 C 3.054688 -2.320312 2.757812 -2.265625 2.4375 -2.265625 C 1.789062 -2.265625 1.28125 -2.460938 0.90625 -2.859375 C 0.53125 -3.265625 0.34375 -3.785156 0.34375 -4.421875 C 0.34375 -5.023438 0.523438 -5.554688 0.890625 -6.015625 C 1.265625 -6.484375 1.816406 -6.71875 2.546875 -6.71875 C 3.523438 -6.71875 4.195312 -6.273438 4.5625 -5.390625 C 4.769531 -4.910156 4.875 -4.304688 4.875 -3.578125 C 4.875 -2.753906 4.75 -2.023438 4.5 -1.390625 C 4.09375 -0.335938 3.398438 0.1875 2.421875 0.1875 C 1.765625 0.1875 1.265625 0.015625 0.921875 -0.328125 C 0.585938 -0.671875 0.421875 -1.101562 0.421875 -1.625 Z M 2.546875 -3 C 2.878906 -3 3.1875 -3.109375 3.46875 -3.328125 C 3.75 -3.546875 3.890625 -3.929688 3.890625 -4.484375 C 3.890625 -4.972656 3.765625 -5.335938 3.515625 -5.578125 C 3.265625 -5.828125 2.945312 -5.953125 2.5625 -5.953125 C 2.144531 -5.953125 1.816406 -5.8125 1.578125 -5.53125 C 1.335938 -5.257812 1.21875 -4.890625 1.21875 -4.421875 C 1.21875 -3.984375 1.320312 -3.632812 1.53125 -3.375 C 1.75 -3.125 2.085938 -3 2.546875 -3 Z "/> < symbol overflow="visible" id="glyph0-6"> < path style="stroke:none;" d="M 2.484375 0.1875 C 1.691406 0.1875 1.117188 -0.03125 0.765625 -0.46875 C 0.410156 -0.90625 0.234375 -1.4375 0.234375 -2.0625 L 1.109375 -2.0625 C 1.148438 -1.625 1.234375 -1.304688 1.359375 -1.109375 C 1.578125 -0.753906 1.96875 -0.578125 2.53125 -0.578125 C 2.976562 -0.578125 3.335938 -0.695312 3.609375 -0.9375 C 3.878906 -1.175781 4.015625 -1.484375 4.015625 -1.859375 C 4.015625 -2.316406 3.867188 -2.640625 3.578125 -2.828125 C 3.296875 -3.015625 2.90625 -3.109375 2.40625 -3.109375 C 2.351562 -3.109375 2.296875 -3.101562 2.234375 -3.09375 C 2.179688 -3.09375 2.125 -3.09375 2.0625 -3.09375 L 2.0625 -3.84375 C 2.144531 -3.832031 2.21875 -3.820312 2.28125 -3.8125 C 2.34375 -3.8125 2.40625 -3.8125 2.46875 -3.8125 C 2.789062 -3.8125 3.050781 -3.863281 3.25 -3.96875 C 3.601562 -4.144531 3.78125 -4.457031 3.78125 -4.90625 C 3.78125 -5.238281 3.660156 -5.492188 3.421875 -5.671875 C 3.191406 -5.859375 2.914062 -5.953125 2.59375 -5.953125 C 2.03125 -5.953125 1.644531 -5.765625 1.4375 -5.390625 C 1.3125 -5.179688 1.242188 -4.882812 1.234375 -4.5 L 0.390625 -4.5 C 0.390625 -5 0.492188 -5.425781 0.703125 -5.78125 C 1.046875 -6.40625 1.648438 -6.71875 2.515625 -6.71875 C 3.191406 -6.71875 3.71875 -6.5625 4.09375 -6.25 C 4.46875 -5.945312 4.65625 -5.507812 4.65625 -4.9375 C 4.65625 -4.519531 4.546875 -4.1875 4.328125 -3.9375 C 4.191406 -3.78125 4.015625 -3.65625 3.796875 -3.5625 C 4.148438 -3.46875 4.425781 -3.28125 4.625 -3 C 4.820312 -2.71875 4.921875 -2.378906 4.921875 -1.984375 C 4.921875 -1.347656 4.707031 -0.828125 4.28125 -0.421875 C 3.863281 -0.015625 3.265625 0.1875 2.484375 0.1875 Z "/> < symbol overflow="visible" id="glyph0-7"> < path style="stroke:none;" d="M 2.8125 -6.734375 C 3.5625 -6.734375 4.082031 -6.535156 4.375 -6.140625 C 4.664062 -5.753906 4.8125 -5.359375 4.8125 -4.953125 L 3.984375 -4.953125 C 3.929688 -5.210938 3.851562 -5.421875 3.75 -5.578125 C 3.539062 -5.859375 3.226562 -6 2.8125 -6 C 2.34375 -6 1.96875 -5.78125 1.6875 -5.34375 C 1.414062 -4.90625 1.265625 -4.28125 1.234375 -3.46875 C 1.421875 -3.75 1.664062 -3.960938 1.96875 -4.109375 C 2.226562 -4.234375 2.523438 -4.296875 2.859375 -4.296875 C 3.421875 -4.296875 3.910156 -4.113281 4.328125 -3.75 C 4.742188 -3.394531 4.953125 -2.863281 4.953125 -2.15625 C 4.953125 -1.539062 4.753906 -1 4.359375 -0.53125 C 3.960938 -0.0625 3.398438 0.171875 2.671875 0.171875 C 2.046875 0.171875 1.503906 -0.0625 1.046875 -0.53125 C 0.585938 -1.007812 0.359375 -1.816406 0.359375 -2.953125 C 0.359375 -3.785156 0.460938 -4.488281 0.671875 -5.0625 C 1.054688 -6.175781 1.769531 -6.734375 2.8125 -6.734375 Z M 2.75 -0.578125 C 3.1875 -0.578125 3.515625 -0.722656 3.734375 -1.015625 C 3.960938 -1.316406 4.078125 -1.671875 4.078125 -2.078125 C 4.078125 -2.421875 3.976562 -2.75 3.78125 -3.0625 C 3.582031 -3.375 3.222656 -3.53125 2.703125 -3.53125 C 2.335938 -3.53125 2.019531 -3.410156 1.75 -3.171875 C 1.476562 -2.929688 1.34375 -2.566406 1.34375 -2.078125 C 1.34375 -1.648438 1.460938 -1.289062 1.703125 -1 C 1.953125 -0.71875 2.300781 -0.578125 2.75 -0.578125 Z "/> < symbol overflow="visible" id="glyph0-8"> < path style="stroke:none;" d="M 3.171875 -2.375 L 3.171875 -5.421875 L 1.015625 -2.375 Z M 3.1875 0 L 3.1875 -1.640625 L 0.25 -1.640625 L 0.25 -2.46875 L 3.3125 -6.734375 L 4.03125 -6.734375 L 4.03125 -2.375 L 5.015625 -2.375 L 5.015625 -1.640625 L 4.03125 -1.640625 L 4.03125 0 Z "/> < symbol overflow="visible" id="glyph1-0"> < path style="stroke:none;" d="M 0 0.3125 L 6.875 0.3125 L 6.875 5.765625 L 0 5.765625 Z M 0.859375 4.90625 L 6.015625 4.90625 L 6.015625 1.171875 L 0.859375 1.171875 Z "/> < symbol overflow="visible" id="glyph1-1"> < path style="stroke:none;" d="M 6.875 0.703125 L 6.875 2.046875 L 1.0625 4.015625 L 6.875 5.984375 L 6.875 7.296875 L 0 7.296875 L 0 6.421875 L 4.0625 6.421875 C 4.195312 6.421875 4.425781 6.421875 4.75 6.421875 C 5.082031 6.429688 5.429688 6.4375 5.796875 6.4375 L 0 4.46875 L 0 3.546875 L 5.796875 1.578125 L 5.59375 1.578125 C 5.425781 1.578125 5.171875 1.578125 4.828125 1.578125 C 4.484375 1.585938 4.226562 1.59375 4.0625 1.59375 L 0 1.59375 L 0 0.703125 Z "/> < symbol overflow="visible" id="glyph1-2"> < path style="stroke:none;" d="M 0.546875 2.609375 C 0.546875 3.171875 0.753906 3.554688 1.171875 3.765625 C 1.597656 3.972656 2.070312 4.078125 2.59375 4.078125 C 3.0625 4.078125 3.441406 4 3.734375 3.84375 C 4.191406 3.601562 4.421875 3.195312 4.421875 2.625 C 4.421875 2.101562 4.222656 1.722656 3.828125 1.484375 C 3.441406 1.253906 2.96875 1.140625 2.40625 1.140625 C 1.875 1.140625 1.429688 1.253906 1.078125 1.484375 C 0.722656 1.722656 0.546875 2.097656 0.546875 2.609375 Z M 5.15625 2.640625 C 5.15625 3.285156 4.941406 3.832031 4.515625 4.28125 C 4.085938 4.726562 3.453125 4.953125 2.609375 4.953125 C 1.804688 4.953125 1.140625 4.753906 0.609375 4.359375 C 0.078125 3.960938 -0.1875 3.351562 -0.1875 2.53125 C -0.1875 1.84375 0.046875 1.296875 0.515625 0.890625 C 0.984375 0.484375 1.613281 0.28125 2.40625 0.28125 C 3.238281 0.28125 3.90625 0.492188 4.40625 0.921875 C 4.90625 1.347656 5.15625 1.921875 5.15625 2.640625 Z M 5.140625 2.609375 Z "/> < symbol overflow="visible" id="glyph1-3"> < path style="stroke:none;" d="M 5.015625 0.625 L 5.015625 1.421875 L 4.3125 1.421875 C 4.601562 1.660156 4.8125 1.910156 4.9375 2.171875 C 5.0625 2.441406 5.125 2.738281 5.125 3.0625 C 5.125 3.769531 4.878906 4.25 4.390625 4.5 C 4.117188 4.632812 3.726562 4.703125 3.21875 4.703125 L 0 4.703125 L 0 3.84375 L 3.15625 3.84375 C 3.46875 3.84375 3.71875 3.800781 3.90625 3.71875 C 4.21875 3.5625 4.375 3.289062 4.375 2.90625 C 4.375 2.695312 4.351562 2.53125 4.3125 2.40625 C 4.238281 2.175781 4.097656 1.972656 3.890625 1.796875 C 3.734375 1.660156 3.566406 1.570312 3.390625 1.53125 C 3.210938 1.488281 2.957031 1.46875 2.625 1.46875 L 0 1.46875 L 0 0.625 Z M 5.140625 2.59375 Z "/> < symbol overflow="visible" id="glyph1-4"> < path style="stroke:none;" d="M 5.109375 2.390625 C 5.109375 2.785156 5.007812 3.128906 4.8125 3.421875 C 4.707031 3.578125 4.550781 3.738281 4.34375 3.90625 L 4.96875 3.90625 L 4.96875 4.6875 L 0.40625 4.6875 C -0.226562 4.6875 -0.726562 4.59375 -1.09375 4.40625 C -1.78125 4.050781 -2.125 3.390625 -2.125 2.421875 C -2.125 1.878906 -2 1.421875 -1.75 1.046875 C -1.507812 0.679688 -1.132812 0.476562 -0.625 0.4375 L -0.625 1.296875 C -0.84375 1.335938 -1.015625 1.421875 -1.140625 1.546875 C -1.328125 1.734375 -1.421875 2.03125 -1.421875 2.4375 C -1.421875 3.082031 -1.191406 3.503906 -0.734375 3.703125 C -0.472656 3.828125 0.00390625 3.882812 0.703125 3.875 C 0.441406 3.707031 0.25 3.503906 0.125 3.265625 C 0 3.023438 -0.0625 2.710938 -0.0625 2.328125 C -0.0625 1.785156 0.128906 1.304688 0.515625 0.890625 C 0.898438 0.484375 1.539062 0.28125 2.4375 0.28125 C 3.269531 0.28125 3.921875 0.484375 4.390625 0.890625 C 4.867188 1.304688 5.109375 1.804688 5.109375 2.390625 Z M 2.53125 3.90625 C 3.15625 3.90625 3.613281 3.773438 3.90625 3.515625 C 4.207031 3.265625 4.359375 2.941406 4.359375 2.546875 C 4.359375 1.953125 4.082031 1.546875 3.53125 1.328125 C 3.226562 1.210938 2.835938 1.15625 2.359375 1.15625 C 1.796875 1.15625 1.363281 1.269531 1.0625 1.5 C 0.769531 1.726562 0.625 2.035156 0.625 2.421875 C 0.625 3.023438 0.898438 3.453125 1.453125 3.703125 C 1.753906 3.835938 2.113281 3.90625 2.53125 3.90625 Z M 5.140625 2.484375 Z "/> < symbol overflow="visible" id="glyph1-5"> < path style="stroke:none;" d="M 0.796875 3.375 C 0.796875 3.6875 0.828125 3.945312 0.890625 4.15625 C 1.015625 4.507812 1.25 4.804688 1.59375 5.046875 C 1.875 5.222656 2.234375 5.351562 2.671875 5.4375 C 2.921875 5.488281 3.160156 5.515625 3.390625 5.515625 C 4.242188 5.515625 4.90625 5.34375 5.375 5 C 5.84375 4.664062 6.078125 4.117188 6.078125 3.359375 L 6.078125 1.703125 L 0.796875 1.703125 Z M 6.875 0.765625 L 6.875 3.5625 C 6.875 4.507812 6.539062 5.242188 5.875 5.765625 C 5.269531 6.222656 4.492188 6.453125 3.546875 6.453125 C 2.816406 6.453125 2.15625 6.316406 1.5625 6.046875 C 0.519531 5.566406 0 4.734375 0 3.546875 L 0 0.765625 Z "/> < symbol overflow="visible" id="glyph1-6"> < path style="stroke:none;" d="M 3.96875 3.3125 C 3.96875 3.707031 4.023438 4.015625 4.140625 4.234375 C 4.304688 4.578125 4.613281 4.75 5.0625 4.75 C 5.507812 4.75 5.8125 4.566406 5.96875 4.203125 C 6.0625 3.992188 6.109375 3.6875 6.109375 3.28125 L 6.109375 1.625 L 3.96875 1.625 Z M 0.796875 3.625 C 0.796875 4.195312 0.960938 4.609375 1.296875 4.859375 C 1.503906 5.003906 1.753906 5.078125 2.046875 5.078125 C 2.546875 5.078125 2.890625 4.851562 3.078125 4.40625 C 3.171875 4.175781 3.21875 3.863281 3.21875 3.46875 L 3.21875 1.625 L 0.796875 1.625 Z M 6.875 0.703125 L 6.875 3.65625 C 6.875 4.46875 6.632812 5.039062 6.15625 5.375 C 5.875 5.582031 5.546875 5.6875 5.171875 5.6875 C 4.742188 5.6875 4.390625 5.5625 4.109375 5.3125 C 3.960938 5.1875 3.828125 5.003906 3.703125 4.765625 C 3.566406 5.109375 3.414062 5.367188 3.25 5.546875 C 2.945312 5.859375 2.535156 6.015625 2.015625 6.015625 C 1.566406 6.015625 1.164062 5.875 0.8125 5.59375 C 0.269531 5.175781 0 4.515625 0 3.609375 L 0 0.703125 Z "/> < symbol overflow="visible" id="glyph1-7"> < path style="stroke:none;" d="M 7.0625 3.625 C 7.0625 4.5 6.832031 5.175781 6.375 5.65625 C 5.914062 6.132812 5.394531 6.398438 4.8125 6.453125 L 4.8125 5.546875 C 5.257812 5.441406 5.613281 5.234375 5.875 4.921875 C 6.132812 4.617188 6.265625 4.191406 6.265625 3.640625 C 6.265625 2.960938 6.023438 2.414062 5.546875 2 C 5.066406 1.582031 4.335938 1.375 3.359375 1.375 C 2.546875 1.375 1.890625 1.5625 1.390625 1.9375 C 0.890625 2.3125 0.640625 2.875 0.640625 3.625 C 0.640625 4.3125 0.90625 4.832031 1.4375 5.1875 C 1.707031 5.375 2.070312 5.515625 2.53125 5.609375 L 2.53125 6.53125 C 1.800781 6.445312 1.191406 6.175781 0.703125 5.71875 C 0.117188 5.175781 -0.171875 4.441406 -0.171875 3.515625 C -0.171875 2.710938 0.0664062 2.039062 0.546875 1.5 C 1.191406 0.78125 2.179688 0.421875 3.515625 0.421875 C 4.523438 0.421875 5.359375 0.691406 6.015625 1.234375 C 6.710938 1.804688 7.0625 2.601562 7.0625 3.625 Z M 7.0625 3.4375 Z "/> < symbol overflow="visible" id="glyph1-8"> < path style="stroke:none;" d="M 1.328125 1.265625 C 1.085938 1.265625 0.894531 1.351562 0.75 1.53125 C 0.613281 1.707031 0.546875 1.921875 0.546875 2.171875 C 0.546875 2.460938 0.613281 2.75 0.75 3.03125 C 0.976562 3.5 1.351562 3.734375 1.875 3.734375 L 2.546875 3.734375 C 2.484375 3.628906 2.429688 3.492188 2.390625 3.328125 C 2.347656 3.171875 2.316406 3.015625 2.296875 2.859375 L 2.234375 2.34375 C 2.191406 2.039062 2.125 1.8125 2.03125 1.65625 C 1.882812 1.394531 1.648438 1.265625 1.328125 1.265625 Z M 3.046875 3.3125 C 3.066406 3.5 3.144531 3.628906 3.28125 3.703125 C 3.351562 3.734375 3.460938 3.75 3.609375 3.75 C 3.890625 3.75 4.09375 3.644531 4.21875 3.4375 C 4.351562 3.238281 4.421875 2.945312 4.421875 2.5625 C 4.421875 2.125 4.304688 1.8125 4.078125 1.625 C 3.941406 1.519531 3.742188 1.453125 3.484375 1.421875 L 3.484375 0.640625 C 4.097656 0.660156 4.523438 0.863281 4.765625 1.25 C 5.015625 1.632812 5.140625 2.078125 5.140625 2.578125 C 5.140625 3.171875 5.023438 3.65625 4.796875 4.03125 C 4.578125 4.394531 4.226562 4.578125 3.75 4.578125 L 0.859375 4.578125 C 0.773438 4.578125 0.707031 4.59375 0.65625 4.625 C 0.601562 4.664062 0.578125 4.742188 0.578125 4.859375 C 0.578125 4.890625 0.578125 4.925781 0.578125 4.96875 C 0.578125 5.019531 0.582031 5.070312 0.59375 5.125 L -0.015625 5.125 C -0.0546875 5 -0.0820312 4.898438 -0.09375 4.828125 C -0.101562 4.765625 -0.109375 4.671875 -0.109375 4.546875 C -0.109375 4.253906 -0.00390625 4.046875 0.203125 3.921875 C 0.304688 3.847656 0.460938 3.796875 0.671875 3.765625 C 0.441406 3.597656 0.242188 3.351562 0.078125 3.03125 C -0.0859375 2.707031 -0.171875 2.351562 -0.171875 1.96875 C -0.171875 1.5 -0.03125 1.117188 0.25 0.828125 C 0.53125 0.535156 0.882812 0.390625 1.3125 0.390625 C 1.78125 0.390625 2.140625 0.53125 2.390625 0.8125 C 2.648438 1.101562 2.8125 1.488281 2.875 1.96875 Z M 5.140625 2.609375 Z "/> < symbol overflow="visible" id="glyph1-9"> < path style="stroke:none;" d="M 1.578125 1.125 C 1.296875 1.144531 1.078125 1.210938 0.921875 1.328125 C 0.648438 1.546875 0.515625 1.914062 0.515625 2.4375 C 0.515625 2.75 0.582031 3.019531 0.71875 3.25 C 0.851562 3.488281 1.066406 3.609375 1.359375 3.609375 C 1.566406 3.609375 1.726562 3.515625 1.84375 3.328125 C 1.914062 3.203125 1.992188 2.960938 2.078125 2.609375 L 2.25 1.9375 C 2.351562 1.507812 2.472656 1.195312 2.609375 1 C 2.835938 0.632812 3.15625 0.453125 3.5625 0.453125 C 4.03125 0.453125 4.410156 0.617188 4.703125 0.953125 C 4.992188 1.296875 5.140625 1.757812 5.140625 2.34375 C 5.140625 3.09375 4.921875 3.640625 4.484375 3.984375 C 4.203125 4.191406 3.898438 4.289062 3.578125 4.28125 L 3.578125 3.484375 C 3.765625 3.472656 3.9375 3.40625 4.09375 3.28125 C 4.3125 3.09375 4.421875 2.757812 4.421875 2.28125 C 4.421875 1.957031 4.359375 1.710938 4.234375 1.546875 C 4.117188 1.390625 3.960938 1.3125 3.765625 1.3125 C 3.546875 1.3125 3.367188 1.414062 3.234375 1.625 C 3.160156 1.75 3.09375 1.9375 3.03125 2.1875 L 2.890625 2.734375 C 2.742188 3.347656 2.601562 3.753906 2.46875 3.953125 C 2.25 4.285156 1.910156 4.453125 1.453125 4.453125 C 1.003906 4.453125 0.617188 4.28125 0.296875 3.9375 C -0.0234375 3.601562 -0.1875 3.085938 -0.1875 2.390625 C -0.1875 1.648438 -0.0195312 1.125 0.3125 0.8125 C 0.65625 0.5 1.078125 0.332031 1.578125 0.3125 Z M 5.140625 2.359375 Z "/> < symbol overflow="visible" id="glyph1-10"> < path style="stroke:none;" d="M 2.453125 1.15625 C 1.910156 1.15625 1.457031 1.269531 1.09375 1.5 C 0.738281 1.726562 0.5625 2.09375 0.5625 2.59375 C 0.5625 2.976562 0.726562 3.296875 1.0625 3.546875 C 1.394531 3.804688 1.875 3.9375 2.5 3.9375 C 3.132812 3.9375 3.601562 3.804688 3.90625 3.546875 C 4.21875 3.285156 4.375 2.960938 4.375 2.578125 C 4.375 2.148438 4.207031 1.804688 3.875 1.546875 C 3.550781 1.285156 3.078125 1.15625 2.453125 1.15625 Z M 5.109375 2.421875 C 5.109375 2.804688 5.023438 3.128906 4.859375 3.390625 C 4.765625 3.535156 4.601562 3.703125 4.375 3.890625 L 6.90625 3.890625 L 6.90625 4.703125 L 0 4.703125 L 0 3.953125 L 0.703125 3.953125 C 0.390625 3.753906 0.164062 3.519531 0.03125 3.25 C -0.101562 2.976562 -0.171875 2.671875 -0.171875 2.328125 C -0.171875 1.765625 0.0625 1.28125 0.53125 0.875 C 1 0.46875 1.625 0.265625 2.40625 0.265625 C 3.132812 0.265625 3.765625 0.445312 4.296875 0.8125 C 4.835938 1.1875 5.109375 1.722656 5.109375 2.421875 Z "/> < symbol overflow="visible" id="glyph1-11"> < path style="stroke:none;" d="M 5.015625 0.640625 L 5.015625 1.4375 L 4.15625 1.4375 C 4.320312 1.507812 4.523438 1.671875 4.765625 1.921875 C 5.003906 2.179688 5.125 2.476562 5.125 2.8125 C 5.125 2.820312 5.125 2.847656 5.125 2.890625 C 5.125 2.929688 5.117188 2.992188 5.109375 3.078125 L 4.21875 3.078125 C 4.226562 3.023438 4.234375 2.976562 4.234375 2.9375 C 4.234375 2.894531 4.234375 2.851562 4.234375 2.8125 C 4.234375 2.382812 4.097656 2.054688 3.828125 1.828125 C 3.554688 1.597656 3.242188 1.484375 2.890625 1.484375 L 0 1.484375 L 0 0.640625 Z "/> < symbol overflow="visible" id="glyph1-12"> < path style="stroke:none;" d="M 3.734375 3.9375 C 3.734375 4.375 3.816406 4.71875 3.984375 4.96875 C 4.160156 5.21875 4.476562 5.34375 4.9375 5.34375 C 5.425781 5.34375 5.757812 5.164062 5.9375 4.8125 C 6.03125 4.625 6.078125 4.367188 6.078125 4.046875 L 6.078125 1.78125 L 3.734375 1.78125 Z M 6.875 0.84375 L 6.875 4.03125 C 6.875 4.550781 6.800781 4.984375 6.65625 5.328125 C 6.363281 5.972656 5.820312 6.296875 5.03125 6.296875 C 4.613281 6.296875 4.273438 6.207031 4.015625 6.03125 C 3.753906 5.863281 3.539062 5.628906 3.375 5.328125 C 3.269531 5.597656 3.128906 5.800781 2.953125 5.9375 C 2.773438 6.070312 2.484375 6.144531 2.078125 6.15625 L 1.15625 6.1875 C 0.894531 6.195312 0.703125 6.222656 0.578125 6.265625 C 0.359375 6.316406 0.21875 6.414062 0.15625 6.5625 L 0 6.5625 L 0 5.421875 C 0.0625 5.390625 0.140625 5.363281 0.234375 5.34375 C 0.328125 5.320312 0.503906 5.304688 0.765625 5.296875 L 1.921875 5.234375 C 2.367188 5.210938 2.671875 5.046875 2.828125 4.734375 C 2.910156 4.554688 2.953125 4.273438 2.953125 3.890625 L 2.953125 1.78125 L 0 1.78125 L 0 0.84375 Z "/> < symbol overflow="visible" id="glyph1-13"> < path style="stroke:none;" d="M 5.125 2.703125 C 5.125 3.054688 5.039062 3.398438 4.875 3.734375 C 4.707031 4.078125 4.492188 4.332031 4.234375 4.5 C 3.972656 4.675781 3.675781 4.789062 3.34375 4.84375 C 3.113281 4.894531 2.742188 4.921875 2.234375 4.921875 L 2.234375 1.234375 C 1.722656 1.253906 1.3125 1.375 1 1.59375 C 0.695312 1.820312 0.546875 2.171875 0.546875 2.640625 C 0.546875 3.085938 0.691406 3.441406 0.984375 3.703125 C 1.148438 3.847656 1.347656 3.953125 1.578125 4.015625 L 1.578125 4.84375 C 1.390625 4.820312 1.179688 4.75 0.953125 4.625 C 0.734375 4.507812 0.550781 4.375 0.40625 4.21875 C 0.15625 3.957031 -0.015625 3.640625 -0.109375 3.265625 C -0.148438 3.054688 -0.171875 2.828125 -0.171875 2.578125 C -0.171875 1.953125 0.0507812 1.421875 0.5 0.984375 C 0.957031 0.554688 1.59375 0.34375 2.40625 0.34375 C 3.21875 0.34375 3.875 0.5625 4.375 1 C 4.875 1.4375 5.125 2.003906 5.125 2.703125 Z M 2.90625 4.046875 C 3.269531 4.015625 3.5625 3.9375 3.78125 3.8125 C 4.1875 3.582031 4.390625 3.195312 4.390625 2.65625 C 4.390625 2.269531 4.25 1.941406 3.96875 1.671875 C 3.695312 1.410156 3.34375 1.273438 2.90625 1.265625 Z M 5.140625 2.625 Z "/> < symbol overflow="visible" id="glyph1-14"> < path style="stroke:none;" d="M 5 0.625 L 5 1.46875 L 0 1.46875 L 0 0.625 Z M 6.875 0.625 L 6.875 1.46875 L 5.921875 1.46875 L 5.921875 0.625 Z "/> < symbol overflow="visible" id="glyph1-15"> < path style="stroke:none;" d="M 6.875 0.75 L 6.875 1.703125 L 4.03125 1.703125 L 4.03125 5.28125 L 6.875 5.28125 L 6.875 6.21875 L 0 6.21875 L 0 5.28125 L 3.21875 5.28125 L 3.21875 1.703125 L 0 1.703125 L 0 0.75 Z "/> < symbol overflow="visible" id="glyph1-16"> < path style="stroke:none;" d="M 5.015625 1.46875 L 1.6875 1.46875 C 1.425781 1.46875 1.21875 1.503906 1.0625 1.578125 C 0.757812 1.734375 0.609375 2.015625 0.609375 2.421875 C 0.609375 3.003906 0.867188 3.40625 1.390625 3.625 C 1.671875 3.738281 2.054688 3.796875 2.546875 3.796875 L 5.015625 3.796875 L 5.015625 4.640625 L 0 4.640625 L 0 3.84375 L 0.734375 3.84375 C 0.546875 3.738281 0.382812 3.601562 0.25 3.4375 C -0.0078125 3.113281 -0.140625 2.722656 -0.140625 2.265625 C -0.140625 1.554688 0.0976562 1.070312 0.578125 0.8125 C 0.835938 0.664062 1.179688 0.59375 1.609375 0.59375 L 5.015625 0.59375 Z M 5.140625 2.625 Z "/> < symbol overflow="visible" id="glyph1-17"> < path style="stroke:none;" d="M 5.15625 2.546875 C 5.15625 3.117188 5.019531 3.582031 4.75 3.9375 C 4.476562 4.289062 4.003906 4.503906 3.328125 4.578125 L 3.328125 3.75 C 3.640625 3.695312 3.894531 3.582031 4.09375 3.40625 C 4.300781 3.226562 4.40625 2.941406 4.40625 2.546875 C 4.40625 2.015625 4.144531 1.632812 3.625 1.40625 C 3.28125 1.25 2.859375 1.171875 2.359375 1.171875 C 1.859375 1.171875 1.4375 1.273438 1.09375 1.484375 C 0.75 1.703125 0.578125 2.039062 0.578125 2.5 C 0.578125 2.84375 0.679688 3.117188 0.890625 3.328125 C 1.109375 3.535156 1.40625 3.675781 1.78125 3.75 L 1.78125 4.578125 C 1.113281 4.484375 0.625 4.25 0.3125 3.875 C 0.0078125 3.5 -0.140625 3.019531 -0.140625 2.4375 C -0.140625 1.78125 0.0976562 1.253906 0.578125 0.859375 C 1.054688 0.472656 1.65625 0.28125 2.375 0.28125 C 3.25 0.28125 3.929688 0.492188 4.421875 0.921875 C 4.910156 1.347656 5.15625 1.890625 5.15625 2.546875 Z M 5.140625 2.421875 Z "/> < symbol overflow="visible" id="glyph1-18"> < path style="stroke:none;" d="M 6.90625 0.625 L 6.90625 1.46875 L 4.34375 1.46875 C 4.59375 1.664062 4.769531 1.84375 4.875 2 C 5.050781 2.269531 5.140625 2.609375 5.140625 3.015625 C 5.140625 3.742188 4.882812 4.238281 4.375 4.5 C 4.09375 4.632812 3.707031 4.703125 3.21875 4.703125 L 0 4.703125 L 0 3.84375 L 3.15625 3.84375 C 3.53125 3.84375 3.800781 3.796875 3.96875 3.703125 C 4.25 3.546875 4.390625 3.257812 4.390625 2.84375 C 4.390625 2.488281 4.265625 2.171875 4.015625 1.890625 C 3.773438 1.609375 3.320312 1.46875 2.65625 1.46875 L 0 1.46875 L 0 0.625 Z "/> < symbol overflow="visible" id="glyph1-19"> < path style="stroke:none;" d="M 6.875 0.734375 L 6.875 1.828125 L 1.3125 5.3125 L 6.875 5.3125 L 6.875 6.1875 L 0 6.1875 L 0 5.140625 L 5.5625 1.625 L 0 1.625 L 0 0.734375 Z M 6.875 3.40625 Z "/> < symbol overflow="visible" id="glyph1-20"> < path style="stroke:none;" d="M 2.375 3.171875 L 5.421875 3.171875 L 2.375 1.015625 Z M 0 3.1875 L 1.640625 3.1875 L 1.640625 0.25 L 2.46875 0.25 L 6.734375 3.3125 L 6.734375 4.03125 L 2.375 4.03125 L 2.375 5.015625 L 1.640625 5.015625 L 1.640625 4.03125 L 0 4.03125 Z "/> < symbol overflow="visible" id="glyph1-21"> < path style="stroke:none;" d="M 5.90625 1.46875 L 5.90625 0.625 L 6.875 0.625 L 6.875 1.46875 Z M -1.265625 -0.171875 C -1.253906 0.203125 -1.222656 0.425781 -1.171875 0.5 C -1.117188 0.582031 -0.945312 0.625 -0.65625 0.625 L 5 0.625 L 5 1.46875 L -0.75 1.46875 C -1.113281 1.46875 -1.382812 1.40625 -1.5625 1.28125 C -1.875 1.082031 -2.03125 0.707031 -2.03125 0.15625 C -2.03125 0.125 -2.023438 0.0820312 -2.015625 0.03125 C -2.015625 -0.0078125 -2.007812 -0.078125 -2 -0.171875 Z "/> < symbol overflow="visible" id="glyph1-22"> < path style="stroke:none;" d="M 6.875 0.59375 L 6.875 1.40625 L 2.890625 1.40625 L 5.015625 3.578125 L 5.015625 4.65625 L 3.140625 2.734375 L 0 4.765625 L 0 3.6875 L 2.53125 2.125 L 1.890625 1.40625 L 0 1.40625 L 0 0.59375 Z "/> < symbol overflow="visible" id="glyph1-23"> < path style="stroke:none;" d="M 6.875 0.734375 L 6.875 1.65625 L 0.8125 1.65625 L 0.8125 5.140625 L 0 5.140625 L 0 0.734375 Z "/> < symbol overflow="visible" id="glyph1-24"> < path style="stroke:none;" d="M 6.90625 0.546875 L 6.90625 1.375 L 4.40625 1.375 C 4.644531 1.5625 4.828125 1.78125 4.953125 2.03125 C 5.078125 2.289062 5.140625 2.566406 5.140625 2.859375 C 5.140625 3.484375 4.925781 3.988281 4.5 4.375 C 4.070312 4.769531 3.441406 4.96875 2.609375 4.96875 C 1.816406 4.96875 1.15625 4.773438 0.625 4.390625 C 0.101562 4.003906 -0.15625 3.472656 -0.15625 2.796875 C -0.15625 2.410156 -0.0664062 2.085938 0.109375 1.828125 C 0.222656 1.671875 0.398438 1.503906 0.640625 1.328125 L 0 1.328125 L 0 0.546875 Z M 0.578125 2.75 C 0.578125 3.195312 0.757812 3.535156 1.125 3.765625 C 1.488281 3.992188 1.96875 4.109375 2.5625 4.109375 C 3.09375 4.109375 3.53125 3.992188 3.875 3.765625 C 4.21875 3.535156 4.390625 3.203125 4.390625 2.765625 C 4.390625 2.378906 4.25 2.039062 3.96875 1.75 C 3.6875 1.46875 3.21875 1.328125 2.5625 1.328125 C 2.09375 1.328125 1.710938 1.382812 1.421875 1.5 C 0.859375 1.726562 0.578125 2.144531 0.578125 2.75 Z "/> < symbol overflow="visible" id="glyph1-25"> < path style="stroke:none;" d="M 5.015625 3.75 L 5.015625 4.6875 C 4.691406 4.5625 3.957031 4.296875 2.8125 3.890625 C 1.945312 3.585938 1.242188 3.332031 0.703125 3.125 C -0.578125 2.632812 -1.359375 2.289062 -1.640625 2.09375 C -1.921875 1.894531 -2.0625 1.550781 -2.0625 1.0625 C -2.0625 0.945312 -2.054688 0.851562 -2.046875 0.78125 C -2.035156 0.71875 -2.015625 0.640625 -1.984375 0.546875 L -1.21875 0.546875 C -1.257812 0.691406 -1.285156 0.796875 -1.296875 0.859375 C -1.304688 0.929688 -1.3125 0.992188 -1.3125 1.046875 C -1.3125 1.203125 -1.285156 1.316406 -1.234375 1.390625 C -1.179688 1.460938 -1.117188 1.523438 -1.046875 1.578125 C -1.015625 1.585938 -0.882812 1.640625 -0.65625 1.734375 C -0.425781 1.835938 -0.253906 1.910156 -0.140625 1.953125 L 5.015625 0.09375 L 5.015625 1.046875 L 0.9375 2.40625 Z M 5.140625 2.390625 Z "/> < symbol overflow="visible" id="glyph1-26"> < path style="stroke:none;" d="M 5.015625 0.625 L 5.015625 1.453125 L 4.3125 1.453125 C 4.550781 1.648438 4.726562 1.832031 4.84375 2 C 5.03125 2.269531 5.125 2.582031 5.125 2.9375 C 5.125 3.34375 5.023438 3.664062 4.828125 3.90625 C 4.722656 4.039062 4.5625 4.164062 4.34375 4.28125 C 4.601562 4.46875 4.796875 4.6875 4.921875 4.9375 C 5.054688 5.195312 5.125 5.484375 5.125 5.796875 C 5.125 6.472656 4.882812 6.929688 4.40625 7.171875 C 4.132812 7.304688 3.78125 7.375 3.34375 7.375 L 0 7.375 L 0 6.5 L 3.484375 6.5 C 3.816406 6.5 4.046875 6.410156 4.171875 6.234375 C 4.296875 6.066406 4.359375 5.863281 4.359375 5.625 C 4.359375 5.300781 4.25 5.019531 4.03125 4.78125 C 3.8125 4.539062 3.441406 4.421875 2.921875 4.421875 L 0 4.421875 L 0 3.5625 L 3.28125 3.5625 C 3.613281 3.5625 3.859375 3.519531 4.015625 3.4375 C 4.253906 3.3125 4.375 3.070312 4.375 2.71875 C 4.375 2.40625 4.25 2.117188 4 1.859375 C 3.75 1.597656 3.300781 1.46875 2.65625 1.46875 L 0 1.46875 L 0 0.625 Z "/> < symbol overflow="visible" id="glyph2-0"> < path style="stroke:none;" d="M 0.390625 0 L 0.390625 -8.609375 L 7.21875 -8.609375 L 7.21875 0 Z M 6.140625 -1.078125 L 6.140625 -7.53125 L 1.46875 -7.53125 L 1.46875 -1.078125 Z "/> < symbol overflow="visible" id="glyph2-1"> < path style="stroke:none;" d="M 1.171875 -8.609375 L 2.359375 -8.609375 L 2.359375 0 L 1.171875 0 Z "/> < symbol overflow="visible" id="glyph2-2"> < path style="stroke:none;" d="M 0.78125 -6.28125 L 1.78125 -6.28125 L 1.78125 -5.390625 C 2.070312 -5.753906 2.382812 -6.015625 2.71875 -6.171875 C 3.050781 -6.335938 3.421875 -6.421875 3.828125 -6.421875 C 4.710938 -6.421875 5.3125 -6.109375 5.625 -5.484375 C 5.800781 -5.140625 5.890625 -4.65625 5.890625 -4.03125 L 5.890625 0 L 4.8125 0 L 4.8125 -3.953125 C 4.8125 -4.335938 4.753906 -4.644531 4.640625 -4.875 C 4.453125 -5.269531 4.113281 -5.46875 3.625 -5.46875 C 3.375 -5.46875 3.171875 -5.441406 3.015625 -5.390625 C 2.722656 -5.304688 2.46875 -5.132812 2.25 -4.875 C 2.070312 -4.664062 1.957031 -4.453125 1.90625 -4.234375 C 1.851562 -4.015625 1.828125 -3.695312 1.828125 -3.28125 L 1.828125 0 L 0.78125 0 Z M 3.25 -6.421875 Z "/> < symbol overflow="visible" id="glyph2-3"> < path style="stroke:none;" d="M 1.4375 -3.0625 C 1.4375 -2.394531 1.578125 -1.832031 1.859375 -1.375 C 2.148438 -0.925781 2.609375 -0.703125 3.234375 -0.703125 C 3.722656 -0.703125 4.125 -0.910156 4.4375 -1.328125 C 4.757812 -1.742188 4.921875 -2.347656 4.921875 -3.140625 C 4.921875 -3.929688 4.753906 -4.515625 4.421875 -4.890625 C 4.097656 -5.273438 3.703125 -5.46875 3.234375 -5.46875 C 2.703125 -5.46875 2.269531 -5.265625 1.9375 -4.859375 C 1.601562 -4.453125 1.4375 -3.851562 1.4375 -3.0625 Z M 3.03125 -6.390625 C 3.507812 -6.390625 3.910156 -6.285156 4.234375 -6.078125 C 4.421875 -5.960938 4.632812 -5.757812 4.875 -5.46875 L 4.875 -8.640625 L 5.890625 -8.640625 L 5.890625 0 L 4.9375 0 L 4.9375 -0.875 C 4.695312 -0.488281 4.40625 -0.207031 4.0625 -0.03125 C 3.726562 0.132812 3.34375 0.21875 2.90625 0.21875 C 2.207031 0.21875 1.601562 -0.0703125 1.09375 -0.65625 C 0.582031 -1.25 0.328125 -2.03125 0.328125 -3 C 0.328125 -3.914062 0.5625 -4.707031 1.03125 -5.375 C 1.5 -6.050781 2.164062 -6.390625 3.03125 -6.390625 Z "/> < symbol overflow="visible" id="glyph2-4"> < path style="stroke:none;" d="M 3.390625 -6.421875 C 3.835938 -6.421875 4.269531 -6.316406 4.6875 -6.109375 C 5.101562 -5.898438 5.421875 -5.628906 5.640625 -5.296875 C 5.847656 -4.972656 5.988281 -4.601562 6.0625 -4.1875 C 6.125 -3.894531 6.15625 -3.429688 6.15625 -2.796875 L 1.546875 -2.796875 C 1.566406 -2.160156 1.71875 -1.648438 2 -1.265625 C 2.28125 -0.878906 2.71875 -0.6875 3.3125 -0.6875 C 3.863281 -0.6875 4.300781 -0.867188 4.625 -1.234375 C 4.8125 -1.441406 4.945312 -1.6875 5.03125 -1.96875 L 6.0625 -1.96875 C 6.039062 -1.738281 5.953125 -1.484375 5.796875 -1.203125 C 5.640625 -0.921875 5.46875 -0.6875 5.28125 -0.5 C 4.957031 -0.1875 4.554688 0.0195312 4.078125 0.125 C 3.828125 0.1875 3.539062 0.21875 3.21875 0.21875 C 2.4375 0.21875 1.773438 -0.0625 1.234375 -0.625 C 0.691406 -1.195312 0.421875 -1.992188 0.421875 -3.015625 C 0.421875 -4.023438 0.691406 -4.84375 1.234375 -5.46875 C 1.785156 -6.101562 2.503906 -6.421875 3.390625 -6.421875 Z M 5.0625 -3.640625 C 5.019531 -4.097656 4.921875 -4.460938 4.765625 -4.734375 C 4.484375 -5.242188 4.003906 -5.5 3.328125 -5.5 C 2.835938 -5.5 2.425781 -5.320312 2.09375 -4.96875 C 1.769531 -4.625 1.597656 -4.179688 1.578125 -3.640625 Z M 3.28125 -6.421875 Z "/> < symbol overflow="visible" id="glyph2-5"> < path style="stroke:none;" d="M 0.171875 -6.28125 L 1.546875 -6.28125 L 2.984375 -4.0625 L 4.4375 -6.28125 L 5.71875 -6.25 L 3.609375 -3.21875 L 5.8125 0 L 4.46875 0 L 2.90625 -2.359375 L 1.40625 0 L 0.0625 0 L 2.28125 -3.21875 Z "/> < symbol overflow="visible" id="glyph3-0"> < path style="stroke:none;" d="M 0.46875 0 L 0.46875 -10.328125 L 8.671875 -10.328125 L 8.671875 0 Z M 7.375 -1.296875 L 7.375 -9.046875 L 1.765625 -9.046875 L 1.765625 -1.296875 Z "/> < symbol overflow="visible" id="glyph3-1"> < path style="stroke:none;" d="M 1.09375 -10.328125 L 2.75 -10.328125 L 7.96875 -1.96875 L 7.96875 -10.328125 L 9.296875 -10.328125 L 9.296875 0 L 7.734375 0 L 2.4375 -8.359375 L 2.4375 0 L 1.09375 0 Z M 5.109375 -10.328125 Z "/> < symbol overflow="visible" id="glyph3-2"> < path style="stroke:none;" d="M 3.921875 -0.8125 C 4.753906 -0.8125 5.328125 -1.128906 5.640625 -1.765625 C 5.953125 -2.398438 6.109375 -3.109375 6.109375 -3.890625 C 6.109375 -4.585938 6 -5.160156 5.78125 -5.609375 C 5.414062 -6.296875 4.800781 -6.640625 3.9375 -6.640625 C 3.15625 -6.640625 2.585938 -6.34375 2.234375 -5.75 C 1.890625 -5.164062 1.71875 -4.457031 1.71875 -3.625 C 1.71875 -2.820312 1.890625 -2.148438 2.234375 -1.609375 C 2.585938 -1.078125 3.148438 -0.8125 3.921875 -0.8125 Z M 3.96875 -7.75 C 4.9375 -7.75 5.753906 -7.425781 6.421875 -6.78125 C 7.097656 -6.132812 7.4375 -5.179688 7.4375 -3.921875 C 7.4375 -2.710938 7.140625 -1.707031 6.546875 -0.90625 C 5.953125 -0.113281 5.035156 0.28125 3.796875 0.28125 C 2.765625 0.28125 1.941406 -0.0664062 1.328125 -0.765625 C 0.722656 -1.472656 0.421875 -2.421875 0.421875 -3.609375 C 0.421875 -4.867188 0.738281 -5.875 1.375 -6.625 C 2.019531 -7.375 2.882812 -7.75 3.96875 -7.75 Z M 3.921875 -7.71875 Z "/> < symbol overflow="visible" id="glyph3-3"> < path style="stroke:none;" d="M 2.015625 -3.328125 C 2.046875 -2.742188 2.179688 -2.269531 2.421875 -1.90625 C 2.890625 -1.21875 3.707031 -0.875 4.875 -0.875 C 5.40625 -0.875 5.882812 -0.953125 6.3125 -1.109375 C 7.144531 -1.398438 7.5625 -1.921875 7.5625 -2.671875 C 7.5625 -3.234375 7.390625 -3.632812 7.046875 -3.875 C 6.679688 -4.101562 6.117188 -4.304688 5.359375 -4.484375 L 3.96875 -4.796875 C 3.050781 -5.003906 2.40625 -5.234375 2.03125 -5.484375 C 1.375 -5.910156 1.046875 -6.554688 1.046875 -7.421875 C 1.046875 -8.347656 1.363281 -9.109375 2 -9.703125 C 2.644531 -10.296875 3.554688 -10.59375 4.734375 -10.59375 C 5.816406 -10.59375 6.734375 -10.332031 7.484375 -9.8125 C 8.242188 -9.289062 8.625 -8.453125 8.625 -7.296875 L 7.3125 -7.296875 C 7.238281 -7.847656 7.085938 -8.273438 6.859375 -8.578125 C 6.429688 -9.117188 5.707031 -9.390625 4.6875 -9.390625 C 3.863281 -9.390625 3.269531 -9.210938 2.90625 -8.859375 C 2.550781 -8.515625 2.375 -8.113281 2.375 -7.65625 C 2.375 -7.144531 2.582031 -6.773438 3 -6.546875 C 3.28125 -6.390625 3.90625 -6.203125 4.875 -5.984375 L 6.328125 -5.65625 C 7.023438 -5.488281 7.566406 -5.269531 7.953125 -5 C 8.609375 -4.507812 8.9375 -3.804688 8.9375 -2.890625 C 8.9375 -1.742188 8.519531 -0.925781 7.6875 -0.4375 C 6.851562 0.0507812 5.882812 0.296875 4.78125 0.296875 C 3.5 0.296875 2.492188 -0.03125 1.765625 -0.6875 C 1.035156 -1.332031 0.679688 -2.210938 0.703125 -3.328125 Z M 4.84375 -10.609375 Z "/> < symbol overflow="visible" id="glyph3-4"> < path style="stroke:none;" d="M 10.546875 -0.03125 L 9.84375 0.828125 L 8.25 -0.390625 C 7.863281 -0.179688 7.445312 -0.015625 7 0.109375 C 6.550781 0.234375 6.0625 0.296875 5.53125 0.296875 C 3.925781 0.296875 2.671875 -0.222656 1.765625 -1.265625 C 0.960938 -2.296875 0.5625 -3.578125 0.5625 -5.109375 C 0.5625 -6.503906 0.910156 -7.703125 1.609375 -8.703125 C 2.492188 -9.972656 3.8125 -10.609375 5.5625 -10.609375 C 7.382812 -10.609375 8.734375 -10.023438 9.609375 -8.859375 C 10.296875 -7.941406 10.640625 -6.769531 10.640625 -5.34375 C 10.640625 -4.675781 10.554688 -4.035156 10.390625 -3.421875 C 10.140625 -2.484375 9.71875 -1.71875 9.125 -1.125 Z M 5.703125 -0.953125 C 5.992188 -0.953125 6.265625 -0.96875 6.515625 -1 C 6.773438 -1.039062 7 -1.125 7.1875 -1.25 L 6.046875 -2.125 L 6.75 -3 L 8.109375 -1.953125 C 8.535156 -2.441406 8.820312 -2.988281 8.96875 -3.59375 C 9.125 -4.195312 9.203125 -4.773438 9.203125 -5.328125 C 9.203125 -6.535156 8.882812 -7.507812 8.25 -8.25 C 7.613281 -9 6.742188 -9.375 5.640625 -9.375 C 4.523438 -9.375 3.640625 -9.015625 2.984375 -8.296875 C 2.335938 -7.585938 2.015625 -6.492188 2.015625 -5.015625 C 2.015625 -3.773438 2.328125 -2.785156 2.953125 -2.046875 C 3.578125 -1.316406 4.492188 -0.953125 5.703125 -0.953125 Z "/> < symbol overflow="visible" id="glyph3-5"> < path style="stroke:none;" d="M 1.09375 -10.328125 L 2.5 -10.328125 L 2.5 -1.234375 L 7.734375 -1.234375 L 7.734375 0 L 1.09375 0 Z "/> < symbol overflow="visible" id="glyph3-6"> < path style="stroke:none;" d=""/> < symbol overflow="visible" id="glyph3-7"> < path style="stroke:none;" d="M 0.921875 -7.5 L 2.21875 -7.5 L 2.21875 0 L 0.921875 0 Z M 0.921875 -10.328125 L 2.21875 -10.328125 L 2.21875 -8.890625 L 0.921875 -8.890625 Z "/> < symbol overflow="visible" id="glyph3-8"> < path style="stroke:none;" d="M 0.921875 -7.53125 L 2.125 -7.53125 L 2.125 -6.46875 C 2.488281 -6.90625 2.867188 -7.21875 3.265625 -7.40625 C 3.660156 -7.601562 4.101562 -7.703125 4.59375 -7.703125 C 5.664062 -7.703125 6.390625 -7.328125 6.765625 -6.578125 C 6.960938 -6.171875 7.0625 -5.585938 7.0625 -4.828125 L 7.0625 0 L 5.78125 0 L 5.78125 -4.75 C 5.78125 -5.207031 5.710938 -5.578125 5.578125 -5.859375 C 5.347656 -6.328125 4.941406 -6.5625 4.359375 -6.5625 C 4.054688 -6.5625 3.804688 -6.53125 3.609375 -6.46875 C 3.265625 -6.363281 2.960938 -6.160156 2.703125 -5.859375 C 2.492188 -5.609375 2.351562 -5.347656 2.28125 -5.078125 C 2.21875 -4.816406 2.1875 -4.441406 2.1875 -3.953125 L 2.1875 0 L 0.921875 0 Z M 3.90625 -7.71875 Z "/> < symbol overflow="visible" id="glyph3-9"> < path style="stroke:none;" d="M 0.90625 -10.328125 L 2.125 -10.328125 L 2.125 -4.328125 L 5.359375 -7.53125 L 6.984375 -7.53125 L 4.09375 -4.71875 L 7.140625 0 L 5.53125 0 L 3.171875 -3.796875 L 2.125 -2.828125 L 2.125 0 L 0.90625 0 Z "/> < symbol overflow="visible" id="glyph3-10"> < path style="stroke:none;" d="M 4.0625 -7.703125 C 4.601562 -7.703125 5.125 -7.578125 5.625 -7.328125 C 6.125 -7.078125 6.503906 -6.753906 6.765625 -6.359375 C 7.015625 -5.972656 7.1875 -5.523438 7.28125 -5.015625 C 7.351562 -4.671875 7.390625 -4.117188 7.390625 -3.359375 L 1.859375 -3.359375 C 1.890625 -2.597656 2.070312 -1.984375 2.40625 -1.515625 C 2.738281 -1.054688 3.257812 -0.828125 3.96875 -0.828125 C 4.632812 -0.828125 5.164062 -1.046875 5.5625 -1.484375 C 5.78125 -1.734375 5.9375 -2.023438 6.03125 -2.359375 L 7.28125 -2.359375 C 7.25 -2.085938 7.140625 -1.78125 6.953125 -1.4375 C 6.765625 -1.09375 6.554688 -0.816406 6.328125 -0.609375 C 5.941406 -0.234375 5.46875 0.0195312 4.90625 0.15625 C 4.601562 0.226562 4.257812 0.265625 3.875 0.265625 C 2.9375 0.265625 2.140625 -0.0703125 1.484375 -0.75 C 0.828125 -1.4375 0.5 -2.394531 0.5 -3.625 C 0.5 -4.832031 0.828125 -5.8125 1.484375 -6.5625 C 2.140625 -7.320312 3 -7.703125 4.0625 -7.703125 Z M 6.078125 -4.375 C 6.023438 -4.914062 5.90625 -5.351562 5.71875 -5.6875 C 5.375 -6.289062 4.796875 -6.59375 3.984375 -6.59375 C 3.398438 -6.59375 2.910156 -6.382812 2.515625 -5.96875 C 2.128906 -5.550781 1.925781 -5.019531 1.90625 -4.375 Z M 3.953125 -7.71875 Z "/> < symbol overflow="visible" id="glyph3-11"> < path style="stroke:none;" d="M 1.734375 -3.671875 C 1.734375 -2.867188 1.898438 -2.195312 2.234375 -1.65625 C 2.578125 -1.113281 3.128906 -0.84375 3.890625 -0.84375 C 4.472656 -0.84375 4.953125 -1.09375 5.328125 -1.59375 C 5.710938 -2.09375 5.90625 -2.816406 5.90625 -3.765625 C 5.90625 -4.710938 5.707031 -5.414062 5.3125 -5.875 C 4.925781 -6.332031 4.445312 -6.5625 3.875 -6.5625 C 3.238281 -6.5625 2.722656 -6.316406 2.328125 -5.828125 C 1.929688 -5.335938 1.734375 -4.617188 1.734375 -3.671875 Z M 3.640625 -7.671875 C 4.210938 -7.671875 4.691406 -7.546875 5.078125 -7.296875 C 5.304688 -7.160156 5.566406 -6.914062 5.859375 -6.5625 L 5.859375 -10.375 L 7.0625 -10.375 L 7.0625 0 L 5.9375 0 L 5.9375 -1.046875 C 5.632812 -0.585938 5.28125 -0.253906 4.875 -0.046875 C 4.476562 0.160156 4.019531 0.265625 3.5 0.265625 C 2.65625 0.265625 1.925781 -0.0820312 1.3125 -0.78125 C 0.695312 -1.488281 0.390625 -2.429688 0.390625 -3.609375 C 0.390625 -4.703125 0.671875 -5.648438 1.234375 -6.453125 C 1.796875 -7.265625 2.597656 -7.671875 3.640625 -7.671875 Z "/> < symbol overflow="visible" id="glyph3-12"> < path style="stroke:none;" d="M 1.40625 -10.328125 L 2.828125 -10.328125 L 2.828125 0 L 1.40625 0 Z "/> < symbol overflow="visible" id="glyph3-13"> < path style="stroke:none;" d="M 0.96875 -10.328125 L 2.234375 -10.328125 L 2.234375 0 L 0.96875 0 Z "/> < symbol overflow="visible" id="glyph3-14"> < path style="stroke:none;" d="M 1.6875 -2.359375 C 1.71875 -1.941406 1.820312 -1.617188 2 -1.390625 C 2.3125 -0.984375 2.863281 -0.78125 3.65625 -0.78125 C 4.125 -0.78125 4.535156 -0.878906 4.890625 -1.078125 C 5.253906 -1.285156 5.4375 -1.601562 5.4375 -2.03125 C 5.4375 -2.351562 5.289062 -2.597656 5 -2.765625 C 4.820312 -2.867188 4.460938 -2.988281 3.921875 -3.125 L 2.90625 -3.390625 C 2.269531 -3.546875 1.796875 -3.722656 1.484375 -3.921875 C 0.941406 -4.265625 0.671875 -4.738281 0.671875 -5.34375 C 0.671875 -6.050781 0.925781 -6.625 1.4375 -7.0625 C 1.957031 -7.507812 2.648438 -7.734375 3.515625 -7.734375 C 4.648438 -7.734375 5.46875 -7.398438 5.96875 -6.734375 C 6.28125 -6.304688 6.429688 -5.847656 6.421875 -5.359375 L 5.234375 -5.359375 C 5.210938 -5.648438 5.113281 -5.910156 4.9375 -6.140625 C 4.644531 -6.472656 4.140625 -6.640625 3.421875 -6.640625 C 2.941406 -6.640625 2.578125 -6.546875 2.328125 -6.359375 C 2.085938 -6.179688 1.96875 -5.945312 1.96875 -5.65625 C 1.96875 -5.320312 2.128906 -5.054688 2.453125 -4.859375 C 2.640625 -4.742188 2.914062 -4.640625 3.28125 -4.546875 L 4.109375 -4.34375 C 5.023438 -4.125 5.632812 -3.910156 5.9375 -3.703125 C 6.4375 -3.378906 6.6875 -2.875 6.6875 -2.1875 C 6.6875 -1.507812 6.429688 -0.925781 5.921875 -0.4375 C 5.410156 0.0390625 4.632812 0.28125 3.59375 0.28125 C 2.46875 0.28125 1.671875 0.03125 1.203125 -0.46875 C 0.742188 -0.976562 0.5 -1.609375 0.46875 -2.359375 Z M 3.546875 -7.71875 Z "/> < symbol overflow="visible" id="glyph3-15"> < path style="stroke:none;" d="M 0.21875 -7.53125 L 1.84375 -7.53125 L 3.578125 -4.875 L 5.328125 -7.53125 L 6.875 -7.5 L 4.328125 -3.859375 L 6.984375 0 L 5.359375 0 L 3.5 -2.828125 L 1.6875 0 L 0.078125 0 L 2.734375 -3.859375 Z "/> < symbol overflow="visible" id="glyph3-16"> < path style="stroke:none;" d="M 4.109375 -0.84375 C 4.703125 -0.84375 5.191406 -1.085938 5.578125 -1.578125 C 5.972656 -2.078125 6.171875 -2.820312 6.171875 -3.8125 C 6.171875 -4.414062 6.082031 -4.929688 5.90625 -5.359375 C 5.582031 -6.191406 4.984375 -6.609375 4.109375 -6.609375 C 3.234375 -6.609375 2.632812 -6.171875 2.3125 -5.296875 C 2.132812 -4.828125 2.046875 -4.226562 2.046875 -3.5 C 2.046875 -2.914062 2.132812 -2.421875 2.3125 -2.015625 C 2.632812 -1.234375 3.234375 -0.84375 4.109375 -0.84375 Z M 0.828125 -7.5 L 2.0625 -7.5 L 2.0625 -6.5 C 2.3125 -6.84375 2.585938 -7.109375 2.890625 -7.296875 C 3.316406 -7.578125 3.816406 -7.71875 4.390625 -7.71875 C 5.242188 -7.71875 5.96875 -7.390625 6.5625 -6.734375 C 7.164062 -6.078125 7.46875 -5.144531 7.46875 -3.9375 C 7.46875 -2.289062 7.035156 -1.117188 6.171875 -0.421875 C 5.628906 0.0234375 5 0.25 4.28125 0.25 C 3.707031 0.25 3.226562 0.125 2.84375 -0.125 C 2.625 -0.257812 2.375 -0.5 2.09375 -0.84375 L 2.09375 3 L 0.828125 3 Z "/> < symbol overflow="visible" id="glyph3-17"> < path style="stroke:none;" d="M 1.1875 -9.640625 L 2.46875 -9.640625 L 2.46875 -7.53125 L 3.671875 -7.53125 L 3.671875 -6.5 L 2.46875 -6.5 L 2.46875 -1.578125 C 2.46875 -1.316406 2.554688 -1.144531 2.734375 -1.0625 C 2.828125 -1.007812 2.988281 -0.984375 3.21875 -0.984375 C 3.28125 -0.984375 3.347656 -0.984375 3.421875 -0.984375 C 3.492188 -0.984375 3.578125 -0.988281 3.671875 -1 L 3.671875 0 C 3.523438 0.0390625 3.367188 0.0703125 3.203125 0.09375 C 3.046875 0.113281 2.878906 0.125 2.703125 0.125 C 2.109375 0.125 1.707031 -0.0234375 1.5 -0.328125 C 1.289062 -0.628906 1.1875 -1.023438 1.1875 -1.515625 L 1.1875 -6.5 L 0.15625 -6.5 L 0.15625 -7.53125 L 1.1875 -7.53125 Z "/> < symbol overflow="visible" id="glyph3-18"> < path style="stroke:none;" d="M 0.921875 -7.53125 L 2.1875 -7.53125 L 2.1875 -6.46875 C 2.476562 -6.832031 2.75 -7.101562 3 -7.28125 C 3.414062 -7.5625 3.890625 -7.703125 4.421875 -7.703125 C 5.015625 -7.703125 5.492188 -7.554688 5.859375 -7.265625 C 6.066406 -7.085938 6.253906 -6.835938 6.421875 -6.515625 C 6.703125 -6.921875 7.03125 -7.21875 7.40625 -7.40625 C 7.789062 -7.601562 8.222656 -7.703125 8.703125 -7.703125 C 9.710938 -7.703125 10.398438 -7.335938 10.765625 -6.609375 C 10.960938 -6.210938 11.0625 -5.679688 11.0625 -5.015625 L 11.0625 0 L 9.75 0 L 9.75 -5.234375 C 9.75 -5.734375 9.625 -6.078125 9.375 -6.265625 C 9.125 -6.453125 8.816406 -6.546875 8.453125 -6.546875 C 7.953125 -6.546875 7.523438 -6.378906 7.171875 -6.046875 C 6.816406 -5.710938 6.640625 -5.15625 6.640625 -4.375 L 6.640625 0 L 5.34375 0 L 5.34375 -4.921875 C 5.34375 -5.429688 5.28125 -5.800781 5.15625 -6.03125 C 4.96875 -6.382812 4.613281 -6.5625 4.09375 -6.5625 C 3.613281 -6.5625 3.175781 -6.375 2.78125 -6 C 2.382812 -5.632812 2.1875 -4.96875 2.1875 -4 L 2.1875 0 L 0.921875 0 Z "/> < symbol overflow="visible" id="glyph3-19"> < path style="stroke:none;" d="M 0.828125 -10.375 L 2.0625 -10.375 L 2.0625 -6.625 C 2.332031 -6.976562 2.660156 -7.25 3.046875 -7.4375 C 3.429688 -7.632812 3.851562 -7.734375 4.3125 -7.734375 C 5.25 -7.734375 6.007812 -7.410156 6.59375 -6.765625 C 7.175781 -6.117188 7.46875 -5.164062 7.46875 -3.90625 C 7.46875 -2.71875 7.175781 -1.726562 6.59375 -0.9375 C 6.019531 -0.15625 5.222656 0.234375 4.203125 0.234375 C 3.628906 0.234375 3.144531 0.0976562 2.75 -0.171875 C 2.519531 -0.335938 2.269531 -0.601562 2 -0.96875 L 2 0 L 0.828125 0 Z M 4.125 -0.875 C 4.8125 -0.875 5.320312 -1.144531 5.65625 -1.6875 C 6 -2.238281 6.171875 -2.957031 6.171875 -3.84375 C 6.171875 -4.632812 6 -5.289062 5.65625 -5.8125 C 5.320312 -6.332031 4.820312 -6.59375 4.15625 -6.59375 C 3.582031 -6.59375 3.078125 -6.378906 2.640625 -5.953125 C 2.203125 -5.523438 1.984375 -4.820312 1.984375 -3.84375 C 1.984375 -3.132812 2.078125 -2.5625 2.265625 -2.125 C 2.585938 -1.289062 3.207031 -0.875 4.125 -0.875 Z "/> < symbol overflow="visible" id="glyph3-20"> < path style="stroke:none;" d="M 0.96875 -7.53125 L 2.171875 -7.53125 L 2.171875 -6.234375 C 2.265625 -6.484375 2.503906 -6.789062 2.890625 -7.15625 C 3.273438 -7.519531 3.71875 -7.703125 4.21875 -7.703125 C 4.238281 -7.703125 4.273438 -7.695312 4.328125 -7.6875 C 4.390625 -7.6875 4.488281 -7.679688 4.625 -7.671875 L 4.625 -6.328125 C 4.550781 -6.347656 4.484375 -6.359375 4.421875 -6.359375 C 4.359375 -6.359375 4.289062 -6.359375 4.21875 -6.359375 C 3.570312 -6.359375 3.078125 -6.15625 2.734375 -5.75 C 2.398438 -5.34375 2.234375 -4.867188 2.234375 -4.328125 L 2.234375 0 L 0.96875 0 Z "/> < symbol overflow="visible" id="glyph3-21"> < path style="stroke:none;" d="M 0.453125 0 C 0.492188 -0.863281 0.671875 -1.617188 0.984375 -2.265625 C 1.296875 -2.910156 1.90625 -3.492188 2.8125 -4.015625 L 4.171875 -4.796875 C 4.773438 -5.148438 5.195312 -5.453125 5.4375 -5.703125 C 5.820312 -6.085938 6.015625 -6.53125 6.015625 -7.03125 C 6.015625 -7.613281 5.835938 -8.078125 5.484375 -8.421875 C 5.128906 -8.773438 4.660156 -8.953125 4.078125 -8.953125 C 3.210938 -8.953125 2.613281 -8.625 2.28125 -7.96875 C 2.101562 -7.613281 2.003906 -7.125 1.984375 -6.5 L 0.703125 -6.5 C 0.710938 -7.375 0.875 -8.085938 1.1875 -8.640625 C 1.726562 -9.617188 2.695312 -10.109375 4.09375 -10.109375 C 5.238281 -10.109375 6.078125 -9.796875 6.609375 -9.171875 C 7.148438 -8.546875 7.421875 -7.851562 7.421875 -7.09375 C 7.421875 -6.28125 7.132812 -5.585938 6.5625 -5.015625 C 6.238281 -4.679688 5.648438 -4.28125 4.796875 -3.8125 L 3.828125 -3.28125 C 3.367188 -3.019531 3.007812 -2.773438 2.75 -2.546875 C 2.28125 -2.140625 1.984375 -1.691406 1.859375 -1.203125 L 7.359375 -1.203125 L 7.359375 0 Z "/> < symbol overflow="visible" id="glyph3-22"> < path style="stroke:none;" d="M 3.890625 -10.078125 C 5.203125 -10.078125 6.144531 -9.539062 6.71875 -8.46875 C 7.175781 -7.632812 7.40625 -6.492188 7.40625 -5.046875 C 7.40625 -3.679688 7.195312 -2.550781 6.78125 -1.65625 C 6.195312 -0.363281 5.234375 0.28125 3.890625 0.28125 C 2.679688 0.28125 1.78125 -0.242188 1.1875 -1.296875 C 0.695312 -2.171875 0.453125 -3.347656 0.453125 -4.828125 C 0.453125 -5.972656 0.597656 -6.957031 0.890625 -7.78125 C 1.441406 -9.3125 2.441406 -10.078125 3.890625 -10.078125 Z M 3.890625 -0.875 C 4.546875 -0.875 5.066406 -1.164062 5.453125 -1.75 C 5.835938 -2.332031 6.03125 -3.414062 6.03125 -5 C 6.03125 -6.144531 5.890625 -7.085938 5.609375 -7.828125 C 5.328125 -8.566406 4.78125 -8.9375 3.96875 -8.9375 C 3.226562 -8.9375 2.6875 -8.582031 2.34375 -7.875 C 2 -7.175781 1.828125 -6.144531 1.828125 -4.78125 C 1.828125 -3.757812 1.9375 -2.9375 2.15625 -2.3125 C 2.488281 -1.351562 3.066406 -0.875 3.890625 -0.875 Z "/> < symbol overflow="visible" id="glyph3-23"> < path style="stroke:none;" d="M 1.375 -7.125 L 1.375 -8.109375 C 2.289062 -8.191406 2.925781 -8.335938 3.28125 -8.546875 C 3.644531 -8.753906 3.914062 -9.25 4.09375 -10.03125 L 5.09375 -10.03125 L 5.09375 0 L 3.75 0 L 3.75 -7.125 Z "/> < symbol overflow="visible" id="glyph3-24"> < path style="stroke:none;" d="M 3.75 0.28125 C 2.550781 0.28125 1.679688 -0.046875 1.140625 -0.703125 C 0.609375 -1.359375 0.34375 -2.15625 0.34375 -3.09375 L 1.671875 -3.09375 C 1.722656 -2.445312 1.84375 -1.972656 2.03125 -1.671875 C 2.363281 -1.140625 2.957031 -0.875 3.8125 -0.875 C 4.476562 -0.875 5.007812 -1.050781 5.40625 -1.40625 C 5.8125 -1.769531 6.015625 -2.234375 6.015625 -2.796875 C 6.015625 -3.484375 5.800781 -3.960938 5.375 -4.234375 C 4.957031 -4.515625 4.367188 -4.65625 3.609375 -4.65625 C 3.523438 -4.65625 3.441406 -4.65625 3.359375 -4.65625 C 3.273438 -4.65625 3.1875 -4.65625 3.09375 -4.65625 L 3.09375 -5.765625 C 3.226562 -5.753906 3.335938 -5.742188 3.421875 -5.734375 C 3.515625 -5.734375 3.613281 -5.734375 3.71875 -5.734375 C 4.1875 -5.734375 4.570312 -5.804688 4.875 -5.953125 C 5.414062 -6.222656 5.6875 -6.691406 5.6875 -7.359375 C 5.6875 -7.867188 5.503906 -8.257812 5.140625 -8.53125 C 4.785156 -8.800781 4.375 -8.9375 3.90625 -8.9375 C 3.0625 -8.9375 2.476562 -8.65625 2.15625 -8.09375 C 1.976562 -7.78125 1.875 -7.335938 1.84375 -6.765625 L 0.59375 -6.765625 C 0.59375 -7.515625 0.742188 -8.15625 1.046875 -8.6875 C 1.566406 -9.625 2.472656 -10.09375 3.765625 -10.09375 C 4.796875 -10.09375 5.59375 -9.863281 6.15625 -9.40625 C 6.71875 -8.945312 7 -8.285156 7 -7.421875 C 7 -6.796875 6.832031 -6.289062 6.5 -5.90625 C 6.289062 -5.664062 6.023438 -5.476562 5.703125 -5.34375 C 6.234375 -5.195312 6.644531 -4.914062 6.9375 -4.5 C 7.238281 -4.09375 7.390625 -3.585938 7.390625 -2.984375 C 7.390625 -2.023438 7.070312 -1.238281 6.4375 -0.625 C 5.800781 -0.0195312 4.90625 0.28125 3.75 0.28125 Z "/> < clipPath id="clip1"> < path d="M 65.328125 47.480469 L 195 47.480469 L 195 92 L 65.328125 92 Z "/> < clipPath id="clip2"> < path d="M 89 47.480469 L 92 47.480469 L 92 92.996094 L 89 92.996094 Z "/> < clipPath id="clip3"> < path d="M 129 47.480469 L 131 47.480469 L 131 92.996094 L 129 92.996094 Z "/> < clipPath id="clip4"> < path d="M 168 47.480469 L 170 47.480469 L 170 92.996094 L 168 92.996094 Z "/> < clipPath id="clip5"> < path d="M 65.328125 86 L 195 86 L 195 88 L 65.328125 88 Z "/> < clipPath id="clip6"> < path d="M 65.328125 78 L 195 78 L 195 79 L 65.328125 79 Z "/> < clipPath id="clip7"> < path d="M 65.328125 69 L 195 69 L 195 70 L 65.328125 70 Z "/> < clipPath id="clip8"> < path d="M 65.328125 60 L 195 60 L 195 62 L 65.328125 62 Z "/> < clipPath id="clip9"> < path d="M 65.328125 52 L 195 52 L 195 53 L 65.328125 53 Z "/> < clipPath id="clip10"> < path d="M 70 47.480469 L 72 47.480469 L 72 92.996094 L 70 92.996094 Z "/> < clipPath id="clip11"> < path d="M 109 47.480469 L 111 47.480469 L 111 92.996094 L 109 92.996094 Z "/> < clipPath id="clip12"> < path d="M 148 47.480469 L 150 47.480469 L 150 92.996094 L 148 92.996094 Z "/> < clipPath id="clip13"> < path d="M 188 47.480469 L 189 47.480469 L 189 92.996094 L 188 92.996094 Z "/> < clipPath id="clip14"> < path d="M 65.328125 47.480469 L 195 47.480469 L 195 92.996094 L 65.328125 92.996094 Z "/> < clipPath id="clip15"> < path d="M 65.328125 95.59375 L 195 95.59375 L 195 141 L 65.328125 141 Z "/> < clipPath id="clip16"> < path d="M 89 95.59375 L 92 95.59375 L 92 141 L 89 141 Z "/> < clipPath id="clip17"> < path d="M 129 95.59375 L 131 95.59375 L 131 141 L 129 141 Z "/> < clipPath id="clip18"> < path d="M 168 95.59375 L 170 95.59375 L 170 141 L 168 141 Z "/> < clipPath id="clip19"> < path d="M 65.328125 134 L 195 134 L 195 136 L 65.328125 136 Z "/> < clipPath id="clip20"> < path d="M 65.328125 126 L 195 126 L 195 127 L 65.328125 127 Z "/> < clipPath id="clip21"> < path d="M 65.328125 117 L 195 117 L 195 119 L 65.328125 119 Z "/> < clipPath id="clip22"> < path d="M 65.328125 109 L 195 109 L 195 110 L 65.328125 110 Z "/> < clipPath id="clip23"> < path d="M 65.328125 100 L 195 100 L 195 101 L 65.328125 101 Z "/> < clipPath id="clip24"> < path d="M 70 95.59375 L 72 95.59375 L 72 141 L 70 141 Z "/> < clipPath id="clip25"> < path d="M 109 95.59375 L 111 95.59375 L 111 141 L 109 141 Z "/> < clipPath id="clip26"> < path d="M 148 95.59375 L 150 95.59375 L 150 141 L 148 141 Z "/> < clipPath id="clip27"> < path d="M 188 95.59375 L 189 95.59375 L 189 141 L 188 141 Z "/> < clipPath id="clip28"> < path d="M 65.328125 95.59375 L 195 95.59375 L 195 141 L 65.328125 141 Z "/> < clipPath id="clip29"> < path d="M 65.328125 143.710938 L 195 143.710938 L 195 189 L 65.328125 189 Z "/> < clipPath id="clip30"> < path d="M 89 143.710938 L 92 143.710938 L 92 189 L 89 189 Z "/> < clipPath id="clip31"> < path d="M 129 143.710938 L 131 143.710938 L 131 189 L 129 189 Z "/> < clipPath id="clip32"> < path d="M 168 143.710938 L 170 143.710938 L 170 189 L 168 189 Z "/> < clipPath id="clip33"> < path d="M 65.328125 182 L 195 182 L 195 184 L 65.328125 184 Z "/> < clipPath id="clip34"> < path d="M 65.328125 174 L 195 174 L 195 175 L 65.328125 175 Z "/> < clipPath id="clip35"> < path d="M 65.328125 165 L 195 165 L 195 167 L 65.328125 167 Z "/> < clipPath id="clip36"> < path d="M 65.328125 157 L 195 157 L 195 158 L 65.328125 158 Z "/> < clipPath id="clip37"> < path d="M 65.328125 148 L 195 148 L 195 150 L 65.328125 150 Z "/> < clipPath id="clip38"> < path d="M 70 143.710938 L 72 143.710938 L 72 189 L 70 189 Z "/> < clipPath id="clip39"> < path d="M 109 143.710938 L 111 143.710938 L 111 189 L 109 189 Z "/> < clipPath id="clip40"> < path d="M 148 143.710938 L 150 143.710938 L 150 189 L 148 189 Z "/> < clipPath id="clip41"> < path d="M 188 143.710938 L 189 143.710938 L 189 189 L 188 189 Z "/> < clipPath id="clip42"> < path d="M 65.328125 143.710938 L 195 143.710938 L 195 189 L 65.328125 189 Z "/> < clipPath id="clip43"> < path d="M 65.328125 191.824219 L 195 191.824219 L 195 237 L 65.328125 237 Z "/> < clipPath id="clip44"> < path d="M 89 191.824219 L 92 191.824219 L 92 237 L 89 237 Z "/> < clipPath id="clip45"> < path d="M 129 191.824219 L 131 191.824219 L 131 237 L 129 237 Z "/> < clipPath id="clip46"> < path d="M 168 191.824219 L 170 191.824219 L 170 237 L 168 237 Z "/> < clipPath id="clip47"> < path d="M 65.328125 230 L 195 230 L 195 232 L 65.328125 232 Z "/> < clipPath id="clip48"> < path d="M 65.328125 222 L 195 222 L 195 223 L 65.328125 223 Z "/> < clipPath id="clip49"> < path d="M 65.328125 213 L 195 213 L 195 215 L 65.328125 215 Z "/> < clipPath id="clip50"> < path d="M 65.328125 205 L 195 205 L 195 206 L 65.328125 206 Z "/> < clipPath id="clip51"> < path d="M 65.328125 196 L 195 196 L 195 198 L 65.328125 198 Z "/> < clipPath id="clip52"> < path d="M 70 191.824219 L 72 191.824219 L 72 237 L 70 237 Z "/> < clipPath id="clip53"> < path d="M 109 191.824219 L 111 191.824219 L 111 237 L 109 237 Z "/> < clipPath id="clip54"> < path d="M 148 191.824219 L 150 191.824219 L 150 237 L 148 237 Z "/> < clipPath id="clip55"> < path d="M 188 191.824219 L 189 191.824219 L 189 237 L 188 237 Z "/> < clipPath id="clip56"> < path d="M 65.328125 191.824219 L 195 191.824219 L 195 237 L 65.328125 237 Z "/> < clipPath id="clip57"> < path d="M 65.328125 239.941406 L 195 239.941406 L 195 285 L 65.328125 285 Z "/> < clipPath id="clip58"> < path d="M 89 239.941406 L 92 239.941406 L 92 285 L 89 285 Z "/> < clipPath id="clip59"> < path d="M 129 239.941406 L 131 239.941406 L 131 285 L 129 285 Z "/> < clipPath id="clip60"> < path d="M 168 239.941406 L 170 239.941406 L 170 285 L 168 285 Z "/> < clipPath id="clip61"> < path d="M 65.328125 279 L 195 279 L 195 280 L 65.328125 280 Z "/> < clipPath id="clip62"> < path d="M 65.328125 270 L 195 270 L 195 271 L 65.328125 271 Z "/> < clipPath id="clip63"> < path d="M 65.328125 261 L 195 261 L 195 263 L 65.328125 263 Z "/> < clipPath id="clip64"> < path d="M 65.328125 253 L 195 253 L 195 254 L 65.328125 254 Z "/> < clipPath id="clip65"> < path d="M 65.328125 244 L 195 244 L 195 246 L 65.328125 246 Z "/> < clipPath id="clip66"> < path d="M 70 239.941406 L 72 239.941406 L 72 285 L 70 285 Z "/> < clipPath id="clip67"> < path d="M 109 239.941406 L 111 239.941406 L 111 285 L 109 285 Z "/> < clipPath id="clip68"> < path d="M 148 239.941406 L 150 239.941406 L 150 285 L 148 285 Z "/> < clipPath id="clip69"> < path d="M 188 239.941406 L 189 239.941406 L 189 285 L 188 285 Z "/> < clipPath id="clip70"> < path d="M 65.328125 239.941406 L 195 239.941406 L 195 285 L 65.328125 285 Z "/> < clipPath id="clip71"> < path d="M 65.328125 288.054688 L 195 288.054688 L 195 333 L 65.328125 333 Z "/> < clipPath id="clip72"> < path d="M 89 288.054688 L 92 288.054688 L 92 333.570312 L 89 333.570312 Z "/> < clipPath id="clip73"> < path d="M 129 288.054688 L 131 288.054688 L 131 333.570312 L 129 333.570312 Z "/> < clipPath id="clip74"> < path d="M 168 288.054688 L 170 288.054688 L 170 333.570312 L 168 333.570312 Z "/> < clipPath id="clip75"> < path d="M 65.328125 327 L 195 327 L 195 328 L 65.328125 328 Z "/> < clipPath id="clip76"> < path d="M 65.328125 318 L 195 318 L 195 320 L 65.328125 320 Z "/> < clipPath id="clip77"> < path d="M 65.328125 310 L 195 310 L 195 311 L 65.328125 311 Z "/> < clipPath id="clip78"> < path d="M 65.328125 301 L 195 301 L 195 302 L 65.328125 302 Z "/> < clipPath id="clip79"> < path d="M 65.328125 292 L 195 292 L 195 294 L 65.328125 294 Z "/> < clipPath id="clip80"> < path d="M 70 288.054688 L 72 288.054688 L 72 333 L 70 333 Z "/> < clipPath id="clip81"> < path d="M 109 288.054688 L 111 288.054688 L 111 333 L 109 333 Z "/> < clipPath id="clip82"> < path d="M 148 288.054688 L 150 288.054688 L 150 333 L 148 333 Z "/> < clipPath id="clip83"> < path d="M 188 288.054688 L 189 288.054688 L 189 333 L 188 333 Z "/> < clipPath id="clip84"> < path d="M 65.328125 288.054688 L 195 288.054688 L 195 333.570312 L 65.328125 333.570312 Z "/> < clipPath id="clip85"> < path d="M 65.328125 336.171875 L 195 336.171875 L 195 381 L 65.328125 381 Z "/> < clipPath id="clip86"> < path d="M 89 336.171875 L 92 336.171875 L 92 381.6875 L 89 381.6875 Z "/> < clipPath id="clip87"> < path d="M 129 336.171875 L 131 336.171875 L 131 381.6875 L 129 381.6875 Z "/> < clipPath id="clip88"> < path d="M 168 336.171875 L 170 336.171875 L 170 381.6875 L 168 381.6875 Z "/> < clipPath id="clip89"> < path d="M 65.328125 375 L 195 375 L 195 376 L 65.328125 376 Z "/> < clipPath id="clip90"> < path d="M 65.328125 366 L 195 366 L 195 368 L 65.328125 368 Z "/> < clipPath id="clip91"> < path d="M 65.328125 358 L 195 358 L 195 359 L 65.328125 359 Z "/> < clipPath id="clip92"> < path d="M 65.328125 349 L 195 349 L 195 351 L 65.328125 351 Z "/> < clipPath id="clip93"> < path d="M 65.328125 341 L 195 341 L 195 342 L 65.328125 342 Z "/> < clipPath id="clip94"> < path d="M 70 336.171875 L 72 336.171875 L 72 381 L 70 381 Z "/> < clipPath id="clip95"> < path d="M 109 336.171875 L 111 336.171875 L 111 381 L 109 381 Z "/> < clipPath id="clip96"> < path d="M 148 336.171875 L 150 336.171875 L 150 381 L 148 381 Z "/> < clipPath id="clip97"> < path d="M 188 336.171875 L 189 336.171875 L 189 381 L 188 381 Z "/> < clipPath id="clip98"> < path d="M 65.328125 336.171875 L 195 336.171875 L 195 381.6875 L 65.328125 381.6875 Z "/> < clipPath id="clip99"> < path d="M 65.328125 384.285156 L 195 384.285156 L 195 429 L 65.328125 429 Z "/> < clipPath id="clip100"> < path d="M 89 384.285156 L 92 384.285156 L 92 429.800781 L 89 429.800781 Z "/> < clipPath id="clip101"> < path d="M 129 384.285156 L 131 384.285156 L 131 429.800781 L 129 429.800781 Z "/> < clipPath id="clip102"> < path d="M 168 384.285156 L 170 384.285156 L 170 429.800781 L 168 429.800781 Z "/> < clipPath id="clip103"> < path d="M 65.328125 423 L 195 423 L 195 424 L 65.328125 424 Z "/> < clipPath id="clip104"> < path d="M 65.328125 414 L 195 414 L 195 416 L 65.328125 416 Z "/> < clipPath id="clip105"> < path d="M 65.328125 406 L 195 406 L 195 407 L 65.328125 407 Z "/> < clipPath id="clip106"> < path d="M 65.328125 397 L 195 397 L 195 399 L 65.328125 399 Z "/> < clipPath id="clip107"> < path d="M 65.328125 389 L 195 389 L 195 390 L 65.328125 390 Z "/> < clipPath id="clip108"> < path d="M 70 384.285156 L 72 384.285156 L 72 429.800781 L 70 429.800781 Z "/> < clipPath id="clip109"> < path d="M 109 384.285156 L 111 384.285156 L 111 429.800781 L 109 429.800781 Z "/> < clipPath id="clip110"> < path d="M 148 384.285156 L 150 384.285156 L 150 429.800781 L 148 429.800781 Z "/> < clipPath id="clip111"> < path d="M 188 384.285156 L 189 384.285156 L 189 429.800781 L 188 429.800781 Z "/> < clipPath id="clip112"> < path d="M 65.328125 384.285156 L 195 384.285156 L 195 429.800781 L 65.328125 429.800781 Z "/> < clipPath id="clip113"> < path d="M 65.328125 432.402344 L 195 432.402344 L 195 477 L 65.328125 477 Z "/> < clipPath id="clip114"> < path d="M 89 432.402344 L 92 432.402344 L 92 477.917969 L 89 477.917969 Z "/> < clipPath id="clip115"> < path d="M 129 432.402344 L 131 432.402344 L 131 477.917969 L 129 477.917969 Z "/> < clipPath id="clip116"> < path d="M 168 432.402344 L 170 432.402344 L 170 477.917969 L 168 477.917969 Z "/> < clipPath id="clip117"> < path d="M 65.328125 471 L 195 471 L 195 472 L 65.328125 472 Z "/> < clipPath id="clip118"> < path d="M 65.328125 463 L 195 463 L 195 464 L 65.328125 464 Z "/> < clipPath id="clip119"> < path d="M 65.328125 454 L 195 454 L 195 455 L 65.328125 455 Z "/> < clipPath id="clip120"> < path d="M 65.328125 445 L 195 445 L 195 447 L 65.328125 447 Z "/> < clipPath id="clip121"> < path d="M 65.328125 437 L 195 437 L 195 438 L 65.328125 438 Z "/> < clipPath id="clip122"> < path d="M 70 432.402344 L 72 432.402344 L 72 477.917969 L 70 477.917969 Z "/> < clipPath id="clip123"> < path d="M 109 432.402344 L 111 432.402344 L 111 477.917969 L 109 477.917969 Z "/> < clipPath id="clip124"> < path d="M 148 432.402344 L 150 432.402344 L 150 477.917969 L 148 477.917969 Z "/> < clipPath id="clip125"> < path d="M 188 432.402344 L 189 432.402344 L 189 477.917969 L 188 477.917969 Z "/> < clipPath id="clip126"> < path d="M 65.328125 432.402344 L 195 432.402344 L 195 477.917969 L 65.328125 477.917969 Z "/> < clipPath id="clip127"> < path d="M 65.328125 480.515625 L 195 480.515625 L 195 526 L 65.328125 526 Z "/> < clipPath id="clip128"> < path d="M 89 480.515625 L 92 480.515625 L 92 526 L 89 526 Z "/> < clipPath id="clip129"> < path d="M 129 480.515625 L 131 480.515625 L 131 526 L 129 526 Z "/> < clipPath id="clip130"> < path d="M 168 480.515625 L 170 480.515625 L 170 526 L 168 526 Z "/> < clipPath id="clip131"> < path d="M 65.328125 519 L 195 519 L 195 521 L 65.328125 521 Z "/> < clipPath id="clip132"> < path d="M 65.328125 511 L 195 511 L 195 512 L 65.328125 512 Z "/> < clipPath id="clip133"> < path d="M 65.328125 502 L 195 502 L 195 503 L 65.328125 503 Z "/> < clipPath id="clip134"> < path d="M 65.328125 494 L 195 494 L 195 495 L 65.328125 495 Z "/> < clipPath id="clip135"> < path d="M 65.328125 485 L 195 485 L 195 486 L 65.328125 486 Z "/> < clipPath id="clip136"> < path d="M 70 480.515625 L 72 480.515625 L 72 526 L 70 526 Z "/> < clipPath id="clip137"> < path d="M 109 480.515625 L 111 480.515625 L 111 526 L 109 526 Z "/> < clipPath id="clip138"> < path d="M 148 480.515625 L 150 480.515625 L 150 526 L 148 526 Z "/> < clipPath id="clip139"> < path d="M 188 480.515625 L 189 480.515625 L 189 526 L 188 526 Z "/> < clipPath id="clip140"> < path d="M 65.328125 480.515625 L 195 480.515625 L 195 526 L 65.328125 526 Z "/> < clipPath id="clip141"> < path d="M 194.128906 47.480469 L 211 47.480469 L 211 92 L 194.128906 92 Z "/> < clipPath id="clip142"> < path d="M 194.128906 47.480469 L 211.601562 47.480469 L 211.601562 92.996094 L 194.128906 92.996094 Z "/> < clipPath id="clip143"> < path d="M 194.128906 95.59375 L 211 95.59375 L 211 141 L 194.128906 141 Z "/> < clipPath id="clip144"> < path d="M 194.128906 95.59375 L 211.601562 95.59375 L 211.601562 141 L 194.128906 141 Z "/> < clipPath id="clip145"> < path d="M 198 95.59375 L 206 95.59375 L 206 141 L 198 141 Z "/> < clipPath id="clip146"> < path d="M 194.128906 143.710938 L 211 143.710938 L 211 189 L 194.128906 189 Z "/> < clipPath id="clip147"> < path d="M 194.128906 143.710938 L 211.601562 143.710938 L 211.601562 189 L 194.128906 189 Z "/> < clipPath id="clip148"> < path d="M 194.128906 191.824219 L 211 191.824219 L 211 237 L 194.128906 237 Z "/> < clipPath id="clip149"> < path d="M 194.128906 191.824219 L 211.601562 191.824219 L 211.601562 237 L 194.128906 237 Z "/> < clipPath id="clip150"> < path d="M 194.128906 239.941406 L 211 239.941406 L 211 285 L 194.128906 285 Z "/> < clipPath id="clip151"> < path d="M 194.128906 239.941406 L 211.601562 239.941406 L 211.601562 285 L 194.128906 285 Z "/> < clipPath id="clip152"> < path d="M 194.128906 288.054688 L 211 288.054688 L 211 333 L 194.128906 333 Z "/> < clipPath id="clip153"> < path d="M 194.128906 288.054688 L 211.601562 288.054688 L 211.601562 333.570312 L 194.128906 333.570312 Z "/> < clipPath id="clip154"> < path d="M 194.128906 336.171875 L 211 336.171875 L 211 381 L 194.128906 381 Z "/> < clipPath id="clip155"> < path d="M 194.128906 336.171875 L 211.601562 336.171875 L 211.601562 381.6875 L 194.128906 381.6875 Z "/> < clipPath id="clip156"> < path d="M 194.128906 384.285156 L 211 384.285156 L 211 429 L 194.128906 429 Z "/> < clipPath id="clip157"> < path d="M 194.128906 384.285156 L 211.601562 384.285156 L 211.601562 429.800781 L 194.128906 429.800781 Z "/> < clipPath id="clip158"> < path d="M 194.128906 432.402344 L 211 432.402344 L 211 477 L 194.128906 477 Z "/> < clipPath id="clip159"> < path d="M 194.128906 432.402344 L 211.601562 432.402344 L 211.601562 477.917969 L 194.128906 477.917969 Z "/> < clipPath id="clip160"> < path d="M 198 432.402344 L 206 432.402344 L 206 477.917969 L 198 477.917969 Z "/> < clipPath id="clip161"> < path d="M 194.128906 480.515625 L 211 480.515625 L 211 526 L 194.128906 526 Z "/> < clipPath id="clip162"> < path d="M 194.128906 480.515625 L 211.601562 480.515625 L 211.601562 526 L 194.128906 526 Z "/> < clipPath id="clip163"> < path d="M 196 480.515625 L 206 480.515625 L 206 526.03125 L 196 526.03125 Z "/> < g id="surface1"> < rect x="0" y="0" width="225" height="562" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/> < rect x="0" y="0" width="225" height="562" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;" d="M 0 562 L 225 562 L 225 0 L 0 0 Z "/> < g clip-path="url(#clip1)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 65.328125 91.996094 L 194.128906 91.996094 L 194.128906 47.480469 L 65.328125 47.480469 Z "/> < g clip-path="url(#clip2)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.527344 91.996094 L 90.527344 47.480469 "/> < g clip-path="url(#clip3)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 91.996094 L 129.625 47.480469 "/> < g clip-path="url(#clip4)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.722656 91.996094 L 168.722656 47.480469 "/> < g clip-path="url(#clip5)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 86.859375 L 194.128906 86.859375 "/> < g clip-path="url(#clip6)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 78.296875 L 194.128906 78.296875 "/> < g clip-path="url(#clip7)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 69.738281 L 194.128906 69.738281 "/> < g clip-path="url(#clip8)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 61.175781 L 194.128906 61.175781 "/> < g clip-path="url(#clip9)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 52.617188 L 194.128906 52.617188 "/> < g clip-path="url(#clip10)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 91.996094 L 70.976562 47.480469 "/> < g clip-path="url(#clip11)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 91.996094 L 110.078125 47.480469 "/> < g clip-path="url(#clip12)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 91.996094 L 149.175781 47.480469 "/> < g clip-path="url(#clip13)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 91.996094 L 188.273438 47.480469 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 113.0625 86.859375 C 113.0625 91.109375 106.683594 91.109375 106.683594 86.859375 C 106.683594 82.605469 113.0625 82.605469 113.0625 86.859375 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.921569%,64.705882%,0%);fill-opacity:1;" d="M 128.84375 78.296875 C 128.84375 82.550781 122.464844 82.550781 122.464844 78.296875 C 122.464844 74.046875 128.84375 74.046875 128.84375 78.296875 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,49.019608%);fill-opacity:1;" d="M 147.679688 69.738281 C 147.679688 73.988281 141.300781 73.988281 141.300781 69.738281 C 141.300781 65.484375 147.679688 65.484375 147.679688 69.738281 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,69.019608%,96.470588%);fill-opacity:1;" d="M 168.042969 61.175781 C 168.042969 65.429688 161.664062 65.429688 161.664062 61.175781 C 161.664062 56.925781 168.042969 56.925781 168.042969 61.175781 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.588235%,41.960784%,95.294118%);fill-opacity:1;" d="M 191.460938 52.617188 C 191.460938 56.867188 185.085938 56.867188 185.085938 52.617188 C 185.085938 48.363281 191.460938 48.363281 191.460938 52.617188 "/> < g clip-path="url(#clip14)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 91.996094 L 194.128906 91.996094 L 194.128906 47.480469 L 65.328125 47.480469 Z "/> < g clip-path="url(#clip15)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 65.328125 140.109375 L 194.128906 140.109375 L 194.128906 95.59375 L 65.328125 95.59375 Z "/> < g clip-path="url(#clip16)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.527344 140.109375 L 90.527344 95.59375 "/> < g clip-path="url(#clip17)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 140.109375 L 129.625 95.59375 "/> < g clip-path="url(#clip18)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.722656 140.109375 L 168.722656 95.59375 "/> < g clip-path="url(#clip19)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 134.972656 L 194.128906 134.972656 "/> < g clip-path="url(#clip20)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 126.414062 L 194.128906 126.414062 "/> < g clip-path="url(#clip21)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 117.851562 L 194.128906 117.851562 "/> < g clip-path="url(#clip22)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 109.292969 L 194.128906 109.292969 "/> < g clip-path="url(#clip23)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 100.730469 L 194.128906 100.730469 "/> < g clip-path="url(#clip24)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 140.109375 L 70.976562 95.59375 "/> < g clip-path="url(#clip25)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 140.109375 L 110.078125 95.59375 "/> < g clip-path="url(#clip26)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 140.109375 L 149.175781 95.59375 "/> < g clip-path="url(#clip27)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 140.109375 L 188.273438 95.59375 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 87.097656 134.972656 C 87.097656 139.226562 80.71875 139.226562 80.71875 134.972656 C 80.71875 130.722656 87.097656 130.722656 87.097656 134.972656 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.921569%,64.705882%,0%);fill-opacity:1;" d="M 90.660156 126.414062 C 90.660156 130.664062 84.28125 130.664062 84.28125 126.414062 C 84.28125 122.160156 90.660156 122.160156 90.660156 126.414062 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,49.019608%);fill-opacity:1;" d="M 96.769531 117.851562 C 96.769531 122.105469 90.390625 122.105469 90.390625 117.851562 C 90.390625 113.601562 96.769531 113.601562 96.769531 117.851562 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,69.019608%,96.470588%);fill-opacity:1;" d="M 102.371094 109.292969 C 102.371094 113.542969 95.992188 113.542969 95.992188 109.292969 C 95.992188 105.039062 102.371094 105.039062 102.371094 109.292969 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.588235%,41.960784%,95.294118%);fill-opacity:1;" d="M 108.480469 100.730469 C 108.480469 104.984375 102.101562 104.984375 102.101562 100.730469 C 102.101562 96.480469 108.480469 96.480469 108.480469 100.730469 "/> < g clip-path="url(#clip28)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 140.109375 L 194.128906 140.109375 L 194.128906 95.59375 L 65.328125 95.59375 Z "/> < g clip-path="url(#clip29)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 65.328125 188.226562 L 194.128906 188.226562 L 194.128906 143.710938 L 65.328125 143.710938 Z "/> < g clip-path="url(#clip30)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.527344 188.226562 L 90.527344 143.710938 "/> < g clip-path="url(#clip31)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 188.226562 L 129.625 143.710938 "/> < g clip-path="url(#clip32)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.722656 188.226562 L 168.722656 143.710938 "/> < g clip-path="url(#clip33)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 183.089844 L 194.128906 183.089844 "/> < g clip-path="url(#clip34)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 174.527344 L 194.128906 174.527344 "/> < g clip-path="url(#clip35)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 165.96875 L 194.128906 165.96875 "/> < g clip-path="url(#clip36)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 157.40625 L 194.128906 157.40625 "/> < g clip-path="url(#clip37)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 148.847656 L 194.128906 148.847656 "/> < g clip-path="url(#clip38)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 188.226562 L 70.976562 143.710938 "/> < g clip-path="url(#clip39)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 188.226562 L 110.078125 143.710938 "/> < g clip-path="url(#clip40)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 188.226562 L 149.175781 143.710938 "/> < g clip-path="url(#clip41)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 188.226562 L 188.273438 143.710938 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 86.589844 183.089844 C 86.589844 187.339844 80.210938 187.339844 80.210938 183.089844 C 80.210938 178.835938 86.589844 178.835938 86.589844 183.089844 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.921569%,64.705882%,0%);fill-opacity:1;" d="M 91.167969 174.527344 C 91.167969 178.78125 84.792969 178.78125 84.792969 174.527344 C 84.792969 170.277344 91.167969 170.277344 91.167969 174.527344 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,49.019608%);fill-opacity:1;" d="M 96.261719 165.96875 C 96.261719 170.21875 89.882812 170.21875 89.882812 165.96875 C 89.882812 161.714844 96.261719 161.714844 96.261719 165.96875 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,69.019608%,96.470588%);fill-opacity:1;" d="M 101.859375 157.40625 C 101.859375 161.660156 95.484375 161.660156 95.484375 157.40625 C 95.484375 153.15625 101.859375 153.15625 101.859375 157.40625 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.588235%,41.960784%,95.294118%);fill-opacity:1;" d="M 106.953125 148.847656 C 106.953125 153.097656 100.574219 153.097656 100.574219 148.847656 C 100.574219 144.59375 106.953125 144.59375 106.953125 148.847656 "/> < g clip-path="url(#clip42)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 188.226562 L 194.128906 188.226562 L 194.128906 143.710938 L 65.328125 143.710938 Z "/> < g clip-path="url(#clip43)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 65.328125 236.339844 L 194.128906 236.339844 L 194.128906 191.824219 L 65.328125 191.824219 Z "/> < g clip-path="url(#clip44)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.527344 236.339844 L 90.527344 191.824219 "/> < g clip-path="url(#clip45)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 236.339844 L 129.625 191.824219 "/> < g clip-path="url(#clip46)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.722656 236.339844 L 168.722656 191.824219 "/> < g clip-path="url(#clip47)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 231.203125 L 194.128906 231.203125 "/> < g clip-path="url(#clip48)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 222.644531 L 194.128906 222.644531 "/> < g clip-path="url(#clip49)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 214.082031 L 194.128906 214.082031 "/> < g clip-path="url(#clip50)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 205.523438 L 194.128906 205.523438 "/> < g clip-path="url(#clip51)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 196.960938 L 194.128906 196.960938 "/> < g clip-path="url(#clip52)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 236.339844 L 70.976562 191.824219 "/> < g clip-path="url(#clip53)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 236.339844 L 110.078125 191.824219 "/> < g clip-path="url(#clip54)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 236.339844 L 149.175781 191.824219 "/> < g clip-path="url(#clip55)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 236.339844 L 188.273438 191.824219 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 82.007812 231.203125 C 82.007812 235.457031 75.628906 235.457031 75.628906 231.203125 C 75.628906 226.953125 82.007812 226.953125 82.007812 231.203125 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.921569%,64.705882%,0%);fill-opacity:1;" d="M 84.550781 222.644531 C 84.550781 226.894531 78.175781 226.894531 78.175781 222.644531 C 78.175781 218.390625 84.550781 218.390625 84.550781 222.644531 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,49.019608%);fill-opacity:1;" d="M 87.097656 214.082031 C 87.097656 218.335938 80.71875 218.335938 80.71875 214.082031 C 80.71875 209.832031 87.097656 209.832031 87.097656 214.082031 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,69.019608%,96.470588%);fill-opacity:1;" d="M 90.152344 205.523438 C 90.152344 209.773438 83.773438 209.773438 83.773438 205.523438 C 83.773438 201.269531 90.152344 201.269531 90.152344 205.523438 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.588235%,41.960784%,95.294118%);fill-opacity:1;" d="M 92.699219 196.960938 C 92.699219 201.214844 86.320312 201.214844 86.320312 196.960938 C 86.320312 192.710938 92.699219 192.710938 92.699219 196.960938 "/> < g clip-path="url(#clip56)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 236.339844 L 194.128906 236.339844 L 194.128906 191.824219 L 65.328125 191.824219 Z "/> < g clip-path="url(#clip57)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 65.328125 284.457031 L 194.128906 284.457031 L 194.128906 239.941406 L 65.328125 239.941406 Z "/> < g clip-path="url(#clip58)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.527344 284.457031 L 90.527344 239.941406 "/> < g clip-path="url(#clip59)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 284.457031 L 129.625 239.941406 "/> < g clip-path="url(#clip60)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.722656 284.457031 L 168.722656 239.941406 "/> < g clip-path="url(#clip61)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 279.320312 L 194.128906 279.320312 "/> < g clip-path="url(#clip62)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 270.757812 L 194.128906 270.757812 "/> < g clip-path="url(#clip63)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 262.199219 L 194.128906 262.199219 "/> < g clip-path="url(#clip64)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 253.636719 L 194.128906 253.636719 "/> < g clip-path="url(#clip65)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 245.078125 L 194.128906 245.078125 "/> < g clip-path="url(#clip66)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 284.457031 L 70.976562 239.941406 "/> < g clip-path="url(#clip67)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 284.457031 L 110.078125 239.941406 "/> < g clip-path="url(#clip68)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 284.457031 L 149.175781 239.941406 "/> < g clip-path="url(#clip69)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 284.457031 L 188.273438 239.941406 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 80.988281 279.320312 C 80.988281 283.570312 74.609375 283.570312 74.609375 279.320312 C 74.609375 275.066406 80.988281 275.066406 80.988281 279.320312 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.921569%,64.705882%,0%);fill-opacity:1;" d="M 82.007812 270.757812 C 82.007812 275.011719 75.628906 275.011719 75.628906 270.757812 C 75.628906 266.507812 82.007812 266.507812 82.007812 270.757812 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,49.019608%);fill-opacity:1;" d="M 83.023438 262.199219 C 83.023438 266.449219 76.648438 266.449219 76.648438 262.199219 C 76.648438 257.945312 83.023438 257.945312 83.023438 262.199219 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,69.019608%,96.470588%);fill-opacity:1;" d="M 84.550781 253.636719 C 84.550781 257.890625 78.175781 257.890625 78.175781 253.636719 C 78.175781 249.386719 84.550781 249.386719 84.550781 253.636719 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.588235%,41.960784%,95.294118%);fill-opacity:1;" d="M 85.570312 245.078125 C 85.570312 249.328125 79.191406 249.328125 79.191406 245.078125 C 79.191406 240.824219 85.570312 240.824219 85.570312 245.078125 "/> < g clip-path="url(#clip70)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 284.457031 L 194.128906 284.457031 L 194.128906 239.941406 L 65.328125 239.941406 Z "/> < g clip-path="url(#clip71)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 65.328125 332.570312 L 194.128906 332.570312 L 194.128906 288.054688 L 65.328125 288.054688 Z "/> < g clip-path="url(#clip72)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.527344 332.570312 L 90.527344 288.054688 "/> < g clip-path="url(#clip73)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 332.570312 L 129.625 288.054688 "/> < g clip-path="url(#clip74)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.722656 332.570312 L 168.722656 288.054688 "/> < g clip-path="url(#clip75)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 327.433594 L 194.128906 327.433594 "/> < g clip-path="url(#clip76)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 318.875 L 194.128906 318.875 "/> < g clip-path="url(#clip77)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 310.3125 L 194.128906 310.3125 "/> < g clip-path="url(#clip78)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 301.753906 L 194.128906 301.753906 "/> < g clip-path="url(#clip79)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 293.191406 L 194.128906 293.191406 "/> < g clip-path="url(#clip80)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 332.570312 L 70.976562 288.054688 "/> < g clip-path="url(#clip81)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 332.570312 L 110.078125 288.054688 "/> < g clip-path="url(#clip82)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 332.570312 L 149.175781 288.054688 "/> < g clip-path="url(#clip83)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 332.570312 L 188.273438 288.054688 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 75.898438 327.433594 C 75.898438 331.6875 69.519531 331.6875 69.519531 327.433594 C 69.519531 323.183594 75.898438 323.183594 75.898438 327.433594 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.921569%,64.705882%,0%);fill-opacity:1;" d="M 76.917969 318.875 C 76.917969 323.125 70.539062 323.125 70.539062 318.875 C 70.539062 314.621094 76.917969 314.621094 76.917969 318.875 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,49.019608%);fill-opacity:1;" d="M 77.425781 310.3125 C 77.425781 314.566406 71.046875 314.566406 71.046875 310.3125 C 71.046875 306.0625 77.425781 306.0625 77.425781 310.3125 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,69.019608%,96.470588%);fill-opacity:1;" d="M 78.441406 301.753906 C 78.441406 306.003906 72.066406 306.003906 72.066406 301.753906 C 72.066406 297.5 78.441406 297.5 78.441406 301.753906 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.588235%,41.960784%,95.294118%);fill-opacity:1;" d="M 79.460938 293.191406 C 79.460938 297.445312 73.082031 297.445312 73.082031 293.191406 C 73.082031 288.941406 79.460938 288.941406 79.460938 293.191406 "/> < g clip-path="url(#clip84)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 332.570312 L 194.128906 332.570312 L 194.128906 288.054688 L 65.328125 288.054688 Z "/> < g clip-path="url(#clip85)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 65.328125 380.6875 L 194.128906 380.6875 L 194.128906 336.171875 L 65.328125 336.171875 Z "/> < g clip-path="url(#clip86)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.527344 380.6875 L 90.527344 336.171875 "/> < g clip-path="url(#clip87)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 380.6875 L 129.625 336.171875 "/> < g clip-path="url(#clip88)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.722656 380.6875 L 168.722656 336.171875 "/> < g clip-path="url(#clip89)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 375.550781 L 194.128906 375.550781 "/> < g clip-path="url(#clip90)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 366.988281 L 194.128906 366.988281 "/> < g clip-path="url(#clip91)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 358.429688 L 194.128906 358.429688 "/> < g clip-path="url(#clip92)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 349.867188 L 194.128906 349.867188 "/> < g clip-path="url(#clip93)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 341.308594 L 194.128906 341.308594 "/> < g clip-path="url(#clip94)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 380.6875 L 70.976562 336.171875 "/> < g clip-path="url(#clip95)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 380.6875 L 110.078125 336.171875 "/> < g clip-path="url(#clip96)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 380.6875 L 149.175781 336.171875 "/> < g clip-path="url(#clip97)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 380.6875 L 188.273438 336.171875 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 75.898438 375.550781 C 75.898438 379.800781 69.519531 379.800781 69.519531 375.550781 C 69.519531 371.296875 75.898438 371.296875 75.898438 375.550781 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.921569%,64.705882%,0%);fill-opacity:1;" d="M 76.40625 366.988281 C 76.40625 371.242188 70.027344 371.242188 70.027344 366.988281 C 70.027344 362.738281 76.40625 362.738281 76.40625 366.988281 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,49.019608%);fill-opacity:1;" d="M 76.40625 358.429688 C 76.40625 362.679688 70.027344 362.679688 70.027344 358.429688 C 70.027344 354.175781 76.40625 354.175781 76.40625 358.429688 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,69.019608%,96.470588%);fill-opacity:1;" d="M 76.917969 349.867188 C 76.917969 354.121094 70.539062 354.121094 70.539062 349.867188 C 70.539062 345.617188 76.917969 345.617188 76.917969 349.867188 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.588235%,41.960784%,95.294118%);fill-opacity:1;" d="M 77.425781 341.308594 C 77.425781 345.558594 71.046875 345.558594 71.046875 341.308594 C 71.046875 337.054688 77.425781 337.054688 77.425781 341.308594 "/> < g clip-path="url(#clip98)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 380.6875 L 194.128906 380.6875 L 194.128906 336.171875 L 65.328125 336.171875 Z "/> < g clip-path="url(#clip99)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 65.328125 428.800781 L 194.128906 428.800781 L 194.128906 384.285156 L 65.328125 384.285156 Z "/> < g clip-path="url(#clip100)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.527344 428.800781 L 90.527344 384.285156 "/> < g clip-path="url(#clip101)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 428.800781 L 129.625 384.285156 "/> < g clip-path="url(#clip102)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.722656 428.800781 L 168.722656 384.285156 "/> < g clip-path="url(#clip103)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 423.664062 L 194.128906 423.664062 "/> < g clip-path="url(#clip104)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 415.105469 L 194.128906 415.105469 "/> < g clip-path="url(#clip105)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 406.542969 L 194.128906 406.542969 "/> < g clip-path="url(#clip106)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 397.984375 L 194.128906 397.984375 "/> < g clip-path="url(#clip107)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 389.421875 L 194.128906 389.421875 "/> < g clip-path="url(#clip108)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 428.800781 L 70.976562 384.285156 "/> < g clip-path="url(#clip109)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 428.800781 L 110.078125 384.285156 "/> < g clip-path="url(#clip110)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 428.800781 L 149.175781 384.285156 "/> < g clip-path="url(#clip111)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 428.800781 L 188.273438 384.285156 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 75.898438 423.664062 C 75.898438 427.917969 69.519531 427.917969 69.519531 423.664062 C 69.519531 419.414062 75.898438 419.414062 75.898438 423.664062 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.921569%,64.705882%,0%);fill-opacity:1;" d="M 76.917969 415.105469 C 76.917969 419.355469 70.539062 419.355469 70.539062 415.105469 C 70.539062 410.851562 76.917969 410.851562 76.917969 415.105469 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,49.019608%);fill-opacity:1;" d="M 76.917969 406.542969 C 76.917969 410.796875 70.539062 410.796875 70.539062 406.542969 C 70.539062 402.292969 76.917969 402.292969 76.917969 406.542969 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,69.019608%,96.470588%);fill-opacity:1;" d="M 76.917969 397.984375 C 76.917969 402.234375 70.539062 402.234375 70.539062 397.984375 C 70.539062 393.730469 76.917969 393.730469 76.917969 397.984375 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.588235%,41.960784%,95.294118%);fill-opacity:1;" d="M 76.917969 389.421875 C 76.917969 393.675781 70.539062 393.675781 70.539062 389.421875 C 70.539062 385.171875 76.917969 385.171875 76.917969 389.421875 "/> < g clip-path="url(#clip112)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 428.800781 L 194.128906 428.800781 L 194.128906 384.285156 L 65.328125 384.285156 Z "/> < g clip-path="url(#clip113)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 65.328125 476.917969 L 194.128906 476.917969 L 194.128906 432.402344 L 65.328125 432.402344 Z "/> < g clip-path="url(#clip114)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.527344 476.917969 L 90.527344 432.402344 "/> < g clip-path="url(#clip115)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 476.917969 L 129.625 432.402344 "/> < g clip-path="url(#clip116)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.722656 476.917969 L 168.722656 432.402344 "/> < g clip-path="url(#clip117)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 471.78125 L 194.128906 471.78125 "/> < g clip-path="url(#clip118)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 463.21875 L 194.128906 463.21875 "/> < g clip-path="url(#clip119)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 454.660156 L 194.128906 454.660156 "/> < g clip-path="url(#clip120)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 446.097656 L 194.128906 446.097656 "/> < g clip-path="url(#clip121)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 437.539062 L 194.128906 437.539062 "/> < g clip-path="url(#clip122)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 476.917969 L 70.976562 432.402344 "/> < g clip-path="url(#clip123)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 476.917969 L 110.078125 432.402344 "/> < g clip-path="url(#clip124)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 476.917969 L 149.175781 432.402344 "/> < g clip-path="url(#clip125)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 476.917969 L 188.273438 432.402344 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 74.878906 471.78125 C 74.878906 476.03125 68.5 476.03125 68.5 471.78125 C 68.5 467.527344 74.878906 467.527344 74.878906 471.78125 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.921569%,64.705882%,0%);fill-opacity:1;" d="M 75.386719 463.21875 C 75.386719 467.472656 69.007812 467.472656 69.007812 463.21875 C 69.007812 458.96875 75.386719 458.96875 75.386719 463.21875 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,49.019608%);fill-opacity:1;" d="M 75.898438 454.660156 C 75.898438 458.910156 69.519531 458.910156 69.519531 454.660156 C 69.519531 450.40625 75.898438 450.40625 75.898438 454.660156 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,69.019608%,96.470588%);fill-opacity:1;" d="M 76.40625 446.097656 C 76.40625 450.351562 70.027344 450.351562 70.027344 446.097656 C 70.027344 441.847656 76.40625 441.847656 76.40625 446.097656 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.588235%,41.960784%,95.294118%);fill-opacity:1;" d="M 77.425781 437.539062 C 77.425781 441.789062 71.046875 441.789062 71.046875 437.539062 C 71.046875 433.285156 77.425781 433.285156 77.425781 437.539062 "/> < g clip-path="url(#clip126)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 476.917969 L 194.128906 476.917969 L 194.128906 432.402344 L 65.328125 432.402344 Z "/> < g clip-path="url(#clip127)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 65.328125 525.03125 L 194.128906 525.03125 L 194.128906 480.515625 L 65.328125 480.515625 Z "/> < g clip-path="url(#clip128)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.527344 525.03125 L 90.527344 480.515625 "/> < g clip-path="url(#clip129)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.625 525.03125 L 129.625 480.515625 "/> < g clip-path="url(#clip130)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(98.039216%,98.039216%,98.039216%);stroke-opacity:1;stroke-miterlimit:10;" d="M 168.722656 525.03125 L 168.722656 480.515625 "/> < g clip-path="url(#clip131)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 519.894531 L 194.128906 519.894531 "/> < g clip-path="url(#clip132)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 511.335938 L 194.128906 511.335938 "/> < g clip-path="url(#clip133)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 502.773438 L 194.128906 502.773438 "/> < g clip-path="url(#clip134)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 494.214844 L 194.128906 494.214844 "/> < g clip-path="url(#clip135)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 485.652344 L 194.128906 485.652344 "/> < g clip-path="url(#clip136)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 525.03125 L 70.976562 480.515625 "/> < g clip-path="url(#clip137)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 525.03125 L 110.078125 480.515625 "/> < g clip-path="url(#clip138)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 525.03125 L 149.175781 480.515625 "/> < g clip-path="url(#clip139)" clip-rule="nonzero"> < path style="fill:none;stroke-width:0.425197;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(89.803922%,89.803922%,89.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 525.03125 L 188.273438 480.515625 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(97.254902%,46.27451%,42.745098%);fill-opacity:1;" d="M 74.371094 519.894531 C 74.371094 524.148438 67.992188 524.148438 67.992188 519.894531 C 67.992188 515.644531 74.371094 515.644531 74.371094 519.894531 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.921569%,64.705882%,0%);fill-opacity:1;" d="M 74.878906 511.335938 C 74.878906 515.585938 68.5 515.585938 68.5 511.335938 C 68.5 507.082031 74.878906 507.082031 74.878906 511.335938 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,74.901961%,49.019608%);fill-opacity:1;" d="M 74.878906 502.773438 C 74.878906 507.027344 68.5 507.027344 68.5 502.773438 C 68.5 498.523438 74.878906 498.523438 74.878906 502.773438 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,69.019608%,96.470588%);fill-opacity:1;" d="M 74.878906 494.214844 C 74.878906 498.464844 68.5 498.464844 68.5 494.214844 C 68.5 489.960938 74.878906 489.960938 74.878906 494.214844 "/> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(90.588235%,41.960784%,95.294118%);fill-opacity:1;" d="M 75.898438 485.652344 C 75.898438 489.90625 69.519531 489.90625 69.519531 485.652344 C 69.519531 481.402344 75.898438 481.402344 75.898438 485.652344 "/> < g clip-path="url(#clip140)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.328125 525.03125 L 194.128906 525.03125 L 194.128906 480.515625 L 65.328125 480.515625 Z "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="90.296875"/> < use xlink:href="#glyph0-2" x="28.370743" y="90.296875"/> < use xlink:href="#glyph0-3" x="33.706329" y="90.296875"/> < use xlink:href="#glyph0-1" x="39.041916" y="90.296875"/> < use xlink:href="#glyph0-4" x="44.377502" y="90.296875"/> < use xlink:href="#glyph0-2" x="47.572296" y="90.296875"/> < use xlink:href="#glyph0-5" x="52.907883" y="90.296875"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="81.734375"/> < use xlink:href="#glyph0-2" x="28.370743" y="81.734375"/> < use xlink:href="#glyph0-3" x="33.706329" y="81.734375"/> < use xlink:href="#glyph0-1" x="39.041916" y="81.734375"/> < use xlink:href="#glyph0-4" x="44.377502" y="81.734375"/> < use xlink:href="#glyph0-3" x="47.572296" y="81.734375"/> < use xlink:href="#glyph0-1" x="52.907883" y="81.734375"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="73.175781"/> < use xlink:href="#glyph0-2" x="28.370743" y="73.175781"/> < use xlink:href="#glyph0-3" x="33.706329" y="73.175781"/> < use xlink:href="#glyph0-6" x="39.041916" y="73.175781"/> < use xlink:href="#glyph0-4" x="44.377502" y="73.175781"/> < use xlink:href="#glyph0-2" x="47.572296" y="73.175781"/> < use xlink:href="#glyph0-6" x="52.907883" y="73.175781"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="64.613281"/> < use xlink:href="#glyph0-2" x="28.370743" y="64.613281"/> < use xlink:href="#glyph0-3" x="33.706329" y="64.613281"/> < use xlink:href="#glyph0-6" x="39.041916" y="64.613281"/> < use xlink:href="#glyph0-4" x="44.377502" y="64.613281"/> < use xlink:href="#glyph0-2" x="47.572296" y="64.613281"/> < use xlink:href="#glyph0-7" x="52.907883" y="64.613281"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="56.054688"/> < use xlink:href="#glyph0-2" x="28.370743" y="56.054688"/> < use xlink:href="#glyph0-3" x="33.706329" y="56.054688"/> < use xlink:href="#glyph0-6" x="39.041916" y="56.054688"/> < use xlink:href="#glyph0-4" x="44.377502" y="56.054688"/> < use xlink:href="#glyph0-2" x="47.572296" y="56.054688"/> < use xlink:href="#glyph0-5" x="52.907883" y="56.054688"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 86.859375 L 65.328125 86.859375 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 78.296875 L 65.328125 78.296875 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 69.738281 L 65.328125 69.738281 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 61.175781 L 65.328125 61.175781 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 52.617188 L 65.328125 52.617188 "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="138.410156"/> < use xlink:href="#glyph0-2" x="28.370743" y="138.410156"/> < use xlink:href="#glyph0-3" x="33.706329" y="138.410156"/> < use xlink:href="#glyph0-1" x="39.041916" y="138.410156"/> < use xlink:href="#glyph0-4" x="44.377502" y="138.410156"/> < use xlink:href="#glyph0-2" x="47.572296" y="138.410156"/> < use xlink:href="#glyph0-5" x="52.907883" y="138.410156"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="129.851562"/> < use xlink:href="#glyph0-2" x="28.370743" y="129.851562"/> < use xlink:href="#glyph0-3" x="33.706329" y="129.851562"/> < use xlink:href="#glyph0-1" x="39.041916" y="129.851562"/> < use xlink:href="#glyph0-4" x="44.377502" y="129.851562"/> < use xlink:href="#glyph0-3" x="47.572296" y="129.851562"/> < use xlink:href="#glyph0-1" x="52.907883" y="129.851562"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="121.289062"/> < use xlink:href="#glyph0-2" x="28.370743" y="121.289062"/> < use xlink:href="#glyph0-3" x="33.706329" y="121.289062"/> < use xlink:href="#glyph0-6" x="39.041916" y="121.289062"/> < use xlink:href="#glyph0-4" x="44.377502" y="121.289062"/> < use xlink:href="#glyph0-2" x="47.572296" y="121.289062"/> < use xlink:href="#glyph0-6" x="52.907883" y="121.289062"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="112.730469"/> < use xlink:href="#glyph0-2" x="28.370743" y="112.730469"/> < use xlink:href="#glyph0-3" x="33.706329" y="112.730469"/> < use xlink:href="#glyph0-6" x="39.041916" y="112.730469"/> < use xlink:href="#glyph0-4" x="44.377502" y="112.730469"/> < use xlink:href="#glyph0-2" x="47.572296" y="112.730469"/> < use xlink:href="#glyph0-7" x="52.907883" y="112.730469"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="104.167969"/> < use xlink:href="#glyph0-2" x="28.370743" y="104.167969"/> < use xlink:href="#glyph0-3" x="33.706329" y="104.167969"/> < use xlink:href="#glyph0-6" x="39.041916" y="104.167969"/> < use xlink:href="#glyph0-4" x="44.377502" y="104.167969"/> < use xlink:href="#glyph0-2" x="47.572296" y="104.167969"/> < use xlink:href="#glyph0-5" x="52.907883" y="104.167969"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 134.972656 L 65.328125 134.972656 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 126.414062 L 65.328125 126.414062 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 117.851562 L 65.328125 117.851562 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 109.292969 L 65.328125 109.292969 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 100.730469 L 65.328125 100.730469 "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="186.527344"/> < use xlink:href="#glyph0-2" x="28.370743" y="186.527344"/> < use xlink:href="#glyph0-3" x="33.706329" y="186.527344"/> < use xlink:href="#glyph0-1" x="39.041916" y="186.527344"/> < use xlink:href="#glyph0-4" x="44.377502" y="186.527344"/> < use xlink:href="#glyph0-2" x="47.572296" y="186.527344"/> < use xlink:href="#glyph0-5" x="52.907883" y="186.527344"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="177.964844"/> < use xlink:href="#glyph0-2" x="28.370743" y="177.964844"/> < use xlink:href="#glyph0-3" x="33.706329" y="177.964844"/> < use xlink:href="#glyph0-1" x="39.041916" y="177.964844"/> < use xlink:href="#glyph0-4" x="44.377502" y="177.964844"/> < use xlink:href="#glyph0-3" x="47.572296" y="177.964844"/> < use xlink:href="#glyph0-1" x="52.907883" y="177.964844"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="169.40625"/> < use xlink:href="#glyph0-2" x="28.370743" y="169.40625"/> < use xlink:href="#glyph0-3" x="33.706329" y="169.40625"/> < use xlink:href="#glyph0-6" x="39.041916" y="169.40625"/> < use xlink:href="#glyph0-4" x="44.377502" y="169.40625"/> < use xlink:href="#glyph0-2" x="47.572296" y="169.40625"/> < use xlink:href="#glyph0-6" x="52.907883" y="169.40625"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="160.84375"/> < use xlink:href="#glyph0-2" x="28.370743" y="160.84375"/> < use xlink:href="#glyph0-3" x="33.706329" y="160.84375"/> < use xlink:href="#glyph0-6" x="39.041916" y="160.84375"/> < use xlink:href="#glyph0-4" x="44.377502" y="160.84375"/> < use xlink:href="#glyph0-2" x="47.572296" y="160.84375"/> < use xlink:href="#glyph0-7" x="52.907883" y="160.84375"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="152.285156"/> < use xlink:href="#glyph0-2" x="28.370743" y="152.285156"/> < use xlink:href="#glyph0-3" x="33.706329" y="152.285156"/> < use xlink:href="#glyph0-6" x="39.041916" y="152.285156"/> < use xlink:href="#glyph0-4" x="44.377502" y="152.285156"/> < use xlink:href="#glyph0-2" x="47.572296" y="152.285156"/> < use xlink:href="#glyph0-5" x="52.907883" y="152.285156"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 183.089844 L 65.328125 183.089844 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 174.527344 L 65.328125 174.527344 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 165.96875 L 65.328125 165.96875 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 157.40625 L 65.328125 157.40625 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 148.847656 L 65.328125 148.847656 "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="234.640625"/> < use xlink:href="#glyph0-2" x="28.370743" y="234.640625"/> < use xlink:href="#glyph0-3" x="33.706329" y="234.640625"/> < use xlink:href="#glyph0-1" x="39.041916" y="234.640625"/> < use xlink:href="#glyph0-4" x="44.377502" y="234.640625"/> < use xlink:href="#glyph0-2" x="47.572296" y="234.640625"/> < use xlink:href="#glyph0-5" x="52.907883" y="234.640625"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="226.082031"/> < use xlink:href="#glyph0-2" x="28.370743" y="226.082031"/> < use xlink:href="#glyph0-3" x="33.706329" y="226.082031"/> < use xlink:href="#glyph0-1" x="39.041916" y="226.082031"/> < use xlink:href="#glyph0-4" x="44.377502" y="226.082031"/> < use xlink:href="#glyph0-3" x="47.572296" y="226.082031"/> < use xlink:href="#glyph0-1" x="52.907883" y="226.082031"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="217.519531"/> < use xlink:href="#glyph0-2" x="28.370743" y="217.519531"/> < use xlink:href="#glyph0-3" x="33.706329" y="217.519531"/> < use xlink:href="#glyph0-6" x="39.041916" y="217.519531"/> < use xlink:href="#glyph0-4" x="44.377502" y="217.519531"/> < use xlink:href="#glyph0-2" x="47.572296" y="217.519531"/> < use xlink:href="#glyph0-6" x="52.907883" y="217.519531"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="208.960938"/> < use xlink:href="#glyph0-2" x="28.370743" y="208.960938"/> < use xlink:href="#glyph0-3" x="33.706329" y="208.960938"/> < use xlink:href="#glyph0-6" x="39.041916" y="208.960938"/> < use xlink:href="#glyph0-4" x="44.377502" y="208.960938"/> < use xlink:href="#glyph0-2" x="47.572296" y="208.960938"/> < use xlink:href="#glyph0-7" x="52.907883" y="208.960938"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="200.398438"/> < use xlink:href="#glyph0-2" x="28.370743" y="200.398438"/> < use xlink:href="#glyph0-3" x="33.706329" y="200.398438"/> < use xlink:href="#glyph0-6" x="39.041916" y="200.398438"/> < use xlink:href="#glyph0-4" x="44.377502" y="200.398438"/> < use xlink:href="#glyph0-2" x="47.572296" y="200.398438"/> < use xlink:href="#glyph0-5" x="52.907883" y="200.398438"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 231.203125 L 65.328125 231.203125 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 222.644531 L 65.328125 222.644531 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 214.082031 L 65.328125 214.082031 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 205.523438 L 65.328125 205.523438 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 196.960938 L 65.328125 196.960938 "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="282.757812"/> < use xlink:href="#glyph0-2" x="28.370743" y="282.757812"/> < use xlink:href="#glyph0-3" x="33.706329" y="282.757812"/> < use xlink:href="#glyph0-1" x="39.041916" y="282.757812"/> < use xlink:href="#glyph0-4" x="44.377502" y="282.757812"/> < use xlink:href="#glyph0-2" x="47.572296" y="282.757812"/> < use xlink:href="#glyph0-5" x="52.907883" y="282.757812"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="274.195312"/> < use xlink:href="#glyph0-2" x="28.370743" y="274.195312"/> < use xlink:href="#glyph0-3" x="33.706329" y="274.195312"/> < use xlink:href="#glyph0-1" x="39.041916" y="274.195312"/> < use xlink:href="#glyph0-4" x="44.377502" y="274.195312"/> < use xlink:href="#glyph0-3" x="47.572296" y="274.195312"/> < use xlink:href="#glyph0-1" x="52.907883" y="274.195312"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="265.636719"/> < use xlink:href="#glyph0-2" x="28.370743" y="265.636719"/> < use xlink:href="#glyph0-3" x="33.706329" y="265.636719"/> < use xlink:href="#glyph0-6" x="39.041916" y="265.636719"/> < use xlink:href="#glyph0-4" x="44.377502" y="265.636719"/> < use xlink:href="#glyph0-2" x="47.572296" y="265.636719"/> < use xlink:href="#glyph0-6" x="52.907883" y="265.636719"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="257.074219"/> < use xlink:href="#glyph0-2" x="28.370743" y="257.074219"/> < use xlink:href="#glyph0-3" x="33.706329" y="257.074219"/> < use xlink:href="#glyph0-6" x="39.041916" y="257.074219"/> < use xlink:href="#glyph0-4" x="44.377502" y="257.074219"/> < use xlink:href="#glyph0-2" x="47.572296" y="257.074219"/> < use xlink:href="#glyph0-7" x="52.907883" y="257.074219"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="248.515625"/> < use xlink:href="#glyph0-2" x="28.370743" y="248.515625"/> < use xlink:href="#glyph0-3" x="33.706329" y="248.515625"/> < use xlink:href="#glyph0-6" x="39.041916" y="248.515625"/> < use xlink:href="#glyph0-4" x="44.377502" y="248.515625"/> < use xlink:href="#glyph0-2" x="47.572296" y="248.515625"/> < use xlink:href="#glyph0-5" x="52.907883" y="248.515625"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 279.320312 L 65.328125 279.320312 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 270.757812 L 65.328125 270.757812 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 262.199219 L 65.328125 262.199219 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 253.636719 L 65.328125 253.636719 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 245.078125 L 65.328125 245.078125 "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="330.871094"/> < use xlink:href="#glyph0-2" x="28.370743" y="330.871094"/> < use xlink:href="#glyph0-3" x="33.706329" y="330.871094"/> < use xlink:href="#glyph0-1" x="39.041916" y="330.871094"/> < use xlink:href="#glyph0-4" x="44.377502" y="330.871094"/> < use xlink:href="#glyph0-2" x="47.572296" y="330.871094"/> < use xlink:href="#glyph0-5" x="52.907883" y="330.871094"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="322.3125"/> < use xlink:href="#glyph0-2" x="28.370743" y="322.3125"/> < use xlink:href="#glyph0-3" x="33.706329" y="322.3125"/> < use xlink:href="#glyph0-1" x="39.041916" y="322.3125"/> < use xlink:href="#glyph0-4" x="44.377502" y="322.3125"/> < use xlink:href="#glyph0-3" x="47.572296" y="322.3125"/> < use xlink:href="#glyph0-1" x="52.907883" y="322.3125"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="313.75"/> < use xlink:href="#glyph0-2" x="28.370743" y="313.75"/> < use xlink:href="#glyph0-3" x="33.706329" y="313.75"/> < use xlink:href="#glyph0-6" x="39.041916" y="313.75"/> < use xlink:href="#glyph0-4" x="44.377502" y="313.75"/> < use xlink:href="#glyph0-2" x="47.572296" y="313.75"/> < use xlink:href="#glyph0-6" x="52.907883" y="313.75"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="305.191406"/> < use xlink:href="#glyph0-2" x="28.370743" y="305.191406"/> < use xlink:href="#glyph0-3" x="33.706329" y="305.191406"/> < use xlink:href="#glyph0-6" x="39.041916" y="305.191406"/> < use xlink:href="#glyph0-4" x="44.377502" y="305.191406"/> < use xlink:href="#glyph0-2" x="47.572296" y="305.191406"/> < use xlink:href="#glyph0-7" x="52.907883" y="305.191406"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="296.628906"/> < use xlink:href="#glyph0-2" x="28.370743" y="296.628906"/> < use xlink:href="#glyph0-3" x="33.706329" y="296.628906"/> < use xlink:href="#glyph0-6" x="39.041916" y="296.628906"/> < use xlink:href="#glyph0-4" x="44.377502" y="296.628906"/> < use xlink:href="#glyph0-2" x="47.572296" y="296.628906"/> < use xlink:href="#glyph0-5" x="52.907883" y="296.628906"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 327.433594 L 65.328125 327.433594 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 318.875 L 65.328125 318.875 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 310.3125 L 65.328125 310.3125 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 301.753906 L 65.328125 301.753906 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 293.191406 L 65.328125 293.191406 "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="378.988281"/> < use xlink:href="#glyph0-2" x="28.370743" y="378.988281"/> < use xlink:href="#glyph0-3" x="33.706329" y="378.988281"/> < use xlink:href="#glyph0-1" x="39.041916" y="378.988281"/> < use xlink:href="#glyph0-4" x="44.377502" y="378.988281"/> < use xlink:href="#glyph0-2" x="47.572296" y="378.988281"/> < use xlink:href="#glyph0-5" x="52.907883" y="378.988281"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="370.425781"/> < use xlink:href="#glyph0-2" x="28.370743" y="370.425781"/> < use xlink:href="#glyph0-3" x="33.706329" y="370.425781"/> < use xlink:href="#glyph0-1" x="39.041916" y="370.425781"/> < use xlink:href="#glyph0-4" x="44.377502" y="370.425781"/> < use xlink:href="#glyph0-3" x="47.572296" y="370.425781"/> < use xlink:href="#glyph0-1" x="52.907883" y="370.425781"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="361.867188"/> < use xlink:href="#glyph0-2" x="28.370743" y="361.867188"/> < use xlink:href="#glyph0-3" x="33.706329" y="361.867188"/> < use xlink:href="#glyph0-6" x="39.041916" y="361.867188"/> < use xlink:href="#glyph0-4" x="44.377502" y="361.867188"/> < use xlink:href="#glyph0-2" x="47.572296" y="361.867188"/> < use xlink:href="#glyph0-6" x="52.907883" y="361.867188"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="353.304688"/> < use xlink:href="#glyph0-2" x="28.370743" y="353.304688"/> < use xlink:href="#glyph0-3" x="33.706329" y="353.304688"/> < use xlink:href="#glyph0-6" x="39.041916" y="353.304688"/> < use xlink:href="#glyph0-4" x="44.377502" y="353.304688"/> < use xlink:href="#glyph0-2" x="47.572296" y="353.304688"/> < use xlink:href="#glyph0-7" x="52.907883" y="353.304688"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="344.746094"/> < use xlink:href="#glyph0-2" x="28.370743" y="344.746094"/> < use xlink:href="#glyph0-3" x="33.706329" y="344.746094"/> < use xlink:href="#glyph0-6" x="39.041916" y="344.746094"/> < use xlink:href="#glyph0-4" x="44.377502" y="344.746094"/> < use xlink:href="#glyph0-2" x="47.572296" y="344.746094"/> < use xlink:href="#glyph0-5" x="52.907883" y="344.746094"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 375.550781 L 65.328125 375.550781 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 366.988281 L 65.328125 366.988281 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 358.429688 L 65.328125 358.429688 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 349.867188 L 65.328125 349.867188 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 341.308594 L 65.328125 341.308594 "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="427.101562"/> < use xlink:href="#glyph0-2" x="28.370743" y="427.101562"/> < use xlink:href="#glyph0-3" x="33.706329" y="427.101562"/> < use xlink:href="#glyph0-1" x="39.041916" y="427.101562"/> < use xlink:href="#glyph0-4" x="44.377502" y="427.101562"/> < use xlink:href="#glyph0-2" x="47.572296" y="427.101562"/> < use xlink:href="#glyph0-5" x="52.907883" y="427.101562"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="418.542969"/> < use xlink:href="#glyph0-2" x="28.370743" y="418.542969"/> < use xlink:href="#glyph0-3" x="33.706329" y="418.542969"/> < use xlink:href="#glyph0-1" x="39.041916" y="418.542969"/> < use xlink:href="#glyph0-4" x="44.377502" y="418.542969"/> < use xlink:href="#glyph0-3" x="47.572296" y="418.542969"/> < use xlink:href="#glyph0-1" x="52.907883" y="418.542969"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="409.980469"/> < use xlink:href="#glyph0-2" x="28.370743" y="409.980469"/> < use xlink:href="#glyph0-3" x="33.706329" y="409.980469"/> < use xlink:href="#glyph0-6" x="39.041916" y="409.980469"/> < use xlink:href="#glyph0-4" x="44.377502" y="409.980469"/> < use xlink:href="#glyph0-2" x="47.572296" y="409.980469"/> < use xlink:href="#glyph0-6" x="52.907883" y="409.980469"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="401.421875"/> < use xlink:href="#glyph0-2" x="28.370743" y="401.421875"/> < use xlink:href="#glyph0-3" x="33.706329" y="401.421875"/> < use xlink:href="#glyph0-6" x="39.041916" y="401.421875"/> < use xlink:href="#glyph0-4" x="44.377502" y="401.421875"/> < use xlink:href="#glyph0-2" x="47.572296" y="401.421875"/> < use xlink:href="#glyph0-7" x="52.907883" y="401.421875"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="392.859375"/> < use xlink:href="#glyph0-2" x="28.370743" y="392.859375"/> < use xlink:href="#glyph0-3" x="33.706329" y="392.859375"/> < use xlink:href="#glyph0-6" x="39.041916" y="392.859375"/> < use xlink:href="#glyph0-4" x="44.377502" y="392.859375"/> < use xlink:href="#glyph0-2" x="47.572296" y="392.859375"/> < use xlink:href="#glyph0-5" x="52.907883" y="392.859375"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 423.664062 L 65.328125 423.664062 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 415.105469 L 65.328125 415.105469 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 406.542969 L 65.328125 406.542969 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 397.984375 L 65.328125 397.984375 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 389.421875 L 65.328125 389.421875 "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="475.21875"/> < use xlink:href="#glyph0-2" x="28.370743" y="475.21875"/> < use xlink:href="#glyph0-3" x="33.706329" y="475.21875"/> < use xlink:href="#glyph0-1" x="39.041916" y="475.21875"/> < use xlink:href="#glyph0-4" x="44.377502" y="475.21875"/> < use xlink:href="#glyph0-2" x="47.572296" y="475.21875"/> < use xlink:href="#glyph0-5" x="52.907883" y="475.21875"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="466.65625"/> < use xlink:href="#glyph0-2" x="28.370743" y="466.65625"/> < use xlink:href="#glyph0-3" x="33.706329" y="466.65625"/> < use xlink:href="#glyph0-1" x="39.041916" y="466.65625"/> < use xlink:href="#glyph0-4" x="44.377502" y="466.65625"/> < use xlink:href="#glyph0-3" x="47.572296" y="466.65625"/> < use xlink:href="#glyph0-1" x="52.907883" y="466.65625"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="458.097656"/> < use xlink:href="#glyph0-2" x="28.370743" y="458.097656"/> < use xlink:href="#glyph0-3" x="33.706329" y="458.097656"/> < use xlink:href="#glyph0-6" x="39.041916" y="458.097656"/> < use xlink:href="#glyph0-4" x="44.377502" y="458.097656"/> < use xlink:href="#glyph0-2" x="47.572296" y="458.097656"/> < use xlink:href="#glyph0-6" x="52.907883" y="458.097656"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="449.535156"/> < use xlink:href="#glyph0-2" x="28.370743" y="449.535156"/> < use xlink:href="#glyph0-3" x="33.706329" y="449.535156"/> < use xlink:href="#glyph0-6" x="39.041916" y="449.535156"/> < use xlink:href="#glyph0-4" x="44.377502" y="449.535156"/> < use xlink:href="#glyph0-2" x="47.572296" y="449.535156"/> < use xlink:href="#glyph0-7" x="52.907883" y="449.535156"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="440.976562"/> < use xlink:href="#glyph0-2" x="28.370743" y="440.976562"/> < use xlink:href="#glyph0-3" x="33.706329" y="440.976562"/> < use xlink:href="#glyph0-6" x="39.041916" y="440.976562"/> < use xlink:href="#glyph0-4" x="44.377502" y="440.976562"/> < use xlink:href="#glyph0-2" x="47.572296" y="440.976562"/> < use xlink:href="#glyph0-5" x="52.907883" y="440.976562"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 471.78125 L 65.328125 471.78125 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 463.21875 L 65.328125 463.21875 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 454.660156 L 65.328125 454.660156 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 446.097656 L 65.328125 446.097656 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 437.539062 L 65.328125 437.539062 "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="523.332031"/> < use xlink:href="#glyph0-2" x="28.370743" y="523.332031"/> < use xlink:href="#glyph0-3" x="33.706329" y="523.332031"/> < use xlink:href="#glyph0-1" x="39.041916" y="523.332031"/> < use xlink:href="#glyph0-4" x="44.377502" y="523.332031"/> < use xlink:href="#glyph0-2" x="47.572296" y="523.332031"/> < use xlink:href="#glyph0-5" x="52.907883" y="523.332031"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="514.773438"/> < use xlink:href="#glyph0-2" x="28.370743" y="514.773438"/> < use xlink:href="#glyph0-3" x="33.706329" y="514.773438"/> < use xlink:href="#glyph0-1" x="39.041916" y="514.773438"/> < use xlink:href="#glyph0-4" x="44.377502" y="514.773438"/> < use xlink:href="#glyph0-3" x="47.572296" y="514.773438"/> < use xlink:href="#glyph0-1" x="52.907883" y="514.773438"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="506.210938"/> < use xlink:href="#glyph0-2" x="28.370743" y="506.210938"/> < use xlink:href="#glyph0-3" x="33.706329" y="506.210938"/> < use xlink:href="#glyph0-6" x="39.041916" y="506.210938"/> < use xlink:href="#glyph0-4" x="44.377502" y="506.210938"/> < use xlink:href="#glyph0-2" x="47.572296" y="506.210938"/> < use xlink:href="#glyph0-6" x="52.907883" y="506.210938"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="497.652344"/> < use xlink:href="#glyph0-2" x="28.370743" y="497.652344"/> < use xlink:href="#glyph0-3" x="33.706329" y="497.652344"/> < use xlink:href="#glyph0-6" x="39.041916" y="497.652344"/> < use xlink:href="#glyph0-4" x="44.377502" y="497.652344"/> < use xlink:href="#glyph0-2" x="47.572296" y="497.652344"/> < use xlink:href="#glyph0-7" x="52.907883" y="497.652344"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="23.035156" y="489.089844"/> < use xlink:href="#glyph0-2" x="28.370743" y="489.089844"/> < use xlink:href="#glyph0-3" x="33.706329" y="489.089844"/> < use xlink:href="#glyph0-6" x="39.041916" y="489.089844"/> < use xlink:href="#glyph0-4" x="44.377502" y="489.089844"/> < use xlink:href="#glyph0-2" x="47.572296" y="489.089844"/> < use xlink:href="#glyph0-5" x="52.907883" y="489.089844"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 519.894531 L 65.328125 519.894531 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 511.335938 L 65.328125 511.335938 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 502.773438 L 65.328125 502.773438 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 494.214844 L 65.328125 494.214844 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 61.074219 485.652344 L 65.328125 485.652344 "/> < g clip-path="url(#clip141)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:1;" d="M 194.128906 91.996094 L 210.601562 91.996094 L 210.601562 47.480469 L 194.128906 47.480469 Z "/> < g clip-path="url(#clip142)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.128906 91.996094 L 210.601562 91.996094 L 210.601562 47.480469 L 194.128906 47.480469 Z "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph1-1" x="198.925781" y="48.40625"/> < use xlink:href="#glyph1-2" x="198.925781" y="56.397919"/> < use xlink:href="#glyph1-3" x="198.925781" y="61.733505"/> < use xlink:href="#glyph1-4" x="198.925781" y="67.069092"/> < use xlink:href="#glyph1-2" x="198.925781" y="72.404678"/> < use xlink:href="#glyph1-5" x="198.925781" y="77.740265"/> < use xlink:href="#glyph1-6" x="198.925781" y="84.668564"/> < g clip-path="url(#clip143)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:1;" d="M 194.128906 140.109375 L 210.601562 140.109375 L 210.601562 95.59375 L 194.128906 95.59375 Z "/> < g clip-path="url(#clip144)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.128906 140.109375 L 210.601562 140.109375 L 210.601562 95.59375 L 194.128906 95.59375 Z "/> < g clip-path="url(#clip145)" clip-rule="nonzero"> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph1-7" x="198.925781" y="94.652344"/> < use xlink:href="#glyph1-8" x="198.925781" y="101.580643"/> < use xlink:href="#glyph1-9" x="198.925781" y="106.916229"/> < use xlink:href="#glyph1-9" x="198.925781" y="111.713104"/> < use xlink:href="#glyph1-8" x="198.925781" y="116.509979"/> < use xlink:href="#glyph1-3" x="198.925781" y="121.845566"/> < use xlink:href="#glyph1-10" x="198.925781" y="127.181152"/> < use xlink:href="#glyph1-11" x="198.925781" y="132.516739"/> < use xlink:href="#glyph1-8" x="198.925781" y="135.711533"/> < g clip-path="url(#clip146)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:1;" d="M 194.128906 188.226562 L 210.601562 188.226562 L 210.601562 143.710938 L 194.128906 143.710938 Z "/> < g clip-path="url(#clip147)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.128906 188.226562 L 210.601562 188.226562 L 210.601562 143.710938 L 194.128906 143.710938 Z "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph1-12" x="198.925781" y="153.703125"/> < use xlink:href="#glyph1-13" x="198.925781" y="160.631424"/> < use xlink:href="#glyph1-10" x="198.925781" y="165.96701"/> < use xlink:href="#glyph1-14" x="198.925781" y="171.302597"/> < use xlink:href="#glyph1-9" x="198.925781" y="173.434021"/> < g clip-path="url(#clip148)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:1;" d="M 194.128906 236.339844 L 210.601562 236.339844 L 210.601562 191.824219 L 194.128906 191.824219 Z "/> < g clip-path="url(#clip149)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.128906 236.339844 L 210.601562 236.339844 L 210.601562 191.824219 L 194.128906 191.824219 Z "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph1-15" x="198.925781" y="199.683594"/> < use xlink:href="#glyph1-6" x="198.925781" y="206.611893"/> < use xlink:href="#glyph1-8" x="198.925781" y="213.010849"/> < use xlink:href="#glyph1-9" x="198.925781" y="218.346436"/> < use xlink:href="#glyph1-13" x="198.925781" y="223.143311"/> < g clip-path="url(#clip150)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:1;" d="M 194.128906 284.457031 L 210.601562 284.457031 L 210.601562 239.941406 L 194.128906 239.941406 Z "/> < g clip-path="url(#clip151)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.128906 284.457031 L 210.601562 284.457031 L 210.601562 239.941406 L 194.128906 239.941406 Z "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph1-7" x="198.925781" y="241.667969"/> < use xlink:href="#glyph1-2" x="198.925781" y="248.596268"/> < use xlink:href="#glyph1-16" x="198.925781" y="253.931854"/> < use xlink:href="#glyph1-17" x="198.925781" y="259.267441"/> < use xlink:href="#glyph1-18" x="198.925781" y="264.064316"/> < use xlink:href="#glyph1-5" x="198.925781" y="269.399902"/> < use xlink:href="#glyph1-6" x="198.925781" y="276.328201"/> < g clip-path="url(#clip152)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:1;" d="M 194.128906 332.570312 L 210.601562 332.570312 L 210.601562 288.054688 L 194.128906 288.054688 Z "/> < g clip-path="url(#clip153)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.128906 332.570312 L 210.601562 332.570312 L 210.601562 288.054688 L 194.128906 288.054688 Z "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph1-19" x="198.925781" y="297.777344"/> < use xlink:href="#glyph1-13" x="198.925781" y="304.705643"/> < use xlink:href="#glyph1-2" x="198.925781" y="310.041229"/> < use xlink:href="#glyph1-20" x="198.925781" y="315.376816"/> < use xlink:href="#glyph1-21" x="198.925781" y="320.712402"/> < g clip-path="url(#clip154)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:1;" d="M 194.128906 380.6875 L 210.601562 380.6875 L 210.601562 336.171875 L 194.128906 336.171875 Z "/> < g clip-path="url(#clip155)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.128906 380.6875 L 210.601562 380.6875 L 210.601562 336.171875 L 194.128906 336.171875 Z "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph1-12" x="198.925781" y="348.832031"/> < use xlink:href="#glyph1-14" x="198.925781" y="355.76033"/> < use xlink:href="#glyph1-8" x="198.925781" y="357.891754"/> < use xlink:href="#glyph1-22" x="198.925781" y="363.227341"/> < g clip-path="url(#clip156)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:1;" d="M 194.128906 428.800781 L 210.601562 428.800781 L 210.601562 384.285156 L 194.128906 384.285156 Z "/> < g clip-path="url(#clip157)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.128906 428.800781 L 210.601562 428.800781 L 210.601562 384.285156 L 194.128906 384.285156 Z "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph1-1" x="198.925781" y="384.414062"/> < use xlink:href="#glyph1-8" x="198.925781" y="392.405731"/> < use xlink:href="#glyph1-11" x="198.925781" y="397.741318"/> < use xlink:href="#glyph1-22" x="198.925781" y="400.936111"/> < use xlink:href="#glyph1-23" x="198.925781" y="405.732986"/> < use xlink:href="#glyph1-2" x="198.925781" y="411.068573"/> < use xlink:href="#glyph1-4" x="198.925781" y="416.40416"/> < use xlink:href="#glyph1-14" x="198.925781" y="421.739746"/> < use xlink:href="#glyph1-17" x="198.925781" y="423.87117"/> < g clip-path="url(#clip158)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:1;" d="M 194.128906 476.917969 L 210.601562 476.917969 L 210.601562 432.402344 L 194.128906 432.402344 Z "/> < g clip-path="url(#clip159)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.128906 476.917969 L 210.601562 476.917969 L 210.601562 432.402344 L 194.128906 432.402344 Z "/> < g clip-path="url(#clip160)" clip-rule="nonzero"> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph1-7" x="198.925781" y="430.390625"/> < use xlink:href="#glyph1-2" x="198.925781" y="437.318924"/> < use xlink:href="#glyph1-16" x="198.925781" y="442.65451"/> < use xlink:href="#glyph1-17" x="198.925781" y="447.990097"/> < use xlink:href="#glyph1-18" x="198.925781" y="452.786972"/> < use xlink:href="#glyph1-24" x="198.925781" y="458.122559"/> < use xlink:href="#glyph1-8" x="198.925781" y="463.458145"/> < use xlink:href="#glyph1-9" x="198.925781" y="468.793732"/> < use xlink:href="#glyph1-13" x="198.925781" y="473.590607"/> < g clip-path="url(#clip161)" clip-rule="nonzero"> < path style=" stroke:none;fill-rule:nonzero;fill:rgb(80%,80%,80%);fill-opacity:1;" d="M 194.128906 525.03125 L 210.601562 525.03125 L 210.601562 480.515625 L 194.128906 480.515625 Z "/> < g clip-path="url(#clip162)" clip-rule="nonzero"> < path style="fill:none;stroke-width:1.062992;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(49.803922%,49.803922%,49.803922%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.128906 525.03125 L 210.601562 525.03125 L 210.601562 480.515625 L 194.128906 480.515625 Z "/> < g clip-path="url(#clip163)" clip-rule="nonzero"> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph1-5" x="198.925781" y="478.246094"/> < use xlink:href="#glyph1-25" x="198.925781" y="485.174393"/> < use xlink:href="#glyph1-3" x="198.925781" y="489.971268"/> < use xlink:href="#glyph1-8" x="198.925781" y="495.306854"/> < use xlink:href="#glyph1-26" x="198.925781" y="500.642441"/> < use xlink:href="#glyph1-2" x="198.925781" y="508.634109"/> < use xlink:href="#glyph1-5" x="198.925781" y="513.969696"/> < use xlink:href="#glyph1-6" x="198.925781" y="520.897995"/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 70.976562 529.285156 L 70.976562 525.03125 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 110.078125 529.285156 L 110.078125 525.03125 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.175781 529.285156 L 149.175781 525.03125 "/> < path style="fill:none;stroke-width:1.062992;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.273438 529.285156 L 188.273438 525.03125 "/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-2" x="68.308594" y="538.992188"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-1" x="96.738281" y="538.992188"/> < use xlink:href="#glyph0-2" x="102.073868" y="538.992188"/> < use xlink:href="#glyph0-2" x="107.409454" y="538.992188"/> < use xlink:href="#glyph0-2" x="112.745041" y="538.992188"/> < use xlink:href="#glyph0-2" x="118.080627" y="538.992188"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-8" x="135.835938" y="538.992188"/> < use xlink:href="#glyph0-2" x="141.171524" y="538.992188"/> < use xlink:href="#glyph0-2" x="146.507111" y="538.992188"/> < use xlink:href="#glyph0-2" x="151.842697" y="538.992188"/> < use xlink:href="#glyph0-2" x="157.178284" y="538.992188"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph0-7" x="174.933594" y="538.992188"/> < use xlink:href="#glyph0-2" x="180.26918" y="538.992188"/> < use xlink:href="#glyph0-2" x="185.604767" y="538.992188"/> < use xlink:href="#glyph0-2" x="190.940353" y="538.992188"/> < use xlink:href="#glyph0-2" x="196.27594" y="538.992188"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph2-1" x="115.046875" y="551.199219"/> < use xlink:href="#glyph2-2" x="118.380859" y="551.199219"/> < use xlink:href="#glyph2-3" x="125.054688" y="551.199219"/> < use xlink:href="#glyph2-4" x="131.728516" y="551.199219"/> < use xlink:href="#glyph2-5" x="138.402344" y="551.199219"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph3-1" x="38.4375" y="28.328125"/> < use xlink:href="#glyph3-2" x="48.841232" y="28.328125"/> < use xlink:href="#glyph3-3" x="56.853302" y="28.328125"/> < use xlink:href="#glyph3-4" x="66.462158" y="28.328125"/> < use xlink:href="#glyph3-5" x="77.667801" y="28.328125"/> < use xlink:href="#glyph3-6" x="85.679871" y="28.328125"/> < use xlink:href="#glyph3-5" x="89.682388" y="28.328125"/> < use xlink:href="#glyph3-7" x="97.694458" y="28.328125"/> < use xlink:href="#glyph3-8" x="100.895065" y="28.328125"/> < use xlink:href="#glyph3-9" x="108.907135" y="28.328125"/> < use xlink:href="#glyph3-10" x="116.11026" y="28.328125"/> < use xlink:href="#glyph3-11" x="124.12233" y="28.328125"/> < use xlink:href="#glyph3-12" x="132.134399" y="28.328125"/> < use xlink:href="#glyph3-8" x="136.136917" y="28.328125"/> < use xlink:href="#glyph3-6" x="144.148987" y="28.328125"/> < use xlink:href="#glyph3-3" x="148.151505" y="28.328125"/> < use xlink:href="#glyph3-9" x="157.760361" y="28.328125"/> < use xlink:href="#glyph3-7" x="164.963486" y="28.328125"/> < use xlink:href="#glyph3-13" x="168.164093" y="28.328125"/> < use xlink:href="#glyph3-13" x="171.3647" y="28.328125"/> < use xlink:href="#glyph3-14" x="174.565308" y="28.328125"/> < use xlink:href="#glyph3-6" x="181.768433" y="28.328125"/> < use xlink:href="#glyph3-12" x="185.77095" y="28.328125"/> < use xlink:href="#glyph3-8" x="189.773468" y="28.328125"/> < use xlink:href="#glyph3-11" x="197.785538" y="28.328125"/> < use xlink:href="#glyph3-10" x="205.797607" y="28.328125"/> < use xlink:href="#glyph3-15" x="213.809677" y="28.328125"/> < g style="fill:rgb(0%,0%,0%);fill-opacity:1;"> < use xlink:href="#glyph3-3" x="76.464844" y="43.878906"/> < use xlink:href="#glyph3-10" x="86.0737" y="43.878906"/> < use xlink:href="#glyph3-16" x="94.08577" y="43.878906"/> < use xlink:href="#glyph3-17" x="102.097839" y="43.878906"/> < use xlink:href="#glyph3-10" x="106.100357" y="43.878906"/> < use xlink:href="#glyph3-18" x="114.112427" y="43.878906"/> < use xlink:href="#glyph3-19" x="126.112946" y="43.878906"/> < use xlink:href="#glyph3-10" x="134.125015" y="43.878906"/> < use xlink:href="#glyph3-20" x="142.137085" y="43.878906"/> < use xlink:href="#glyph3-6" x="146.934479" y="43.878906"/> < use xlink:href="#glyph3-21" x="150.936996" y="43.878906"/> < use xlink:href="#glyph3-22" x="158.949066" y="43.878906"/> < use xlink:href="#glyph3-23" x="166.961136" y="43.878906"/> < use xlink:href="#glyph3-24" x="174.973206" y="43.878906"/>

To leave a comment for the author, please follow the link and comment on their blog: rud.is » R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.