diff --git a/docs/features/facets.md b/docs/features/facets.md index 3d75d61784..a7215e4ba6 100644 --- a/docs/features/facets.md +++ b/docs/features/facets.md @@ -13,6 +13,8 @@ const olympians = shallowRef([ {weight: 170, height: 2.21, sex: "male"} ]); +const scheme = Plot.scale({color: {type: "categorical"}}).range; + onMounted(() => { d3.csv("../data/athletes.csv", d3.autoType).then((data) => (olympians.value = data)); }); @@ -23,7 +25,7 @@ onMounted(() => { Faceting partitions data by ordinal or categorical value and then repeats a plot for each partition (each **facet**), producing [small multiples](https://en.wikipedia.org/wiki/Small_multiple) for comparison. Faceting is typically enabled by declaring the horizontal↔︎ facet channel **fx**, the vertical↕︎ facet channel **fy**, or both for two-dimensional faceting. -For example, below we recreate the Trellis display (“reminiscent of garden trelliswork”) of [Becker *et al.*](https://hci.stanford.edu/courses/cs448b/papers/becker-trellis-jcgs.pdf) using the dot’s **fy** channel to declare vertical↕︎ facets, showing the yields of several varieties of barley across several sites for the years 1931 and 1932. +For example, below we recreate the Trellis display (“reminiscent of garden trelliswork”) of [Becker *et al.*](https://hci.stanford.edu/courses/cs448b/papers/becker-trellis-jcgs.pdf) using the dot’s **fy** channel to declare vertical↕︎ facets, showing the yields of several varieties of barley across several sites for the years 1931 and 1932. :::plot https://observablehq.com/@observablehq/plot-trellis ```js @@ -57,7 +59,7 @@ This plot uses the [**sort** mark option](./scales.md#sort-mark-option) to order Use the [frame mark](../marks/frame.md) for stronger visual separation of facets. ::: -The chart above reveals a likely data collection error: the years appear to be reversed for the Morris site as it is the only site where the yields in 1932 were higher than in 1931. The anomaly in Morris is more obvious if we use directed arrows to show the year-over-year change. The [group transform](../transforms/group.md) groups the observations by site and variety to compute the change. +The chart above reveals a likely data collection error: the years appear to be reversed for the Morris site as it is the only site where the yields in 1932 were higher than in 1931. The anomaly in Morris is more obvious if we use directed arrows to show the year-over-year change. The [group transform](../transforms/group.md) groups the observations by site and variety to compute the change. :::plot defer https://observablehq.com/@observablehq/plot-trellis-anomaly ```js diff --git a/docs/features/markers.md b/docs/features/markers.md index 7fd8290392..d9396ac699 100644 --- a/docs/features/markers.md +++ b/docs/features/markers.md @@ -30,7 +30,7 @@ A **marker** defines a graphic drawn on vertices of a [line](../marks/line.md) o

-:::plot https://observablehq.com/d/cfc5b4e46aa18b57?intent=fork +:::plot https://observablehq.com/@observablehq/plot-line-chart-with-markers?intent=fork ```js-vue Plot.plot({ marks: [ diff --git a/docs/features/transforms.md b/docs/features/transforms.md index b4ce33bf23..dac990022e 100644 --- a/docs/features/transforms.md +++ b/docs/features/transforms.md @@ -10,6 +10,8 @@ const olympians = shallowRef([]); const traffic = shallowRef(["Saarbrücken-Neuhaus", "Oldenburg (Holstein)", "Holz", "Göttelborn", "Riegelsberg", "Kastel", "Neustadt i. H.-Süd", "Nettersheim", "Hasborn", "Laufeld", "Otzenhausen", "Nonnweiler", "Kirschheck", "AS Eppelborn", "Bierfeld", "Von der Heydt", "Illingen", "Hetzerath", "Groß Ippener", "Bockel", "Ladbergen", "Dibbersen", "Euskirchen/Bliesheim", "Hürth", "Lotte", "Ascheberg", "Bad Schwartau", "Schloss Burg", "Uphusen", "HB-Silbersee", "Barsbüttel", "HB-Mahndorfer See", "Glüsingen", "HB-Weserbrücke", "Hengsen", "Köln-Nord", "Hagen-Vorhalle", "Unna"].map((location, i) => ({location, date: new Date(Date.UTC(2000, 0, 1, i)), vehicles: (10 + i) ** 2.382}))); const bins = computed(() => d3.bin().thresholds(80).value((d) => d.weight)(olympians.value)); +const scheme = Plot.scale({color: {type: "categorical"}}).range; + onMounted(() => { d3.csv("../data/athletes.csv", d3.autoType).then((data) => (olympians.value = data)); d3.csv("../data/bls-metro-unemployment.csv", d3.autoType).then((data) => (bls.value = data)); @@ -116,7 +118,7 @@ If a transform isn’t doing what you expect, try inspecting the options object Transforms can derive channels (such as **y** above) as well as changing the default options. For example, the bin transform sets default insets for a one-pixel gap between adjacent rects. -Transforms are composable: you can pass *options* through more than one transform before passing it to a mark. For example, above it’s a bit difficult to compare the weight distribution by sex because there are fewer female than male athletes in the data. We can remove this effect using the [normalize transform](../transforms/normalize.md) with the *sum* reducer. +Transforms are composable: you can pass *options* through more than one transform before passing it to a mark. For example, above it’s a bit difficult to compare the weight distribution by sex because there are fewer female than male athletes in the data. We can remove this effect using the [normalize transform](../transforms/normalize.md) with the *sum* reducer. :::plot defer https://observablehq.com/@observablehq/plot-overlapping-relative-histogram ```js-vue diff --git a/docs/marks/tip.md b/docs/marks/tip.md index d4221e6d30..0079e8afb9 100644 --- a/docs/marks/tip.md +++ b/docs/marks/tip.md @@ -14,6 +14,8 @@ const olympians = shallowRef([ {weight: 170, height: 2.21, sex: "male"} ]); +const scheme = Plot.scale({color: {type: "categorical"}}).range; + onMounted(() => { d3.csv("../data/aapl.csv", d3.autoType).then((data) => (aapl.value = data)); d3.csv("../data/athletes.csv", d3.autoType).then((data) => (olympians.value = data)); @@ -111,7 +113,7 @@ Plot.dot(olympians, { The tallest athlete in this dataset, swimmer [Kevin Cordes](https://en.wikipedia.org/wiki/Kevin_Cordes), is likely an error: his official height is 1.96m (6′ 5″) not 2.21m (7′ 3″). Basketball player [Li Muhao](https://en.wikipedia.org/wiki/Li_Muhao) is likely the true tallest. ::: -If a channel is bound to the *color* or *opacity* scale, the tip mark displays a swatch to reinforce the encoding, such as female or male . +If a channel is bound to the *color* or *opacity* scale, the tip mark displays a swatch to reinforce the encoding, such as female or male . The tip mark recognizes that **x1** & **x2** and **y1** & **y2** are paired channels. Below, observe that the *weight* shown in the tip is a range such as 64–66 kg; however, the *frequency* is shown as the difference between the **y1** and **y2** channels. The latter is achieved by the stack transform setting a channel hint to indicate that **y1** and **y2** represent a length. diff --git a/docs/transforms/group.md b/docs/transforms/group.md index f2d1cea94d..df128f8dcc 100644 --- a/docs/transforms/group.md +++ b/docs/transforms/group.md @@ -6,6 +6,8 @@ import {shallowRef, onMounted} from "vue"; const olympians = shallowRef([{weight: 31, height: 1.21, sex: "female"}, {weight: 170, height: 2.21, sex: "male"}]); +const scheme = Plot.scale({color: {type: "categorical"}}).range; + onMounted(() => { d3.csv("../data/athletes.csv", d3.autoType).then((data) => (olympians.value = data)); }); @@ -88,7 +90,7 @@ Plot.plot({ ``` ::: -We aren’t limited to the *count* reducer. We can use the *mode* reducer, for example, to show which sex is more prevalent in each sport: men are represented more often than women in every sport except gymnastics and fencing. +We aren’t limited to the *count* reducer. We can use the *mode* reducer, for example, to show which sex is more prevalent in each sport: men are represented more often than women in every sport except gymnastics and fencing. :::plot defer https://observablehq.com/@observablehq/plot-group-and-mode-reducer ```js @@ -162,7 +164,7 @@ Plot.plot({ ``` ::: -Alternatively, below we use directional arrows (a [link mark](../marks/link.md) with [markers](../features/markers.md)) to indicate the difference in counts of male and female athletes by sport. The color of the arrow indicates which sex is more prevalent, while its length is proportional to the difference. +Alternatively, below we use directional arrows (a [link mark](../marks/link.md) with [markers](../features/markers.md)) to indicate the difference in counts of male and female athletes by sport. The color of the arrow indicates which sex is more prevalent, while its length is proportional to the difference. :::plot defer https://observablehq.com/@observablehq/plot-difference-arrows ```js diff --git a/docs/transforms/hexbin.md b/docs/transforms/hexbin.md index 938f9c8671..1ca25d311b 100644 --- a/docs/transforms/hexbin.md +++ b/docs/transforms/hexbin.md @@ -13,6 +13,8 @@ const us = shallowRef(null); const nation = computed(() => us.value ? topojson.feature(us.value, us.value.objects.nation) : {type: null}); const statemesh = computed(() => us.value ? topojson.mesh(us.value, us.value.objects.states, (a, b) => a !== b) : {type: null}); +const scheme = Plot.scale({color: {type: "categorical"}}).range; + onMounted(() => { d3.csv("../data/athletes.csv", d3.autoType).then((data) => (olympians.value = data)); d3.tsv("../data/walmarts.tsv", d3.autoType).then((data) => (walmarts.value = data)); @@ -69,7 +71,7 @@ Plot Setting a **stroke** ensures that the smallest hexagons are visible. ::: -Alternatively, the **fill** and **r** channels can encode independent (or “bivariate”) dimensions of data. Below, the **r** channel uses *count* as before, while the **fill** channel uses *mode* to show the most frequent sex of athletes in each hexagon. The larger athletes are more likely to be male, while the smaller athletes are more likely to be female. +Alternatively, the **fill** and **r** channels can encode independent (or “bivariate”) dimensions of data. Below, the **r** channel uses *count* as before, while the **fill** channel uses *mode* to show the most frequent sex of athletes in each hexagon. The larger athletes are more likely to be male, while the smaller athletes are more likely to be female. :::plot defer https://observablehq.com/@observablehq/plot-bivariate-hexbin ```js diff --git a/docs/transforms/stack.md b/docs/transforms/stack.md index 2275c52b75..1c5d8c080f 100644 --- a/docs/transforms/stack.md +++ b/docs/transforms/stack.md @@ -14,6 +14,7 @@ const order = computed(() => orders.value === "null" ? null : orders.value); const reverse = ref(true); const riaa = shallowRef([]); const survey = shallowRef([]); +const scheme = Plot.scale({color: {type: "categorical"}}).range; onMounted(() => { d3.csv("../data/riaa-us-revenue.csv", d3.autoType).then((data) => (riaa.value = data)); @@ -53,7 +54,7 @@ const likert = Likert([ The **stack transform** comes in two orientations: [stackY](#stackY) replaces **y** with **y1** and **y2** to form vertical↑ stacks grouped on **x**, while [stackX](#stackX) replaces **x** with **x1** and **x2** for horizontal→ stacks grouped on **y**. In effect, stacking transforms a *length* into *lower* and *upper* positions: the upper position of each element equals the lower position of the next element in the stack. Stacking makes it easier to perceive a total while still showing its parts. -For example, below is a stacked area chart of [deaths in the Crimean War](https://en.wikipedia.org/wiki/Florence_Nightingale#Crimean_War) — predominantly from disease — using Florence Nightingale’s data. +For example, below is a stacked area chart of [deaths in the Crimean War](https://en.wikipedia.org/wiki/Florence_Nightingale#Crimean_War) — predominantly from disease — using Florence Nightingale’s data. :::plot https://observablehq.com/@observablehq/plot-crimean-war-casualties ```js @@ -128,7 +129,7 @@ Plot.plot({ ``` ::: -The **order** option controls the order in which the layers are stacked. It defaults to null, meaning to respect the input order of the data. The *appearance* order excels when each series has a prominent peak, as in the chart below of [recording industry](https://en.wikipedia.org/wiki/Recording_Industry_Association_of_America) revenue. Compact disc sales started declining well before the rise of downloads and streaming, suggesting that the industry was slow to provide a convenient digital product and hence lost revenue to piracy. +The **order** option controls the order in which the layers are stacked. It defaults to null, meaning to respect the input order of the data. The *appearance* order excels when each series has a prominent peak, as in the chart below of [recording industry](https://en.wikipedia.org/wiki/Recording_Industry_Association_of_America) revenue. Compact disc sales started declining well before the rise of downloads and streaming, suggesting that the industry was slow to provide a convenient digital product and hence lost revenue to piracy.

+
Wholesale and Retail Trade
-
+
Manufacturing
-
+
Leisure and hospitality
-
+
Business services
-
+
Construction
-
+
Education and Health
-
+
Government
-
+
Finance
-
+
Self-employed
-
+
Other
diff --git a/test/output/colorLegendCategoricalReverse.html b/test/output/colorLegendCategoricalReverse.html index 2b4dbe0e01..d60a6b45f3 100644 --- a/test/output/colorLegendCategoricalReverse.html +++ b/test/output/colorLegendCategoricalReverse.html @@ -23,25 +23,25 @@ align-items: center; margin-right: 1em; } - + - J + J - I + I - H + H - G + G - F + F - E + E - D + D - C + C - B + B A
\ No newline at end of file diff --git a/test/output/colorLegendOpacity.html b/test/output/colorLegendOpacity.html index f9ad026403..2e5aee1d2c 100644 --- a/test/output/colorLegendOpacity.html +++ b/test/output/colorLegendOpacity.html @@ -23,11 +23,11 @@ align-items: center; margin-right: 1em; } - + - Dream + Dream - Torgersen + Torgersen Biscoe
\ No newline at end of file diff --git a/test/output/colorLegendOrdinalTicks.svg b/test/output/colorLegendOrdinalTicks.svg index eaf18e02ea..831dfc551c 100644 --- a/test/output/colorLegendOrdinalTicks.svg +++ b/test/output/colorLegendOrdinalTicks.svg @@ -13,11 +13,11 @@ } - - - - - + + + + + diff --git a/test/output/crimeanWarArrow.svg b/test/output/crimeanWarArrow.svg index 3054ad9956..6c7482cfb4 100644 --- a/test/output/crimeanWarArrow.svg +++ b/test/output/crimeanWarArrow.svg @@ -72,17 +72,17 @@ - + - - + + - - + + - + \ No newline at end of file diff --git a/test/output/crimeanWarLine.svg b/test/output/crimeanWarLine.svg index e4c111cf85..13e0a92d29 100644 --- a/test/output/crimeanWarLine.svg +++ b/test/output/crimeanWarLine.svg @@ -72,17 +72,17 @@ - + - - + + - - + + - + \ No newline at end of file diff --git a/test/output/crimeanWarOverlapped.svg b/test/output/crimeanWarOverlapped.svg index 003cffea65..a6684e629d 100644 --- a/test/output/crimeanWarOverlapped.svg +++ b/test/output/crimeanWarOverlapped.svg @@ -71,78 +71,78 @@ Apr - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/output/crimeanWarStacked.svg b/test/output/crimeanWarStacked.svg index 1c0c2f745d..66d149f05c 100644 --- a/test/output/crimeanWarStacked.svg +++ b/test/output/crimeanWarStacked.svg @@ -57,78 +57,78 @@ Apr - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/output/crosshairDot.svg b/test/output/crosshairDot.svg index ba24a3d4d9..7a51bf142c 100644 --- a/test/output/crosshairDot.svg +++ b/test/output/crosshairDot.svg @@ -54,348 +54,348 @@ culmen_length_mm → - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/output/crosshairDotFacet.svg b/test/output/crosshairDotFacet.svg index bef048ee66..10be71ad8b 100644 --- a/test/output/crosshairDotFacet.svg +++ b/test/output/crosshairDotFacet.svg @@ -93,352 +93,352 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/output/decathlon.html b/test/output/decathlon.html index 635dbad619..0e79d82fb6 100644 --- a/test/output/decathlon.html +++ b/test/output/decathlon.html @@ -24,19 +24,19 @@ align-items: center; margin-right: 1em; } - + - BLS + BLS - DDR + DDR - FRG + FRG - GBR + GBR - SOV + SOV - TCH + TCH USA
@@ -115,56 +115,56 @@ Long Jump → - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/dotSort.html b/test/output/dotSort.html index e493724651..d9ca5e83a9 100644 --- a/test/output/dotSort.html +++ b/test/output/dotSort.html @@ -15,14 +15,14 @@ } - - - - - - - - + + + + + + + +
default sort (r desc)
@@ -44,14 +44,14 @@ } - - - - - - - - + + + + + + + +
sort by r
@@ -73,14 +73,14 @@ } - - - - - - - - + + + + + + + +
null sort
@@ -102,14 +102,14 @@ } - - - - - - - - + + + + + + + +
reverse
@@ -131,14 +131,14 @@ } - - - - - - - - + + + + + + + +
sort by x
@@ -160,14 +160,14 @@ } - - - - - - - - + + + + + + + +
reverse sort by x
@@ -189,14 +189,14 @@ } - - - - - - - - + + + + + + + +
shuffle
diff --git a/test/output/energyProduction.html b/test/output/energyProduction.html index 66573474fb..a6be234f22 100644 --- a/test/output/energyProduction.html +++ b/test/output/energyProduction.html @@ -24,11 +24,11 @@ align-items: center; margin-right: 1em; } - + - Fossil fuels + Fossil fuels - Renewable + Renewable Nuclear
@@ -96,222 +96,222 @@ 2020 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/output/facetReindex.svg b/test/output/facetReindex.svg index cca4a4814e..c365d6bfe0 100644 --- a/test/output/facetReindex.svg +++ b/test/output/facetReindex.svg @@ -82,1050 +82,1050 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/output/findArrow.html b/test/output/findArrow.html index 8d1f3c9310..a1128c4f3a 100644 --- a/test/output/findArrow.html +++ b/test/output/findArrow.html @@ -24,11 +24,11 @@ align-items: center; margin-right: 1em; } - + - Y16-19 + Y16-19 - Y20-24 + Y20-24 Y25-29
@@ -117,75 +117,75 @@ - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/frameFillCategorical.html b/test/output/frameFillCategorical.html index 307a960719..297fc87835 100644 --- a/test/output/frameFillCategorical.html +++ b/test/output/frameFillCategorical.html @@ -24,11 +24,11 @@ align-items: center; margin-right: 1em; } - + - bar + bar - baz + baz foo
@@ -46,9 +46,9 @@ white-space: pre; } - - - + + + \ No newline at end of file diff --git a/test/output/fruitSalesDate.svg b/test/output/fruitSalesDate.svg index 67f7bea9d1..9541bd796a 100644 --- a/test/output/fruitSalesDate.svg +++ b/test/output/fruitSalesDate.svg @@ -43,13 +43,13 @@ 16 - - - - - - - + + + + + + + apples diff --git a/test/output/fruitSalesSingleDate.svg b/test/output/fruitSalesSingleDate.svg index 179c613a2d..d01f8a64d6 100644 --- a/test/output/fruitSalesSingleDate.svg +++ b/test/output/fruitSalesSingleDate.svg @@ -51,9 +51,9 @@ 15Mar - - - + + + apples diff --git a/test/output/hexbinZ.html b/test/output/hexbinZ.html index 969c05f7cb..be981ce817 100644 --- a/test/output/hexbinZ.html +++ b/test/output/hexbinZ.html @@ -24,11 +24,11 @@ align-items: center; margin-right: 1em; } - + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo
@@ -94,187 +94,187 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/hexbinZNull.svg b/test/output/hexbinZNull.svg index 68c1d74de1..82ca6490c6 100644 --- a/test/output/hexbinZNull.svg +++ b/test/output/hexbinZNull.svg @@ -79,194 +79,194 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/industryUnemployment.svg b/test/output/industryUnemployment.svg index bcea73e32a..a11a1cd0a7 100644 --- a/test/output/industryUnemployment.svg +++ b/test/output/industryUnemployment.svg @@ -73,20 +73,20 @@ 2010 - Wholesale and Retail Trade - Manufacturing - Leisure and hospitality - Business services - Construction - Education and Health - Government - Finance - Self-employed - Other - Transportation and Utilities - Information - Agriculture - Mining and Extraction + Wholesale and Retail Trade + Manufacturing + Leisure and hospitality + Business services + Construction + Education and Health + Government + Finance + Self-employed + Other + Transportation and Utilities + Information + Agriculture + Mining and Extraction diff --git a/test/output/industryUnemploymentShare.svg b/test/output/industryUnemploymentShare.svg index 91df7927e2..459f3905b8 100644 --- a/test/output/industryUnemploymentShare.svg +++ b/test/output/industryUnemploymentShare.svg @@ -82,20 +82,20 @@ 2010 - Wholesale and Retail Trade - Manufacturing - Leisure and hospitality - Business services - Construction - Education and Health - Government - Finance - Self-employed - Other - Transportation and Utilities - Information - Agriculture - Mining and Extraction + Wholesale and Retail Trade + Manufacturing + Leisure and hospitality + Business services + Construction + Education and Health + Government + Finance + Self-employed + Other + Transportation and Utilities + Information + Agriculture + Mining and Extraction diff --git a/test/output/industryUnemploymentStream.svg b/test/output/industryUnemploymentStream.svg index 287d813398..09f8b19d8d 100644 --- a/test/output/industryUnemploymentStream.svg +++ b/test/output/industryUnemploymentStream.svg @@ -63,19 +63,19 @@ 2010 - Wholesale and Retail Trade - Manufacturing - Leisure and hospitality - Business services - Construction - Education and Health - Government - Finance - Self-employed - Other - Transportation and Utilities - Information - Agriculture - Mining and Extraction + Wholesale and Retail Trade + Manufacturing + Leisure and hospitality + Business services + Construction + Education and Health + Government + Finance + Self-employed + Other + Transportation and Utilities + Information + Agriculture + Mining and Extraction \ No newline at end of file diff --git a/test/output/integerIntervalArea.html b/test/output/integerIntervalArea.html index 6fff5efe94..1cd669e1a2 100644 --- a/test/output/integerIntervalArea.html +++ b/test/output/integerIntervalArea.html @@ -24,9 +24,9 @@ align-items: center; margin-right: 1em; } - + - a + a b
@@ -97,8 +97,8 @@ x → - - + + diff --git a/test/output/internFacetNaN.svg b/test/output/internFacetNaN.svg index 8c041354ac..af683bf3dd 100644 --- a/test/output/internFacetNaN.svg +++ b/test/output/internFacetNaN.svg @@ -181,48 +181,48 @@ - + - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - + - - + + @@ -273,477 +273,477 @@ - + - + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - + - - + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + \ No newline at end of file diff --git a/test/output/liborProjectionsFacet.html b/test/output/liborProjectionsFacet.html index 644e27757b..43703a38eb 100644 --- a/test/output/liborProjectionsFacet.html +++ b/test/output/liborProjectionsFacet.html @@ -24,13 +24,13 @@ align-items: center; margin-right: 1em; } - + - H1 + H1 - H2 + H2 - H3 + H3 H4
@@ -265,118 +265,118 @@ - + - - + + - - + + - + - + - - + + - - + + - - + + - + - + - - + + - - + + - - + + - + - + - - + + - - + + - - + + - + - + - - + + - - + + - - + + - + - + - - + + - - + + - - + + - + - + - - + + - + diff --git a/test/output/linearRegressionPenguins.svg b/test/output/linearRegressionPenguins.svg index 79aac64b1c..bbc31a9d80 100644 --- a/test/output/linearRegressionPenguins.svg +++ b/test/output/linearRegressionPenguins.svg @@ -71,356 +71,356 @@ culmen_length_mm → - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + diff --git a/test/output/moviesRatingByGenre.svg b/test/output/moviesRatingByGenre.svg index 1881be1321..3f2fd2ab3f 100644 --- a/test/output/moviesRatingByGenre.svg +++ b/test/output/moviesRatingByGenre.svg @@ -301,3018 +301,3018 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/multiplicationTable.svg b/test/output/multiplicationTable.svg index 8c324e52bc..44f8141f3b 100644 --- a/test/output/multiplicationTable.svg +++ b/test/output/multiplicationTable.svg @@ -119,390 +119,390 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/test/output/musicRevenue.svg b/test/output/musicRevenue.svg index 473bcd4479..694f27e56d 100644 --- a/test/output/musicRevenue.svg +++ b/test/output/musicRevenue.svg @@ -81,51 +81,51 @@ 2015 - 8 - Track + <path fill="#a463f2" d="M40,189.819L52.6,192.692L65.201,193.262L77.801,178.039L90.436,139.038L103.037,116.665L115.637,167.593L128.238,191.35L140.873,195.217L153.473,219.666L166.073,218.011L178.674,203.203L191.309,207.905L203.909,200.715L216.51,174.181L229.11,158.618L241.745,157.818L254.346,139.323L266.946,140.034L279.546,112.85L292.181,92.031L304.782,44.439L317.382,46.792L329.983,50.622L342.618,65.183L355.218,33.695L367.819,20L380.419,37.442L393.054,59.56L405.654,89.596L418.255,112.423L430.855,108.719L443.49,118.411L456.091,136.792L468.691,164.585L481.292,207.021L493.927,224.065L506.527,241.403L519.127,243.173L531.728,247.832L544.363,249.255L556.963,256.939L569.564,256.801L582.164,243.755L594.799,226.524L607.4,213.234L620,196.234L620,196.234L607.4,213.234L594.799,226.524L582.164,243.755L569.564,256.801L556.963,256.939L544.363,249.255L531.728,247.832L519.127,243.173L506.527,241.403L493.927,224.065L481.292,207.021L468.691,164.585L456.091,136.792L443.49,118.411L430.855,108.719L418.255,112.423L405.654,89.596L393.054,59.56L380.419,37.442L367.819,20L355.218,33.695L342.618,65.183L329.983,50.622L317.382,46.792L304.782,44.439L292.181,92.031L279.546,112.85L266.946,140.034L254.346,139.323L241.745,157.818L229.11,158.618L216.51,174.181L203.909,200.715L191.309,207.905L178.674,203.203L166.073,218.011L153.473,221.157L140.873,208.984L128.238,216.92L115.637,205.277L103.037,174.796L90.436,192.543L77.801,225.692L65.201,236.586L52.6,237.23L40,233.851Z"><title>8 - Track Tape - CD + <path fill="#4269d0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.371L241.745,282.846L254.346,259.147L266.946,239.204L279.546,213.729L292.181,183.941L304.782,135.417L317.382,118.216L329.983,110.834L342.618,114.948L355.218,77.531L367.819,53.398L380.419,56.649L393.054,71.004L405.654,95.739L418.255,116.493L430.855,110.367L443.49,119.463L456.091,137.525L468.691,165.397L481.292,208.209L493.927,225.358L506.527,243.128L519.127,245.439L531.728,250.769L544.363,252.964L556.963,261.211L569.564,262.542L582.164,249.761L594.799,232.984L607.4,219.995L620,204.125L620,213.735L607.4,231.115L594.799,250.229L582.164,268.598L569.564,286.916L556.963,291.209L544.363,289.707L531.728,294.052L519.127,300.551L506.527,305.272L493.927,305.841L481.292,309.808L468.691,309.123L456.091,323.398L443.49,334.824L430.855,352.63L418.255,360.566L405.654,363.402L393.054,362.433L380.419,363.455L367.819,360.96L355.218,357.54L342.618,361.932L329.983,363.984L317.382,364.221L304.782,363.766L292.181,364.098L279.546,365.515L266.946,366.533L254.346,364.729L241.745,366.279L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>CD Disc - CD Single + <path fill="#4269d0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,282.824L254.346,258.964L266.946,238.174L279.546,212.444L292.181,182.674L304.782,133.903L317.382,115.307L329.983,106.143L342.618,108.155L355.218,72.302L367.819,48.061L380.419,53.336L393.054,69.211L405.654,95.303L418.255,115.71L430.855,110.05L443.49,119.24L456.091,137.373L468.691,165.161L481.292,208.144L493.927,225.3L506.527,243.075L519.127,245.377L531.728,250.713L544.363,252.922L556.963,261.15L569.564,262.522L582.164,249.757L594.799,232.96L607.4,219.993L620,204.122L620,204.125L607.4,219.995L594.799,232.984L582.164,249.761L569.564,262.542L556.963,261.211L544.363,252.964L531.728,250.769L519.127,245.439L506.527,243.128L493.927,225.358L481.292,208.209L468.691,165.397L456.091,137.525L443.49,119.463L430.855,110.367L418.255,116.493L405.654,95.739L393.054,71.004L380.419,56.649L367.819,53.398L355.218,77.531L342.618,114.948L329.983,110.834L317.382,118.216L304.782,135.417L292.181,183.941L279.546,213.729L266.946,239.204L254.346,259.147L241.745,282.846L229.11,299.371L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>CD Single Disc - Cassette + <path fill="#a463f2" d="M40,363.157L52.6,362.928L65.201,362.658L77.801,359.763L90.436,353.533L103.037,342.419L115.637,338.027L128.238,335.794L140.873,323.255L153.473,312.64L166.073,296.618L178.674,274.294L191.309,265.925L203.909,244.894L216.51,209.248L229.11,182.701L241.745,168.674L254.346,144.856L266.946,142.773L279.546,115.127L292.181,93.741L304.782,46.192L317.382,48.676L329.983,52.77L342.618,66.9L355.218,35.159L367.819,21.433L380.419,38.696L393.054,60.888L405.654,90.605L418.255,113.362L430.855,109.548L443.49,118.972L456.091,137.299L468.691,165.104L481.292,208.128L493.927,225.3L506.527,243.075L519.127,245.377L531.728,250.713L544.363,252.922L556.963,261.15L569.564,262.522L582.164,249.757L594.799,232.96L607.4,219.993L620,204.122L620,204.122L607.4,219.993L594.799,232.96L582.164,249.757L569.564,262.522L556.963,261.15L544.363,252.922L531.728,250.713L519.127,245.377L506.527,243.075L493.927,225.3L481.292,208.144L468.691,165.161L456.091,137.373L443.49,119.24L430.855,110.05L418.255,115.71L405.654,95.267L393.054,69.092L380.419,53.23L367.819,46.909L355.218,69.986L342.618,104.83L329.983,101.319L317.382,109.108L304.782,126.487L292.181,174.415L279.546,203.929L266.946,231.411L254.346,251.075L241.745,276.549L229.11,297.103L216.51,313.412L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Cassette Tape - Cassette Single + <path fill="#a463f2" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.412L229.11,297.103L241.745,276.549L254.346,251.075L266.946,231.411L279.546,203.929L292.181,174.415L304.782,126.487L317.382,109.108L329.983,101.319L342.618,104.83L355.218,69.986L367.819,46.909L380.419,53.23L393.054,69.092L405.654,95.267L418.255,115.71L430.855,110.05L443.49,119.24L456.091,137.373L468.691,165.161L481.292,208.144L493.927,225.3L506.527,243.075L519.127,245.377L531.728,250.713L544.363,252.922L556.963,261.15L569.564,262.522L582.164,249.757L594.799,232.96L607.4,219.993L620,204.122L620,204.122L607.4,219.993L594.799,232.96L582.164,249.757L569.564,262.522L556.963,261.15L544.363,252.922L531.728,250.713L519.127,245.377L506.527,243.075L493.927,225.3L481.292,208.144L468.691,165.161L456.091,137.373L443.49,119.24L430.855,110.05L418.255,115.71L405.654,95.303L393.054,69.211L380.419,53.336L367.819,48.061L355.218,72.302L342.618,108.155L329.983,106.143L317.382,115.307L304.782,133.903L292.181,182.674L279.546,212.444L266.946,238.174L254.346,258.964L241.745,282.824L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Cassette Single Tape - DVD Audio + <path fill="#ff725c" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,369.865L405.654,369.811L418.255,369.826L430.855,365.833L443.49,347.357L456.091,332.453L468.691,318.544L481.292,314.086L493.927,309.792L506.527,308.56L519.127,303.261L531.728,296.106L544.363,291.548L556.963,292.736L569.564,288.122L582.164,269.566L594.799,250.873L607.4,231.567L620,214.175L620,214.191L607.4,231.62L594.799,250.916L582.164,269.613L569.564,288.213L556.963,292.773L544.363,291.556L531.728,296.11L519.127,303.266L506.527,308.576L493.927,309.822L481.292,314.108L468.691,318.598L456.091,332.501L443.49,347.586L430.855,365.97L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>DVD Audio Other - Download Album + <path fill="#efb118" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,368.891L443.49,363.75L456.091,359.789L468.691,355.196L481.292,352.235L493.927,345.64L506.527,342.082L519.127,335.858L531.728,327.716L544.363,320.635L556.963,317.054L569.564,309.297L582.164,285.667L594.799,262.644L607.4,239.892L620,221.067L620,227.237L607.4,247.848L594.799,273.548L582.164,300.136L569.564,327.252L556.963,335.934L544.363,341.781L531.728,348.696L519.127,354.89L506.527,358.077L493.927,359.51L481.292,364.032L468.691,364.789L456.091,365.26L443.49,366.528L430.855,369.854L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Download Album Download - Download Music Video + <path fill="#efb118" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,365.97L443.49,356.217L456.091,347.846L468.691,338.961L481.292,332.252L493.927,322.919L506.527,316.79L519.127,308.176L531.728,298.652L544.363,293.238L556.963,293.892L569.564,289.134L582.164,270.552L594.799,251.495L607.4,232.017L620,214.527L620,214.556L607.4,232.053L594.799,251.54L582.164,270.623L569.564,289.242L556.963,294.122L544.363,293.525L531.728,299.015L519.127,308.751L506.527,317.461L493.927,323.681L481.292,333.019L468.691,339.505L456.091,348.237L443.49,356.292L430.855,365.97L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Download Music Video Download - Download Single + <path fill="#efb118" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,365.97L443.49,356.313L456.091,348.275L468.691,339.555L481.292,333.068L493.927,323.799L506.527,317.579L519.127,308.799L531.728,299.078L544.363,293.632L556.963,294.165L569.564,289.304L582.164,270.672L594.799,251.577L607.4,232.084L620,214.58L620,221.067L607.4,239.892L594.799,262.644L582.164,285.667L569.564,309.297L556.963,317.054L544.363,320.635L531.728,327.716L519.127,335.858L506.527,342.082L493.927,345.64L481.292,352.235L468.691,355.196L456.091,359.789L443.49,363.75L430.855,368.891L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Download Single Download - Kiosk + <path fill="#ff725c" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,365.97L443.49,356.292L456.091,348.237L468.691,339.505L481.292,333.019L493.927,323.681L506.527,317.461L519.127,308.751L531.728,299.015L544.363,293.525L556.963,294.122L569.564,289.242L582.164,270.623L594.799,251.54L607.4,232.053L620,214.556L620,214.58L607.4,232.084L594.799,251.577L582.164,270.672L569.564,289.304L556.963,294.165L544.363,293.632L531.728,299.078L519.127,308.799L506.527,317.579L493.927,323.799L481.292,333.068L468.691,339.555L456.091,348.275L443.49,356.313L430.855,365.97L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Kiosk Other - LP/EP + <path fill="#ff8ab7" d="M40,233.851L52.6,237.23L65.201,236.586L77.801,225.692L90.436,192.543L103.037,174.796L115.637,205.277L128.238,216.92L140.873,208.984L153.473,221.157L166.073,218.011L178.674,203.203L191.309,207.905L203.909,200.715L216.51,174.181L229.11,158.618L241.745,157.818L254.346,139.323L266.946,140.034L279.546,112.85L292.181,92.031L304.782,44.439L317.382,46.792L329.983,50.622L342.618,65.183L355.218,33.695L367.819,20L380.419,37.442L393.054,59.56L405.654,89.596L418.255,112.423L430.855,108.719L443.49,118.411L456.091,136.792L468.691,164.585L481.292,207.021L493.927,224.065L506.527,241.403L519.127,243.173L531.728,247.832L544.363,249.255L556.963,256.939L569.564,256.801L582.164,243.755L594.799,226.524L607.4,213.234L620,196.234L620,204.016L607.4,219.908L594.799,232.861L582.164,249.676L569.564,262.425L556.963,261.057L544.363,252.871L531.728,250.63L519.127,245.295L506.527,243.033L493.927,225.253L481.292,208.074L468.691,165.026L456.091,137.103L443.49,118.702L430.855,109.127L418.255,112.894L405.654,90.052L393.054,60.179L380.419,38.085L367.819,20.763L355.218,34.529L342.618,66.013L329.983,51.559L317.382,47.451L304.782,44.919L292.181,92.324L279.546,113.234L266.946,140.897L254.346,141.969L241.745,164.921L229.11,176.604L216.51,202.093L203.909,236.573L191.309,255.484L178.674,262.8L166.073,285.809L153.473,300.915L140.873,311.978L128.238,323.664L115.637,318.554L103.037,326.457L90.436,337.363L77.801,342.541L65.201,346.941L52.6,347.196L40,346.048Z"><title>LP/EP Vinyl - Limited Tier Paid Subscription + <path fill="#6cc5b0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,370L443.49,366.946L456.091,365.911L468.691,365.487L481.292,365.889L493.927,366.157L506.527,366.106L519.127,363.573L531.728,360.06L544.363,355.169L556.963,352.199L569.564,344.214L582.164,319.792L594.799,292.237L607.4,271.566L620,249.686L620,262.658L607.4,283.461L594.799,301.887L582.164,324.179L569.564,344.214L556.963,352.199L544.363,355.169L531.728,360.06L519.127,363.573L506.527,366.106L493.927,366.157L481.292,365.889L468.691,365.487L456.091,365.911L443.49,366.946L430.855,370L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Limited Tier Paid Subscription Streaming - Music Video (Physical) + <path fill="#ff725c" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,366.279L254.346,364.729L266.946,366.533L279.546,365.515L292.181,364.098L304.782,363.766L317.382,364.221L329.983,363.984L342.618,361.932L355.218,357.54L367.819,360.96L380.419,363.455L393.054,362.433L405.654,363.402L418.255,361.137L430.855,352.981L443.49,335.029L456.091,323.507L468.691,309.193L481.292,309.865L493.927,305.886L506.527,305.304L519.127,300.577L531.728,294.076L544.363,289.724L556.963,291.221L569.564,286.934L582.164,268.618L594.799,250.243L607.4,231.128L620,213.742L620,214.175L607.4,231.567L594.799,250.873L582.164,269.566L569.564,288.122L556.963,292.736L544.363,291.548L531.728,296.106L519.127,303.261L506.527,308.56L493.927,309.792L481.292,314.086L468.691,318.544L456.091,332.453L443.49,347.357L430.855,365.833L418.255,369.826L405.654,369.811L393.054,369.865L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Music Video (Physical) Other - On-Demand Streaming (Ad-Supported) + <path fill="#6cc5b0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,370L443.49,366.946L456.091,365.911L468.691,365.487L481.292,365.889L493.927,366.157L506.527,366.106L519.127,363.573L531.728,360.06L544.363,355.169L556.963,352.199L569.564,344.214L582.164,324.179L594.799,301.887L607.4,283.461L620,262.658L620,276.86L607.4,295.554L594.799,312.629L582.164,332.331L569.564,350.488L556.963,356.992L544.363,358.959L531.728,363.037L519.127,365.596L506.527,366.106L493.927,366.157L481.292,365.889L468.691,365.487L456.091,365.911L443.49,366.946L430.855,370L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>On-Demand Streaming (Ad-Supported) Streaming - Other Ad-Supported Streaming + <path fill="#6cc5b0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,369.854L443.49,366.528L456.091,365.26L468.691,364.789L481.292,364.032L493.927,359.51L506.527,358.077L519.127,354.89L531.728,348.696L544.363,341.781L556.963,335.934L569.564,327.252L582.164,300.136L594.799,273.548L607.4,247.848L620,227.237L620,231.163L607.4,251.85L594.799,277.818L582.164,301.49L569.564,327.252L556.963,335.934L544.363,341.781L531.728,348.696L519.127,354.89L506.527,358.077L493.927,359.51L481.292,364.032L468.691,364.789L456.091,365.26L443.49,366.528L430.855,369.854L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Other Ad-Supported Streaming Streaming - Other Digital + <path fill="#efb118" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,370L443.49,366.946L456.091,365.911L468.691,365.487L481.292,365.889L493.927,366.157L506.527,366.106L519.127,365.596L531.728,363.037L544.363,358.959L556.963,356.992L569.564,350.488L582.164,332.331L594.799,312.629L607.4,295.554L620,276.86L620,277.196L607.4,295.87L594.799,312.904L582.164,332.617L569.564,350.488L556.963,356.992L544.363,358.959L531.728,363.037L519.127,365.596L506.527,366.106L493.927,366.157L481.292,365.889L468.691,365.487L456.091,365.911L443.49,366.946L430.855,370L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Other Digital Download - Other Tapes + <path fill="#a463f2" d="M40,188.414L52.6,191.614L65.201,192.504L77.801,177.68L90.436,139.038L103.037,116.665L115.637,167.593L128.238,191.35L140.873,195.217L153.473,219.666L166.073,218.011L178.674,203.203L191.309,207.905L203.909,200.715L216.51,174.181L229.11,158.618L241.745,157.818L254.346,139.323L266.946,140.034L279.546,112.85L292.181,92.031L304.782,44.439L317.382,46.792L329.983,50.622L342.618,65.183L355.218,33.695L367.819,20L380.419,37.442L393.054,59.56L405.654,89.596L418.255,112.423L430.855,108.719L443.49,118.411L456.091,136.792L468.691,164.585L481.292,207.021L493.927,224.065L506.527,241.403L519.127,243.173L531.728,247.832L544.363,249.255L556.963,256.939L569.564,256.801L582.164,243.755L594.799,226.524L607.4,213.234L620,196.234L620,196.234L607.4,213.234L594.799,226.524L582.164,243.755L569.564,256.801L556.963,256.939L544.363,249.255L531.728,247.832L519.127,243.173L506.527,241.403L493.927,224.065L481.292,207.021L468.691,164.585L456.091,136.792L443.49,118.411L430.855,108.719L418.255,112.423L405.654,89.596L393.054,59.56L380.419,37.442L367.819,20L355.218,33.695L342.618,65.183L329.983,50.622L317.382,46.792L304.782,44.439L292.181,92.031L279.546,112.85L266.946,140.034L254.346,139.323L241.745,157.818L229.11,158.618L216.51,174.181L203.909,200.715L191.309,207.905L178.674,203.203L166.073,218.011L153.473,219.666L140.873,195.217L128.238,191.35L115.637,167.593L103.037,116.665L90.436,139.038L77.801,178.039L65.201,193.262L52.6,192.692L40,189.819Z"><title>Other Tapes Tape - Paid Subscription + <path fill="#6cc5b0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,370L443.49,366.946L456.091,365.911L468.691,365.487L481.292,365.889L493.927,366.157L506.527,366.106L519.127,365.596L531.728,363.037L544.363,358.959L556.963,356.992L569.564,350.488L582.164,332.617L594.799,312.904L607.4,295.87L620,277.196L620,370L607.4,370L594.799,370L582.164,370L569.564,370L556.963,370L544.363,370L531.728,370L519.127,370L506.527,370L493.927,370L481.292,370L468.691,370L456.091,370L443.49,370L430.855,370L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Paid Subscription Streaming - Ringtones & Ringbacks + <path fill="#efb118" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,365.97L443.49,347.586L456.091,332.501L468.691,318.598L481.292,314.108L493.927,309.822L506.527,308.576L519.127,303.266L531.728,296.11L544.363,291.556L556.963,292.773L569.564,288.213L582.164,269.613L594.799,250.916L607.4,231.62L620,214.191L620,214.527L607.4,232.017L594.799,251.495L582.164,270.552L569.564,289.134L556.963,293.892L544.363,293.238L531.728,298.652L519.127,308.176L506.527,316.79L493.927,322.919L481.292,332.252L468.691,338.961L456.091,347.846L443.49,356.217L430.855,365.97L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Ringtones & Ringbacks Download - SACD + <path fill="#4269d0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,366.279L254.346,364.729L266.946,366.533L279.546,365.515L292.181,364.098L304.782,363.766L317.382,364.221L329.983,363.984L342.618,361.932L355.218,357.54L367.819,360.96L380.419,363.455L393.054,362.433L405.654,363.402L418.255,360.566L430.855,352.63L443.49,334.824L456.091,323.398L468.691,309.123L481.292,309.808L493.927,305.841L506.527,305.272L519.127,300.551L531.728,294.052L544.363,289.707L556.963,291.209L569.564,286.916L582.164,268.598L594.799,250.229L607.4,231.115L620,213.735L620,213.742L607.4,231.128L594.799,250.243L582.164,268.618L569.564,286.934L556.963,291.221L544.363,289.724L531.728,294.076L519.127,300.577L506.527,305.304L493.927,305.886L481.292,309.865L468.691,309.193L456.091,323.507L443.49,335.029L430.855,352.981L418.255,361.137L405.654,363.402L393.054,362.433L380.419,363.455L367.819,360.96L355.218,357.54L342.618,361.932L329.983,363.984L317.382,364.221L304.782,363.766L292.181,364.098L279.546,365.515L266.946,366.533L254.346,364.729L241.745,366.279L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>SACD Disc - SoundExchange Distributions + <path fill="#6cc5b0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,369.854L443.49,366.528L456.091,365.26L468.691,364.789L481.292,364.032L493.927,359.51L506.527,358.077L519.127,354.89L531.728,348.696L544.363,341.781L556.963,335.934L569.564,327.252L582.164,301.49L594.799,277.818L607.4,251.85L620,231.163L620,245.366L607.4,267.021L594.799,288.452L582.164,316.213L569.564,340.791L556.963,348.995L544.363,351.913L531.728,356.741L519.127,360.08L506.527,362.646L493.927,362.408L481.292,365.889L468.691,365.487L456.091,365.911L443.49,366.946L430.855,370L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>SoundExchange Distributions Streaming - Synchronization + <path fill="#ff725c" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,370L178.674,370L191.309,370L203.909,370L216.51,370L229.11,370L241.745,370L254.346,370L266.946,370L279.546,370L292.181,370L304.782,370L317.382,370L329.983,370L342.618,370L355.218,370L367.819,370L380.419,370L393.054,370L405.654,370L418.255,370L430.855,370L443.49,366.946L456.091,365.911L468.691,365.487L481.292,365.889L493.927,362.408L506.527,362.646L519.127,360.08L531.728,356.741L544.363,351.913L556.963,348.995L569.564,340.791L582.164,316.213L594.799,288.452L607.4,267.021L620,245.366L620,249.686L607.4,271.566L594.799,292.237L582.164,319.792L569.564,344.214L556.963,352.199L544.363,355.169L531.728,360.06L519.127,363.573L506.527,366.106L493.927,366.157L481.292,365.889L468.691,365.487L456.091,365.911L443.49,366.946L430.855,370L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Synchronization Other - Vinyl Single + <path fill="#ff8ab7" d="M40,346.048L52.6,347.196L65.201,346.941L77.801,342.541L90.436,337.363L103.037,326.457L115.637,318.554L128.238,323.664L140.873,311.978L153.473,300.915L166.073,285.809L178.674,262.8L191.309,255.484L203.909,236.573L216.51,202.093L229.11,176.604L241.745,164.921L254.346,141.969L266.946,140.897L279.546,113.234L292.181,92.324L304.782,44.919L317.382,47.451L329.983,51.559L342.618,66.013L355.218,34.529L367.819,20.763L380.419,38.085L393.054,60.179L405.654,90.052L418.255,112.894L430.855,109.127L443.49,118.702L456.091,137.103L468.691,165.026L481.292,208.074L493.927,225.253L506.527,243.033L519.127,245.295L531.728,250.63L544.363,252.871L556.963,261.057L569.564,262.425L582.164,249.676L594.799,232.861L607.4,219.908L620,204.016L620,204.122L607.4,219.993L594.799,232.96L582.164,249.757L569.564,262.522L556.963,261.15L544.363,252.922L531.728,250.713L519.127,245.377L506.527,243.075L493.927,225.3L481.292,208.128L468.691,165.104L456.091,137.299L443.49,118.972L430.855,109.548L418.255,113.362L405.654,90.605L393.054,60.888L380.419,38.696L367.819,21.433L355.218,35.159L342.618,66.9L329.983,52.77L317.382,48.676L304.782,46.192L292.181,93.741L279.546,115.127L266.946,142.773L254.346,144.856L241.745,168.674L229.11,182.701L216.51,209.248L203.909,244.894L191.309,265.925L178.674,274.294L166.073,296.618L153.473,312.64L140.873,323.255L128.238,335.794L115.637,338.027L103.037,342.419L90.436,353.533L77.801,359.763L65.201,362.658L52.6,362.928L40,363.157Z"><title>Vinyl Single Vinyl diff --git a/test/output/musicRevenueCustomOrder.svg b/test/output/musicRevenueCustomOrder.svg index 409c41f43a..08b32ee398 100644 --- a/test/output/musicRevenueCustomOrder.svg +++ b/test/output/musicRevenueCustomOrder.svg @@ -81,51 +81,51 @@ 2015 - 8 - Track + <path fill="#a463f2" d="M40,325.968L52.6,325.462L65.201,326.676L77.801,322.347L90.436,316.495L103.037,311.869L115.637,332.316L128.238,310.224L140.873,309.489L153.473,311.148L166.073,296.618L178.674,274.294L191.309,265.925L203.909,244.894L216.51,209.248L229.11,182.701L241.745,168.674L254.346,144.856L266.946,142.773L279.546,115.127L292.181,93.741L304.782,46.192L317.382,48.676L329.983,52.77L342.618,66.9L355.218,35.159L367.819,21.433L380.419,38.696L393.054,60.888L405.654,90.605L418.255,113.362L430.855,109.548L443.49,118.972L456.091,137.299L468.691,165.104L481.292,208.128L493.927,225.3L506.527,243.075L519.127,245.377L531.728,250.713L544.363,252.922L556.963,261.15L569.564,262.522L582.164,249.757L594.799,232.96L607.4,219.993L620,204.122L620,204.122L607.4,219.993L594.799,232.96L582.164,249.757L569.564,262.522L556.963,261.15L544.363,252.922L531.728,250.713L519.127,245.377L506.527,243.075L493.927,225.3L481.292,208.128L468.691,165.104L456.091,137.299L443.49,118.972L430.855,109.548L418.255,113.362L405.654,90.605L393.054,60.888L380.419,38.696L367.819,21.433L355.218,35.159L342.618,66.9L329.983,52.77L317.382,48.676L304.782,46.192L292.181,93.741L279.546,115.127L266.946,142.773L254.346,144.856L241.745,168.674L229.11,182.701L216.51,209.248L203.909,244.894L191.309,265.925L178.674,274.294L166.073,296.618L153.473,312.64L140.873,323.255L128.238,335.794L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>8 - Track Tape - CD + <path fill="#4269d0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.371L241.745,286.567L254.346,264.418L266.946,242.671L279.546,218.215L292.181,189.843L304.782,141.651L317.382,123.995L329.983,116.85L342.618,123.017L355.218,89.991L367.819,62.438L380.419,63.194L393.054,78.571L405.654,102.337L418.255,125.927L430.855,127.737L443.49,154.639L456.091,184.127L468.691,226.274L481.292,268.402L493.927,289.517L506.527,307.856L519.127,314.889L531.728,326.717L544.363,333.257L556.963,340.002L569.564,345.626L582.164,351.164L594.799,352.755L607.4,358.881L620,360.39L620,370L607.4,370L594.799,370L582.164,370L569.564,370L556.963,370L544.363,370L531.728,370L519.127,370L506.527,370L493.927,370L481.292,370L468.691,370L456.091,370L443.49,370L430.855,370L418.255,370L405.654,370L393.054,370L380.419,370L367.819,370L355.218,370L342.618,370L329.983,370L317.382,370L304.782,370L292.181,370L279.546,370L266.946,370L254.346,370L241.745,370L229.11,370L216.51,370L203.909,370L191.309,370L178.674,370L166.073,370L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>CD Disc - CD Single + <path fill="#4269d0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,286.544L254.346,264.234L266.946,241.64L279.546,216.929L292.181,188.575L304.782,140.138L317.382,121.086L329.983,112.159L342.618,116.224L355.218,84.762L367.819,57.1L380.419,59.881L393.054,76.778L405.654,101.901L418.255,125.145L430.855,127.069L443.49,154.416L456.091,183.975L468.691,226.038L481.292,268.337L493.927,289.459L506.527,307.803L519.127,314.826L531.728,326.661L544.363,333.216L556.963,339.941L569.564,345.606L582.164,351.139L594.799,352.73L607.4,358.864L620,360.381L620,360.383L607.4,358.867L594.799,352.755L582.164,351.144L569.564,345.626L556.963,340.002L544.363,333.257L531.728,326.717L519.127,314.889L506.527,307.856L493.927,289.517L481.292,268.402L468.691,226.274L456.091,184.127L443.49,154.639L430.855,127.386L418.255,125.927L405.654,102.337L393.054,78.571L380.419,63.194L367.819,62.438L355.218,89.991L342.618,123.017L329.983,116.85L317.382,123.995L304.782,141.651L292.181,189.843L279.546,218.215L266.946,242.671L254.346,264.418L241.745,286.567L229.11,299.371L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>CD Single Disc - Cassette + <path fill="#a463f2" d="M40,319.124L52.6,318.391L65.201,319.334L77.801,312.109L90.436,300.028L103.037,284.288L115.637,300.343L128.238,335.794L140.873,323.255L153.473,312.64L166.073,296.618L178.674,274.294L191.309,265.925L203.909,244.894L216.51,209.752L229.11,184.638L241.745,174.948L254.346,152.745L266.946,149.536L279.546,123.641L292.181,101.999L304.782,53.608L317.382,54.875L329.983,57.593L342.618,70.225L355.218,37.475L367.819,22.585L380.419,38.802L393.054,61.007L405.654,90.641L418.255,113.362L430.855,109.548L443.49,118.972L456.091,137.299L468.691,165.104L481.292,208.128L493.927,225.3L506.527,243.075L519.127,245.377L531.728,250.713L544.363,252.922L556.963,261.15L569.564,262.522L582.164,249.757L594.799,232.96L607.4,219.993L620,204.122L620,204.122L607.4,219.993L594.799,232.96L582.164,249.757L569.564,262.522L556.963,261.15L544.363,252.922L531.728,250.713L519.127,245.377L506.527,243.075L493.927,225.3L481.292,208.144L468.691,165.161L456.091,137.373L443.49,119.24L430.855,110.05L418.255,115.71L405.654,95.303L393.054,69.211L380.419,53.336L367.819,48.061L355.218,72.302L342.618,108.155L329.983,106.143L317.382,115.307L304.782,133.903L292.181,182.674L279.546,212.444L266.946,238.174L254.346,258.964L241.745,282.824L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,332.316L103.037,311.869L90.436,316.495L77.801,322.347L65.201,326.676L52.6,325.462L40,325.968Z"><title>Cassette Tape - Cassette Single + <path fill="#a463f2" d="M40,317.72L52.6,317.312L65.201,318.576L77.801,311.751L90.436,300.028L103.037,284.288L115.637,300.343L128.238,310.224L140.873,309.489L153.473,311.148L166.073,296.618L178.674,274.294L191.309,265.925L203.909,244.894L216.51,209.248L229.11,182.701L241.745,168.674L254.346,144.856L266.946,142.773L279.546,115.127L292.181,93.741L304.782,46.192L317.382,48.676L329.983,52.77L342.618,66.9L355.218,35.159L367.819,21.433L380.419,38.696L393.054,60.888L405.654,90.605L418.255,113.362L430.855,109.548L443.49,118.972L456.091,137.299L468.691,165.104L481.292,208.128L493.927,225.3L506.527,243.075L519.127,245.377L531.728,250.713L544.363,252.922L556.963,261.15L569.564,262.522L582.164,249.757L594.799,232.96L607.4,219.993L620,204.122L620,204.122L607.4,219.993L594.799,232.96L582.164,249.757L569.564,262.522L556.963,261.15L544.363,252.922L531.728,250.713L519.127,245.377L506.527,243.075L493.927,225.3L481.292,208.128L468.691,165.104L456.091,137.299L443.49,118.972L430.855,109.548L418.255,113.362L405.654,90.641L393.054,61.007L380.419,38.802L367.819,22.585L355.218,37.475L342.618,70.225L329.983,57.593L317.382,54.875L304.782,53.608L292.181,101.999L279.546,123.641L266.946,149.536L254.346,152.745L241.745,174.948L229.11,184.638L216.51,209.752L203.909,244.894L191.309,265.925L178.674,274.294L166.073,296.618L153.473,311.148L140.873,309.489L128.238,310.224L115.637,300.343L103.037,284.288L90.436,300.028L77.801,311.751L65.201,318.576L52.6,317.312L40,317.72Z"><title>Cassette Single Tape - DVD Audio + <path fill="#ff725c" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,282.824L254.346,258.964L266.946,238.174L279.546,212.444L292.181,182.674L304.782,133.903L317.382,115.307L329.983,106.143L342.618,108.155L355.218,72.302L367.819,48.061L380.419,53.336L393.054,69.211L405.654,95.303L418.255,115.71L430.855,110.196L443.49,122.732L456.091,142.15L468.691,170.423L481.292,214.113L493.927,232.041L506.527,251.538L519.127,256.994L531.728,268.698L544.363,277.886L556.963,292.012L569.564,301.909L582.164,315.757L594.799,325.388L607.4,337.315L620,342.228L620,342.245L607.4,337.367L594.799,325.431L582.164,315.804L569.564,302L556.963,292.048L544.363,277.895L531.728,268.701L519.127,256.999L506.527,251.555L493.927,232.07L481.292,214.135L468.691,170.477L456.091,142.198L443.49,122.962L430.855,110.334L418.255,115.884L405.654,95.492L393.054,69.347L380.419,53.336L367.819,48.061L355.218,72.302L342.618,108.155L329.983,106.143L317.382,115.307L304.782,133.903L292.181,182.674L279.546,212.444L266.946,238.174L254.346,258.964L241.745,282.824L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>DVD Audio Other - Download Album + <path fill="#efb118" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,286.544L254.346,264.234L266.946,241.64L279.546,216.929L292.181,188.575L304.782,140.138L317.382,121.086L329.983,112.159L342.618,116.224L355.218,84.762L367.819,57.1L380.419,59.881L393.054,76.778L405.654,101.901L418.255,124.573L430.855,123.185L443.49,135.365L456.091,151.534L468.691,180.372L481.292,219.171L493.927,253.703L506.527,267.273L519.127,268.709L531.728,277.019L544.363,285.05L556.963,298.16L569.564,307.64L582.164,321.675L594.799,330.746L607.4,350.909L620,347.724L620,353.894L607.4,358.864L594.799,341.65L582.164,336.144L569.564,325.595L556.963,317.039L544.363,306.196L531.728,298L519.127,287.741L506.527,283.269L493.927,267.573L481.292,230.968L468.691,189.965L456.091,157.006L443.49,138.143L430.855,124.148L418.255,124.573L405.654,101.901L393.054,76.778L380.419,59.881L367.819,57.1L355.218,84.762L342.618,116.224L329.983,112.159L317.382,121.086L304.782,140.138L292.181,188.575L279.546,216.929L266.946,241.64L254.346,264.234L241.745,286.544L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Download Album Download - Download Music Video + <path fill="#efb118" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,286.544L254.346,264.234L266.946,241.64L279.546,216.929L292.181,188.575L304.782,140.138L317.382,121.086L329.983,112.159L342.618,116.224L355.218,84.762L367.819,57.1L380.419,59.881L393.054,76.778L405.654,101.901L418.255,124.573L430.855,123.185L443.49,135.29L456.091,151.144L468.691,179.829L481.292,218.404L493.927,239.843L506.527,258.388L519.127,263.224L531.728,274.114L544.363,283.08L556.963,296.811L569.564,306.611L582.164,320.38L594.799,329.846L607.4,342.352L620,347.023L620,347.052L607.4,342.387L594.799,329.891L582.164,320.451L569.564,306.72L556.963,297.04L544.363,283.368L531.728,274.477L519.127,263.8L506.527,259.059L493.927,240.605L481.292,219.171L468.691,180.372L456.091,151.534L443.49,135.365L430.855,123.185L418.255,124.573L405.654,101.901L393.054,76.778L380.419,59.881L367.819,57.1L355.218,84.762L342.618,116.224L329.983,112.159L317.382,121.086L304.782,140.138L292.181,188.575L279.546,216.929L266.946,241.64L254.346,264.234L241.745,286.544L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Download Music Video Download - Download Single + <path fill="#efb118" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,286.544L254.346,264.234L266.946,241.64L279.546,216.929L292.181,188.575L304.782,140.138L317.382,121.086L329.983,112.159L342.618,116.224L355.218,84.762L367.819,57.1L380.419,59.881L393.054,76.778L405.654,101.901L418.255,124.573L430.855,124.148L443.49,138.143L456.091,157.006L468.691,189.965L481.292,249.112L493.927,267.573L506.527,283.269L519.127,287.741L531.728,298L544.363,306.196L556.963,317.039L569.564,325.595L582.164,336.144L594.799,341.65L607.4,343.101L620,353.894L620,360.381L607.4,350.909L594.799,352.717L582.164,351.139L569.564,345.588L556.963,339.928L544.363,333.199L531.728,326.637L519.127,314.8L506.527,307.771L493.927,289.414L481.292,268.279L468.691,205.607L456.091,168.52L443.49,145.58L430.855,127.069L418.255,124.573L405.654,101.901L393.054,76.778L380.419,59.881L367.819,57.1L355.218,84.762L342.618,116.224L329.983,112.159L317.382,121.086L304.782,140.138L292.181,188.575L279.546,216.929L266.946,241.64L254.346,264.234L241.745,286.544L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Download Single Download - Kiosk + <path fill="#ff725c" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,282.824L254.346,258.964L266.946,238.174L279.546,212.444L292.181,182.674L304.782,133.903L317.382,115.307L329.983,106.143L342.618,108.155L355.218,72.302L367.819,48.061L380.419,53.336L393.054,69.211L405.654,95.303L418.255,115.71L430.855,110.196L443.49,122.712L456.091,142.112L468.691,170.373L481.292,214.135L493.927,232.07L506.527,251.555L519.127,256.999L531.728,268.701L544.363,277.895L556.963,292.048L569.564,301.846L582.164,315.804L594.799,325.351L607.4,337.283L620,342.245L620,342.27L607.4,337.315L594.799,325.388L582.164,315.853L569.564,301.909L556.963,292.092L544.363,278.001L531.728,268.765L519.127,257.047L506.527,251.672L493.927,232.188L481.292,214.183L468.691,170.423L456.091,142.15L443.49,122.732L430.855,110.196L418.255,115.71L405.654,95.303L393.054,69.211L380.419,53.336L367.819,48.061L355.218,72.302L342.618,108.155L329.983,106.143L317.382,115.307L304.782,133.903L292.181,182.674L279.546,212.444L266.946,238.174L254.346,258.964L241.745,282.824L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Kiosk Other - LP/EP + <path fill="#ff8ab7" d="M40,205.523L52.6,207.346L65.201,208.221L77.801,194.902L90.436,155.208L103.037,132.626L115.637,187.065L128.238,203.48L140.873,206.494L153.473,231.391L166.073,228.821L178.674,214.696L191.309,218.346L203.909,209.036L216.51,181.336L229.11,164.715L241.745,161.571L254.346,139.323L266.946,140.034L279.546,112.85L292.181,92.031L304.782,44.439L317.382,46.792L329.983,50.622L342.618,65.183L355.218,34.325L367.819,20.67L380.419,38.052L393.054,59.56L405.654,89.596L418.255,112.89L430.855,108.719L443.49,118.681L456.091,136.988L468.691,164.662L481.292,207.075L493.927,224.111L506.527,241.445L519.127,243.255L531.728,247.914L544.363,249.306L556.963,257.032L569.564,256.898L582.164,243.836L594.799,226.623L607.4,213.318L620,196.341L620,204.122L607.4,219.993L594.799,232.96L582.164,249.757L569.564,262.522L556.963,261.15L544.363,252.922L531.728,250.713L519.127,245.377L506.527,243.075L493.927,225.3L481.292,208.128L468.691,165.104L456.091,137.299L443.49,118.972L430.855,109.127L418.255,113.362L405.654,90.052L393.054,60.179L380.419,38.696L367.819,21.433L355.218,35.159L342.618,66.013L329.983,51.559L317.382,47.451L304.782,44.919L292.181,92.324L279.546,113.234L266.946,140.897L254.346,141.969L241.745,168.674L229.11,182.701L216.51,209.248L203.909,244.894L191.309,265.925L178.674,274.294L166.073,296.618L153.473,311.148L140.873,309.489L128.238,310.224L115.637,300.343L103.037,284.288L90.436,300.028L77.801,311.751L65.201,318.576L52.6,317.312L40,317.72Z"><title>LP/EP Vinyl - Limited Tier Paid Subscription + <path fill="#6cc5b0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,282.824L254.346,258.964L266.946,238.174L279.546,212.444L292.181,182.674L304.782,133.903L317.382,115.307L329.983,106.143L342.618,108.155L355.218,72.302L367.819,48.061L380.419,53.336L393.054,69.211L405.654,95.303L418.255,115.71L430.855,110.05L443.49,119.24L456.091,137.373L468.691,165.161L481.292,208.144L493.927,225.3L506.527,243.075L519.127,245.377L531.728,250.713L544.363,252.922L556.963,261.15L569.564,262.522L582.164,251.111L594.799,237.23L607.4,223.996L620,208.048L620,221.02L607.4,235.89L594.799,246.879L582.164,255.498L569.564,262.522L556.963,261.15L544.363,252.922L531.728,250.713L519.127,245.377L506.527,243.075L493.927,225.3L481.292,208.144L468.691,165.161L456.091,137.373L443.49,119.24L430.855,110.05L418.255,115.71L405.654,95.303L393.054,69.211L380.419,53.336L367.819,48.061L355.218,72.302L342.618,108.155L329.983,106.143L317.382,115.307L304.782,133.903L292.181,182.674L279.546,212.444L266.946,238.174L254.346,258.964L241.745,282.824L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Limited Tier Paid Subscription Streaming - Music Video (Physical) + <path fill="#ff725c" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,282.824L254.346,258.964L266.946,238.174L279.546,212.444L292.181,182.674L304.782,133.903L317.382,115.307L329.983,106.143L342.618,108.155L355.218,72.302L367.819,48.061L380.419,53.336L393.054,69.347L405.654,95.492L418.255,115.884L430.855,110.334L443.49,122.962L456.091,142.198L468.691,170.477L481.292,214.183L493.927,235.937L506.527,251.672L519.127,257.047L531.728,268.765L544.363,278.001L556.963,292.092L569.564,302L582.164,315.853L594.799,325.431L607.4,337.367L620,342.27L620,342.703L607.4,337.806L594.799,326.06L582.164,316.801L569.564,303.188L556.963,293.607L544.363,279.825L531.728,270.795L519.127,259.731L506.527,254.929L493.927,239.843L481.292,218.404L468.691,179.829L456.091,151.144L443.49,135.29L430.855,123.185L418.255,124.573L405.654,101.901L393.054,76.778L380.419,59.881L367.819,57.1L355.218,84.762L342.618,116.224L329.983,112.159L317.382,121.086L304.782,140.138L292.181,188.575L279.546,216.929L266.946,241.64L254.346,264.234L241.745,286.544L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Music Video (Physical) Other - On-Demand Streaming (Ad-Supported) + <path fill="#6cc5b0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,282.824L254.346,258.964L266.946,238.174L279.546,212.444L292.181,182.674L304.782,133.903L317.382,115.307L329.983,106.143L342.618,108.155L355.218,72.302L367.819,48.061L380.419,53.336L393.054,69.211L405.654,95.303L418.255,115.71L430.855,110.05L443.49,119.24L456.091,137.373L468.691,165.161L481.292,208.144L493.927,225.3L506.527,243.075L519.127,245.377L531.728,250.713L544.363,252.922L556.963,261.15L569.564,262.522L582.164,255.498L594.799,257.513L607.4,235.89L620,221.02L620,235.222L607.4,247.983L594.799,268.256L582.164,263.65L569.564,268.796L556.963,265.943L544.363,256.713L531.728,253.689L519.127,247.4L506.527,243.075L493.927,225.3L481.292,208.144L468.691,165.161L456.091,137.373L443.49,119.24L430.855,110.05L418.255,115.71L405.654,95.303L393.054,69.211L380.419,53.336L367.819,48.061L355.218,72.302L342.618,108.155L329.983,106.143L317.382,115.307L304.782,133.903L292.181,182.674L279.546,212.444L266.946,238.174L254.346,258.964L241.745,282.824L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>On-Demand Streaming (Ad-Supported) Streaming - Other Ad-Supported Streaming + <path fill="#6cc5b0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,282.824L254.346,258.964L266.946,238.174L279.546,212.444L292.181,182.674L304.782,133.903L317.382,115.307L329.983,106.143L342.618,108.155L355.218,72.302L367.819,48.061L380.419,53.336L393.054,69.211L405.654,95.303L418.255,115.71L430.855,110.05L443.49,119.24L456.091,137.373L468.691,165.161L481.292,208.144L493.927,225.3L506.527,243.075L519.127,245.377L531.728,250.713L544.363,252.922L556.963,261.15L569.564,262.522L582.164,249.757L594.799,232.96L607.4,219.993L620,204.122L620,208.048L607.4,223.996L594.799,237.23L582.164,251.111L569.564,262.522L556.963,261.15L544.363,252.922L531.728,250.713L519.127,245.377L506.527,243.075L493.927,225.3L481.292,208.144L468.691,165.161L456.091,137.373L443.49,119.24L430.855,110.05L418.255,115.71L405.654,95.303L393.054,69.211L380.419,53.336L367.819,48.061L355.218,72.302L342.618,108.155L329.983,106.143L317.382,115.307L304.782,133.903L292.181,182.674L279.546,212.444L266.946,238.174L254.346,258.964L241.745,282.824L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Other Ad-Supported Streaming Streaming - Other Digital + <path fill="#efb118" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,286.544L254.346,264.234L266.946,241.64L279.546,216.929L292.181,188.575L304.782,140.138L317.382,121.086L329.983,112.159L342.618,116.224L355.218,84.762L367.819,57.1L380.419,59.881L393.054,76.778L405.654,101.901L418.255,124.573L430.855,123.185L443.49,135.29L456.091,151.144L468.691,179.829L481.292,218.404L493.927,239.843L506.527,258.388L519.127,263.224L531.728,274.114L544.363,283.08L556.963,296.811L569.564,306.611L582.164,320.451L594.799,329.891L607.4,342.387L620,347.387L620,347.724L607.4,342.703L594.799,330.167L582.164,320.737L569.564,306.611L556.963,296.811L544.363,283.08L531.728,274.114L519.127,263.224L506.527,258.388L493.927,239.843L481.292,218.404L468.691,179.829L456.091,151.144L443.49,135.29L430.855,123.185L418.255,124.573L405.654,101.901L393.054,76.778L380.419,59.881L367.819,57.1L355.218,84.762L342.618,116.224L329.983,112.159L317.382,121.086L304.782,140.138L292.181,188.575L279.546,216.929L266.946,241.64L254.346,264.234L241.745,286.544L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Other Digital Download - Other Tapes + <path fill="#a463f2" d="M40,317.72L52.6,317.312L65.201,318.576L77.801,311.751L90.436,300.028L103.037,284.288L115.637,300.343L128.238,310.224L140.873,309.489L153.473,311.148L166.073,296.618L178.674,274.294L191.309,265.925L203.909,244.894L216.51,209.248L229.11,182.701L241.745,168.674L254.346,144.856L266.946,142.773L279.546,115.127L292.181,93.741L304.782,46.192L317.382,48.676L329.983,52.77L342.618,66.9L355.218,35.159L367.819,21.433L380.419,38.696L393.054,60.888L405.654,90.605L418.255,113.362L430.855,109.548L443.49,118.972L456.091,137.299L468.691,165.104L481.292,208.128L493.927,225.3L506.527,243.075L519.127,245.377L531.728,250.713L544.363,252.922L556.963,261.15L569.564,262.522L582.164,249.757L594.799,232.96L607.4,219.993L620,204.122L620,204.122L607.4,219.993L594.799,232.96L582.164,249.757L569.564,262.522L556.963,261.15L544.363,252.922L531.728,250.713L519.127,245.377L506.527,243.075L493.927,225.3L481.292,208.128L468.691,165.104L456.091,137.299L443.49,118.972L430.855,109.548L418.255,113.362L405.654,90.605L393.054,60.888L380.419,38.696L367.819,21.433L355.218,35.159L342.618,66.9L329.983,52.77L317.382,48.676L304.782,46.192L292.181,93.741L279.546,115.127L266.946,142.773L254.346,144.856L241.745,168.674L229.11,182.701L216.51,209.248L203.909,244.894L191.309,265.925L178.674,274.294L166.073,296.618L153.473,311.148L140.873,309.489L128.238,310.224L115.637,300.343L103.037,284.288L90.436,300.028L77.801,312.109L65.201,319.334L52.6,318.391L40,319.124Z"><title>Other Tapes Tape - Paid Subscription + <path fill="#6cc5b0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,282.824L254.346,258.964L266.946,238.174L279.546,212.444L292.181,182.674L304.782,133.903L317.382,115.307L329.983,106.143L342.618,108.155L355.218,72.302L367.819,48.061L380.419,53.336L393.054,69.211L405.654,95.303L418.255,115.71L430.855,110.05L443.49,119.658L456.091,138.023L468.691,165.86L481.292,210.001L493.927,228.198L506.527,243.075L519.127,247.4L531.728,253.689L544.363,266.846L556.963,265.943L569.564,282.335L582.164,278.374L594.799,268.256L607.4,263.153L620,249.425L620,342.228L607.4,337.283L594.799,325.351L582.164,315.757L569.564,301.846L556.963,278.951L544.363,277.886L531.728,260.653L519.127,251.804L506.527,246.969L493.927,232.041L481.292,214.113L468.691,170.373L456.091,142.112L443.49,122.712L430.855,110.05L418.255,115.71L405.654,95.303L393.054,69.211L380.419,53.336L367.819,48.061L355.218,72.302L342.618,108.155L329.983,106.143L317.382,115.307L304.782,133.903L292.181,182.674L279.546,212.444L266.946,238.174L254.346,258.964L241.745,282.824L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Paid Subscription Streaming - Ringtones & Ringbacks + <path fill="#efb118" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,286.544L254.346,264.234L266.946,241.64L279.546,216.929L292.181,188.575L304.782,140.138L317.382,121.086L329.983,112.159L342.618,116.224L355.218,84.762L367.819,57.1L380.419,59.881L393.054,76.778L405.654,101.901L418.255,124.573L430.855,123.185L443.49,145.58L456.091,168.52L468.691,205.607L481.292,230.968L493.927,240.605L506.527,259.059L519.127,263.8L531.728,274.477L544.363,283.368L556.963,297.04L569.564,306.72L582.164,320.737L594.799,330.167L607.4,342.703L620,347.052L620,347.387L607.4,343.101L594.799,330.746L582.164,321.675L569.564,307.64L556.963,298.16L544.363,285.05L531.728,277.019L519.127,268.709L506.527,267.273L493.927,253.703L481.292,249.112L468.691,225.969L456.091,183.866L443.49,154.211L430.855,123.185L418.255,124.573L405.654,101.901L393.054,76.778L380.419,59.881L367.819,57.1L355.218,84.762L342.618,116.224L329.983,112.159L317.382,121.086L304.782,140.138L292.181,188.575L279.546,216.929L266.946,241.64L254.346,264.234L241.745,286.544L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Ringtones & Ringbacks Download - SACD + <path fill="#4269d0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,286.544L254.346,264.234L266.946,241.64L279.546,216.929L292.181,188.575L304.782,140.138L317.382,121.086L329.983,112.159L342.618,116.224L355.218,84.762L367.819,57.1L380.419,59.881L393.054,76.778L405.654,101.901L418.255,124.573L430.855,127.386L443.49,154.211L456.091,183.866L468.691,225.969L481.292,268.279L493.927,289.414L506.527,307.771L519.127,314.8L531.728,326.637L544.363,333.199L556.963,339.928L569.564,345.588L582.164,351.144L594.799,352.717L607.4,358.867L620,360.383L620,360.39L607.4,358.881L594.799,352.73L582.164,351.164L569.564,345.606L556.963,339.941L544.363,333.216L531.728,326.661L519.127,314.826L506.527,307.803L493.927,289.459L481.292,268.337L468.691,226.038L456.091,183.975L443.49,154.416L430.855,127.737L418.255,125.145L405.654,101.901L393.054,76.778L380.419,59.881L367.819,57.1L355.218,84.762L342.618,116.224L329.983,112.159L317.382,121.086L304.782,140.138L292.181,188.575L279.546,216.929L266.946,241.64L254.346,264.234L241.745,286.544L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>SACD Disc - SoundExchange Distributions + <path fill="#6cc5b0" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,282.824L254.346,258.964L266.946,238.174L279.546,212.444L292.181,182.674L304.782,133.903L317.382,115.307L329.983,106.143L342.618,108.155L355.218,72.302L367.819,48.061L380.419,53.336L393.054,69.211L405.654,95.303L418.255,115.71L430.855,110.05L443.49,119.24L456.091,137.373L468.691,165.161L481.292,208.144L493.927,225.3L506.527,246.969L519.127,251.804L531.728,260.653L544.363,256.713L556.963,278.951L569.564,268.796L582.164,263.65L594.799,246.879L607.4,247.983L620,235.222L620,249.425L607.4,263.153L594.799,257.513L582.164,278.374L569.564,282.335L556.963,292.012L544.363,266.846L531.728,268.698L519.127,256.994L506.527,251.538L493.927,228.198L481.292,210.001L468.691,165.86L456.091,138.023L443.49,119.658L430.855,110.196L418.255,115.71L405.654,95.303L393.054,69.211L380.419,53.336L367.819,48.061L355.218,72.302L342.618,108.155L329.983,106.143L317.382,115.307L304.782,133.903L292.181,182.674L279.546,212.444L266.946,238.174L254.346,258.964L241.745,282.824L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>SoundExchange Distributions Streaming - Synchronization + <path fill="#ff725c" d="M40,370L52.6,370L65.201,370L77.801,370L90.436,370L103.037,370L115.637,370L128.238,370L140.873,370L153.473,370L166.073,369.31L178.674,366.025L191.309,355.528L203.909,336.071L216.51,313.915L229.11,299.039L241.745,282.824L254.346,258.964L266.946,238.174L279.546,212.444L292.181,182.674L304.782,133.903L317.382,115.307L329.983,106.143L342.618,108.155L355.218,72.302L367.819,48.061L380.419,53.336L393.054,69.211L405.654,95.303L418.255,115.71L430.855,110.196L443.49,122.712L456.091,142.112L468.691,170.373L481.292,214.113L493.927,232.188L506.527,254.929L519.127,259.731L531.728,270.795L544.363,279.825L556.963,293.607L569.564,303.188L582.164,316.801L594.799,326.06L607.4,337.806L620,342.703L620,347.023L607.4,342.352L594.799,329.846L582.164,320.38L569.564,306.611L556.963,296.811L544.363,283.08L531.728,274.114L519.127,263.224L506.527,258.388L493.927,235.937L481.292,214.113L468.691,170.373L456.091,142.112L443.49,122.712L430.855,110.196L418.255,115.71L405.654,95.303L393.054,69.211L380.419,53.336L367.819,48.061L355.218,72.302L342.618,108.155L329.983,106.143L317.382,115.307L304.782,133.903L292.181,182.674L279.546,212.444L266.946,238.174L254.346,258.964L241.745,282.824L229.11,299.039L216.51,313.915L203.909,336.071L191.309,355.528L178.674,366.025L166.073,369.31L153.473,370L140.873,370L128.238,370L115.637,370L103.037,370L90.436,370L77.801,370L65.201,370L52.6,370L40,370Z"><title>Synchronization Other - Vinyl Single + <path fill="#ff8ab7" d="M40,188.414L52.6,191.614L65.201,192.504L77.801,177.68L90.436,139.038L103.037,116.665L115.637,167.593L128.238,191.35L140.873,195.217L153.473,219.666L166.073,218.011L178.674,203.203L191.309,207.905L203.909,200.715L216.51,174.181L229.11,158.618L241.745,157.818L254.346,141.969L266.946,140.897L279.546,113.234L292.181,92.324L304.782,44.919L317.382,47.451L329.983,51.559L342.618,66.013L355.218,33.695L367.819,20L380.419,37.442L393.054,60.179L405.654,90.052L418.255,112.423L430.855,109.127L443.49,118.411L456.091,136.792L468.691,164.585L481.292,207.021L493.927,224.065L506.527,241.403L519.127,243.173L531.728,247.832L544.363,249.255L556.963,256.939L569.564,256.801L582.164,243.755L594.799,226.524L607.4,213.234L620,196.234L620,196.341L607.4,213.318L594.799,226.623L582.164,243.836L569.564,256.898L556.963,257.032L544.363,249.306L531.728,247.914L519.127,243.255L506.527,241.445L493.927,224.111L481.292,207.075L468.691,164.662L456.091,136.988L443.49,118.681L430.855,109.548L418.255,112.89L405.654,90.605L393.054,60.888L380.419,38.052L367.819,20.67L355.218,34.325L342.618,66.9L329.983,52.77L317.382,48.676L304.782,46.192L292.181,93.741L279.546,115.127L266.946,142.773L254.346,144.856L241.745,161.571L229.11,164.715L216.51,181.336L203.909,209.036L191.309,218.346L178.674,214.696L166.073,228.821L153.473,231.391L140.873,206.494L128.238,203.48L115.637,187.065L103.037,132.626L90.436,155.208L77.801,194.902L65.201,208.221L52.6,207.346L40,205.523Z"><title>Vinyl Single Vinyl diff --git a/test/output/penguinAnnotated.svg b/test/output/penguinAnnotated.svg index 825c67fc85..7246b08805 100644 --- a/test/output/penguinAnnotated.svg +++ b/test/output/penguinAnnotated.svg @@ -51,14 +51,14 @@ - FEMALE (73) - FEMALE (34) - FEMALE (58) - MALE (73) - MALE (34) - MALE (61) - null (6) - null (5) + FEMALE (73) + FEMALE (34) + FEMALE (58) + MALE (73) + MALE (34) + MALE (61) + null (6) + null (5) Count of penguinsgrouped by species and colored by sex diff --git a/test/output/penguinCulmenDelaunaySpecies.svg b/test/output/penguinCulmenDelaunaySpecies.svg index 03e5190189..6055a03f48 100644 --- a/test/output/penguinCulmenDelaunaySpecies.svg +++ b/test/output/penguinCulmenDelaunaySpecies.svg @@ -71,24 +71,24 @@ - + - + - + - + - + - + \ No newline at end of file diff --git a/test/output/penguinCulmenVoronoi.svg b/test/output/penguinCulmenVoronoi.svg index 6f5625689f..c78d2bcbb9 100644 --- a/test/output/penguinCulmenVoronoi.svg +++ b/test/output/penguinCulmenVoronoi.svg @@ -414,347 +414,347 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/penguinDensityZ.html b/test/output/penguinDensityZ.html index ebcf0140db..0a4b2369b7 100644 --- a/test/output/penguinDensityZ.html +++ b/test/output/penguinDensityZ.html @@ -24,11 +24,11 @@ align-items: center; margin-right: 1em; } - + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo
@@ -124,24 +124,24 @@ - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Gentoo - Gentoo - Gentoo - Gentoo - Gentoo - Gentoo - Gentoo - Gentoo - Gentoo + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Gentoo + Gentoo + Gentoo + Gentoo + Gentoo + Gentoo + Gentoo + Gentoo + Gentoo @@ -149,24 +149,24 @@ - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Chinstrap - Chinstrap - Chinstrap - Chinstrap - Chinstrap - Chinstrap - Chinstrap - Chinstrap - Chinstrap + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Chinstrap + Chinstrap + Chinstrap + Chinstrap + Chinstrap + Chinstrap + Chinstrap + Chinstrap + Chinstrap @@ -174,15 +174,15 @@ - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie - Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie + Adelie diff --git a/test/output/penguinFacetAnnotated.svg b/test/output/penguinFacetAnnotated.svg index 234b533deb..9a17e035f1 100644 --- a/test/output/penguinFacetAnnotated.svg +++ b/test/output/penguinFacetAnnotated.svg @@ -96,23 +96,23 @@ - - - - - + + + + + - - - - - + + + + + - - - + + + diff --git a/test/output/penguinFacetAnnotatedX.svg b/test/output/penguinFacetAnnotatedX.svg index eb79024153..096b526ed2 100644 --- a/test/output/penguinFacetAnnotatedX.svg +++ b/test/output/penguinFacetAnnotatedX.svg @@ -88,23 +88,23 @@ - - - - - + + + + + - - - - - + + + + + - - - + + + diff --git a/test/output/penguinFacetDodgeIsland.html b/test/output/penguinFacetDodgeIsland.html index 3ac0dc62b2..af6d446909 100644 --- a/test/output/penguinFacetDodgeIsland.html +++ b/test/output/penguinFacetDodgeIsland.html @@ -24,11 +24,11 @@ align-items: center; margin-right: 1em; } - + - Biscoe + Biscoe - Dream + Dream Torgersen
@@ -113,352 +113,352 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/output/penguinFacetDodgeSymbol.html b/test/output/penguinFacetDodgeSymbol.html index ef1bc88849..6ae05e27c5 100644 --- a/test/output/penguinFacetDodgeSymbol.html +++ b/test/output/penguinFacetDodgeSymbol.html @@ -24,11 +24,11 @@ align-items: center; margin-right: 1em; } - + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo @@ -83,348 +83,348 @@ ↑ body_mass_g - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/penguinIslandUnknown.svg b/test/output/penguinIslandUnknown.svg index f3056ec56e..b47f04a4be 100644 --- a/test/output/penguinIslandUnknown.svg +++ b/test/output/penguinIslandUnknown.svg @@ -54,9 +54,9 @@ - - - + + + diff --git a/test/output/penguinMassSpecies.svg b/test/output/penguinMassSpecies.svg index 01dbbed9c8..a43d29bfd3 100644 --- a/test/output/penguinMassSpecies.svg +++ b/test/output/penguinMassSpecies.svg @@ -78,35 +78,35 @@ Body mass (g) → - Adelie FEMALE (6) + <rect x="41" y="343.93617021276594" width="72" height="26.063829787234056" fill="#4269d0"><title>Adelie FEMALE (6) Adelie null (1) - Adelie FEMALE (42) + <rect x="114" y="195" width="71" height="175" fill="#4269d0"><title>Adelie FEMALE (42) Adelie MALE (3) Adelie null (2) - Adelie MALE (32) + <rect x="186" y="154.04255319148936" width="72" height="215.95744680851064" fill="#4269d0"><title>Adelie MALE (32) Adelie FEMALE (25) Adelie null (1) - Adelie MALE (30) + <rect x="259" y="254.5744680851064" width="71" height="115.42553191489361" fill="#4269d0"><title>Adelie MALE (30) Adelie null (1) - Adelie MALE (8) - Chinstrap FEMALE (2) - Chinstrap FEMALE (11) + <rect x="331" y="340.2127659574468" width="72" height="29.787234042553223" fill="#4269d0"><title>Adelie MALE (8) + Chinstrap FEMALE (2) + Chinstrap FEMALE (11) Chinstrap MALE (4) - Chinstrap FEMALE (20) + <rect x="186" y="23.72340425531913" width="72" height="130.31914893617022" fill="#efb118"><title>Chinstrap FEMALE (20) Chinstrap MALE (15) - Chinstrap MALE (12) + <rect x="259" y="206.17021276595744" width="71" height="48.404255319148945" fill="#efb118"><title>Chinstrap MALE (12) Chinstrap FEMALE (1) - Chinstrap MALE (3) - Gentoo FEMALE (1) - Gentoo FEMALE (14) + <rect x="331" y="329.04255319148933" width="72" height="11.170212765957444" fill="#efb118"><title>Chinstrap MALE (3) + Gentoo FEMALE (1) + Gentoo FEMALE (14) Gentoo null (1) - Gentoo FEMALE (35) + <rect x="331" y="180.10638297872342" width="72" height="148.93617021276592" fill="#ff725c"><title>Gentoo FEMALE (35) Gentoo null (3) Gentoo MALE (2) - Gentoo MALE (26) + <rect x="404" y="243.40425531914897" width="71" height="126.59574468085103" fill="#ff725c"><title>Gentoo MALE (26) Gentoo FEMALE (8) - Gentoo MALE (29) - Gentoo MALE (4) + Gentoo MALE (29) + Gentoo MALE (4) diff --git a/test/output/penguinSexMassCulmenSpecies.svg b/test/output/penguinSexMassCulmenSpecies.svg index 1d08050353..ba0f6edac3 100644 --- a/test/output/penguinSexMassCulmenSpecies.svg +++ b/test/output/penguinSexMassCulmenSpecies.svg @@ -205,105 +205,105 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/test/output/penguinSizeSymbols.html b/test/output/penguinSizeSymbols.html index 695772b2b3..79674fc33f 100644 --- a/test/output/penguinSizeSymbols.html +++ b/test/output/penguinSizeSymbols.html @@ -24,11 +24,11 @@ align-items: center; margin-right: 1em; } - + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo @@ -122,348 +122,348 @@ Body mass (g) → - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/penguinSpeciesGroup.svg b/test/output/penguinSpeciesGroup.svg index b4ebb621d6..8839f02cd8 100644 --- a/test/output/penguinSpeciesGroup.svg +++ b/test/output/penguinSpeciesGroup.svg @@ -43,9 +43,9 @@ Frequency → - - - + + + Adelie diff --git a/test/output/penguinSpeciesImageFilter.svg b/test/output/penguinSpeciesImageFilter.svg index 938c00ccc9..ea1a896cf0 100644 --- a/test/output/penguinSpeciesImageFilter.svg +++ b/test/output/penguinSpeciesImageFilter.svg @@ -50,9 +50,9 @@ species - - - + + + diff --git a/test/output/penguinSpeciesIsland.svg b/test/output/penguinSpeciesIsland.svg index 8ac84920da..c96627bee5 100644 --- a/test/output/penguinSpeciesIsland.svg +++ b/test/output/penguinSpeciesIsland.svg @@ -60,11 +60,11 @@ species - - - - - + + + + + diff --git a/test/output/penguinSpeciesIslandRelative.svg b/test/output/penguinSpeciesIslandRelative.svg index c142517c62..dd5a490844 100644 --- a/test/output/penguinSpeciesIslandRelative.svg +++ b/test/output/penguinSpeciesIslandRelative.svg @@ -73,15 +73,15 @@ - - - + + + - + - + diff --git a/test/output/penguinSpeciesIslandSex.svg b/test/output/penguinSpeciesIslandSex.svg index b5b080e578..df812a3895 100644 --- a/test/output/penguinSpeciesIslandSex.svg +++ b/test/output/penguinSpeciesIslandSex.svg @@ -160,23 +160,23 @@ - - - - - - - - + + + + + + + + - - + + - - - + + + diff --git a/test/output/penguinVoronoi1D.svg b/test/output/penguinVoronoi1D.svg index ccd616b192..14efe4cfdb 100644 --- a/test/output/penguinVoronoi1D.svg +++ b/test/output/penguinVoronoi1D.svg @@ -35,1030 +35,1030 @@ body_mass_g → - Adelie (MALE) + <path d="M201.18058288361422,0L201.18052546327405,30L197.1527779286142,30L197.1527825777169,0Z" fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path d="M181.04164687455392,0L181.04168171928973,30L177.01385173207882,30L177.0139278753263,0Z" fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path d="M346.1805175590641,30L346.18059304268314,0L350.20830001289386,0L350.20836314347093,30Z" fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (null) + <path fill="#4269d0"><title>Adelie (null) Torgersen - Adelie (null) + <path fill="#4269d0"><title>Adelie (null) Torgersen - Adelie (null) + <path fill="#4269d0"><title>Adelie (null) Torgersen - Adelie (null) + <path fill="#4269d0"><title>Adelie (null) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path d="M317.98614958190575,30L317.9860727532543,0L324.0277940203273,0L324.02776345100403,30Z" fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path d="M132.70837229409864,0L132.70829463840946,30L128.68057888843023,30L128.68053590173434,0Z" fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path d="M275.6944417596831,0L275.69443982826346,30L267.6388730979733,30L267.638905444604,0Z" fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path d="M114.58332232007535,0L114.58334949525134,30L108.5416434603081,30L108.5416941096706,0Z" fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path d="M120.62503749133616,0L120.62496505075026,30L114.58334949525134,30L114.58332232007535,0Z" fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path d="M128.68053590173434,0L128.68057888843023,30L124.65278696244403,30L124.65276367421538,0Z" fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path d="M98.47223720862752,0L98.47220454979491,30L92.43058906257454,30L92.43051917341998,0Z" fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path d="M76.31940600896156,30L76.3194839325058,0L82.36109455452372,0L82.3611274604146,30Z" fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (MALE) + <path d="M144.79163308039443,30L144.79169818170368,0L148.81940608337607,0L148.81948061265462,30Z" fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (null) + <path d="M76.3194839325058,0L76.31940600896156,30L70.2777953747487,30L70.27776340301583,0Z" fill="#4269d0"><title>Adelie (null) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path d="M267.638905444604,0L267.6388730979733,30L259.58334427255613,30L259.58332938881216,0Z" fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path d="M152.84723922430052,0L152.84721006477974,30L148.81948061265462,30L148.81940608337607,0Z" fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path d="M189.0971842536139,30L189.09725966316242,0L193.12496660136787,0L193.12502990139177,30Z" fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path d="M104.51384953917162,0L104.51392757728755,30L98.47220454979491,30L98.47223720862752,0Z" fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path d="M177.0139278753263,0L177.01385173207882,30L172.9861430521298,30L172.98608159556983,0Z" fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path d="M58.194435540787424,0L58.19445926248486,30L42.083332844722065,30L42.08333905649524,0Z" fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path d="M259.58332938881216,0L259.58334427255613,30L253.5416606548588,30L253.54167764145947,0Z" fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path d="M313.9583503232869,0L313.95831242029635,30L307.9166757845127,30L307.9166530086645,0Z" fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path d="M243.47223216358503,0L243.47220671393083,30L237.4305760926657,30L237.43053057910126,0Z" fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path d="M350.20836314347093,30L350.20830001289386,0L354.236115765969,0L354.2361114052442,30Z" fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path d="M138.7499835558014,0L138.7500150729403,30L132.70829463840946,30L132.70837229409864,0Z" fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path d="M168.95833167667547,0L168.95833009276177,30L164.93052771290883,30L164.93058716646527,0Z" fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path d="M297.84722057901774,0L297.8472286731956,30L291.80555310853725,30L291.805564439134,0Z" fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path d="M354.2361114052442,30L354.236115765969,0L358.2639163222456,0L358.26385870662807,30Z" fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path d="M88.4027415531264,30L88.40281267694584,0L92.43051917341998,0L92.43058906257454,30Z" fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path d="M64.23607925975584,30L64.23614615225246,0L70.27776340301583,0L70.2777953747487,30Z" fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path d="M108.5416941096706,0L108.5416434603081,30L104.51392757728755,30L104.51384953917162,0Z" fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path d="M366.3194667800277,0L366.31942671987883,30L362.2917045451874,30L362.2916273158196,0Z" fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path d="M213.26389985076756,0L213.26387355874758,30L209.23609325926105,30L209.23613356705138,0Z" fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path d="M281.73612015650525,30L281.7360971441389,0L285.76386910845633,0L285.76391233596587,30Z" fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Biscoe - Adelie (MALE) + <path d="M253.54167764145947,0L253.5416606548588,30L249.51392232385223,30L249.51385256381124,0Z" fill="#4269d0"><title>Adelie (MALE) Biscoe - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path d="M221.31947941797284,0L221.31941267480065,30L217.29170390708427,30L217.2916303468953,0Z" fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path d="M88.40281267694584,0L88.4027415531264,30L82.3611274604146,30L82.36109455452372,0Z" fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path d="M120.62496505075026,30L120.62503749133616,0L124.65276367421538,0L124.65278696244403,30Z" fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path d="M291.805564439134,0L291.80555310853725,30L285.76391233596587,30L285.76386910845633,0Z" fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Torgersen - Adelie (MALE) + <path d="M156.8749792077094,30L156.87501685792216,0L160.9027394548966,0L160.90281623199576,30Z" fill="#4269d0"><title>Adelie (MALE) Torgersen - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path d="M313.95831242029635,30L313.9583503232869,0L317.9860727532543,0L317.98614958190575,30Z" fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path d="M237.43053057910126,0L237.4305760926657,30L233.40273935998007,30L233.40281726613432,0Z" fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path d="M281.7360971441389,0L281.73612015650525,30L275.69443982826346,30L275.6944417596831,0Z" fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path d="M156.87501685792216,0L156.8749792077094,30L152.84721006477974,30L152.84723922430052,0Z" fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path d="M197.1527825777169,0L197.1527779286142,30L193.12502990139177,30L193.12496660136787,0Z" fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Adelie (FEMALE) + <path fill="#4269d0"><title>Adelie (FEMALE) Dream - Adelie (MALE) + <path fill="#4269d0"><title>Adelie (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path d="M227.3610967669347,0L227.36112870186142,30L221.31941267480065,30L221.31947941797284,0Z" fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path d="M164.93058716646527,0L164.93052771290883,30L160.90281623199576,30L160.9027394548966,0Z" fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path d="M172.98608159556983,0L172.9861430521298,30L168.95833009276177,30L168.95833167667547,0Z" fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path d="M144.79169818170368,0L144.79163308039443,30L138.7500150729403,30L138.7499835558014,0Z" fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path d="M64.23614615225246,0L64.23607925975584,30L58.19445926248486,30L58.194435540787424,0Z" fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path d="M209.23613356705138,0L209.23609325926105,30L205.2083712413503,30L205.20829397057983,0Z" fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (FEMALE) + <path d="M217.2916303468953,0L217.29170390708427,30L213.26387355874758,30L213.26389985076756,0Z" fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path d="M20,30L20,0L42.08333905649524,0L42.083332844722065,30Z" fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (MALE) + <path d="M233.40281726613432,0L233.40273935998007,30L227.36112870186142,30L227.3610967669347,0Z" fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (FEMALE) + <path d="M189.09725966316242,0L189.0971842536139,30L185.0694625634091,30L185.0694304900878,0Z" fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path d="M243.47220671393083,30L243.47223216358503,0L249.51385256381124,0L249.51392232385223,30Z" fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (FEMALE) + <path d="M185.0694304900878,0L185.0694625634091,30L181.04168171928973,30L181.04164687455392,0Z" fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Chinstrap (MALE) + <path d="M201.18052546327405,30L201.18058288361422,0L205.20829397057983,0L205.2083712413503,30Z" fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (MALE) + <path fill="#efb118"><title>Chinstrap (MALE) Dream - Chinstrap (FEMALE) + <path fill="#efb118"><title>Chinstrap (FEMALE) Dream - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M509.3055690529682,30L509.30553960895264,0L517.3611098992941,0L517.361119587852,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M324.02776345100403,30L324.0277940203273,0L330.0694148320279,0L330.06947646625434,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M346.18059304268314,0L346.1805175590641,30L342.15279602326143,30L342.1527636868134,0Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M533.472220509316,30L533.4722168543434,0L545.5555505601063,0L545.5555582838861,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M620,0L620,30L589.8611129221783,30L589.8611125044947,0Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M366.31942671987883,30L366.3194667800277,0L372.36110231111127,0L372.36112585744894,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M460.97222365477444,0L460.97222812357745,30L452.9166818075012,30L452.91665020794636,0Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (FEMALE) + <path d="M307.9166530086645,0L307.9166757845127,30L301.87496634263863,30L301.8750316028728,0Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (null) + <path fill="#ff725c"><title>Gentoo (null) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (FEMALE) + <path d="M404.5833365089645,30L404.58333737376114,0L412.6389038225948,0L412.6388712187134,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M565.6944559545888,30L565.694429416199,0L589.8611125044947,0L589.8611129221783,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M420.6944483443502,30L420.69443442422323,0L428.74998907865535,0L428.75001610853553,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M469.02779366290554,0L469.02776027386705,30L460.97222812357745,30L460.97222365477444,0Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (MALE) + <path d="M493.194457348966,0L493.19443650544974,30L485.1389059492565,30L485.1388761244209,0Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M372.36112585744894,30L372.36110231111127,0L378.4028126832142,0L378.40274609028046,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M382.4305583525107,30L382.43054778617346,0L386.4583082542937,0L386.4583614832782,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M444.86109914700495,30L444.8611162690258,0L452.91665020794636,0L452.9166818075012,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M501.24998611857035,30L501.2500075972234,0L509.30553960895264,0L509.3055690529682,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (null) + <path fill="#ff725c"><title>Gentoo (null) Biscoe - Gentoo (MALE) + <path d="M525.4166497749337,30L525.416683098542,0L533.4722168543434,0L533.472220509316,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M358.26385870662807,30L358.2639163222456,0L362.2916273158196,0L362.2917045451874,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (MALE) + <path d="M412.6388712187134,30L412.6389038225948,0L420.69443442422323,0L420.6944483443502,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M557.6388734437647,30L557.6388987318817,0L565.694429416199,0L565.6944559545888,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M469.02776027386705,30L469.02779366290554,0L477.0833255400153,0L477.08333444094154,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M501.2500075972234,0L501.24998611857035,30L493.19443650544974,30L493.194457348966,0Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M334.09718510600567,30L334.0972611851675,0L338.12498033447395,0L338.12501492049176,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M378.40274609028046,30L378.4028126832142,0L382.43054778617346,0L382.4305583525107,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M390.48607271152474,30L390.48615059922207,0L394.5138640257929,0L394.51390930437447,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (FEMALE) + <path d="M338.12501492049176,30L338.12498033447395,0L342.1527636868134,0L342.15279602326143,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M444.8611162690258,0L444.86109914700495,30L436.80554520539465,30L436.8055699489546,0Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M394.51390930437447,30L394.5138640257929,0L398.5416586241414,0L398.54167924574955,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M477.08333444094154,30L477.0833255400153,0L485.1388761244209,0L485.1389059492565,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (null) + <path fill="#ff725c"><title>Gentoo (null) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M330.06947646625434,30L330.0694148320279,0L334.0972611851675,0L334.09718510600567,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M398.54167924574955,30L398.5416586241414,0L404.58333737376114,0L404.5833365089645,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M545.5555582838861,30L545.5555505601063,0L557.6388987318817,0L557.6388734437647,30Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M301.8750316028728,0L301.87496634263863,30L297.8472286731956,30L297.84722057901774,0Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (null) + <path fill="#ff725c"><title>Gentoo (null) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M386.4583614832782,30L386.4583082542937,0L390.48615059922207,0L390.48607271152474,30Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (FEMALE) + <path fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path d="M525.416683098542,0L525.4166497749337,30L517.361119587852,30L517.3611098992941,0Z" fill="#ff725c"><title>Gentoo (MALE) Biscoe - Gentoo (FEMALE) + <path d="M436.8055699489546,0L436.80554520539465,30L428.75001610853553,30L428.74998907865535,0Z" fill="#ff725c"><title>Gentoo (FEMALE) Biscoe - Gentoo (MALE) + <path fill="#ff725c"><title>Gentoo (MALE) Biscoe diff --git a/test/output/pointerLinkedRectInterval.svg b/test/output/pointerLinkedRectInterval.svg index 987ae0bdf5..6cb6b205d5 100644 --- a/test/output/pointerLinkedRectInterval.svg +++ b/test/output/pointerLinkedRectInterval.svg @@ -57,14 +57,14 @@ - + - - + + - + \ No newline at end of file diff --git a/test/output/rasterPenguinsBarycentric.svg b/test/output/rasterPenguinsBarycentric.svg index ae08a3dfeb..1a9aa4bf7f 100644 --- a/test/output/rasterPenguinsBarycentric.svg +++ b/test/output/rasterPenguinsBarycentric.svg @@ -66,350 +66,350 @@ body_mass_g → - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/rasterPenguinsBlur.svg b/test/output/rasterPenguinsBlur.svg index 089974381c..22ba6b9113 100644 --- a/test/output/rasterPenguinsBlur.svg +++ b/test/output/rasterPenguinsBlur.svg @@ -66,350 +66,350 @@ body_mass_g → - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/rasterPenguinsRandomWalk.svg b/test/output/rasterPenguinsRandomWalk.svg index 9ecba0ead2..646cf8fe43 100644 --- a/test/output/rasterPenguinsRandomWalk.svg +++ b/test/output/rasterPenguinsRandomWalk.svg @@ -66,350 +66,350 @@ body_mass_g → - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/reducerScaleOverrideFunction.svg b/test/output/reducerScaleOverrideFunction.svg index b703d49c88..0d7b9a63d1 100644 --- a/test/output/reducerScaleOverrideFunction.svg +++ b/test/output/reducerScaleOverrideFunction.svg @@ -86,18 +86,18 @@ - - - + + + - - - + + + - - + + \ No newline at end of file diff --git a/test/output/reducerScaleOverrideImplementation.svg b/test/output/reducerScaleOverrideImplementation.svg index b703d49c88..0d7b9a63d1 100644 --- a/test/output/reducerScaleOverrideImplementation.svg +++ b/test/output/reducerScaleOverrideImplementation.svg @@ -86,18 +86,18 @@ - - - + + + - - - + + + - - + + \ No newline at end of file diff --git a/test/output/reducerScaleOverrideName.svg b/test/output/reducerScaleOverrideName.svg index b703d49c88..0d7b9a63d1 100644 --- a/test/output/reducerScaleOverrideName.svg +++ b/test/output/reducerScaleOverrideName.svg @@ -86,18 +86,18 @@ - - - + + + - - - + + + - - + + \ No newline at end of file diff --git a/test/output/sfCovidDeaths.svg b/test/output/sfCovidDeaths.svg index f2866c5a57..fe3d79a79c 100644 --- a/test/output/sfCovidDeaths.svg +++ b/test/output/sfCovidDeaths.svg @@ -60,9 +60,9 @@ specimen_collection_date → - - - + + + diff --git a/test/output/stocksIndex.svg b/test/output/stocksIndex.svg index 0a292e9877..ef7c18e4b6 100644 --- a/test/output/stocksIndex.svg +++ b/test/output/stocksIndex.svg @@ -70,10 +70,10 @@ - - - - + + + + AAPL diff --git a/test/output/symbolLegendColorFill.html b/test/output/symbolLegendColorFill.html index a148c89022..5a74de1b6f 100644 --- a/test/output/symbolLegendColorFill.html +++ b/test/output/symbolLegendColorFill.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendColorStroke.html b/test/output/symbolLegendColorStroke.html index 8ecaebdd92..2ef5a5a44b 100644 --- a/test/output/symbolLegendColorStroke.html +++ b/test/output/symbolLegendColorStroke.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendExplicitColor.html b/test/output/symbolLegendExplicitColor.html index a148c89022..5a74de1b6f 100644 --- a/test/output/symbolLegendExplicitColor.html +++ b/test/output/symbolLegendExplicitColor.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendImplicitRange.html b/test/output/symbolLegendImplicitRange.html index a148c89022..5a74de1b6f 100644 --- a/test/output/symbolLegendImplicitRange.html +++ b/test/output/symbolLegendImplicitRange.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/symbolLegendOpacityColor.html b/test/output/symbolLegendOpacityColor.html index 7792fa1f4b..bba69de5e8 100644 --- a/test/output/symbolLegendOpacityColor.html +++ b/test/output/symbolLegendOpacityColor.html @@ -23,17 +23,17 @@ align-items: center; margin-right: 1em; } - + - A + A - B + B - C + C - D + D - E + E F \ No newline at end of file diff --git a/test/output/tipAreaStack.svg b/test/output/tipAreaStack.svg index 1aea61378c..3a2510763a 100644 --- a/test/output/tipAreaStack.svg +++ b/test/output/tipAreaStack.svg @@ -53,20 +53,20 @@ 2010 - - - - - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/tipBinStack.svg b/test/output/tipBinStack.svg index 7c3585c939..1002f95457 100644 --- a/test/output/tipBinStack.svg +++ b/test/output/tipBinStack.svg @@ -68,122 +68,122 @@ weight → - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/tipDot.svg b/test/output/tipDot.svg index 9468d89741..a656d2155e 100644 --- a/test/output/tipDot.svg +++ b/test/output/tipDot.svg @@ -54,348 +54,348 @@ culmen_length_mm → - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/tipDotFilter.svg b/test/output/tipDotFilter.svg index 455607dd71..5f0eba3e15 100644 --- a/test/output/tipDotFilter.svg +++ b/test/output/tipDotFilter.svg @@ -54,341 +54,341 @@ culmen_length_mm → - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/output/tipFacetX.svg b/test/output/tipFacetX.svg index cf5c227c4c..4a9abb6e85 100644 --- a/test/output/tipFacetX.svg +++ b/test/output/tipFacetX.svg @@ -82,116 +82,116 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + diff --git a/test/output/title.html b/test/output/title.html index 06047878db..28dea7851f 100644 --- a/test/output/title.html +++ b/test/output/title.html @@ -26,11 +26,11 @@

A subtitle about body_mass_g

align-items: center; margin-right: 1em; } - + - Adelie + Adelie - Chinstrap + Chinstrap Gentoo @@ -70,348 +70,348 @@

A subtitle about body_mass_g

body_mass_g →
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/test/output/usCongressAgeColorExplicit.svg b/test/output/usCongressAgeColorExplicit.svg index c055128ed1..6034eefec9 100644 --- a/test/output/usCongressAgeColorExplicit.svg +++ b/test/output/usCongressAgeColorExplicit.svg @@ -67,893 +67,893 @@ Age → - Alexandria Ocasio-Cortez - Abby Finkenauer - Katie Hill - Josh Harder - Lauren Underwood - Max Rose - Elise M. Stefanik - Mike Gallagher - Conor Lamb - Joe Neguse - Xochitl Torres Small - Anthony Gonzalez - William R. Timmons IV - Dan Crenshaw - Patrick Murphy - Trey Hollingsworth - Haley M. Stevens - Guy Reschenthaler - Colin Z. Allred - Matt Gaetz - Andy Kim - Joe Cunningham - Lance Gooden - Jared F. Golden - Aaron Schock - Tulsi Gabbard - Michael F. Q. San Nicolas - Ilhan Omar - Bryan Steil - Carlos Curbelo - Ruben J. Kihuen - Justin Amash - Eric Swalwell - Joseph P. Kennedy III - Jason Smith - Lee M. Zeldin - Brian J. Mast - Sharice Davids - Chris Pappas - Scott Taylor - Ruben Gallego - Pete Aguilar - Jim Banks - Jason Crow - Abigail Davis Spanberger - Josh Hawley - Ron DeSantis - Jaime Herrera Beutler - Adam Kinzinger - Seth Moulton - Stephanie N. Murphy - Darren Soto - Mike Levin - W. Gregory Steube - Anthony Brindisi - David G. Valadao - Tom Cotton - Markwayne Mullin - Brendan F. Boyle - Will Hurd - Antonio Delgado - Benjamin Quayle - Trey Radel - Marlin A. Stutzman - Kevin Yoder - Ryan A. Costello - Duncan Hunter - Martha Roby - Kyrsten Sinema - Ro Khanna - Nanette Diaz Barragán - Jenniffer González-Colón - Steve Watkins - Elissa Slotkin - Rashida Tlaib - Kelly Armstrong - Kendra S. Horn - Dusty Johnson - Mike Garcia - Jim Bridenstine - Jared Polis - Mia B. Love - Patrick T. McHenry - Grace Meng - Josh Gottheimer - Michael Cloud - Lizzie Fletcher - Elaine G. Luria - Vance M. McAllister - André Carson - Cory Gardner - Joaquin Castro - Derek Kilmer - Jimmy Gomez - Katie Porter - Michael Waltz - Ayanna Pressley - Ben McAdams - Dan Boren - Jon Runyan - Stephen Lee Fincher - Christopher Murphy - Devin Nunes - Cedric L. Richmond - Tim Ryan - Andy Barr - Raja Krishnamoorthi - Brian K. Fitzpatrick - Steven Horsford - Jahana Hayes - Russ Fulcher - Lori Trahan - David W. Jolly - Beto O’Rourke - Thomas A. Garrett, Jr. - Ben Ray Luján - Todd Young - Brian Schatz - Raul Ruiz - Garret Graves - David Rouzer - Ben Sasse - James Comer - Mike Johnson - Jodey C. Arrington - Angie Craig - Mikie Sherrill - Van Taylor - Chip Roy - Ben Cline - Heath Shuler - Kristi L. Noem - Sean P. Duffy - Martin Heinrich - Mike Lee - Tom Reed - Marco Rubio - Thomas Massie - Richard Hudson - Marc A. Veasey - Alexander X. Mooney - Ted Budd - Gilbert Ray Cisneros, Jr. - Debbie Mucarsel-Powell - Sean Casten - Jeffrey M. Landry - Michael G. Grimm - Frank C. Guinta - Todd Rokita - Thomas J. Rooney - Paul D. Ryan - Tom Graves - Steven M. Palazzo - Adrian Smith - Rob Woodall - Rodney Davis - Hakeem S. Jeffries - Ted Cruz - Joni Ernst - Warren Davidson - Greg Stanton - Michael Guest - Denver Riggleman - Kelly Loeffler - William M. Cowan - Robert Hurt - Robert J. Dold - Luke Messer - Bill Huizenga - Cathy McMorris Rodgers - Austin Scott - Linda T. Sánchez - Cory A. Booker - Ted Lieu - Mark Walker - Jimmy Panetta - Dean Phillips - Veronica Escobar - Jason Altmire - Tim Griffin - Daniel B. Maffei - Kelly Ayotte - Tim Huelskamp - David Young - James Lankford - Tammy Duckworth - George Holding - Darin LaHood - Jennifer Wexton - Kim Schrier - Connie Mack - Mark Takai - Mick Mulvaney - Jason Chaffetz - Jeff Denham - Raúl R. Labrador - Mike Bishop - Bruce Westerman - Vicente Gonzalez - Chrissy Houlahan - Randy Hultgren - Stephen Knight - Kirsten E. Gillibrand - Kathy Castor - Eric A. "Rick" Crawford - Theodore E. Deutch - Jeff Duncan - James A. Himes - Daniel Lipinski - Debbie Wasserman Schultz - Doug Collins - Sean Patrick Maloney - Stacey E. Plaskett - Trent Kelly - A. Drew Ferguson IV - David Kustoff - Liz Cheney - Ross Spano - Pete Stauber - Susie Lee - Martha McSally - Chris Jacobs - Jesse L. Jackson Jr. - David Rivera - John Sullivan - Jeff Chiesa - Steve Southerland II - Erik Paulsen - John Ratcliffe - Robert B. Aderholt - Rick Larsen - Kevin McCarthy - Steve Scalise - Tim Scott - Terri A. Sewell - Adam Smith - Steve Stivers - Ami Bera - Norma J. Torres - Kathleen M. Rice - Pramila Jayapal - Cynthia Axne - Tom Malinowski - John W. Rose - Fred Keller - Robert T. Schilling - Renee L. Ellmers - Christopher P. Gibson - Trey Gowdy - Timothy J. Walz - Dave Brat - Michael F. Bennet - Yvette D. Clarke - Scott DesJarlais - Brett Guthrie - Jim Jordan - James R. Langevin - Jared Huffman - Mark Pocan - Dan Sullivan - Kamala D. Harris - Catherine Cortez Masto - Salud O. Carbajal - Lloyd Smucker - Daniel Meuser - Tim Burchett - Mark E. Green - Dan Bishop - Betty Sutton - Eric Cantor - Mark L. Pryor - Mike Rogers - Joe Garcia - Michael G. Fitzpatrick - Gwen Graham - Mike Pompeo - Keith Ellison - Lynn Jenkins - John K. Delaney - Steve Russell - Christopher A. Coons - Gus M. Bilirakis - Sam Graves - Ron Kind - Rand Paul - Tony Cárdenas - Jackie Walorski - Filemon Vela - Katherine M. Clark - Barry Loudermilk - Don Bacon - TJ Cox - Gregory F. Murphy - Mark S. Critz - Todd Russell Platts - Laura Richardson - Mark Begich - Lee Terry - Patrick J. Tiberi - Joseph Crowley - Jeff Flake - Keith J. Rothfus - Mimi Walters - Karen C. Handel - Tammy Baldwin - Larry Bucshon - Charles J. "Chuck" Fleischmann - Michael T. McCaul - Pete Olson - John P. Sarbanes - David Schweikert - Suzan K. DelBene - Ann Wagner - Steve Daines - Scott Perry - John Katko - Lisa Blunt Rochester - Jamie Raskin - Thomas R. Suozzi - Troy Balderson - Jim Hagedorn - Mary Bono Mack - Mike Ross - Joe Walsh - Allen B. West - Pete P. Gallego - David Vitter - Joseph J. Heck - Ryan K. Zinke - Blake Farenthold - Peter J. Roskam - Bill Shuster - Claudia Tenney - David N. Cicilline - Mario Diaz-Balart - John Thune - Patrick J. Toomey - Juan Vargas - Cheri Bustos - Kevin Cramer - Matt Cartwright - John R. Moolenaar - Tom Emmer - Bradley Scott Schneider - Clay Higgins - Anthony G. Brown - Paul Mitchell - A. Donald McEachin - Greg Gianforte - Kevin Hern - Harley Rouda - Jim Matheson - John E. Walsh - E. Scott Rigell - Loretta Sanchez - Charles W. Dent - Evan H. Jenkins - Dean Heller - Mark Sanford - David A. Trott - Thomas MacArthur - Robert P. Casey, Jr. - Amy Klobuchar - Jeff Fortenberry - Vicky Hartzler - Frank D. Lucas - Adam B. Schiff - Michael R. Turner - Doug LaMalfa - Mark Takano - Susan W. Brooks - Chris Stewart - Jody B. Hice - Mike Bost - Thom Tillis - Roger W. Marshall - John R. Curtis - Lucy McBath - Andy Levin - Debra A. Haaland - Scott P. Brown - Rick Berg - Ben Chandler - Chip Cravaack - Nan A. S. Hayworth - Mike Pence - Jo Bonner - Mark Kirk - Scott Garrett - Jeff Miller - Pedro R. Pierluisi - Curt Clawson - Michelle Lujan Grisham - Dennis A. Ross - Elizabeth H. Esty - Barbara Comstock - Brenda Jones - Mark Meadows - Brian Higgins - James P. McGovern - Glenn Thompson - Chris Van Hollen - Robert J. Wittman - Ken Buck - Cindy Hyde-Smith - Mary Gay Scanlon - Madeleine Dean - Enid Greene Waldholtz - Steve Austria - Russ Carnahan - Kathleen C. Hochul - Alan Nunnelee - Donna F. Edwards - Steve Israel - Matt Salmon - Alan Grayson - Xavier Becerra - James B. Renacci - Maria Cantwell - Paul A. Gosar - H. Morgan Griffith - Gary C. Peters - Mike Quigley - Mike Rogers - John Shimkus - Mac Thornberry - Mark E. Amodei - Donald M. Payne, Jr. - Scott H. Peters - Daniel T. Kildee - Brad R. Wenstrup - Tim Kaine - Donald Norcross - Margaret Wood Hassan - Andy Biggs - J. Luis Correa - Tina Smith - Debbie Lesko - Hansen Clarke - Tim Holden - Robert E. Andrews - Bruce L. Braley - Cresent Hardy - Trent Franks - Jeb Hensarling - Bill Cassidy - Diana DeGette - Andy Harris - John Hoeven - Lisa Murkowski - Greg Walden - Steve Womack - David P. Joyce - Tom Rice - Earl L. "Buddy" Carter - Val Butler Demings - Jacky Rosen - Joseph D. Morelle - Susan Wild - John Joyce - Thomas P. Tiffany - Sandy Adams - Michele Bachmann - Mike McIntyre - Steve Stockman - Chaka Fattah - Charles W. Boustany Jr. - John C. Carney Jr. - Reid J. Ribble - Lou Barletta - John Abney Culberson - Gregg Harper - Daniel M. Donovan, Jr. - Jon Tester - Jeff Merkley - Wm. Lacy Clay - Robert E. Latta - Tom McClintock - Scott R. Tipton - Ann M. Kuster - Robin L. Kelly - J. French Hill - Charlie Crist - Ron Estes - Jesús G. "Chuy" García - Greg Pence - Denny Rehberg - Mary L. Landrieu - John Barrow - John Campbell - Jim Gerlach - Jack Kingston - Michael H. Michaud - Patrick Meehan - Mike Coffman - Joe Donnelly - Pete Sessions - Heidi Heitkamp - Rod Blum - Jason Lewis - Sheldon Whitehouse - Lindsey Graham - Kevin Brady - Richard Burr - Henry Cuellar - Ron Johnson - Billy Long - Stephen F. Lynch - Chellie Pingree - Rob Portman - Gregorio Kilili Camacho Sablan - Bill Foster - Ted S. Yoho - Bradley Byrne - Dan Newhouse - Glenn Grothman - David J. Trone - Steven C. LaTourette - Candice S. Miller - Cynthia M. Lummis - Tom Price - Robert Menendez - Mark R. Warner - Mo Brooks - Jim Cooper - Bill Flores - Bob Gibbs - Bill Johnson - Henry C. "Hank" Johnson, Jr. - Doug Lamborn - Betty McCollum - Jerry Moran - Brad Sherman - Suzanne Bonamici - Gary J. Palmer - Ralph Lee Abraham - Brenda L. Lawrence - Mike Rounds - Dwight Evans - Adriano Espaillat - Doug Jones - Mike Braun - Brad Miller - Kay R. Hagan - Dave Camp - Luther Strange - Claire McCaskill - Luis V. Gutiérrez - Darrell E. Issa - Bruce Poliquin - Karen Bass - Ken Calvert - Shelley Moore Capito - Steve Chabot - Judy Chu - Joe Courtney - Michael F. Doyle - Louie Gohmert - Gregory W. Meeks - Ed Perlmutter - Christopher H. Smith - Fred Upton - Nydia M. Velázquez - Randy K. Weber, Sr. - Debbie Dingell - Neal P. Dunn - Francis Rooney - Ralph Norman - Jefferson Van Drew - Ron Wright - Charles F. Bass - David Dreier - Steven R. Rothman - Janice Hahn - Dan Benishek - J. Randy Forbes - Tim Murphy - Bob Corker - Michael E. Capuano - Bob Goodlatte - Leonard Lance - Ileana Ros-Lehtinen - Carol Shea-Porter - John J. Faso - Tom Marino - Sherrod Brown - John Barrasso - Susan M. Collins - John Cornyn - Marsha Blackburn - Jim Costa - Marcia L. Fudge - William R. Keating - David Loebsack - Blaine Luetkemeyer - Julia Brownley - Denny Heck - Mark DeSaulnier - John H. Rutherford - Ed Case - Rick Scott - Shelley Berkley - Brian P. Bilbray - Ann Marie Buerkle - Larry Kissell - Jean Schmidt - Jim DeMint - John F. Tierney - Kerry L. Bentivolio - John Fleming - Richard L. Hanna - Richard B. Nugent - Al Franken - Diane Black - Edward R. Royce - Colleen Hanabusa - Elijah E. Cummings - Roger F. Wicker - Rob Bishop - Vern Buchanan - Mike Crapo - Kenny Marchant - Jerry McNerney - Gwen Moore - Frank Pallone, Jr. - Kurt Schrader - Albio Sires - Mike Thompson - Tim Walberg - Deb Fischer - Rick W. Allen - John Kennedy - Jo Ann Emerson - Mark Udall - Timothy H. Bishop - Mike Johanns - Lynn A. Westmoreland - David G. Reichert - Chris Collins - Debbie Stabenow - Roy Blunt - John Boozman - Michael C. Burgess - Gerald E. Connolly - Sheila Jackson Lee - Patty Murray - Charles E. Schumer - Michael K. Simpson - Jackie Speier - Dina Titus - Joyce Beatty - Donald S. Beyer, Jr. - Ann Kirkpatrick - Sylvia R. Garcia - Carol D. Miller - Francisco "Quico" Canseco - Jerry F. Costello - William L. Owens - Nick J. Rahall II - William L. Enyart - John A. Boehner - Randy Neugebauer - Brad Ashford - Joe Barton - Jack Reed - Steve Cohen - Tom Cole - Steve King - Richard E. Neal - Paul Tonko - Peter J. Visclosky - Daniel Webster - Ron Wyden - Elizabeth Warren - Roger Williams - David Perdue - Kent Conrad - David Alan Curson - Tom Coburn - Rush Holt - Tom Latham - Gary G. Miller - Allyson Y. Schwartz - Ted Poe - Robert Pittenger - Tom Udall - Earl Blumenauer - K. Michael Conaway - Raúl M. Grijalva - Mike Kelly - John B. Larson - Bennie G. Thompson - Lois Frankel - Brian Babin - Al Lawson, Jr. - Kweisi Mfume - Olympia J. Snowe - W. Todd Akin - Joe Baca - Spencer Bachus - John Kline - John J. Duncan, Jr. - Gene Green - Stevan Pearce - Dana Rohrabacher - Lamar Smith - Thomas R. Carper - Jeanne Shaheen - Joe Manchin, III - Sanford D. Bishop, Jr. - G. K. Butterfield - Peter A. DeFazio - Eliot L. Engel - Al Green - Mazie K. Hirono - Zoe Lofgren - David B. McKinley - Jerrold Nadler - Bill Posey - Robert C. "Bobby" Scott - Peter Welch - Joe Wilson - John A. Yarmuth - Aumua Amata Coleman Radewagen - Jack Bergman - Mitt Romney - Jim Webb - Timothy V. Johnson - Dennis J. Kucinich - Daniel E. Lungren - Rodney Alexander - Tim Johnson - Paul C. Broun - Corrine Brown - Jeff Sessions - Rodney P. Frelinghuysen - Frank A. LoBiondo - Niki Tsongas - Richard Blumenthal - Lloyd Doggett - Marcy Kaptur - Barbara Lee - Carolyn B. Maloney - Edward J. Markey - C. A. Dutch Ruppersberger - Bobby L. Rush - Alma S. Adams - Tom O’Halleran - Charles A. Gonzalez - Wally Herger - Melvin L. Watt - Donna M. Christensen - George Miller - James P. Moran - Ron Barber - Robert A. Brady - John Garamendi - David P. Roe - David Scott - Bonnie Watson Coleman - James R. Baird - Elton Gallegly - Donald A. Manzullo - Silvestre Reyes - Carolyn McCarthy - Ander Crenshaw - Johnny Isakson - Richard J. Durbin - Michael B. Enzi - Emanuel Cleaver - Susan A. Davis - Peter T. King - Doris O. Matsui - Collin C. Peterson - Janice D. Schakowsky - Angus S. King, Jr. - Jeff Bingaman - Kay Bailey Hutchison - John F. Kerry - Saxby Chambliss - Eni F. H. Faleomavaega - Ed Pastor - Ed Whitfield - Daniel Coats - John L. Mica - Richard M. Nolan - Walter B. Jones - Benjamin L. Cardin - James E. Risch - Rosa L. DeLauro - Virginia Foxx - Kay Granger - F. James Sensenbrenner, Jr. - José E. Serrano - Paul Cook - Bob Filner - Joseph I. Lieberman - Gary L. Ackerman - Phil Gingrey - Jon Kyl - Bill Nelson - Mitch McConnell - Anna G. Eshoo - Frederica S. Wilson - Ben Nelson - Howard L. Berman - Sue Wilkins Myrick - Cliff Stearns - Robert L. Turner - Max Baucus - Doc Hastings - Gloria Negrete McLeod - Sam Farr - Michael M. Honda - Bernard Sanders - John R. Carter - Danny K. Davis - Lucille Roybal-Allard - Alan S. Lowenthal - Donna E. Shalala - Norman D. Dicks - Barney Frank - Thomas E. Petri - Barbara Boxer - Rubén Hinojosa - John Lewis - Lamar Alexander - James E. Clyburn - Patrick J. Leahy - Nancy Pelosi - David E. Price - Tom Harkin - Henry A. Waxman - Frank R. Wolf - Harry Reid - Joseph R. Pitts - Steny H. Hoyer - Dan Burton - Maurice D. Hinchey - Howard P. "Buck" McKeon - Lois Capps - Maxine Waters - Judy Biggert - Lynn C. Woolsey - John D. Rockefeller, IV - Thad Cochran - Nita M. Lowey - Eleanor Holmes Norton - Bill Pascrell, Jr. - Harold Rogers - John W. Olver - Barbara A. Mikulski - Jim McDermott - John McCain - Pat Roberts - Alcee L. Hastings - Grace F. Napolitano - Herb Kohl - Ron Paul - Eddie Bernice Johnson - Leonard L. Boswell - Jerry Lewis - Edolphus Towns - Carl Levin - Orrin G. Hatch - James M. Inhofe - Richard C. Shelby - Madeleine Z. Bordallo - Dianne Feinstein - Chuck Grassley - Don Young - Richard G. Lugar - Fortney Pete Stark - Howard Coble - Sander M. Levin - C. W. Bill Young - Charles B. Rangel - Sam Johnson - Dale E. Kildee - John Conyers, Jr. - Louise McIntosh Slaughter - Roscoe G. Bartlett - John D. Dingell - Daniel K. Inouye - Daniel K. Akaka - Frank R. Lautenberg - Ralph M. Hall + Alexandria Ocasio-Cortez + Abby Finkenauer + Katie Hill + Josh Harder + Lauren Underwood + Max Rose + Elise M. Stefanik + Mike Gallagher + Conor Lamb + Joe Neguse + Xochitl Torres Small + Anthony Gonzalez + William R. Timmons IV + Dan Crenshaw + Patrick Murphy + Trey Hollingsworth + Haley M. Stevens + Guy Reschenthaler + Colin Z. Allred + Matt Gaetz + Andy Kim + Joe Cunningham + Lance Gooden + Jared F. Golden + Aaron Schock + Tulsi Gabbard + Michael F. Q. San Nicolas + Ilhan Omar + Bryan Steil + Carlos Curbelo + Ruben J. Kihuen + Justin Amash + Eric Swalwell + Joseph P. Kennedy III + Jason Smith + Lee M. Zeldin + Brian J. Mast + Sharice Davids + Chris Pappas + Scott Taylor + Ruben Gallego + Pete Aguilar + Jim Banks + Jason Crow + Abigail Davis Spanberger + Josh Hawley + Ron DeSantis + Jaime Herrera Beutler + Adam Kinzinger + Seth Moulton + Stephanie N. Murphy + Darren Soto + Mike Levin + W. Gregory Steube + Anthony Brindisi + David G. Valadao + Tom Cotton + Markwayne Mullin + Brendan F. Boyle + Will Hurd + Antonio Delgado + Benjamin Quayle + Trey Radel + Marlin A. Stutzman + Kevin Yoder + Ryan A. Costello + Duncan Hunter + Martha Roby + Kyrsten Sinema + Ro Khanna + Nanette Diaz Barragán + Jenniffer González-Colón + Steve Watkins + Elissa Slotkin + Rashida Tlaib + Kelly Armstrong + Kendra S. Horn + Dusty Johnson + Mike Garcia + Jim Bridenstine + Jared Polis + Mia B. Love + Patrick T. McHenry + Grace Meng + Josh Gottheimer + Michael Cloud + Lizzie Fletcher + Elaine G. Luria + Vance M. McAllister + André Carson + Cory Gardner + Joaquin Castro + Derek Kilmer + Jimmy Gomez + Katie Porter + Michael Waltz + Ayanna Pressley + Ben McAdams + Dan Boren + Jon Runyan + Stephen Lee Fincher + Christopher Murphy + Devin Nunes + Cedric L. Richmond + Tim Ryan + Andy Barr + Raja Krishnamoorthi + Brian K. Fitzpatrick + Steven Horsford + Jahana Hayes + Russ Fulcher + Lori Trahan + David W. Jolly + Beto O’Rourke + Thomas A. Garrett, Jr. + Ben Ray Luján + Todd Young + Brian Schatz + Raul Ruiz + Garret Graves + David Rouzer + Ben Sasse + James Comer + Mike Johnson + Jodey C. Arrington + Angie Craig + Mikie Sherrill + Van Taylor + Chip Roy + Ben Cline + Heath Shuler + Kristi L. Noem + Sean P. Duffy + Martin Heinrich + Mike Lee + Tom Reed + Marco Rubio + Thomas Massie + Richard Hudson + Marc A. Veasey + Alexander X. Mooney + Ted Budd + Gilbert Ray Cisneros, Jr. + Debbie Mucarsel-Powell + Sean Casten + Jeffrey M. Landry + Michael G. Grimm + Frank C. Guinta + Todd Rokita + Thomas J. Rooney + Paul D. Ryan + Tom Graves + Steven M. Palazzo + Adrian Smith + Rob Woodall + Rodney Davis + Hakeem S. Jeffries + Ted Cruz + Joni Ernst + Warren Davidson + Greg Stanton + Michael Guest + Denver Riggleman + Kelly Loeffler + William M. Cowan + Robert Hurt + Robert J. Dold + Luke Messer + Bill Huizenga + Cathy McMorris Rodgers + Austin Scott + Linda T. Sánchez + Cory A. Booker + Ted Lieu + Mark Walker + Jimmy Panetta + Dean Phillips + Veronica Escobar + Jason Altmire + Tim Griffin + Daniel B. Maffei + Kelly Ayotte + Tim Huelskamp + David Young + James Lankford + Tammy Duckworth + George Holding + Darin LaHood + Jennifer Wexton + Kim Schrier + Connie Mack + Mark Takai + Mick Mulvaney + Jason Chaffetz + Jeff Denham + Raúl R. Labrador + Mike Bishop + Bruce Westerman + Vicente Gonzalez + Chrissy Houlahan + Randy Hultgren + Stephen Knight + Kirsten E. Gillibrand + Kathy Castor + Eric A. "Rick" Crawford + Theodore E. Deutch + Jeff Duncan + James A. Himes + Daniel Lipinski + Debbie Wasserman Schultz + Doug Collins + Sean Patrick Maloney + Stacey E. Plaskett + Trent Kelly + A. Drew Ferguson IV + David Kustoff + Liz Cheney + Ross Spano + Pete Stauber + Susie Lee + Martha McSally + Chris Jacobs + Jesse L. Jackson Jr. + David Rivera + John Sullivan + Jeff Chiesa + Steve Southerland II + Erik Paulsen + John Ratcliffe + Robert B. Aderholt + Rick Larsen + Kevin McCarthy + Steve Scalise + Tim Scott + Terri A. Sewell + Adam Smith + Steve Stivers + Ami Bera + Norma J. Torres + Kathleen M. Rice + Pramila Jayapal + Cynthia Axne + Tom Malinowski + John W. Rose + Fred Keller + Robert T. Schilling + Renee L. Ellmers + Christopher P. Gibson + Trey Gowdy + Timothy J. Walz + Dave Brat + Michael F. Bennet + Yvette D. Clarke + Scott DesJarlais + Brett Guthrie + Jim Jordan + James R. Langevin + Jared Huffman + Mark Pocan + Dan Sullivan + Kamala D. Harris + Catherine Cortez Masto + Salud O. Carbajal + Lloyd Smucker + Daniel Meuser + Tim Burchett + Mark E. Green + Dan Bishop + Betty Sutton + Eric Cantor + Mark L. Pryor + Mike Rogers + Joe Garcia + Michael G. Fitzpatrick + Gwen Graham + Mike Pompeo + Keith Ellison + Lynn Jenkins + John K. Delaney + Steve Russell + Christopher A. Coons + Gus M. Bilirakis + Sam Graves + Ron Kind + Rand Paul + Tony Cárdenas + Jackie Walorski + Filemon Vela + Katherine M. Clark + Barry Loudermilk + Don Bacon + TJ Cox + Gregory F. Murphy + Mark S. Critz + Todd Russell Platts + Laura Richardson + Mark Begich + Lee Terry + Patrick J. Tiberi + Joseph Crowley + Jeff Flake + Keith J. Rothfus + Mimi Walters + Karen C. Handel + Tammy Baldwin + Larry Bucshon + Charles J. "Chuck" Fleischmann + Michael T. McCaul + Pete Olson + John P. Sarbanes + David Schweikert + Suzan K. DelBene + Ann Wagner + Steve Daines + Scott Perry + John Katko + Lisa Blunt Rochester + Jamie Raskin + Thomas R. Suozzi + Troy Balderson + Jim Hagedorn + Mary Bono Mack + Mike Ross + Joe Walsh + Allen B. West + Pete P. Gallego + David Vitter + Joseph J. Heck + Ryan K. Zinke + Blake Farenthold + Peter J. Roskam + Bill Shuster + Claudia Tenney + David N. Cicilline + Mario Diaz-Balart + John Thune + Patrick J. Toomey + Juan Vargas + Cheri Bustos + Kevin Cramer + Matt Cartwright + John R. Moolenaar + Tom Emmer + Bradley Scott Schneider + Clay Higgins + Anthony G. Brown + Paul Mitchell + A. Donald McEachin + Greg Gianforte + Kevin Hern + Harley Rouda + Jim Matheson + John E. Walsh + E. Scott Rigell + Loretta Sanchez + Charles W. Dent + Evan H. Jenkins + Dean Heller + Mark Sanford + David A. Trott + Thomas MacArthur + Robert P. Casey, Jr. + Amy Klobuchar + Jeff Fortenberry + Vicky Hartzler + Frank D. Lucas + Adam B. Schiff + Michael R. Turner + Doug LaMalfa + Mark Takano + Susan W. Brooks + Chris Stewart + Jody B. Hice + Mike Bost + Thom Tillis + Roger W. Marshall + John R. Curtis + Lucy McBath + Andy Levin + Debra A. Haaland + Scott P. Brown + Rick Berg + Ben Chandler + Chip Cravaack + Nan A. S. Hayworth + Mike Pence + Jo Bonner + Mark Kirk + Scott Garrett + Jeff Miller + Pedro R. Pierluisi + Curt Clawson + Michelle Lujan Grisham + Dennis A. Ross + Elizabeth H. Esty + Barbara Comstock + Brenda Jones + Mark Meadows + Brian Higgins + James P. McGovern + Glenn Thompson + Chris Van Hollen + Robert J. Wittman + Ken Buck + Cindy Hyde-Smith + Mary Gay Scanlon + Madeleine Dean + Enid Greene Waldholtz + Steve Austria + Russ Carnahan + Kathleen C. Hochul + Alan Nunnelee + Donna F. Edwards + Steve Israel + Matt Salmon + Alan Grayson + Xavier Becerra + James B. Renacci + Maria Cantwell + Paul A. Gosar + H. Morgan Griffith + Gary C. Peters + Mike Quigley + Mike Rogers + John Shimkus + Mac Thornberry + Mark E. Amodei + Donald M. Payne, Jr. + Scott H. Peters + Daniel T. Kildee + Brad R. Wenstrup + Tim Kaine + Donald Norcross + Margaret Wood Hassan + Andy Biggs + J. Luis Correa + Tina Smith + Debbie Lesko + Hansen Clarke + Tim Holden + Robert E. Andrews + Bruce L. Braley + Cresent Hardy + Trent Franks + Jeb Hensarling + Bill Cassidy + Diana DeGette + Andy Harris + John Hoeven + Lisa Murkowski + Greg Walden + Steve Womack + David P. Joyce + Tom Rice + Earl L. "Buddy" Carter + Val Butler Demings + Jacky Rosen + Joseph D. Morelle + Susan Wild + John Joyce + Thomas P. Tiffany + Sandy Adams + Michele Bachmann + Mike McIntyre + Steve Stockman + Chaka Fattah + Charles W. Boustany Jr. + John C. Carney Jr. + Reid J. Ribble + Lou Barletta + John Abney Culberson + Gregg Harper + Daniel M. Donovan, Jr. + Jon Tester + Jeff Merkley + Wm. Lacy Clay + Robert E. Latta + Tom McClintock + Scott R. Tipton + Ann M. Kuster + Robin L. Kelly + J. French Hill + Charlie Crist + Ron Estes + Jesús G. "Chuy" García + Greg Pence + Denny Rehberg + Mary L. Landrieu + John Barrow + John Campbell + Jim Gerlach + Jack Kingston + Michael H. Michaud + Patrick Meehan + Mike Coffman + Joe Donnelly + Pete Sessions + Heidi Heitkamp + Rod Blum + Jason Lewis + Sheldon Whitehouse + Lindsey Graham + Kevin Brady + Richard Burr + Henry Cuellar + Ron Johnson + Billy Long + Stephen F. Lynch + Chellie Pingree + Rob Portman + Gregorio Kilili Camacho Sablan + Bill Foster + Ted S. Yoho + Bradley Byrne + Dan Newhouse + Glenn Grothman + David J. Trone + Steven C. LaTourette + Candice S. Miller + Cynthia M. Lummis + Tom Price + Robert Menendez + Mark R. Warner + Mo Brooks + Jim Cooper + Bill Flores + Bob Gibbs + Bill Johnson + Henry C. "Hank" Johnson, Jr. + Doug Lamborn + Betty McCollum + Jerry Moran + Brad Sherman + Suzanne Bonamici + Gary J. Palmer + Ralph Lee Abraham + Brenda L. Lawrence + Mike Rounds + Dwight Evans + Adriano Espaillat + Doug Jones + Mike Braun + Brad Miller + Kay R. Hagan + Dave Camp + Luther Strange + Claire McCaskill + Luis V. Gutiérrez + Darrell E. Issa + Bruce Poliquin + Karen Bass + Ken Calvert + Shelley Moore Capito + Steve Chabot + Judy Chu + Joe Courtney + Michael F. Doyle + Louie Gohmert + Gregory W. Meeks + Ed Perlmutter + Christopher H. Smith + Fred Upton + Nydia M. Velázquez + Randy K. Weber, Sr. + Debbie Dingell + Neal P. Dunn + Francis Rooney + Ralph Norman + Jefferson Van Drew + Ron Wright + Charles F. Bass + David Dreier + Steven R. Rothman + Janice Hahn + Dan Benishek + J. Randy Forbes + Tim Murphy + Bob Corker + Michael E. Capuano + Bob Goodlatte + Leonard Lance + Ileana Ros-Lehtinen + Carol Shea-Porter + John J. Faso + Tom Marino + Sherrod Brown + John Barrasso + Susan M. Collins + John Cornyn + Marsha Blackburn + Jim Costa + Marcia L. Fudge + William R. Keating + David Loebsack + Blaine Luetkemeyer + Julia Brownley + Denny Heck + Mark DeSaulnier + John H. Rutherford + Ed Case + Rick Scott + Shelley Berkley + Brian P. Bilbray + Ann Marie Buerkle + Larry Kissell + Jean Schmidt + Jim DeMint + John F. Tierney + Kerry L. Bentivolio + John Fleming + Richard L. Hanna + Richard B. Nugent + Al Franken + Diane Black + Edward R. Royce + Colleen Hanabusa + Elijah E. Cummings + Roger F. Wicker + Rob Bishop + Vern Buchanan + Mike Crapo + Kenny Marchant + Jerry McNerney + Gwen Moore + Frank Pallone, Jr. + Kurt Schrader + Albio Sires + Mike Thompson + Tim Walberg + Deb Fischer + Rick W. Allen + John Kennedy + Jo Ann Emerson + Mark Udall + Timothy H. Bishop + Mike Johanns + Lynn A. Westmoreland + David G. Reichert + Chris Collins + Debbie Stabenow + Roy Blunt + John Boozman + Michael C. Burgess + Gerald E. Connolly + Sheila Jackson Lee + Patty Murray + Charles E. Schumer + Michael K. Simpson + Jackie Speier + Dina Titus + Joyce Beatty + Donald S. Beyer, Jr. + Ann Kirkpatrick + Sylvia R. Garcia + Carol D. Miller + Francisco "Quico" Canseco + Jerry F. Costello + William L. Owens + Nick J. Rahall II + William L. Enyart + John A. Boehner + Randy Neugebauer + Brad Ashford + Joe Barton + Jack Reed + Steve Cohen + Tom Cole + Steve King + Richard E. Neal + Paul Tonko + Peter J. Visclosky + Daniel Webster + Ron Wyden + Elizabeth Warren + Roger Williams + David Perdue + Kent Conrad + David Alan Curson + Tom Coburn + Rush Holt + Tom Latham + Gary G. Miller + Allyson Y. Schwartz + Ted Poe + Robert Pittenger + Tom Udall + Earl Blumenauer + K. Michael Conaway + Raúl M. Grijalva + Mike Kelly + John B. Larson + Bennie G. Thompson + Lois Frankel + Brian Babin + Al Lawson, Jr. + Kweisi Mfume + Olympia J. Snowe + W. Todd Akin + Joe Baca + Spencer Bachus + John Kline + John J. Duncan, Jr. + Gene Green + Stevan Pearce + Dana Rohrabacher + Lamar Smith + Thomas R. Carper + Jeanne Shaheen + Joe Manchin, III + Sanford D. Bishop, Jr. + G. K. Butterfield + Peter A. DeFazio + Eliot L. Engel + Al Green + Mazie K. Hirono + Zoe Lofgren + David B. McKinley + Jerrold Nadler + Bill Posey + Robert C. "Bobby" Scott + Peter Welch + Joe Wilson + John A. Yarmuth + Aumua Amata Coleman Radewagen + Jack Bergman + Mitt Romney + Jim Webb + Timothy V. Johnson + Dennis J. Kucinich + Daniel E. Lungren + Rodney Alexander + Tim Johnson + Paul C. Broun + Corrine Brown + Jeff Sessions + Rodney P. Frelinghuysen + Frank A. LoBiondo + Niki Tsongas + Richard Blumenthal + Lloyd Doggett + Marcy Kaptur + Barbara Lee + Carolyn B. Maloney + Edward J. Markey + C. A. Dutch Ruppersberger + Bobby L. Rush + Alma S. Adams + Tom O’Halleran + Charles A. Gonzalez + Wally Herger + Melvin L. Watt + Donna M. Christensen + George Miller + James P. Moran + Ron Barber + Robert A. Brady + John Garamendi + David P. Roe + David Scott + Bonnie Watson Coleman + James R. Baird + Elton Gallegly + Donald A. Manzullo + Silvestre Reyes + Carolyn McCarthy + Ander Crenshaw + Johnny Isakson + Richard J. Durbin + Michael B. Enzi + Emanuel Cleaver + Susan A. Davis + Peter T. King + Doris O. Matsui + Collin C. Peterson + Janice D. Schakowsky + Angus S. King, Jr. + Jeff Bingaman + Kay Bailey Hutchison + John F. Kerry + Saxby Chambliss + Eni F. H. Faleomavaega + Ed Pastor + Ed Whitfield + Daniel Coats + John L. Mica + Richard M. Nolan + Walter B. Jones + Benjamin L. Cardin + James E. Risch + Rosa L. DeLauro + Virginia Foxx + Kay Granger + F. James Sensenbrenner, Jr. + José E. Serrano + Paul Cook + Bob Filner + Joseph I. Lieberman + Gary L. Ackerman + Phil Gingrey + Jon Kyl + Bill Nelson + Mitch McConnell + Anna G. Eshoo + Frederica S. Wilson + Ben Nelson + Howard L. Berman + Sue Wilkins Myrick + Cliff Stearns + Robert L. Turner + Max Baucus + Doc Hastings + Gloria Negrete McLeod + Sam Farr + Michael M. Honda + Bernard Sanders + John R. Carter + Danny K. Davis + Lucille Roybal-Allard + Alan S. Lowenthal + Donna E. Shalala + Norman D. Dicks + Barney Frank + Thomas E. Petri + Barbara Boxer + Rubén Hinojosa + John Lewis + Lamar Alexander + James E. Clyburn + Patrick J. Leahy + Nancy Pelosi + David E. Price + Tom Harkin + Henry A. Waxman + Frank R. Wolf + Harry Reid + Joseph R. Pitts + Steny H. Hoyer + Dan Burton + Maurice D. Hinchey + Howard P. "Buck" McKeon + Lois Capps + Maxine Waters + Judy Biggert + Lynn C. Woolsey + John D. Rockefeller, IV + Thad Cochran + Nita M. Lowey + Eleanor Holmes Norton + Bill Pascrell, Jr. + Harold Rogers + John W. Olver + Barbara A. Mikulski + Jim McDermott + John McCain + Pat Roberts + Alcee L. Hastings + Grace F. Napolitano + Herb Kohl + Ron Paul + Eddie Bernice Johnson + Leonard L. Boswell + Jerry Lewis + Edolphus Towns + Carl Levin + Orrin G. Hatch + James M. Inhofe + Richard C. Shelby + Madeleine Z. Bordallo + Dianne Feinstein + Chuck Grassley + Don Young + Richard G. Lugar + Fortney Pete Stark + Howard Coble + Sander M. Levin + C. W. Bill Young + Charles B. Rangel + Sam Johnson + Dale E. Kildee + John Conyers, Jr. + Louise McIntosh Slaughter + Roscoe G. Bartlett + John D. Dingell + Daniel K. Inouye + Daniel K. Akaka + Frank R. Lautenberg + Ralph M. Hall diff --git a/test/output/usCongressAgeGender.svg b/test/output/usCongressAgeGender.svg index 41be8fc55b..c0b2dabbcd 100644 --- a/test/output/usCongressAgeGender.svg +++ b/test/output/usCongressAgeGender.svg @@ -70,893 +70,893 @@ Age → - Alexandria Ocasio-Cortez - Abby Finkenauer - Katie Hill - Josh Harder - Lauren Underwood - Max Rose - Elise M. Stefanik - Mike Gallagher - Conor Lamb - Joe Neguse - Xochitl Torres Small - Anthony Gonzalez - William R. Timmons IV - Dan Crenshaw - Patrick Murphy - Trey Hollingsworth - Haley M. Stevens - Guy Reschenthaler - Colin Z. Allred - Matt Gaetz - Andy Kim - Joe Cunningham - Lance Gooden - Jared F. Golden - Aaron Schock - Tulsi Gabbard - Michael F. Q. San Nicolas - Ilhan Omar - Bryan Steil - Carlos Curbelo - Ruben J. Kihuen - Justin Amash - Eric Swalwell - Joseph P. Kennedy III - Jason Smith - Lee M. Zeldin - Brian J. Mast - Sharice Davids - Chris Pappas - Scott Taylor - Ruben Gallego - Pete Aguilar - Jim Banks - Jason Crow - Abigail Davis Spanberger - Josh Hawley - Ron DeSantis - Jaime Herrera Beutler - Adam Kinzinger - Seth Moulton - Stephanie N. Murphy - Darren Soto - Mike Levin - W. Gregory Steube - Anthony Brindisi - David G. Valadao - Tom Cotton - Markwayne Mullin - Brendan F. Boyle - Will Hurd - Antonio Delgado - Benjamin Quayle - Trey Radel - Marlin A. Stutzman - Kevin Yoder - Ryan A. Costello - Duncan Hunter - Martha Roby - Kyrsten Sinema - Ro Khanna - Nanette Diaz Barragán - Jenniffer González-Colón - Steve Watkins - Elissa Slotkin - Rashida Tlaib - Kelly Armstrong - Kendra S. Horn - Dusty Johnson - Mike Garcia - Jim Bridenstine - Jared Polis - Mia B. Love - Patrick T. McHenry - Grace Meng - Josh Gottheimer - Michael Cloud - Lizzie Fletcher - Elaine G. Luria - Vance M. McAllister - André Carson - Cory Gardner - Joaquin Castro - Derek Kilmer - Jimmy Gomez - Katie Porter - Michael Waltz - Ayanna Pressley - Ben McAdams - Dan Boren - Jon Runyan - Stephen Lee Fincher - Christopher Murphy - Devin Nunes - Cedric L. Richmond - Tim Ryan - Andy Barr - Raja Krishnamoorthi - Brian K. Fitzpatrick - Steven Horsford - Jahana Hayes - Russ Fulcher - Lori Trahan - David W. Jolly - Beto O’Rourke - Thomas A. Garrett, Jr. - Ben Ray Luján - Todd Young - Brian Schatz - Raul Ruiz - Garret Graves - David Rouzer - Ben Sasse - James Comer - Mike Johnson - Jodey C. Arrington - Angie Craig - Mikie Sherrill - Van Taylor - Chip Roy - Ben Cline - Heath Shuler - Kristi L. Noem - Sean P. Duffy - Martin Heinrich - Mike Lee - Tom Reed - Marco Rubio - Thomas Massie - Richard Hudson - Marc A. Veasey - Alexander X. Mooney - Ted Budd - Gilbert Ray Cisneros, Jr. - Debbie Mucarsel-Powell - Sean Casten - Jeffrey M. Landry - Michael G. Grimm - Frank C. Guinta - Todd Rokita - Thomas J. Rooney - Paul D. Ryan - Tom Graves - Steven M. Palazzo - Adrian Smith - Rob Woodall - Rodney Davis - Hakeem S. Jeffries - Ted Cruz - Joni Ernst - Warren Davidson - Greg Stanton - Michael Guest - Denver Riggleman - Kelly Loeffler - William M. Cowan - Robert Hurt - Robert J. Dold - Luke Messer - Bill Huizenga - Cathy McMorris Rodgers - Austin Scott - Linda T. Sánchez - Cory A. Booker - Ted Lieu - Mark Walker - Jimmy Panetta - Dean Phillips - Veronica Escobar - Jason Altmire - Tim Griffin - Daniel B. Maffei - Kelly Ayotte - Tim Huelskamp - David Young - James Lankford - Tammy Duckworth - George Holding - Darin LaHood - Jennifer Wexton - Kim Schrier - Connie Mack - Mark Takai - Mick Mulvaney - Jason Chaffetz - Jeff Denham - Raúl R. Labrador - Mike Bishop - Bruce Westerman - Vicente Gonzalez - Chrissy Houlahan - Randy Hultgren - Stephen Knight - Kirsten E. Gillibrand - Kathy Castor - Eric A. "Rick" Crawford - Theodore E. Deutch - Jeff Duncan - James A. Himes - Daniel Lipinski - Debbie Wasserman Schultz - Doug Collins - Sean Patrick Maloney - Stacey E. Plaskett - Trent Kelly - A. Drew Ferguson IV - David Kustoff - Liz Cheney - Ross Spano - Pete Stauber - Susie Lee - Martha McSally - Chris Jacobs - Jesse L. Jackson Jr. - David Rivera - John Sullivan - Jeff Chiesa - Steve Southerland II - Erik Paulsen - John Ratcliffe - Robert B. Aderholt - Rick Larsen - Kevin McCarthy - Steve Scalise - Tim Scott - Terri A. Sewell - Adam Smith - Steve Stivers - Ami Bera - Norma J. Torres - Kathleen M. Rice - Pramila Jayapal - Cynthia Axne - Tom Malinowski - John W. Rose - Fred Keller - Robert T. Schilling - Renee L. Ellmers - Christopher P. Gibson - Trey Gowdy - Timothy J. Walz - Dave Brat - Michael F. Bennet - Yvette D. Clarke - Scott DesJarlais - Brett Guthrie - Jim Jordan - James R. Langevin - Jared Huffman - Mark Pocan - Dan Sullivan - Kamala D. Harris - Catherine Cortez Masto - Salud O. Carbajal - Lloyd Smucker - Daniel Meuser - Tim Burchett - Mark E. Green - Dan Bishop - Betty Sutton - Eric Cantor - Mark L. Pryor - Mike Rogers - Joe Garcia - Michael G. Fitzpatrick - Gwen Graham - Mike Pompeo - Keith Ellison - Lynn Jenkins - John K. Delaney - Steve Russell - Christopher A. Coons - Gus M. Bilirakis - Sam Graves - Ron Kind - Rand Paul - Tony Cárdenas - Jackie Walorski - Filemon Vela - Katherine M. Clark - Barry Loudermilk - Don Bacon - TJ Cox - Gregory F. Murphy - Mark S. Critz - Todd Russell Platts - Laura Richardson - Mark Begich - Lee Terry - Patrick J. Tiberi - Joseph Crowley - Jeff Flake - Keith J. Rothfus - Mimi Walters - Karen C. Handel - Tammy Baldwin - Larry Bucshon - Charles J. "Chuck" Fleischmann - Michael T. McCaul - Pete Olson - John P. Sarbanes - David Schweikert - Suzan K. DelBene - Ann Wagner - Steve Daines - Scott Perry - John Katko - Lisa Blunt Rochester - Jamie Raskin - Thomas R. Suozzi - Troy Balderson - Jim Hagedorn - Mary Bono Mack - Mike Ross - Joe Walsh - Allen B. West - Pete P. Gallego - David Vitter - Joseph J. Heck - Ryan K. Zinke - Blake Farenthold - Peter J. Roskam - Bill Shuster - Claudia Tenney - David N. Cicilline - Mario Diaz-Balart - John Thune - Patrick J. Toomey - Juan Vargas - Cheri Bustos - Kevin Cramer - Matt Cartwright - John R. Moolenaar - Tom Emmer - Bradley Scott Schneider - Clay Higgins - Anthony G. Brown - Paul Mitchell - A. Donald McEachin - Greg Gianforte - Kevin Hern - Harley Rouda - Jim Matheson - John E. Walsh - E. Scott Rigell - Loretta Sanchez - Charles W. Dent - Evan H. Jenkins - Dean Heller - Mark Sanford - David A. Trott - Thomas MacArthur - Robert P. Casey, Jr. - Amy Klobuchar - Jeff Fortenberry - Vicky Hartzler - Frank D. Lucas - Adam B. Schiff - Michael R. Turner - Doug LaMalfa - Mark Takano - Susan W. Brooks - Chris Stewart - Jody B. Hice - Mike Bost - Thom Tillis - Roger W. Marshall - John R. Curtis - Lucy McBath - Andy Levin - Debra A. Haaland - Scott P. Brown - Rick Berg - Ben Chandler - Chip Cravaack - Nan A. S. Hayworth - Mike Pence - Jo Bonner - Mark Kirk - Scott Garrett - Jeff Miller - Pedro R. Pierluisi - Curt Clawson - Michelle Lujan Grisham - Dennis A. Ross - Elizabeth H. Esty - Barbara Comstock - Brenda Jones - Mark Meadows - Brian Higgins - James P. McGovern - Glenn Thompson - Chris Van Hollen - Robert J. Wittman - Ken Buck - Cindy Hyde-Smith - Mary Gay Scanlon - Madeleine Dean - Enid Greene Waldholtz - Steve Austria - Russ Carnahan - Kathleen C. Hochul - Alan Nunnelee - Donna F. Edwards - Steve Israel - Matt Salmon - Alan Grayson - Xavier Becerra - James B. Renacci - Maria Cantwell - Paul A. Gosar - H. Morgan Griffith - Gary C. Peters - Mike Quigley - Mike Rogers - John Shimkus - Mac Thornberry - Mark E. Amodei - Donald M. Payne, Jr. - Scott H. Peters - Daniel T. Kildee - Brad R. Wenstrup - Tim Kaine - Donald Norcross - Margaret Wood Hassan - Andy Biggs - J. Luis Correa - Tina Smith - Debbie Lesko - Hansen Clarke - Tim Holden - Robert E. Andrews - Bruce L. Braley - Cresent Hardy - Trent Franks - Jeb Hensarling - Bill Cassidy - Diana DeGette - Andy Harris - John Hoeven - Lisa Murkowski - Greg Walden - Steve Womack - David P. Joyce - Tom Rice - Earl L. "Buddy" Carter - Val Butler Demings - Jacky Rosen - Joseph D. Morelle - Susan Wild - John Joyce - Thomas P. Tiffany - Sandy Adams - Michele Bachmann - Mike McIntyre - Steve Stockman - Chaka Fattah - Charles W. Boustany Jr. - John C. Carney Jr. - Reid J. Ribble - Lou Barletta - John Abney Culberson - Gregg Harper - Daniel M. Donovan, Jr. - Jon Tester - Jeff Merkley - Wm. Lacy Clay - Robert E. Latta - Tom McClintock - Scott R. Tipton - Ann M. Kuster - Robin L. Kelly - J. French Hill - Charlie Crist - Ron Estes - Jesús G. "Chuy" García - Greg Pence - Denny Rehberg - Mary L. Landrieu - John Barrow - John Campbell - Jim Gerlach - Jack Kingston - Michael H. Michaud - Patrick Meehan - Mike Coffman - Joe Donnelly - Pete Sessions - Heidi Heitkamp - Rod Blum - Jason Lewis - Sheldon Whitehouse - Lindsey Graham - Kevin Brady - Richard Burr - Henry Cuellar - Ron Johnson - Billy Long - Stephen F. Lynch - Chellie Pingree - Rob Portman - Gregorio Kilili Camacho Sablan - Bill Foster - Ted S. Yoho - Bradley Byrne - Dan Newhouse - Glenn Grothman - David J. Trone - Steven C. LaTourette - Candice S. Miller - Cynthia M. Lummis - Tom Price - Robert Menendez - Mark R. Warner - Mo Brooks - Jim Cooper - Bill Flores - Bob Gibbs - Bill Johnson - Henry C. "Hank" Johnson, Jr. - Doug Lamborn - Betty McCollum - Jerry Moran - Brad Sherman - Suzanne Bonamici - Gary J. Palmer - Ralph Lee Abraham - Brenda L. Lawrence - Mike Rounds - Dwight Evans - Adriano Espaillat - Doug Jones - Mike Braun - Brad Miller - Kay R. Hagan - Dave Camp - Luther Strange - Claire McCaskill - Luis V. Gutiérrez - Darrell E. Issa - Bruce Poliquin - Karen Bass - Ken Calvert - Shelley Moore Capito - Steve Chabot - Judy Chu - Joe Courtney - Michael F. Doyle - Louie Gohmert - Gregory W. Meeks - Ed Perlmutter - Christopher H. Smith - Fred Upton - Nydia M. Velázquez - Randy K. Weber, Sr. - Debbie Dingell - Neal P. Dunn - Francis Rooney - Ralph Norman - Jefferson Van Drew - Ron Wright - Charles F. Bass - David Dreier - Steven R. Rothman - Janice Hahn - Dan Benishek - J. Randy Forbes - Tim Murphy - Bob Corker - Michael E. Capuano - Bob Goodlatte - Leonard Lance - Ileana Ros-Lehtinen - Carol Shea-Porter - John J. Faso - Tom Marino - Sherrod Brown - John Barrasso - Susan M. Collins - John Cornyn - Marsha Blackburn - Jim Costa - Marcia L. Fudge - William R. Keating - David Loebsack - Blaine Luetkemeyer - Julia Brownley - Denny Heck - Mark DeSaulnier - John H. Rutherford - Ed Case - Rick Scott - Shelley Berkley - Brian P. Bilbray - Ann Marie Buerkle - Larry Kissell - Jean Schmidt - Jim DeMint - John F. Tierney - Kerry L. Bentivolio - John Fleming - Richard L. Hanna - Richard B. Nugent - Al Franken - Diane Black - Edward R. Royce - Colleen Hanabusa - Elijah E. Cummings - Roger F. Wicker - Rob Bishop - Vern Buchanan - Mike Crapo - Kenny Marchant - Jerry McNerney - Gwen Moore - Frank Pallone, Jr. - Kurt Schrader - Albio Sires - Mike Thompson - Tim Walberg - Deb Fischer - Rick W. Allen - John Kennedy - Jo Ann Emerson - Mark Udall - Timothy H. Bishop - Mike Johanns - Lynn A. Westmoreland - David G. Reichert - Chris Collins - Debbie Stabenow - Roy Blunt - John Boozman - Michael C. Burgess - Gerald E. Connolly - Sheila Jackson Lee - Patty Murray - Charles E. Schumer - Michael K. Simpson - Jackie Speier - Dina Titus - Joyce Beatty - Donald S. Beyer, Jr. - Ann Kirkpatrick - Sylvia R. Garcia - Carol D. Miller - Francisco "Quico" Canseco - Jerry F. Costello - William L. Owens - Nick J. Rahall II - William L. Enyart - John A. Boehner - Randy Neugebauer - Brad Ashford - Joe Barton - Jack Reed - Steve Cohen - Tom Cole - Steve King - Richard E. Neal - Paul Tonko - Peter J. Visclosky - Daniel Webster - Ron Wyden - Elizabeth Warren - Roger Williams - David Perdue - Kent Conrad - David Alan Curson - Tom Coburn - Rush Holt - Tom Latham - Gary G. Miller - Allyson Y. Schwartz - Ted Poe - Robert Pittenger - Tom Udall - Earl Blumenauer - K. Michael Conaway - Raúl M. Grijalva - Mike Kelly - John B. Larson - Bennie G. Thompson - Lois Frankel - Brian Babin - Al Lawson, Jr. - Kweisi Mfume - Olympia J. Snowe - W. Todd Akin - Joe Baca - Spencer Bachus - John Kline - John J. Duncan, Jr. - Gene Green - Stevan Pearce - Dana Rohrabacher - Lamar Smith - Thomas R. Carper - Jeanne Shaheen - Joe Manchin, III - Sanford D. Bishop, Jr. - G. K. Butterfield - Peter A. DeFazio - Eliot L. Engel - Al Green - Mazie K. Hirono - Zoe Lofgren - David B. McKinley - Jerrold Nadler - Bill Posey - Robert C. "Bobby" Scott - Peter Welch - Joe Wilson - John A. Yarmuth - Aumua Amata Coleman Radewagen - Jack Bergman - Mitt Romney - Jim Webb - Timothy V. Johnson - Dennis J. Kucinich - Daniel E. Lungren - Rodney Alexander - Tim Johnson - Paul C. Broun - Corrine Brown - Jeff Sessions - Rodney P. Frelinghuysen - Frank A. LoBiondo - Niki Tsongas - Richard Blumenthal - Lloyd Doggett - Marcy Kaptur - Barbara Lee - Carolyn B. Maloney - Edward J. Markey - C. A. Dutch Ruppersberger - Bobby L. Rush - Alma S. Adams - Tom O’Halleran - Charles A. Gonzalez - Wally Herger - Melvin L. Watt - Donna M. Christensen - George Miller - James P. Moran - Ron Barber - Robert A. Brady - John Garamendi - David P. Roe - David Scott - Bonnie Watson Coleman - James R. Baird - Elton Gallegly - Donald A. Manzullo - Silvestre Reyes - Carolyn McCarthy - Ander Crenshaw - Johnny Isakson - Richard J. Durbin - Michael B. Enzi - Emanuel Cleaver - Susan A. Davis - Peter T. King - Doris O. Matsui - Collin C. Peterson - Janice D. Schakowsky - Angus S. King, Jr. - Jeff Bingaman - Kay Bailey Hutchison - John F. Kerry - Saxby Chambliss - Eni F. H. Faleomavaega - Ed Pastor - Ed Whitfield - Daniel Coats - John L. Mica - Richard M. Nolan - Walter B. Jones - Benjamin L. Cardin - James E. Risch - Rosa L. DeLauro - Virginia Foxx - Kay Granger - F. James Sensenbrenner, Jr. - José E. Serrano - Paul Cook - Bob Filner - Joseph I. Lieberman - Gary L. Ackerman - Phil Gingrey - Jon Kyl - Bill Nelson - Mitch McConnell - Anna G. Eshoo - Frederica S. Wilson - Ben Nelson - Howard L. Berman - Sue Wilkins Myrick - Cliff Stearns - Robert L. Turner - Max Baucus - Doc Hastings - Gloria Negrete McLeod - Sam Farr - Michael M. Honda - Bernard Sanders - John R. Carter - Danny K. Davis - Lucille Roybal-Allard - Alan S. Lowenthal - Donna E. Shalala - Norman D. Dicks - Barney Frank - Thomas E. Petri - Barbara Boxer - Rubén Hinojosa - John Lewis - Lamar Alexander - James E. Clyburn - Patrick J. Leahy - Nancy Pelosi - David E. Price - Tom Harkin - Henry A. Waxman - Frank R. Wolf - Harry Reid - Joseph R. Pitts - Steny H. Hoyer - Dan Burton - Maurice D. Hinchey - Howard P. "Buck" McKeon - Lois Capps - Maxine Waters - Judy Biggert - Lynn C. Woolsey - John D. Rockefeller, IV - Thad Cochran - Nita M. Lowey - Eleanor Holmes Norton - Bill Pascrell, Jr. - Harold Rogers - John W. Olver - Barbara A. Mikulski - Jim McDermott - John McCain - Pat Roberts - Alcee L. Hastings - Grace F. Napolitano - Herb Kohl - Ron Paul - Eddie Bernice Johnson - Leonard L. Boswell - Jerry Lewis - Edolphus Towns - Carl Levin - Orrin G. Hatch - James M. Inhofe - Richard C. Shelby - Madeleine Z. Bordallo - Dianne Feinstein - Chuck Grassley - Don Young - Richard G. Lugar - Fortney Pete Stark - Howard Coble - Sander M. Levin - C. W. Bill Young - Charles B. Rangel - Sam Johnson - Dale E. Kildee - John Conyers, Jr. - Louise McIntosh Slaughter - Roscoe G. Bartlett - John D. Dingell - Daniel K. Inouye - Daniel K. Akaka - Frank R. Lautenberg - Ralph M. Hall + Alexandria Ocasio-Cortez + Abby Finkenauer + Katie Hill + Josh Harder + Lauren Underwood + Max Rose + Elise M. Stefanik + Mike Gallagher + Conor Lamb + Joe Neguse + Xochitl Torres Small + Anthony Gonzalez + William R. Timmons IV + Dan Crenshaw + Patrick Murphy + Trey Hollingsworth + Haley M. Stevens + Guy Reschenthaler + Colin Z. Allred + Matt Gaetz + Andy Kim + Joe Cunningham + Lance Gooden + Jared F. Golden + Aaron Schock + Tulsi Gabbard + Michael F. Q. San Nicolas + Ilhan Omar + Bryan Steil + Carlos Curbelo + Ruben J. Kihuen + Justin Amash + Eric Swalwell + Joseph P. Kennedy III + Jason Smith + Lee M. Zeldin + Brian J. Mast + Sharice Davids + Chris Pappas + Scott Taylor + Ruben Gallego + Pete Aguilar + Jim Banks + Jason Crow + Abigail Davis Spanberger + Josh Hawley + Ron DeSantis + Jaime Herrera Beutler + Adam Kinzinger + Seth Moulton + Stephanie N. Murphy + Darren Soto + Mike Levin + W. Gregory Steube + Anthony Brindisi + David G. Valadao + Tom Cotton + Markwayne Mullin + Brendan F. Boyle + Will Hurd + Antonio Delgado + Benjamin Quayle + Trey Radel + Marlin A. Stutzman + Kevin Yoder + Ryan A. Costello + Duncan Hunter + Martha Roby + Kyrsten Sinema + Ro Khanna + Nanette Diaz Barragán + Jenniffer González-Colón + Steve Watkins + Elissa Slotkin + Rashida Tlaib + Kelly Armstrong + Kendra S. Horn + Dusty Johnson + Mike Garcia + Jim Bridenstine + Jared Polis + Mia B. Love + Patrick T. McHenry + Grace Meng + Josh Gottheimer + Michael Cloud + Lizzie Fletcher + Elaine G. Luria + Vance M. McAllister + André Carson + Cory Gardner + Joaquin Castro + Derek Kilmer + Jimmy Gomez + Katie Porter + Michael Waltz + Ayanna Pressley + Ben McAdams + Dan Boren + Jon Runyan + Stephen Lee Fincher + Christopher Murphy + Devin Nunes + Cedric L. Richmond + Tim Ryan + Andy Barr + Raja Krishnamoorthi + Brian K. Fitzpatrick + Steven Horsford + Jahana Hayes + Russ Fulcher + Lori Trahan + David W. Jolly + Beto O’Rourke + Thomas A. Garrett, Jr. + Ben Ray Luján + Todd Young + Brian Schatz + Raul Ruiz + Garret Graves + David Rouzer + Ben Sasse + James Comer + Mike Johnson + Jodey C. Arrington + Angie Craig + Mikie Sherrill + Van Taylor + Chip Roy + Ben Cline + Heath Shuler + Kristi L. Noem + Sean P. Duffy + Martin Heinrich + Mike Lee + Tom Reed + Marco Rubio + Thomas Massie + Richard Hudson + Marc A. Veasey + Alexander X. Mooney + Ted Budd + Gilbert Ray Cisneros, Jr. + Debbie Mucarsel-Powell + Sean Casten + Jeffrey M. Landry + Michael G. Grimm + Frank C. Guinta + Todd Rokita + Thomas J. Rooney + Paul D. Ryan + Tom Graves + Steven M. Palazzo + Adrian Smith + Rob Woodall + Rodney Davis + Hakeem S. Jeffries + Ted Cruz + Joni Ernst + Warren Davidson + Greg Stanton + Michael Guest + Denver Riggleman + Kelly Loeffler + William M. Cowan + Robert Hurt + Robert J. Dold + Luke Messer + Bill Huizenga + Cathy McMorris Rodgers + Austin Scott + Linda T. Sánchez + Cory A. Booker + Ted Lieu + Mark Walker + Jimmy Panetta + Dean Phillips + Veronica Escobar + Jason Altmire + Tim Griffin + Daniel B. Maffei + Kelly Ayotte + Tim Huelskamp + David Young + James Lankford + Tammy Duckworth + George Holding + Darin LaHood + Jennifer Wexton + Kim Schrier + Connie Mack + Mark Takai + Mick Mulvaney + Jason Chaffetz + Jeff Denham + Raúl R. Labrador + Mike Bishop + Bruce Westerman + Vicente Gonzalez + Chrissy Houlahan + Randy Hultgren + Stephen Knight + Kirsten E. Gillibrand + Kathy Castor + Eric A. "Rick" Crawford + Theodore E. Deutch + Jeff Duncan + James A. Himes + Daniel Lipinski + Debbie Wasserman Schultz + Doug Collins + Sean Patrick Maloney + Stacey E. Plaskett + Trent Kelly + A. Drew Ferguson IV + David Kustoff + Liz Cheney + Ross Spano + Pete Stauber + Susie Lee + Martha McSally + Chris Jacobs + Jesse L. Jackson Jr. + David Rivera + John Sullivan + Jeff Chiesa + Steve Southerland II + Erik Paulsen + John Ratcliffe + Robert B. Aderholt + Rick Larsen + Kevin McCarthy + Steve Scalise + Tim Scott + Terri A. Sewell + Adam Smith + Steve Stivers + Ami Bera + Norma J. Torres + Kathleen M. Rice + Pramila Jayapal + Cynthia Axne + Tom Malinowski + John W. Rose + Fred Keller + Robert T. Schilling + Renee L. Ellmers + Christopher P. Gibson + Trey Gowdy + Timothy J. Walz + Dave Brat + Michael F. Bennet + Yvette D. Clarke + Scott DesJarlais + Brett Guthrie + Jim Jordan + James R. Langevin + Jared Huffman + Mark Pocan + Dan Sullivan + Kamala D. Harris + Catherine Cortez Masto + Salud O. Carbajal + Lloyd Smucker + Daniel Meuser + Tim Burchett + Mark E. Green + Dan Bishop + Betty Sutton + Eric Cantor + Mark L. Pryor + Mike Rogers + Joe Garcia + Michael G. Fitzpatrick + Gwen Graham + Mike Pompeo + Keith Ellison + Lynn Jenkins + John K. Delaney + Steve Russell + Christopher A. Coons + Gus M. Bilirakis + Sam Graves + Ron Kind + Rand Paul + Tony Cárdenas + Jackie Walorski + Filemon Vela + Katherine M. Clark + Barry Loudermilk + Don Bacon + TJ Cox + Gregory F. Murphy + Mark S. Critz + Todd Russell Platts + Laura Richardson + Mark Begich + Lee Terry + Patrick J. Tiberi + Joseph Crowley + Jeff Flake + Keith J. Rothfus + Mimi Walters + Karen C. Handel + Tammy Baldwin + Larry Bucshon + Charles J. "Chuck" Fleischmann + Michael T. McCaul + Pete Olson + John P. Sarbanes + David Schweikert + Suzan K. DelBene + Ann Wagner + Steve Daines + Scott Perry + John Katko + Lisa Blunt Rochester + Jamie Raskin + Thomas R. Suozzi + Troy Balderson + Jim Hagedorn + Mary Bono Mack + Mike Ross + Joe Walsh + Allen B. West + Pete P. Gallego + David Vitter + Joseph J. Heck + Ryan K. Zinke + Blake Farenthold + Peter J. Roskam + Bill Shuster + Claudia Tenney + David N. Cicilline + Mario Diaz-Balart + John Thune + Patrick J. Toomey + Juan Vargas + Cheri Bustos + Kevin Cramer + Matt Cartwright + John R. Moolenaar + Tom Emmer + Bradley Scott Schneider + Clay Higgins + Anthony G. Brown + Paul Mitchell + A. Donald McEachin + Greg Gianforte + Kevin Hern + Harley Rouda + Jim Matheson + John E. Walsh + E. Scott Rigell + Loretta Sanchez + Charles W. Dent + Evan H. Jenkins + Dean Heller + Mark Sanford + David A. Trott + Thomas MacArthur + Robert P. Casey, Jr. + Amy Klobuchar + Jeff Fortenberry + Vicky Hartzler + Frank D. Lucas + Adam B. Schiff + Michael R. Turner + Doug LaMalfa + Mark Takano + Susan W. Brooks + Chris Stewart + Jody B. Hice + Mike Bost + Thom Tillis + Roger W. Marshall + John R. Curtis + Lucy McBath + Andy Levin + Debra A. Haaland + Scott P. Brown + Rick Berg + Ben Chandler + Chip Cravaack + Nan A. S. Hayworth + Mike Pence + Jo Bonner + Mark Kirk + Scott Garrett + Jeff Miller + Pedro R. Pierluisi + Curt Clawson + Michelle Lujan Grisham + Dennis A. Ross + Elizabeth H. Esty + Barbara Comstock + Brenda Jones + Mark Meadows + Brian Higgins + James P. McGovern + Glenn Thompson + Chris Van Hollen + Robert J. Wittman + Ken Buck + Cindy Hyde-Smith + Mary Gay Scanlon + Madeleine Dean + Enid Greene Waldholtz + Steve Austria + Russ Carnahan + Kathleen C. Hochul + Alan Nunnelee + Donna F. Edwards + Steve Israel + Matt Salmon + Alan Grayson + Xavier Becerra + James B. Renacci + Maria Cantwell + Paul A. Gosar + H. Morgan Griffith + Gary C. Peters + Mike Quigley + Mike Rogers + John Shimkus + Mac Thornberry + Mark E. Amodei + Donald M. Payne, Jr. + Scott H. Peters + Daniel T. Kildee + Brad R. Wenstrup + Tim Kaine + Donald Norcross + Margaret Wood Hassan + Andy Biggs + J. Luis Correa + Tina Smith + Debbie Lesko + Hansen Clarke + Tim Holden + Robert E. Andrews + Bruce L. Braley + Cresent Hardy + Trent Franks + Jeb Hensarling + Bill Cassidy + Diana DeGette + Andy Harris + John Hoeven + Lisa Murkowski + Greg Walden + Steve Womack + David P. Joyce + Tom Rice + Earl L. "Buddy" Carter + Val Butler Demings + Jacky Rosen + Joseph D. Morelle + Susan Wild + John Joyce + Thomas P. Tiffany + Sandy Adams + Michele Bachmann + Mike McIntyre + Steve Stockman + Chaka Fattah + Charles W. Boustany Jr. + John C. Carney Jr. + Reid J. Ribble + Lou Barletta + John Abney Culberson + Gregg Harper + Daniel M. Donovan, Jr. + Jon Tester + Jeff Merkley + Wm. Lacy Clay + Robert E. Latta + Tom McClintock + Scott R. Tipton + Ann M. Kuster + Robin L. Kelly + J. French Hill + Charlie Crist + Ron Estes + Jesús G. "Chuy" García + Greg Pence + Denny Rehberg + Mary L. Landrieu + John Barrow + John Campbell + Jim Gerlach + Jack Kingston + Michael H. Michaud + Patrick Meehan + Mike Coffman + Joe Donnelly + Pete Sessions + Heidi Heitkamp + Rod Blum + Jason Lewis + Sheldon Whitehouse + Lindsey Graham + Kevin Brady + Richard Burr + Henry Cuellar + Ron Johnson + Billy Long + Stephen F. Lynch + Chellie Pingree + Rob Portman + Gregorio Kilili Camacho Sablan + Bill Foster + Ted S. Yoho + Bradley Byrne + Dan Newhouse + Glenn Grothman + David J. Trone + Steven C. LaTourette + Candice S. Miller + Cynthia M. Lummis + Tom Price + Robert Menendez + Mark R. Warner + Mo Brooks + Jim Cooper + Bill Flores + Bob Gibbs + Bill Johnson + Henry C. "Hank" Johnson, Jr. + Doug Lamborn + Betty McCollum + Jerry Moran + Brad Sherman + Suzanne Bonamici + Gary J. Palmer + Ralph Lee Abraham + Brenda L. Lawrence + Mike Rounds + Dwight Evans + Adriano Espaillat + Doug Jones + Mike Braun + Brad Miller + Kay R. Hagan + Dave Camp + Luther Strange + Claire McCaskill + Luis V. Gutiérrez + Darrell E. Issa + Bruce Poliquin + Karen Bass + Ken Calvert + Shelley Moore Capito + Steve Chabot + Judy Chu + Joe Courtney + Michael F. Doyle + Louie Gohmert + Gregory W. Meeks + Ed Perlmutter + Christopher H. Smith + Fred Upton + Nydia M. Velázquez + Randy K. Weber, Sr. + Debbie Dingell + Neal P. Dunn + Francis Rooney + Ralph Norman + Jefferson Van Drew + Ron Wright + Charles F. Bass + David Dreier + Steven R. Rothman + Janice Hahn + Dan Benishek + J. Randy Forbes + Tim Murphy + Bob Corker + Michael E. Capuano + Bob Goodlatte + Leonard Lance + Ileana Ros-Lehtinen + Carol Shea-Porter + John J. Faso + Tom Marino + Sherrod Brown + John Barrasso + Susan M. Collins + John Cornyn + Marsha Blackburn + Jim Costa + Marcia L. Fudge + William R. Keating + David Loebsack + Blaine Luetkemeyer + Julia Brownley + Denny Heck + Mark DeSaulnier + John H. Rutherford + Ed Case + Rick Scott + Shelley Berkley + Brian P. Bilbray + Ann Marie Buerkle + Larry Kissell + Jean Schmidt + Jim DeMint + John F. Tierney + Kerry L. Bentivolio + John Fleming + Richard L. Hanna + Richard B. Nugent + Al Franken + Diane Black + Edward R. Royce + Colleen Hanabusa + Elijah E. Cummings + Roger F. Wicker + Rob Bishop + Vern Buchanan + Mike Crapo + Kenny Marchant + Jerry McNerney + Gwen Moore + Frank Pallone, Jr. + Kurt Schrader + Albio Sires + Mike Thompson + Tim Walberg + Deb Fischer + Rick W. Allen + John Kennedy + Jo Ann Emerson + Mark Udall + Timothy H. Bishop + Mike Johanns + Lynn A. Westmoreland + David G. Reichert + Chris Collins + Debbie Stabenow + Roy Blunt + John Boozman + Michael C. Burgess + Gerald E. Connolly + Sheila Jackson Lee + Patty Murray + Charles E. Schumer + Michael K. Simpson + Jackie Speier + Dina Titus + Joyce Beatty + Donald S. Beyer, Jr. + Ann Kirkpatrick + Sylvia R. Garcia + Carol D. Miller + Francisco "Quico" Canseco + Jerry F. Costello + William L. Owens + Nick J. Rahall II + William L. Enyart + John A. Boehner + Randy Neugebauer + Brad Ashford + Joe Barton + Jack Reed + Steve Cohen + Tom Cole + Steve King + Richard E. Neal + Paul Tonko + Peter J. Visclosky + Daniel Webster + Ron Wyden + Elizabeth Warren + Roger Williams + David Perdue + Kent Conrad + David Alan Curson + Tom Coburn + Rush Holt + Tom Latham + Gary G. Miller + Allyson Y. Schwartz + Ted Poe + Robert Pittenger + Tom Udall + Earl Blumenauer + K. Michael Conaway + Raúl M. Grijalva + Mike Kelly + John B. Larson + Bennie G. Thompson + Lois Frankel + Brian Babin + Al Lawson, Jr. + Kweisi Mfume + Olympia J. Snowe + W. Todd Akin + Joe Baca + Spencer Bachus + John Kline + John J. Duncan, Jr. + Gene Green + Stevan Pearce + Dana Rohrabacher + Lamar Smith + Thomas R. Carper + Jeanne Shaheen + Joe Manchin, III + Sanford D. Bishop, Jr. + G. K. Butterfield + Peter A. DeFazio + Eliot L. Engel + Al Green + Mazie K. Hirono + Zoe Lofgren + David B. McKinley + Jerrold Nadler + Bill Posey + Robert C. "Bobby" Scott + Peter Welch + Joe Wilson + John A. Yarmuth + Aumua Amata Coleman Radewagen + Jack Bergman + Mitt Romney + Jim Webb + Timothy V. Johnson + Dennis J. Kucinich + Daniel E. Lungren + Rodney Alexander + Tim Johnson + Paul C. Broun + Corrine Brown + Jeff Sessions + Rodney P. Frelinghuysen + Frank A. LoBiondo + Niki Tsongas + Richard Blumenthal + Lloyd Doggett + Marcy Kaptur + Barbara Lee + Carolyn B. Maloney + Edward J. Markey + C. A. Dutch Ruppersberger + Bobby L. Rush + Alma S. Adams + Tom O’Halleran + Charles A. Gonzalez + Wally Herger + Melvin L. Watt + Donna M. Christensen + George Miller + James P. Moran + Ron Barber + Robert A. Brady + John Garamendi + David P. Roe + David Scott + Bonnie Watson Coleman + James R. Baird + Elton Gallegly + Donald A. Manzullo + Silvestre Reyes + Carolyn McCarthy + Ander Crenshaw + Johnny Isakson + Richard J. Durbin + Michael B. Enzi + Emanuel Cleaver + Susan A. Davis + Peter T. King + Doris O. Matsui + Collin C. Peterson + Janice D. Schakowsky + Angus S. King, Jr. + Jeff Bingaman + Kay Bailey Hutchison + John F. Kerry + Saxby Chambliss + Eni F. H. Faleomavaega + Ed Pastor + Ed Whitfield + Daniel Coats + John L. Mica + Richard M. Nolan + Walter B. Jones + Benjamin L. Cardin + James E. Risch + Rosa L. DeLauro + Virginia Foxx + Kay Granger + F. James Sensenbrenner, Jr. + José E. Serrano + Paul Cook + Bob Filner + Joseph I. Lieberman + Gary L. Ackerman + Phil Gingrey + Jon Kyl + Bill Nelson + Mitch McConnell + Anna G. Eshoo + Frederica S. Wilson + Ben Nelson + Howard L. Berman + Sue Wilkins Myrick + Cliff Stearns + Robert L. Turner + Max Baucus + Doc Hastings + Gloria Negrete McLeod + Sam Farr + Michael M. Honda + Bernard Sanders + John R. Carter + Danny K. Davis + Lucille Roybal-Allard + Alan S. Lowenthal + Donna E. Shalala + Norman D. Dicks + Barney Frank + Thomas E. Petri + Barbara Boxer + Rubén Hinojosa + John Lewis + Lamar Alexander + James E. Clyburn + Patrick J. Leahy + Nancy Pelosi + David E. Price + Tom Harkin + Henry A. Waxman + Frank R. Wolf + Harry Reid + Joseph R. Pitts + Steny H. Hoyer + Dan Burton + Maurice D. Hinchey + Howard P. "Buck" McKeon + Lois Capps + Maxine Waters + Judy Biggert + Lynn C. Woolsey + John D. Rockefeller, IV + Thad Cochran + Nita M. Lowey + Eleanor Holmes Norton + Bill Pascrell, Jr. + Harold Rogers + John W. Olver + Barbara A. Mikulski + Jim McDermott + John McCain + Pat Roberts + Alcee L. Hastings + Grace F. Napolitano + Herb Kohl + Ron Paul + Eddie Bernice Johnson + Leonard L. Boswell + Jerry Lewis + Edolphus Towns + Carl Levin + Orrin G. Hatch + James M. Inhofe + Richard C. Shelby + Madeleine Z. Bordallo + Dianne Feinstein + Chuck Grassley + Don Young + Richard G. Lugar + Fortney Pete Stark + Howard Coble + Sander M. Levin + C. W. Bill Young + Charles B. Rangel + Sam Johnson + Dale E. Kildee + John Conyers, Jr. + Louise McIntosh Slaughter + Roscoe G. Bartlett + John D. Dingell + Daniel K. Inouye + Daniel K. Akaka + Frank R. Lautenberg + Ralph M. Hall diff --git a/test/output/wealthBritainBar.svg b/test/output/wealthBritainBar.svg index f4baf10b96..ce7d260448 100644 --- a/test/output/wealthBritainBar.svg +++ b/test/output/wealthBritainBar.svg @@ -43,10 +43,10 @@ wealth → - - - - + + + + 16-34’s diff --git a/test/output/youngAdults.html b/test/output/youngAdults.html index 336d07e429..ac7872c1a1 100644 --- a/test/output/youngAdults.html +++ b/test/output/youngAdults.html @@ -26,11 +26,11 @@

…by age and sex. Data: Eurostat

align-items: center; margin-right: 1em; } - + - Y16-19 + Y16-19 - Y20-24 + Y20-24 Y25-29 @@ -245,73 +245,73 @@

…by age and sex. Data: Eurostat

- + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + diff --git a/test/scales/scales-test.js b/test/scales/scales-test.js index 08558d732d..529417f848 100644 --- a/test/scales/scales-test.js +++ b/test/scales/scales-test.js @@ -3,6 +3,20 @@ import * as d3 from "d3"; import assert from "../assert.js"; import it from "../jsdom.js"; +// TODO Expose as d3.schemeObservable10, or Plot.scheme("observable10")? +const schemeObservable10 = [ + "#4269d0", + "#efb118", + "#ff725c", + "#6cc5b0", + "#a463f2", + "#ff8ab7", + "#9c6b4e", + "#97bbf5", + "#3ca951", + "#9498a0" +]; + it("Plot throws an error if an ordinal position scale has a huge inferred domain", () => { assert.ok(Plot.cellX({length: 10000}, {x: d3.randomLcg(42)}).plot()); assert.throws(() => Plot.cellX({length: 10001}, {x: d3.randomLcg(42)}).plot(), /implicit ordinal domain of x scale/); @@ -339,7 +353,7 @@ it("plot(…).scale(name).unknown reflects the given unknown option for an ordin type: "ordinal", domain: ["Dream"], unknown: "#ccc", - range: d3.schemeTableau10 + range: schemeObservable10 }); }); @@ -1200,7 +1214,7 @@ it("plot(…).scale('color') can return an ordinal scale", async () => { scaleEqual(plot.scale("color"), { type: "ordinal", domain: ["Biscoe", "Dream", "Torgersen"], - range: d3.schemeTableau10 + range: schemeObservable10 }); }); @@ -1212,7 +1226,7 @@ it("plot(…).scale('color') can return an ordinal scale with a transform", asyn type: "ordinal", domain: ["BISCOE", "DREAM", "TORGERSEN"], transform, - range: d3.schemeTableau10 + range: schemeObservable10 }); }); @@ -1222,7 +1236,7 @@ it("plot(…).scale('color') can promote a reversed categorical scale to an ordi scaleEqual(plot.scale("color"), { type: "ordinal", domain: ["Torgersen", "Dream", "Biscoe"], - range: d3.schemeTableau10 + range: schemeObservable10 }); }); @@ -1232,7 +1246,7 @@ it("plot(…).scale('color') can promotes an explicitly categorical scale to an scaleEqual(plot.scale("color"), { type: "ordinal", domain: ["Biscoe", "Dream", "Torgersen"], - range: d3.schemeTableau10 + range: schemeObservable10 }); }); @@ -2037,12 +2051,12 @@ it("plot(…).scale('color') promotes the given scheme option to an interpolator it("plot(…).scale('color') promotes the given scheme option to a range for ordinal scales", async () => { const penguins = await d3.csv("data/penguins.csv", d3.autoType); - assert.deepStrictEqual(Plot.dotX(penguins, {fill: "island"}).plot().scale("color").range, d3.schemeTableau10); + assert.deepStrictEqual(Plot.dotX(penguins, {fill: "island"}).plot().scale("color").range, schemeObservable10); assert.deepStrictEqual( Plot.dotX(penguins, {fill: "island"}) .plot({color: {type: "categorical"}}) .scale("color").range, - d3.schemeTableau10 + schemeObservable10 ); assert.deepStrictEqual( Plot.dotX(penguins, {fill: "island"})