pax_global_header00006660000000000000000000000064136473613400014521gustar00rootroot0000000000000052 comment=7244e45e68af39c519f76667a03039d5b24dd453 d3-5.16.0/000077500000000000000000000000001364736134000121205ustar00rootroot00000000000000d3-5.16.0/.gitignore000066400000000000000000000000771364736134000141140ustar00rootroot00000000000000*.sublime-workspace .DS_Store dist/ node_modules npm-debug.log d3-5.16.0/API.md000066400000000000000000004225611364736134000130650ustar00rootroot00000000000000# D3 API Reference D3 is a [collection of modules](https://github.com/d3) that are designed to work together; you can use the modules independently, or you can use them together as part of the default build. The source and documentation for each module is available in its repository. Follow the links below to learn more. For changes between major versions, see [CHANGES](https://github.com/d3/d3/blob/master/CHANGES.md); see also the [release notes](https://github.com/d3/d3/releases) and the [3.x reference](https://github.com/d3/d3-3.x-api-reference/blob/master/API-Reference.md). * [Arrays](#arrays-d3-array) ([Statistics](#statistics), [Search](#search), [Transformations](#transformations), [Histograms](#histograms)) * [Axes](#axes-d3-axis) * [Brushes](#brushes-d3-brush) * [Chords](#chords-d3-chord) * [Collections](#collections-d3-collection) ([Objects](#objects), [Maps](#maps), [Sets](#sets), [Nests](#nests)) * [Colors](#colors-d3-color) * [Color Schemes](#color-schemes-d3-scale-chromatic) * [Contours](#contours-d3-contour) * [Dispatches](#dispatches-d3-dispatch) * [Dragging](#dragging-d3-drag) * [Delimiter-Separated Values](#delimiter-separated-values-d3-dsv) * [Easings](#easings-d3-ease) * [Fetches](#fetches-d3-fetch) * [Forces](#forces-d3-force) * [Number Formats](#number-formats-d3-format) * [Geographies](#geographies-d3-geo) ([Paths](#paths), [Projections](#projections), [Spherical Math](#spherical-math), [Spherical Shapes](#spherical-shapes), [Streams](#streams), [Transforms](#transforms)) * [Hierarchies](#hierarchies-d3-hierarchy) * [Interpolators](#interpolators-d3-interpolate) * [Paths](#paths-d3-path) * [Polygons](#polygons-d3-polygon) * [Quadtrees](#quadtrees-d3-quadtree) * [Random Numbers](#random-numbers-d3-random) * [Scales](#scales-d3-scale) ([Continuous](#continuous-scales), [Sequential](#sequential-scales), [Diverging](#diverging-scales), [Quantize](#quantize-scales), [Ordinal](#ordinal-scales)) * [Selections](#selections-d3-selection) ([Selecting](#selecting-elements), [Modifying](#modifying-elements), [Data](#joining-data), [Events](#handling-events), [Control](#control-flow), [Local Variables](#local-variables), [Namespaces](#namespaces)) * [Shapes](#shapes-d3-shape) ([Arcs](#arcs), [Pies](#pies), [Lines](#lines), [Areas](#areas), [Curves](#curves), [Links](#links), [Symbols](#symbols), [Stacks](#stacks)) * [Time Formats](#time-formats-d3-time-format) * [Time Intervals](#time-intervals-d3-time) * [Timers](#timers-d3-timer) * [Transitions](#transitions-d3-transition) * [Voronoi Diagrams](#voronoi-diagrams-d3-voronoi) * [Zooming](#zooming-d3-zoom) D3 uses [semantic versioning](http://semver.org/). The current version is exposed as d3.version. ## [Arrays (d3-array)](https://github.com/d3/d3-array/tree/v1.2.4) Array manipulation, ordering, searching, summarizing, etc. ### [Statistics](https://github.com/d3/d3-array/blob/v1.2.4/README.md#statistics) Methods for computing basic summary statistics. * [d3.min](https://github.com/d3/d3-array/blob/v1.2.4/README.md#min) - compute the minimum value in an array. * [d3.max](https://github.com/d3/d3-array/blob/v1.2.4/README.md#max) - compute the maximum value in an array. * [d3.extent](https://github.com/d3/d3-array/blob/v1.2.4/README.md#extent) - compute the minimum and maximum value in an array. * [d3.sum](https://github.com/d3/d3-array/blob/v1.2.4/README.md#sum) - compute the sum of an array of numbers. * [d3.mean](https://github.com/d3/d3-array/blob/v1.2.4/README.md#mean) - compute the arithmetic mean of an array of numbers. * [d3.median](https://github.com/d3/d3-array/blob/v1.2.4/README.md#median) - compute the median of an array of numbers (the 0.5-quantile). * [d3.quantile](https://github.com/d3/d3-array/blob/v1.2.4/README.md#quantile) - compute a quantile for a sorted array of numbers. * [d3.variance](https://github.com/d3/d3-array/blob/v1.2.4/README.md#variance) - compute the variance of an array of numbers. * [d3.deviation](https://github.com/d3/d3-array/blob/v1.2.4/README.md#deviation) - compute the standard deviation of an array of numbers. ### [Search](https://github.com/d3/d3-array/blob/v1.2.4/README.md#search) Methods for searching arrays for a specific element. * [d3.scan](https://github.com/d3/d3-array/blob/v1.2.4/README.md#scan) - linear search for an element using a comparator. * [d3.bisect](https://github.com/d3/d3-array/blob/v1.2.4/README.md#bisect) - binary search for a value in a sorted array. * [d3.bisectRight](https://github.com/d3/d3-array/blob/v1.2.4/README.md#bisectRight) - binary search for a value in a sorted array. * [d3.bisectLeft](https://github.com/d3/d3-array/blob/v1.2.4/README.md#bisectLeft) - binary search for a value in a sorted array. * [d3.bisector](https://github.com/d3/d3-array/blob/v1.2.4/README.md#bisector) - bisect using an accessor or comparator. * [*bisector*.left](https://github.com/d3/d3-array/blob/v1.2.4/README.md#bisector_left) - bisectLeft, with the given comparator. * [*bisector*.right](https://github.com/d3/d3-array/blob/v1.2.4/README.md#bisector_right) - bisectRight, with the given comparator. * [d3.ascending](https://github.com/d3/d3-array/blob/v1.2.4/README.md#ascending) - compute the natural order of two values. * [d3.descending](https://github.com/d3/d3-array/blob/v1.2.4/README.md#descending) - compute the natural order of two values. ### [Transformations](https://github.com/d3/d3-array/blob/v1.2.4/README.md#transformations) Methods for transforming arrays and for generating new arrays. * [d3.cross](https://github.com/d3/d3-array/blob/v1.2.4/README.md#cross) - compute the Cartesian product of two arrays. * [d3.merge](https://github.com/d3/d3-array/blob/v1.2.4/README.md#merge) - merge multiple arrays into one array. * [d3.pairs](https://github.com/d3/d3-array/blob/v1.2.4/README.md#pairs) - create an array of adjacent pairs of elements. * [d3.permute](https://github.com/d3/d3-array/blob/v1.2.4/README.md#permute) - reorder an array of elements according to an array of indexes. * [d3.shuffle](https://github.com/d3/d3-array/blob/v1.2.4/README.md#shuffle) - randomize the order of an array. * [d3.ticks](https://github.com/d3/d3-array/blob/v1.2.4/README.md#ticks) - generate representative values from a numeric interval. * [d3.tickIncrement](https://github.com/d3/d3-array/blob/v1.2.4/README.md#tickIncrement) - generate representative values from a numeric interval. * [d3.tickStep](https://github.com/d3/d3-array/blob/v1.2.4/README.md#tickStep) - generate representative values from a numeric interval. * [d3.range](https://github.com/d3/d3-array/blob/v1.2.4/README.md#range) - generate a range of numeric values. * [d3.transpose](https://github.com/d3/d3-array/blob/v1.2.4/README.md#transpose) - transpose an array of arrays. * [d3.zip](https://github.com/d3/d3-array/blob/v1.2.4/README.md#zip) - transpose a variable number of arrays. ### [Histograms](https://github.com/d3/d3-array/blob/v1.2.4/README.md#histograms) Bin discrete samples into continuous, non-overlapping intervals. * [d3.histogram](https://github.com/d3/d3-array/blob/v1.2.4/README.md#histogram) - create a new histogram generator. * [*histogram*](https://github.com/d3/d3-array/blob/v1.2.4/README.md#_histogram) - compute the histogram for the given array of samples. * [*histogram*.value](https://github.com/d3/d3-array/blob/v1.2.4/README.md#histogram_value) - specify a value accessor for each sample. * [*histogram*.domain](https://github.com/d3/d3-array/blob/v1.2.4/README.md#histogram_domain) - specify the interval of observable values. * [*histogram*.thresholds](https://github.com/d3/d3-array/blob/v1.2.4/README.md#histogram_thresholds) - specify how values are divided into bins. * [d3.thresholdFreedmanDiaconis](https://github.com/d3/d3-array/blob/v1.2.4/README.md#thresholdFreedmanDiaconis) - the Freedman–Diaconis binning rule. * [d3.thresholdScott](https://github.com/d3/d3-array/blob/v1.2.4/README.md#thresholdScott) - Scott’s normal reference binning rule. * [d3.thresholdSturges](https://github.com/d3/d3-array/blob/v1.2.4/README.md#thresholdSturges) - Sturges’ binning formula. ## [Axes (d3-axis)](https://github.com/d3/d3-axis/tree/v1.0.12) Human-readable reference marks for scales. * [d3.axisTop](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axisTop) - create a new top-oriented axis generator. * [d3.axisRight](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axisRight) - create a new right-oriented axis generator. * [d3.axisBottom](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axisBottom) - create a new bottom-oriented axis generator. * [d3.axisLeft](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axisLeft) - create a new left-oriented axis generator. * [*axis*](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#_axis) - generate an axis for the given selection. * [*axis*.scale](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axis_scale) - set the scale. * [*axis*.ticks](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axis_ticks) - customize how ticks are generated and formatted. * [*axis*.tickArguments](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axis_tickArguments) - customize how ticks are generated and formatted. * [*axis*.tickValues](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axis_tickValues) - set the tick values explicitly. * [*axis*.tickFormat](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axis_tickFormat) - set the tick format explicitly. * [*axis*.tickSize](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axis_tickSize) - set the size of the ticks. * [*axis*.tickSizeInner](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axis_tickSizeInner) - set the size of inner ticks. * [*axis*.tickSizeOuter](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axis_tickSizeOuter) - set the size of outer (extent) ticks. * [*axis*.tickPadding](https://github.com/d3/d3-axis/blob/v1.0.12/README.md#axis_tickPadding) - set the padding between ticks and labels. ## [Brushes (d3-brush)](https://github.com/d3/d3-brush/tree/v1.1.5) Select a one- or two-dimensional region using the mouse or touch. * [d3.brush](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brush) - create a new two-dimensional brush. * [d3.brushX](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brushX) - create a brush along the *x*-dimension. * [d3.brushY](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brushY) - create a brush along the *y*-dimension. * [*brush*](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#_brush) - apply the brush to a selection. * [*brush*.move](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brush_move) - move the brush selection. * [*brush*.clear](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brush_clear) - clear the brush selection. * [*brush*.extent](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brush_extent) - define the brushable region. * [*brush*.filter](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brush_filter) - control which input events initiate brushing. * [*brush*.handleSize](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brush_handleSize) - set the size of the brush handles. * [*brush*.touchable](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brush_touchable) - set the touch support detector. * [*brush*.keyModifiers](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brush_keyModifiers) - enable or disable key interaction. * [*brush*.on](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brush_on) - listen for brush events. * [d3.brushSelection](https://github.com/d3/d3-brush/blob/v1.1.5/README.md#brushSelection) - get the brush selection for a given node. ## [Chords (d3-chord)](https://github.com/d3/d3-chord/tree/v1.0.6) * [d3.chord](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#chord) - create a new chord layout. * [*chord*](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#_chord) - compute the layout for the given matrix. * [*chord*.padAngle](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#chord_padAngle) - set the padding between adjacent groups. * [*chord*.sortGroups](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#chord_sortGroups) - define the group order. * [*chord*.sortSubgroups](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#chord_sortSubgroups) - define the source and target order within groups. * [*chord*.sortChords](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#chord_sortChords) - define the chord order across groups. * [d3.ribbon](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#ribbon) - create a ribbon shape generator. * [*ribbon*](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#_ribbon) - generate a ribbon shape. * [*ribbon*.source](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#ribbon_source) - set the source accessor. * [*ribbon*.target](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#ribbon_target) - set the target accessor. * [*ribbon*.radius](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#ribbon_radius) - set the ribbon source or target radius. * [*ribbon*.startAngle](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#ribbon_startAngle) - set the ribbon source or target start angle. * [*ribbon*.endAngle](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#ribbon_endAngle) - set the ribbon source or target end angle. * [*ribbon*.context](https://github.com/d3/d3-chord/blob/v1.0.6/README.md#ribbon_context) - set the render context. ## [Collections (d3-collection)](https://github.com/d3/d3-collection/tree/v1.0.7) Handy data structures for elements keyed by string. ### [Objects](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#objects) Methods for converting associative arrays (objects) to arrays. * [d3.keys](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#keys) - list the keys of an associative array. * [d3.values](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#values) - list the values of an associated array. * [d3.entries](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#entries) - list the key-value entries of an associative array. ### [Maps](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#maps) Like ES6 Map, but with string keys and a few other differences. * [d3.map](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map) - create a new, empty map. * [*map*.has](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_has) - returns true if the map contains the given key. * [*map*.get](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_get) - get the value for the given key. * [*map*.set](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_set) - set the value for the given key. * [*map*.remove](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_remove) - remove the entry for given key. * [*map*.clear](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_clear) - remove all entries. * [*map*.keys](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_keys) - get the array of keys. * [*map*.values](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_values) - get the array of values. * [*map*.entries](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_entries) - get the array of entries (key-values objects). * [*map*.each](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_each) - call a function for each entry. * [*map*.empty](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_empty) - returns false if the map has at least one entry. * [*map*.size](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#map_size) - compute the number of entries. ### [Sets](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#sets) Like ES6 Set, but with string keys and a few other differences. * [d3.set](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#set) - create a new, empty set. * [*set*.has](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#set_has) - returns true if the set contains the given value. * [*set*.add](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#set_add) - add the given value. * [*set*.remove](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#set_remove) - remove the given value. * [*set*.clear](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#set_clear) - remove all values. * [*set*.values](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#set_values) - get the array of values. * [*set*.each](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#set_each) - call a function for each value. * [*set*.empty](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#set_empty) - returns true if the set has at least one value. * [*set*.size](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#set_size) - compute the number of values. ### [Nests](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#nests) Group data into arbitrary hierarchies. * [d3.nest](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#nest) - create a new nest generator. * [*nest*.key](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#nest_key) - add a level to the nest hierarchy. * [*nest*.sortKeys](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#nest_sortKeys) - sort the current nest level by key. * [*nest*.sortValues](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#nest_sortValues) - sort the leaf nest level by value. * [*nest*.rollup](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#nest_rollup) - specify a rollup function for leaf values. * [*nest*.map](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#nest_map) - generate the nest, returning a map. * [*nest*.object](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#nest_object) - generate the nest, returning an associative array. * [*nest*.entries](https://github.com/d3/d3-collection/blob/v1.0.7/README.md#nest_entries) - generate the nest, returning an array of key-values tuples. ## [Colors (d3-color)](https://github.com/d3/d3-color/tree/v1.4.1) Color manipulation and color space conversion. * [d3.color](https://github.com/d3/d3-color/blob/v1.4.1/README.md#color) - parse the given CSS color specifier. * [*color*.copy](https://github.com/d3/d3-color/blob/v1.4.1/README.md#color_copy) - return a copy of this color. * [*color*.rgb](https://github.com/d3/d3-color/blob/v1.4.1/README.md#color_rgb) - compute the RGB equivalent of this color. * [*color*.brighter](https://github.com/d3/d3-color/blob/v1.4.1/README.md#color_brighter) - create a brighter copy of this color. * [*color*.darker](https://github.com/d3/d3-color/blob/v1.4.1/README.md#color_darker) - create a darker copy of this color. * [*color*.displayable](https://github.com/d3/d3-color/blob/v1.4.1/README.md#color_displayable) - returns true if the color is displayable on standard hardware. * [*color*.formatHex](https://github.com/d3/d3-color/blob/v1.4.1/README.md#color_formatHex) - returns the hexadecimal RGB string representation of this color. * [*color*.formatHsl](https://github.com/d3/d3-color/blob/v1.4.1/README.md#color_formatHsl) - returns the RGB string representation of this color. * [*color*.formatRgb](https://github.com/d3/d3-color/blob/v1.4.1/README.md#color_formatRgb) - returns the HSL string representation of this color. * [*color*.toString](https://github.com/d3/d3-color/blob/v1.4.1/README.md#color_toString) - returns the RGB string representation of this color. * [d3.rgb](https://github.com/d3/d3-color/blob/v1.4.1/README.md#rgb) - create a new RGB color. * [d3.hsl](https://github.com/d3/d3-color/blob/v1.4.1/README.md#hsl) - create a new HSL color. * [d3.lab](https://github.com/d3/d3-color/blob/v1.4.1/README.md#lab) - create a new Lab color. * [d3.hcl](https://github.com/d3/d3-color/blob/v1.4.1/README.md#hcl) - create a new HCL color. * [d3.lch](https://github.com/d3/d3-color/blob/v1.4.1/README.md#lch) - create a new HCL color. * [d3.gray](https://github.com/d3/d3-color/blob/v1.4.1/README.md#gray) - create a new Lab gray. * [d3.cubehelix](https://github.com/d3/d3-color/blob/v1.4.1/README.md#cubehelix) - create a new Cubehelix color. ## [Color Schemes (d3-scale-chromatic)](https://github.com/d3/d3-scale-chromatic/tree/v1.5.0) Color ramps and palettes for quantitative, ordinal and categorical scales. ### Categorical * [d3.schemeCategory10](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeCategory10) - * [d3.schemeAccent](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeAccent) - * [d3.schemeDark2](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeDark2) - * [d3.schemePaired](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemePaired) - * [d3.schemePastel1](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemePastel1) - * [d3.schemePastel2](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemePastel2) - * [d3.schemeSet1](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeSet1) - * [d3.schemeSet2](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeSet2) - * [d3.schemeSet3](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeSet3) - * [d3.schemeTableau10](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeTableau10) - ### Diverging * [d3.interpolateBrBG](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateBrBG) - * [d3.interpolatePiYG](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolatePiYG) - * [d3.interpolatePRGn](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolatePRGn) - * [d3.interpolatePuOr](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolatePuOr) - * [d3.interpolateRdBu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateRdBu) - * [d3.interpolateRdGy](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateRdGy) - * [d3.interpolateRdYlBu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateRdYlBu) - * [d3.interpolateRdYlGn](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateRdYlGn) - * [d3.interpolateSpectral](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateSpectral) - * [d3.schemeBrBG](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeBrBG) - * [d3.schemePiYG](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemePiYG) - * [d3.schemePRGn](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemePRGn) - * [d3.schemePuOr](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemePuOr) - * [d3.schemeRdBu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeRdBu) - * [d3.schemeRdGy](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeRdGy) - * [d3.schemeRdYlBu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeRdYlBu) - * [d3.schemeRdYlGn](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeRdYlGn) - * [d3.schemeSpectral](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeSpectral) - ### Sequential (Single Hue) * [d3.interpolateBlues](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateBlues) - * [d3.interpolateGreens](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateGreens) - * [d3.interpolateGreys](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateGreys) - * [d3.interpolateOranges](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateOranges) - * [d3.interpolatePurples](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolatePurples) - * [d3.interpolateReds](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateReds) - * [d3.schemeBlues](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeBlues) - * [d3.schemeGreens](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeGreens) - * [d3.schemeGreys](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeGreys) - * [d3.schemeOranges](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeOranges) - * [d3.schemePurples](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemePurples) - * [d3.schemeReds](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeReds) - ### Sequential (Multi-Hue) * [d3.interpolateBuGn](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateBuGn) - * [d3.interpolateBuPu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateBuPu) - * [d3.interpolateCividis](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateCividis) - * [d3.interpolateCool](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateCool) - * [d3.interpolateCubehelixDefault](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateCubehelixDefault) - * [d3.interpolateGnBu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateGnBu) - * [d3.interpolateInferno](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateInferno) - * [d3.interpolateMagma](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateMagma) - * [d3.interpolateOrRd](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateOrRd) - * [d3.interpolatePlasma](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolatePlasma) - * [d3.interpolatePuBu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolatePuBu) - * [d3.interpolatePuBuGn](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolatePuBuGn) - * [d3.interpolatePuRd](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolatePuRd) - * [d3.interpolateRdPu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateRdPu) - * [d3.interpolateTurbo](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateTurbo) - * [d3.interpolateViridis](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateViridis) - * [d3.interpolateWarm](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateWarm) - * [d3.interpolateYlGn](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateYlGn) - * [d3.interpolateYlGnBu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateYlGnBu) - * [d3.interpolateYlOrBr](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateYlOrBr) - * [d3.interpolateYlOrRd](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateYlOrRd) - * [d3.schemeBuGn](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeBuGn) - * [d3.schemeBuPu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeBuPu) - * [d3.schemeGnBu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeGnBu) - * [d3.schemeOrRd](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeOrRd) - * [d3.schemePuBu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemePuBu) - * [d3.schemePuBuGn](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemePuBuGn) - * [d3.schemePuRd](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemePuRd) - * [d3.schemeRdPu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeRdPu) - * [d3.schemeYlGn](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeYlGn) - * [d3.schemeYlGnBu](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeYlGnBu) - * [d3.schemeYlOrBr](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeYlOrBr) - * [d3.schemeYlOrRd](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#schemeYlOrRd) - ### Cyclical * [d3.interpolateRainbow](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateRainbow) - the “less-angry” rainbow * [d3.interpolateSinebow](https://github.com/d3/d3-scale-chromatic/blob/v1.5.0/README.md#interpolateSinebow) - the “sinebow” smooth rainbow ## [Contours (d3-contour)](https://github.com/d3/d3-contour/tree/v1.3.2) Compute contour polygons using marching squares. * [d3.contours](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#contours) - create a new contour generator. * [contours](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#_contours) - compute the contours for a given grid of values. * [contours.contour](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#contours_contour) - * [contours.size](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#contours_size) - * [contours.smooth](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#contours_smooth) - * [contours.thresholds](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#contours_thresholds) - * [d3.contourDensity](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#contourDensity) - create a new density estimator. * [density](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#_density) - estimate the density of a given array of samples. * [density.x](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#density_x) - * [density.y](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#density_y) - * [density.size](https://github.com/d3/d3-contour#density_size) - * [density.cellSize](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#density_cellSize) - * [density.thresholds](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#density_thresholds) - * [density.bandwidth](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#density_bandwidth) - * [density.weight](https://github.com/d3/d3-contour/blob/v1.3.2/README.md#density_weight) - ## [Dispatches (d3-dispatch)](https://github.com/d3/d3-dispatch/tree/v1.0.6) Separate concerns using named callbacks. * [d3.dispatch](https://github.com/d3/d3-dispatch/blob/v1.0.6/README.md#dispatch) - create a custom event dispatcher. * [*dispatch*.on](https://github.com/d3/d3-dispatch/blob/v1.0.6/README.md#dispatch_on) - register or unregister an event listener. * [*dispatch*.copy](https://github.com/d3/d3-dispatch/blob/v1.0.6/README.md#dispatch_copy) - create a copy of a dispatcher. * [*dispatch*.*call*](https://github.com/d3/d3-dispatch/blob/v1.0.6/README.md#dispatch_call) - dispatch an event to registered listeners. * [*dispatch*.*apply*](https://github.com/d3/d3-dispatch/blob/v1.0.6/README.md#dispatch_apply) - dispatch an event to registered listeners. ## [Dragging (d3-drag)](https://github.com/d3/d3-drag/tree/v1.2.5) Drag and drop SVG, HTML or Canvas using mouse or touch input. * [d3.drag](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#drag) - create a drag behavior. * [*drag*](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#_drag) - apply the drag behavior to a selection. * [*drag*.container](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#drag_container) - set the coordinate system. * [*drag*.filter](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#drag_filter) - ignore some initiating input events. * [*drag*.touchable](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#drag_touchable) - set the touch support detector. * [*drag*.subject](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#drag_subject) - set the thing being dragged. * [*drag*.clickDistance](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#drag_clickDistance) - set the click distance threshold. * [*drag*.on](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#drag_on) - listen for drag events. * [*event*.on](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#event_on) - listen for drag events on the current gesture. * [d3.dragDisable](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#dragDisable) - prevent native drag-and-drop and text selection. * [d3.dragEnable](https://github.com/d3/d3-drag/blob/v1.2.5/README.md#dragEnable) - enable native drag-and-drop and text selection. ## [Delimiter-Separated Values (d3-dsv)](https://github.com/d3/d3-dsv/tree/v1.2.0) Parse and format delimiter-separated values, most commonly CSV and TSV. * [d3.dsvFormat](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#dsvFormat) - create a new parser and formatter for the given delimiter. * [*dsv*.parse](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#dsv_parse) - parse the given string, returning an array of objects. * [*dsv*.parseRows](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#dsv_parseRows) - parse the given string, returning an array of rows. * [*dsv*.format](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#dsv_format) - format the given array of objects. * [*dsv*.formatBody](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#dsv_formatBody) - format the given array of objects. * [*dsv*.formatRows](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#dsv_formatRows) - format the given array of rows. * [*dsv*.formatRow](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#dsv_formatRow) - format the given row. * [*dsv*.formatValue](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#dsv_formatValue) - format the given value. * [d3.autoType](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#autoType) - automatically infer value types for the given object. * [d3.csvParse](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#csvParse) - parse the given CSV string, returning an array of objects. * [d3.csvParseRows](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#csvParseRows) - parse the given CSV string, returning an array of rows. * [d3.csvFormat](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#csvFormat) - format the given array of objects as CSV. * [d3.csvFormatBody](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#csvFormatBody) - format the given array of objects as CSV. * [d3.csvFormatRows](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#csvFormatRows) - format the given array of rows as CSV. * [d3.csvFormatRow](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#csvFormatRow) - format the given row as CSV. * [d3.csvFormatValue](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#csvFormatValue) - format the given value as CSV. * [d3.tsvParse](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#tsvParse) - parse the given TSV string, returning an array of objects. * [d3.tsvParseRows](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#tsvParseRows) - parse the given TSV string, returning an array of rows. * [d3.tsvFormat](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#tsvFormat) - format the given array of objects as TSV. * [d3.tsvFormatBody](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#tsvFormatBody) - format the given array of objects as TSV. * [d3.tsvFormatRows](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#tsvFormatRows) - format the given array of rows as TSV. * [d3.tsvFormatRow](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#tsvFormatRow) - format the given row as TSV. * [d3.tsvFormatValue](https://github.com/d3/d3-dsv/blob/v1.2.0/README.md#tsvFormatValue) - format the given value as TSV. ## [Easings (d3-ease)](https://github.com/d3/d3-ease/tree/v1.0.6) Easing functions for smooth animation. * [*ease*](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#_ease) - ease the given normalized time. * [d3.easeLinear](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeLinear) - linear easing; the identity function. * [d3.easePolyIn](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easePolyIn) - polynomial easing; raises time to the given power. * [d3.easePolyOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easePolyOut) - reverse polynomial easing. * [d3.easePolyInOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easePolyInOut) - symmetric polynomial easing. * [*poly*.exponent](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#poly_exponent) - specify the polynomial exponent. * [d3.easeQuad](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeQuad) - an alias for easeQuadInOut. * [d3.easeQuadIn](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeQuadIn) - quadratic easing; squares time. * [d3.easeQuadOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeQuadOut) - reverse quadratic easing. * [d3.easeQuadInOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeQuadInOut) - symmetric quadratic easing. * [d3.easeCubic](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeCubic) - an alias for easeCubicInOut. * [d3.easeCubicIn](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeCubicIn) - cubic easing; cubes time. * [d3.easeCubicOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeCubicOut) - reverse cubic easing. * [d3.easeCubicInOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeCubicInOut) - symmetric cubic easing. * [d3.easeSin](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeSin) - an alias for easeSinInOut. * [d3.easeSinIn](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeSinIn) - sinusoidal easing. * [d3.easeSinOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeSinOut) - reverse sinusoidal easing. * [d3.easeSinInOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeSinInOut) - symmetric sinusoidal easing. * [d3.easeExp](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeExp) - an alias for easeExpInOut. * [d3.easeExpIn](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeExpIn) - exponential easing. * [d3.easeExpOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeExpOut) - reverse exponential easing. * [d3.easeExpInOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeExpInOut) - symmetric exponential easing. * [d3.easeCircle](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeCircle) - an alias for easeCircleInOut. * [d3.easeCircleIn](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeCircleIn) - circular easing. * [d3.easeCircleOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeCircleOut) - reverse circular easing. * [d3.easeCircleInOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeCircleInOut) - symmetric circular easing. * [d3.easeElastic](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeElastic) - an alias for easeElasticOut. * [d3.easeElasticIn](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeElasticIn) - elastic easing, like a rubber band. * [d3.easeElasticOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeElasticOut) - reverse elastic easing. * [d3.easeElasticInOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeElasticInOut) - symmetric elastic easing. * [*elastic*.amplitude](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#elastic_amplitude) - specify the elastic amplitude. * [*elastic*.period](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#elastic_period) - specify the elastic period. * [d3.easeBack](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeBack) - an alias for easeBackInOut. * [d3.easeBackIn](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeBackIn) - anticipatory easing, like a dancer bending his knees before jumping. * [d3.easeBackOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeBackOut) - reverse anticipatory easing. * [d3.easeBackInOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeBackInOut) - symmetric anticipatory easing. * [*back*.overshoot](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#back_overshoot) - specify the amount of overshoot. * [d3.easeBounce](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeBounce) - an alias for easeBounceOut. * [d3.easeBounceIn](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeBounceIn) - bounce easing, like a rubber ball. * [d3.easeBounceOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeBounceOut) - reverse bounce easing. * [d3.easeBounceInOut](https://github.com/d3/d3-ease/blob/v1.0.6/README.md#easeBounceInOut) - symmetric bounce easing. ## [Fetches (d3-fetch)](https://github.com/d3/d3-fetch/tree/v1.1.2) Convenience methods on top of the Fetch API. * [d3.blob](https://github.com/d3/d3-fetch/blob/v1.1.2/README.md#blob) - get a file as a blob. * [d3.buffer](https://github.com/d3/d3-fetch/blob/v1.1.2/README.md#buffer) - get a file as an array buffer. * [d3.csv](https://github.com/d3/d3-fetch/blob/v1.1.2/README.md#csv) - get a comma-separated values (CSV) file. * [d3.dsv](https://github.com/d3/d3-fetch/blob/v1.1.2/README.md#dsv) - get a delimiter-separated values (CSV) file. * [d3.image](https://github.com/d3/d3-fetch/blob/v1.1.2/README.md#image) - get an image. * [d3.json](https://github.com/d3/d3-fetch/blob/v1.1.2/README.md#json) - get a JSON file. * [d3.text](https://github.com/d3/d3-fetch/blob/v1.1.2/README.md#text) - get a plain text file. * [d3.tsv](https://github.com/d3/d3-fetch/blob/v1.1.2/README.md#tsv) - get a tab-separated values (TSV) file. ## [Forces (d3-force)](https://github.com/d3/d3-force/tree/v1.2.1) Force-directed graph layout using velocity Verlet integration. * [d3.forceSimulation](https://github.com/d3/d3-force/blob/v1.2.1/README.md#forceSimulation) - create a new force simulation. * [*simulation*.restart](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_restart) - reheat and restart the simulation’s timer. * [*simulation*.stop](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_stop) - stop the simulation’s timer. * [*simulation*.tick](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_tick) - advance the simulation one step. * [*simulation*.nodes](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_nodes) - set the simulation’s nodes. * [*simulation*.alpha](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_alpha) - set the current alpha. * [*simulation*.alphaMin](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_alphaMin) - set the minimum alpha threshold. * [*simulation*.alphaDecay](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_alphaDecay) - set the alpha exponential decay rate. * [*simulation*.alphaTarget](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_alphaTarget) - set the target alpha. * [*simulation*.velocityDecay](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_velocityDecay) - set the velocity decay rate. * [*simulation*.force](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_force) - add or remove a force. * [*simulation*.find](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_find) - find the closest node to the given position. * [*simulation*.on](https://github.com/d3/d3-force/blob/v1.2.1/README.md#simulation_on) - add or remove an event listener. * [*force*](https://github.com/d3/d3-force/blob/v1.2.1/README.md#_force) - apply the force. * [*force*.initialize](https://github.com/d3/d3-force/blob/v1.2.1/README.md#force_initialize) - initialize the force with the given nodes. * [d3.forceCenter](https://github.com/d3/d3-force/blob/v1.2.1/README.md#forceCenter) - create a centering force. * [*center*.x](https://github.com/d3/d3-force/blob/v1.2.1/README.md#center_x) - set the center *x*-coordinate. * [*center*.y](https://github.com/d3/d3-force/blob/v1.2.1/README.md#center_y) - set the center *y*-coordinate. * [d3.forceCollide](https://github.com/d3/d3-force/blob/v1.2.1/README.md#forceCollide) - create a circle collision force. * [*collide*.radius](https://github.com/d3/d3-force/blob/v1.2.1/README.md#collide_radius) - set the circle radius. * [*collide*.strength](https://github.com/d3/d3-force/blob/v1.2.1/README.md#collide_strength) - set the collision resolution strength. * [*collide*.iterations](https://github.com/d3/d3-force/blob/v1.2.1/README.md#collide_iterations) - set the number of iterations. * [d3.forceLink](https://github.com/d3/d3-force/blob/v1.2.1/README.md#forceLink) - create a link force. * [*link*.links](https://github.com/d3/d3-force/blob/v1.2.1/README.md#link_links) - set the array of links. * [*link*.id](https://github.com/d3/d3-force/blob/v1.2.1/README.md#link_id) - link nodes by numeric index or string identifier. * [*link*.distance](https://github.com/d3/d3-force/blob/v1.2.1/README.md#link_distance) - set the link distance. * [*link*.strength](https://github.com/d3/d3-force/blob/v1.2.1/README.md#link_strength) - set the link strength. * [*link*.iterations](https://github.com/d3/d3-force/blob/v1.2.1/README.md#link_iterations) - set the number of iterations. * [d3.forceManyBody](https://github.com/d3/d3-force/blob/v1.2.1/README.md#forceManyBody) - create a many-body force. * [*manyBody*.strength](https://github.com/d3/d3-force/blob/v1.2.1/README.md#manyBody_strength) - set the force strength. * [*manyBody*.theta](https://github.com/d3/d3-force/blob/v1.2.1/README.md#manyBody_theta) - set the Barnes–Hut approximation accuracy. * [*manyBody*.distanceMin](https://github.com/d3/d3-force/blob/v1.2.1/README.md#manyBody_distanceMin) - limit the force when nodes are close. * [*manyBody*.distanceMax](https://github.com/d3/d3-force/blob/v1.2.1/README.md#manyBody_distanceMax) - limit the force when nodes are far. * [d3.forceX](https://github.com/d3/d3-force/blob/v1.2.1/README.md#forceX) - create an *x*-positioning force. * [*x*.strength](https://github.com/d3/d3-force/blob/v1.2.1/README.md#x_strength) - set the force strength. * [*x*.x](https://github.com/d3/d3-force/blob/v1.2.1/README.md#x_x) - set the target *x*-coordinate. * [d3.forceY](https://github.com/d3/d3-force/blob/v1.2.1/README.md#forceY) - create an *y*-positioning force. * [*y*.strength](https://github.com/d3/d3-force/blob/v1.2.1/README.md#y_strength) - set the force strength. * [*y*.y](https://github.com/d3/d3-force/blob/v1.2.1/README.md#y_y) - set the target *y*-coordinate. * [d3.forceRadial](https://github.com/d3/d3-force/blob/v1.2.1/README.md#forceRadial) - create a radial positioning force. * [*radial*.strength](https://github.com/d3/d3-force/blob/v1.2.1/README.md#radial_strength) - set the force strength. * [*radial*.radius](https://github.com/d3/d3-force/blob/v1.2.1/README.md#radial_radius) - set the target radius. * [*radial*.x](https://github.com/d3/d3-force/blob/v1.2.1/README.md#radial_x) - set the target center *x*-coordinate. * [*radial*.y](https://github.com/d3/d3-force/blob/v1.2.1/README.md#radial_y) - set the target center *y*-coordinate. ## [Number Formats (d3-format)](https://github.com/d3/d3-format/tree/v1.4.4) Format numbers for human consumption. * [d3.format](https://github.com/d3/d3-format/blob/v1.4.4/README.md#format) - alias for *locale*.format on the default locale. * [d3.formatPrefix](https://github.com/d3/d3-format/blob/v1.4.4/README.md#formatPrefix) - alias for *locale*.formatPrefix on the default locale. * [d3.formatSpecifier](https://github.com/d3/d3-format/blob/v1.4.4/README.md#formatSpecifier) - parse a number format specifier. * [d3.formatLocale](https://github.com/d3/d3-format/blob/v1.4.4/README.md#formatLocale) - define a custom locale. * [d3.formatDefaultLocale](https://github.com/d3/d3-format/blob/v1.4.4/README.md#formatDefaultLocale) - define the default locale. * [*locale*.format](https://github.com/d3/d3-format/blob/v1.4.4/README.md#locale_format) - create a number format. * [*locale*.formatPrefix](https://github.com/d3/d3-format/blob/v1.4.4/README.md#locale_formatPrefix) - create a SI-prefix number format. * [d3.precisionFixed](https://github.com/d3/d3-format/blob/v1.4.4/README.md#precisionFixed) - compute decimal precision for fixed-point notation. * [d3.precisionPrefix](https://github.com/d3/d3-format/blob/v1.4.4/README.md#precisionPrefix) - compute decimal precision for SI-prefix notation. * [d3.precisionRound](https://github.com/d3/d3-format/blob/v1.4.4/README.md#precisionRound) - compute significant digits for rounded notation. ## [Geographies (d3-geo)](https://github.com/d3/d3-geo/tree/v1.12.0) Geographic projections, shapes and math. ### [Paths](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#paths) * [d3.geoPath](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoPath) - create a new geographic path generator. * [*path*](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#_path) - project and render the specified feature. * [*path*.area](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#path_area) - compute the projected planar area of a given feature. * [*path*.bounds](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#path_bounds) - compute the projected planar bounding box of a given feature. * [*path*.centroid](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#path_centroid) - compute the projected planar centroid of a given feature. * [*path*.measure](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#path_measure) - compute the projected planar length of a given feature. * [*path*.projection](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#path_projection) - set the geographic projection. * [*path*.context](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#path_context) - set the render context. * [*path*.pointRadius](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#path_pointRadius) - set the radius to display point features. ### [Projections](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projections) * [*projection*](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#_projection) - project the specified point from the sphere to the plane. * [*projection*.invert](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_invert) - unproject the specified point from the plane to the sphere. * [*projection*.stream](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_stream) - wrap the specified stream to project geometry. * [*projection*.clipAngle](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_clipAngle) - set the radius of the clip circle. * [*projection*.clipExtent](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_clipExtent) - set the viewport clip extent, in pixels. * [*projection*.angle](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_angle) - set the post-projection rotation. * [*projection*.reflectX](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_reflectX) - reflect the *x*-dimension. * [*projection*.reflectY](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_reflectY) - reflect the *y*-dimension. * [*projection*.scale](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_scale) - set the scale factor. * [*projection*.translate](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_translate) - set the translation offset. * [*projection*.fitExtent](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_fitExtent) - set the scale and translate to fit a GeoJSON object. * [*projection*.fitSize](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_fitSize) - set the scale and translate to fit a GeoJSON object. * [*projection*.fitWidth](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_fitWidth) - set the scale and translate to fit a GeoJSON object. * [*projection*.fitHeight](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_fitHeight) - set the scale and translate to fit a GeoJSON object. * [*projection*.center](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_center) - set the center point. * [*projection*.rotate](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_rotate) - set the three-axis spherical rotation angles. * [*projection*.precision](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection_precision) - set the precision threshold for adaptive sampling. * [*projection*.preclip](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection.preclip) - set the spherical clipping stream transform. * [*projection*.postclip](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#projection.postclip) - set the planar clipping stream transform. * [d3.geoClipAntimeridian](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoClipAntimeridian) - cuts spherical geometries that cross the antimeridian. * [d3.geoClipCircle](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoClipCircle) - clips spherical geometries to a small circle. * [d3.geoClipRectangle](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoClipRectangle) - clips planar geometries to a rectangular viewport. * [d3.geoAlbers](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoAlbers) - the Albers equal-area conic projection. * [d3.geoAlbersUsa](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoAlbersUsa) - a composite Albers projection for the United States. * [d3.geoAzimuthalEqualArea](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoAzimuthalEqualArea) - the azimuthal equal-area projection. * [d3.geoAzimuthalEquidistant](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoAzimuthalEquidistant) - the azimuthal equidistant projection. * [d3.geoConicConformal](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoConicConformal) - the conic conformal projection. * [d3.geoConicEqualArea](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoConicEqualArea) - the conic equal-area (Albers) projection. * [d3.geoConicEquidistant](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoConicEquidistant) - the conic equidistant projection. * [*conic*.parallels](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#conic_parallels) - set the two standard parallels. * [d3.geoEqualEarth](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoEqualEarth) - the Equal Earth projection. * [d3.geoEquirectangular](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoEquirectangular) - the equirectangular (plate carreé) projection. * [d3.geoGnomonic](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoGnomonic) - the gnomonic projection. * [d3.geoMercator](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoMercator) - the spherical Mercator projection. * [d3.geoOrthographic](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoOrthographic) - the azimuthal orthographic projection. * [d3.geoStereographic](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoStereographic) - the azimuthal stereographic projection. * [d3.geoTransverseMercator](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoTransverseMercator) - the transverse spherical Mercator projection. * [*project*](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#_project) - project the specified point from the sphere to the plane. * [*project*.invert](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#project_invert) - unproject the specified point from the plane to the sphere. * [d3.geoProjection](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoProjection) - create a custom projection. * [d3.geoProjectionMutator](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoProjectionMutator) - create a custom configurable projection. * [d3.geoAzimuthalEqualAreaRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoAzimuthalEqualAreaRaw) - the raw azimuthal equal-area projection. * [d3.geoAzimuthalEquidistantRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoAzimuthalEquidistantRaw) - the raw azimuthal equidistant projection. * [d3.geoConicConformalRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoConicConformalRaw) - the raw conic conformal projection. * [d3.geoConicEqualAreaRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoConicEqualAreaRaw) - the raw conic equal-area (Albers) projection. * [d3.geoConicEquidistantRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoConicEquidistantRaw) - the raw conic equidistant projection. * [d3.geoEquirectangularRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoEquirectangularRaw) - the raw equirectangular (plate carreé) projection. * [d3.geoGnomonicRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoGnomonicRaw) - the raw gnomonic projection. * [d3.geoMercatorRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoMercatorRaw) - the raw Mercator projection. * [d3.geoOrthographicRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoOrthographicRaw) - the raw azimuthal orthographic projection. * [d3.geoStereographicRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoStereographicRaw) - the raw azimuthal stereographic projection. * [d3.geoTransverseMercatorRaw](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoTransverseMercatorRaw) - the raw transverse spherical Mercator projection. ### [Spherical Math](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#spherical-math) * [d3.geoArea](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoArea) - compute the spherical area of a given feature. * [d3.geoBounds](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoBounds) - compute the latitude-longitude bounding box for a given feature. * [d3.geoCentroid](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoCentroid) - compute the spherical centroid of a given feature. * [d3.geoContains](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoContains) - test whether a point is inside a given feature. * [d3.geoDistance](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoDistance) - compute the great-arc distance between two points. * [d3.geoLength](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoLength) - compute the length of a line string or the perimeter of a polygon. * [d3.geoInterpolate](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoInterpolate) - interpolate between two points along a great arc. * [d3.geoRotation](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoRotation) - create a rotation function for the specified angles. * [*rotation*](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#_rotation) - rotate the given point around the sphere. * [*rotation*.invert](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#rotation_invert) - unrotate the given point around the sphere. ### [Spherical Shapes](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#spherical-shapes) * [d3.geoCircle](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoCircle) - create a circle generator. * [*circle*](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#_circle) - generate a piecewise circle as a Polygon. * [*circle*.center](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#circle_center) - specify the circle center in latitude and longitude. * [*circle*.radius](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#circle_radius) - specify the angular radius in degrees. * [*circle*.precision](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#circle_precision) - specify the precision of the piecewise circle. * [d3.geoGraticule](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoGraticule) - create a graticule generator. * [*graticule*](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#_graticule) - generate a MultiLineString of meridians and parallels. * [*graticule*.lines](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#graticule_lines) - generate an array of LineStrings of meridians and parallels. * [*graticule*.outline](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#graticule_outline) - generate a Polygon of the graticule’s extent. * [*graticule*.extent](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#graticule_extent) - get or set the major & minor extents. * [*graticule*.extentMajor](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#graticule_extentMajor) - get or set the major extent. * [*graticule*.extentMinor](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#graticule_extentMinor) - get or set the minor extent. * [*graticule*.step](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#graticule_step) - get or set the major & minor step intervals. * [*graticule*.stepMajor](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#graticule_stepMajor) - get or set the major step intervals. * [*graticule*.stepMinor](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#graticule_stepMinor) - get or set the minor step intervals. * [*graticule*.precision](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#graticule_precision) - get or set the latitudinal precision. * [d3.geoGraticule10](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoGraticule10) - generate the default 10° global graticule. ### [Streams](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#streams) * [d3.geoStream](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoStream) - convert a GeoJSON object to a geometry stream. * [*stream*.point](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#stream_point) - indicates a point with the specified coordinates. * [*stream*.lineStart](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#stream_lineStart) - indicates the start of a line or ring. * [*stream*.lineEnd](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#stream_lineEnd) - indicates the end of a line or ring. * [*stream*.polygonStart](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#stream_polygonStart) - indicates the start of a polygon. * [*stream*.polygonEnd](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#stream_polygonEnd) - indicates the end of a polygon. * [*stream*.sphere](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#stream_sphere) - indicates the sphere. ### [Transforms](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#transforms) * [d3.geoIdentity](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoIdentity) - scale, translate or clip planar geometry. * [d3.geoTransform](https://github.com/d3/d3-geo/blob/v1.12.0/README.md#geoTransform) - define a custom geometry transform. ## [Hierarchies (d3-hierarchy)](https://github.com/d3/d3-hierarchy/tree/v1.1.9) Layout algorithms for visualizing hierarchical data. * [d3.hierarchy](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#hierarchy) - constructs a root node from hierarchical data. * [*node*.ancestors](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_ancestors) - generate an array of ancestors. * [*node*.descendants](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_descendants) - generate an array of descendants. * [*node*.leaves](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_leaves) - generate an array of leaves. * [*node*.path](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_path) - generate the shortest path to another node. * [*node*.links](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_links) - generate an array of links. * [*node*.sum](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_sum) - evaluate and aggregate quantitative values. * [*node*.sort](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_sort) - sort all descendant siblings. * [*node*.count](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_count) - count the number of leaves. * [*node*.each](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_each) - breadth-first traversal. * [*node*.eachAfter](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_eachAfter) - post-order traversal. * [*node*.eachBefore](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_eachBefore) - pre-order traversal. * [*node*.copy](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#node_copy) - copy a hierarchy. * [d3.stratify](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#stratify) - create a new stratify operator. * [*stratify*](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#_stratify) - construct a root node from tabular data. * [*stratify*.id](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#stratify_id) - set the node id accessor. * [*stratify*.parentId](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#stratify_parentId) - set the parent node id accessor. * [d3.cluster](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#cluster) - create a new cluster (dendrogram) layout. * [*cluster*](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#_cluster) - layout the specified hierarchy in a dendrogram. * [*cluster*.size](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#cluster_size) - set the layout size. * [*cluster*.nodeSize](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#cluster_nodeSize) - set the node size. * [*cluster*.separation](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#cluster_separation) - set the separation between leaves. * [d3.tree](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#tree) - create a new tidy tree layout. * [*tree*](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#_tree) - layout the specified hierarchy in a tidy tree. * [*tree*.size](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#tree_size) - set the layout size. * [*tree*.nodeSize](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#tree_nodeSize) - set the node size. * [*tree*.separation](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#tree_separation) - set the separation between nodes. * [d3.treemap](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap) - create a new treemap layout. * [*treemap*](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#_treemap) - layout the specified hierarchy as a treemap. * [*treemap*.tile](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap_tile) - set the tiling method. * [*treemap*.size](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap_size) - set the layout size. * [*treemap*.round](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap_round) - set whether the output coordinates are rounded. * [*treemap*.padding](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap_padding) - set the padding. * [*treemap*.paddingInner](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap_paddingInner) - set the padding between siblings. * [*treemap*.paddingOuter](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap_paddingOuter) - set the padding between parent and children. * [*treemap*.paddingTop](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap_paddingTop) - set the padding between the parent’s top edge and children. * [*treemap*.paddingRight](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap_paddingRight) - set the padding between the parent’s right edge and children. * [*treemap*.paddingBottom](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap_paddingBottom) - set the padding between the parent’s bottom edge and children. * [*treemap*.paddingLeft](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemap_paddingLeft) - set the padding between the parent’s left edge and children. * [d3.treemapBinary](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemapBinary) - tile using a balanced binary tree. * [d3.treemapDice](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemapDice) - tile into a horizontal row. * [d3.treemapSlice](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemapSlice) - tile into a vertical column. * [d3.treemapSliceDice](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemapSliceDice) - alternate between slicing and dicing. * [d3.treemapSquarify](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemapSquarify) - tile using squarified rows per Bruls *et. al.* * [d3.treemapResquarify](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#treemapResquarify) - like d3.treemapSquarify, but performs stable updates. * [*squarify*.ratio](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#squarify_ratio) - set the desired rectangle aspect ratio. * [d3.partition](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#partition) - create a new partition (icicle or sunburst) layout. * [*partition*](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#_partition) - layout the specified hierarchy as a partition diagram. * [*partition*.size](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#partition_size) - set the layout size. * [*partition*.round](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#partition_round) - set whether the output coordinates are rounded. * [*partition*.padding](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#partition_padding) - set the padding. * [d3.pack](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#pack) - create a new circle-packing layout. * [*pack*](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#_pack) - layout the specified hierarchy using circle-packing. * [*pack*.radius](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#pack_radius) - set the radius accessor. * [*pack*.size](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#pack_size) - set the layout size. * [*pack*.padding](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#pack_padding) - set the padding. * [d3.packSiblings](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#packSiblings) - pack the specified array of circles. * [d3.packEnclose](https://github.com/d3/d3-hierarchy/blob/v1.1.9/README.md#packEnclose) - enclose the specified array of circles. ## [Interpolators (d3-interpolate)](https://github.com/d3/d3-interpolate/tree/v1.4.0) Interpolate numbers, colors, strings, arrays, objects, whatever! * [d3.interpolate](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolate) - interpolate arbitrary values. * [d3.interpolateArray](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateArray) - interpolate arrays of arbitrary values. * [d3.interpolateDate](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateDate) - interpolate dates. * [d3.interpolateNumber](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateNumber) - interpolate numbers. * [d3.interpolateNumberArray](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateNumberArray) - interpolate arrays of numbers. * [d3.interpolateObject](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateObject) - interpolate arbitrary objects. * [d3.interpolateRound](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateRound) - interpolate integers. * [d3.interpolateString](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateString) - interpolate strings with embedded numbers. * [d3.interpolateTransformCss](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateTransformCss) - interpolate 2D CSS transforms. * [d3.interpolateTransformSvg](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateTransformSvg) - interpolate 2D SVG transforms. * [d3.interpolateZoom](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateZoom) - zoom and pan between two views. * [d3.interpolateRgb](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateRgb) - interpolate RGB colors. * [d3.interpolateRgbBasis](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateRgbBasis) - generate a B-spline through a set of colors. * [d3.interpolateRgbBasisClosed](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateRgbBasisClosed) - generate a closed B-spline through a set of colors. * [d3.interpolateHsl](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateHsl) - interpolate HSL colors. * [d3.interpolateHslLong](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateHslLong) - interpolate HSL colors, the long way. * [d3.interpolateLab](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateLab) - interpolate Lab colors. * [d3.interpolateHcl](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateHcl) - interpolate HCL colors. * [d3.interpolateHclLong](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateHclLong) - interpolate HCL colors, the long way. * [d3.interpolateCubehelix](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateCubehelix) - interpolate Cubehelix colors. * [d3.interpolateCubehelixLong](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateCubehelixLong) - interpolate Cubehelix colors, the long way. * [*interpolate*.gamma](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolate_gamma) - apply gamma correction during interpolation. * [d3.interpolateHue](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateHue) - interpolate a hue angle. * [d3.interpolateDiscrete](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateDiscrete) - generate a discrete interpolator from a set of values. * [d3.interpolateBasis](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateBasis) - generate a B-spline through a set of values. * [d3.interpolateBasisClosed](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#interpolateBasisClosed) - generate a closed B-spline through a set of values. * [d3.piecewise](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#piecewise) - generate a piecewise linear interpolator from a set of values. * [d3.quantize](https://github.com/d3/d3-interpolate/blob/v1.4.0/README.md#quantize) - generate uniformly-spaced samples from an interpolator. ## [Paths (d3-path)](https://github.com/d3/d3-path/tree/v1.0.9) Serialize Canvas path commands to SVG. * [d3.path](https://github.com/d3/d3-path/blob/v1.0.9/README.md#path) - create a new path serializer. * [*path*.moveTo](https://github.com/d3/d3-path/blob/v1.0.9/README.md#path_moveTo) - move to the given point. * [*path*.closePath](https://github.com/d3/d3-path/blob/v1.0.9/README.md#path_closePath) - close the current subpath. * [*path*.lineTo](https://github.com/d3/d3-path/blob/v1.0.9/README.md#path_lineTo) - draw a straight line segment. * [*path*.quadraticCurveTo](https://github.com/d3/d3-path/blob/v1.0.9/README.md#path_quadraticCurveTo) - draw a quadratic Bézier segment. * [*path*.bezierCurveTo](https://github.com/d3/d3-path/blob/v1.0.9/README.md#path_bezierCurveTo) - draw a cubic Bézier segment. * [*path*.arcTo](https://github.com/d3/d3-path/blob/v1.0.9/README.md#path_arcTo) - draw a circular arc segment. * [*path*.arc](https://github.com/d3/d3-path/blob/v1.0.9/README.md#path_arc) - draw a circular arc segment. * [*path*.rect](https://github.com/d3/d3-path/blob/v1.0.9/README.md#path_rect) - draw a rectangle. * [*path*.toString](https://github.com/d3/d3-path/blob/v1.0.9/README.md#path_toString) - serialize to an SVG path data string. ## [Polygons (d3-polygon)](https://github.com/d3/d3-polygon/tree/v1.0.6) Geometric operations for two-dimensional polygons. * [d3.polygonArea](https://github.com/d3/d3-polygon/blob/v1.0.6/README.md#polygonArea) - compute the area of the given polygon. * [d3.polygonCentroid](https://github.com/d3/d3-polygon/blob/v1.0.6/README.md#polygonCentroid) - compute the centroid of the given polygon. * [d3.polygonHull](https://github.com/d3/d3-polygon/blob/v1.0.6/README.md#polygonHull) - compute the convex hull of the given points. * [d3.polygonContains](https://github.com/d3/d3-polygon/blob/v1.0.6/README.md#polygonContains) - test whether a point is inside a polygon. * [d3.polygonLength](https://github.com/d3/d3-polygon/blob/v1.0.6/README.md#polygonLength) - compute the length of the given polygon’s perimeter. ## [Quadtrees (d3-quadtree)](https://github.com/d3/d3-quadtree/tree/v1.0.7) Two-dimensional recursive spatial subdivision. * [d3.quadtree](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree) - create a new, empty quadtree. * [*quadtree*.x](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_x) - set the *x* accessor. * [*quadtree*.y](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_y) - set the *y* accessor. * [*quadtree*.add](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_add) - add a datum to a quadtree. * [*quadtree*.addAll](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_addAll) - add an array of data to a quadtree. * [*quadtree*.remove](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_remove) - remove a datum from a quadtree. * [*quadtree*.removeAll](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_removeAll) - remove an array of data from a quadtree. * [*quadtree*.copy](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_copy) - create a copy of a quadtree. * [*quadtree*.root](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_root) - get the quadtree’s root node. * [*quadtree*.data](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_data) - retrieve all data from the quadtree. * [*quadtree*.size](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_size) - count the number of data in the quadtree. * [*quadtree*.find](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_find) - quickly find the closest datum in a quadtree. * [*quadtree*.visit](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_visit) - selectively visit nodes in a quadtree. * [*quadtree*.visitAfter](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_visitAfter) - visit all nodes in a quadtree. * [*quadtree*.cover](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_cover) - extend the quadtree to cover a point. * [*quadtree*.extent](https://github.com/d3/d3-quadtree/blob/v1.0.7/README.md#quadtree_extent) - extend the quadtree to cover an extent. ## [Random Numbers (d3-random)](https://github.com/d3/d3-random/tree/v1.1.2) Generate random numbers from various distributions. * [d3.randomUniform](https://github.com/d3/d3-random/blob/v1.1.2/README.md#randomUniform) - from a uniform distribution. * [d3.randomNormal](https://github.com/d3/d3-random/blob/v1.1.2/README.md#randomNormal) - from a normal distribution. * [d3.randomLogNormal](https://github.com/d3/d3-random/blob/v1.1.2/README.md#randomLogNormal) - from a log-normal distribution. * [d3.randomBates](https://github.com/d3/d3-random/blob/v1.1.2/README.md#randomBates) - from a Bates distribution. * [d3.randomIrwinHall](https://github.com/d3/d3-random/blob/v1.1.2/README.md#randomIrwinHall) - from an Irwin–Hall distribution. * [d3.randomExponential](https://github.com/d3/d3-random/blob/v1.1.2/README.md#randomExponential) - from an exponential distribution. * [*random*.source](https://github.com/d3/d3-random/blob/v1.1.2/README.md#random_source) - set the source of randomness. ## [Scales (d3-scale)](https://github.com/d3/d3-scale/tree/v2.2.2) Encodings that map abstract data to visual representation. ### [Continuous Scales](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous-scales) Map a continuous, quantitative domain to a continuous range. * [*continuous*](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#_continuous) - compute the range value corresponding to a given domain value. * [*continuous*.invert](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_invert) - compute the domain value corresponding to a given range value. * [*continuous*.domain](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_domain) - set the input domain. * [*continuous*.range](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_range) - set the output range. * [*continuous*.rangeRound](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_rangeRound) - set the output range and enable rounding. * [*continuous*.clamp](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_clamp) - enable clamping to the domain or range. * [*continuous*.interpolate](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_interpolate) - set the output interpolator. * [*continuous*.unknown](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_unknown) - set the output value for unknown inputs. * [*continuous*.ticks](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_ticks) - compute representative values from the domain. * [*continuous*.tickFormat](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_tickFormat) - format ticks for human consumption. * [*continuous*.nice](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_nice) - extend the domain to nice round numbers. * [*continuous*.copy](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#continuous_copy) - create a copy of this scale. * [d3.scaleLinear](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleLinear) - create a quantitative linear scale. * [d3.scalePow](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scalePow) - create a quantitative power scale. * [*pow*](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#_pow) - compute the range value corresponding to a given domain value. * [*pow*.invert](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_invert) - compute the domain value corresponding to a given range value. * [*pow*.exponent](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_exponent) - set the power exponent. * [*pow*.domain](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_domain) - set the input domain. * [*pow*.range](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_range) - set the output range. * [*pow*.rangeRound](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_rangeRound) - set the output range and enable rounding. * [*pow*.clamp](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_clamp) - enable clamping to the domain or range. * [*pow*.interpolate](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_interpolate) - set the output interpolator. * [*pow*.ticks](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_ticks) - compute representative values from the domain. * [*pow*.tickFormat](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_tickFormat) - format ticks for human consumption. * [*pow*.nice](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_nice) - extend the domain to nice round numbers. * [*pow*.copy](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#pow_copy) - create a copy of this scale. * [d3.scaleSqrt](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleSqrt) - create a quantitative power scale with exponent 0.5. * [d3.scaleLog](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleLog) - create a quantitative logarithmic scale. * [*log*](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#_log) - compute the range value corresponding to a given domain value. * [*log*.invert](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_invert) - compute the domain value corresponding to a given range value. * [*log*.base](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_base) - set the logarithm base. * [*log*.domain](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_domain) - set the input domain. * [*log*.range](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_range) - set the output range. * [*log*.rangeRound](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_rangeRound) - set the output range and enable rounding. * [*log*.clamp](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_clamp) - enable clamping to the domain or range. * [*log*.interpolate](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_interpolate) - set the output interpolator. * [*log*.ticks](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_ticks) - compute representative values from the domain. * [*log*.tickFormat](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_tickFormat) - format ticks for human consumption. * [*log*.nice](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_nice) - extend the domain to nice round numbers. * [*log*.copy](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#log_copy) - create a copy of this scale. * [d3.scaleSymlog](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleSymlog) - create a symmetric logarithmic scale. * [d3.scaleIdentity](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#identity) - create a quantitative identity scale. * [d3.scaleTime](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleTime) - create a linear scale for time. * [*time*](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#_time) - compute the range value corresponding to a given domain value. * [*time*.invert](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#time_invert) - compute the domain value corresponding to a given range value. * [*time*.domain](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#time_domain) - set the input domain. * [*time*.range](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#time_range) - set the output range. * [*time*.rangeRound](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#time_rangeRound) - set the output range and enable rounding. * [*time*.clamp](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#time_clamp) - enable clamping to the domain or range. * [*time*.interpolate](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#time_interpolate) - set the output interpolator. * [*time*.ticks](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#time_ticks) - compute representative values from the domain. * [*time*.tickFormat](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#time_tickFormat) - format ticks for human consumption. * [*time*.nice](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#time_nice) - extend the domain to nice round times. * [*time*.copy](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#time_copy) - create a copy of this scale. * [d3.scaleUtc](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleUtc) - create a linear scale for UTC. * [d3.tickFormat](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#tickFormat) - format ticks for human consumption. ### [Sequential Scales](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#sequential-scales) Map a continuous, quantitative domain to a continuous, fixed interpolator. * [d3.scaleSequential](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleSequential) - create a sequential scale. * [*sequential*.interpolator](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#sequential_interpolator) - set the scale’s output interpolator. * [d3.scaleSequentialLog](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleSequentialLog) - * [d3.scaleSequentialPow](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleSequentialPow) - * [d3.scaleSequentialSqrt](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleSequentialSqrt) - * [d3.scaleSequentialSymlog](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleSequentialSymlog) - * [d3.scaleSequentialQuantile](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleSequentialQuantile) - ### [Diverging Scales](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#diverging-scales) Map a continuous, quantitative domain to a continuous, fixed interpolator. * [d3.scaleDiverging](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleDiverging) - create a diverging scale. * [*diverging*.interpolator](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#diverging_interpolator) - set the scale’s output interpolator. * [d3.scaleDivergingLog](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleDivergingLog) - * [d3.scaleDivergingPow](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleDivergingPow) - * [d3.scaleDivergingSqrt](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleDivergingSqrt) - * [d3.scaleDivergingSymlog](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleDivergingSymlog) - ### [Quantize Scales](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantize-scales) Map a continuous, quantitative domain to a discrete range. * [d3.scaleQuantize](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleQuantize) - create a uniform quantizing linear scale. * [*quantize*](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#_quantize) - compute the range value corresponding to a given domain value. * [*quantize*.invertExtent](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantize_invertExtent) - compute the domain values corresponding to a given range value. * [*quantize*.domain](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantize_domain) - set the input domain. * [*quantize*.range](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantize_range) - set the output range. * [*quantize*.nice](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantize_nice) - extend the domain to nice round numbers. * [*quantize*.ticks](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantize_ticks) - compute representative values from the domain. * [*quantize*.tickFormat](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantize_tickFormat) - format ticks for human consumption. * [*quantize*.copy](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantize_copy) - create a copy of this scale. * [d3.scaleQuantile](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleQuantile) - create a quantile quantizing linear scale. * [*quantile*](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#_quantile) - compute the range value corresponding to a given domain value. * [*quantile*.invertExtent](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantile_invertExtent) - compute the domain values corresponding to a given range value. * [*quantile*.domain](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantile_domain) - set the input domain. * [*quantile*.range](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantile_range) - set the output range. * [*quantile*.quantiles](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantile_quantiles) - get the quantile thresholds. * [*quantile*.copy](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#quantile_copy) - create a copy of this scale. * [d3.scaleThreshold](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleThreshold) - create an arbitrary quantizing linear scale. * [*threshold*](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#_threshold) - compute the range value corresponding to a given domain value. * [*threshold*.invertExtent](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#threshold_invertExtent) - compute the domain values corresponding to a given range value. * [*threshold*.domain](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#threshold_domain) - set the input domain. * [*threshold*.range](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#threshold_range) - set the output range. * [*threshold*.copy](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#threshold_copy) - create a copy of this scale. ### [Ordinal Scales](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#ordinal-scales) Map a discrete domain to a discrete range. * [d3.scaleOrdinal](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleOrdinal) - create an ordinal scale. * [*ordinal*](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#_ordinal) - compute the range value corresponding to a given domain value. * [*ordinal*.domain](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#ordinal_domain) - set the input domain. * [*ordinal*.range](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#ordinal_range) - set the output range. * [*ordinal*.unknown](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#ordinal_unknown) - set the output value for unknown inputs. * [*ordinal*.copy](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#ordinal_copy) - create a copy of this scale. * [d3.scaleImplicit](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleImplicit) - a special unknown value for implicit domains. * [d3.scaleBand](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scaleBand) - create an ordinal band scale. * [*band*](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#_band) - compute the band start corresponding to a given domain value. * [*band*.domain](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_domain) - set the input domain. * [*band*.range](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_range) - set the output range. * [*band*.rangeRound](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_rangeRound) - set the output range and enable rounding. * [*band*.round](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_round) - enable rounding. * [*band*.paddingInner](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_paddingInner) - set padding between bands. * [*band*.paddingOuter](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_paddingOuter) - set padding outside the first and last bands. * [*band*.padding](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_padding) - set padding outside and between bands. * [*band*.align](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_align) - set band alignment, if there is extra space. * [*band*.bandwidth](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_bandwidth) - get the width of each band. * [*band*.step](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_step) - get the distance between the starts of adjacent bands. * [*band*.copy](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#band_copy) - create a copy of this scale. * [d3.scalePoint](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#scalePoint) - create an ordinal point scale. * [*point*](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#_point) - compute the point corresponding to a given domain value. * [*point*.domain](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#point_domain) - set the input domain. * [*point*.range](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#point_range) - set the output range. * [*point*.rangeRound](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#point_rangeRound) - set the output range and enable rounding. * [*point*.round](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#point_round) - enable rounding. * [*point*.padding](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#point_padding) - set padding outside the first and last point. * [*point*.align](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#point_align) - set point alignment, if there is extra space. * [*point*.bandwidth](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#point_bandwidth) - returns zero. * [*point*.step](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#point_step) - get the distance between the starts of adjacent points. * [*point*.copy](https://github.com/d3/d3-scale/blob/v2.2.2/README.md#point_copy) - create a copy of this scale. ## [Selections (d3-selection)](https://github.com/d3/d3-selection/tree/v1.4.1) Transform the DOM by selecting elements and joining to data. ### [Selecting Elements](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selecting-elements) * [d3.selection](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection) - select the root document element. * [d3.select](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#select) - select an element from the document. * [d3.selectAll](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selectAll) - select multiple elements from the document. * [*selection*.select](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_select) - select a descendant element for each selected element. * [*selection*.selectAll](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_selectAll) - select multiple descendants for each selected element. * [*selection*.filter](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_filter) - filter elements based on data. * [*selection*.merge](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_merge) - merge this selection with another. * [d3.matcher](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#matcher) - test whether an element matches a selector. * [d3.selector](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selector) - select an element. * [d3.selectorAll](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selectorAll) - select elements. * [d3.window](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#window) - get a node’s owner window. * [d3.style](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#style) - get a node’s current style value. ### [Modifying Elements](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#modifying-elements) * [*selection*.attr](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_attr) - get or set an attribute. * [*selection*.classed](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_classed) - get, add or remove CSS classes. * [*selection*.style](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_style) - get or set a style property. * [*selection*.property](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_property) - get or set a (raw) property. * [*selection*.text](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_text) - get or set the text content. * [*selection*.html](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_html) - get or set the inner HTML. * [*selection*.append](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_append) - create, append and select new elements. * [*selection*.insert](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_insert) - create, insert and select new elements. * [*selection*.remove](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_remove) - remove elements from the document. * [*selection*.clone](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_clone) - insert clones of selected elements. * [*selection*.sort](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_sort) - sort elements in the document based on data. * [*selection*.order](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_order) - reorders elements in the document to match the selection. * [*selection*.raise](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_raise) - reorders each element as the last child of its parent. * [*selection*.lower](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_lower) - reorders each element as the first child of its parent. * [d3.create](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#create) - create and select a detached element. * [d3.creator](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#creator) - create an element by name. ### [Joining Data](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#joining-data) * [*selection*.data](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_data) - bind elements to data. * [*selection*.join](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_join) - enter, update or exit elements based on data. * [*selection*.enter](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_enter) - get the enter selection (data missing elements). * [*selection*.exit](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_exit) - get the exit selection (elements missing data). * [*selection*.datum](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_datum) - get or set element data (without joining). ### [Handling Events](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#handling-events) * [*selection*.on](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_on) - add or remove event listeners. * [*selection*.dispatch](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_dispatch) - dispatch a custom event. * [d3.event](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#event) - the current user event, during interaction. * [d3.customEvent](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#customEvent) - temporarily define a custom event. * [d3.mouse](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#mouse) - get the mouse position relative to a given container. * [d3.touch](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#touch) - get a touch position relative to a given container. * [d3.touches](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#touches) - get the touch positions relative to a given container. * [d3.clientPoint](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#clientPoint) - get a position relative to a given container. ### [Control Flow](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#control-flow) * [*selection*.each](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_each) - call a function for each element. * [*selection*.call](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_call) - call a function with this selection. * [*selection*.empty](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_empty) - returns true if this selection is empty. * [*selection*.nodes](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_nodes) - returns an array of all selected elements. * [*selection*.node](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_node) - returns the first (non-null) element. * [*selection*.size](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#selection_size) - returns the count of elements. ### [Local Variables](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#local-variables) * [d3.local](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#local) - declares a new local variable. * [*local*.set](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#local_set) - set a local variable’s value. * [*local*.get](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#local_get) - get a local variable’s value. * [*local*.remove](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#local_remove) - delete a local variable. * [*local*.toString](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#local_toString) - get the property identifier of a local variable. ### [Namespaces](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#namespaces) * [d3.namespace](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#namespace) - qualify a prefixed XML name, such as “xlink:href”. * [d3.namespaces](https://github.com/d3/d3-selection/blob/v1.4.1/README.md#namespaces) - the built-in XML namespaces. ## [Shapes (d3-shape)](https://github.com/d3/d3-shape/tree/v1.3.7) Graphical primitives for visualization. ### [Arcs](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arcs) Circular or annular sectors, as in a pie or donut chart. * [d3.arc](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arc) - create a new arc generator. * [*arc*](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#_arc) - generate an arc for the given datum. * [*arc*.centroid](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arc_centroid) - compute an arc’s midpoint. * [*arc*.innerRadius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arc_innerRadius) - set the inner radius. * [*arc*.outerRadius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arc_outerRadius) - set the outer radius. * [*arc*.cornerRadius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arc_cornerRadius) - set the corner radius, for rounded corners. * [*arc*.startAngle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arc_startAngle) - set the start angle. * [*arc*.endAngle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arc_endAngle) - set the end angle. * [*arc*.padAngle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arc_padAngle) - set the angle between adjacent arcs, for padded arcs. * [*arc*.padRadius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arc_padRadius) - set the radius at which to linearize padding. * [*arc*.context](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#arc_context) - set the rendering context. ### [Pies](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#pies) Compute the necessary angles to represent a tabular dataset as a pie or donut chart. * [d3.pie](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#pie) - create a new pie generator. * [*pie*](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#_pie) - compute the arc angles for the given dataset. * [*pie*.value](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#pie_value) - set the value accessor. * [*pie*.sort](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#pie_sort) - set the sort order comparator. * [*pie*.sortValues](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#pie_sortValues) - set the sort order comparator. * [*pie*.startAngle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#pie_startAngle) - set the overall start angle. * [*pie*.endAngle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#pie_endAngle) - set the overall end angle. * [*pie*.padAngle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#pie_padAngle) - set the pad angle between adjacent arcs. ### [Lines](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#lines) A spline or polyline, as in a line chart. * [d3.line](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#line) - create a new line generator. * [*line*](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#_line) - generate a line for the given dataset. * [*line*.x](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#line_x) - set the *x* accessor. * [*line*.y](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#line_y) - set the *y* accessor. * [*line*.defined](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#line_defined) - set the defined accessor. * [*line*.curve](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#line_curve) - set the curve interpolator. * [*line*.context](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#line_context) - set the rendering context. * [d3.lineRadial](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#lineRadial) - create a new radial line generator. * [*lineRadial*](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#_lineRadial) - generate a line for the given dataset. * [*lineRadial*.angle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#lineRadial_angle) - set the angle accessor. * [*lineRadial*.radius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#lineRadial_radius) - set the radius accessor. * [*lineRadial*.defined](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#lineRadial_defined) - set the defined accessor. * [*lineRadial*.curve](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#lineRadial_curve) - set the curve interpolator. * [*lineRadial*.context](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#lineRadial_context) - set the rendering context. ### [Areas](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#areas) An area, defined by a bounding topline and baseline, as in an area chart. * [d3.area](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area) - create a new area generator. * [*area*](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#_area) - generate an area for the given dataset. * [*area*.x](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_x) - set the *x0* and *x1* accessors. * [*area*.x0](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_x0) - set the baseline *x* accessor. * [*area*.x1](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_x1) - set the topline *x* accessor. * [*area*.y](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_y) - set the *y0* and *y1* accessors. * [*area*.y0](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_y0) - set the baseline *y* accessor. * [*area*.y1](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_y1) - set the topline *y* accessor. * [*area*.defined](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_defined) - set the defined accessor. * [*area*.curve](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_curve) - set the curve interpolator. * [*area*.context](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_context) - set the rendering context. * [*area*.lineX0](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_lineX0) - derive a line for the left edge of an area. * [*area*.lineX1](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_lineX1) - derive a line for the right edge of an area. * [*area*.lineY0](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_lineY0) - derive a line for the top edge of an area. * [*area*.lineY1](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_lineY1) - derive a line for the bottom edge of an area. * [d3.radialArea](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialArea) - create a new radial area generator. * [*radialArea*](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#_radialArea) - generate an area for the given dataset. * [*radialArea*.angle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialArea_angle) - set the start and end angle accessors. * [*radialArea*.startAngle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialArea_startAngle) - set the start angle accessor. * [*radialArea*.endAngle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialArea_endAngle) - set the end angle accessor. * [*radialArea*.radius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialArea_radius) - set the inner and outer radius accessors. * [*radialArea*.innerRadius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialArea_innerRadius) - set the inner radius accessor. * [*radialArea*.outerRadius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialArea_outerRadius) - set the outer radius accessor. * [*radialArea*.defined](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialArea_defined) - set the defined accessor. * [*radialArea*.curve](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialArea_curve) - set the curve interpolator. * [*radialArea*.context](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialArea_context) - set the rendering context. * [*radialArea*.lineStartAngle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_lineStartAngle) - derive a line for the start edge of an area. * [*radialArea*.lineEndAngle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_lineEndAngle) - derive a line for the end edge of an area. * [*radialArea*.lineInnerRadius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_lineInnerRadius) - derive a line for the inner edge of an area. * [*radialArea*.lineOuterRadius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#area_lineOuterRadius) - derive a line for the outer edge of an area. ### [Curves](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curves) Interpolate between points to produce a continuous shape. * [d3.curveBasis](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveBasis) - a cubic basis spline, repeating the end points. * [d3.curveBasisClosed](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveBasisClosed) - a closed cubic basis spline. * [d3.curveBasisOpen](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveBasisOpen) - a cubic basis spline. * [d3.curveBundle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveBundle) - a straightened cubic basis spline. * [*bundle*.beta](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#bundle_beta) - set the bundle tension *beta*. * [d3.curveCardinal](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveCardinal) - a cubic cardinal spline, with one-sided difference at each end. * [d3.curveCardinalClosed](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveCardinalClosed) - a closed cubic cardinal spline. * [d3.curveCardinalOpen](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveCardinalOpen) - a cubic cardinal spline. * [*cardinal*.tension](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#cardinal_tension) - set the cardinal spline tension. * [d3.curveCatmullRom](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveCatmullRom) - a cubic Catmull–Rom spline, with one-sided difference at each end. * [d3.curveCatmullRomClosed](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveCatmullRomClosed) - a closed cubic Catmull–Rom spline. * [d3.curveCatmullRomOpen](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveCatmullRomOpen) - a cubic Catmull–Rom spline. * [*catmullRom*.alpha](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#catmullRom_alpha) - set the Catmull–Rom parameter *alpha*. * [d3.curveLinear](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveLinear) - a polyline. * [d3.curveLinearClosed](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveLinearClosed) - a closed polyline. * [d3.curveMonotoneX](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveMonotoneX) - a cubic spline that, given monotonicity in *x*, preserves it in *y*. * [d3.curveMonotoneY](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveMonotoneY) - a cubic spline that, given monotonicity in *y*, preserves it in *x*. * [d3.curveNatural](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveNatural) - a natural cubic spline. * [d3.curveStep](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveStep) - a piecewise constant function. * [d3.curveStepAfter](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveStepAfter) - a piecewise constant function. * [d3.curveStepBefore](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curveStepBefore) - a piecewise constant function. * [*curve*.areaStart](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curve_areaStart) - start a new area segment. * [*curve*.areaEnd](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curve_areaEnd) - end the current area segment. * [*curve*.lineStart](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curve_lineStart) - start a new line segment. * [*curve*.lineEnd](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curve_lineEnd) - end the current line segment. * [*curve*.point](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#curve_point) - add a point to the current line segment. ### [Links](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#links) A smooth cubic Bézier curve from a source to a target. * [d3.linkVertical](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#linkVertical) - create a new vertical link generator. * [d3.linkHorizontal](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#linkHorizontal) - create a new horizontal link generator. * [*link*](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#_link) - generate a link. * [*link*.source](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#link_source) - set the source accessor. * [*link*.target](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#link_target) - set the target accessor. * [*link*.x](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#link_x) - set the point *x*-accessor. * [*link*.y](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#link_y) - set the point *y*-accessor. * [*link*.context](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#link_context) - set the rendering context. * [d3.linkRadial](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#linkRadial) - create a new radial link generator. * [*radialLink*.angle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialLink_angle) - set the point *angle* accessor. * [*radialLink*.radius](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#radialLink_radius) - set the point *radius* accessor. ### [Symbols](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbols) A categorical shape encoding, as in a scatterplot. * [d3.symbol](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbol) - create a new symbol generator. * [*symbol*](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#_symbol) - generate a symbol for the given datum. * [*symbol*.type](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbol_type) - set the symbol type. * [*symbol*.size](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbol_size) - set the size of the symbol in square pixels. * [*symbol*.context](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbol_context) - set the rendering context. * [d3.symbols](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbols) - the array of built-in symbol types. * [d3.symbolCircle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbolCircle) - a circle. * [d3.symbolCross](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbolCross) - a Greek cross with arms of equal length. * [d3.symbolDiamond](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbolDiamond) - a rhombus. * [d3.symbolSquare](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbolSquare) - a square. * [d3.symbolStar](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbolStar) - a pentagonal star (pentagram). * [d3.symbolTriangle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbolTriangle) - an up-pointing triangle. * [d3.symbolWye](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbolWye) - a Y shape. * [d3.pointRadial](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#pointRadial) - * [*symbolType*.draw](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#symbolType_draw) - draw this symbol to the given context. ### [Stacks](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stacks) Stack shapes, placing one adjacent to another, as in a stacked bar chart. * [d3.stack](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stack) - create a new stack generator. * [*stack*](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#_stack) - generate a stack for the given dataset. * [*stack*.keys](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stack_keys) - set the keys accessor. * [*stack*.value](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stack_value) - set the value accessor. * [*stack*.order](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stack_order) - set the order accessor. * [*stack*.offset](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stack_offset) - set the offset accessor. * [d3.stackOrderAppearance](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOrderAppearance) - put the earliest series on bottom. * [d3.stackOrderAscending](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOrderAscending) - put the smallest series on bottom. * [d3.stackOrderDescending](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOrderDescending) - put the largest series on bottom. * [d3.stackOrderInsideOut](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOrderInsideOut) - put earlier series in the middle. * [d3.stackOrderNone](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOrderNone) - use the given series order. * [d3.stackOrderReverse](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOrderReverse) - use the reverse of the given series order. * [d3.stackOffsetExpand](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOffsetExpand) - normalize the baseline to zero and topline to one. * [d3.stackOffsetDiverging](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOffsetDiverging) - positive above zero; negative below zero. * [d3.stackOffsetNone](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOffsetNone) - apply a zero baseline. * [d3.stackOffsetSilhouette](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOffsetSilhouette) - center the streamgraph around zero. * [d3.stackOffsetWiggle](https://github.com/d3/d3-shape/blob/v1.3.7/README.md#stackOffsetWiggle) - minimize streamgraph wiggling. ## [Time Formats (d3-time-format)](https://github.com/d3/d3-time-format/tree/v2.2.3) Parse and format times, inspired by strptime and strftime. * [d3.timeFormat](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#timeFormat) - alias for *locale*.format on the default locale. * [d3.timeParse](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#timeParse) - alias for *locale*.parse on the default locale. * [d3.utcFormat](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#utcFormat) - alias for *locale*.utcFormat on the default locale. * [d3.utcParse](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#utcParse) - alias for *locale*.utcParse on the default locale. * [d3.isoFormat](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#isoFormat) - an ISO 8601 UTC formatter. * [d3.isoParse](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#isoParse) - an ISO 8601 UTC parser. * [d3.timeFormatLocale](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#timeFormatLocale) - define a custom locale. * [d3.timeFormatDefaultLocale](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#timeFormatDefaultLocale) - define the default locale. * [*locale*.format](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#locale_format) - create a time formatter. * [*locale*.parse](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#locale_parse) - create a time parser. * [*locale*.utcFormat](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#locale_utcFormat) - create a UTC formatter. * [*locale*.utcParse](https://github.com/d3/d3-time-format/blob/v2.2.3/README.md#locale_utcParse) - create a UTC parser. ## [Time Intervals (d3-time)](https://github.com/d3/d3-time/tree/v1.1.0) A calculator for humanity’s peculiar conventions of time. * [d3.timeInterval](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeInterval) - implement a new custom time interval. * [*interval*](https://github.com/d3/d3-time/blob/v1.1.0/README.md#_interval) - alias for *interval*.floor. * [*interval*.floor](https://github.com/d3/d3-time/blob/v1.1.0/README.md#interval_floor) - round down to the nearest boundary. * [*interval*.round](https://github.com/d3/d3-time/blob/v1.1.0/README.md#interval_round) - round to the nearest boundary. * [*interval*.ceil](https://github.com/d3/d3-time/blob/v1.1.0/README.md#interval_ceil) - round up to the nearest boundary. * [*interval*.offset](https://github.com/d3/d3-time/blob/v1.1.0/README.md#interval_offset) - offset a date by some number of intervals. * [*interval*.range](https://github.com/d3/d3-time/blob/v1.1.0/README.md#interval_range) - generate a range of dates at interval boundaries. * [*interval*.filter](https://github.com/d3/d3-time/blob/v1.1.0/README.md#interval_filter) - create a filtered subset of this interval. * [*interval*.every](https://github.com/d3/d3-time/blob/v1.1.0/README.md#interval_every) - create a filtered subset of this interval. * [*interval*.count](https://github.com/d3/d3-time/blob/v1.1.0/README.md#interval_count) - count interval boundaries between two dates. * [d3.timeMillisecond](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMillisecond), [d3.utcMillisecond](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMillisecond) - the millisecond interval. * [d3.timeMilliseconds](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMillisecond), [d3.utcMilliseconds](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMillisecond) - aliases for millisecond.range. * [d3.timeSecond](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSecond), [d3.utcSecond](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSecond) - the second interval. * [d3.timeSeconds](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSecond), [d3.utcSeconds](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSecond) - aliases for second.range. * [d3.timeMinute](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMinute), [d3.utcMinute](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMinute) - the minute interval. * [d3.timeMinutes](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMinute), [d3.utcMinutes](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMinute) - aliases for minute.range. * [d3.timeHour](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeHour), [d3.utcHour](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeHour) - the hour interval. * [d3.timeHours](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeHour), [d3.utcHours](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeHour) - aliases for hour.range. * [d3.timeDay](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeDay), [d3.utcDay](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeDay) - the day interval. * [d3.timeDays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeDay), [d3.utcDays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeDay) - aliases for day.range. * [d3.timeWeek](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeWeek), [d3.utcWeek](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeWeek) - aliases for sunday. * [d3.timeWeeks](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeWeek), [d3.utcWeeks](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeWeek) - aliases for week.range. * [d3.timeSunday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSunday), [d3.utcSunday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSunday) - the week interval, starting on Sunday. * [d3.timeSundays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSunday), [d3.utcSundays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSunday) - aliases for sunday.range. * [d3.timeMonday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMonday), [d3.utcMonday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMonday) - the week interval, starting on Monday. * [d3.timeMondays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMonday), [d3.utcMondays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMonday) - aliases for monday.range. * [d3.timeTuesday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeTuesday), [d3.utcTuesday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeTuesday) - the week interval, starting on Tuesday. * [d3.timeTuesdays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeTuesday), [d3.utcTuesdays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeTuesday) - aliases for tuesday.range. * [d3.timeWednesday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeWednesday), [d3.utcWednesday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeWednesday) - the week interval, starting on Wednesday. * [d3.timeWednesdays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeWednesday), [d3.utcWednesdays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeWednesday) - aliases for wednesday.range. * [d3.timeThursday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeThursday), [d3.utcThursday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeThursday) - the week interval, starting on Thursday. * [d3.timeThursdays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeThursday), [d3.utcThursdays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeThursday) - aliases for thursday.range. * [d3.timeFriday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeFriday), [d3.utcFriday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeFriday) - the week interval, starting on Friday. * [d3.timeFridays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeFriday), [d3.utcFridays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeFriday) - aliases for friday.range. * [d3.timeSaturday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSaturday), [d3.utcSaturday](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSaturday) - the week interval, starting on Saturday. * [d3.timeSaturdays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSaturday), [d3.utcSaturdays](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeSaturday) - aliases for saturday.range. * [d3.timeMonth](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMonth), [d3.utcMonth](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMonth) - the month interval. * [d3.timeMonths](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMonth), [d3.utcMonths](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeMonth) - aliases for month.range. * [d3.timeYear](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeYear), [d3.utcYear](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeYear) - the year interval. * [d3.timeYears](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeYear), [d3.utcYears](https://github.com/d3/d3-time/blob/v1.1.0/README.md#timeYear) - aliases for year.range. ## [Timers (d3-timer)](https://github.com/d3/d3-timer/tree/v1.0.10) An efficient queue for managing thousands of concurrent animations. * [d3.now](https://github.com/d3/d3-timer/blob/v1.0.10/README.md#now) - get the current high-resolution time. * [d3.timer](https://github.com/d3/d3-timer/blob/v1.0.10/README.md#timer) - schedule a new timer. * [*timer*.restart](https://github.com/d3/d3-timer/blob/v1.0.10/README.md#timer_restart) - reset the timer’s start time and callback. * [*timer*.stop](https://github.com/d3/d3-timer/blob/v1.0.10/README.md#timer_stop) - stop the timer. * [d3.timerFlush](https://github.com/d3/d3-timer/blob/v1.0.10/README.md#timerFlush) - immediately execute any eligible timers. * [d3.timeout](https://github.com/d3/d3-timer/blob/v1.0.10/README.md#timeout) - schedule a timer that stops on its first callback. * [d3.interval](https://github.com/d3/d3-timer/blob/v1.0.10/README.md#interval) - schedule a timer that is called with a configurable period. ## [Transitions (d3-transition)](https://github.com/d3/d3-transition/tree/v1.3.2) Animated transitions for [selections](#selections). * [*selection*.transition](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#selection_transition) - schedule a transition for the selected elements. * [*selection*.interrupt](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#selection_interrupt) - interrupt and cancel transitions on the selected elements. * [d3.transition](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition) - schedule a transition on the root document element. * [*transition*.select](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_select) - schedule a transition on the selected elements. * [*transition*.selectAll](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_selectAll) - schedule a transition on the selected elements. * [*transition*.filter](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_filter) - filter elements based on data. * [*transition*.merge](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_merge) - merge this transition with another. * [*transition*.selection](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_selection) - returns a selection for this transition. * [*transition*.transition](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_transition) - schedule a new transition following this one. * [*transition*.call](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_call) - call a function with this transition. * [*transition*.nodes](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_nodes) - returns an array of all selected elements. * [*transition*.node](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_node) - returns the first (non-null) element. * [*transition*.size](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_size) - returns the count of elements. * [*transition*.empty](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_empty) - returns true if this transition is empty. * [*transition*.each](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_each) - call a function for each element. * [*transition*.on](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_on) - add or remove transition event listeners. * [*transition*.end](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_on) - await the end of a transition. * [*transition*.attr](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_attr) - tween the given attribute using the default interpolator. * [*transition*.attrTween](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_attrTween) - tween the given attribute using a custom interpolator. * [*transition*.style](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_style) - tween the given style property using the default interpolator. * [*transition*.styleTween](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_styleTween) - tween the given style property using a custom interpolator. * [*transition*.text](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_text) - set the text content when the transition starts. * [*transition*.textTween](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_textTween) - tween the text using a custom interpolator. * [*transition*.remove](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_remove) - remove the selected elements when the transition ends. * [*transition*.tween](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_tween) - run custom code during the transition. * [*transition*.delay](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_delay) - specify per-element delay in milliseconds. * [*transition*.duration](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_duration) - specify per-element duration in milliseconds. * [*transition*.ease](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#transition_ease) - specify the easing function. * [d3.active](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#active) - select the active transition for a given node. * [d3.interrupt](https://github.com/d3/d3-transition/blob/v1.3.2/README.md#interrupt) - interrupt the active transition for a given node. ## [Voronoi Diagrams (d3-voronoi)](https://github.com/d3/d3-voronoi/tree/v1.1.4) Compute the Voronoi diagram of a given set of points. * [d3.voronoi](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#voronoi) - create a new Voronoi generator. * [*voronoi*](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#_voronoi) - generate a new Voronoi diagram for the given points. * [*voronoi*.polygons](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#voronoi_polygons) - compute the Voronoi polygons for the given points. * [*voronoi*.triangles](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#voronoi_triangles) - compute the Delaunay triangles for the given points. * [*voronoi*.links](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#voronoi_links) - compute the Delaunay links for the given points. * [*voronoi*.x](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#voronoi_x) - set the *x* accessor. * [*voronoi*.y](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#voronoi_y) - set the *y* accessor. * [*voronoi*.extent](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#voronoi_extent) - set the observed extent of points. * [*voronoi*.size](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#voronoi_size) - set the observed extent of points. * [*diagram*.polygons](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#diagram_polygons) - compute the polygons for this Voronoi diagram. * [*diagram*.triangles](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#diagram_triangles) - compute the triangles for this Voronoi diagram. * [*diagram*.links](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#diagram_links) - compute the links for this Voronoi diagram. * [*diagram*.find](https://github.com/d3/d3-voronoi/blob/v1.1.4/README.md#diagram_find) - find the closest point in this Voronoi diagram. ## [Zooming (d3-zoom)](https://github.com/d3/d3-zoom/tree/v1.8.3) Pan and zoom SVG, HTML or Canvas using mouse or touch input. * [d3.zoom](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom) - create a zoom behavior. * [*zoom*](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#_zoom) - apply the zoom behavior to the selected elements. * [*zoom*.transform](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_transform) - change the transform for the selected elements. * [*zoom*.translateTo](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_translateTo) - translate the transform for the selected elements. * [*zoom*.translateBy](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_translateBy) - translate the transform for the selected elements. * [*zoom*.scaleBy](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_scaleBy) - scale the transform for the selected elements. * [*zoom*.scaleTo](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_scaleTo) - scale the transform for the selected elements. * [*zoom*.filter](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_filter) - control which input events initiate zooming. * [*zoom*.touchable](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_touchable) - set the touch support detector. * [*zoom*.wheelDelta](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_wheelDelta) - override scaling for wheel events. * [*zoom*.clickDistance](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_clickDistance) - set the click distance threshold. * [*zoom*.extent](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_extent) - set the extent of the viewport. * [*zoom*.scaleExtent](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_scaleExtent) - set the allowed scale range. * [*zoom*.translateExtent](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_translateExtent) - set the extent of the zoomable world. * [*zoom*.constrain](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_constrain) - override the transform constraint logic. * [*zoom*.duration](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_duration) - set the duration of zoom transitions. * [*zoom*.interpolate](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_interpolate) - control the interpolation of zoom transitions. * [*zoom*.on](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoom_on) - listen for zoom events. * [d3.zoomTransform](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoomTransform) - get the zoom transform for a given element. * [*transform*.scale](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_scale) - scale a transform by the specified amount. * [*transform*.translate](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_translate) - translate a transform by the specified amount. * [*transform*.apply](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_apply) - apply the transform to the given point. * [*transform*.applyX](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_applyX) - apply the transform to the given *x*-coordinate. * [*transform*.applyY](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_applyY) - apply the transform to the given *y*-coordinate. * [*transform*.invert](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_invert) - unapply the transform to the given point. * [*transform*.invertX](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_invertX) - unapply the transform to the given *x*-coordinate. * [*transform*.invertY](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_invertY) - unapply the transform to the given *y*-coordinate. * [*transform*.rescaleX](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_rescaleX) - apply the transform to an *x*-scale’s domain. * [*transform*.rescaleY](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_rescaleY) - apply the transform to a *y*-scale’s domain. * [*transform*.toString](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#transform_toString) - format the transform as an SVG transform string. * [d3.zoomIdentity](https://github.com/d3/d3-zoom/blob/v1.8.3/README.md#zoomIdentity) - the identity transform. d3-5.16.0/CHANGES.md000066400000000000000000004306761364736134000135320ustar00rootroot00000000000000# Changes in D3 5.0 [Released March 22, 2018.](https://github.com/d3/d3/releases/tag/v5.0.0) *This document covers only major changes. For minor and patch changes, please see the [release notes](https://github.com/d3/d3/releases).* D3 5.0 introduces only a few non-backwards-compatible changes. D3 now uses [Promises](https://developer.mozilla.org/docs/Web/JavaScript/Guide/Using_promises) instead of asynchronous callbacks to load data. Promises simplify the structure of asynchronous code, especially in modern browsers that support [async and await](https://javascript.info/async-await). (See this [introduction to promises](https://observablehq.com/@observablehq/introduction-to-promises) on [Observable](https://observablehq.com).) For example, to load a CSV file in v4, you might say: ```js d3.csv("file.csv", function(error, data) { if (error) throw error; console.log(data); }); ``` In v5, using promises: ```js d3.csv("file.csv").then(function(data) { console.log(data); }); ``` Note that you don’t need to rethrow the error—the promise will reject automatically, and you can *promise*.catch if desired. Using await, the code is even simpler: ```js const data = await d3.csv("file.csv"); console.log(data); ``` With the adoption of promises, D3 now uses the [Fetch API](https://fetch.spec.whatwg.org/) instead of [XMLHttpRequest](https://developer.mozilla.org/docs/Web/API/XMLHttpRequest): the [d3-request](https://github.com/d3/d3-request) module has been replaced by [d3-fetch](https://github.com/d3/d3-fetch). Fetch supports many powerful new features, such as [streaming responses](https://observablehq.com/@mbostock/streaming-shapefiles). D3 5.0 also deprecates and removes the [d3-queue](https://github.com/d3/d3-queue) module. Use [Promise.all](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise/all) to run a batch of asynchronous tasks in parallel, or a helper library such as [p-queue](https://github.com/sindresorhus/p-queue) to [control concurrency](https://observablehq.com/@mbostock/hello-p-queue). D3 no longer provides the d3.schemeCategory20* categorical color schemes. These twenty-color schemes were flawed because their grouped design could falsely imply relationships in the data: a shared hue can imply that the encoded data are part of a group (a super-category), while relative lightness can imply order. Instead, D3 now includes [d3-scale-chromatic](https://github.com/d3/d3-scale-chromatic), which implements excellent schemes from ColorBrewer, including [categorical](https://github.com/d3/d3-scale-chromatic/blob/master/README.md#categorical), [diverging](https://github.com/d3/d3-scale-chromatic/blob/master/README.md#diverging), [sequential single-hue](https://github.com/d3/d3-scale-chromatic/blob/master/README.md#sequential-single-hue) and [sequential multi-hue](https://github.com/d3/d3-scale-chromatic/blob/master/README.md#sequential-multi-hue) schemes. These schemes are available in both discrete and continuous variants. D3 now provides implementations of [marching squares](https://observablehq.com/@d3/contours) and [density estimation](https://observablehq.com/@d3/density-contours) via [d3-contour](https://github.com/d3/d3-contour)! There are two new [d3-selection](https://github.com/d3/d3-selection) methods: [*selection*.clone](https://github.com/d3/d3-selection/blob/master/README.md#selection_clone) for inserting clones of the selected nodes, and [d3.create](https://github.com/d3/d3-selection/blob/master/README.md#create) for creating detached elements. [Geographic projections](https://github.com/d3/d3-geo) now support [*projection*.angle](https://github.com/d3/d3-geo/blob/master/README.md#projection_angle), which has enabled several fantastic new [polyhedral projections](https://github.com/d3/d3-geo-polygon) by Philippe Rivière. Lastly, D3’s [package.json](https://github.com/d3/d3/blob/master/package.json) no longer pins exact versions of the dependent D3 modules. This fixes an issue with [duplicate installs](https://github.com/d3/d3/issues/3256) of D3 modules. # Changes in D3 4.0 [Released June 28, 2016.](https://github.com/d3/d3/releases/tag/v4.0.0) D3 4.0 is modular. Instead of one library, D3 is now [many small libraries](#table-of-contents) that are designed to work together. You can pick and choose which parts to use as you see fit. Each library is maintained in its own repository, allowing decentralized ownership and independent release cycles. The default bundle combines about thirty of these microlibraries. ```html ``` As before, you can load optional plugins on top of the default bundle, such as [ColorBrewer scales](https://github.com/d3/d3-scale-chromatic): ```html ``` You are not required to use the default bundle! If you’re just using [d3-selection](https://github.com/d3/d3-selection), use it as a standalone library. Like the default bundle, you can load D3 microlibraries using vanilla script tags or RequireJS (great for HTTP/2!): ```html ``` You can also `cat` D3 microlibraries into a custom bundle, or use tools such as [Webpack](https://webpack.github.io/) and [Rollup](http://rollupjs.org/) to create [optimized bundles](https://bl.ocks.org/mbostock/bb09af4c39c79cffcde4). Custom bundles are great for applications that use a subset of D3’s features; for example, a React chart library might use D3 for scales and shapes, and React to manipulate the DOM. The D3 microlibraries are written as [ES6 modules](http://www.2ality.com/2014/09/es6-modules-final.html), and Rollup lets you pick at the symbol level to produce smaller bundles. Small files are nice, but modularity is also about making D3 more *fun*. Microlibraries are easier to understand, develop and test. They make it easier for new people to get involved and contribute. They reduce the distinction between a “core module” and a “plugin”, and increase the pace of development in D3 features. If you don’t care about modularity, you can mostly ignore this change and keep using the default bundle. However, there is one unavoidable consequence of adopting ES6 modules: every symbol in D3 4.0 now shares a flat namespace rather than the nested one of D3 3.x. For example, d3.scale.linear is now d3.scaleLinear, and d3.layout.treemap is now d3.treemap. The adoption of ES6 modules also means that D3 is now written exclusively in [strict mode](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode) and has better readability. And there have been many other significant improvements to D3’s features! (Nearly all of the code from D3 3.x has been rewritten.) These changes are covered below. ### Other Global Changes The default [UMD bundle](https://github.com/umdjs/umd) is now [anonymous](https://github.com/requirejs/requirejs/wiki/Updating-existing-libraries#register-as-an-anonymous-module-). No `d3` global is exported if AMD or CommonJS is detected. In a vanilla environment, the D3 microlibraries share the `d3` global, even if you load them independently; thus, code you write is the same whether or not you use the default bundle. (See [Let’s Make a (D3) Plugin](https://bost.ocks.org/mike/d3-plugin/) for more.) The generated bundle is no longer stored in the Git repository; Bower has been repointed to [d3-bower](https://github.com/mbostock-bower/d3-bower), and you can find the generated files on [npm](https://unpkg.com/d3) or attached to the [latest release](https://github.com/d3/d3/releases/latest). The non-minified default bundle is no longer mangled, making it more readable and preserving inline comments. To the consternation of some users, 3.x employed Unicode variable names such as λ, φ, τ and π for a concise representation of mathematical operations. A downside of this approach was that a SyntaxError would occur if you loaded the non-minified D3 using ISO-8859-1 instead of UTF-8. 3.x also used Unicode string literals, such as the SI-prefix µ for 1e-6. 4.0 uses only ASCII variable names and ASCII string literals (see [rollup-plugin-ascii](https://github.com/mbostock/rollup-plugin-ascii)), avoiding encoding problems. ### Table of Contents * [Arrays](#arrays-d3-array) * [Axes](#axes-d3-axis) * [Brushes](#brushes-d3-brush) * [Chords](#chords-d3-chord) * [Collections](#collections-d3-collection) * [Colors](#colors-d3-color) * [Dispatches](#dispatches-d3-dispatch) * [Dragging](#dragging-d3-drag) * [Delimiter-Separated Values](#delimiter-separated-values-d3-dsv) * [Easings](#easings-d3-ease) * [Forces](#forces-d3-force) * [Number Formats](#number-formats-d3-format) * [Geographies](#geographies-d3-geo) * [Hierarchies](#hierarchies-d3-hierarchy) * [Internals](#internals) * [Interpolators](#interpolators-d3-interpolate) * [Paths](#paths-d3-path) * [Polygons](#polygons-d3-polygon) * [Quadtrees](#quadtrees-d3-quadtree) * [Queues](#queues-d3-queue) * [Random Numbers](#random-numbers-d3-random) * [Requests](#requests-d3-request) * [Scales](#scales-d3-scale) * [Selections](#selections-d3-selection) * [Shapes](#shapes-d3-shape) * [Time Formats](#time-formats-d3-time-format) * [Time Intervals](#time-intervals-d3-time) * [Timers](#timers-d3-timer) * [Transitions](#transitions-d3-transition) * [Voronoi Diagrams](#voronoi-diagrams-d3-voronoi) * [Zooming](#zooming-d3-zoom) ## [Arrays (d3-array)](https://github.com/d3/d3-array/blob/master/README.md) The new [d3.scan](https://github.com/d3/d3-array/blob/master/README.md#scan) method performs a linear scan of an array, returning the index of the least element according to the specified comparator. This is similar to [d3.min](https://github.com/d3/d3-array/blob/master/README.md#min) and [d3.max](https://github.com/d3/d3-array/blob/master/README.md#max), except you can use it to find the position of an extreme element, rather than just calculate an extreme value. ```js var data = [ {name: "Alice", value: 2}, {name: "Bob", value: 3}, {name: "Carol", value: 1}, {name: "Dwayne", value: 5} ]; var i = d3.scan(data, function(a, b) { return a.value - b.value; }); // 2 data[i]; // {name: "Carol", value: 1} ``` The new [d3.ticks](https://github.com/d3/d3-array/blob/master/README.md#ticks) and [d3.tickStep](https://github.com/d3/d3-array/blob/master/README.md#tickStep) methods are useful for generating human-readable numeric ticks. These methods are a low-level alternative to [*continuous*.ticks](https://github.com/d3/d3-scale/blob/master/README.md#continuous_ticks) from [d3-scale](https://github.com/d3/d3-scale). The new implementation is also more accurate, returning the optimal number of ticks as measured by relative error. ```js var ticks = d3.ticks(0, 10, 5); // [0, 2, 4, 6, 8, 10] ``` The [d3.range](https://github.com/d3/d3-array/blob/master/README.md#range) method no longer makes an elaborate attempt to avoid floating-point error when *step* is not an integer. The returned values are strictly defined as *start* + *i* \* *step*, where *i* is an integer. (Learn more about [floating point math](http://0.30000000000000004.com/).) d3.range returns the empty array for infinite ranges, rather than throwing an error. The method signature for optional accessors has been changed to be more consistent with array methods such as [*array*.forEach](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach): the accessor is passed the current element (*d*), the index (*i*), and the array (*data*), with *this* as undefined. This affects [d3.min](https://github.com/d3/d3-array/blob/master/README.md#min), [d3.max](https://github.com/d3/d3-array/blob/master/README.md#max), [d3.extent](https://github.com/d3/d3-array/blob/master/README.md#extent), [d3.sum](https://github.com/d3/d3-array/blob/master/README.md#sum), [d3.mean](https://github.com/d3/d3-array/blob/master/README.md#mean), [d3.median](https://github.com/d3/d3-array/blob/master/README.md#median), [d3.quantile](https://github.com/d3/d3-array/blob/master/README.md#quantile), [d3.variance](https://github.com/d3/d3-array/blob/master/README.md#variance) and [d3.deviation](https://github.com/d3/d3-array/blob/master/README.md#deviation). The [d3.quantile](https://github.com/d3/d3-array/blob/master/README.md#quantile) method previously did not take an accessor. Some methods with optional arguments now treat those arguments as missing if they are null or undefined, rather than strictly checking arguments.length. The new [d3.histogram](https://github.com/d3/d3-array/blob/master/README.md#histograms) API replaces d3.layout.histogram. Rather than exposing *bin*.x and *bin*.dx on each returned bin, the histogram exposes *bin*.x0 and *bin*.x1, guaranteeing that *bin*.x0 is exactly equal to *bin*.x1 on the preceding bin. The “frequency” and “probability” modes are no longer supported; each bin is simply an array of elements from the input data, so *bin*.length is equal to D3 3.x’s *bin*.y in frequency mode. To compute a probability distribution, divide the number of elements in each bin by the total number of elements. The *histogram*.range method has been renamed [*histogram*.domain](https://github.com/d3/d3-array/blob/master/README.md#histogram_domain) for consistency with scales. The *histogram*.bins method has been renamed [*histogram*.thresholds](https://github.com/d3/d3-array/blob/master/README.md#histogram_thresholds), and no longer accepts an upper value: *n* thresholds will produce *n* + 1 bins. If you specify a desired number of bins rather than thresholds, d3.histogram now uses [d3.ticks](https://github.com/d3/d3-array/blob/master/README.md#ticks) to compute nice bin thresholds. In addition to the default Sturges’ formula, D3 now implements the [Freedman-Diaconis rule](https://github.com/d3/d3-array/blob/master/README.md#thresholdFreedmanDiaconis) and [Scott’s normal reference rule](https://github.com/d3/d3-array/blob/master/README.md#thresholdScott). ## [Axes (d3-axis)](https://github.com/d3/d3-axis/blob/master/README.md) To render axes properly in D3 3.x, you needed to style them: ```html ``` If you didn’t, you saw this: D3 4.0 provides default styles and shorter syntax. In place of d3.svg.axis and *axis*.orient, D3 4.0 now provides four constructors for each orientation: [d3.axisTop](https://github.com/d3/d3-axis/blob/master/README.md#axisTop), [d3.axisRight](https://github.com/d3/d3-axis/blob/master/README.md#axisRight), [d3.axisBottom](https://github.com/d3/d3-axis/blob/master/README.md#axisBottom), [d3.axisLeft](https://github.com/d3/d3-axis/blob/master/README.md#axisLeft). These constructors accept a scale, so you can reduce all of the above to: ```html ``` And get this: As before, you can customize the axis appearance either by applying stylesheets or by modifying the axis elements. The default appearance has been changed slightly to offset the axis by a half-pixel; this fixes a crisp-edges rendering issue on Safari where the axis would be drawn two-pixels thick. There’s now an [*axis*.tickArguments](https://github.com/d3/d3-axis/blob/master/README.md#axis_tickArguments) method, as an alternative to [*axis*.ticks](https://github.com/d3/d3-axis/blob/master/README.md#axis_ticks) that also allows the axis tick arguments to be inspected. The [*axis*.tickSize](https://github.com/d3/d3-axis/blob/master/README.md#axis_tickSize) method has been changed to only allow a single argument when setting the tick size. The *axis*.innerTickSize and *axis*.outerTickSize methods have been renamed [*axis*.tickSizeInner](https://github.com/d3/d3-axis/blob/master/README.md#axis_tickSizeInner) and [*axis*.tickSizeOuter](https://github.com/d3/d3-axis/blob/master/README.md#axis_tickSizeOuter), respectively. ## [Brushes (d3-brush)](https://github.com/d3/d3-brush/blob/master/README.md) Replacing d3.svg.brush, there are now three classes of brush for brushing along the *x*-dimension, the *y*-dimension, or both: [d3.brushX](https://github.com/d3/d3-brush/blob/master/README.md#brushX), [d3.brushY](https://github.com/d3/d3-brush/blob/master/README.md#brushY), [d3.brush](https://github.com/d3/d3-brush/blob/master/README.md#brush). Brushes are no longer dependent on [scales](#scales-d3-scale); instead, each brush defines a selection in screen coordinates. This selection can be [inverted](https://github.com/d3/d3-scale/blob/master/README.md#continuous_invert) if you want to compute the corresponding data domain. And rather than rely on the scales’ ranges to determine the brushable area, there is now a [*brush*.extent](https://github.com/d3/d3-brush/blob/master/README.md#brush_extent) method for setting it. If you do not set the brush extent, it defaults to the full extent of the owner SVG element. The *brush*.clamp method has also been eliminated; brushing is always restricted to the brushable area defined by the brush extent. Brushes no longer store the active brush selection (*i.e.*, the highlighted region; the brush’s position) internally. The brush’s position is now stored on any elements to which the brush has been applied. The brush’s position is available as *event*.selection within a brush event or by calling [d3.brushSelection](https://github.com/d3/d3-brush/blob/master/README.md#brushSelection) on a given *element*. To move the brush programmatically, use [*brush*.move](https://github.com/d3/d3-brush/blob/master/README.md#brush_move) with a given [selection](#selections-d3-selection) or [transition](#transitions-d3-transition); see the [brush snapping example](https://bl.ocks.org/mbostock/6232537). The *brush*.event method has been removed. Brush interaction has been improved. By default, brushes now ignore right-clicks intended for the context menu; you can change this behavior using [*brush*.filter](https://github.com/d3/d3-brush/blob/master/README.md#brush_filter). Brushes also ignore emulated mouse events on iOS. Holding down SHIFT (⇧) while brushing locks the *x*- or *y*-position of the brush. Holding down META (⌘) while clicking and dragging starts a new selection, rather than translating the existing selection. The default appearance of the brush has also been improved and slightly simplified. Previously it was necessary to apply styles to the brush to give it a reasonable appearance, such as: ```css .brush .extent { stroke: #fff; fill-opacity: .125; shape-rendering: crispEdges; } ``` These styles are now applied by default as attributes; if you want to customize the brush appearance, you can still apply external styles or modify the brush elements. (D3 4.0 features a similar improvement to [axes](#axes-d3-axis).) A new [*brush*.handleSize](https://github.com/d3/d3-brush/blob/master/README.md#brush_handleSize) method lets you override the brush handle size; it defaults to six pixels. The brush now consumes handled events, making it easier to combine with other interactive behaviors such as [dragging](#dragging-d3-drag) and [zooming](#zooming-d3-zoom). The *brushstart* and *brushend* events have been renamed to *start* and *end*, respectively. The brush event no longer reports a *event*.mode to distinguish between resizing and dragging the brush. ## [Chords (d3-chord)](https://github.com/d3/d3-chord/blob/master/README.md) Pursuant to the great namespace flattening: * d3.layout.chord ↦ [d3.chord](https://github.com/d3/d3-chord/blob/master/README.md#chord) * d3.svg.chord ↦ [d3.ribbon](https://github.com/d3/d3-chord/blob/master/README.md#ribbon) For consistency with [*arc*.padAngle](https://github.com/d3/d3-shape/blob/master/README.md#arc_padAngle), *chord*.padding has also been renamed to [*ribbon*.padAngle](https://github.com/d3/d3-chord/blob/master/README.md#ribbon_padAngle). A new [*ribbon*.context](https://github.com/d3/d3-chord/blob/master/README.md#ribbon_context) method lets you render chord diagrams to Canvas! See also [d3-path](#paths-d3-path). ## [Collections (d3-collection)](https://github.com/d3/d3-collection/blob/master/README.md) The [d3.set](https://github.com/d3/d3-collection/blob/master/README.md#set) constructor now accepts an existing set for making a copy. If you pass an array to d3.set, you can also pass a value accessor. This accessor takes the standard arguments: the current element (*d*), the index (*i*), and the array (*data*), with *this* undefined. For example: ```js var yields = [ {yield: 22.13333, variety: "Manchuria", year: 1932, site: "Grand Rapids"}, {yield: 26.76667, variety: "Peatland", year: 1932, site: "Grand Rapids"}, {yield: 28.10000, variety: "No. 462", year: 1931, site: "Duluth"}, {yield: 38.50000, variety: "Svansota", year: 1932, site: "Waseca"}, {yield: 40.46667, variety: "Svansota", year: 1931, site: "Crookston"}, {yield: 36.03333, variety: "Peatland", year: 1932, site: "Waseca"}, {yield: 34.46667, variety: "Wisconsin No. 38", year: 1931, site: "Grand Rapids"} ]; var sites = d3.set(yields, function(d) { return d.site; }); // Grand Rapids, Duluth, Waseca, Crookston ``` The [d3.map](https://github.com/d3/d3-collection/blob/master/README.md#map) constructor also follows the standard array accessor argument pattern. The *map*.forEach and *set*.forEach methods have been renamed to [*map*.each](https://github.com/d3/d3-collection/blob/master/README.md#map_each) and [*set*.each](https://github.com/d3/d3-collection/blob/master/README.md#set_each) respectively. The order of arguments for *map*.each has also been changed to *value*, *key* and *map*, while the order of arguments for *set*.each is now *value*, *value* and *set*. This is closer to ES6 [*map*.forEach](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/forEach) and [*set*.forEach](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/forEach). Also like ES6 Map and Set, *map*.set and *set*.add now return the current collection (rather than the added value) to facilitate method chaining. New [*map*.clear](https://github.com/d3/d3-collection/blob/master/README.md#map_clear) and [*set*.clear](https://github.com/d3/d3-collection/blob/master/README.md#set_clear) methods can be used to empty collections. The [*nest*.map](https://github.com/d3/d3-collection/blob/master/README.md#nest_map) method now always returns a d3.map instance. For a plain object, use [*nest*.object](https://github.com/d3/d3-collection/blob/master/README.md#nest_object) instead. When used in conjunction with [*nest*.rollup](https://github.com/d3/d3-collection/blob/master/README.md#nest_rollup), [*nest*.entries](https://github.com/d3/d3-collection/blob/master/README.md#nest_entries) now returns {key, value} objects for the leaf entries, instead of {key, values}. This makes *nest*.rollup easier to use in conjunction with [hierarchies](#hierarchies-d3-hierarchy), as in this [Nest Treemap example](https://bl.ocks.org/mbostock/2838bf53e0e65f369f476afd653663a2). ## [Colors (d3-color)](https://github.com/d3/d3-color/blob/master/README.md) All colors now have opacity exposed as *color*.opacity, which is a number in [0, 1]. You can pass an optional opacity argument to the color space constructors [d3.rgb](https://github.com/d3/d3-color/blob/master/README.md#rgb), [d3.hsl](https://github.com/d3/d3-color/blob/master/README.md#hsl), [d3.lab](https://github.com/d3/d3-color/blob/master/README.md#lab), [d3.hcl](https://github.com/d3/d3-color/blob/master/README.md#hcl) or [d3.cubehelix](https://github.com/d3/d3-color/blob/master/README.md#cubehelix). You can now parse rgba(…) and hsla(…) CSS color specifiers or the string “transparent” using [d3.color](https://github.com/d3/d3-color/blob/master/README.md#color). The “transparent” color is defined as an RGB color with zero opacity and undefined red, green and blue channels; this differs slightly from CSS which defines it as transparent black, but is useful for simplifying color interpolation logic where either the starting or ending color has undefined channels. The [*color*.toString](https://github.com/d3/d3-color/blob/master/README.md#color_toString) method now likewise returns an rgb(…) or rgba(…) string with integer channel values, not the hexadecimal RGB format, consistent with CSS computed values. This improves performance by short-circuiting transitions when the element’s starting style matches its ending style. The new [d3.color](https://github.com/d3/d3-color/blob/master/README.md#color) method is the primary method for parsing colors: it returns a d3.color instance in the appropriate color space, or null if the CSS color specifier is invalid. For example: ```js var red = d3.color("hsl(0, 80%, 50%)"); // {h: 0, l: 0.5, s: 0.8, opacity: 1} ``` The parsing implementation is now more robust. For example, you can no longer mix integers and percentages in rgb(…), and it correctly handles whitespace, decimal points, number signs, and other edge cases. The color space constructors d3.rgb, d3.hsl, d3.lab, d3.hcl and d3.cubehelix now always return a copy of the input color, converted to the corresponding color space. While [*color*.rgb](https://github.com/d3/d3-color/blob/master/README.md#color_rgb) remains, *rgb*.hsl has been removed; use d3.hsl to convert a color to the RGB color space. The RGB color space no longer greedily quantizes and clamps channel values when creating colors, improving accuracy in color space conversion. Quantization and clamping now occurs in *color*.toString when formatting a color for display. You can use the new [*color*.displayable](https://github.com/d3/d3-color/blob/master/README.md#color_displayable) to test whether a color is [out-of-gamut](https://en.wikipedia.org/wiki/Gamut). The [*rgb*.brighter](https://github.com/d3/d3-color/blob/master/README.md#rgb_brighter) method no longer special-cases black. This is a multiplicative operator, defining a new color *r*′, *g*′, *b*′ where *r*′ = *r* × *pow*(0.7, *k*), *g*′ = *g* × *pow*(0.7, *k*) and *b*′ = *b* × *pow*(0.7, *k*); a brighter black is still black. There’s a new [d3.cubehelix](https://github.com/d3/d3-color/blob/master/README.md#cubehelix) color space, generalizing Dave Green’s color scheme! (See also [d3.interpolateCubehelixDefault](https://github.com/d3/d3-scale/blob/master/README.md#interpolateCubehelixDefault) from [d3-scale](#scales-d3-scale).) You can continue to define your own custom color spaces, too; see [d3-hsv](https://github.com/d3/d3-hsv) for an example. ## [Dispatches (d3-dispatch)](https://github.com/d3/d3-dispatch/blob/master/README.md) Rather than decorating the *dispatch* object with each event type, the dispatch object now exposes generic [*dispatch*.call](https://github.com/d3/d3-dispatch/blob/master/README.md#dispatch_call) and [*dispatch*.apply](https://github.com/d3/d3-dispatch/blob/master/README.md#dispatch_apply) methods which take the *type* string as the first argument. For example, in D3 3.x, you might say: ```js dispatcher.foo.call(that, "Hello, Foo!"); ``` To dispatch a *foo* event in D3 4.0, you’d say: ```js dispatcher.call("foo", that, "Hello, Foo!"); ``` The [*dispatch*.on](https://github.com/d3/d3-dispatch/blob/master/README.md#dispatch_on) method now accepts multiple typenames, allowing you to add or remove listeners for multiple events simultaneously. For example, to send both *foo* and *bar* events to the same listener: ```js dispatcher.on("foo bar", function(message) { console.log(message); }); ``` This matches the new behavior of [*selection*.on](https://github.com/d3/d3-selection/blob/master/README.md#selection_on) in [d3-selection](#selections-d3-selection). The *dispatch*.on method now validates that the specifier *listener* is a function, rather than throwing an error in the future. The new implementation d3.dispatch is faster, using fewer closures to improve performance. There’s also a new [*dispatch*.copy](https://github.com/d3/d3-dispatch/blob/master/README.md#dispatch_copy) method for making a copy of a dispatcher; this is used by [d3-transition](#transitions-d3-transition) to improve the performance of transitions in the common case where all elements in a transition have the same transition event listeners. ## [Dragging (d3-drag)](https://github.com/d3/d3-drag/blob/master/README.md) The drag behavior d3.behavior.drag has been renamed to d3.drag. The *drag*.origin method has been replaced by [*drag*.subject](https://github.com/d3/d3-drag/blob/master/README.md#drag_subject), which allows you to define the thing being dragged at the start of a drag gesture. This is particularly useful with Canvas, where draggable objects typically share a Canvas element (as opposed to SVG, where draggable objects typically have distinct DOM elements); see the [circle dragging example](https://bl.ocks.org/mbostock/444757cc9f0fde320a5f469cd36860f4). A new [*drag*.container](https://github.com/d3/d3-drag/blob/master/README.md#drag_container) method lets you override the parent element that defines the drag gesture coordinate system. This defaults to the parent node of the element to which the drag behavior was applied. For dragging on Canvas elements, you probably want to use the Canvas element as the container. [Drag events](https://github.com/d3/d3-drag/blob/master/README.md#drag-events) now expose an [*event*.on](https://github.com/d3/d3-drag/blob/master/README.md#event_on) method for registering temporary listeners for duration of the current drag gesture; these listeners can capture state for the current gesture, such as the thing being dragged. A new *event*.active property lets you detect whether multiple (multitouch) drag gestures are active concurrently. The *dragstart* and *dragend* events have been renamed to *start* and *end*. By default, drag behaviors now ignore right-clicks intended for the context menu; use [*drag*.filter](https://github.com/d3/d3-drag/blob/master/README.md#drag_filter) to control which events are ignored. The drag behavior also ignores emulated mouse events on iOS. The drag behavior now consumes handled events, making it easier to combine with other interactive behaviors such as [zooming](#zooming-d3-zoom). The new [d3.dragEnable](https://github.com/d3/d3-drag/blob/master/README.md#dragEnable) and [d3.dragDisable](https://github.com/d3/d3-drag/blob/master/README.md#dragDisable) methods provide a low-level API for implementing drag gestures across browsers and devices. These methods are also used by other D3 components, such as the [brush](#brushes-d3-brush). ## [Delimiter-Separated Values (d3-dsv)](https://github.com/d3/d3-dsv/blob/master/README.md) Pursuant to the great namespace flattening, various CSV and TSV methods have new names: * d3.csv.parse ↦ [d3.csvParse](https://github.com/d3/d3-dsv/blob/master/README.md#csvParse) * d3.csv.parseRows ↦ [d3.csvParseRows](https://github.com/d3/d3-dsv/blob/master/README.md#csvParseRows) * d3.csv.format ↦ [d3.csvFormat](https://github.com/d3/d3-dsv/blob/master/README.md#csvFormat) * d3.csv.formatRows ↦ [d3.csvFormatRows](https://github.com/d3/d3-dsv/blob/master/README.md#csvFormatRows) * d3.tsv.parse ↦ [d3.tsvParse](https://github.com/d3/d3-dsv/blob/master/README.md#tsvParse) * d3.tsv.parseRows ↦ [d3.tsvParseRows](https://github.com/d3/d3-dsv/blob/master/README.md#tsvParseRows) * d3.tsv.format ↦ [d3.tsvFormat](https://github.com/d3/d3-dsv/blob/master/README.md#tsvFormat) * d3.tsv.formatRows ↦ [d3.tsvFormatRows](https://github.com/d3/d3-dsv/blob/master/README.md#tsvFormatRows) The [d3.csv](https://github.com/d3/d3-request/blob/master/README.md#csv) and [d3.tsv](https://github.com/d3/d3-request/blob/master/README.md#tsv) methods for loading files of the corresponding formats have not been renamed, however! Those are defined in [d3-request](#requests-d3-request).There’s no longer a d3.dsv method, which served the triple purpose of defining a DSV formatter, a DSV parser and a DSV requestor; instead, there’s just [d3.dsvFormat](https://github.com/d3/d3-dsv/blob/master/README.md#dsvFormat) which you can use to define a DSV formatter and parser. You can use [*request*.response](https://github.com/d3/d3-request/blob/master/README.md#request_response) to make a request and then parse the response body, or just use [d3.text](https://github.com/d3/d3-request/blob/master/README.md#text). The [*dsv*.parse](https://github.com/d3/d3-dsv/blob/master/README.md#dsv_parse) method now exposes the column names and their input order as *data*.columns. For example: ```js d3.csv("cars.csv", function(error, data) { if (error) throw error; console.log(data.columns); // ["Year", "Make", "Model", "Length"] }); ``` You can likewise pass an optional array of column names to [*dsv*.format](https://github.com/d3/d3-dsv/blob/master/README.md#dsv_format) to format only a subset of columns, or to specify the column order explicitly: ```js var string = d3.csvFormat(data, ["Year", "Model", "Length"]); ``` The parser is a bit faster and the formatter is a bit more robust: inputs are coerced to strings before formatting, fixing an obscure crash, and deprecated support for falling back to [*dsv*.formatRows](https://github.com/d3/d3-dsv/blob/master/README.md#dsv_formatRows) when the input *data* is an array of arrays has been removed. ## [Easings (d3-ease)](https://github.com/d3/d3-ease/blob/master/README.md) D3 3.x used strings, such as “cubic-in-out”, to identify easing methods; these strings could be passed to d3.ease or *transition*.ease. D3 4.0 uses symbols instead, such as [d3.easeCubicInOut](https://github.com/d3/d3-ease/blob/master/README.md#easeCubicInOut). Symbols are simpler and cleaner. They work well with Rollup to produce smaller custom bundles. You can still define your own custom easing function, too, if desired. Here’s the full list of equivalents: * linear ↦ [d3.easeLinear](https://github.com/d3/d3-ease/blob/master/README.md#easeLinear)¹ * linear-in ↦ [d3.easeLinear](https://github.com/d3/d3-ease/blob/master/README.md#easeLinear)¹ * linear-out ↦ [d3.easeLinear](https://github.com/d3/d3-ease/blob/master/README.md#easeLinear)¹ * linear-in-out ↦ [d3.easeLinear](https://github.com/d3/d3-ease/blob/master/README.md#easeLinear)¹ * linear-out-in ↦ [d3.easeLinear](https://github.com/d3/d3-ease/blob/master/README.md#easeLinear)¹ * poly-in ↦ [d3.easePolyIn](https://github.com/d3/d3-ease/blob/master/README.md#easePolyIn) * poly-out ↦ [d3.easePolyOut](https://github.com/d3/d3-ease/blob/master/README.md#easePolyOut) * poly-in-out ↦ [d3.easePolyInOut](https://github.com/d3/d3-ease/blob/master/README.md#easePolyInOut) * poly-out-in ↦ REMOVED² * quad-in ↦ [d3.easeQuadIn](https://github.com/d3/d3-ease/blob/master/README.md#easeQuadIn) * quad-out ↦ [d3.easeQuadOut](https://github.com/d3/d3-ease/blob/master/README.md#easeQuadOut) * quad-in-out ↦ [d3.easeQuadInOut](https://github.com/d3/d3-ease/blob/master/README.md#easeQuadInOut) * quad-out-in ↦ REMOVED² * cubic-in ↦ [d3.easeCubicIn](https://github.com/d3/d3-ease/blob/master/README.md#easeCubicIn) * cubic-out ↦ [d3.easeCubicOut](https://github.com/d3/d3-ease/blob/master/README.md#easeCubicOut) * cubic-in-out ↦ [d3.easeCubicInOut](https://github.com/d3/d3-ease/blob/master/README.md#easeCubicInOut) * cubic-out-in ↦ REMOVED² * sin-in ↦ [d3.easeSinIn](https://github.com/d3/d3-ease/blob/master/README.md#easeSinIn) * sin-out ↦ [d3.easeSinOut](https://github.com/d3/d3-ease/blob/master/README.md#easeSinOut) * sin-in-out ↦ [d3.easeSinInOut](https://github.com/d3/d3-ease/blob/master/README.md#easeSinInOut) * sin-out-in ↦ REMOVED² * exp-in ↦ [d3.easeExpIn](https://github.com/d3/d3-ease/blob/master/README.md#easeExpIn) * exp-out ↦ [d3.easeExpOut](https://github.com/d3/d3-ease/blob/master/README.md#easeExpOut) * exp-in-out ↦ [d3.easeExpInOut](https://github.com/d3/d3-ease/blob/master/README.md#easeExpInOut) * exp-out-in ↦ REMOVED² * circle-in ↦ [d3.easeCircleIn](https://github.com/d3/d3-ease/blob/master/README.md#easeCircleIn) * circle-out ↦ [d3.easeCircleOut](https://github.com/d3/d3-ease/blob/master/README.md#easeCircleOut) * circle-in-out ↦ [d3.easeCircleInOut](https://github.com/d3/d3-ease/blob/master/README.md#easeCircleInOut) * circle-out-in ↦ REMOVED² * elastic-in ↦ [d3.easeElasticOut](https://github.com/d3/d3-ease/blob/master/README.md#easeElasticOut)² * elastic-out ↦ [d3.easeElasticIn](https://github.com/d3/d3-ease/blob/master/README.md#easeElasticIn)² * elastic-in-out ↦ REMOVED² * elastic-out-in ↦ [d3.easeElasticInOut](https://github.com/d3/d3-ease/blob/master/README.md#easeElasticInOut)² * back-in ↦ [d3.easeBackIn](https://github.com/d3/d3-ease/blob/master/README.md#easeBackIn) * back-out ↦ [d3.easeBackOut](https://github.com/d3/d3-ease/blob/master/README.md#easeBackOut) * back-in-out ↦ [d3.easeBackInOut](https://github.com/d3/d3-ease/blob/master/README.md#easeBackInOut) * back-out-in ↦ REMOVED² * bounce-in ↦ [d3.easeBounceOut](https://github.com/d3/d3-ease/blob/master/README.md#easeBounceOut)² * bounce-out ↦ [d3.easeBounceIn](https://github.com/d3/d3-ease/blob/master/README.md#easeBounceIn)² * bounce-in-out ↦ REMOVED² * bounce-out-in ↦ [d3.easeBounceInOut](https://github.com/d3/d3-ease/blob/master/README.md#easeBounceInOut)² ¹ The -in, -out and -in-out variants of linear easing are identical, so there’s just d3.easeLinear.
² Elastic and bounce easing were inadvertently reversed in 3.x, so 4.0 eliminates -out-in easing! For convenience, there are also default aliases for each easing method. For example, [d3.easeCubic](https://github.com/d3/d3-ease/blob/master/README.md#easeCubic) is an alias for [d3.easeCubicInOut](https://github.com/d3/d3-ease/blob/master/README.md#easeCubicInOut). Most default to -in-out; the exceptions are [d3.easeBounce](https://github.com/d3/d3-ease/blob/master/README.md#easeBounce) and [d3.easeElastic](https://github.com/d3/d3-ease/blob/master/README.md#easeElastic), which default to -out. Rather than pass optional arguments to d3.ease or *transition*.ease, parameterizable easing functions now have named parameters: [*poly*.exponent](https://github.com/d3/d3-ease/blob/master/README.md#poly_exponent), [*elastic*.amplitude](https://github.com/d3/d3-ease/blob/master/README.md#elastic_amplitude), [*elastic*.period](https://github.com/d3/d3-ease/blob/master/README.md#elastic_period) and [*back*.overshoot](https://github.com/d3/d3-ease/blob/master/README.md#back_overshoot). For example, in D3 3.x you might say: ```js var e = d3.ease("elastic-out-in", 1.2); ``` The equivalent in D3 4.0 is: ```js var e = d3.easeElastic.amplitude(1.2); ``` Many of the easing functions have been optimized for performance and accuracy. Several bugs have been fixed, as well, such as the interpretation of the overshoot parameter for back easing, and the period parameter for elastic easing. Also, [d3-transition](#transitions-d3-transition) now explicitly guarantees that the last tick of the transition happens at exactly *t* = 1, avoiding floating point errors in some easing functions. There’s now a nice [visual reference](https://github.com/d3/d3-ease/blob/master/README.md) and an [animated reference](https://bl.ocks.org/mbostock/248bac3b8e354a9103c4) to the new easing functions, too! ## [Forces (d3-force)](https://github.com/d3/d3-force/blob/master/README.md) The force layout d3.layout.force has been renamed to d3.forceSimulation. The force simulation now uses [velocity Verlet integration](https://en.wikipedia.org/wiki/Verlet_integration#Velocity_Verlet) rather than position Verlet, tracking the nodes’ positions (*node*.x, *node*.y) and velocities (*node*.vx, *node*.vy) rather than their previous positions (*node*.px, *node*.py). Rather than hard-coding a set of built-in forces, the force simulation is now extensible: you specify which forces you want! The approach affords greater flexibility through composition. The new forces are more flexible, too: force parameters can typically be configured per-node or per-link. There are separate positioning forces for [*x*](https://github.com/d3/d3-force/blob/master/README.md#forceX) and [*y*](https://github.com/d3/d3-force/blob/master/README.md#forceY) that replace *force*.gravity; [*x*.x](https://github.com/d3/d3-force/blob/master/README.md#x_x) and [*y*.y](https://github.com/d3/d3-force/blob/master/README.md#y_y) replace *force*.size. The new [link force](https://github.com/d3/d3-force/blob/master/README.md#forceLink) replaces *force*.linkStrength and employs better default heuristics to improve stability. The new [many-body force](https://github.com/d3/d3-force/blob/master/README.md#forceManyBody) replaces *force*.charge and supports a new [minimum-distance parameter](https://github.com/d3/d3-force/blob/master/README.md#manyBody_distanceMin) and performance improvements thanks to 4.0’s [new quadtrees](#quadtrees-d3-quadtree). There are also brand-new forces for [centering nodes](https://github.com/d3/d3-force/blob/master/README.md#forceCenter) and [collision resolution](https://github.com/d3/d3-force/blob/master/README.md#forceCollision). The new forces and simulation have been carefully crafted to avoid nondeterminism. Rather than initializing nodes randomly, if the nodes do not have preset positions, they are placed in a phyllotaxis pattern: Phyllotaxis Random jitter is still needed to resolve link, collision and many-body forces if there are coincident nodes, but at least in the common case, the force simulation (and the resulting force-directed graph layout) is now consistent across browsers and reloads. D3 no longer plays dice! The force simulation has several new methods for greater control over heating, such as [*simulation*.alphaMin](https://github.com/d3/d3-force/blob/master/README.md#simulation_alphaMin) and [*simulation*.alphaDecay](https://github.com/d3/d3-force/blob/master/README.md#simulation_alphaDecay), and the internal timer. Calling [*simulation*.alpha](https://github.com/d3/d3-force/blob/master/README.md#simulation_alpha) now has no effect on the internal timer, which is controlled independently via [*simulation*.stop](https://github.com/d3/d3-force/blob/master/README.md#simulation_stop) and [*simulation*.restart](https://github.com/d3/d3-force/blob/master/README.md#simulation_restart). The force layout’s internal timer now starts automatically on creation, removing *force*.start. As in 3.x, you can advance the simulation manually using [*simulation*.tick](https://github.com/d3/d3-force/blob/master/README.md#simulation_tick). The *force*.friction parameter is replaced by *simulation*.velocityDecay. A new [*simulation*.alphaTarget](https://github.com/d3/d3-force/blob/master/README.md#simulation_alphaTarget) method allows you to set the desired alpha (temperature) of the simulation, such that the simulation can be smoothly reheated during interaction, and then smoothly cooled again. This improves the stability of the graph during interaction. The force layout no longer depends on the [drag behavior](#dragging-d3-drag), though you can certainly create [draggable force-directed graphs](https://bl.ocks.org/mbostock/ad70335eeef6d167bc36fd3c04378048)! Set *node*.fx and *node*.fy to fix a node’s position. As an alternative to a [Voronoi](#voronoi-d3-voronoi) SVG overlay, you can now use [*simulation*.find](https://github.com/d3/d3-force/blob/master/README.md#simulation_find) to find the closest node to a pointer. ## [Number Formats (d3-format)](https://github.com/d3/d3-format/blob/master/README.md) If a precision is not specified, the formatting behavior has changed: there is now a default precision of 6 for all directives except *none*, which defaults to 12. In 3.x, if you did not specify a precision, the number was formatted using its shortest unique representation (per [*number*.toString](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toString)); this could lead to unexpected digits due to [floating point math](http://0.30000000000000004.com/). The new default precision in 4.0 produces more consistent results: ```js var f = d3.format("e"); f(42); // "4.200000e+1" f(0.1 + 0.2); // "3.000000e-1" ``` To trim insignificant trailing zeroes, use the *none* directive, which is similar `g`. For example: ```js var f = d3.format(".3"); f(0.12345); // "0.123" f(0.10000); // "0.1" f(0.1 + 0.2); // "0.3" ``` Under the hood, number formatting has improved accuracy with very large and very small numbers by using [*number*.toExponential](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toExponential) rather than [Math.log](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/log) to extract the mantissa and exponent. Negative zero (-0, an IEEE 754 construct) and very small numbers that round to zero are now formatted as unsigned zero. The inherently unsafe d3.round method has been removed, along with d3.requote. The [d3.formatPrefix](https://github.com/d3/d3-format/blob/master/README.md#formatPrefix) method has been changed. Rather than returning an SI-prefix string, it returns an SI-prefix format function for a given *specifier* and reference *value*. For example, to format thousands: ```js var f = d3.formatPrefix(",.0", 1e3); f(1e3); // "1k" f(1e4); // "10k" f(1e5); // "100k" f(1e6); // "1,000k" ``` Unlike the `s` format directive, d3.formatPrefix always employs the same SI-prefix, producing consistent results: ```js var f = d3.format(".0s"); f(1e3); // "1k" f(1e4); // "10k" f(1e5); // "100k" f(1e6); // "1M" ``` The new `(` sign option uses parentheses for negative values. This is particularly useful in conjunction with `$`. For example: ```js d3.format("+.0f")(-42); // "-42" d3.format("(.0f")(-42); // "(42)" d3.format("+$.0f")(-42); // "-$42" d3.format("($.0f")(-42); // "($42)" ``` The new `=` align option places any sign and symbol to the left of any padding: ```js d3.format(">6d")(-42); // " -42" d3.format("=6d")(-42); // "- 42" d3.format(">(6d")(-42); // " (42)" d3.format("=(6d")(-42); // "( 42)" ``` The `b`, `o`, `d` and `x` directives now round to the nearest integer, rather than returning the empty string for non-integers: ```js d3.format("b")(41.9); // "101010" d3.format("o")(41.9); // "52" d3.format("d")(41.9); // "42" d3.format("x")(41.9); // "2a" ``` The `c` directive is now for character data (*i.e.*, literal strings), not for character codes. The is useful if you just want to apply padding and alignment and don’t care about formatting numbers. For example, the infamous [left-pad](http://blog.npmjs.org/post/141577284765/kik-left-pad-and-npm) (as well as center- and right-pad!) can be conveniently implemented as: ```js d3.format(">10c")("foo"); // " foo" d3.format("^10c")("foo"); // " foo " d3.format("<10c")("foo"); // "foo " ``` There are several new methods for computing suggested decimal precisions; these are used by [d3-scale](#scales-d3-scale) for tick formatting, and are helpful for implementing custom number formats: [d3.precisionFixed](https://github.com/d3/d3-format/blob/master/README.md#precisionFixed), [d3.precisionPrefix](https://github.com/d3/d3-format/blob/master/README.md#precisionPrefix) and [d3.precisionRound](https://github.com/d3/d3-format/blob/master/README.md#precisionRound). There’s also a new [d3.formatSpecifier](https://github.com/d3/d3-format/blob/master/README.md#formatSpecifier) method for parsing, validating and debugging format specifiers; it’s also good for deriving related format specifiers, such as when you want to substitute the precision automatically. You can now set the default locale using [d3.formatDefaultLocale](https://github.com/d3/d3-format/blob/master/README.md#formatDefaultLocale)! The locales are published as [JSON](https://github.com/d3/d3-request/blob/master/README.md#json) to [npm](https://unpkg.com/d3-format/locale/). ## [Geographies (d3-geo)](https://github.com/d3/d3-geo/blob/master/README.md) Pursuant to the great namespace flattening, various methods have new names: * d3.geo.graticule ↦ [d3.geoGraticule](https://github.com/d3/d3-geo/blob/master/README.md#geoGraticule) * d3.geo.circle ↦ [d3.geoCircle](https://github.com/d3/d3-geo/blob/master/README.md#geoCircle) * d3.geo.area ↦ [d3.geoArea](https://github.com/d3/d3-geo/blob/master/README.md#geoArea) * d3.geo.bounds ↦ [d3.geoBounds](https://github.com/d3/d3-geo/blob/master/README.md#geoBounds) * d3.geo.centroid ↦ [d3.geoCentroid](https://github.com/d3/d3-geo/blob/master/README.md#geoCentroid) * d3.geo.distance ↦ [d3.geoDistance](https://github.com/d3/d3-geo/blob/master/README.md#geoDistance) * d3.geo.interpolate ↦ [d3.geoInterpolate](https://github.com/d3/d3-geo/blob/master/README.md#geoInterpolate) * d3.geo.length ↦ [d3.geoLength](https://github.com/d3/d3-geo/blob/master/README.md#geoLength) * d3.geo.rotation ↦ [d3.geoRotation](https://github.com/d3/d3-geo/blob/master/README.md#geoRotation) * d3.geo.stream ↦ [d3.geoStream](https://github.com/d3/d3-geo/blob/master/README.md#geoStream) * d3.geo.path ↦ [d3.geoPath](https://github.com/d3/d3-geo/blob/master/README.md#geoPath) * d3.geo.projection ↦ [d3.geoProjection](https://github.com/d3/d3-geo/blob/master/README.md#geoProjection) * d3.geo.projectionMutator ↦ [d3.geoProjectionMutator](https://github.com/d3/d3-geo/blob/master/README.md#geoProjectionMutator) * d3.geo.albers ↦ [d3.geoAlbers](https://github.com/d3/d3-geo/blob/master/README.md#geoAlbers) * d3.geo.albersUsa ↦ [d3.geoAlbersUsa](https://github.com/d3/d3-geo/blob/master/README.md#geoAlbersUsa) * d3.geo.azimuthalEqualArea ↦ [d3.geoAzimuthalEqualArea](https://github.com/d3/d3-geo/blob/master/README.md#geoAzimuthalEqualArea) * d3.geo.azimuthalEquidistant ↦ [d3.geoAzimuthalEquidistant](https://github.com/d3/d3-geo/blob/master/README.md#geoAzimuthalEquidistant) * d3.geo.conicConformal ↦ [d3.geoConicConformal](https://github.com/d3/d3-geo/blob/master/README.md#geoConicConformal) * d3.geo.conicEqualArea ↦ [d3.geoConicEqualArea](https://github.com/d3/d3-geo/blob/master/README.md#geoConicEqualArea) * d3.geo.conicEquidistant ↦ [d3.geoConicEquidistant](https://github.com/d3/d3-geo/blob/master/README.md#geoConicEquidistant) * d3.geo.equirectangular ↦ [d3.geoEquirectangular](https://github.com/d3/d3-geo/blob/master/README.md#geoEquirectangular) * d3.geo.gnomonic ↦ [d3.geoGnomonic](https://github.com/d3/d3-geo/blob/master/README.md#geoGnomonic) * d3.geo.mercator ↦ [d3.geoMercator](https://github.com/d3/d3-geo/blob/master/README.md#geoMercator) * d3.geo.orthographic ↦ [d3.geoOrthographic](https://github.com/d3/d3-geo/blob/master/README.md#geoOrthographic) * d3.geo.stereographic ↦ [d3.geoStereographic](https://github.com/d3/d3-geo/blob/master/README.md#geoStereographic) * d3.geo.transverseMercator ↦ [d3.geoTransverseMercator](https://github.com/d3/d3-geo/blob/master/README.md#geoTransverseMercator) Also renamed for consistency: * *circle*.origin ↦ [*circle*.center](https://github.com/d3/d3-geo/blob/master/README.md#circle_center) * *circle*.angle ↦ [*circle*.radius](https://github.com/d3/d3-geo/blob/master/README.md#circle_radius) * *graticule*.majorExtent ↦ [*graticule*.extentMajor](https://github.com/d3/d3-geo/blob/master/README.md#graticule_extentMajor) * *graticule*.minorExtent ↦ [*graticule*.extentMinor](https://github.com/d3/d3-geo/blob/master/README.md#graticule_extentMinor) * *graticule*.majorStep ↦ [*graticule*.stepMajor](https://github.com/d3/d3-geo/blob/master/README.md#graticule_stepMajor) * *graticule*.minorStep ↦ [*graticule*.stepMinor](https://github.com/d3/d3-geo/blob/master/README.md#graticule_stepMinor) Projections now have more appropriate defaults. For example, [d3.geoOrthographic](https://github.com/d3/d3-geo/blob/master/README.md#geoOrthographic) has a 90° clip angle by default, showing only the front hemisphere, and [d3.geoGnomonic](https://github.com/d3/d3-geo/blob/master/README.md#geoGnomonic) has a default 60° clip angle. The default [projection](https://github.com/d3/d3-geo/blob/master/README.md#path_projection) for [d3.geoPath](https://github.com/d3/d3-geo/blob/master/README.md#geoPath) is now null rather than [d3.geoAlbersUsa](https://github.com/d3/d3-geo/blob/master/README.md#geoAlbersUsa); a null projection is used with [pre-projected geometry](https://bl.ocks.org/mbostock/5557726) and is typically faster to render. “Fallback projections”—when you pass a function rather than a projection to [*path*.projection](https://github.com/d3/d3-geo/blob/master/README.md#path_projection)—are no longer supported. For geographic projections, use [d3.geoProjection](https://github.com/d3/d3-geo/blob/master/README.md#geoProjection) or [d3.geoProjectionMutator](https://github.com/d3/d3-geo/blob/master/README.md#geoProjectionMutator) to define a custom projection. For arbitrary geometry transformations, implement the [stream interface](https://github.com/d3/d3-geo/blob/master/README.md#streams); see also [d3.geoTransform](https://github.com/d3/d3-geo/blob/master/README.md#geoTransform). The “raw” projections (e.g., d3.geo.equirectangular.raw) are no longer exported. ## [Hierarchies (d3-hierarchy)](https://github.com/d3/d3-hierarchy/blob/master/README.md) Pursuant to the great namespace flattening: * d3.layout.cluster ↦ [d3.cluster](https://github.com/d3/d3-hierarchy/blob/master/README.md#cluster) * d3.layout.hierarchy ↦ [d3.hierarchy](https://github.com/d3/d3-hierarchy/blob/master/README.md#hierarchy) * d3.layout.pack ↦ [d3.pack](https://github.com/d3/d3-hierarchy/blob/master/README.md#pack) * d3.layout.partition ↦ [d3.partition](https://github.com/d3/d3-hierarchy/blob/master/README.md#partition) * d3.layout.tree ↦ [d3.tree](https://github.com/d3/d3-hierarchy/blob/master/README.md#tree) * d3.layout.treemap ↦ [d3.treemap](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemap) As an alternative to using JSON to represent hierarchical data (such as the “flare.json format” used by many D3 examples), the new [d3.stratify](https://github.com/d3/d3-hierarchy/blob/master/README.md#stratify) operator simplifies the conversion of tabular data to hierarchical data! This is convenient if you already have data in a tabular format, such as the result of a SQL query or a CSV file: ``` name,parent Eve, Cain,Eve Seth,Eve Enos,Seth Noam,Seth Abel,Eve Awan,Eve Enoch,Awan Azura,Eve ``` To convert this to a root [*node*](https://github.com/d3/d3-hierarchy/blob/master/README.md#hierarchy): ```js var root = d3.stratify() .id(function(d) { return d.name; }) .parentId(function(d) { return d.parent; }) (nodes); ``` The resulting *root* can be passed to [d3.tree](https://github.com/d3/d3-hierarchy/blob/master/README.md#tree) to produce a tree diagram like this: Root nodes can also be created from JSON data using [d3.hierarchy](https://github.com/d3/d3-hierarchy/blob/master/README.md#hierarchy). The hierarchy layouts now take these root nodes as input rather than operating directly on JSON data, which helps to provide a cleaner separation between the input data and the computed layout. (For example, use [*node*.copy](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_copy) to isolate layout changes.) It also simplifies the API: rather than each hierarchy layout needing to implement value and sorting accessors, there are now generic [*node*.sum](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_sum) and [*node*.sort](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_sort) methods that work with any hierarchy layout. The new d3.hierarchy API also provides a richer set of methods for manipulating hierarchical data. For example, to generate an array of all nodes in topological order, use [*node*.descendants](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_descendants); for just leaf nodes, use [*node*.leaves](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_leaves). To highlight the ancestors of a given *node* on mouseover, use [*node*.ancestors](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_ancestors). To generate an array of {source, target} links for a given hierarchy, use [*node*.links](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_links); this replaces *treemap*.links and similar methods on the other layouts. The new [*node*.path](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_path) method replaces d3.layout.bundle; see also [d3.curveBundle](https://github.com/d3/d3-shape/blob/master/README.md#curveBundle) for hierarchical edge bundling. The hierarchy layouts have been rewritten using new, non-recursive traversal methods ([*node*.each](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_each), [*node*.eachAfter](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_eachAfter) and [*node*.eachBefore](https://github.com/d3/d3-hierarchy/blob/master/README.md#node_eachBefore)), improving performance on large datasets. The d3.tree layout no longer uses a *node*.\_ field to store temporary state during layout. Treemap tiling is now [extensible](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemap-tiling) via [*treemap*.tile](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemap_tile)! The default squarified tiling algorithm, [d3.treemapSquarify](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemapSquarify), has been completely rewritten, improving performance and fixing bugs in padding and rounding. The *treemap*.sticky method has been replaced with the [d3.treemapResquarify](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemapResquarify), which is identical to d3.treemapSquarify except it performs stable neighbor-preserving updates. The *treemap*.ratio method has been replaced with [*squarify*.ratio](https://github.com/d3/d3-hierarchy/blob/master/README.md#squarify_ratio). And there’s a new [d3.treemapBinary](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemapBinary) for binary treemaps! Treemap padding has also been improved. The treemap now distinguishes between [outer padding](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemap_paddingOuter) that separates a parent from its children, and [inner padding](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemap_paddingInner) that separates adjacent siblings. You can set the [top-](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemap_paddingTop), [right-](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemap_paddingRight), [bottom-](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemap_paddingBottom) and [left-](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemap_paddingLeft)outer padding separately. There are new examples for the traditional [nested treemap](https://bl.ocks.org/mbostock/911ad09bdead40ec0061) and for Lü and Fogarty’s [cascaded treemap](https://bl.ocks.org/mbostock/f85ffb3a5ac518598043). And there’s a new example demonstrating [d3.nest with d3.treemap](https://bl.ocks.org/mbostock/2838bf53e0e65f369f476afd653663a2). The space-filling layouts [d3.treemap](https://github.com/d3/d3-hierarchy/blob/master/README.md#treemap) and [d3.partition](https://github.com/d3/d3-hierarchy/blob/master/README.md#partition) now output *x0*, *x1*, *y0*, *y1* on each node instead of *x0*, *dx*, *y0*, *dy*. This improves accuracy by ensuring that the edges of adjacent cells are exactly equal, rather than sometimes being slightly off due to floating point math. The partition layout now supports [rounding](https://github.com/d3/d3-hierarchy/blob/master/README.md#partition_round) and [padding](https://github.com/d3/d3-hierarchy/blob/master/README.md#partition_padding). The circle-packing layout, [d3.pack](https://github.com/d3/d3-hierarchy/blob/master/README.md#pack), has been completely rewritten to better implement Wang et al.’s algorithm, fixing major bugs and improving results! Welzl’s algorithm is now used to compute the exact [smallest enclosing circle](https://bl.ocks.org/mbostock/29c534ff0b270054a01c) for each parent, rather than the approximate answer used by Wang et al. The 3.x output is shown on the left; 4.0 is shown on the right: Circle Packing in 3.x Circle Packing in 4.0 A non-hierarchical implementation is also available as [d3.packSiblings](https://github.com/d3/d3-hierarchy/blob/master/README.md#packSiblings), and the smallest enclosing circle implementation is available as [d3.packEnclose](https://github.com/d3/d3-hierarchy/blob/master/README.md#packEnclose). [Pack padding](https://github.com/d3/d3-hierarchy/blob/master/README.md#pack_padding) now applies between a parent and its children, as well as between adjacent siblings. In addition, you can now specify padding as a function that is computed dynamically for each parent. ## Internals The d3.rebind method has been removed. (See the [3.x source](https://github.com/d3/d3/blob/v3.5.17/src/core/rebind.js).) If you want to wrap a getter-setter method, the recommend pattern is to implement a wrapper method and check the return value. For example, given a *component* that uses an internal [*dispatch*](#dispatches-d3-dispatch), *component*.on can rebind *dispatch*.on as follows: ```js component.on = function() { var value = dispatch.on.apply(dispatch, arguments); return value === dispatch ? component : value; }; ``` The d3.functor method has been removed. (See the [3.x source](https://github.com/d3/d3/blob/v3.5.17/src/core/functor.js).) If you want to promote a constant value to a function, the recommended pattern is to implement a closure that returns the constant value. If desired, you can use a helper method as follows: ```js function constant(x) { return function() { return x; }; } ``` Given a value *x*, to promote *x* to a function if it is not already: ```js var fx = typeof x === "function" ? x : constant(x); ``` ## [Interpolators (d3-interpolate)](https://github.com/d3/d3-interpolate/blob/master/README.md) The [d3.interpolate](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolate) method no longer delegates to d3.interpolators, which has been removed; its behavior is now defined by the library. It is now slightly faster in the common case that *b* is a number. It only uses [d3.interpolateRgb](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateRgb) if *b* is a valid CSS color specifier (and not approximately one). And if the end value *b* is null, undefined, true or false, d3.interpolate now returns a constant function which always returns *b*. The behavior of [d3.interpolateObject](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateObject) and [d3.interpolateArray](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateArray) has changed slightly with respect to properties or elements in the start value *a* that do not exist in the end value *b*: these properties and elements are now ignored, such that the ending value of the interpolator at *t* = 1 is now precisely equal to *b*. So, in 3.x: ```js d3.interpolateObject({foo: 2, bar: 1}, {foo: 3})(0.5); // {bar: 1, foo: 2.5} in 3.x ``` Whereas in 4.0, *a*.bar is ignored: ```js d3.interpolateObject({foo: 2, bar: 1}, {foo: 3})(0.5); // {foo: 2.5} in 4.0 ``` If *a* or *b* are undefined or not an object, they are now implicitly converted to the empty object or empty array as appropriate, rather than throwing a TypeError. The d3.interpolateTransform interpolator has been renamed to [d3.interpolateTransformSvg](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateTransformSvg), and there is a new [d3.interpolateTransformCss](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateTransformCss) to interpolate CSS transforms! This allows [d3-transition](#transitions-d3-transition) to automatically interpolate both the SVG [transform attribute](https://www.w3.org/TR/SVG/coords.html#TransformAttribute) and the CSS [transform style property](https://www.w3.org/TR/css-transforms-1/#transform-property). (Note, however, that only 2D CSS transforms are supported.) The d3.transform method has been removed. Color space interpolators now interpolate opacity (see [d3-color](#colors-d3-color)) and return rgb(…) or rgba(…) CSS color specifier strings rather than using the RGB hexadecimal format. This is necessary to support opacity interpolation, but is also beneficial because it matches CSS computed values. When a channel in the start color *a* is undefined, color interpolators now use the corresponding channel value from the end color *b*, or *vice versa*. This logic previously applied to some channels (such as saturation in HSL), but now applies to all channels in all color spaces, and is especially useful when interpolating to or from transparent. There are now “long” versions of cylindrical color space interpolators: [d3.interpolateHslLong](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateHslLong), [d3.interpolateHclLong](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateHclLong) and [d3.interpolateCubehelixLong](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateCubehelixLong). These interpolators use linear interpolation of hue, rather than using the shortest path around the 360° hue circle. See [d3.interpolateRainbow](https://github.com/d3/d3-scale/blob/master/README.md#interpolateRainbow) for an example. The Cubehelix color space is now supported by [d3-color](#colors-d3-color), and so there are now [d3.interpolateCubehelix](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateCubehelix) and [d3.interpolateCubehelixLong](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateCubehelixLong) interpolators. [Gamma-corrected color interpolation](https://web.archive.org/web/20160112115812/http://www.4p8.com/eric.brasseur/gamma.html) is now supported for both RGB and Cubehelix color spaces as [*interpolate*.gamma](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolate_gamma). For example, to interpolate from purple to orange with a gamma of 2.2 in RGB space: ```js var interpolate = d3.interpolateRgb.gamma(2.2)("purple", "orange"); ``` There are new interpolators for uniform non-rational [B-splines](https://en.wikipedia.org/wiki/B-spline)! These are useful for smoothly interpolating between an arbitrary sequence of values from *t* = 0 to *t* = 1, such as to generate a smooth color gradient from a discrete set of colors. The [d3.interpolateBasis](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateBasis) and [d3.interpolateBasisClosed](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateBasisClosed) interpolators generate one-dimensional B-splines, while [d3.interpolateRgbBasis](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateRgbBasis) and [d3.interpolateRgbBasisClosed](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateRgbBasisClosed) generate three-dimensional B-splines through RGB color space. These are used by [d3-scale-chromatic](https://github.com/d3/d3-scale-chromatic) to generate continuous color scales from ColorBrewer’s discrete color schemes, such as [PiYG](https://bl.ocks.org/mbostock/048d21cf747371b11884f75ad896e5a5). There’s also now a [d3.quantize](https://github.com/d3/d3-interpolate/blob/master/README.md#quantize) method for generating uniformly-spaced discrete samples from a continuous interpolator. This is useful for taking one of the built-in color scales (such as [d3.interpolateViridis](https://github.com/d3/d3-scale/blob/master/README.md#interpolateViridis)) and quantizing it for use with [d3.scaleQuantize](https://github.com/d3/d3-scale/blob/master/README.md#scaleQuantize), [d3.scaleQuantile](https://github.com/d3/d3-scale/blob/master/README.md#scaleQuantile) or [d3.scaleThreshold](https://github.com/d3/d3-scale/blob/master/README.md#scaleThreshold). ## [Paths (d3-path)](https://github.com/d3/d3-path/blob/master/README.md) The [d3.path](https://github.com/d3/d3-path/blob/master/README.md#path) serializer implements the [CanvasPathMethods API](https://www.w3.org/TR/2dcontext/#canvaspathmethods), allowing you to write code that can render to either Canvas or SVG. For example, given some code that draws to a canvas: ```js function drawCircle(context, radius) { context.moveTo(radius, 0); context.arc(0, 0, radius, 0, 2 * Math.PI); } ``` You can render to SVG as follows: ```js var context = d3.path(); drawCircle(context, 40); pathElement.setAttribute("d", context.toString()); ``` The path serializer enables [d3-shape](#shapes-d3-shape) to support both Canvas and SVG; see [*line*.context](https://github.com/d3/d3-shape/blob/master/README.md#line_context) and [*area*.context](https://github.com/d3/d3-shape/blob/master/README.md#area_context), for example. ## [Polygons (d3-polygon)](https://github.com/d3/d3-polygon/blob/master/README.md) There’s no longer a d3.geom.polygon constructor; instead you just pass an array of vertices to the polygon methods. So instead of *polygon*.area and *polygon*.centroid, there’s [d3.polygonArea](https://github.com/d3/d3-polygon/blob/master/README.md#polygonArea) and [d3.polygonCentroid](https://github.com/d3/d3-polygon/blob/master/README.md#polygonCentroid). There are also new [d3.polygonContains](https://github.com/d3/d3-polygon/blob/master/README.md#polygonContains) and [d3.polygonLength](https://github.com/d3/d3-polygon/blob/master/README.md#polygonLength) methods. There’s no longer an equivalent to *polygon*.clip, but if [Sutherland–Hodgman clipping](https://en.wikipedia.org/wiki/Sutherland–Hodgman_algorithm) is needed, please [file a feature request](https://github.com/d3/d3-polygon/issues). The d3.geom.hull operator has been simplified: instead of an operator with *hull*.x and *hull*.y accessors, there’s just the [d3.polygonHull](https://github.com/d3/d3-polygon/blob/master/README.md#polygonHull) method which takes an array of points and returns the convex hull. ## [Quadtrees (d3-quadtree)](https://github.com/d3/d3-quadtree/blob/master/README.md) The d3.geom.quadtree method has been replaced by [d3.quadtree](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree). 4.0 removes the concept of quadtree “generators” (configurable functions that build a quadtree from an array of data); there are now just quadtrees, which you can create via d3.quadtree and add data to via [*quadtree*.add](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_add) and [*quadtree*.addAll](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_addAll). This code in 3.x: ```js var quadtree = d3.geom.quadtree() .extent([[0, 0], [width, height]]) (data); ``` Can be rewritten in 4.0 as: ```js var quadtree = d3.quadtree() .extent([[0, 0], [width, height]]) .addAll(data); ``` The new quadtree implementation is vastly improved! It is no longer recursive, avoiding stack overflows when there are large numbers of coincident points. The internal storage is now more efficient, and the implementation is also faster; constructing a quadtree of 1M normally-distributed points takes about one second in 4.0, as compared to three seconds in 3.x. The change in [internal *node* structure](https://github.com/d3/d3-quadtree/blob/master/README.md#nodes) affects [*quadtree*.visit](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_visit): use *node*.length to distinguish leaf nodes from internal nodes. For example, to iterate over all data in a quadtree: ```js quadtree.visit(function(node) { if (!node.length) { do { console.log(node.data); } while (node = node.next) } }); ``` There’s a new [*quadtree*.visitAfter](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_visitAfter) method for visiting nodes in post-order traversal. This feature is used in [d3-force](#forces-d3-force) to implement the [Barnes–Hut approximation](https://en.wikipedia.org/wiki/Barnes–Hut_simulation). You can now remove data from a quadtree using [*quadtree*.remove](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_remove) and [*quadtree*.removeAll](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_removeAll). When adding data to a quadtree, the quadtree will now expand its extent by repeated doubling if the new point is outside the existing extent of the quadtree. There are also [*quadtree*.extent](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_extent) and [*quadtree*.cover](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_cover) methods for explicitly expanding the extent of the quadtree after creation. Quadtrees support several new utility methods: [*quadtree*.copy](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_copy) returns a copy of the quadtree sharing the same data; [*quadtree*.data](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_data) generates an array of all data in the quadtree; [*quadtree*.size](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_size) returns the number of data points in the quadtree; and [*quadtree*.root](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_root) returns the root node, which is useful for manual traversal of the quadtree. The [*quadtree*.find](https://github.com/d3/d3-quadtree/blob/master/README.md#quadtree_find) method now takes an optional search radius, which is useful for pointer-based selection in [force-directed graphs](https://bl.ocks.org/mbostock/ad70335eeef6d167bc36fd3c04378048). ## [Queues (d3-queue)](https://github.com/d3/d3-queue/blob/master/README.md) Formerly known as Queue.js and queue-async, [d3.queue](https://github.com/d3/d3-queue) is now included in the default bundle, making it easy to load data files in parallel. It has been rewritten with fewer closures to improve performance, and there are now stricter checks in place to guarantee well-defined behavior. You can now use instanceof d3.queue and inspect the queue’s internal private state. ## [Random Numbers (d3-random)](https://github.com/d3/d3-random/blob/master/README.md) Pursuant to the great namespace flattening, the random number generators have new names: * d3.random.normal ↦ [d3.randomNormal](https://github.com/d3/d3-random/blob/master/README.md#randomNormal) * d3.random.logNormal ↦ [d3.randomLogNormal](https://github.com/d3/d3-random/blob/master/README.md#randomLogNormal) * d3.random.bates ↦ [d3.randomBates](https://github.com/d3/d3-random/blob/master/README.md#randomBates) * d3.random.irwinHall ↦ [d3.randomIrwinHall](https://github.com/d3/d3-random/blob/master/README.md#randomIrwinHall) There are also new random number generators for [exponential](https://github.com/d3/d3-random/blob/master/README.md#randomExponential) and [uniform](https://github.com/d3/d3-random/blob/master/README.md#randomUniform) distributions. The [normal](https://github.com/d3/d3-random/blob/master/README.md#randomNormal) and [log-normal](https://github.com/d3/d3-random/blob/master/README.md#randomLogNormal) random generators have been optimized. ## [Requests (d3-request)](https://github.com/d3/d3-request/blob/master/README.md) The d3.xhr method has been renamed to [d3.request](https://github.com/d3/d3-request/blob/master/README.md#request). Basic authentication is now supported using [*request*.user](https://github.com/d3/d3-request/blob/master/README.md#request_user) and [*request*.password](https://github.com/d3/d3-request/blob/master/README.md#request_password). You can now configure a timeout using [*request*.timeout](https://github.com/d3/d3-request/blob/master/README.md#request_timeout). If an error occurs, the corresponding [ProgressEvent](https://xhr.spec.whatwg.org/#interface-progressevent) of type “error” is now passed to the error listener, rather than the [XMLHttpRequest](https://xhr.spec.whatwg.org/#interface-xmlhttprequest). Likewise, the ProgressEvent is passed to progress event listeners, rather than using [d3.event](https://github.com/d3/d3-selection/blob/master/README.md#event). If [d3.xml](https://github.com/d3/d3-request/blob/master/README.md#xml) encounters an error parsing XML, this error is now reported to error listeners rather than returning a null response. The [d3.request](https://github.com/d3/d3-request/blob/master/README.md#request), [d3.text](https://github.com/d3/d3-request/blob/master/README.md#text) and [d3.xml](https://github.com/d3/d3-request/blob/master/README.md#xml) methods no longer take an optional mime type as the second argument; use [*request*.mimeType](https://github.com/d3/d3-request/blob/master/README.md#request_mimeType) instead. For example: ```js d3.xml("file.svg").mimeType("image/svg+xml").get(function(error, svg) { … }); ``` With the exception of [d3.html](https://github.com/d3/d3-request/blob/master/README.md#html) and [d3.xml](https://github.com/d3/d3-request/blob/master/README.md#xml), Node is now supported via [node-XMLHttpRequest](https://github.com/driverdan/node-XMLHttpRequest). ## [Scales (d3-scale)](https://github.com/d3/d3-scale/blob/master/README.md) Pursuant to the great namespace flattening: * d3.scale.linear ↦ [d3.scaleLinear](https://github.com/d3/d3-scale/blob/master/README.md#scaleLinear) * d3.scale.sqrt ↦ [d3.scaleSqrt](https://github.com/d3/d3-scale/blob/master/README.md#scaleSqrt) * d3.scale.pow ↦ [d3.scalePow](https://github.com/d3/d3-scale/blob/master/README.md#scalePow) * d3.scale.log ↦ [d3.scaleLog](https://github.com/d3/d3-scale/blob/master/README.md#scaleLog) * d3.scale.quantize ↦ [d3.scaleQuantize](https://github.com/d3/d3-scale/blob/master/README.md#scaleQuantize) * d3.scale.threshold ↦ [d3.scaleThreshold](https://github.com/d3/d3-scale/blob/master/README.md#scaleThreshold) * d3.scale.quantile ↦ [d3.scaleQuantile](https://github.com/d3/d3-scale/blob/master/README.md#scaleQuantile) * d3.scale.identity ↦ [d3.scaleIdentity](https://github.com/d3/d3-scale/blob/master/README.md#scaleIdentity) * d3.scale.ordinal ↦ [d3.scaleOrdinal](https://github.com/d3/d3-scale/blob/master/README.md#scaleOrdinal) * d3.time.scale ↦ [d3.scaleTime](https://github.com/d3/d3-scale/blob/master/README.md#scaleTime) * d3.time.scale.utc ↦ [d3.scaleUtc](https://github.com/d3/d3-scale/blob/master/README.md#scaleUtc) Scales now generate ticks in the same order as the domain: if you have a descending domain, you now get descending ticks. This change affects the order of tick elements generated by [axes](#axes-d3-axis). For example: ```js d3.scaleLinear().domain([10, 0]).ticks(5); // [10, 8, 6, 4, 2, 0] ``` [Log tick formatting](https://github.com/d3/d3-scale/blob/master/README.md#log_tickFormat) now assumes a default *count* of ten, not Infinity, if not specified. Log scales with domains that span many powers (such as from 1e+3 to 1e+29) now return only one [tick](https://github.com/d3/d3-scale/blob/master/README.md#log_ticks) per power rather than returning *base* ticks per power. Non-linear quantitative scales are slightly more accurate. You can now control whether an ordinal scale’s domain is implicitly extended when the scale is passed a value that is not already in its domain. By default, [*ordinal*.unknown](https://github.com/d3/d3-scale/blob/master/README.md#ordinal_unknown) is [d3.scaleImplicit](https://github.com/d3/d3-scale/blob/master/README.md#scaleImplicit), causing unknown values to be added to the domain: ```js var x = d3.scaleOrdinal() .domain([0, 1]) .range(["red", "green", "blue"]); x.domain(); // [0, 1] x(2); // "blue" x.domain(); // [0, 1, 2] ``` By setting *ordinal*.unknown, you instead define the output value for unknown inputs. This is particularly useful for choropleth maps where you want to assign a color to missing data. ```js var x = d3.scaleOrdinal() .domain([0, 1]) .range(["red", "green", "blue"]) .unknown(undefined); x.domain(); // [0, 1] x(2); // undefined x.domain(); // [0, 1] ``` The *ordinal*.rangeBands and *ordinal*.rangeRoundBands methods have been replaced with a new subclass of ordinal scale: [band scales](https://github.com/d3/d3-scale/blob/master/README.md#band-scales). The following code in 3.x: ```js var x = d3.scale.ordinal() .domain(["a", "b", "c"]) .rangeBands([0, width]); ``` Is equivalent to this in 4.0: ```js var x = d3.scaleBand() .domain(["a", "b", "c"]) .range([0, width]); ``` The new [*band*.padding](https://github.com/d3/d3-scale/blob/master/README.md#band_padding), [*band*.paddingInner](https://github.com/d3/d3-scale/blob/master/README.md#band_paddingInner) and [*band*.paddingOuter](https://github.com/d3/d3-scale/blob/master/README.md#band_paddingOuter) methods replace the optional arguments to *ordinal*.rangeBands. The new [*band*.bandwidth](https://github.com/d3/d3-scale/blob/master/README.md#band_bandwidth) and [*band*.step](https://github.com/d3/d3-scale/blob/master/README.md#band_step) methods replace *ordinal*.rangeBand. There’s also a new [*band*.align](https://github.com/d3/d3-scale/blob/master/README.md#band_align) method which you can use to control how the extra space outside the bands is distributed, say to shift columns closer to the *y*-axis. Similarly, the *ordinal*.rangePoints and *ordinal*.rangeRoundPoints methods have been replaced with a new subclass of ordinal scale: [point scales](https://github.com/d3/d3-scale/blob/master/README.md#point-scales). The following code in 3.x: ```js var x = d3.scale.ordinal() .domain(["a", "b", "c"]) .rangePoints([0, width]); ``` Is equivalent to this in 4.0: ```js var x = d3.scalePoint() .domain(["a", "b", "c"]) .range([0, width]); ``` The new [*point*.padding](https://github.com/d3/d3-scale/blob/master/README.md#point_padding) method replaces the optional *padding* argument to *ordinal*.rangePoints. Like *ordinal*.rangeBand with *ordinal*.rangePoints, the [*point*.bandwidth](https://github.com/d3/d3-scale/blob/master/README.md#point_bandwidth) method always returns zero; a new [*point*.step](https://github.com/d3/d3-scale/blob/master/README.md#point_step) method returns the interval between adjacent points. The [ordinal scale constructor](https://github.com/d3/d3-scale/blob/master/README.md#ordinal-scales) now takes an optional *range* for a shorter alternative to [*ordinal*.range](https://github.com/d3/d3-scale/blob/master/README.md#ordinal_range). This is especially useful now that the categorical color scales have been changed to simple arrays of colors rather than specialized ordinal scale constructors: * d3.scale.category10 ↦ [d3.schemeCategory10](https://github.com/d3/d3-scale/blob/master/README.md#schemeCategory10) * d3.scale.category20 ↦ [d3.schemeCategory20](https://github.com/d3/d3-scale/blob/master/README.md#schemeCategory20) * d3.scale.category20b ↦ [d3.schemeCategory20b](https://github.com/d3/d3-scale/blob/master/README.md#schemeCategory20b) * d3.scale.category20c ↦ [d3.schemeCategory20c](https://github.com/d3/d3-scale/blob/master/README.md#schemeCategory20c) The following code in 3.x: ```js var color = d3.scale.category10(); ``` Is equivalent to this in 4.0: ```js var color = d3.scaleOrdinal(d3.schemeCategory10); ``` [Sequential scales](https://github.com/d3/d3-scale/blob/master/README.md#scaleSequential), are a new class of scales with a fixed output [interpolator](https://github.com/d3/d3-scale/blob/master/README.md#sequential_interpolator) instead of a [range](https://github.com/d3/d3-scale/blob/master/README.md#continuous_range). Typically these scales are used to implement continuous sequential or diverging color schemes. Inspired by Matplotlib’s new [perceptually-motived colormaps](https://bids.github.io/colormap/), 4.0 now features [viridis](https://github.com/d3/d3-scale/blob/master/README.md#interpolateViridis), [inferno](https://github.com/d3/d3-scale/blob/master/README.md#interpolateInferno), [magma](https://github.com/d3/d3-scale/blob/master/README.md#interpolateMagma), [plasma](https://github.com/d3/d3-scale/blob/master/README.md#interpolatePlasma) interpolators for use with sequential scales. Using [d3.quantize](https://github.com/d3/d3-interpolate/blob/master/README.md#quantize), these interpolators can also be applied to [quantile](https://github.com/d3/d3-scale/blob/master/README.md#quantile-scales), [quantize](https://github.com/d3/d3-scale/blob/master/README.md#quantize-scales) and [threshold](https://github.com/d3/d3-scale/blob/master/README.md#threshold-scales) scales. [viridis](https://github.com/d3/d3-scale/blob/master/README.md#interpolateViridis) [inferno](https://github.com/d3/d3-scale/blob/master/README.md#interpolateInferno) [magma](https://github.com/d3/d3-scale/blob/master/README.md#interpolateMagma) [plasma](https://github.com/d3/d3-scale/blob/master/README.md#interpolatePlasma) 4.0 also ships new Cubehelix schemes, including [Dave Green’s default](https://github.com/d3/d3-scale/blob/master/README.md#interpolateCubehelixDefault) and a [cyclical rainbow](https://github.com/d3/d3-scale/blob/master/README.md#interpolateRainbow) inspired by [Matteo Niccoli](https://mycarta.wordpress.com/2013/02/21/perceptual-rainbow-palette-the-method/): [cubehelix](https://github.com/d3/d3-scale/blob/master/README.md#interpolateCubehelixDefault) [rainbow](https://github.com/d3/d3-scale/blob/master/README.md#interpolateRainbow) [warm](https://github.com/d3/d3-scale/blob/master/README.md#interpolateWarm) [cool](https://github.com/d3/d3-scale/blob/master/README.md#interpolateCool) For even more sequential and categorical color schemes, see [d3-scale-chromatic](https://github.com/d3/d3-scale-chromatic). For an introduction to scales, see [Introducing d3-scale](https://medium.com/@mbostock/introducing-d3-scale-61980c51545f). ## [Selections (d3-selection)](https://github.com/d3/d3-selection/blob/master/README.md) Selections no longer subclass Array using [prototype chain injection](http://perfectionkills.com/how-ecmascript-5-still-does-not-allow-to-subclass-an-array/#wrappers_prototype_chain_injection); they are now plain objects, improving performance. The internal fields (*selection*.\_groups, *selection*.\_parents) are private; please use the documented public API to manipulate selections. The new [*selection*.nodes](https://github.com/d3/d3-selection/blob/master/README.md#selection_nodes) method generates an array of all nodes in a selection. Selections are now immutable: the elements and parents in a selection never change. (The elements’ attributes and content will of course still be modified!) The [*selection*.sort](https://github.com/d3/d3-selection/blob/master/README.md#selection_sort) and [*selection*.data](https://github.com/d3/d3-selection/blob/master/README.md#selection_data) methods now return new selections rather than modifying the selection in-place. In addition, [*selection*.append](https://github.com/d3/d3-selection/blob/master/README.md#selection_append) no longer merges entering nodes into the update selection; use [*selection*.merge](https://github.com/d3/d3-selection/blob/master/README.md#selection_merge) to combine enter and update after a data join. For example, the following [general update pattern](https://bl.ocks.org/mbostock/a8a5baa4c4a470cda598) in 3.x: ```js var circle = svg.selectAll("circle").data(data) // UPDATE .style("fill", "blue"); circle.exit().remove(); // EXIT circle.enter().append("circle") // ENTER; modifies UPDATE! 🌶 .style("fill", "green"); circle // ENTER + UPDATE .style("stroke", "black"); ``` Would be rewritten in 4.0 as: ```js var circle = svg.selectAll("circle").data(data) // UPDATE .style("fill", "blue"); circle.exit().remove(); // EXIT circle.enter().append("circle") // ENTER .style("fill", "green") .merge(circle) // ENTER + UPDATE .style("stroke", "black"); ``` This change is discussed further in [What Makes Software Good](https://medium.com/@mbostock/what-makes-software-good-943557f8a488). In 3.x, the [*selection*.enter](https://github.com/d3/d3-selection/blob/master/README.md#selection_enter) and [*selection*.exit](https://github.com/d3/d3-selection/blob/master/README.md#selection_exit) methods were undefined until you called *selection*.data, resulting in a TypeError if you attempted to access them. In 4.0, now they simply return the empty selection if the selection has not been joined to data. In 3.x, [*selection*.append](https://github.com/d3/d3-selection/blob/master/README.md#selection_append) would always append the new element as the last child of its parent. A little-known trick was to use [*selection*.insert](https://github.com/d3/d3-selection/blob/master/README.md#selection_insert) without specifying a *before* selector when entering nodes, causing the entering nodes to be inserted before the following element in the update selection. In 4.0, this is now the default behavior of *selection*.append; if you do not specify a *before* selector to *selection*.insert, the inserted element is appended as the last child. This change makes the general update pattern preserve the relative order of elements and data. For example, given the following DOM: ```html
a
b
f
``` And the following code: ```js var div = d3.select("body").selectAll("div") .data(["a", "b", "c", "d", "e", "f"], function(d) { return d || this.textContent; }); div.enter().append("div") .text(function(d) { return d; }); ``` The resulting DOM will be: ```html
a
b
c
d
e
f
``` Thus, the entering *c*, *d* and *e* are inserted before *f*, since *f* is the following element in the update selection. Although this behavior is sufficient to preserve order if the new data’s order is stable, if the data changes order, you must still use [*selection*.order](https://github.com/d3/d3-selection/blob/master/README.md#selection_order) to reorder elements. There is now only one class of selection. 3.x implemented enter selections using a special class with different behavior for *enter*.append and *enter*.select; a consequence of this design was that enter selections in 3.x lacked [certain methods](https://github.com/d3/d3/issues/2043). In 4.0, enter selections are simply normal selections; they have the same methods and the same behavior. Placeholder [enter nodes](https://github.com/d3/d3-selection/blob/master/src/selection/enter.js) now implement [*node*.appendChild](https://developer.mozilla.org/en-US/docs/Web/API/Node/appendChild), [*node*.insertBefore](https://developer.mozilla.org/en-US/docs/Web/API/Node/insertBefore), [*node*.querySelector](https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelector), and [*node*.querySelectorAll](https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelectorAll). The [*selection*.data](https://github.com/d3/d3-selection/blob/master/README.md#selection_data) method has been changed slightly with respect to duplicate keys. In 3.x, if multiple data had the same key, the duplicate data would be ignored and not included in enter, update or exit; in 4.0 the duplicate data is always put in the enter selection. In both 3.x and 4.0, if multiple elements have the same key, the duplicate elements are put in the exit selection. Thus, 4.0’s behavior is now symmetric for enter and exit, and the general update pattern will now produce a DOM that matches the data even if there are duplicate keys. Selections have several new methods! Use [*selection*.raise](https://github.com/d3/d3-selection/blob/master/README.md#selection_raise) to move the selected elements to the front of their siblings, so that they are drawn on top; use [*selection*.lower](https://github.com/d3/d3-selection/blob/master/README.md#selection_lower) to move them to the back. Use [*selection*.dispatch](https://github.com/d3/d3-selection/blob/master/README.md#selection_dispatch) to dispatch a [custom event](https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent) to event listeners. When called in getter mode, [*selection*.data](https://github.com/d3/d3-selection/blob/master/README.md#selection_data) now returns the data for all elements in the selection, rather than just the data for the first group of elements. The [*selection*.call](https://github.com/d3/d3-selection/blob/master/README.md#selection_call) method no longer sets the `this` context when invoking the specified function; the *selection* is passed as the first argument to the function, so use that. The [*selection*.on](https://github.com/d3/d3-selection/blob/master/README.md#selection_on) method now accepts multiple whitespace-separated typenames, so you can add or remove multiple listeners simultaneously. For example: ```js selection.on("mousedown touchstart", function() { console.log(d3.event.type); }); ``` The arguments passed to callback functions has changed slightly in 4.0 to be more consistent. The standard arguments are the element’s datum (*d*), the element’s index (*i*), and the element’s group (*nodes*), with *this* as the element. The slight exception to this convention is *selection*.data, which is evaluated for each group rather than each element; it is passed the group’s parent datum (*d*), the group index (*i*), and the selection’s parents (*parents*), with *this* as the group’s parent. The new [d3.local](https://github.com/d3/d3-selection/blob/master/README.md#local-variables) provides a mechanism for defining [local variables](https://bl.ocks.org/mbostock/e1192fe405703d8321a5187350910e08): state that is bound to DOM elements, and available to any descendant element. This can be a convenient alternative to using [*selection*.each](https://github.com/d3/d3-selection/blob/master/README.md#selection_each) or storing local state in data. The d3.ns.prefix namespace prefix map has been renamed to [d3.namespaces](https://github.com/d3/d3-selection/blob/master/README.md#namespaces), and the d3.ns.qualify method has been renamed to [d3.namespace](https://github.com/d3/d3-selection/blob/master/README.md#namespace). Several new low-level methods are now available, as well. [d3.matcher](https://github.com/d3/d3-selection/blob/master/README.md#matcher) is used internally by [*selection*.filter](https://github.com/d3/d3-selection/blob/master/README.md#selection_filter); [d3.selector](https://github.com/d3/d3-selection/blob/master/README.md#selector) is used by [*selection*.select](https://github.com/d3/d3-selection/blob/master/README.md#selection_select); [d3.selectorAll](https://github.com/d3/d3-selection/blob/master/README.md#selectorAll) is used by [*selection*.selectAll](https://github.com/d3/d3-selection/blob/master/README.md#selection_selectAll); [d3.creator](https://github.com/d3/d3-selection/blob/master/README.md#creator) is used by [*selection*.append](https://github.com/d3/d3-selection/blob/master/README.md#selection_append) and [*selection*.insert](https://github.com/d3/d3-selection/blob/master/README.md#selection_insert). The new [d3.window](https://github.com/d3/d3-selection/blob/master/README.md#window) returns the owner window for a given element, window or document. The new [d3.customEvent](https://github.com/d3/d3-selection/blob/master/README.md#customEvent) temporarily sets [d3.event](https://github.com/d3/d3-selection/blob/master/README.md#event) while invoking a function, allowing you to implement controls which dispatch custom events; this is used by [d3-drag](https://github.com/d3/d3-drag), [d3-zoom](https://github.com/d3/d3-zoom) and [d3-brush](https://github.com/d3/d3-brush). For the sake of parsimony, the multi-value methods—where you pass an object to set multiple attributes, styles or properties simultaneously—have been extracted to [d3-selection-multi](https://github.com/d3/d3-selection-multi) and are no longer part of the default bundle. The multi-value map methods have also been renamed to plural form to reduce overload: [*selection*.attrs](https://github.com/d3/d3-selection-multi/blob/master/README.md#selection_attrs), [*selection*.styles](https://github.com/d3/d3-selection-multi/blob/master/README.md#selection_styles) and [*selection*.properties](https://github.com/d3/d3-selection-multi/blob/master/README.md#selection_properties). ## [Shapes (d3-shape)](https://github.com/d3/d3-shape/blob/master/README.md) Pursuant to the great namespace flattening: * d3.svg.line ↦ [d3.line](https://github.com/d3/d3-shape/blob/master/README.md#lines) * d3.svg.line.radial ↦ [d3.radialLine](https://github.com/d3/d3-shape/blob/master/README.md#radialLine) * d3.svg.area ↦ [d3.area](https://github.com/d3/d3-shape/blob/master/README.md#areas) * d3.svg.area.radial ↦ [d3.radialArea](https://github.com/d3/d3-shape/blob/master/README.md#radialArea) * d3.svg.arc ↦ [d3.arc](https://github.com/d3/d3-shape/blob/master/README.md#arcs) * d3.svg.symbol ↦ [d3.symbol](https://github.com/d3/d3-shape/blob/master/README.md#symbols) * d3.svg.symbolTypes ↦ [d3.symbolTypes](https://github.com/d3/d3-shape/blob/master/README.md#symbolTypes) * d3.layout.pie ↦ [d3.pie](https://github.com/d3/d3-shape/blob/master/README.md#pies) * d3.layout.stack ↦ [d3.stack](https://github.com/d3/d3-shape/blob/master/README.md#stacks) * d3.svg.diagonal ↦ REMOVED (see [d3/d3-shape#27](https://github.com/d3/d3-shape/issues/27)) * d3.svg.diagonal.radial ↦ REMOVED Shapes are no longer limited to SVG; they can now render to Canvas! Shape generators now support an optional *context*: given a [CanvasRenderingContext2D](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D), you can render a shape as a canvas path to be filled or stroked. For example, a [canvas pie chart](https://bl.ocks.org/mbostock/8878e7fd82034f1d63cf) might use an arc generator: ```js var arc = d3.arc() .outerRadius(radius - 10) .innerRadius(0) .context(context); ``` To render an arc for a given datum *d*: ```js context.beginPath(); arc(d); context.fill(); ``` See [*line*.context](https://github.com/d3/d3-shape/blob/master/README.md#line_context), [*area*.context](https://github.com/d3/d3-shape/blob/master/README.md#area_context) and [*arc*.context](https://github.com/d3/d3-shape/blob/master/README.md#arc_context) for more. Under the hood, shapes use [d3-path](#paths-d3-path) to serialize canvas path methods to SVG path data when the context is null; thus, shapes are optimized for rendering to canvas. You can also now derive lines from areas. The line shares most of the same accessors, such as [*line*.defined](https://github.com/d3/d3-shape/blob/master/README.md#line_defined) and [*line*.curve](https://github.com/d3/d3-shape/blob/master/README.md#line_curve), with the area from which it is derived. For example, to render the topline of an area, use [*area*.lineY1](https://github.com/d3/d3-shape/blob/master/README.md#area_lineY1); for the baseline, use [*area*.lineY0](https://github.com/d3/d3-shape/blob/master/README.md#area_lineY0). 4.0 introduces a new curve API for specifying how line and area shapes interpolate between data points. The *line*.interpolate and *area*.interpolate methods have been replaced with [*line*.curve](https://github.com/d3/d3-shape/blob/master/README.md#line_curve) and [*area*.curve](https://github.com/d3/d3-shape/blob/master/README.md#area_curve). Curves are implemented using the [curve interface](https://github.com/d3/d3-shape/blob/master/README.md#custom-curves) rather than as a function that returns an SVG path data string; this allows curves to render to either SVG or Canvas. In addition, *line*.curve and *area*.curve now take a function which instantiates a curve for a given *context*, rather than a string. The full list of equivalents: * linear ↦ [d3.curveLinear](https://github.com/d3/d3-shape/blob/master/README.md#curveLinear) * linear-closed ↦ [d3.curveLinearClosed](https://github.com/d3/d3-shape/blob/master/README.md#curveLinearClosed) * step ↦ [d3.curveStep](https://github.com/d3/d3-shape/blob/master/README.md#curveStep) * step-before ↦ [d3.curveStepBefore](https://github.com/d3/d3-shape/blob/master/README.md#curveStepBefore) * step-after ↦ [d3.curveStepAfter](https://github.com/d3/d3-shape/blob/master/README.md#curveStepAfter) * basis ↦ [d3.curveBasis](https://github.com/d3/d3-shape/blob/master/README.md#curveBasis) * basis-open ↦ [d3.curveBasisOpen](https://github.com/d3/d3-shape/blob/master/README.md#curveBasisOpen) * basis-closed ↦ [d3.curveBasisClosed](https://github.com/d3/d3-shape/blob/master/README.md#curveBasisClosed) * bundle ↦ [d3.curveBundle](https://github.com/d3/d3-shape/blob/master/README.md#curveBundle) * cardinal ↦ [d3.curveCardinal](https://github.com/d3/d3-shape/blob/master/README.md#curveCardinal) * cardinal-open ↦ [d3.curveCardinalOpen](https://github.com/d3/d3-shape/blob/master/README.md#curveCardinalOpen) * cardinal-closed ↦ [d3.curveCardinalClosed](https://github.com/d3/d3-shape/blob/master/README.md#curveCardinalClosed) * monotone ↦ [d3.curveMonotoneX](https://github.com/d3/d3-shape/blob/master/README.md#curveMonotoneX) But that’s not all! 4.0 now provides parameterized Catmull–Rom splines as proposed by [Yuksel *et al.*](http://www.cemyuksel.com/research/catmullrom_param/). These are available as [d3.curveCatmullRom](https://github.com/d3/d3-shape/blob/master/README.md#curveCatmullRom), [d3.curveCatmullRomClosed](https://github.com/d3/d3-shape/blob/master/README.md#curveCatmullRomClosed) and [d3.curveCatmullRomOpen](https://github.com/d3/d3-shape/blob/master/README.md#curveCatmullRomOpen). catmullRom catmullRomOpen catmullRomClosed Each curve type can define its own named parameters, replacing *line*.tension and *area*.tension. For example, Catmull–Rom splines are parameterized using [*catmullRom*.alpha](https://github.com/d3/d3-shape/blob/master/README.md#curveCatmullRom_alpha) and defaults to 0.5, which corresponds to a centripetal spline that avoids self-intersections and overshoot. For a uniform Catmull–Rom spline instead: ```js var line = d3.line() .curve(d3.curveCatmullRom.alpha(0)); ``` 4.0 fixes the interpretation of the cardinal spline *tension* parameter, which is now specified as [*cardinal*.tension](https://github.com/d3/d3-shape/blob/master/README.md#curveCardinal_tension) and defaults to zero for a uniform Catmull–Rom spline; a tension of one produces a linear curve. The first and last segments of basis and cardinal curves have also been fixed! The undocumented *interpolate*.reverse field has been removed. Curves can define different behavior for toplines and baselines by counting the sequence of [*curve*.lineStart](https://github.com/d3/d3-shape/blob/master/README.md#curve_lineStart) within [*curve*.areaStart](https://github.com/d3/d3-shape/blob/master/README.md#curve_areaStart). See the [d3.curveStep implementation](https://github.com/d3/d3-shape/blob/master/src/curve/step.js) for an example. 4.0 fixes numerous bugs in the monotone curve implementation, and introduces [d3.curveMonotoneY](https://github.com/d3/d3-shape/blob/master/README.md#curveMonotoneY); this is like d3.curveMonotoneX, except it requires that the input points are monotone in *y* rather than *x*, such as for a vertically-oriented line chart. The new [d3.curveNatural](https://github.com/d3/d3-shape/blob/master/README.md#curveNatural) produces a [natural cubic spline](http://mathworld.wolfram.com/CubicSpline.html). The default [β](https://github.com/d3/d3-shape/blob/master/README.md#bundle_beta) for [d3.curveBundle](https://github.com/d3/d3-shape/blob/master/README.md#curveBundle) is now 0.85, rather than 0.7, matching the values used by [Holten](https://www.win.tue.nl/vis1/home/dholten/papers/bundles_infovis.pdf). 4.0 also has a more robust implementation of arc padding; see [*arc*.padAngle](https://github.com/d3/d3-shape/blob/master/README.md#arc_padAngle) and [*arc*.padRadius](https://github.com/d3/d3-shape/blob/master/README.md#arc_padRadius). 4.0 introduces a new symbol type API. Symbol types are passed to [*symbol*.type](https://github.com/d3/d3-shape/blob/master/README.md#symbol_type) in place of strings. The equivalents are: * circle ↦ [d3.symbolCircle](https://github.com/d3/d3-shape/blob/master/README.md#symbolCircle) * cross ↦ [d3.symbolCross](https://github.com/d3/d3-shape/blob/master/README.md#symbolCross) * diamond ↦ [d3.symbolDiamond](https://github.com/d3/d3-shape/blob/master/README.md#symbolDiamond) * square ↦ [d3.symbolSquare](https://github.com/d3/d3-shape/blob/master/README.md#symbolSquare) * triangle-down ↦ REMOVED * triangle-up ↦ [d3.symbolTriangle](https://github.com/d3/d3-shape/blob/master/README.md#symbolTriangle) * ADDED ↦ [d3.symbolStar](https://github.com/d3/d3-shape/blob/master/README.md#symbolStar) * ADDED ↦ [d3.symbolWye](https://github.com/d3/d3-shape/blob/master/README.md#symbolWye) The full set of symbol types is now: Lastly, 4.0 overhauls the stack layout API, replacing d3.layout.stack with [d3.stack](https://github.com/d3/d3-shape/blob/master/README.md#stacks). The stack generator no longer needs an *x*-accessor. In addition, the API has been simplified: the *stack* generator now accepts tabular input, such as this array of objects: ```js var data = [ {month: new Date(2015, 0, 1), apples: 3840, bananas: 1920, cherries: 960, dates: 400}, {month: new Date(2015, 1, 1), apples: 1600, bananas: 1440, cherries: 960, dates: 400}, {month: new Date(2015, 2, 1), apples: 640, bananas: 960, cherries: 640, dates: 400}, {month: new Date(2015, 3, 1), apples: 320, bananas: 480, cherries: 640, dates: 400} ]; ``` To generate the stack layout, first define a stack generator, and then apply it to the data: ```js var stack = d3.stack() .keys(["apples", "bananas", "cherries", "dates"]) .order(d3.stackOrderNone) .offset(d3.stackOffsetNone); var series = stack(data); ``` The resulting array has one element per *series*. Each series has one point per month, and each point has a lower and upper value defining the baseline and topline: ```js [ [[ 0, 3840], [ 0, 1600], [ 0, 640], [ 0, 320]], // apples [[3840, 5760], [1600, 3040], [ 640, 1600], [ 320, 800]], // bananas [[5760, 6720], [3040, 4000], [1600, 2240], [ 800, 1440]], // cherries [[6720, 7120], [4000, 4400], [2240, 2640], [1440, 1840]], // dates ] ``` Each series in then typically passed to an [area generator](https://github.com/d3/d3-shape/blob/master/README.md#areas) to render an area chart, or used to construct rectangles for a bar chart. Stack generators no longer modify the input data, so *stack*.out has been removed. For an introduction to shapes, see [Introducing d3-shape](https://medium.com/@mbostock/introducing-d3-shape-73f8367e6d12). ## [Time Formats (d3-time-format)](https://github.com/d3/d3-time-format/blob/master/README.md) Pursuant to the great namespace flattening, the format constructors have new names: * d3.time.format ↦ [d3.timeFormat](https://github.com/d3/d3-time-format/blob/master/README.md#timeFormat) * d3.time.format.utc ↦ [d3.utcFormat](https://github.com/d3/d3-time-format/blob/master/README.md#utcFormat) * d3.time.format.iso ↦ [d3.isoFormat](https://github.com/d3/d3-time-format/blob/master/README.md#isoFormat) The *format*.parse method has also been removed in favor of separate [d3.timeParse](https://github.com/d3/d3-time-format/blob/master/README.md#timeParse), [d3.utcParse](https://github.com/d3/d3-time-format/blob/master/README.md#utcParse) and [d3.isoParse](https://github.com/d3/d3-time-format/blob/master/README.md#isoParse) parser constructors. Thus, this code in 3.x: ```js var parseTime = d3.time.format("%c").parse; ``` Can be rewritten in 4.0 as: ```js var parseTime = d3.timeParse("%c"); ``` The multi-scale time format d3.time.format.multi has been replaced by [d3.scaleTime](https://github.com/d3/d3-scale/blob/master/README.md#scaleTime)’s [tick format](https://github.com/d3/d3-scale/blob/master/README.md#time_tickFormat). Time formats now coerce inputs to dates, and time parsers coerce inputs to strings. The `%Z` directive now allows more flexible parsing of time zone offsets, such as `-0700`, `-07:00`, `-07`, and `Z`. The `%p` directive is now parsed correctly when the locale’s period name is longer than two characters (*e.g.*, “a.m.”). The default U.S. English locale now uses 12-hour time and a more concise representation of the date. This aligns with local convention and is consistent with [*date*.toLocaleString](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString) in Chrome, Firefox and Node: ```js var now = new Date; d3.timeFormat("%c")(new Date); // "6/23/2016, 2:01:33 PM" d3.timeFormat("%x")(new Date); // "6/23/2016" d3.timeFormat("%X")(new Date); // "2:01:38 PM" ``` You can now set the default locale using [d3.timeFormatDefaultLocale](https://github.com/d3/d3-time-format/blob/master/README.md#timeFormatDefaultLocale)! The locales are published as [JSON](https://github.com/d3/d3-request/blob/master/README.md#json) to [npm](https://unpkg.com/d3-time-format/locale/). The performance of time formatting and parsing has been improved, and the UTC formatter and parser have a cleaner implementation (that avoids temporarily overriding the Date global). ## [Time Intervals (d3-time)](https://github.com/d3/d3-time/blob/master/README.md) Pursuant to the great namespace flattening, the local time intervals have been renamed: * ADDED ↦ [d3.timeMillisecond](https://github.com/d3/d3-time/blob/master/README.md#timeMillisecond) * d3.time.second ↦ [d3.timeSecond](https://github.com/d3/d3-time/blob/master/README.md#timeSecond) * d3.time.minute ↦ [d3.timeMinute](https://github.com/d3/d3-time/blob/master/README.md#timeMinute) * d3.time.hour ↦ [d3.timeHour](https://github.com/d3/d3-time/blob/master/README.md#timeHour) * d3.time.day ↦ [d3.timeDay](https://github.com/d3/d3-time/blob/master/README.md#timeDay) * d3.time.sunday ↦ [d3.timeSunday](https://github.com/d3/d3-time/blob/master/README.md#timeSunday) * d3.time.monday ↦ [d3.timeMonday](https://github.com/d3/d3-time/blob/master/README.md#timeMonday) * d3.time.tuesday ↦ [d3.timeTuesday](https://github.com/d3/d3-time/blob/master/README.md#timeTuesday) * d3.time.wednesday ↦ [d3.timeWednesday](https://github.com/d3/d3-time/blob/master/README.md#timeWednesday) * d3.time.thursday ↦ [d3.timeThursday](https://github.com/d3/d3-time/blob/master/README.md#timeThursday) * d3.time.friday ↦ [d3.timeFriday](https://github.com/d3/d3-time/blob/master/README.md#timeFriday) * d3.time.saturday ↦ [d3.timeSaturday](https://github.com/d3/d3-time/blob/master/README.md#timeSaturday) * d3.time.week ↦ [d3.timeWeek](https://github.com/d3/d3-time/blob/master/README.md#timeWeek) * d3.time.month ↦ [d3.timeMonth](https://github.com/d3/d3-time/blob/master/README.md#timeMonth) * d3.time.year ↦ [d3.timeYear](https://github.com/d3/d3-time/blob/master/README.md#timeYear) The UTC time intervals have likewise been renamed: * ADDED ↦ [d3.utcMillisecond](https://github.com/d3/d3-time/blob/master/README.md#utcMillisecond) * d3.time.second.utc ↦ [d3.utcSecond](https://github.com/d3/d3-time/blob/master/README.md#utcSecond) * d3.time.minute.utc ↦ [d3.utcMinute](https://github.com/d3/d3-time/blob/master/README.md#utcMinute) * d3.time.hour.utc ↦ [d3.utcHour](https://github.com/d3/d3-time/blob/master/README.md#utcHour) * d3.time.day.utc ↦ [d3.utcDay](https://github.com/d3/d3-time/blob/master/README.md#utcDay) * d3.time.sunday.utc ↦ [d3.utcSunday](https://github.com/d3/d3-time/blob/master/README.md#utcSunday) * d3.time.monday.utc ↦ [d3.utcMonday](https://github.com/d3/d3-time/blob/master/README.md#utcMonday) * d3.time.tuesday.utc ↦ [d3.utcTuesday](https://github.com/d3/d3-time/blob/master/README.md#utcTuesday) * d3.time.wednesday.utc ↦ [d3.utcWednesday](https://github.com/d3/d3-time/blob/master/README.md#utcWednesday) * d3.time.thursday.utc ↦ [d3.utcThursday](https://github.com/d3/d3-time/blob/master/README.md#utcThursday) * d3.time.friday.utc ↦ [d3.utcFriday](https://github.com/d3/d3-time/blob/master/README.md#utcFriday) * d3.time.saturday.utc ↦ [d3.utcSaturday](https://github.com/d3/d3-time/blob/master/README.md#utcSaturday) * d3.time.week.utc ↦ [d3.utcWeek](https://github.com/d3/d3-time/blob/master/README.md#utcWeek) * d3.time.month.utc ↦ [d3.utcMonth](https://github.com/d3/d3-time/blob/master/README.md#utcMonth) * d3.time.year.utc ↦ [d3.utcYear](https://github.com/d3/d3-time/blob/master/README.md#utcYear) The local time range aliases have been renamed: * d3.time.seconds ↦ [d3.timeSeconds](https://github.com/d3/d3-time/blob/master/README.md#timeSeconds) * d3.time.minutes ↦ [d3.timeMinutes](https://github.com/d3/d3-time/blob/master/README.md#timeMinutes) * d3.time.hours ↦ [d3.timeHours](https://github.com/d3/d3-time/blob/master/README.md#timeHours) * d3.time.days ↦ [d3.timeDays](https://github.com/d3/d3-time/blob/master/README.md#timeDays) * d3.time.sundays ↦ [d3.timeSundays](https://github.com/d3/d3-time/blob/master/README.md#timeSundays) * d3.time.mondays ↦ [d3.timeMondays](https://github.com/d3/d3-time/blob/master/README.md#timeMondays) * d3.time.tuesdays ↦ [d3.timeTuesdays](https://github.com/d3/d3-time/blob/master/README.md#timeTuesdays) * d3.time.wednesdays ↦ [d3.timeWednesdays](https://github.com/d3/d3-time/blob/master/README.md#timeWednesdays) * d3.time.thursdays ↦ [d3.timeThursdays](https://github.com/d3/d3-time/blob/master/README.md#timeThursdays) * d3.time.fridays ↦ [d3.timeFridays](https://github.com/d3/d3-time/blob/master/README.md#timeFridays) * d3.time.saturdays ↦ [d3.timeSaturdays](https://github.com/d3/d3-time/blob/master/README.md#timeSaturdays) * d3.time.weeks ↦ [d3.timeWeeks](https://github.com/d3/d3-time/blob/master/README.md#timeWeeks) * d3.time.months ↦ [d3.timeMonths](https://github.com/d3/d3-time/blob/master/README.md#timeMonths) * d3.time.years ↦ [d3.timeYears](https://github.com/d3/d3-time/blob/master/README.md#timeYears) The UTC time range aliases have been renamed: * d3.time.seconds.utc ↦ [d3.utcSeconds](https://github.com/d3/d3-time/blob/master/README.md#utcSeconds) * d3.time.minutes.utc ↦ [d3.utcMinutes](https://github.com/d3/d3-time/blob/master/README.md#utcMinutes) * d3.time.hours.utc ↦ [d3.utcHours](https://github.com/d3/d3-time/blob/master/README.md#utcHours) * d3.time.days.utc ↦ [d3.utcDays](https://github.com/d3/d3-time/blob/master/README.md#utcDays) * d3.time.sundays.utc ↦ [d3.utcSundays](https://github.com/d3/d3-time/blob/master/README.md#utcSundays) * d3.time.mondays.utc ↦ [d3.utcMondays](https://github.com/d3/d3-time/blob/master/README.md#utcMondays) * d3.time.tuesdays.utc ↦ [d3.utcTuesdays](https://github.com/d3/d3-time/blob/master/README.md#utcTuesdays) * d3.time.wednesdays.utc ↦ [d3.utcWednesdays](https://github.com/d3/d3-time/blob/master/README.md#utcWednesdays) * d3.time.thursdays.utc ↦ [d3.utcThursdays](https://github.com/d3/d3-time/blob/master/README.md#utcThursdays) * d3.time.fridays.utc ↦ [d3.utcFridays](https://github.com/d3/d3-time/blob/master/README.md#utcFridays) * d3.time.saturdays.utc ↦ [d3.utcSaturdays](https://github.com/d3/d3-time/blob/master/README.md#utcSaturdays) * d3.time.weeks.utc ↦ [d3.utcWeeks](https://github.com/d3/d3-time/blob/master/README.md#utcWeeks) * d3.time.months.utc ↦ [d3.utcMonths](https://github.com/d3/d3-time/blob/master/README.md#utcMonths) * d3.time.years.utc ↦ [d3.utcYears](https://github.com/d3/d3-time/blob/master/README.md#utcYears) The behavior of [*interval*.range](https://github.com/d3/d3-time/blob/master/README.md#interval_range) (and the convenience aliases such as [d3.timeDays](https://github.com/d3/d3-time/blob/master/README.md#timeDays)) has been changed when *step* is greater than one. Rather than filtering the returned dates using the field number, *interval*.range now behaves like [d3.range](https://github.com/d3/d3-array/blob/master/README.md#range): it simply skips, returning every *step*th date. For example, the following code in 3.x returns only odd days of the month: ```js d3.time.days(new Date(2016, 4, 28), new Date(2016, 5, 5), 2); // [Sun May 29 2016 00:00:00 GMT-0700 (PDT), // Tue May 31 2016 00:00:00 GMT-0700 (PDT), // Wed Jun 01 2016 00:00:00 GMT-0700 (PDT), // Fri Jun 03 2016 00:00:00 GMT-0700 (PDT)] ``` Note the returned array of dates does not start on the *start* date because May 28 is even. Also note that May 31 and June 1 are one day apart, not two! The behavior of d3.timeDays in 4.0 is probably closer to what you expect: ```js d3.timeDays(new Date(2016, 4, 28), new Date(2016, 5, 5), 2); // [Sat May 28 2016 00:00:00 GMT-0700 (PDT), // Mon May 30 2016 00:00:00 GMT-0700 (PDT), // Wed Jun 01 2016 00:00:00 GMT-0700 (PDT), // Fri Jun 03 2016 00:00:00 GMT-0700 (PDT)] ``` If you want a filtered view of a time interval (say to guarantee that two overlapping ranges are consistent, such as when generating [time scale ticks](https://github.com/d3/d3-scale/blob/master/README.md#time_ticks)), you can use the new [*interval*.every](https://github.com/d3/d3-time/blob/master/README.md#interval_every) method or its more general cousin [*interval*.filter](https://github.com/d3/d3-time/blob/master/README.md#interval_filter): ```js d3.timeDay.every(2).range(new Date(2016, 4, 28), new Date(2016, 5, 5)); // [Sun May 29 2016 00:00:00 GMT-0700 (PDT), // Tue May 31 2016 00:00:00 GMT-0700 (PDT), // Wed Jun 01 2016 00:00:00 GMT-0700 (PDT), // Fri Jun 03 2016 00:00:00 GMT-0700 (PDT)] ``` Time intervals now expose an [*interval*.count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) method for counting the number of interval boundaries after a *start* date and before or equal to an *end* date. This replaces d3.time.dayOfYear and related methods in 3.x. For example, this code in 3.x: ```js var now = new Date; d3.time.dayOfYear(now); // 165 ``` Can be rewritten in 4.0 as: ```js var now = new Date; d3.timeDay.count(d3.timeYear(now), now); // 165 ``` Likewise, in place of 3.x’s d3.time.weekOfYear, in 4.0 you would say: ```js d3.timeWeek.count(d3.timeYear(now), now); // 24 ``` The new *interval*.count is of course more general. For example, you can use it to compute hour-of-week for a heatmap: ```js d3.timeHour.count(d3.timeWeek(now), now); // 64 ``` Here are all the equivalences from 3.x to 4.0: * d3.time.dayOfYear ↦ [d3.timeDay](https://github.com/d3/d3-time/blob/master/README.md#timeDay).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.sundayOfYear ↦ [d3.timeSunday](https://github.com/d3/d3-time/blob/master/README.md#timeSunday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.mondayOfYear ↦ [d3.timeMonday](https://github.com/d3/d3-time/blob/master/README.md#timeMonday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.tuesdayOfYear ↦ [d3.timeTuesday](https://github.com/d3/d3-time/blob/master/README.md#timeTuesday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.wednesdayOfYear ↦ [d3.timeWednesday](https://github.com/d3/d3-time/blob/master/README.md#timeWednesday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.thursdayOfYear ↦ [d3.timeThursday](https://github.com/d3/d3-time/blob/master/README.md#timeThursday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.fridayOfYear ↦ [d3.timeFriday](https://github.com/d3/d3-time/blob/master/README.md#timeFriday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.saturdayOfYear ↦ [d3.timeSaturday](https://github.com/d3/d3-time/blob/master/README.md#timeSaturday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.weekOfYear ↦ [d3.timeWeek](https://github.com/d3/d3-time/blob/master/README.md#timeWeek).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.dayOfYear.utc ↦ [d3.utcDay](https://github.com/d3/d3-time/blob/master/README.md#utcDay).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.sundayOfYear.utc ↦ [d3.utcSunday](https://github.com/d3/d3-time/blob/master/README.md#utcSunday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.mondayOfYear.utc ↦ [d3.utcMonday](https://github.com/d3/d3-time/blob/master/README.md#utcMonday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.tuesdayOfYear.utc ↦ [d3.utcTuesday](https://github.com/d3/d3-time/blob/master/README.md#utcTuesday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.wednesdayOfYear.utc ↦ [d3.utcWednesday](https://github.com/d3/d3-time/blob/master/README.md#utcWednesday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.thursdayOfYear.utc ↦ [d3.utcThursday](https://github.com/d3/d3-time/blob/master/README.md#utcThursday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.fridayOfYear.utc ↦ [d3.utcFriday](https://github.com/d3/d3-time/blob/master/README.md#utcFriday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.saturdayOfYear.utc ↦ [d3.utcSaturday](https://github.com/d3/d3-time/blob/master/README.md#utcSaturday).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) * d3.time.weekOfYear.utc ↦ [d3.utcWeek](https://github.com/d3/d3-time/blob/master/README.md#utcWeek).[count](https://github.com/d3/d3-time/blob/master/README.md#interval_count) D3 4.0 now also lets you define custom time intervals using [d3.timeInterval](https://github.com/d3/d3-time/blob/master/README.md#timeInterval). The [d3.timeYear](https://github.com/d3/d3-time/blob/master/README.md#timeYear), [d3.utcYear](https://github.com/d3/d3-time/blob/master/README.md#utcYear), [d3.timeMillisecond](https://github.com/d3/d3-time/blob/master/README.md#timeMillisecond) and [d3.utcMillisecond](https://github.com/d3/d3-time/blob/master/README.md#utcMillisecond) intervals have optimized implementations of [*interval*.every](https://github.com/d3/d3-time/blob/master/README.md#interval_every), which is necessary to generate time ticks for very large or very small domains efficiently. More generally, the performance of time intervals has been improved, and time intervals now do a better job with respect to daylight savings in various locales. ## [Timers (d3-timer)](https://github.com/d3/d3-timer/blob/master/README.md) In D3 3.x, the only way to stop a timer was for its callback to return true. For example, this timer stops after one second: ```js d3.timer(function(elapsed) { console.log(elapsed); return elapsed >= 1000; }); ``` In 4.0, use [*timer*.stop](https://github.com/d3/d3-timer/blob/master/README.md#timer_stop) instead: ```js var t = d3.timer(function(elapsed) { console.log(elapsed); if (elapsed >= 1000) { t.stop(); } }); ``` The primary benefit of *timer*.stop is that timers are not required to self-terminate: they can be stopped externally, allowing for the immediate and synchronous disposal of associated resources, and the separation of concerns. The above is equivalent to: ```js var t = d3.timer(function(elapsed) { console.log(elapsed); }); d3.timeout(function() { t.stop(); }, 1000); ``` This improvement extends to [d3-transition](#transitions-d3-transition): now when a transition is interrupted, its resources are immediately freed rather than having to wait for transition to start. 4.0 also introduces a new [*timer*.restart](https://github.com/d3/d3-timer/blob/master/README.md#timer_restart) method for restarting timers, for replacing the callback of a running timer, or for changing its delay or reference time. Unlike *timer*.stop followed by [d3.timer](https://github.com/d3/d3-timer/blob/master/README.md#timer), *timer*.restart maintains the invocation priority of an existing timer: it guarantees that the order of invocation of active timers remains the same. The d3.timer.flush method has been renamed to [d3.timerFlush](https://github.com/d3/d3-timer/blob/master/README.md#timerFlush). Some usage patterns in D3 3.x could cause the browser to hang when a background page returned to the foreground. For example, the following code schedules a transition every second: ```js setInterval(function() { d3.selectAll("div").transition().call(someAnimation); // BAD }, 1000); ``` If such code runs in the background for hours, thousands of queued transitions will try to run simultaneously when the page is foregrounded. D3 4.0 avoids this hang by freezing time in the background: when a page is in the background, time does not advance, and so no queue of timers accumulates to run when the page returns to the foreground. Use d3.timer instead of transitions to schedule a long-running animation, or use [d3.timeout](https://github.com/d3/d3-timer/blob/master/README.md#timeout) and [d3.interval](https://github.com/d3/d3-timer/blob/master/README.md#interval) in place of setTimeout and setInterval to prevent transitions from being queued in the background: ```js d3.interval(function() { d3.selectAll("div").transition().call(someAnimation); // GOOD }, 1000); ``` By freezing time in the background, timers are effectively “unaware” of being backgrounded. It’s like nothing happened! 4.0 also now uses high-precision time ([performance.now](https://developer.mozilla.org/en-US/docs/Web/API/Performance/now)) where available; the current time is available as [d3.now](https://github.com/d3/d3-timer/blob/master/README.md#now). ## [Transitions (d3-transition)](https://github.com/d3/d3-transition/blob/master/README.md) The [*selection*.transition](https://github.com/d3/d3-transition/blob/master/README.md#selection_transition) method now takes an optional *transition* instance which can be used to synchronize a new transition with an existing transition. (This change is discussed further in [What Makes Software Good?](https://medium.com/@mbostock/what-makes-software-good-943557f8a488)) For example: ```js var t = d3.transition() .duration(750) .ease(d3.easeLinear); d3.selectAll(".apple").transition(t) .style("fill", "red"); d3.selectAll(".orange").transition(t) .style("fill", "orange"); ``` Transitions created this way inherit timing from the closest ancestor element, and thus are synchronized even when the referenced *transition* has variable timing such as a staggered delay. This method replaces the deeply magical behavior of *transition*.each in 3.x; in 4.0, [*transition*.each](https://github.com/d3/d3-transition/blob/master/README.md#transition_each) is identical to [*selection*.each](https://github.com/d3/d3-selection/blob/master/README.md#selection_each). Use the new [*transition*.on](https://github.com/d3/d3-transition/blob/master/README.md#transition_on) method to listen to transition events. The meaning of [*transition*.delay](https://github.com/d3/d3-transition/blob/master/README.md#transition_delay) has changed for chained transitions created by [*transition*.transition](https://github.com/d3/d3-transition/blob/master/README.md#transition_transition). The specified delay is now relative to the *previous* transition in the chain, rather than the *first* transition in the chain; this makes it easier to insert interstitial pauses. For example: ```js d3.selectAll(".apple") .transition() // First fade to green. .style("fill", "green") .transition() // Then red. .style("fill", "red") .transition() // Wait one second. Then brown, and remove. .delay(1000) .style("fill", "brown") .remove(); ``` Time is now frozen in the background; see [d3-timer](#timers-d3-timer) for more information. While it was previously the case that transitions did not run in the background, now they pick up where they left off when the page returns to the foreground. This avoids page hangs by not scheduling an unbounded number of transitions in the background. If you want to schedule an infinitely-repeating transition, use transition events, or use [d3.timeout](https://github.com/d3/d3-timer/blob/master/README.md#timeout) and [d3.interval](https://github.com/d3/d3-timer/blob/master/README.md#interval) in place of [setTimeout](https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers/setTimeout) and [setInterval](https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers/setInterval). The [*selection*.interrupt](https://github.com/d3/d3-transition/blob/master/README.md#selection_interrupt) method now cancels all scheduled transitions on the selected elements, in addition to interrupting any active transition. When transitions are interrupted, any resources associated with the transition are now released immediately, rather than waiting until the transition starts, improving performance. (See also [*timer*.stop](https://github.com/d3/d3-timer/blob/master/README.md#timer_stop).) The new [d3.interrupt](https://github.com/d3/d3-transition/blob/master/README.md#interrupt) method is an alternative to [*selection*.interrupt](https://github.com/d3/d3-transition/blob/master/README.md#selection_interrupt) for quickly interrupting a single node. The new [d3.active](https://github.com/d3/d3-transition/blob/master/README.md#active) method allows you to select the currently-active transition on a given *node*, if any. This is useful for modifying in-progress transitions and for scheduling infinitely-repeating transitions. For example, this transition continuously oscillates between red and blue: ```js d3.select("circle") .transition() .on("start", function repeat() { d3.active(this) .style("fill", "red") .transition() .style("fill", "blue") .transition() .on("start", repeat); }); ``` The [life cycle of a transition](https://github.com/d3/d3-transition/blob/master/README.md#the-life-of-a-transition) is now more formally defined and enforced. For example, attempting to change the duration of a running transition now throws an error rather than silently failing. The [*transition*.remove](https://github.com/d3/d3-transition/blob/master/README.md#transition_remove) method has been fixed if multiple transition names are in use: the element is only removed if it has no scheduled transitions, regardless of name. The [*transition*.ease](https://github.com/d3/d3-transition/blob/master/README.md#transition_ease) method now always takes an [easing function](#easings-d3-ease), not a string. When a transition ends, the tweens are invoked one last time with *t* equal to exactly 1, regardless of the associated easing function. As with [selections](#selections-d3-selection) in 4.0, all transition callback functions now receive the standard arguments: the element’s datum (*d*), the element’s index (*i*), and the element’s group (*nodes*), with *this* as the element. This notably affects [*transition*.attrTween](https://github.com/d3/d3-transition/blob/master/README.md#transition_attrTween) and [*transition*.styleTween](https://github.com/d3/d3-transition/blob/master/README.md#transition_styleTween), which no longer pass the *tween* function the current attribute or style value as the third argument. The *transition*.attrTween and *transition*.styleTween methods can now be called in getter modes for debugging or to share tween definitions between transitions. Homogenous transitions are now optimized! If all elements in a transition share the same tween, interpolator, or event listeners, this state is now shared across the transition rather than separately allocated for each element. 4.0 also uses an optimized default interpolator in place of [d3.interpolate](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolate) for [*transition*.attr](https://github.com/d3/d3-transition/blob/master/README.md#transition_attr) and [*transition*.style](https://github.com/d3/d3-transition/blob/master/README.md#transition_style). And transitions can now interpolate both [CSS](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateTransformCss) and [SVG](https://github.com/d3/d3-interpolate/blob/master/README.md#interpolateTransformSvg) transforms. For reusable components that support transitions, such as [axes](#axes-d3-axis), a new [*transition*.selection](https://github.com/d3/d3-transition/blob/master/README.md#transition_selection) method returns the [selection](#selections-d3-selection) that corresponds to a given transition. There is also a new [*transition*.merge](https://github.com/d3/d3-transition/blob/master/README.md#transition_merge) method that is equivalent to [*selection*.merge](https://github.com/d3/d3-selection/blob/master/README.md#selection_merge). For the sake of parsimony, the multi-value map methods have been extracted to [d3-selection-multi](https://github.com/d3/d3-selection-multi) and are no longer part of the default bundle. The multi-value map methods have also been renamed to plural form to reduce overload: [*transition*.attrs](https://github.com/d3/d3-selection-multi/blob/master/README.md#transition_attrs) and [*transition*.styles](https://github.com/d3/d3-selection-multi/blob/master/README.md#transition_styles). ## [Voronoi Diagrams (d3-voronoi)](https://github.com/d3/d3-voronoi/blob/master/README.md) The d3.geom.voronoi method has been renamed to [d3.voronoi](https://github.com/d3/d3-voronoi/blob/master/README.md#voronoi), and the *voronoi*.clipExtent method has been renamed to [*voronoi*.extent](https://github.com/d3/d3-voronoi/blob/master/README.md#voronoi_extent). The undocumented *polygon*.point property in 3.x, which is the element in the input *data* corresponding to the polygon, has been renamed to *polygon*.data. Calling [*voronoi*](https://github.com/d3/d3-voronoi/blob/master/README.md#_voronoi) now returns the full [Voronoi diagram](https://github.com/d3/d3-voronoi/blob/master/README.md#voronoi-diagrams), which includes topological information: each Voronoi edge exposes *edge*.left and *edge*.right specifying the sites on either side of the edge, and each Voronoi cell is defined as an array of these edges and a corresponding site. The Voronoi diagram can be used to efficiently compute both the Voronoi and Delaunay tessellations for a set of points: [*diagram*.polygons](https://github.com/d3/d3-voronoi/blob/master/README.md#diagram_polygons), [*diagram*.links](https://github.com/d3/d3-voronoi/blob/master/README.md#diagram_links), and [*diagram*.triangles](https://github.com/d3/d3-voronoi/blob/master/README.md#diagram_triangles). The new topology is also useful in conjunction with TopoJSON; see the [Voronoi topology example](https://bl.ocks.org/mbostock/cd52a201d7694eb9d890). The [*voronoi*.polygons](https://github.com/d3/d3-voronoi/blob/master/README.md#voronoi_polygons) and [*diagram*.polygons](https://github.com/d3/d3-voronoi/blob/master/README.md#diagram_polygons) now require an [extent](https://github.com/d3/d3-voronoi/blob/master/README.md#voronoi_extent); there is no longer an implicit extent of ±1e6. The [*voronoi*.links](https://github.com/d3/d3-voronoi/blob/master/README.md#voronoi_links), [*voronoi*.triangles](https://github.com/d3/d3-voronoi/blob/master/README.md#voronoi_triangles), [*diagram*.links](https://github.com/d3/d3-voronoi/blob/master/README.md#diagram_links) and [*diagram*.triangles](https://github.com/d3/d3-voronoi/blob/master/README.md#diagram_triangles) are now affected by the clip extent: as the Delaunay is computed as the dual of the Voronoi, two sites are only linked if the clipped cells are touching. To compute the Delaunay triangulation without respect to clipping, set the extent to null. The Voronoi generator finally has well-defined behavior for coincident vertices: the first of a set of coincident points has a defined cell, while the subsequent duplicate points have null cells. The returned array of polygons is sparse, so by using *array*.forEach or *array*.map, you can easily skip undefined cells. The Voronoi generator also now correctly handles the case where no cell edges intersect the extent. ## [Zooming (d3-zoom)](https://github.com/d3/d3-zoom/blob/master/README.md) The zoom behavior d3.behavior.zoom has been renamed to d3.zoom. Zoom behaviors no longer store the active zoom transform (*i.e.*, the visible region; the scale and translate) internally. The zoom transform is now stored on any elements to which the zoom behavior has been applied. The zoom transform is available as *event*.transform within a zoom event or by calling [d3.zoomTransform](https://github.com/d3/d3-zoom/blob/master/README.md#zoomTransform) on a given *element*. To zoom programmatically, use [*zoom*.transform](https://github.com/d3/d3-zoom/blob/master/README.md#zoom_transform) with a given [selection](#selections-d3-selection) or [transition](#transitions-d3-transition); see the [zoom transitions example](https://bl.ocks.org/mbostock/b783fbb2e673561d214e09c7fb5cedee). The *zoom*.event method has been removed. To make programmatic zooming easier, there are several new convenience methods on top of *zoom*.transform: [*zoom*.translateBy](https://github.com/d3/d3-zoom/blob/master/README.md#zoom_translateBy), [*zoom*.scaleBy](https://github.com/d3/d3-zoom/blob/master/README.md#zoom_scaleBy) and [*zoom*.scaleTo](https://github.com/d3/d3-zoom/blob/master/README.md#zoom_scaleTo). There is also a new API for describing [zoom transforms](https://github.com/d3/d3-zoom/blob/master/README.md#zoom-transforms). Zoom behaviors are no longer dependent on [scales](#scales-d3-scale), but you can use [*transform*.rescaleX](https://github.com/d3/d3-zoom/blob/master/README.md#transform_rescaleX), [*transform*.rescaleY](https://github.com/d3/d3-zoom/blob/master/README.md#transform_rescaleY), [*transform*.invertX](https://github.com/d3/d3-zoom/blob/master/README.md#transform_invertX) or [*transform*.invertY](https://github.com/d3/d3-zoom/blob/master/README.md#transform_invertY) to transform a scale’s domain. 3.x’s *event*.scale is replaced with *event*.transform.k, and *event*.translate is replaced with *event*.transform.x and *event*.transform.y. The *zoom*.center method has been removed in favor of programmatic zooming. The zoom behavior finally supports simple constraints on panning! The new [*zoom*.translateExtent](https://github.com/d3/d3-zoom/blob/master/README.md#zoom_translateExtent) lets you define the viewable extent of the world: the currently-visible extent (the extent of the viewport, as defined by [*zoom*.extent](https://github.com/d3/d3-zoom/blob/master/README.md#zoom_extent)) is always contained within the translate extent. The *zoom*.size method has been replaced by *zoom*.extent, and the default behavior is now smarter: it defaults to the extent of the zoom behavior’s owner element, rather than being hardcoded to 960×500. (This also improves the default path chosen during smooth zoom transitions!) The zoom behavior’s interaction has also improved. It now correctly handles concurrent wheeling and dragging, as well as concurrent touching and mousing. The zoom behavior now ignores wheel events at the limits of its scale extent, allowing you to scroll past a zoomable area. The *zoomstart* and *zoomend* events have been renamed *start* and *end*. By default, zoom behaviors now ignore right-clicks intended for the context menu; use [*zoom*.filter](https://github.com/d3/d3-zoom/blob/master/README.md#zoom_filter) to control which events are ignored. The zoom behavior also ignores emulated mouse events on iOS. The zoom behavior now consumes handled events, making it easier to combine with other interactive behaviors such as [dragging](#dragging-d3-drag). d3-5.16.0/ISSUE_TEMPLATE.md000066400000000000000000000012451364736134000146270ustar00rootroot00000000000000STOP. DO NOT ASK FOR HELP HERE! If you ignore this message and ask for help anyway, your issue will be closed without a response. If you want help, please try one of the following forums instead: Stack Overflow: https://stackoverflow.com/questions/tagged/d3.js Slack: https://d3-slackin.herokuapp.com/ Google Groups: https://groups.google.com/d/forum/d3-js Observable: https://observablehq.com/@d3 ARE YOU REPORTING A BUG, OR MAKING A FEATURE REQUEST? Please file an issue on the relevant D3 module, not here; see https://github.com/d3. Please isolate the specific methods that exhibit unexpected behavior and precisely describe how your expectations were not met. d3-5.16.0/LICENSE000066400000000000000000000027031364736134000131270ustar00rootroot00000000000000Copyright 2010-2017 Mike Bostock All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. d3-5.16.0/README.md000066400000000000000000000043751364736134000134100ustar00rootroot00000000000000# D3: Data-Driven Documents **D3** (or **D3.js**) is a JavaScript library for visualizing data using web standards. D3 helps you bring data to life using SVG, Canvas and HTML. D3 combines powerful visualization and interaction techniques with a data-driven approach to DOM manipulation, giving you the full capabilities of modern browsers and the freedom to design the right visual interface for your data. ## Resources * [Introduction](https://observablehq.com/@d3/learn-d3) * [API Reference](https://github.com/d3/d3/blob/master/API.md) * [Releases](https://github.com/d3/d3/releases) * [Examples](https://observablehq.com/@d3/gallery) * [Wiki](https://github.com/d3/d3/wiki) ## Installing If you use npm, `npm install d3`. Otherwise, download the [latest release](https://github.com/d3/d3/releases/latest). The released bundle supports anonymous AMD, CommonJS, and vanilla environments. You can load directly from [d3js.org](https://d3js.org), [CDNJS](https://cdnjs.com/libraries/d3), or [unpkg](https://unpkg.com/d3/). For example: ```html ``` For the minified version: ```html ``` You can also use the standalone D3 microlibraries. For example, [d3-selection](https://github.com/d3/d3-selection): ```html ``` D3 is written using [ES2015 modules](http://www.2ality.com/2014/09/es6-modules-final.html). Create a [custom bundle using Rollup](https://bl.ocks.org/mbostock/bb09af4c39c79cffcde4), Webpack, or your preferred bundler. To import D3 into an ES2015 application, either import specific symbols from specific D3 modules: ```js import {scaleLinear} from "d3-scale"; ``` Or import everything into a namespace (here, `d3`): ```js import * as d3 from "d3"; ``` In Node: ```js var d3 = require("d3"); ``` You can also require individual modules and combine them into a `d3` object using [Object.assign](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign): ```js var d3 = Object.assign({}, require("d3-format"), require("d3-geo"), require("d3-geo-projection")); ``` d3-5.16.0/d3.sublime-project000066400000000000000000000005241364736134000154550ustar00rootroot00000000000000{ "folders": [ { "path": ".", "file_exclude_patterns": ["*.sublime-workspace"], "folder_exclude_patterns": ["dist"] } ], "build_systems": [ { "name": "yarn test", "cmd": ["yarn", "test"], "file_regex": "\\((...*?):([0-9]*):([0-9]*)\\)", "working_dir": "$project_path" } ] } d3-5.16.0/img/000077500000000000000000000000001364736134000126745ustar00rootroot00000000000000d3-5.16.0/img/axis-v3.png000066400000000000000000000115251364736134000147000ustar00rootroot00000000000000PNG  IHDRxi_q iCCPICC ProfileHT̤Z #k(ҫ@%@P+ ,E\"kAD(v .l ;wwo{\a lQ'#6. @zT3׿mt4S<7)r"7)4sl.]-(+Q.b4i>&2 (lw4: ʖ._-ʮ6:22N!o55l,a:{[9tРçC׬6miCfϝiSQ3a.;piQ3>fEΰhi }~~KIY>3epnJd pVZD/i^$,cFlo\)=J&yH(xa0=tt?i>+'Bl6f8:['T>pO+TBd3PA @bh*R~NCPtF7g)"sa&‘"g¹p .+p3|<ma"^H$#"d R#H҆t!7 ahDa8LVL)ӌ b0߰T:eac<2l>[m^`q8gspF\;7*xS >gGaGE& B10B N"XEl# 'H$C )JZO*!5.ޒd#9'#ɟ( e!ELFSQRT;5MF^>~XȰd2kedee^ee=d˞!R(g %ǖ[#W&wZܸD>C~  > \< hME6ҪhhÊ8ECEbb11%%[hJeJg$tn@g'h4g˜9s>()+')(7*(VaTiQyQ5Q S]z@K5E5g5Z 갺zJ~B}5^j55S5wkբijvkzPbx0%NƘXBG{BP'JgN#].S7Ywn^*zD}~^.1 Z * s Q܌2*n㌙i{M`;2)tiL`Vivǜbac^o>hA`bj;vfignYeJ*jUkku-ZV׶Il6u}w7؏:9$8;a*2C[Wk8~rwv:sg %ͫ7vp2\\JܴnnOuݹ#G=^yZz<.^vrr&+i%f%ge*UW X]Zcڼծ'O[ Emؖ.oeEw69o:g͖}[p Z~zGK~ܖg;p;;ntY[$_[4+xWn,sض^^^IIPI>};})M)(,k,W/Ra?w 5|n_EsAeaO~bTWZ]XFP# s;~d{=\/=h1c ~}"DIɆSʛhMP汖Ik\kmmMXRsFLYϑ坛<{~]Pǒc/ xe<_qrטZ_onצ7Z{{wp[[ݎ};ܻ{}?ău =*~7%ރO"< =/yOOGFY?;3;|/ѫS=;6Zzַ*okپ>ć*k?1?u}<2 KWm=̘EVANNM 8;@MOBK;QB=4Q)K`iCY6ӵ(~| ɉ_fО9ŧCPc[s W"LBOYiTXtXML:com.adobe.xmp 888 105 *VFPLTE/GO_ow/G////GGGwGGGOO__ww//GG/Go/OG////GG/GGGOGoGoGGGGGOO/O/O/GOG/OOGOOOOoOOOOO__/__O_o__owOGwwׇ_/wׇׇ߇燿/GwwǏGO_/G_/GO_o/_w//OOLJ/ϗ/ϗGϟGϧ_ϧϿןGן_קOק_Ͽߧ_߯w߿w翏翗ᅬǧϧϗϟןק߯߿קߧ3{OnqIDATx{U7MT4ubnUq]P$PATS-*Z%B܍S3/Ҵxcq+z59Cj1@x <@x <@x < <@x <@x < !<#<#g^N>:V]5t;gD+CUr.ܓԟ%[R>4~^rsj%#Rbfg{kN]+|Gdu;PcJZV^@mIAivky=ٜujNxҾ/Ǖ%կG rBfP%DY:@x <@x <@x <@x < <oQWdIENDB`d3-5.16.0/img/axis-v4.png000066400000000000000000000126321364736134000147010ustar00rootroot00000000000000PNG  IHDRxin iCCPICC ProfileHT̤Z #k(ҫ@%@P+ ,E\"kAD(v .l ;wwo{\a lQ'#6. @zT3׿mt4S<7)r"7)4sl.]-(+Q.b4i>&2 (lw4: ʖ._-ʮ6:22N!o55l,a:{[9tРçC׬6miCfϝiSQ3a.;piQ3>fEΰhi }~~KIY>3epnJd pVZD/i^$,cFlo\)=J&yH(xa0=tt?i>+'Bl6f8:['T>pO+TBd3PA @bh*R~NCPtF7g)"sa&‘"g¹p .+p3|<ma"^H$#"d R#H҆t!7 ahDa8LVL)ӌ b0߰T:eac<2l>[m^`q8gspF\;7*xS >gGaGE& B10B N"XEl# 'H$C )JZO*!5.ޒd#9'#ɟ( e!ELFSQRT;5MF^>~XȰd2kedee^ee=d˞!R(g %ǖ[#W&wZܸD>C~  > \< hME6ҪhhÊ8ECEbb11%%[hJeJg$tn@g'h4g˜9s>()+')(7*(VaTiQyQ5Q S]z@K5E5g5Z 갺zJ~B}5^j55S5wkբijvkzPbx0%NƘXBG{BP'JgN#].S7Ywn^*zD}~^.1 Z * s Q܌2*n㌙i{M`;2)tiL`Vivǜbac^o>hA`bj;vfignYeJ*jUkku-ZV׶Il6u}w7؏:9$8;a*2C[Wk8~rwv:sg %ͫ7vp2\\JܴnnOuݹ#G=^yZz<.^vrr&+i%f%ge*UW X]Zcڼծ'O[ Emؖ.oeEw69o:g͖}[p Z~zGK~ܖg;p;;ntY[$_[4+xWn,sض^^^IIPI>};})M)(,k,W/Ra?w 5|n_EsAeaO~bTWZ]XFP# s;~d{=\/=h1c ~}"DIɆSʛhMP汖Ik\kmmMXRsFLYϑ坛<{~]Pǒc/ xe<_qrטZ_onצ7Z{{wp[[ݎ};ܻ{}?ău =*~7%ރO"< =/yOOGFY?;3;|/ѫS=;6Zzַ*okپ>ć*k?1?u}<2 KWm=̘EVANNM 8;@MOBK;QB=4Q)K`iCY6ӵ(~| ɉ_fО9ŧCPc[s W"LBOYiTXtXML:com.adobe.xmp 888 105 *V IDATxݽไ@n o Ôj )\ J\.wJ5)'E`i SN3k59Gk)||kN 2-@@@AAAMMM444@@@AAAMMM444@@@AAAMMM444@@@AAAMs~ /3A=iK믧O&{!ŋwޥY?ɓd[oy&>|?&ۺ^g>z|>O~m4k?^|l~駺Ӭ۷k˲L?(I4MAS4MAS4MAS4MAS4MAS4MAS4MAS4MAS4MAS4MAS |Mͯ׵m7Q4 TwM]Uu%ں릍[h ]TU5痯닫 -k>L)i0l%qo] 86)c; Fήw˭Kc&ͯMm6l+׵e-8Ү'YV"fi]W͇gUFk(,g}&HZf'kϦ':vwlLdX]WfC?קkq&Z7:m>>g߅m\gM8WZ7>۾ɰbVoϬO` b$[&,h~w(~&g7ُUbY>=kbW45IZ͐=ʩu*nVgZWVdj]m6qֵZ.sn 3/veطM2k8vfJj\$7>OIkVmguw7vqyůwC+Nru)l‚tţ f固)ʨYGxx^UGQ zɊ(w /԰,zfs{m7f{4'Yam;Cu'=jnU|阫홙XGx 1]9号nw5x ck*nX&q2-:P4vůO;% _ylftRGZ&|tݷ,BupmZ=ԛeYlZ׭o+4<UzkC=>ۜ;E_x{=xwp}vQוy?ޕE6o+58_:] ]+Ƹu3>ͥ&4p+qi⌏~ͅY,#~ϠnV5.WmnCqe{!hhL6u\>~,|V5Z7ZCvex⪭ jzR*e>>!=⃛[rwzHd|M#×Dz|yu!g;^!}Ȼp*ՍC:̢>;Ƈ%u'lF I~rxۦ iiq'Ved]/\C׃.&2 (lw4: ʖ._-ʮ6:22N!o55l,a:{[9tРçC׬6miCfϝiSQ3a.;piQ3>fEΰhi }~~KIY>3epnJd pVZD/i^$,cFlo\)=J&yH(xa0=tt?i>+'Bl6f8:['T>pO+TBd3PA @bh*R~NCPtF7g)"sa&‘"g¹p .+p3|<ma"^H$#"d R#H҆t!7 ahDa8LVL)ӌ b0߰T:eac<2l>[m^`q8gspF\;7*xS >gGaGE& B10B N"XEl# 'H$C )JZO*!5.ޒd#9'#ɟ( e!ELFSQRT;5MF^>~XȰd2kedee^ee=d˞!R(g %ǖ[#W&wZܸD>C~  > \< hME6ҪhhÊ8ECEbb11%%[hJeJg$tn@g'h4g˜9s>()+')(7*(VaTiQyQ5Q S]z@K5E5g5Z 갺zJ~B}5^j55S5wkբijvkzPbx0%NƘXBG{BP'JgN#].S7Ywn^*zD}~^.1 Z * s Q܌2*n㌙i{M`;2)tiL`Vivǜbac^o>hA`bj;vfignYeJ*jUkku-ZV׶Il6u}w7؏:9$8;a*2C[Wk8~rwv:sg %ͫ7vp2\\JܴnnOuݹ#G=^yZz<.^vrr&+i%f%ge*UW X]Zcڼծ'O[ Emؖ.oeEw69o:g͖}[p Z~zGK~ܖg;p;;ntY[$_[4+xWn,sض^^^IIPI>};})M)(,k,W/Ra?w 5|n_EsAeaO~bTWZ]XFP# s;~d{=\/=h1c ~}"DIɆSʛhMP汖Ik\kmmMXRsFLYϑ坛<{~]Pǒc/ xe<_qrטZ_onצ7Z{{wp[[ݎ};ܻ{}?ău =*~7%ރO"< =/yOOGFY?;3;|/ѫS=;6Zzַ*okپ>ć*k?1?u}<2 KWm=̘EVANNM 8;@MOBK;QB=4Q)K`iCY6ӵ(~| ɉ_fО9ŧCPc[s W"LBOYiTXtXML:com.adobe.xmp 960 960 ;'CtIDATx]gCM}3&$@TD@ UC*h@"ö RO$$-ssCEv~./~L ut  OX^l*n-13㢌-)ՙ[UZ^US}P[SUQ*.r&YM$8񳦷#3?"Ɲ4l5iZJrRLVGAi/ {/C/kJ VSjljc6puzôGϛfW/[ˡ略 i ̬!,V:67:JL5-}_~1`C/=o&Yr߾ؚz8ے\MD r& 4>7z?s{qt1lHl_t1,z}ﶝ\{jٛ6۫2MninM/4eV4`C}},?!]9嵱O j}3{,+g^6``K[.6|qW>>϶=~;cd Y 6ZJۿĉԒbpx]CIYuvaK}I!#Dm8^%2n܉ ܙlu _ Ggm8hUV=O+c^{X޳zG'oõ)y_߅mK6/ am-Lz:}_/;^6kwP*%6,v=}`̌ƝWGƝ0|$:Pn5YHhN_*4LAOJ[+>ĖF>}J~͸/ܽ`6VwIʫq&%=}0|;d3 vKf_<2i}85>`]A7E~#dfdJ\0nÿ|ɔq _&2dhnnw_>$2tbx㗙_ 3Y-+7yFW{v֌I^/> ;;K|o^XcǣI32wT6\KZ 8P^6*哵pPR_ڒ ǡ,=3t yZpɫ' Ҿ/2_d8dc,$¤ฑ?U{ƚ_>0g1|6Y{XSҞXU2|:>9g=˯兀$Wcʯ!+v 54e,]CDwSXTbܰf GN;"yk/][-%:`KET їJ\ȤN % _ fyQn,RCN/ ZYJ7 : N3 Dr B}j,NC"- 6}QloTҐӧo,5iyd:kcEr>/i6|+WQl]ΆUc-rY)lX\T_Q9)6V! ߠ|'2C»Jwcz`oįw\m^q (Dnvmizjd+(m&XC?6MqdlƘsɰ떱THdbY "=NnΟ7n#' _4WjZ*QMRe)%t!3H"_uQx%y|K^[:x40Jɏ8]Fgu* *tI4M}6olK늁YVB%#:DX> jtIYˈww3ivh V#\v3u,9)X9rd](f|97d_ F VQW+9kq|L[gPh:WNCtqd0V~|7|$Wk?f^g@ JS#ๅ>mDW2NyxNyIw *US;+#*\(W% в!vW%5q`e9st63BNdFb~#iސZ63!Xt!R}fjp$fs X?׼ |_F1 OILX˿|^`cdȮ}1Krb(8w?4>-\GZv'oŀPh@D[@eed>yeˢ}7+UbG C[GA>bmEW<NI"XS+=/QBEwze˕x\(Lg '`?QE ]2\Ȗ 񦾑w1 вR0j2#>ZT8rYbJeߕ(s&+B@PU-Qyn]4 ɓ.iURĨ*\pB86/(OG"GkQ 24\ _|ER42;-GGhE'ùUpZq&ӯl9^/ERy"H+2w8mh]vf@z/* (SiR«VH OoG]V[qD:Gt@z7(QzǒB4|sme]0l3B)J `2Y[NSijz ğU&rxDz ~4୍ N)~TP^3v0Bioj1g)&*z0H1= U ھ-⦭\QuL%es-%E Nx3v A=5d~"~C Dp4Nks9 &Sfb&Mo Թu-v !DPg6,e k$|;ctS@9i$_S @\ӎ REb8^W7Bo-#jxl?Y]֜xMl҈-䨑_'tSbe=kbRJoԑ뷀DF%e['"y%g.F 20:4_ix9ֱheL_RIv?m(|<'4u2y{̀/m3~W;})'CNiMG:wXࠩA1W=̟rr1c|D! {q^N!2Ğ*?BL)@%i;b'|YȩWx^>K,:=S|.FnJ;겲 lBHR8..S^Q"Kwi bNmJÁ(験}sbbCZ]Y]iNwQbJ V`J;$;^c5r5k9\~~† }e.>ʶm) 覅R;6<*CseX3B)xtFE/p,D6DO2-;z9-`lB^x!eS 2;E T/udfDDڶ\Eg .ungY+ mftGQNua+S?0&S$>WucT7ÞPS:#S4-߿9/$e)Bh60Հ-%OmU0f}ܪ$BPE-r螲`, `x8=R y+i:M6Rȁ /I!3"5LNV-L:4[&nuJ&p-Yf! # ?$g!` =rRZ&RBrciz,#QmsYNjߧ=` S(|jL.89𥳬72:efUXKET.Չ0̴BR vS* v-'l)2~CY^monv aZc"&GR`YIQ< YZF=uQHohI[ eY$?[<2faO' A=~9ԑKEc.9 H!A="JZ3B zH8.c902]v{pr >3g|o#Xq33=@zQMDz&6 =~TYV6uXn;nUy0/socYlL{5SC ~jL:._.]@ѕJj8. ۶Ƣ {)7Rm~^GIy(MB$VY2NoB}ܧ|_%LSI8f6+o>zHl]F7AT1Y2)#nUY1L-S&]aBHr5?;ܮ8 GWg8& J@K|sk'ܷ(K`%\G8 Eٷq׋̓՟6T1#MOr rK oCͶ`-9q\F$GJ3 F ?vlo\YTW}w1ăS}Tr4 "G)6Jvo}WB>A %VO]ǦWDsQVQ"vchGIlkm 5K++y* b9&>e :mv5[ Ez|eZ'0((f⬖r#RqF&C8Ε6˾c`243'M\9 & d'0RdlKfߦI]b#~OGD$nf##C\bQJX(8V\ŘGl]nx4-K%eTgZ*sW[GrԽJ@ez 1gV=l[A6sƨ0Q+RFn^^8_hpmf>!\Y5|-@3t=BLd"x9pog:&XfΘ̫9k\ R%i@K1!qIg%UqK?7#G1_ڇ\P.0*Lu _X. f6 ʲf|xm6Fb~aHDŽrkIF0EѶ7}[x7&Ƥѳӄ,!*7rf$㲣)O}cR$&w_Ͳ$7I2ò85jKК$BHbB6."(J;UOG`ȢG8ڽDp}ʭKMtGuJ3CѬiv41.`@Wz^=mVKk20>ϣŁ'5\޺5(:)NK.]/TLh 4tf} Ye#wNBWksaqi="g? 0ٗBLEy@OwLe>> .&TOW)rz(!6ngƆRLpDU{ uRwhq&, ,6\"_jv~, &qmT-sJ;?k[jK݅ } 2:n骰Y@y+!^|0떇ҕM MPD nX:!bM[0"vkB/d '?~-֣s7 2!fss"1D^/? 9^Vq*j,n89EeQzbRD}i>Ϯm1Nj}!MWI+RGL#DR'f*-L%l>_tKD7a4D*?7?--mLG黶:Wv$Yyڜ df* )Es:wr-bWuIfIAy%ӜYaA3DGf$78Ay#6aё Ѻ:y x>>~+?-3()d|74I_efOț54}@S~"AWc%8uRGQJn`4 9tUkSlrҐNҟ ;9M8z(Bܸn?6,հ_ݷ]H6 KslXnTr9[C 7Y| 0~gM0olSaʋz!D+# oOKH!*sP[Ml9_QZh@/u6!RW 8#\zX1|_,J8I]`(3 CӾ4gaE$ -Z}feUIRTi9 !@"rbJ;E;Yȕy IY r-6 v!B+Qқ' fBǵBchʑ`z񟝍*q1_RF0y爻d`f!)rJNjLe9.k@ (k8TA@Ufg+\r(H.1-Vc:$3տ4W1e֗gr ](P@a.@6q ]رB'7~**BLgඎT7f bTmJ& (rb9ךO-&jX&EcJJ+Vr4"lбjX@բC{S `z&6{Hv7Mu(!]Q/EJ| l0#X] b<#v0<[rwVɟ1m4lN l'` hK'%tTm=Oƀ.?>jOƌg .~!sT(¼MwqnR[,L]8g?޽ O{vğ"S,2OgiBEut#1r$OQiXW|BwH+d j`uv!3A>r\ɚYYHcΎa3[gކ~lf%pDdD *Put[/l-yź>cAG40HI pHiA\م2b^jK,Y55VbYXq v%Yg.M\zpn jE|1 bx4獵.^h(tK,Z!(9똠7vJ:SIˆ:*Fvɓ6,J$B-Ofa˵z/o #CpيR6TF>~OK {y`7r blD;em灓M`b]93c")#o !!RLtOK}t?4q0umY vY}J^:BD }7B~Bi{Z9b8&XB&D[_mEj;OVr(~'_(TV4el'TىCHZ}Lb%~bIA yD<"on~wC-MWYQ'rITu|o*d`p<LiES{Lp 4ݳ@o"21\6Kv޾x^~HP;›ZjҡY,.ld-qN٠lId?_~8a,ұ-srNښ\8 06M5 !bI { `^)(2.`C@,7IHė}Ǟ0E3X!*`z\R@|krT=yYCAHUC4E:O"ŝŏ#8}ۦ&t]VR12oP69+'a8>g;OWWḟ7z0vG_q8!NwwU:g/:޶C!1Gc5As'?Z۪D{b"wsvnĤPMew՟oV~(ݪ&R&4d3a]04"2~Y[9(2(/%b}cTG$PC*TbsE=Ge: 7]L}Y6'<Ƈ%ۡqdÐϡ,1aG|KqZB}.i=8Jc';)t)|RZELI˸76V18DfqD`:zlJMvb7>SfW=`juޅmT+S77:TQX TS'*f(HW;q5*4-@Oux-)P7Ѻ\ {vYWR]'u7]L]av/{T":Wh!L\J#'M̰Rl醄"%>זjm葻ЉT"m\{'3LZd:X;@1vpn6' m\Ib1YɱXAc[f"QX;NGqB<:!=~Z?2ɪ6*ev: |J'c~/{$D֘h;LdzQUcE1Q{Ƅu')Bܔ#z͕2kUmI0[hc|52)!+MM?~8G)I]&l 3Z0zovT h[WX1HI$o[Ҁng"~:XJB3LA,g_.X[\E ~ ѷ܋&|0LRKƺBQmڨO.сcK+r` nV+1 #:n0ڐ1d\ `X=tyأQ,֗*$}zg)Ur _zsz)o{q+pUqC7.^1ӟ,cUg5`N?y*_ajFbΦTuħO ` Z"G1-Y]BgT&?S]!srp`N%rw75|ݪQEZ"1[ɿS$_ M%.qyP.8lJILM(Оn.>'k,k%.MM~t>c{6KްnsZ[s=%5ޮߟ5%SNvg7NK^NO;c4Qnv٦eYgR}0>t , ^x Ѝ3XPSombփd{I7Th +X&;HrgqrEʻ[ NO@E!Ҭw5Ez*׈TAS0w<9[KJΦkcF,-7bi2eRKQ~QOfቶAyU.3Ob@)b__eSZTd afяB넵hT:+Z]>[ P_{6z+RkԌr #8ٳU` S7GL9RE|LYbJm̶eDYzë}SG7V>gSW< 㕱^ [Rk>!T @4_/AuhRu_ZxA_Jė\iQXv^9^?Ө@ůd0D{_fʪZ';~/o4 ƸnTG){,BWÃǜؒ7L Kw t+eLI˖"86R;)Y_s$ۖtpWॼKvx}tj @m@h~Yآ: oFw+?@|L{;bձOsG#H>@(iG\[F:Pa@"^`@UGZH* y/\{&|ڒI>8; ׶#ot[۴Yp }.Y]>tk r#tWgy (yKx6`Fjy*,9>[kUQ@@Lj08wP:_λ}V*4Ǝm`H(~p'9A Ɯ#?_*r+sڋu1f. m2!x6kfm0xՂc%0 *S* d^4w_SZ Z!%>s&~^ zI~ ?}j$G!EunkDC>2]z5 cit4|*HѺL)0Ƽ@=LP@KS |7n pe)^Z. WH律Dy iT!蝫K-ڬЩ< cFݺg(2+4# dJ-ŜY̠pkT@Bn)ئI9R%Gp5GLcPt=۬ì.y1>A" C2QGm l;XQQB㴝aJRa%`YtMiCza΅bקˬcn3q"F>o3^qϞ~1ݜ`q hNQI<bbss*H#[p{haJB!nul?C@#R}ur܍bQ? h uEU۩ C{'8ngx-#\0I>R#x9jcy%&Bl^ʬG:S̩քc`Iç_/k,j֥} ߪ2ApunO4'wJԠXĽ" qR#9-%Z`1CPk"5$B.$3[n$o^wVh$ތKyL0?Yp{'5G2!)~Nc5%e.Qԯ2Ȋ#K3p4&t8ʂ_7 -NKB~w(42y|\u5"1H򍳇h M\&{puFe ǴuѢvmum[,K$S%1 {_lgB4rkڰswFȮӘގ AOe pɥkVvWs{O41_ R-n?F^WEL5yrKds-e䆡qpc1ۜ N^e`ʬ }ÿM4 TcI EtQM47L&S($EUM HSrjo4:e*+фf+I.~~STWe!ei!Dtu(PSmv$oő|NTF.+00`סѧږ@wK]&Vm7#Bk_Ǜ} RU&d)`jilW< Z:Ԛq͎̳ sGrTǙH[IǔOvL@,4 kZ\"*8F+9guɄޮӞzɞ^I7E Ix{6jB{˞pf._z嘶 Uƶ(u|ύC(k1AW?6NӅπ_BC5D2$3xjo"(ggnL<8ئ1F߱ ԊQ2ĴL+YEjA+JNDŽ] JJU]"%DkXի y `B>Kbqvб#~<,FYZV|P39+|L7x˭4L_lX4iYB^XHʬژsW):]]҉y '2q_Y\T9U$3;㧪j1n\}WlJ`KĒdS>n+axp?qv/-2\%%&&(=&)񹻴k')&{gHq09 b2k?cD2@cՆOӑacl&~OR)6NqC=&X&[,ySEZVBHJ>5'}A\~Gnrߢ;k5∶DO%(p?!qFdћ >D&*;V472WEqpw7>NU.Bh9{_K>QSMi'L= ;]|7Dx-J.X_I>V}^VT*pOL |8Ѧ]~/yafޔ%'ۄAJP!buƥRPRY,AbeLwvq9_cפ;I~МTjx8CtPZKVk7B_]~S y@No3)HM~/O<.2o.μH+v jg93~2JdP~<bs LٯX%B4(~b3tܙ2x/ɺhѥŕ\p<W8l,"K rKzXDz%(?|iz*pUuXa|FY Ū8/&c:Wg&{\5ZWnmc+e˝*FWL$qDm-p:\{dd=|^ҥ}S^s,w)B r$oo%;DM9eW*t1)8t[`.ק}L˝3/Z!nk|p<]~x%#ft\.~tsOU" _u9<>RrZ\>{қO>. _B2=2k (⃰ʈg^*sxu \/`ӗmfDpm"Tb Dwzpm]M~ @Yü̳Я{PtkjT3-PWhPЭ} :e4r_D*cxOŠ΅}_rb+d)0Xqy9.MָV9M@V,;%uj;H|$=wGOkX[ϷX .rV{xήX9ގahYєD `>?,ip`?y+*ҏ0;0Y V)ՅvB ͻ@,{̗Rj7H\BAC1 FԸL)9?෾t/:8 I\`6$K%!Zr$,:=^eԏxL)v\NYSCR5&]PƑ)K[=@^m Q:yX4XϨ~}I v|A:?Y Vs  RdU(Pu]eDyDEB|X~]w|Lb,]U6vlR8a4֜%}Yjy@Ez-}=\" ]-s&~څ">b,jNa#x :?$IxijB,hh hR3rKb#&AL_ o.f3 ּbiD-YpųB:ܺ;;U WgndYOЉDJLP3~F ݺ! PUTribfs: GK$O~iv7෗gm-{ xNcI{s}cb!k8Wr@_>!$?pzf \1@.+n.uF`!*ZC.U]&])~ZGT28xC?m;AkҫG}?h)Ϫk Wb 𙹨VB!aŰʟXRYԆ]ĔuUMym@[܋b2TM&ׅ & qz"9v0[uM3E.~QuF^w}w8-!Q ?HWv/U3d{ʮ_cw$w eqR\DGĦE2JhT*MT~66"H{/Q[0%ś]&]fEOYK,*l~R|Jʍ+yf#ĞXeO|y@E5ATGQT@:l:rҩ|- xe0 VbkA+fZ>泜4 c KQIe[9M-;>i2Lj6rG)S lV_T.̵rɓpZM)n\Z )E ň\q6x.:6,8 [E IЙH'FgSRy)J㐱^WL07.2{)w +>h:N'gxD ų+L&K ~Ъ0xBe HOKj wtb>7+OMR[Cz݋pg~K/qfۮ;*eq8o3`mq.-CK|T 3DQj[qn, t׮TN{?82!$Ydyv$/|YP&I6[ )y|)B|)sCMj2&+|aHMV0A+!nȷbG&|+Rua<=)͸jllڲM0Yl/&2.a)LG[~$!&`^ib ~'Gcn-s #_T94'CtP,B_70c%# |i^YDeu,*- ?<; &7S|e"+2(^xPSQ<$.:wͬYr*/!M2Cr.Um4;M,.6Ft/>~c.+f&SSBkG+ѮMؕ/yF7>(9/4'H pMQ!awݭb4 Sd yW_ҀߺE"9Үd=Đtf^|xo4U:z7 XzlhF6-~C@wѹ!rР-UA>>g-:mI9:jF X+p>&`>yeLD8'=/\+(Xf۲EC,6[2LxTjG) 2bELch暋cwz\8]=œeXw&BL2+(md4Ʒ j㢢..s83!8fJ7Y܂[ӲN.5 "cG|kxQ׹WjK9t^`7 7 4U }E{1bX% h !iQICAAI`2i V&NY!%5A ?8A|`x=OF6s IIk>҈h"3 c>tj .84=/GEqaU}q "j|+J86ugC6.e;rNӝrf9FÖ=PJ} K3aP1tW&v%J|.D<=CkkpsT(*Y } Y1O.9._xɦ[-Ēˁm L{\JʹKc\>9Yزp/j;w=jtr*'sP>|J:# Kε},j%pXE-H;Icp#8mZ\E1A: Ө&z0BH`p>oWh[yi_hjruCGυ< l9J=|\n+r3>QbLֲ26l~Kw>&׎XkRiɄk?>NG|£|핕)ҩ)t(ꁹ–cJu0-Fp/VmOݷZTNH*PHC!#"Bgwe+kpJy X.Iu'/qN6Y4yy*b#_V0SMB^hHlI_S7 Ǜ >d^ZXF/ q6˳9&7aނV7W[Q HgCDOC'm_ҳ j:&]HX"Z&bj*BgJSgr@/x{C% iEfVu2":4<{$^za!xA莶w'w9&c 5TDlX?{5v6bErU+;_[]Gة.gCp!Gb^P=~plk\gw0vcUZX KmS`V/]غ"Sxa>˜+[_k umE6BbxX9l iŘtW|4LRVuK:|>I|d\lX}V}Ԭ`!p(y|j8O/񺉓 iGnB=:PA.VF?]#~y9f ѽ ,xǚw vD ?Wm1Iw Pq{y$Nm:8ݗ>k7CP;)*EoEX;j-KŤ j\֡gus/ ee$[:Lj{2wewIc\8 hdw2Xw=^RnUޕ644Wېm%J(D (bQn (#uYaI@ȕ{".fh/ s!fXcK9 mPE 8Y`}d[]]#%V oRE'sb -N1W>g?V'l}\e[ r*c+k+'R2~3c@^uQ^cZer(0r$=EpɖmZ{"6k4PmV=-:3Q }Q8#}p' ~>ɇoO8 Do/[K# ^omK~\*?S}%48fa~zzo).<מL#hLHGpG' {| R㪊v61Z c?9j%`_}0'$nHegFEæ~}JӾOkϊMh#ad’x},\XvcP̤=7ac 5p?a]x7˕FM!| +4UJ*S"U+q+L(U@kPqo|il3R6s꥾ %q4+\W+C7yyE| |P~a/coL>n=,*c=jè~U3GY!nNo4s?TɯG%ߪ]{;d) zO*hqd@)'Wϊ"l%d ؏`yz0<\r%zM?Qrwonz~_{痞%Ȧ([tck'X KeڗzWZ _ZEiUIp[pWJA<\/KS{2r͛>A@&'{Aί y=Sឡۙ};F:-NOUJ *kb_YҀżIfT\MGCT伪7;Ϧx У=(P5H@xSەѹT% fhIJ5Ǎcd wm4֧-/ѽcCښ몛+g;G&fkosmbQNFz[P/X* `"Fu y$ptI8eG.;$89B]ISԣPuT/U/Q15aCL$f`Կ\pl!ߜ>T[%ުӡ}^_]OL F;4]e5>{gm^O黻ւA:\:qx ̑QJ[c߫>ʳ;10;p]jUNawBd 矊8Hf4,LUT=2P-1I5<l,4zޛm`tCssMZ@_!$]ÃQ`M heeZr_ w-L5_{ƀ%7H_(9ױѰ6I7 u'{UC"cXUf0,"Wi8RVH0 iެvno|ATi¼OrDӉDJQZ5/ZB&Yg n}[u]6pCz^: ]YӮa\tnKSgv|hU|4Bc2t<ѸhI%8K*p"k<"dDT rkiW 6*'it-rߙMPr 9n<h}\>.:#Z}ŕ뿎~)mPA= ܘ~Fvinڅ3WBEBub5dV xZYTKwHxh5kG&>@FZwmf6%a"%J iݞ7(Qgx?ڝg#&A~x{r[]}e\; kBU `1Qqq (cbܒ",BDpN:u 0|J>#»A.ؿWP$ 0"+O=/`f9A|_d/ 'f>;MMêlŗiYY~F~zo,a(TCj63FG[N$k}*cnd4{h Wz`IkFA!M+9حG'c.azN d\:SX좎",kVPj^6XK =?--*K Ӥ& [dhwZw Hwט^:b!Sl}A%VrAGzJ: I)b$jVn?^MH⫸òz@s|wK_vtz!{iU_[OXERmUJO]×FKfԅp'J~#cizJD]vv:{oin#=9#P,aS"g^#(_X?E>Q{{.\5S4ªV4anw М1M=4% Y(ƀP1AiwE>=l!;!ܧQPA׸Bє}o|JĿN56Lc6EAPuB]}#ף妘˜C:tp#|.R6WzQ7F>Sq|~:pnehQQS[Y9=Z᪶? |u/Zl# {_ `'83Am LnUV TxY8,oR~a؄3@Y5MVR-&0SnX_]1v_9_ZIɆظb=wum\N}i&{_M;aƭgJ f[P\@.-34 9I"O;c Xً!S YFvO -7N;~ U<r*rtkr;ZH*"G.bh:ûGl-0ўU'V|"&}ɊZd ,Jx|sF>pt: |=qLcC,^43.?e]!{snᔃ{?>߫%m9-j_ǸN_E8g.>:qa``[|ߎ-_*Jy`_:\,rlpl鄳 )k3g_Sںg`ާp#[0/ ޫ*}wsvp捦} @r}iS 3p|K[]K sBc|E$ pLVt|,v0AEc2S,t4 W)),+ߣ\ؼ~EqG6 }r "@ԋM`kuoMZc*sGx+dSD8K[ v~XjLXP[ C,dLU|Vvx i-aT7Cf?[k3IBv;<#3ck-ϼOE2yb92ޙ}~u9 WV.`Rkz G\|k]>k\GZ;Ktj޲kaNw&Sy_9O}=U6Y5) O@eDMX8\/Ό n\zӽ!$+қ5U_};E !`wr]n@C\.=NSmy G)KWDV!|"ǹ Φ[|` G N佾,9Y}nSh]V7ێ]gd`ox\A_ѺpSӰ @B&sT<wY* ;6XCr:h3k_fOǙ1s?eQ9E -<l8( 7U?~D?]sk=է;| G6I>fF{ bfSwg|;[W*s|=f^OȜWN%]uh,0Cswx4Ţx_gC̆'X dH{i:ܽG^Hh[[s|pыyέ[,Э𵪺dX">#$*Ś0g J#g"vOj$GwipT3s3X90X}܊遧{R( e"~׵aA:+CNgC7-++?GPӨG +uR" 'H^{K&XfyaQ V݈' (өY?p g:>MD 狫B I-p??]j1=5{`+pv<{ N{a[| !j|{h8|gV".W s78W^h,iΙw03nT Fi"JJYXjVmT*X(nM%"~Fy%FQozJlNNc~X!R1Cppfe/Cagھ1䞊"YX(d4QRaI '체}saa| u@n1Ow~ͻQץS"_jq6uҗ4t܄༃Uog.0 އ:YS,oԭ;L`虳^>H8f)p!:dڮFۺ4W9LA5hԵT+;5t~Hzm(S:갼E7A&(e6ɖ@8lE=l/ڳU"[hiTJ{e55of|xŃX)(ئݯPB|>Vwk\~m?='5<0HLJTT2 dKL`yvsF^VM23;0_9HmmeJ R׭>*=Vy)bX2e5Tot橱Jn/3GdU7q,7_@j_;?8N8ZWIA פU9Jv`bw>j0qcF*/^/!m+ZzI@BLaMfWq'u4T.ғsVPDK(Tڐ44} 楻F+8sE8ZF a!@a'|R 0aw]zn@ϨuiW< vm J_`znq̑.vBkl}狳r[S+}0Ъm$=c)|(ƳΊp@2 B$-,҄r ˷,x٭/f}NC^&l D#g/@C$ ` <.B>=Cici'l˟4||A#`ÂO%"H0'oJ?PrsbX_Js9rЋMEfL31&_%uZIaPJ4?/Z<"L%iK.C(*%8[eYRM$TL F_9UJr, $` :V ̩o+P ` |Bn &u-QFrM -czV1̲U v(IpgF#EC^82Ixp}Hj3(A'4:g +P%R#ei"J4HHWɚ-%f8M KY(tҲ 43a8"RZ\цPގQ@rR/a+1pvS75۩ l>ɩ3i( QgsQ`󴓌bWo(XAIl~3.%kK1=<vKM 0-, Wd2^yV vu~]f~1ͨrv<.c+ڰ"?q=Ο+tzbѾ#!6JNU=L$5_,D>l"[@jdOy>M!Q{IaSR8)䰡׈EC)8 fB`-i+C`L?ݭxlXvt~{םgLV@J,eUprX( Eq|`8N.""Er"n.('Tt"a9_W MҎB9:,k-!pIȑ.Nӆe=b>p{Pj>x`vM!vAE&ٝZl*:WD.5-ՒvÐ66:t$ ٦M ٯǗ}|g[j=F`f^tHLm#]cxa+nHajmZl,,ilY)myw(7쫪YRr˭5aBQ\*_+o?Ɨ֙zoUBpُ}xVQu=+fԡ(lb)C2貶FbTC3sW1“|hkkǸHWgGȼ`v׎I\ɂPvXG37wvVzHSJ|Uw #_!:A0!67~7C}oO? Wtڣxwt,잲9cX)Qw@ TiQ@ l'z{nL?Xyo,p$9, G9a lT~r֔1۴IM%D:'<[I>VABSv7+owĕߦo`UnVq.k\Jx~4$,{l"&L\Wŝ˄/jא %ߌiA#3I\1I7b3|s=} qAFf0"E0 ɉsX4ɹk`ߪW7l&=kUwXK7dQo3U_ gˋg-'}&h2U6My Kg)ɐ_ %ywԹH6fVlƅ/?3_<X6{9[3Zgþ @:'!'"ᾔj_:-O_y{?|Y}: w1?liJPޜpgQa4qeΝ*<좦 ieָ7lEQ8 MV  oXuoIQVp5B[9| km -lVx~g^a)Cg Ӭ'jVұJ[@."YX;غL%-hU_"X%c"n>:wS֧>PNk5 !旕9H~m+U{EXyaջ? 6OC {W?kVm3Γo- {=D'BL@҂^#FWL")Ej83g~ y,DC{6bJ2Ÿәe]? _!R%WW6!CsYR-uO4"Fx7O>G}4շNgp:xǮ: & ](WQYÅ%l(g7֩. %&|e{o#͎$"yCnծ^`W w9,ŢFtx-<$B+Vip0ļ;徉]/xCע5p.>v`Co0d!z/;ge9&DA>wż9!5WNgIVl C?DO @vϣޡ?Hd`?to5H~^np "7miu6rC),IQA MN"bѴNn.WdĐ=uc)shSt_1 ̙^]<+\}g螨Zڲj3|`Zy Hԗ:^v(?O.K|!C$B(٩K*֑WP%'U1H,k4 }hk998$-V6ΘXM꩕˖/U/-"cLHLьX6˪M|׺6I?┩y &'UyƝFNAC B9QRlWW8H;jI#3 B`A\:ˀ9nZJ s (".r?DD$t*b ْAgRm), CIB@W(!2,k.J^v"Wab^Fo}HgN\h))/k s_pѼ+^S\UQo,1[ǝ*ajXdEkrE,FTRgWm#]Aiod=O吣I?%ڧYs,˺SR5 Wڧa.Yc[K L-H \mJ3{n64\yZ DZYmzц* zOSPrf02=jيI~`d\i},wj,d4~~Έ9޴$ l%flb"iKL\,aW).yS!`8̬ȵ 8m,-{ 8"#yw10pBʫ)JToOv&[3L"HDo (O ` iI1]xX+p3'uSH˼ji8G̊:;' -٨Uv($L.0r]3GpG){*cONlB0MXolP6TmCcX]Y5l冒KH%TZٸ0 ): P5픶ڷl<};1-qTusU\Gp+ ŨQB|+ ^aTC+^P,V%<՛2;`QvGxu+1c\xK\OxJca0g %HZȖl0 7 cfΦ)A'vtx3XH" }AB)+weM$_u`/[6t.xn=0 F85\y2CC-\QEnV1J&5b.rW8jr) XBi}'YI|M0+JZs-褯6>dr(7 4!9Q9ۯ., _b:VWק6 =8@#|M<-)G^PO#죶\KTTvaLd'2ͶOdYKLKZú)N6O#)ecc@"tYD"HpX H"H$dYb;cAWhC!YY_Up^̶x;6\wf^.N̯ia]hcĐ-}awDe1we1|hAU{l ]G_gwHDfDִC+ aq;FeB~i H5b y%X=TVeN!rHHbL "1>L? إ?s̓|;P/HIG@jLM[2"{#H~x{ttvW'dO ?wx?cU V޷{{+v`=3Cpb 0/g ]@z[7ay a(#Y3/  )!d}BE )+k@~xlƢ.hgxS0+ ?':fݮw:OƞdaeKf>-N}{t4~FKcNa= {}hFXGMsir{5YV7sJpDHش3'D8;3IS:64VƁPbABVȴ,+Iae_i E/yywx52w}W SjF,~x뽗sSY"ˉW{tn mSZ{le C^V "ĂAO&ƢjH3˭}GnبoY  [A0jo d1ϡʲY6Ww+>Eʒ3]992rJ*u^ejHi=zoI/F'eGwy,T&J풟UP.&Z~(QXLRlЙ mNAIkbQDA̔ȃe,UX"[| Nv躧5K{o_4_ rY1oMyܶb/`gd`23ſsx}ݩn,2ySs68 \/z_*!)y" G ^!sA O4Jps{l|v?1ȴQ+4!>~ E…)o\m·:gރwdY<vnՙRhg,z9{;Wtty,ѤVLn뤥q4MȀD5驕L< Cn DYbIFFzvw,rZENR^ ߝdtlbtKdl[ma7p#y,YDQ? >/aYoBʖ岄<6*}'۶ {1x$L6Uyfǭ~C fƔt9q}10S') 6/y.M .=3^7qbr;:+!AVSH̏~`{bz[Jw8lW)uKk]4IU25ƚMmOT%~,<셱Ι,T]$!В}x!T6^ku7~=U[QiREQLfFG^B<1pNw~hYK$oqn*KgGxR#UĶsy@N8QYB% bSGug󸊭BsYw˖,bDš^V#p8GW5<%)$H}bMu7!1{I/aFĐHxՁo`"͑ 6jQJ-GЮGq\LeD Oa8"Mdv4Uٸ+ir9P51kuTkGi)Rbae+ 2sI9pz<>yK: /÷+خqϙ&/rjw|]~֝2>Fx||UݣUBj?'$sj 'rOPTO@ g#U?6.}YR,WHR8f D# sS$=4'[S&sSL7/̹[eQ_mQ \3;Z|*|2mynHɟdavB 2b}SmtxI$8-Xs!_KX[1C#\JW}f?cLTl. ,eax(h1ZR5L#U3?mƸT[,dӲLQU2 n{Vڬ;IK `yzVlBhC!Ti+Â3Qr̒l]z&:TMD[m(Py%&ڐe\j/wgWR )w>/Ws߀^ l,Z7l)g)F2>7,"f{*ȚLx8&G—pT,ؚfK Vj/ӝ@5R'})9.Y2%_ ?طƧ|pr.kS8qp0fxs.egU30bz$TQ?3XϏ/kON^ B~VIi?W7×pLB56n)V [Mw3(yNomT#!.G|Qg#yAK 1_(LY|IJ{8%~ A7=Z>}fIxlW#gX:ǧ]} Ksϊ _glèy`*4 (va蟾VLBa)'&t)@H@m2g:S[t+`f=+i4spF\eH+B}|Ł@Wݹ%-3Xt4PCcSl'<(شs>^99Kf;j#+"SHa{bIH@UyUV}g=HhT^c h `{zH4`*zW0 xaK4ʩ>z.KxWghɐG(YQF2PIw$gkbe#&#ORL<g hEV|h. iت\p3<68 3̴N!%8`swy( "ΚJ_X5U|%0;] t!$ؗR [2[S[+L7]/{ KJ 3h5@ς]Fupӵ33˱ITRgh#\aDY;ĂHa7m y$e*-]3c˲cRuwZ7LPLg<$[QB;qz>=;aM yzڡI %S3ʷ^$6+4s:^LKm40farirt$ /6uL<$iCKsar{Zu&:(,Hӡf+,qFQ3aTV_S WyYcMQp y㟅Yp8rv5L$󟷝&!!Ai(1?!$7yנO?C9&P4.+b9ˬؿbRM#!+Kڴv58]<͑*L8+BMI't,ܧwD]%D_<Ç`,]X*iۓ幚r:c%x EH$n ek`_1MdampL"Hq@'Eܭ2d#G>,*^`c&j!i4jپ5:Gs$}U GM Vne7`Y'fz=-JK;oAV!lzsOL "1 EҔ9%oXm gS}p0%9 fY`ub]./wfF,i뙖-:^R @tM?nsZb"e&wL_˳W:JRYm2d|CFVS)O wτ!vtFyڌvZo^z\ƥ,_Y[OQTzXFkiZ74KJq`s54Jb! U]%0ώ5[([#~)WL׏w[T-UWxm[_/7`g #iElԍNۈ9v)>4C~( #\>'poŕy\$J,eV|zWzg9WGmʏ>;ժ.2%; !R2*_؟čl&Me} _/}vnT2Iv~uʸBM!~igu"߷ N۳[I^Ҧ4E$r?UZ{똶5rcWƇ].X524b#2Y3}7՚*%oN{+u^:BDa]/fl=zv 4[;egZG@Tfl#iː,ÄV0 ?uRxd`Drm\2Iן/ };{\/o*EwMM9szMZKҁl~`]{#Kd"S Q͵ݿ3vrwpiق05{H7ͷ0eo5 EqY:_Cݙ~oAvp*U$m2L:O"9'ͤ2yIwas j &\)/^FlfDžڴ+{/Ss`_XxPP\fvu2!xuw \{l2W;sjhZS/ xBBܿtc:&ddcippy:nlEZxrX'w'CSJ'Dj /|f[&Zg4L5@3Wg_n/vFf+ w煵?֙1ܵk 0O8nrAVDO uQ8{t4/';\gFi,WNZK\< X^^Sm*qU'gטڄs d+jfJ;1P?;4^ᾯ|8(D8V,'aQl9Vx79Dđ:RG#92DiŧN'TۭS;k2/ %G#J2rr{mmiR)!&6-ozZ[= ,E]j&g6H:#M4 S} Jwx, b :mqA_Z}i0e򇁗GGdM i%f}lē7ޟL=t !*B<40?UhYngCBLE7 3:JvlZ6ϼ]-v$U?_~_D 0yT4ۼ\o{w2_i3~;nxϧti[ցSSVvFf B6u "s˩LO8F}#RkTOKYq*حmiǧR ͝Y:aT3)>z\!^yR7Wj=Ve>j_q{ş?*^W}銃MN2&jfŌC4C̶u6[-wa%"e_v#q##؆ ;LuP<5#byr,F2HWܯB1֏QSUe8= x{r#\_*.l@,3e;7U"M 3:Hl~eѧU0)3H~1e{ ǨR7_ů|J,QXSƣj]vVҶ(s_i]KT^ƍ 7LMsnJJeF\U3쇼P]m:Jtn!^[Ϋ"ޥ/=30 YwG!Q ]hrӄSju*oi -s;;Qf-𐚒d&_ҽ+Vpe E8;yr%g:9-0 fGq gsP!ğID"詨0S;-. k6QTFmGف{K':/exvK/|RkU%z9*;cP硍6"$r m όPr)e3Tf8Gy@Fj=̫3k/`mXߺ5,W!et\ՋV>l{,)󟹬m9WgbyEӆ1`dsrnWc mc4)xrrqj5vd>MIZeLrˡ=c,GnoTa׾-$$7L5\YN; =ZQ'ͤ=pTsT$e!R!N]ZxƙQ` F;ќJ,6$dAOr;Y}Ň*0?dHPk'p7*'*Uayuh_l )]ɤB$6!h6NvXFR. Sz:Z9W*:p֠q@'-$cCQt>~ͧm0t,:l<6OC9A_7D0KBSmg~5k𗗣,ð/&%Ey-^-vawO\lU 5jJ0C$EI֝uPs?9XdI\Ev`q֙A6dP\ٷY2%h E3UK.K*NTWq6MTtb?b$+LxG(n`-U,F$fO74{ ,VY네 {l=st@`JJ5ց[z%TtXX A|:VJbɼ5ɛo}^ۦT8ڈ .O`Ⴀ{BF s^KD(YII+ i 2 <4MX{RfFyoD.C.X#}6ppQmM뭧|fh?}שPiT753>˹opybuiKʜ[B_!fRdLN[au'NX'oW㿺4ۤP({Dt ޶0H C C "2qEIfC!L:I=#^׭0N:'IyGKomqp V7pPCz#M≯On?|n6?/= $5Ƙ8Тg ?Y-f޼ 0cšqcE'ӘLZ8/1t@ɽtKnB2A,K]L"K}ucףMUfu*M5n%$B6葹Ԙd&FP `m2ֱGoWMXY30\}aн|"UPp3BJMh:caJ^| tL -e/3VWORz 5c{T[9 LNx`[+REgsV)` |Es z2>7%PUb"9"d AQSsVa痶=b=!GagGiI%>0nO+/m|ȑVIEbh})2 ,CVo ī 6qWX8 n__s(E>2b!}*0MA5#@nl8&VтG>€k:[8Հ2M׹BRv ǷG&܀}zOZv@]P~H{:C-:?G .y?mDfW;Xi5QONA>+ۋ>.?FUÑ lVcźϷً^cl~ctON623-ҜycYZU1V9>aYM[K(Gm#E7v){J^X ))ʦXFY\j«x".9.E$#r3O\)v*Ri&78;;SK?΅GxUtUr&8z"s2ko-?񑬲Ǐnʽ X9Qi4 EK|+I3 ouDZE3Gc5gE$F<ȅG};YG.} Bxwn L'FtණvCuZ DׂUkg>Z]q(ޠQFMf)p91#.spAv 9r!Z87*Q[;ዴKaJN eqo(Rږ[RE.!'bAw4J1*+g?=K\MˮÌIbnїA¹!o@IjJ@wD'_)Srn+OSH-9[^,)iLIMDNYI+ }U.֖ clzKb. e> LnRy0g4 0.."٦ 96>/gRPX%Ƙ]݄HzMwO_X5 գ=)nQ_/ȨImpBz IJ1]5UY6 lӥZޑqC?Ordˀ L G- .%v8|`NVM4Pbb8g[Qk &,PxeR+ۥpbinRHOͣ;W:7`*zkSb,bcZM 5:Y`zTYp|M`zBrB3qϑ[Lgi.N_JE^!3(nQ`}S2T\I 8i봢E#:e&EQ z'=gTdAࡩyfG]j! <7I-;DžzcKS艅{1maCBas,QqD˸z,躲3ĽGp(Z=T'|6M1l$cB1OqDZUbvK.X\ yf0%;$E!RR+)ڍ=ܺWљf4H m5+^EgLӱmO>v5Wۓ g8@{koƉ@&֑ЄdpQK3WY+'= ߖ$W%J3b0xWlFIB"X[ktf~gh%h+&yPEQmm0jM9/zjiLН^;78|߅`KĻ+kcwO/, }^ R3f-׿u:)Cl-դYI7<^ZT{MD]* kBMV}Oӓ-D#2ACMx=9"ѧz[U;W?ov#|tԇ_=;6`C/cS3GzS/ɧč^2'< 6`T8-ƒwW Eqm5JW`nk$.(gj-eެO:0\I]͝}\tܠO ~- O/(䩵@&Yѷ}>5̽ɟ - iSktl+g.t9X[2g]JB؊KoI {\QӆvBߒ2e wW`&i+ǵx9 EOŘy//"ЕGi HI/gff+r\IH]l5>O5 ]s lTp,#̦a\[! RT 7rk3(~W'QBe 0}aqiKq7IpJR ޺٣$Ɣmor BonHBG>[BRo JMV=nkK_t VFZtW[2N-0u[ +|$wP/j#q K^~a&d5OCdPpeר,42Sj1-k|}(-ГGUqx3 %+%_lJf=ݕr$Y>bH ^nR=ہ- wfKk\#O:ӼΎv6*fq 3O.rRL?8䭈 v _QplSC^\pTPwu-j2ƹGo4| ы``$Kʒ  bMI?̕8^_hn) 22%{UJrS:E3j ?=YbrKn!Yf;Co r>[Sryh3VIWݠ1a#1CݲHlz/(AAX^jC5J2X%V^K^Q@\`hd.Nl/^rŧǶ"4{F7=`+R]S!NU((A"@{BUTrI5$Xiz_Uo߭4^~GKɲÿs)m TЦ;1(y`ݡk:#|T=j=RGcυ&YihA$(F~zK':6Mfzl=&UJ-7QHLpYt52%0c([}w s~͑_Olg' u`AɍJ/$.'}aB'q:b1KhLPSq~L2DoBG|94bSєH̨*.weSchD 52McAb ].ixH OS`me>.AFO*\cAEmf݉a+ 88!<6U7+ q wYJGIdC0i lis<2MN/,l|$!z2RvIX* 2񵒔_&'`Maᥨ͛MO $v2cŚ'nSOf(wSLX*]34Ê/gE"F ߉]Aـ)j$ވ V#37~E h$0EٯmCUȀ-Eg#)ELJ_nL`+&1xbc*I u*3V21v 5 I<Oc5ոh/?Jio!Tmg}k0rC¯5P_)*j޵g@NLԜ}4ClJ&xIV`ydpR[aGi~ٖ,ղYo*l+<eq59;Q3)T4%a~픁}z-cl,ɅOgDw2tr ?r0muNcx2*xtrD<'JR$AR^WOW^ؒk.%$*h~gMʊMjNVi8Phzs֪ȋpq% KDRf5}^h*^-/ _H꽓Ei'^6dKvhY^A"B7H'M+v!*uBBU` ^uf֕!^dh؄*~[k BA݇f]Dz4̕3J!ClyA99@"n˧b}9uW L6,+*RZp5;7e_R&I,*W&iEٛQ冪HqFT'V8ڟ]x?׹cp'c#@~["/ sE w\y[Vnn QU<ƺ[CevĪ nD]RP& >m6$TOުC֚$\׋/>`P_-#@2`ɘFWVѭE{L'Z3Ս:(ZgBcHsw,4:6?. ROI%얒k,!t73z~d jWˬ\j= f '(&1KCwDxxQL~.\U./K[tJOÃWz!x ZBXsCcrUHQޖZ_E EPY^#mWU֠\S:j}YU瀏+rr+>* S>@aRC7kwS_xuJТEz_֜QR lnJ. z:&1dfȐMkŖŸ5Dоi@l`A1E4 8jNS[僚Bx,O)(ꌑnB"`2)CE=͸3ޜ{R_XuaZ4IJBpkTt=šɋ Vh.i'%7LѢ rh$p%mo&;yNiQWh3^w_`<ÄЌ/i|оwi|T1<)[sx÷3Q :XBxmDb5RP=i5V2g%= 9gҷcQ-vbB}'p(Oxc,抧8~Fj~O}nhwP% `Cgqn3x!uϭ+Nߺf4W0O&,26 xz]㛋UB*eKbTS0eܪ$2tZ9N`FNK?<5Ty}qbm& wi`H*߇.n<ثcJC_5(ԯ QxBT3Qյ0t]z\V3nX\e+6Bk{APAj-dWIIVUZ6^@'XgDLرm L^xcڑ\_-~e>8KY1^ZRX*;kI{@ܣ"^ܓȀE_\3.!;x1 kb5(=;4M]3,YJސQ_WS$ab7J*;ը6  K<},Q.ZdA5YWpvz=Y~V!{`SێNvZdxo ~:Z"E004O-?>us -/y. Ղ=;]2[߮mO" 6.rV1~a,T9b؋YJ%IY6KX`,# Fhu5~(Ay0r(z/0؂=lk/ %M|4fѹ@2!~H݃bՑ596[ɡ!3)$}D∵&_%D0}XM0h,XUuL/ **71Bp Ɯ&ݍ9!B Zwם|lf8]1*7>c "'Kf pvٛЖz6"R\۞5))UW)2r $ϣ1#UH`.&KNLG r (& *M9)9zsOn{_DUfwzK<|KUHt庠^DJR6TՂ Œ:Yժ>+Ft{nBn]/kMpV#[$*9J.J@JI'.Gwʡ⣩I'~,_{Stھ'̏Wnv3,)/Yy"q1-xכGTuX͗x,^ D(U1<:F]ibnKe8:!APc h]KYR@[tԙ%^Rѱ`ܩꊓxEk7ٱbY[ -(Ѱ]3deưVЧn=y\?<>6 ,# oAY )v#y=ڊ<55-*2[!yhTJ1Vn+J4AD85KšcE77IBv'0#yNoI# /hL{!ӈS-rcQ'Q<x{!cѶS>4 6HGPѕDH ,yiMDN 7,TS{d.239sϹ=AXZeZudz) WeEwGM> BTLţc,rvBI[ )$i R|m4Fejʀ ff#JB &_ [@ o^S=+'2ec钜Hd^q&X8NVç9 }|dZ`l#c*)O:X0z5- ԻXI| IZ2íP3-!1ժ @Tloo)( ^pK}B+|p[b :6Ԁw =?D% :(U6Dax7hh(&K $ ($m͗1J, yRwG}鳤fK`s* ,(X4_\o,v.(#3k@{IL#kXvp[W^..ܣ Z73Ȃ7p,~$Vc&!Q`,c En`%5yI69lf?zBjaT9p8N83Zjj )AoiH?Y9Km72->2SXJ}\'f47H0[jvSyK;sV; ;C)è5Xol7."&&ْY tM93T[w-Z~$c;3_v;";:q?D/{Ga!U#Iv]&%FRꄓD뮹J Xb^f`FaR4XZlޥmD͘v5ӻiX|(+7m~X >N- u]NRQ|"GLRʶep8G6dڰM' n&K}xc#4Xl-j-rH@I:Y!t`jEƘޒZ)N%q1;,c15v*0:4qq$ϳU>]bLG>aUKF3"ByA S܉sᏖ<(ԚU~Y۩Ex cS1C.,9YoXlmR-Wʑ|dݵ7ݎG(%pď;rƎ TDCJN7${Bf20}XYII(2cL̂ [?QNʸAm2ߗKr$8x<1-kaX?!:D^۫ !3'|n-i! Vx(ڒ|V-6zn d>O Se 9r_Vu4QT1@󢞦]-r +n)c.5?k[kEwAgпF^HI&EH4?,ԗ[3.+ TXIhOc6XYd7;OM Hysfzr ]^Tտ^{#bDl]£ЦJ,8uX%VOHjݙ*v5"lP= huGJmꤠh€M)<7N)~m8*^Wp .:%Wk+Fuχwb1zzF?x燐=W0{up_<:"d٭"hio_wJg XRQRe5R5qsUFlJVʉ+58K"0U@x߹H.ШT!)&|miNWd҈Aeqdu2!d٣0<9/3*A*dB)̣g?|RCG bm]@4>+]Qf G5T6OKw`caA#v)<]>eiFPx:.A'5rP3Q*):qTֹ=xILh=}y=I /_7b %ޯ(tlk7"VS l9jHw:QI ݠ1VrwETu~iE̩WuVśGc.NPԗWx)caNE}gg߳i}cǁ;E&pYd 2Z2Q޶[' YC]:m/Eۈ_ɺ2;?"}র@kh m7Ͷt 0RhMQwS~nK֚g7p:> J@&>L[\6 UV>QG8`ƜyU^2V4|kζE}6y?U\NV Yq4͡۝aa7xYH$"6 Iy{ar/qǭjKCpW5.2uotpRQ|I[ugNJ0G-f6ӴUxs .hi 6Lɞ_df,P"JBAk;b}wvd7VGw8= q|I/80`"GG֮d^zow =nxnUYWxhx0ጆ- &RWɲh]eu*UB{C{/Iz.UĒi*6[8 ϾDQ&P9qVռtJ%0mWQL]_pKSZ=kG!jʪͥ۳D\{~JB9w{[[zx!#_ ӹ-OcT0pyWr<xjHV֐!v _#'#9Koq=YI)-yyCS6쮛Aשے~(НۖXҾx&OWivO XPTe܇z a3#H>K(2o}$'},_1୐~p9W5[3}ZD4eu `)j X!670j4գ=jڤN#j+a-u)ҡ@{?@iOc+mH/¹@Aq8?a`@~ /a"¬C~ƴQ^d}ӂѭ'^R\==\դwn' DZCz5RʳC]"C@Ec˪X6q[H-as`9hǁtl⫾\/N ڴ`5oo2tCF|%l%5y5Tp; չ C}s9u)\b`S nʘJgXi5*̯[P.;Tb8q Y"v;:d?̧`T8tl~L0T<ϫ V8ٵrE~~Jg9):_s~..;A0jI[nb#~H.`a5 dcsSfs8=3]zЏC۽b0H+ѼUT4qkn׀ۀ>F0W/29c\NH*W.i;Ob/}sюDg.@b脁D;5ϳM4 袖m^*wNחdeK:; XS4Bn4jF1`([F EӕuetlbW&?K_K߫chEAk| hh(cFcĴvH!t@}P;6=|a- j* >*"hEaA[iߟ]xפ "ݼdl5Ws\j-|*%)2Kwͽ{6=%Z ?@>! NSI9|mUټ-vOxL&0jgI~faASR%7'zM I\n GNEgZ0Eeu- V?]{FD~8WY[0Xdþ|r'9p;k<Ƨhtsi?`c-6 g :aJ9/=WbF+8Ĉ,\Yea1ǘ0go x5opJZoϾDY~mOphMP€пF< WIQ5U9a,7N^Y2 72C-cm| l_8嘯қGjR\eXn{ז<ڡn5O]D^gؒQ5~<&웳F5XsaOVRI> "܌3sýo>5Yfm~Ȁ/l:{8w8 ގF;!J$ؠEƸQܮ; Ñ`ѺGˑ&+)ЋJȆbElAW$\gcq]8[%FF{ }t{˶ۉ~?|%o,uiݎy\u,گƾ(j$`ᑫ# g]ADGD2je&J*, M~&ե&+*{P pN8Vd3Y7%!<䑔;qb8=m&n`-ݤ s5:3`pN2j叓`jp1uTrKY12UD2ՉDžB*Jg/ b16-@=LdϿpJ} 6:=pz7~[J ێ4_Kv0MBI0 ʹԨDquScZ-)Wkj)'~pO,+Wb?*i |?g > ~ xӿ?,6x?2^x}g#t?gQ0|OԀ5>sͺKRl ,eR . + V- 0%V`|af>;KqJM܄xksh?5G˷83osGodl-[·q䮁U}[~i_s%x[)hny]vBǬRQ!t|#,ߪQFmJ iYH)Մ+n -xY$)\4E<&V8MƱ-/;|^۫-r,ch6΀clylϫcپ=k_2л`Ŧ^-,^{^'W8N,KtfϕKO#{.L$A550'O'/蝯=ƾvቛͨ 8Q[]"ٯ&n_DV"JDl4iHZQ3Ԍc^}s8JO/{ _O]|_K.E9'^\g+h1628Gڼ>a>Ͼ,Hgw)ٵ>ZT~[V/\Wn(# C_`)եJA #G8FpF0biՊI3NjmYòBThM >rѳkClѧG+L+~(s۹7^޵rI:p-_7 '} {3;zܣE_뽻wdY<h@솰6/LV!u P݌9T hr42S7K,Tsr%!wU38*GC`wՉT + 5 ,.J[*~B5PhZx0Vȳ{yXKxE_გOyj J#֑WU"Lc* d2+ #a5GLjthu3RFnXˌ.t[&&#E!æ§;2͖x,0/t.{4}<AolK|ZHKe 6${8]Ua^84u`"QT*c;?'_q?P!arպ6/OV8JuY9hs抡15KKz}sX\gH|hoJ{;mI+ 1Iw}<}*9譿D.nl;s[Ƿ_Glk7Jǝ-_Ӕ#ƴr-2{w^9M)vk G L+e1ѻD'OW" 3 \]pラo%b;ORuGBt^`od{|ow~ě!S4qxy& + ^R8Qѵ՗9_xjZk^3ڝ7e hҗֲڔ_v u) Q!.B umbE8iSZ6i>>ewwj_c,00kBK] %+ Krlw֝+ o ڼ 3 u |wzi\X|J0);EghrqT <M%mimIIEpcg_NU< 5ʿk `$Y!]4s|P;o9 'DR֑泊 >3U7k?N>Akm% N2y[-D˵d~LUJU\nni8f+DOxv Zat! ro*3KZ.u3om|MƬ -F\9U`_'i1ƘoԖ8[O~[Ifg y*5UXAdpsKR%n;|1 '!m3}% _XdJ)Jd^Ds)S?h$V-nǁ~Gf}(lɗ\ago~(;r!t6涅ܬ>w0Fv0wŧi}^cym̫+zRҬ˵ xuTPvaXLG5b6YvbJqK|w=*P.IV$Å~E!|_{H0Ĭ_F*o}ǎĀ-Ǟؓ?]?8?7G6nJ&9@ ^8d,7W_TՎҩ{XYb3Li-$Zʲ ·2"aoN)d͸F-Ň-IC˝qG.sީ99\x3\ֈ5 -A]T 9qjJ6Q8gbg ,-wԞ)`!ŔJ I"%y=15QYd_2cQD-գʻڐMJQoafne?:Wkq`rbQ?c#J̣I*[c)a )(ZH9q!hNytκ\lC;Bʙ5. 7Z&TipO&ۯL^N&@$gCШ%jԛp!ILJB]>r l[L7mxXxfG\vYZ$fpNxq\> gW - {k{>V(.NSM''*sn.$s]mkc%.\pR`Q&KBuCΩTTk9Hd$AS+zEt8tkGt/qޢ\;U)k*Wg|6Ȁ7 ,+ mWl҆BΎ*$kX&L Pu-aWKHBu/e)S`ojiVV9iؔgHOǵ5R`ևN;92MG?3#!z9{5 ZP" $+>"y[b&\w/kb[~!S0$ ` @ A((F@id\!Ay=şN]UV h33^=;y'%ػ3\{6忝M)~uwnT Zgnj%niPwLOQRy*nQ8GqbS`JX^5HBºHd~F?³(}+UAe|&h!J$+ H{CJWMՃEĺ(MCy{;?/'JaJt<~y$؄?+ne*I8%7T!aB \,eq_ c̵I MWG݊_'bWשB |yk;(a&?QΆŜ90)h-{*yx$81c?[Db F Uů۳OXϒ6yDݭqBy)UbuLJT߾%[J[w1aI=s[,e(͞1qM_?/ ^b_S-ÂEc w& I X6ȟ̯MSD>۟0dvhfmA㖛\sln{ǸLeG$J;vTV0rXXIԴ~(RUh1]ՁwHEG̽aB)86,#szkn2=fg-U%3mx{1_Q o}.BרW}/u1-v0uQEȕR>^GYAVF'ehZn(Qy}q˺W)Opj<P:__k5yX-`2B*fVO?=׮'˽Uk;T3#^<70ْ}xKI9;?h>&J$Mu!_EVlRKVS =vxU,|J#hΑz}Y  ہL2BIæÎ*~}~ՙRdKF^= WUx6GB3L2;L( c2ǶG(|1Q3sssKH;&D(%XkiBB<̄T6Ξ)z_KNfET TIc xR2LmՆ\6ȵ̏^!K9q( cSKN5 #vdZ7̠1/WR_9@\\R'h͙&;P$l,*Nn:=sMucب(R4ctѦr$L,+R2e5IW+DC1nSH_!N><ǃMn廛`BzF7 [ ݾ} b8n/Ք|EM/ruNJ+lZ@J&j(Z!8d TM;6 _er[j*l9'q> gQgLeƿ2j-[&TXV ΗׯfB_AoKLG5Rmp:,qKo/Bm m_G۫BэdINBSsNedK>llJ^ӥtLZ(֛<׃m_=V=hcӌQ(mrٮ>0рw]RVY9- "(#n 2!L*F9[jqK8 j/n1V0FX^γ=眣$$ m 0J((h! maѫ.\|y}(9-gWe"NB{ƼA50!b`x@t!T}i*uH5K@E*K"}p9 F6̢B X\T>Ah#\ Ԁ jOT0%: G"KcI.~:윌XmU {N׸Mr&1`z `z۫/|>k+Lr"[3]b\Xm%)k6K׵4!3m-T,Շ-P }?dD 2\ Ie5 Y{0@}20,~yp)`ʟ/|@%'Kz]zlSa$s.7pORbR1QbVlBEҌʮ&ٖFseQܚ>ciw!0W@9G1ϸ>0, 8.@7='5Uu~B*-L:NoqBxzl:V%0rpԕ`OĨX[)ڀo9if6+6#_..zMt[8 UEMw ;r+xoU'0ƾ _&3`Mi7-If\ ѳсO[eiBPnIzC!|삏UQ(UE0/egޯ99嘫L+>?bx\fs>a; 7|42s2o"!IWRޤGihM͍vyϴB]w^^efN¹*鏹G5Qyw삏| =-ZZ2Bǝ'kNuo.k05 R jP,XR%`7F)΂'oo횰JTO49^ 2р-|IesWfu2d2 quN RF."E-'Rz}gXFщ!&eZ2X$Vkp[*|cVWI_Ex@l%t0``]%1`gnF]#gYߤ,W"yZFvSPEox;U.3HP2(_HcG2'.\_$DƧe5;`fk g4ZyINRYWgNJ5FKQ*pʞJSF_&oZsrk;LׂBVÜE )r{J pذ- OtCHJ_Yp~&f F)NLu/`П'9(:¦dyš|\SIٹ -c0·X5G {]a0,Εmi!7uPs^)@r=6*N7keyQDŽv纂 k;;nmU:꣈}%HM*ஷiGy+ypK=ɟAIF KT~?S0,:DWWw\goe{F pP\F b>̀EmVyEG<, <-|gnjU14P>K[e@)2jTjB-Հ^xB/],>B{tBAa'%1>8JBOd74m#߫vf*~8\&aϞI%&Tk՗ޗiuզ*R>7x;}fz`nT;.%`E}0e JIު&V"RMw,-uǸ`S#,-~؟}Jj҄""_#Vȩ_pyNS>*Nj6%bhBH m3:Ia,of:}/c+z{g|_}\?0/ ^{,Pe;-%mS5y?ԉGKFhS<[^x=[~Qb~נބ54\1%HF EssVjJ}ƚ|@@1=Ո\Bg׸g @O)/aO'dVvLaլD xOastVnfc(ހ%mKxʛMj>`MwP0'o#SA8!(IRfyX=c`1%ݖXj>l+ |;. S.8.6F岕!TQb>qbL l1L `˥Lrwv \B– !#0=%A&%t#07־/pa5k.$S+Fzub`zv ,UQ19>8Ilo9SԼb`|DPB$]HaE9C kLeUt~ RN5vd3;r?CEOFJs\m8_FyG~$NkZt4Eo.xe(W{|,ȉR5KEZE A[Ex%[")t5TʌJ1A ŭC1=t {aEaA5d 5DI7 8ַ*W CEFwUlEKsq0 5JL^NoA+v&mJ}F0bj' aЄBi?.0RE_ohBQb J@9 }ؕ&bM8u񝜦;0/m+lVѲ>j|IF?V4NB?Hll.8jtB+&yyh\eg^A\1s^Faqmzn분kIjZԄ}9yaҭG,8Sl5 !_!NN64S&/!v(z5*"m)U^X:uT cͲth](sDMxZPS|8#9[]M6*}~{n@Ts>1unH5];ovMJry \DYSb }d=K:=!rEl Re64ӒBJ KzoUJffEyނyOh}KᛏÕ홽?oF|# \6Gz_Mۄ5Ϣ]s.KU؀M&br\D(Z($[5v(-a@~#&Eǵ+P(1Z/!(%N33iu?s_ sEZ| ,[lWNr*0RV޼Yٲ] O;B7-KUQ o0Խ‡14/r0#L#e dJ8 v\Տl2K#\P3}8 &yѮopY݆$.o)p{ÄDS15sgFhoQ>`P{EiHQ;)P+z+̀o3|j&rg0nizS&9NOcUNJ^ >‹zrfF[~elݾSl=h v?XM1=PvC.?9}ZR݉jRQ.l4#\;^,KG6*l˷G7&9uN$`%bZ:$YR>NVtZ~c`SC񡓍ZYz|uwq~\[ynэ@}O߃ P? =X ΞK:Mfd^w˚[߷j3uFsH|KezP0'=eK,DHѭر r% z5T-1|*&(%6m[  ESy=- N6h47_M=p/2Sn!+Ƽ ,m*"57`><L{SիעW;~W ly,zj)t]v$eV Df,{뷌 !sihbC] f11vDPͭ'/RܪJϓÏ+L_N\|L'gJ#Qean+UUX1W^ T n{m[>rգf*1,̝Yy l΁x:*t$xqs,JC UO7?ܹhThwtVQ=ޕh֋W/뿨Ώh逯bjnZsw?z^W^ ;zncIǏ<>ByHe0 JoErFvsC8ShbBb_m|~{3|Ks' tժ)| B;0VQ #@E̵WW^-FxHf#ݎj!dx+Hbrjuէ2`c#)sIʈ{6Pq kiI,~?!/](!67΍Bc׶7~\e}KhųBsiـfCFܳ)e6Bz+U6eQQ 0ޟ١ps}L:d/_f?nkpڪcE ˆ:?G2SA <1ހЎA6kVem`NPv;` =x[ETV ׂ !Jp:֏hTmOb*<~zeY`S#7-`ʠiR!$ȫ[v hzjNb˘WWzL`Ċª|QvKqGϘ`zH M@wV35ťaiT`U,Q _S<~P[(|lV8ծl{jjr3q1EjKŢ)`TX'-d5^Lk ZÁXwFՊd5c_Kھj`$~9@IF)ؔW!2 Fjƚ7M 0ʼK+ J&{ Xжk`0 >n"׈n/9F+|z.($igcN;D,0:㚍KUQ6ջ*\ZQ'8EV.6t0h(ڈn9֧ q^kå$Z=\J!,c3fl.`ڐixnό]9 .nSGa]1 /qUb}¼uR>WcܾR9,uV෦>̔!cac ػ_ g.[W:n L8ngF(o'Eޟ8!6+СsH&af(-!𼫦?LxhM{n3p@f x 9؄.-IL0 2i.2iQ bg#߮5 Jd}xZ. kE 0B8;^vz7vmpo`[#>Īswz}ٸ`EGy#w}J=Wy}&RL(#=rJ[tN(3ȫɴUE !$x+7-3\ l~?N9kL"HSY5ۑ癎G-gW3T,Jde$W芭MQV b`70U7F~d:֪;"hdBXHkP`#gҊvA `{Ҥ:Ai+q-8Uߩ:_X'?o3 UWGKF*hLL/ԉ3B:ћ#tCT픤etI=e>?'zedt̮C ?ϗV:=c85E̐Wa#)C.aJ}׊Yvs}/&tą""+E80q~qmx Q KC_;|WɐCv˪ȕ1%#g%d2VGhd^o}!w p eU$6}y;s24 N^j_jW[pL$3WSw@ w7a 䟙&#]:𚤅Ei/]Obѹk3bwo ^|gӜwf.fExV<67iV\[Y ajB扒OEft7MCMD(kX(ګEyD– 6)+DK ܀B︁JI@,VZ|kŠxÅv$>4k\J& KG*O9ㆺL{jژFW%Vdũ4`C⫤"-ҭ褴r.33]tI+0l~ 6ck**􌽺5Ec+}p\fa)U$SK)4u _ԣWOb$]Z;ji3]7#diU}8 o^ {at(,y=OuԡOp\3 se@`p{?}#O4e3_hqeGRd] '[c\vhN)_(Giwz2 ÍҸ]-+D1.%[| QᕐK5`窐 4XQ#?P2i#y$9 4izL={U9oâR8Elq UvsߞsLϘ!ޭC/w=@ugM%WNֳ9,ϜB= Uy_h>0P[FQ4`66]}r pG$<4MsEomWsʁ O,HH8yJ4`:bL.ΙcH"p:X#7}Pd(Lkb*μCG-qĖjn(GPl+Ͷ{wd><9 y嬞azca9 Cг xOU~4VB|ܰr+ xt=TI>0pɣZ ?z)Db6X5&"XXVTnbOG$cnch:_#7j>yrY|]B73f,y{`3*<6q?3yX|!- '`MEhlXKƟl,C'Ĉ^g1QE+9*dba%SX4jΝq`,}&چ, 㗋ݝՅO.{ԈQ+=k^goMxcj/j<]iy o?hS$ X{o'nF%?;q&d&{}\q`J^3 IUPWQ%ep1kՈ'qe!DHƯ֐]{|ـlF0e浕I\8u:0Qmkshdkg,Y̎&6+e.RdR1^ !t6vIX(kBYy]ҿ?̅\bK5yYy=g ),Nyрd ^m-\D3Gwe;=];D+wP7FoP3vKw?FGn*8cs:[i tqy ѿuF\΁K"ֹ9cY $ӧ3Fc2 1qvyJGfxVk](&8ϋ+nb޲B.bMHZ̀oQݕ̖`TQ_@Gv]壣,X("֢!XFf#wփE.>%@} uЩ)~ˀi1 Rg&z QyXliz:! \gx& )&Q3SxeUF4%rϛ94幽F%%:&1 n ;/ݵ.$'*bDZW,hr35W fd#0?eP|}NLmk6'Lk L I6`EÖ1rR 9b~8L/ΰHw`\SMHaf::"r(<upUq*{-06kloHG1i jd$Ns~L"PƆL~ZhGyqCkm~&5c'}.h\d+b4r"66'T{ (ŝ_zwј6Cԋ' |lYB (G>mdwW$}ڗeԐl*;ADoV2h"cۛ@AòsWߴY0ЂDՑxQe6%ݫP#`f}Op]F0־q,V0\"BAnp"Y BHdM'JNpX(y %{97 TSۼu΀)a4G_mkhV|Ow.K`mo:I[ʈ*,ηً.tF`[]MZQ%"zްOɆbёG9aWR"!Q@-[YΙ`{L>ף+S T*mtI`iO=m2|IRb+~IU`26R,(}uy_ЀY^IƼǞF6݈wʓ| kaF'~(i&l5hX;s^45N3x:I=WyiB1,_XfePhy'hB"Ӭ0- >Bn~YIE`2L%hUɖ`'y[r@U͛UvP}esW,5'!;xRQ6|#ER?HpVGsQq] E΋X7xԥ.9\(ie0(z/5ϸ/vml՘TtHkW;La\,N 0:>o՚#Q]sgv2/Y]>ȓ<.XJwt2 ~fr> Eu,eM-^i%p0Rq%-񅅤f=M_A)ʆg[U DP!6V ipί~[00oJ 8#Q yƷ$b dG•qjKC)\!48`zyT^)](B:B>"7`+FJAo;xE~`%?uCmUo)G 8.I:zo=zGֶR7o߀hp$`Vyy?b7J q}7 2 [t'C."$l@.|٨v.OKr xDü,{ge̾BſIZ@[nQ|m.;N` yփgquWi%b& f| ;qƁj'(#XܪHD͜3K \/7hoҬ}D226`\qbk9o -dáӢj*7]hJBQFyݕ]S8vX*K2N`rixih,[|}[<uCp6"ay-怇bjJf5&"l,G7q`;2u)?*2j1S'х"u!-s]&vyNpr}@Xc cUWӚWzM Vr!U5pPTW3߲R7Ӌ€ЕdnJžjj*Fw# ?TnDڃa敍GjM>Q"-`Mlҙ 2YNYtۭg}d$+?uR[g]!hAmlYPTmS!i^T i.}L1&\տB@WEl?N*.B5CӲ}WevXpk̻PK3(+H2+PfBPۏ`!*VMR8:bV9?= `ޤLS9]9Fjsܭ->j&+q70ק-]w^opx Ƌݕr?&U=k#WEqwyj.kԍubJt,ķ 뗃Ĉ7%' ZcDn~Y`Vel73;DFnr2#HF Yb NT؂E]V$얺\,0!Xo2KLK|qkJ.=:d0);[=CݾWUL5S9*':RA[VڽYrcLΘߔQrWyzv৛#J-|e?$%SRZwBHo^!a58w':x7 n pkԆ $]MMq舎Uezl_lº} '; UEYq} sɫ{OhGDX)lCj}bD=ۿ:X03sɁ^ ,yYzO-˥oTJ,?zv4Q_~I.Is»foi"P |4|"{MJy1Ό1eV)EW3@ӉB` xd~+^=2EVkQ>VoA.UvMB؄N;Z.k|d̠z6EZ WNUܩcp|F\@3\.[~,WK,gcjY0`Q @O2Ӌ:پy'!1]sx'R+eK׼Eki__=xSebS-c 'o6+U`WzR-wJW0jj0g$Ƿ+J:j0ѽѐrM'ҒP+4As`;FGQAIJMuC71<><纠f$z'(7ͤb+ zJzm5x+g9M+ޞz o\˚-%&-ලm:Kx%V̀Y. )`%H^C)W~-l2j4)C}r$<1'd-΢i .ib?yN'269o:-rzkݾs&y[<2V SjT]n+㧏/PXmr5E`j!Ğ \@IMv_8K\Jk"ˑ )RJ;:@*EpuBL wrcdRTjFu 5x`pw z8C:YPM*r.' ,KiQRhuhsyaua9κKVr*G܀`ڥovN9pO?;,VOcǁ}Vt(\06Mbгyk\mC"WV:һ$ אMJլ|ۑVKL2w8 vl9 ~hɈ´+cA%v]ت6hhO@]ිk֛'.8løѼS3">k1 iCjלfA, C*=}#։l24g/WYiի3 MKv~;.=xg{bvD̀:5 n(6hStb' Ьbe%#r’}sFYEM1d VF$i`kLhiqͥ魯&]Le'˅Yćs_x w|L!ʓ۹| MY&iNxuAzW'Gp>yS>l Z 8] ǖ%r5!O ũҺ!.x-mhc!WFmoƢR CsNٓxjx G0Gi'䀶j.j$g6RrbjZt69Ph}  +jRgp~(Jɠ2+gN+#8Po0`_Ux@hԚu](M?df}> 1^͝I1o6|t21P̏fi)}NPQK|ģF^CO Uhwk[e<_X3<(~ɷV9ˠ8nXoR-A%& @O`fU߶0`YèWMWfE%o;d'=!dD>C*YMɤ'4Xn.p"9PTFDßLTAd =ČآM7+O:Z6'Q+;``à$aiU$.?U1 -rE00.[$fz09dDf Mi^3#O)tCfUAiEܗ!5%ckU,\l5굿̀+Vϗ+~+ hBG8sOC8!jnWԉf:ryrB D%Ij(PQ'NvMM'#"dFy,{i/xLq]+UL3xD+C]p\EaͧgPK?|hkȄH?PTRa%-;?|^9N[\w݀M)ň?T)diUާ3 0{{p֯2~!4 -PV*y\γ. wrGPMUU5L&H$L&IUUU, ZLǖ= |{|2xky\?w"~&nCrZݟ OKuZ-icד=`%̹0K8;+j0@Qjhɸ QKL~Y_d;`"g$@0!$$\S@!u+| UrfnFBt:m%_h>$V%9fG;΃oAc,-vZi+/nR*9o!(xϔ`VkL8dC@O2yh*(C%?%?{aIw Mw+I\an5GWbW0f6]vm[سcY ]BHu5^òt|?j55_|Aie>4o`\;C1\7nzJj`m;?z~飃O唿ʍـl ZWr-cTZ1(.u2)ZODVSh/N{Al6ffn\SH~ bB)1^t֛ѻ_ݾL,k,Yc-XIk 2&pCvO.<'<8宿z6Pq3+8q6gX~Q+F];n(s>mkԬ6΀-uMB'<\V1ڇ>_U8f_)XiY*cN*Nf9r U.M:搩 uuؼw%<]F|8t:B!, I]_s,xΔ<[{ i":DQӶ^<].Q>UY ߯JAWl2N9_ȱL w?S aJO֍݀1dw`foUW9%{X"x\M"b 3C4v60"%rnH(4bUQ5$R'jSomW+;_gtk`o8.3RgL V z ( 6{˼5>RHb%=<_F0왧s y!3lW68f'?)>K.)J3.;%<#SL?D+TaM MhO5̔XAzCO K'9h8@G |luƵQ`ær/a@/mx+³ig!\Yyi\W,ۿڀV7 w?-:Iid}ܬuHثN||R[^/k$&#'Bi6$;7UÕ2Iz&G= K3F2ΈTF*$|ohJS@TMYM|n*ό|"pI&vnѐ{^ . SrcɭĀK ]p` jaG4}q>w^V;|٥go}˨UŅ0 ^o>ȐB!sEɒ%bdGXoL톶b4v]@g9}Zz('Lf9As? l|.g4=R4.I7*Ѿ 5FG6,^lo39[k $/eЌ<_ # }Ԅ ԮbX6}_7q*7â?:xZ& ij2n HٻΆ&{=df!$ =RmЄ i J1 mSrΙI2>^Iuv[{CE9PA%ܙB/P9Kw܍Gy>a-OJO2dJko2! Ɉe,ym'oaY)Ԫ̸T-#aF6dnoxj&(/S-iV $i|.N]l[zXk#JYW% Q` xm#k8+OPXk2A!բs0[t Jm$y̝5JF` %/2h cKFWGjXn4e)cL0!s݄ymLJߴ(U24m0AN]20 V%Lة} ٧^ڙ|KUح: xyi$AVG9EyGBhQQB1Kj (U2⎕tsIRYq5=[AcI.l;?[EB3Jf3ѶÒ%d!&PPVkfmkg%T]^JU'݌P"ǵZ<d@$!qwCIgqn/Γ.o,6?C=?1З }$~HU[ڇ|u>3Կ .ʒ<Ŏ3y6R]vEP|VE`^|~-pTYz2Ի&j7p¼dmm!Tgj%h&rCw\5V\2 ̵t ^@zݺ|6t}Yniy.H+fs׆w.Q;)L>;̔;O2\Z V]p 3+%UN !Ğ?m?+K"P&ӇTlhpx-X]YƑ\TSoE:S[0ż7O- p92Æy0߿u `v<xPU-olos*!~'RT  $JCl}MlDB "^o(hfZh@ikV_>?o֣+`~}Sb ;CvKU9 iԥ=mѩ&__ &X[uq?>]I@%#9z%A)^x"G8pZ<=qYL-ʹ?'eGc )SL?pr-rEi3=-Yޅmm} F q.N(8:FS_8r)H)+qs >C@ e({ 93P=E!0®Tuڼn; 꽼)m"xD d_K4?^2g!#wcҭSQ^PlOUӐuU@ILmL*QH JMRK/\h'Y|~mry$\kIۿu_xF a%?on=h2m[t}=V I~ 5\=x`;N#4#J#rrDg9!ԗ^bq?ډ+`YT`7JmDX7#{x MZظ=~_s1r$C p{N^1mkI`$>xct`ӝV79}_mгńS6Ulc2F ӏbhuLOիߥb\oӿJ`&:Zo[XlkhHYT5R{[muAn.EwɇZ+#喻o7y >'m4V;e |CR=ȯ}ݷ|pKq:w.{ӱMwT ӝjbd.2D V9ןJnUwW +jcir_Ucc+JKJӷtF)܆szP)qkß" [u)0+dnhfv*Гh)Il5B]>WM?x0Q9"k99R5 S貵cqZ}\-Y}H FpW-d@{J>7P}\-wz} ?̔*N/u6osu侂c5:3/6lmwZ|ڧxU騽t['XW#qϙl?KRoҬ>C]'=H>b>Z9{ϴTʷs hES}K,1k7kФHɯv%pux*:"~*N')$뀯q@\l}`m{Y{-s!-|-v*]¬&V#A5>>⿵]Z;SziW qy*F+S" 66Z  =S]A. ZBC w] xCz_z )^\|n(f{#e)!"e*!j&QR.Gn,Cp3vrk߰W[ ̐MW?ӊh44˱:UFv1D5n?9]kiZwPc/L-i9I`Y| Ћ%"OpgG+9uvY!d\m+xi{THz8`^JpPks@&BĴ4BRXHv!n?, lkll HiڳxOLT D؟jdCG/ܸIp'\GgO!=>3FZ>E0qz෣WpMVXO--Yk`Z͐v.\dBO-a_ĽRS퓾ֺzR5`y^n׫uG,4&N3/|nn=C$~~;`UZ%=vSmCXĬL\M'$w*s,]tXs~zxǚ}oIq7#78t23(Sy7ڜWGW~(}}PB(tZw;M)XgMmRp1mEˢԡrW|c]/?^&Ne-ZKӄ,ѿP,Qwв? 98nxN43DSE; M>Pc*a8x3 )"8n|ҽ VMו|?ݺFc nI(X;3z$V[ >`52"m!=t-V290iڤuY!tvQȝ"Vo!~Q3yH@;ЅOc+bG=ϗyC̄]= ϩQ|҈d# zWV $8IntcejMzнGc*'{nMqD}B|8;̕;3RK[T4 <0(8o0cuf~~y!&g-6nƂc>Zz oe37T+ubjqS_V_&*PCg~gD{/%b=[4t'IeK].MR9ptBT$ +0Q/ܿs}Hk,l<3n5&KRv؇}|]_K9S'^lt&Ȍjb ͆ۍPѿ-$?o ƾO1=. 9m,]ϏdgVOwqb ُ3۩nIqN!(v{] m"!;O",bJkPhВѡa0oK.OC{rF \wrwrK㣍4[α?tQ\()s| nR2tzYC B[6h~0=)ۇshV]^0*U|>v4Kڡ-(8~0(eG]]az7<ŽLw ғ~U@J,Ud lH.ʓSϛJJ-)ܢGm߾[Zvp*_AVH2ZÆew5YS|+ȳ xe}R N}`kOϼ`^[ߕߐ8%;;En YaVn<+X(+88y@9V]JlS:K1hgj`jJVвr,[߸տ`T'tAA9Zt`Ag $j\;!i &Ї!^ntV6Ρw>dk9 q GƬ:IK~iVQI?@XLRj\xlm>NIC^HkjfHq"~M6""D|Gt"F%_S|Nadr?rVz?~X]XV`/^'3OpZ_R*%ŭM<_1\:BJ`B]t+ϐ46ƛc*L5 <o/~Q6p;QXpob߉w#mY󟳥. Hr8hM2]P(;̀RNj$*CZgqF,KPZV&<ז?Q#]D]>F5 $/In7Xh6ymkbƩ[q)ަpۄ^Hr3ݭ5>ϋmq~~?86Lr)UC?Rר#Uq` UV1!],i"J!޻PP#i[$e}uy춽:ŕ' NW>yqWru%B%WˢXt-' /| ҅Щ!癦wMFqaf+]y\x kEU)-.7A ?N1T|#r#aq UnBq{OoTC$$Af^fF_[7/Joi8>xܳrB;7k̪pAW=gX~hJ.x&˺"F^݆rc\FR DU~S|aG[|Kb?Hi_ _n8riKS8A3)|/Ӊ-z{`-YE4(>ت)*D)mM]ޓ5K쐹+)LPz\Ԃd=ELA ?WZcR1rPCS)W}J-sDžPWy̜(JYك"`Eq/`]3t,pU%5m*-K9-Drj|-`!HES?(aI 0}ႏ0[}2q$Ό2 X&_؎qfeOє7Urpxc1#xbc~7!n>3%)iTր! 풧;cّu6(7M:û؍".^,_g^>h|s;Ovq%6 Rd,pkI9?8-G~l`ke] GGko9Z8ޱ@؄@Z-WA(S"R|$q9fƍ?~GlM(bЖ"SqLz*mi%~AD$o,]x{cW1~* m@{oaI2q>t ȸu=1 MvwJV?dw+vkO3ǝ!V{έ^^y_B>h/¢Ԏ+^<2Gp/(C~H>{rJCJ#գaeJbjAV}4?)vRѼ-!0 1(#)/Y6Lu4ou*bɥr)Pl(-'`z]`]oe@x8̹ |ܰS^5\@VҒc!R҄XP.K )iu.")K<^t_;@hP1Mp<,8 ~`nܯ0õ&~OKt7>唭Ub2zEw]Qϻ0,;˖Zģ4gZA#@ݘLtY3g:yR MGUGWNlh+Dpo;/2@>gFQx&yHK #bE,&gXρG!(rt ɉ{o .1 $QA!#NALw:n/ rwe}D'QA#킫kSmZ3w.; vE@k8T(F?^tT+L#uhk:վfQil#Q7 0UpJ'-ؙWKi>}Τ4x{ .iX)7j&ӷ}+ t,挷_^g/>jxQ+cxΜgPCgݨN!uqNշP xuB@'Ii^ 9_wٔ jVՒIxwc'xم7~ s rvɬAvvu $E̢\{;JoU+}wt8pN\-2Hd:'Q+b1_RKΊZt8=vCh/ߪwر$+|O3\ڑ}ۂ?Y6:Xn/~Oq|i1͉b{f/Eq^DX` WEO3;{^ͮl/OL _:KE(5edeHmq/{DR?_SG O|/|-;?rC0g^'_Hi!2 0vkջi3'nٕ]oE[_EY;vcvJ ,&R:4e`ܓ<`5~yfrQpPdtfX_XJt6> ml9O)c)qX?~\$דuYIR]Lפ+9YJr0|r 1VDF|P%Op% f|na=ă1qO89Lr  yIYb:{ΞBZHD^.q8U.b)] swSB$B]ࠬ!>LvT-~&LqƊiDZ"d8p|*v1Mv M:2-ݜ+v Qé._"!l?d(:m[D[ZmSH*Z [>ACO?dH'zEwM0"ʯk O0V啬&zS-6qsmtx"%iȖ*+'k!.KvOņS"~@<+G[OeAKDy&fPؐ043y"s.??6 c=l*z`{,;\WINu$ZV ^ݯuc|혊G c ;1EF=IlHi}-?yb ׍U<>AT!lva-Ei48HwIsJ1L^+"CYMIrhix΄/sc___f{Jmڀ]]kZ:N;';.= GG~(! !;cK\qq̏Agʼn?8T~pObN豉:S1-?A}dD,k ]kG/!ϯb#i*-vF  齨y%Qs-[KT~t3@ܠ+aѩt o M @V6٦>6{f_ڨ1D,gY7.Y XӺt$] i =RztǕ%q^}G',aѦv2)\GPszpm,/Hbͬ̈_]P fep7#xj* n,$m2bR3MXuw%4drš߾=f,!. s8g_8doBQKM̭үl;Z݄"@_Djܹ>%TJ:x2=h~ JFI=} ľd@ùi&5p8^ 16]] gjMf%S=[i%Wvr.sdGRv:7WV? _$bvS(?Y5n(ߢM\n)fe~lBh+',RBtT`FbĄ"s;35Z sY (^E$"O}<}@ !6Lpzn)x.U[|]⛸tW*%k{Dc(lKH|@D/ &Z 4\Z&iS0sIy 0-ʱͷTkJ=.LZ[V?;{^/yڞ? h稴9~τRMN~@LQ` W5W e+, k@4Pɔ:ѿ {Gy63̎+YB3V>L[w GZiV]ϻS !ck"$v?\@_z^'CX^l8p8\Ql`8Vph&bYz`]VXT dۙ h5V{LJTk5+%|羒FL`⣊s k݅9/&g:++DmPah3bi_Rm[3,{&0m9qD,kN;?Y)K͔si }6|jp7 !as>]t˶ oJrqpWgs)齪bYF4bvCh?//) F/_?`Bkޓ20q [f'1 r%86 `Q&p.z4sEGP[O]x֚φWN7rGUvJ>NSNBK{^߬p>ѿ IQ~~YY-0f+Ilw[kT]ڢO+s ,[+M c*dW3:jxƘtQ_{}vWu؃:.WGޝ^.c *9!Cfh ܉l56gqr]<"8PYگ*0L]Nrჱe@ Nw-baH]|L^?hx-LEa^_QjZeЃ\nu_ׂ##7U?C^L*tuB# @)pG]E'Ŀ%zP:7i@ݸu2 aXF!jYxJ m/`T}?-9ub:9JHcXIhj7<.N1+fȏ$nM ߒOyI-Q`)'@rIC'X5VC1+^bѓiWMIs9>⽔HuTyl\!4#)>[t7^roK≹bT ZeTVye0:$k* ._#{݈ ]F-z˷S82]bN)S[/+ZdN[ E qG H2(v{hU-qv͕H'bvܾ)x | ױ6H%_\`96Q `.ĹmA}0z e!RIKNQWb8W?t?`l*Napi:=!^9Q5e[g 4{W G#YLiE&S됩D@EhE'vs cQ70![4 o%B?`'Ił|w -cuY !&Qx.Y&L/L_5*WYmi} cu^hE+6ytZt @CJx&Hx ''I[3G]]j ӹ&ʖ֓ Uj m~b^SNoZtS,Y;z>{NBSϖ ~SCV ĴBH[|:I*@~? r->7OnZE)Q#LM/fx+]LPyR_N ){L(.)bOs .=%9O:Ž3̨z>Ϳ.suhj1_n+QZ겮jNR}8ێ6zqSA!o OtG ${)-#dC !&OR% fΚpY8nBRXWʻ&"M* ]FDm}oXuv Q%t9pJ˩5e{ qR rCE&ws}ju|/Bfk]UW?9ؠS$BhK<37|y2ag=XTWdpUr!X)"DG:j[; V*m[[U颒{,A}rLKXp'aطr6Pac>Mcj o;j:'Oqw̕B=Xѽ[oJ6d_RD{LiCb\sqh;W(a1%ppGT!n[M1&5I%a*YZ)zDXkyKҤbrsq"jXhmۨ} w8µ6skm6Q^Zj+OR&#FL,m&)+EVxf6fʞ}aes`TS|dO!m@"H-7܀/r5aΥA5ǯL|zLԨ@@M"|geBв6`;"V$~/)|TOBN̈!DHz ^MT|ޖ˘˩\' S8){8?vOd&!o>c&V&9B%LohGLzMJbxŔvR\^47r~A/禬x3>ʁ\n )+k+b.P@d!tm1_/\M^MLy:)?m g U*˲u v6v)%0oY62R瀸 ?Q\˂fj(2TFKwG`BpNm&ZV5vl{L(=P=exלUZSz55 &υ?k.Z SaҐ"rP!mYKA4.@8_b ju3>o` WVxw_~aSN1s&Ʌ>yIwcz6CE5jN%NӯmVʭ+r\(a ETlY4{ Ui!=5z 86[/1"8Jb$ _i֠M`]`wOV)x5lWB)5%]Pure枟Q'Ǧqq|oF'qC jiU~1o3m"a*Mt倲+JX5ǓIoc a2HOm[BTIIfao AsBM^Ayɪaw}j7\ߪ.lKcE+NLqNT*WXɇ\5[ŧdBPEt㭾^VR IMIc_@ #@($)IpS bwy7_w!4JlMN?-0Ѫ7 L';jVZ-`_rYGhTrmyxU(y#\};*we[<6w+bNgG쫖;mJ2a b+`,ʫ(iHɈbnIEWZJicUj[#][Sȸb處VNH;*w U{Tթ>8xفgod~dg:FqNӁmYgYa\+vp/JrȺ`{R ha6 ap 𩧞"`;ggDWhOݥvWM)!5k%&R-m&/`;_{CsB; [RlBMx@o|0[\}VPJ!V?R? cGo̫>> GK# `!Xtt8LHfe6:1jh.L_Ⱦ'+bh`gPne.-|Ib!Ė H E^3~WNrn@x.,͹Z{Xj!Dp٘ *5(rqu2?Al~XӅSm1iLp8'COy*[m핗ٟxl)T2׉um;pqb88ѱO~'2Wd>1"VhcΝAsXkϲ.2}` =|2j`a'lD}pKRd`d1rfƇx~:bgpd i b J j{v-OGow9Y<@ m6ϓj. =&*`ftD=CYT; |м`N5)=>\_oO_b_UV}]ihUkqE su-LՏ8y? ON.w\VWX*jBiߒi[LOHԂ.h̷xZMBl6d(3}%!Wvr2 Hy]XJ@sL.|rb ͛vۺBW8I_v<Z;p֎bu9LX漬VdR7`/[]δU Jh0Jal &5up:U#ZAHM-۹Y'?$Z%[AL"`Uc]p!5&3N*x2Cf_ 7yk}dJQi_XF3QE9:ߛ)ҋ7$f h̞XVkg >bK dS"6I=Ў&p?BY0?LB{/G׎0 mI%Ƶ_ jEͦ 6 !Ěnt8%E*\Wᩬ$HR,\[aQLǴD;"·?/m4yF')?^ |' vK +B.@.0DrvlToLZ +dMQJU4C1Ѻ$6Ǥ !KF1τ]S:0yբٯ⫇ L&Ff!a|ba֡N!9@J!hI36y{{~r+63 # ;@`[rYGx!{v,rϷ:`D:g1.C6籉k` ]wq`ap1iO6afZH<δҁ<^BdCP%&8ϷÜ#f |V&̆ԤUڰu =,/aNuFlZ;fեd*Z w0l|Zo"Hz |ġ YhqIal1Ⱡ8T}*r#C3&/o=e}_S I (k4~ `IEd(4#2ǶtȦ|dEC'&U^*u0fRfŞ`-Z VWKزvJ 8@&B6v2Z@&mqq\\yH֪Tw\uvbbF3MB%:E5li˷7l"ڣk3-zQ[n(=yayD0l%Ɍ.M_ ϊ{д%\wyV &4^4֛w8k܄_M}/j FKyGvߌ?7ov !¢y[v1 &`a34"WϞ|1oNγDIg˴sl0FGf:vqٓn1iz[I}  ̻4z l ƺ߬yLcyϚG0|hn6M)Mh78{d޺5+ *j{)LOύm7;nƇN֑ ٺpzM7.i6iM2a̷ƓGn qmq~[1Y9gAM6v|n/RcA5T|[`D홷m5yn7fϭm{mf+k߭ ќ`7ro?'\Zeo}*uf}?LFyD{➹}KS 2x??~1k7f3 )^Vy[ }>F[?Pry_{nI߾Tͺp^ }i&7۰7nv@*OǼ 6m56ozوӄ `v]&Noj~ &)npqLs>ck̚90%l #Ⱦ(,R(%"bQ1¨ *QsTjtXxxOKHk=w)ĤBQYWnncy8$+Ǩ_&Oѥ b-pF^!SJs#*aߑ6ev @S6|#..'K 1@)H7)ֆJF>OlJA  |614 u?%:̤7wJ&2 (lw4: ʖ._-ʮ6:22N!o55l,a:{[9tРçC׬6miCfϝiSQ3a.;piQ3>fEΰhi }~~KIY>3epnJd pVZD/i^$,cFlo\)=J&yH(xa0=tt?i>+'Bl6f8:['T>pO+TBd3PA @bh*R~NCPtF7g)"sa&‘"g¹p .+p3|<ma"^H$#"d R#H҆t!7 ahDa8LVL)ӌ b0߰T:eac<2l>[m^`q8gspF\;7*xS >gGaGE& B10B N"XEl# 'H$C )JZO*!5.ޒd#9'#ɟ( e!ELFSQRT;5MF^>~XȰd2kedee^ee=d˞!R(g %ǖ[#W&wZܸD>C~  > \< hME6ҪhhÊ8ECEbb11%%[hJeJg$tn@g'h4g˜9s>()+')(7*(VaTiQyQ5Q S]z@K5E5g5Z 갺zJ~B}5^j55S5wkբijvkzPbx0%NƘXBG{BP'JgN#].S7Ywn^*zD}~^.1 Z * s Q܌2*n㌙i{M`;2)tiL`Vivǜbac^o>hA`bj;vfignYeJ*jUkku-ZV׶Il6u}w7؏:9$8;a*2C[Wk8~rwv:sg %ͫ7vp2\\JܴnnOuݹ#G=^yZz<.^vrr&+i%f%ge*UW X]Zcڼծ'O[ Emؖ.oeEw69o:g͖}[p Z~zGK~ܖg;p;;ntY[$_[4+xWn,sض^^^IIPI>};})M)(,k,W/Ra?w 5|n_EsAeaO~bTWZ]XFP# s;~d{=\/=h1c ~}"DIɆSʛhMP汖Ik\kmmMXRsFLYϑ坛<{~]Pǒc/ xe<_qrטZ_onצ7Z{{wp[[ݎ};ܻ{}?ău =*~7%ރO"< =/yOOGFY?;3;|/ѫS=;6Zzַ*okپ>ć*k?1?u}<2 KWm=̘EVANNM 8;@MOBK;QB=4Q)K`iCY6ӵ(~| ɉ_fО9ŧCPc[s W"LBOYiTXtXML:com.adobe.xmp 960 960 ;'CLIDATxCZ!!1nMtMǦt#i!A.*=Y{i\ȿEn/~m+sӓcΡ!ge}sggYkE?W|sc}5I޽s1%=+\XR^Ul77Vs2S?|/DE'e״ͭ"O2/YӭΆ3 {\3ϿcWOsUafΡ3(pDty5mDND#r,n+1Ll4C.!{oΏ/jwEGD#=l#kV$$nbmؖ>g8" vc.o>K~} _A+ɷ}"5*vh6" ?,GS;fAuK^z?\('(Cxh{ڟhV??cWW9nKq0܎Sv&Cg+>5~)H);rnL.YJgS)l* `snW{ 3GlD(~N8S-|(l"̕1X ؊xm1(U|3͙-],:kjFħB&Y,8 v xe~2닼i%fl_Z>}WOkru!녯QP;ǪAt5+Xԣ߿KwuLVfdD(et/* *>bP6{J@&02_=w$ջ?q99i)\УYLc(b4j͂0'2AњV ->HO1e)." Oi}K2MKЗs5PY<ƞwkWvH!~ʿ,GKJ"fZѫf tk.cUJ`.jh]tY4@qxW!@| ugfSD$Q࿭\[bS̬SS Cq7QXǞ5`/2>Zo)rfRUDd~\//-@e#GRz5sn{c),r*w[v{I{[&zgoϖz(I.\q-[,\ϙSҽ9$R䊕eUU`ْQ\-K, P4)253o bOuCȪ(CΝovv ib`;N;P]k :- ; N|HU*'Nt'|^k(A݈6E*pw/^_ Hn;s^sZsG"l?i";}u)ʿS5Bg-]EDCS2sYmQh ZE味EOu;KEi/4E*_:W#x Ao%LDjKrokY$Fͽ)Y#(Mh|q0]I+G;z-%A*!v?OD#I 'tD|/cO+QvŖ(MܩgP $k긕]yg .T8gSe`jݦV6sLփF^3U.ԎȮ54j`HiUUo ,uFVTD24?&ٳ;݇mԙSvY,W R5xPF/48<]gRzff uCqD<\d"A^1 ~ OLGVUD;U4,Ow 73u謡3BBF~Ls wxt=SlSvTIlQgΆRMzXմY[v$={B,G-> L$Ce_9pZJVt謵"XPfwpN  Yi ^r<:y"cPSN4x0Ng=An4cIWkp Fdxv+28V|j4@A,^{K-G.[9Uzw$r]YMa4Nj..<8bC*\I%Ɍ(5dYr&{ H^GއMݙ5Y;֏kUQF~t{w3˾eM3l p;}{,n,H|9e4U|%30P<3`ɵ+xޛJz-`x`ߤa] ,p7|Q|O/XaFeiҫjO(O~{#mk>5Q^q4}X⃌=t4RVȏn,zwYDc(&jWj3[ycN-Y c/_%F[DLʫ ۨpn(0}e8|sHʅ/qJxo?u)+%17LՇV! $xba-_V(|*LI>MRW-CFJ'w&ˆ^yyݑÈY<”|Mie>`4BlЧcHn?ɶ-E^NėMVv('k/v2Žu"(>kն`v!-V1uVˈl1\tj,9X}=_V\bmU` 3HE$ZF̬3ةu}$̲rz oGr^cOgT&:w80dk>;9J/9U_cf{`zٝQY}e,6:.Ѳ2jU,Q"^ƒDtB.M.Q%WU-겓IuU#.9DnXRء0|oznc aL`~/Z Q<Yru_ݜr -"RCO >7c7 fGTMl/j\h(Y>*|e_vAr BY0Ѩ1-i yk~,I,k7LuN)Pƛ~A +BQ?&{5եi nDZevE:@i⡠9x[rB"[yKD郰aѯfܤ 3 ud?@ㄆ9AO_)Wρ0ltmށoѕtea2F^}\Ymgb@c똮P :zTcEw[%/({ɷܖACT a:kK^nJw[$W$bYXdMFrY.R-Y!]jQ3+%<ͅ#;6|#eP6.9x,ɩZ굖uw^RU 8%oKgYNM0h .Ȕg\!29(ұYJN:#,Z~5 /A AWiG?ouN :Ӣ9ؼ&" Jip\>0R1X>6k`rv,l{ALmZicPBϨ VFRY-+~Z?@U8i08:# 9L[/0B"@YP3CfC݁\Ԗ.Wkt{gN3\kWoY?(T N&ͭ8Ҫ0n&HO#(R >ۨy^6#oq߻Ԫ (sN<nceօK+zpN=Zgvj ﴝ^F/N 6^ml+R2,&P& < O j>] 2|WLbh}PͥDT8/IUS35ߢb}V3jg$xyu&AVh373NYK6g P ϙµh59,'U Z Kj'&X o,?qXSq:t9.O)6ϊՁ'Vָ3꫻`K^r@ZV?–V2Iݩ,xp'DT8ݿ>궰} tY:tM[ ])q!gq4ةX, (W:tj1u}}M540.?yV{YN:g8( Gū>5L H^eNܕsyKf~eu{,G:]lu5굉>6I~͢s]<@➌'`C~^z|ϰ~&O=}0OY.տKdޮ}M3x {,!LWrzwc֟/UZ56PZ,ZŶ6ݜ~(q_?gueCJ5-&JX) .(k((ux`2؝6qVNRVAm-*ǗtZGa?! ޕ1 L>馈 dSN7X^}ɫ<΢Z]eim|  զap*|nhKH7UT-hL%]L('%lr!t—su< xߋN" ?$)/}pi{\]iCn%SRŸ-C ~B'*qaZzh]l)S[Nzse* w[)x8L"2^I} ~38()? ?a4> UY=2n|7f ӶD/ZJSDWd8emST0ǚ8`W#fϳ翌kL8PLŚ}Wj%=% `9XCe\(dBw:fWt+3;&_ 6V*!n4a \tc(h6_xpD'd1ᕙ?i1 ӥM˻g}9K]oI7ނ-y[i $)i[w&oϦG=ͬ\Fvx| /C:]]xymh}T%Zh]POZx4na4@GP'npKҞQ_<&lz~g)  C@|[tMSE,G]~^J l)fRso aRؠ Dm6\-fHFyNxz-%4zqLB%&&g3 *dyVD|$݂#Qm1+BrADrkPӴM+iMv })'jUn6E 7MEe[419Jմ ?U h/K.km29ߕpYSq3]?t oybG>-e>->ej: gVx ܊S {Оw\_qDQ|Q5zo{ȵ |$^HQ @̕I3K$MS ԼN}u$P^xmp I J_dW.l5) ] |Z$&Ez&jqmD%30(g+O\ɪO6's< oKk<Qeרtރw--C8$>_vƛdP~♉c.\t,O䭄.͂I9䠿!oJ*]#VI/j# tϬSi% }Puz$u\?&Kz 3@=m#PϽf[}[8oK ُ(MZ*4fJA=̈́A}C-M :Vgi'a{XQk+˥\LpMUȆYL<$ft{/PU4CNx,c?$QMBxn^]r|-kN4Xd\{.tsD䊗hMs$s|d5m2-^&$R.NykDUiT}4(.:[0YH!o~ ΙTj{?t(h3  ˭lis]0}97X/(܇Ƣ`v6]"NPIU C.ޟ _|r918-=_&]j5ᅻ }yu Zc)1-J@`, e կD2ڱPeP|@dȁ4yuTB<ٜ\9lj:.q`kkt-ǀ̨L(H ^Ds}*Sζ0D:Wە`"og >bw!i~q޹TZQG &uY8^̪ݲzb=]-/_[. ^_)D>VU./ 1Dkz u#=%;5:._[*Wo:ghT56f| z$V b|nw8T1-eByjgG HpuO\!6ov .k0%ƿܦ0VMcʹC@.\Bfw/-AnW5HhC j8Ȁ'$:V2KŒf3Bڹhmn͋6Xҭ3Gp1Mt1æ;W >]MeC|$zIeg~LX!0%nߪyKOvucl[ҋl?Md5YsM :ֲo9Єv`#/腽`: ;PЬNZ_[* ]-NUEhV50]sSV<|RܥZEeʀ̨=l3wu9g-:L 3-[Ie3/*6ug@zyʋ2\WM6T^UJ ƒCINc#Ljzqn,y&c4 ]"0>`wr^ Q3y-}ű).n5_1m5A00._Ua >Yr >\ZjދG/dKq+\=bAnJiGRUJ»g5H;R=O͙ѽ’ @Ϛc#4ΨVb^/\W=ȫ2hT1V[ëW?oaY >@C~:#VB/QQ :M?C9@ 3߸wk(?T^fufYgvx$Q fq f]d4'CVזu9nZӣ.4,nF[qE˔ՀFEwW/k )h˥y-rI}C8iΎ*+ĺ>R~y|Dr]RJiDnrG<yavbْK?^݀U ǩK/]ѫCg%cʃuj3OA҈;T+oFU%F|ҮNhv D-f쐠| `Ql|?%xq؝"g`\Nm5kX?פּқdk>+ե䩢֯`UJ ]݂$&Uq"V#T.7cj,V7$2MR53p %[jmw_T rӼB?r VK^0BI}qZb sa qOC=/LSח]:p;L|K╉Jr+(94*SףI7Mnls*G-{7LlkW$FFٲ!מ^(Lk|j<:6(=ӭ~L(` -P5H!'e|SnSz Ql[zU1IKgp=6ǩC7W9r+JMGϤ}E"zI=f$[n ɠ!j5O V7q H>'(H-ƃ1U#x>moyC' އV)'#s{Kc߼$" 󌷰#e: JTٽ܂ʁHp%:g9C/Gp}6^b9C\cBv9JVT-2EzV _ s HM!jE=b"˙Y XZ a;Pze D#2Nc?Ѝyp*!E/.ppiTCE?,C# N> ?l!6Tqj[Y/URqz YLZÌ"h((\Vi#[L~)q*?|4ܲ7 -iD|0 =uSB{J^dBCq`UAm(У~.n(V)Y-;_Iqi{e/B8"@|2akV$S cNS?RY.ٶh֯1L`n( g4:*R(e[B=ǘӽ ^׳tB8U̫"z%F)`b{_ʇ~/CKzR:&|ajLV3RT)sAD~T\5 {'չЊƌwbM.?E7J.ob:'9gQM&ҦՃ*py ^w eZoӵ}Mn(eLN>eL0H|OC\c@҆kq[Lpo8;*?PcƁ 8p#K'cA0ykp@. pC[\Vc8en Q4eK:oC{GMTMCso%$E]B9">h3%=̻(McK['$WQAł R FbQեb-h U K?u uʾuK+(sї|YC{9ߡۿ̠xɁ}PQ=]N*h=x[w|Q l0@1? 2Gx[f# ?<&\E:NڇAp,Cùru&SSٲ~ڏ\Rߠk?NA"$c@Pʀ|:+-T 5hn-]v ru`~ȥmAxSf5 zx0T}+aiby"{uuDF"F'&3Bx T$حޭXX@ƁZ)e ~%lk1}NԆ@h ":tU*7FeI"^9 T놊jH;yLq? TT31R DN2cȏSyiTd̤9T ӌ4q3iUΫVLf%SB4[Wy߽_[j+&un攙mAٱ~y}){VQ`~,TUx\'pp= )D'i .MD6A8UDåh U%&l 9>4᧖hMMAycRQ࿅Hy`؝܂@ȹW"ѰB |kaY&ۨ' Vi8{IK7zh~P!B!^U IAm)p>"醊j`BmRUvVAD\iԣcyQ'*IhI(s]Z/O$|8¸1ūrՏSPYDe u c۾9rܺ,tCjdc*%ᱺ6l[Fbj&4]-.k/_}7~Y*d&bEҧ@q*Ri;~W5 c:Ja0{  <Ep:q-5Wv}SAL NοDj`0j%֪7IWtYfuuP-xb1䭶,Z꘭&WgS;kKM3vٖT2/J)6vVu%h-rʞIt8^8؁ՁJ6><&`!?VU%NHR5Q[)ǀ$E~~zJ?īs  %j*STET~fsw!m4 -1DRūuhvhA3)7ߵydz_ i6Bۣl斩݌Yp:ptK8VzՅG mb6$|. 5ȩ܈ʶ#=#j4JuD"d`MW?U3!~T_Fl ; %)h rǚP: r֤ [|DbpFtiq(@VZφ 2M4  ƚ$[S8E:qd _dXXt i^WWM} dad>jͲR7+hxQ,ƿTĻM {. akmi9JdScW>E= F綛C2)k_|TouLn H hi} Λ̇5xhKnL7r}_e:3*sǺJ?5 ;{/}J+R Έ7%?ShثztZviAYBZ p qbAf؎.`?=7h}/(.y/~(jvu@yo{쥩49'0aϲ|5/̨ A{N}vOIOF%YVPswhI4[tmOFczv_AKDkẄxytx="pOOu4vyg4Mä~6?\V7yCfOHfAsv >^k RBe̍7ʆر˪H Է; {|yv*3!gGw˹΢Ž97<*kz{(_dE5I4 |yM:b 10pᔓ3q[T }N-tw{˺L}Z3m(=)SN ]f+]:,h`a MV-Ke]w l49^j)aqnfm~k=-{xp@--H굚,v7i9-w(a"7'GO8MwuUs֙>-8[ ;]E/Wgjڬ,1ۡW@A|s|K%8S6VFn6r)~r.x)cVӺzo< JBWɢxSɛ]$&/LGM1y'+39dO@l`򾐅N=F%HbRNQ+E\P7d|24Z76*` HE59lV;U(_+i_*Y/jXUEe 4dp@Knb4"}=0XH7_7`KP%7z2Wn•.p8ys+)/)*S̙%-Srt;W˜'N~Ձ-7ߓѠ;@yAaDCiTM[ pki9([EaU6Sv9Nێ(_)_q@vH9O 8&lvH 8SM-@}cX,ͭ5Tv$xVwfI^~$fM> iy5QJyNS#,bٞӌ> )^QְG*Oպ"0_khj+jUT(o%,2֬u߭!LU5s)'R62oi= Z7NIHsF*Zeteʁvz?yJC;A% /<ԫe'GwGiV~mM+Ð5HX4{]t6UUU)J ĊD!ṴSMu9Hł" ArD?@Ht wkI sUm¯Yy*̑Ci.7EiLenFA$)Mn#_ >8UqWIwYl+tLNDs[ޖ+wk1;-&Ȍb $%> ṋIwyI;Zd@3 VX.>}5pLVU5, y*jׂ*].$XGWwD>=~Zn|}<6KAdwQGm2=Oމ(-{,A >;1>S|YnFo{O j9M= %"rԤlPQk')Wd&¸o}00r@!(,)[+d7[38zvQ`2󣆢;h֌{c Er6KAykB#}i?eȑP_Áp6 ԛGfQܶ|Y#JgmagoYn 7h}ojO=U.+%SZA7PCx^0hĀ2{XÝ1OPIE5 )A?>&WvOD9$&= 8U2" gJۏItX鬃{8ե)H/_?n Wgҵ(tt9tFa('9z,.Yo=̬+~8[7zg Zd7wQ1҆<2e9JdG۬~ "M] tZj Պc]T^=;Z_PhK>{s, j4%tUi᫊6~1FfLy%I}q6v(i2B)|LF$hӏIޣϹ+l]֗--*6{Sn?3ԾE`Q?Eْ}FnզEU&^R zJe3H~,Gkǂr%}^\z- wGem+sm~j)$` qgh/l| {7e"$#%U-^}gBw.v# cR_<m?r5>W`hʨ|̶rK Q\>\wt-GdaZgp R0BF]Iѣ{>-IP- 6tnM7=z?-}''˽'Ҟ=3k֬1d[%޲!+@lNsC)}HUVQd"*8zgW5/Lu{V%9{dðҍ;r喻N+#qU Z!>`>8\}B+ť+=7 4:׀ӵ7|lw@Tp7fG2PnaaP,[qw S0WmYAU|Vume/Nѫ/5-vo52mSPzSoL5՘=]+Rذ1i9{x/W($t#-B]R2Xk.F~a{UK]M_vP=H(?UQvzD+[pmU kGR7V%~SMJL(ؕ-k"7=&M6 bYnn34Ur :xcBz閵TN0و~2XvTVFrdԈޔ^A ʶ/^Npx:ݚN[]C6lўIKU.zdk+|=g8(49<'<ηŗħNSKptizǖrC5꧝{bJEf x^~ i.2zGrɽ_7{ꕖ /Xk7 ۀ4X`eʝsqf&Btge8뉲.>0c>&`J#8K%޶XWyzWR`;IRF⽗I~JP}ڛh7asJ`_V&'BG{62дm3mz%9R u`"˒k7Ԛ |8=06SZN1t%?m #Vnּ:KGlűzd {3`9kfޛ'rޑw x˭(upejי.!löi$?u@ѷuk[僀o~;aVAe,>gI.9.|^e##]-MjH>V2[7@C~H  0./ko]oSBoD{&`Dii(J=C|I-er=7k_w'|MaHN9z̀qV>%˽$Xc՟. gB5~v\js!u5K aAr+c@%&Qp~IMYƖ*9 JYMMPF=_3+Q>) m+v\L4Ng}~xaB8`qrHHr@s"lWv|OOg6㍙ތ{ >ndȎtoN)]2d7a=#ʼn@Tϸ .* ʶbٍ]z8_/c>3A d%f>B8 q>Е";)ߒJ-r71a=IoXX9PYM u e3[YOB2#'`]9k/o,XZV38NWaJvl Z:9'7.EK\ka׀_?<˽AEz`{\_ 0 =gp"& ,h~{2ַٖ7Ƹ!^Pn7N,"=B5 k}2x/}q$2h-МWLuV܉q ׻$|}qcro}&1Yo`o`>IכF,f>k[g_ʝ?V?XM򜜶a|~eO:. `ޏv=@!lbA?Ғ@Q,[OZ* * Zu%/d~a.#8Qhb}/9I%yj`JNq&֬ e-CسWYC2Ao r# N KjPk_ّk3Z %S)Te g ]PьKj``&7:EI˸4 [/ղ-)җyf|Vpjt5*RA/pD[9P3K$ʊ *e3xa +'QŁ ̞m(xαC^Ex@UNV]Pzf9:H9k/׾r?$s9!~ `?Sp)C_B$Yh_ +YeuR #hq @XT~YnDb@ц e%,4EM&<Y't ֘d墝']*)Uu|L/zJ֌sYQ%MPB~V<{-sƭ\{:(}H)kSiE6]h3ܗTW*ߺl+̼#dQ\*Vg ̳8~jᅼ Dbh aGzA f1KE0n@d>-ZfB֤zL3[#c9U H-@̡EW .yk# 8 WĚo$zS+B-+Yȍ5W_2!pt`˭7SR GS뒇n"vP -0Q-h&?(Iy7U,ju#UY_kpV{ò# ]r J *B-5泗K CLC}<-]5oׄkkC~5G xا0%1̢ޥs`+3o-U֡[ NmY>m'nr#AM$ޒ_"RXl Qƕhz6 2Gk]$۔0PfZAztXHF(*qκ5rխ5`[yk}SPǹ'k,͓t3Ks%S8O2* &VhY|.5 N'v4ø޸"@Q tVL:W-;J aY.'TCG5&[9*P| @ y,0pn!,|OhY1]+axae?h";_׀mg^RzJJob #_ vZ;fjM:-jJk*%3꫆5\eyD. |0z$ylC$F!3emc` R58H%³ @(n+9.#YQ)/d\V8IvW] :d+ar/5RB붌]P?~%[1ƕZ&3[tpT,@`Cy&[?j:4'B0C琽3xH|zftueFMboiZ:P7M^,3Q`Ŗ:n'So I y Ȍ"|j&Tu @zzMɵ1cwIPKsDx x8c,Fu n&O[ԏJr(U ̴,>j ubƏCf5F2/w,| Z4*A, >8K5)iAF/$!ݠBe9BitU%71?Wݼ18Ъe,r@R"Q#A/aђ\P9p}ELkv-;%=Ja{FF*z=I?GxKU^uTe\:.@nXk_ܐ X]:8ȜL {\C5'TnB< (C5/A ,KT6= joc ] ú'fLXSBǔ(2:e[,U6־+'Am\@R>.5$nf>ZHPc'>*_RȔTw`Ȳ SXiR'?H79Cr`Q";+^Lko}SK 0.ƀÒڡ͐7hU̸,/Weò/?78+蚻~U LoF7\}w\X^\R&uI6SU*iJme,QMc|^D]vc gmpO`h%ie ,bh$_(oQ2y6CMl}}IAvem'J{ z^ssEa1hqC?P x5|uDNc[u݀г%(Hg 櫨5?7CXh:qt9.[c{O2gА:/DҾ QPeV7l'P!eᅛwS1haK)I%ݩx$9Ⱪc5tW%k6e3Qb\6]2]4M܌!Wb޵BM=gƪAa-v(-:0t>y4ta,+BK>S_غ X}KHL{`H?Sb!`$ӎf&w?e*>{sӞjCA NISXN?7 k 0YOFcx78d&2ܳok4bJ}RTc f%?Η J큹=ZĴ/ÎX{0q~d`^mC(_GZ/oEgMD\Y.1o Dy$[~u;\^+.W0*C,gGDoSޗFMk'C]828(fmD u++ƶى%V[[T!& bߺShhӫ\kn _DTշh-]^^j$ث.z(7CW5JK$_UVMp`(諡E<|ܘW}LHZP2^7UyF2V_|vMyl[!8T >F ky+{p3GI@%F%krNʜ>bnlM 7 v('fG3 d`V~^d %Xsj֤&TG2TE(=]| :[&hHI\M]Gp~'p0魈4vp}/ܕqj~Db%^&_#*_xx"{ŀw2 K@" U.˕9Hf待ҕY\m!BhO?X+*0n@ک˅q "f7all4D!9Ao2dPw27vXitw[LH-*읋ZY 3ir "ùܖS*uC\区#DSV4E-<L'>Q0 [ Օ0 &tv..vuĻK8-wJ̫[\N.]n,-T>&u<׮yҏg`m,v\ M7f}z_$}m\z2$s mTEO1]K6~7"ELYT ! 8~,2qyM/r0(O8J0.GS1)jݟ;p[`hfS'S,@h wslg]I\FP/59-7Wx+bs=Mo\5}c acnNJ!m&Zuh`@I"M,)o*jغZZO!p%G](#floT<ϕg^a=r%`=V>erl 3sHhRaeiker']ʽAKlĂm*;!Uh:*-l7uFˬ}7n7sL!eV45̋l#˝ذ(!lEwH$cr7ܡ8-' h7Ik,wG8a8tw0^STw,UZycr%cV!=@2y1Y4`b*Īߝs"Y7/Y֗i'TWa/2[O)"*N|ܪd"@ p p*ZA8?yիC45,/a˙\ TYhis 00avԎPmFX &<@kJ |DKi wWmP9Bufsy/2(VBwU@N?F{ - ekL2g7S%2 Y_iOVoE笹^Yaߴs>u2]Jt3 ðt]Yg'l7h ̝\{bO3MazD%lh5<\!lhs/:J<BA\3q$>tk'sGQrt&8Ȓ!dP[ /1n&<'q]VQhΉ˶e?Ǹ:{AؗUyF033.g׭;0!HzC[#,ڪxY7'0)qW,'Oٚ` z r0Z Vauqss^Nf.ɃRwXnSwݼ!7xE8ե]rS46}VcE9;Q훉[m%]%p^Kޗ)|Lf֔**2 sͅI9^dJT !i1?;aJJ,Y H!e=h3-FJNo|Kt^$lBKQ2лVb-CP4`Uhu:#z@p{ʻ=tܦhĒ `/HA7˸&M鏝/`vkxɚiEwۭjg-}^*+gWz_.*VSn:IгQdG| ./;p}0~Wlu@<7@]x%ޠ00S &i@ikifO00é4QeŘe[m+ T?&pNQtP5# bvM,z8K~&RHb7 u7D#[LPePS(mvD>G$vAyp~# HrGio7l-P T' tg4 eƓT,b@6_)20ANCe@:tJg&ͣ@ݴsy>e?Ƽv4ڶ HGW yihZM J9]Jm/=OFf-ebc-BhvQi4W,pp4Q\k 4: 6S)TRYTأA@5O%FhR{=WЯdR%?(ykyk TNF'e?GŊ%/YqVU?ЀI$p7vpIc05ץIq%h EĨx\#<Ц-jE\6۪=qRnU~|">O:V$##-dũ!y|s%)t@+<ͣTcxMw]Tŕw 'ŝXOgBe;`խag:)j1K^"r:Skyjs4PBtG8/A.3FQUy=XkꇡG2wO3 50H4Q&OW` Fj Q͝$ uԤ=>r!]TK-b ~} PaBеٞޱ"׺uȕ%`YM:?(VD! N Z$-|u=I3Q>ĭY+/L=hEL5w 7O]zx18G `RxQ`;wYl1A. )7NkzBzTw h2Tk- L=od(s*H^Rw|mlߴQ'51EŸq~Ql_ )gm_ġbU1.GG$J+K"+\Q8!T e7](SCU} .GVNRp  Ҟm˖$(jb<ʛ n A kuĈ ˷vFr8q ,j"i9}:'^a[evٯ0.qRAiksؕI=CӋU:X/elox c(tgJ%X^(L Fu!?Ul|&^]iDo2`+m{!"(1TVBtYӮv)2r>zm} |!99֜\[[*W^|&X/`9kF2WK5ɾĬҩ&wܣ!$ n/ONa,%-b !#@(U-++W<C-M,laGOMps+<nddAYB56nMjdZ Psixlu 'r]F`AbD 2֚G3y=͒V`[-e+j@o8<̒Kƃ.{IJU)BgIT-ՊEdskj+vțUP1T)WO Q\ nfkby/WZ$]wg9]7lE*>x^k}bK^\F/}n!Q6!ʤdw Vñ4.)K3K׏r# k+_fC ̱ %;}_1Y]H[ǖKnV.0t:jGW4 8˞rwMmPi߹d 69J< duuÔX"xV㷫G[>;lT Y pT6h[1s̀R:?QT,Zz`Vo~z[]Ecm8?!(9{Z'ٷu 8{YڜwYm* ðEѢ襩SQ(r 7/) kpݨoQ}JDHzk|'HUd_5mtdoBd ͼbKױflV[Ӯ e8*Kܤt:;1^5w({57k{9DGBjx/ >]!8Dt3w%'%H=k*W_^ޠ WF˲HQ"Z27"Ah-3l赁圔vn!T BMt shGv|.Ce6(m|}+AxhI%S)C1ê-w|O5ۆh~rroE7( y˔쫼bW`JuCGpEqORՍ/hhHWJIѢǩ%nV7N`k!1T!eaB?KWҁ tPekǢ>z6u`p^dB)ZJ (o K OUbz@"ZƌǼ/-Y< \ZwB MW{0Zƭыy? VXe?U&~ljHGNjd "A]1ae@^&h!aeٕ0+7+xgE9=ގsG)pyo5@D "t𪦪퐽W%NCC7Itj}_wUzVq3%^~s?ВOa 6M֑0TuM.i%/=\K}@{-PӈpkIN37,o7#ArD\ou697]d2 ZZDAĬm9! nTj2N|+4/K=O ; AI> րh# (Ļ'_̄ZCRqS @u)>7v-GpdžKyY><mѝ~Fe("[g/[L.&o._HZm3UoC1j?MR"jsau J<"ۅIE`1I0a:hWJX]G g1VBHZK2)hsh⬺HiLVr,J?LE% ݹeMch%OhY gr[`nR֋K<-&" =AvSê3-$%aɻlQUc8W,p2VN+-oP*gvJ _w?HQ|x0kS>:b}JbѣJHY `= $©ZpN:(3{ 8`~L4.elhi@U,L ?n+' kY]-!i S%op"Co'0#~ǀ#D+bA"zhJp% m" c 8Vɮ(l 5Ws@k|W:yrۣB Έkr;p0Aqy(CHd褀!5 h7T]2dB@upπ-FLRX^"DG5CwxEzRFm7en oGӭ~QFP[b`vn܁O #>%z[w*tqŏ$#vJB(YZ]ܹU8dBq+J{azYԱ `'ihX>H~2n'Ro(L$KH=Fǵa裻72)O0` Qʰw^٬D*,?;~gPug @p.. E52@1ءU^"5 B(F9 WÅ[0 ˅hWwzp maC -8 rY2VKt1 xଆک2wעg݀iTg/젼5Ctoi!)hCPٹ&3K@j_]I>`"-YCꙚpUw KBбTCp7VQz#hӢ1S[5%cÉ[8-5u0>æ坧I>%^? !m(Rc{h7gpMj4?\VB.?3ۏF/z"*'fh\wfqy`=Ld8ע.+9ԁ]DŕCKBEQ^z G%6: J*>6РC(a$EfIY.ŭX|JaԒIDx3wl܊2r1Bi+6'1+1\PɮrbԠe]Ds'eT|A8oe%L,C)Veu җf'ڡ(45RʶTa { ^5R=ѪVWMm *j/eB~&ȼR$hT(td^IQZv`N9"dmJ-|..`}UmʷqG }2f;l`zE:2Ζ\Șdu. L=a7[ԖE=ho|dl9 -%QkFQS#u4TAh0o'gё(y DSrPbplHn0MR=rWO/"rȻ[pMLNvy>r@u}k(m*E leI#T>҈QȖ3VG~πINJHd%$>[&pB]ܢVwx.xBG<oWh`ɥ2Ŭ_` c4 p.z+a ]A,c\}@V^\N42m&~b-nF:;bN^m*Ficn~"8x %pQRHKK59X, ' ެ -yq5;/]uC tP&NO;ȵGO +#}U0#.HCt%qh_roQ&pdhŔGVSB2u|W \%iZ0zsR $Ju: @}o0MIMNokqkėI?7ja=Sp^BՁ iʯ݉W\v&~CGotGO a?X/.TZpGApK3M raOvQAi>ɳD|;ɽIi R X /3MyqEe=ꦬM /+a8kY7/rd>ot&dl -SsnRv⎰+``b:OR~߃0@Ws䍅$Z 'tѮ߬;v~IaGH(R%R|iB@%7*<0ҸKzvq+zw DHR9pUfU ڀm ιY ym=eDD@ =H'4IbD2* JqdNIµ_2g>{^]ijষFaWfD1 PEp{~͢OMUAe./WՐO~3]J)Ǖ\p+)r%*hV,˴ EKٟɽ$Xn4IcN- iK&*?Zbr )[7T ai䑖ΙW߶&[,_mL[n%_\ ڞ`-^e 1ɜ!8Q2]SUzJ6}ZI!\`w\eR,њ>߅&'*;!G914=VqC~K' @O.]nbP#>ApfVXSɗ;J*+{ِ׿ڀk7yxco^ұ8\[g>4;2:*kGqQQKZ kӃQ4\a6ahfqXZ=֩I7nv,LJ@?ၘvkC] Ka^ڨ3+޼*A URf^Zl0}b]ny@>W/$< 0W9dk'^l5.|o6:r/ݮҬ)LJZzsDM%*`Ze9^6(–/BLm6_ݱB}4t*&F*֍[U<@:U&HfUOs E:?{r<T ZCt̯ݾݢE|Z쯪\ <6 﫦p: BZfq}ͨ@0G`o4h ~f䠍TN(ONr5 S;qPImJNHPCaIA o1d{ݷ qrfirN7'VjƆC1`( 2=0:Ĉ7=zha }~$=(V2Ę\\P֓iM ["5GIbȠ,x(^Șm5{H?[E MsѦ^p)+3{A;c UӅk#x HA9u淝:#JHba=z0S"gmY @<8*M3= *gчSp:ū?!|];p.B@:GLɌr"|ʘ)SGO_-+[ U=b_b# 5J `N|S#P\e=\ʊ%tN_1Yjsݩi.*>AO)4)Z7U֮9QT?c6Sl!8Yk&٪VoR 9#tg'Eq5fNF `gɚ 2 N)5+Ү<$ ȘaG}'}LܿeE-'V>6?x(UC0pz/*ϳ*UtR.*D֓"*0 a  ?`)ztfM~1?1S2q @&bM*='G ``Lnʫژ*L~fĖHo; ;eZg%*I=1-50S5e#2Tr|5EfaʕTBj2S5kZS^ 2 sE?QKp0F3#l5.'X۹ΛHEQK| t~PkF*_3!/- jƳFAM[ΞL.kl"Δ$-}mkr.8mYS㣸u1SZܨe,^UES8Rd,*83!R+uЧ;z qk,%I\)ۚ/%֘Ha@'7@ Y+pN!Oɖ[G\Jm3C3dMhط hz@eLg\!Sӿhi9~A?*F[is Zp|- i]*0km S11| FjcfG_搭dֻqsmx|=}z՛Pv EI':ݸ)%CpAF-JHp40WEjӈD8oFZ#1%ʃRB qSIeL)? :^ђ܎oObXֻU~3eHM|^?lgzU. (~OB*P? o1K>MA L&N"4R| YT1:dG1&c7 $p3ȭuWhu6 "Ea$(Z #YX>Ŀ yI,"}^Qa/CK¼ Ss*Sk_2%%h.U?#rL|Pa''C+OL4%9M^#a f;W%ad^yaL@^a7GZJ࡜z+.K+RLN 6‘Yۏdr؉s? =Ԯ{\̿)݌!.fg Zod/AXI+`Dc 2':a5IWٍR4*2ڇG pjr8r 36]O A<4jZldY%,n*EL,:dM5uhNjX#~'Շ6^RF˒{Nu翷lKK,Xkqnl b߶gK2U0:1eDeViWGIV:Y,ue %kƧp "#`0tZ3!ٕE-tX!v9e)s[b_z XϢ%pI0 +^JC&iNK-̵.md7rx/1lT:`Du!ӝ"XipFMϼ:Qm Grę:i끱،w3եsPN i!.r SMX„x "/thD*Wevak$' m N ULce 05T$U\ةCj[Er 'Tj#*0aClv<7-rJ|U~fAS48zqu(Xa 3"E"1 Va'()>bi3vmwGmt䔌`-BVfP#ShE{UPClOwm:CTsRlEkTkZ&x~Z rmg;UtW12 Ծf#W(_kLLnjF]^vAږ'[tգqE) o1F)D#LܐK \4jhlzm:„Мz~q%l'xLg)iY[e0zA'.S(i` 1H۔{8ڞn۰] WKu0l xˏ1F}LHSo̓z 8.ݣ%78ڈty+|8p^ ?ǻ(zb&<eΈM HHrf dcnz?ћg)]䥸 &>\Ի|X˺hN6-. 4 #À\D~mg%,}?wg7_F*s K0̦:j>?4` Z qz%UnmYG>:b9djh|?#~_0fxw*$"p!-:J|jl;lxz>\'9^[*ٿ> weɘ2tK]f! A|"VuN[6W}Zrnݪ䩂xk?ݢ}CT$aޯ1x_^*"![|`U*ݻ!$gTE_L{{6I`8 LYCwFTxʫ݃cS񕭕gSc݁겇ż’Α/xb'Q(W^ۅ79'EAy$V 'q{rB<5'l)% ˇy0f{N#ds]E"#J_X'C-;wM{"$dE3a#kI 79?9@;innz 0 ZP]c0 >,ęzhbb•&dC4]GzVocιZ/÷Ό׋[9mwWbI~`v[UlecG]]*YYݪ{Q$JGUAi\sB[+",'ϩ$@>ff @f()RWeah~A>v/ N;fǝ@j`%f*JRX̍ zRb.u&( J_߻D[EoK}0fځvlp!C\/R||+Q8>Đjo 2 !+eCE#cޞlf kI?QIxk' 9'LNٸwgE1;OQ 8_vH1s ;(8Q7@+ay†HH{aF;R^ zJޢu,>*x~9EmCOWw_%ssJFߤQcK6(ܲCMb[-!WE/X %#!G$g6oA*ЫȠ2wk-ZXȌ:HVCd_r$!6CdhU@)aU̷MZ#߭i׺PXVz$sìW\U7_knF|y17PV]}f~Ͱp6~='sfAcx vIl#U8^nX/pB^ȁnatf0E[{v ̾e'd@#U +֗0ݕF@ xA&h\,Z5F٘;F/wg+d}/iěWU+b8T*h%ӗgn͘;x`z7IMM;. Vĵe}ێ= *]U[l[aW v۱Ou|0"wh:#3+yfqw\Gu%{ =IL:xuO^w+>ȤXf,UeJ|+nezBh!!P{ J8[cx%肢](<*ܜ{fRq=FO+z^iϚa0+vͶpqOmfEpݽ=`j)N£t!e @P(3ӣ-4 KzI]nvh!-K_.AoLWZD֤feq!ǀT56SdB B=#>su8Aj V,NN _ks{9.}##/e'>ԯ3O6Tà tk~ ɄUjCɥCO jnB't_X,>~F=6KnNdyH2P;VU6zdv9T [$u&5Zz/@ T/tSJn&PC9K ۼYAI8&d=nme E$xbyS0O6{6$ OwwMzh~Rg㵞Uw0_5Z򩆐$q@*jry*(?TISn&:}% YN]V 5|UpZ.GC C>UNG9?xɖ !0$1ӊleCiGkE%/:ء>HJ3N^$ 36PHB. ๲6 XwmFt;_]j0cƾ+ ovhrJ( y:Bfӡ+x-lXYv >߳Iу+>wG%W/J~fUЬ սwlڪR""Ly[{l0K~:;А(^~~SG"mO@, i@ND1_iWIpԕl{TxΑю"_{8XvߊǭtfԡUpӹ;坏f"%5c\īrAø=R֦Y#S!Q R .$ǣ8&r@Ij' wtV}UeLEzgEqRE\$V_†BDc޸2͵NVCypdFY HP2Ȏ$ ~uyڡ|DQ FGcMb#vf|#<_ftx$b=6#t=*w珧R?oZSZ-VMN5d9D:Z/yx2eYAS|AN_l}IHyG̀[V^ŧqmeWWHqxEJ/^t aK5XCn-0w(Dpg1T^Qp%SӍb&5eN׈+-鲓qstn}Ol'A)ZJQ [{'ޜ)k[X8EТ5Oi8$hB eAK\d۪N9CтށqKt~#}yNJ!e7M9($xYfu0`'QOwe | gI dE-?y1?ݰRͅBʶ9|1Ysū8Rc6a[Ej2qX~C5GĹ3 1u@՘-" h X%ޝbnc^4 U:Nzz7QcR`mU5#\1lmb }6uaN˝z |nCU@lp{z< cOAyoctR?|:, yz} PXͻ]vn^0IݸQO`0TM$Ig7͊wLEqSIfiYcn,$#s3^!PpZ<`[Z]®827`MEA!pzEAT9,/ |ݿ[@OH%rg&AD>+PÆy[(C購Um[l0-tL鹓)r`2"r}FGn>+OpEk7v#LhI$J}re̵S7H-t8KC/3Mƀp ;X%%hzER,_'K^BoWhwY4!(8^H᨞+nc;bFLF's9$ܐW~;yхN4 ȧ>v(pY0WH$|H$1]idn)ZЮ y<.K Iy]pAeF躂 ECv]OO_n`7Ok]pX8ZOkBQ)$ԅҘo5$ Uv[gb̻i.8eOeT 2=.\&X[zT/Ѩy=(X ǂ>N틬n4-hWyߴ+@0Q J>lLR'9omMDžR*3Ws<KJu_{:v=?QD坼;y p ,x_\s8*) (. $q0O伻|cI*bh.LM wN;Hx녙Hc\ kPп@m К -M2}pHƀ~kXKWiЏ>PWoS]]c, T,EK+0 /o//WnG@,h YЋS߶ r DT{ ^i~Ft&DU%tȾ#]ʜ%l)Vk,/@KH݂苩f#bRKKq?~HeO ^7,khit&]xwpƏ3ϟ}.c 8):SF9$F:폩@mO|!h{ dSJfu߿U1~`PX] 7n%¼*vOAF\ga(zBh{ڙ.oy)Z{*oުpeyPM5ZBCw 0#TG#[ЛE_el]DxAreDEܸ_ 9 + e'm\~zДU3W F_I{OmzJTe637ZkfyNzY+?謻!V{ԀIѷ7g4pi}}zk&،3|oxU ށ݋PoVS u|X\Uɉ(ϸ9 n e\y@8a~U%hM[&ݳ׌PIѯtXҟ.Q]~j2 /,xh]s%faI6QͳTͻ}Zorh/@88/3`NV:a$x-:Gq)9rHD i,+&լ*=v)ڂ:T̔d)ShW+uȀ+lm7}QYM{6&Q!}\mE2v8K=Ph&Y^ˎ\%wR,|E"1IN+rGγw@]#M-(eܹ^)~%`sT\ /r +&{~@F%[`H+d$;8xUX>ߥR]ѶXnkbTMwu “Eh\Vsxh+w= /λ,Gv9گ"E"~_fG##SXsso=yCAyOi+Krʋ$.X A:4ďd (aK5b[m'u|@{H0˅tx.`lT tG)r ='ֲ:~-xcVz I(BV5lڎ'']pyN3x_ /nfUFF~ xH3%f  @Q 8J,h:a3GJv= ˔υ D}9! k!;F)V%;q4úl+x'kn4*6P*CpXvrf߽VlO9B`40`obf:dS@ e AoVDb%UN~yb6?czy8K)yTOwg۸`O]#U=Diۦ"~mW$UUJ2~fPOZ~`SʪWcCz_be2n&]^s?Ds}'MͅY@oqUBoe z+V3̕g}坉Q ^`'y $#K;bd>+wdฮ]'ܢIJ1Oj'#1H4r?Dv8O{~q(?aHzrl>N/ظH%8xOue[`=kCgoݸ_s|{TRYXS>$H3 q`+$?`ªIS ψW= 4~1ٸ~Ѭ%=Y{@/q@5-82gˍhK;y*4fIѰQL{?<:9L¼;׳ Yٮѕ7gv({`-&»q1Ws=#e ѴV2$ӫ$cL⢀YoRT˻7˜c*|PJ8.&^*7QTDhD¢O!+oڲƵn9mzIJDǏ:اû7lF̟)d W4=ׄZ dK;WC^;B yo'%3QwMBQ۶Ç$"I jPRCbeR-QvueU@Y}Aj:)t~ycX|`]_YjJv@ rH-njt_C6V\;vE2ǭoNFp,K-s+ kZswpCҽ{dBã؟w*#qM((:$߷,=nĘY -Th/FP`{7̥N@Fdչ|H<|m9=ehv RMr%' 58?o>T|^AaKEXL2LliGy?ǀC[!*B] Y %x 9HPxrUa]Ŕ_"L8dKapvjdX]ŀ~$g9ilJ')2>A^JO$j5{'i" t J݇T)L]6 ?J[[%1j~Lf`m6 BTsu^kOPhXMK\sUʽ5CA_fnotrNW;}!*V6/$[:_ -6'pyRwɉ+wN>JzaJ Jn߸t?n`edefsm 7lRҽtH -Ą(>XFuSՐxB!Ny#36`-bä,W1E\cxU! b@*7!ɤ6\&RiROjcb=B6`kޫ u !:F,7a#!_0b/t}> %¤7:7c֝!n7e?7`DP. QVv=6`/w'9ܚ1ȰT c RSrI "A ϦTIB$/Wig ͌7DHMDL|tT.X[[#(ݣNlyjtDy$`2ᓨփo7'J-L 6|\3њiNG_RW@%z Ű̲Üg7_&c`%Z̍3$J`ºkWT7t<諃]|ð=YYˑϒyh` Eڜ{wc]#62)_v}Iu˯P^=뭆GV>o^tB(MYMEzz5eS@"\T&/f;g)Tl<| d0RQ<'l Ia)@&ά3jb\KL,=/_FUXJ5Bh8~5ͪ>V_-b}Z%ĊyT#Uk@{;Hb6`f599Y3?0oC(9yjʥ޴o/R9e*{ |޺3]EiOx̀ppr(~J^/NT8.M`rY %dc1㡊3*bMq-jsZ &.Xdl o=B g *:+˧&Z}Z-K~?p|5R CT@uݜa<$JAU $*c~[0y˥#L]ăL6<2P .3Z,"%t)4CM&ud' (o-z貳tx4/Tu4y^n159Pvnkpu;yc"-GVOnV{9/%&zW^pBo2R$2\a5CI2CM7Wno7 b?e_f?ŀFj妕F>_Ci\HJN'.OV1hܴW\(z$Z,z\msoԦz;T'`0<w5ҝmj)@.tF> {8 2 P=ljRr4U%J?ŀqv0 G;t=&?A9\/'.>h0ŤE(Oc0kڃG*KNNJnXMrL/~)?lyxVHL^k%ɰz0Qo0n/~iڴ =?,\+)~K0I⫱vXs&{)>F>%mk"~K+h` @h7Fp>;^!F G.t$s4e@tVH X81G< !JHy$43d\z~Q(x=w .C `H'XRsόH^}OH7Έҗ*'bQ^6bmܭW&Ua? qt:F_ =giKIM!J# 5sUxfXz]zNe_xnaJ*./RrzR9sz{? *CPƒR PgRL&Πhv2rOqv:AS 􌩺cRmY%2.l*]P~eLj,EqA*vR?ޅ|k jh]{U+bdOډAUZ \%:p(bg\k+η`1k7 ]|"vşhEyK!MZ$ F4 ^$P;ͣ~󓲱rؠd`SlWے0NjW`q[5/1 DշpY4p%N+O#ܪ"k ϳ [1.d>%!MЀarĒO#%l_5NNwζ>^+zZ"akV;$"yɀG32&Oכ6TDpQ O. ,`#"0/O-f\C{(x܀e'JbBhV;J+^i؊ *@*9(maD֧Ċ d/_[84zuNgl^n{1R^tr[Q|`>/6-cay xBBzgғc^gܚܡvpTDmtAnCjֶdߙӴn>a{U\yFvS4M  1U_"z+Y^oV7.nf̙3'n8y&b\#k5dP;[l-QYn<ZSwKW,S9u(l/jc/?Q9U@. 260~OQ 6+(E j:&Z%pPMʓC孟nVZM7mޮIC V2tD!B^=+909i2:oi{]L \}eixFܹW +^?@h|1L `oꌒڢyŻ,\!Zi7:  BN|UҤ7O[؟ECqޯj0OD5bgZ-hXfcu" ڊm?ǂsC&\e`7#9BKDK+b@֟6NG]pݕU#,-AJ02. 8WJUg1PWw ѺԀ|W1hk+ΟP"~gjz7A9x-,9Or*Uooϟ y].Eqf:W$X-8 [V$PjQbni"hhaٕI?Q2|*ZQ8U @}F|}MWKyۃX1X?bj 0RpYvPQOcƫ,W+DVk'J,)x IyVO5xڟ86x>'"}:`bV̅L<a` wXf'ǞDa..pEn%1 SUcdx1zQ$ $b; ?m q8oܐZ< Z%yw$IyW<;oYh~sCMvG)lv&0AՌWcX.~Kܪ;20R HCvٯg!%?Kqf7 >jsYw-ܱXЭ@@xpT6 q.-O\gS@Z]9UTMK5RѠ\'kUMƎձNh9p,,:m;e* ؎9@wbDsBciӐV̔RP*4OXJ\jŃRvoXZs1d*^W=f+m ]/QSNT^+谨I,Q?[=%OFg!!|0I;g7B쒙 #.6Oc&aˎ>h9`Υy! s+GˢJx{r8g7lAj<h/#))FFm_G,sppRTJ8Թ)tC` ᢩY(gG@0vYaW&>vVLr9SfQiAj|. bRP#޵.__x°# )MIr_fyFJ1]<l?ܲ-s lTpCwq(aO!z cwpvUIZ2MaЉ=oG,>K1?+%5dV N{_-mqу'L iMjsؾԍR5^dQ\M$ RNԱ4 <Ɓj^5,v 05/=s3lbUz?eDEPH~޵ ݠ9{OflA}cVOlU0|a[>!X<mX|It_;x)AqdvS} 2P=uoŷIɅ [y,4eT'^΍ph̟Ȼec,9lzG& ~x:Y;sws.H2]ӯ'v+:ʻ (RD`q`^ō% %@j8>۲c_cŝo ڛZ7o|hcul2kGC_,f;Ov?aho=#| ؃iZ=jGΎd^?CХhF8n7]x`h]L U) }}f~{_-Y/Xv 8k|n>ܯn][/]Ԟ'n];ѿsŶv#$H*t=SjoS147wOp-ԗN8Ml%OR՘ؖߏό@)xzzGG1yT#@$cTA6,19E߂>,]5T:}xmcS~e=GPr8?U|#AbQP'_u׎&KTo۽;|JǤ}=w%lR}scw{6}A')oo-1aYzI:䥐B3Dg2B~Ի9d_oٸo2ĦPخ,|AprU:l8br/U )с:GMj~_}91pǛpyp ^ݳԙYy}pUe ]{)AG3;pcU+-ŷȁ95˅|tovpZ?;n(h٢zD\?ǞR vgΒm}U7ҍ5@b6Ez˃?<Ŭmyhy_+MY^_OCrtD@l'Xl:K{}zsXx^ۿc0}Iݷyڵp6@w.}L MO]ETb \aGT!HX?hGhǿ\2*̽?YoXQ)c $I@X90n~>{υ/X,{? }yub(Yھgq,S.N ZܤsSg#%ڸyWz(&p]2}kvP!k0k0C g`Zv<]T.q[μYujbxַO):;SV1zj3vxn]Kpdu1OۡkԚR9sU62:հy|~+6~[P.{y"{}Wߑ5̩X*5+U&G*\ v+ HDJw8%Lfjb6,0^dt +-j'Y9k -JmHv% wstL[w6K>\%&MPO-BfuvK3Յh R [[?yZы,բUU6ã}d|dj(TvJ]9~C'eST:PWo*bUv'-n$5"BXbZ(>yVǃâ/䅏&i(""wL{v J6cĄN*j=ʆӷg7 ]+ڑaF;rNc pj X cjX5>xf`u1<︴ZE4CT/mJtռEq*TR?Z ê StR25M0_ ;~*hGO)g5®Əaap,WKO{) *Xy#Hw6\E23 |C%EV O%`U|8zUP+?LpU8;5a_TLDyn1İ`Ǩ0sCx{9N[w, w4R}pvg{tҞ9h xDiVVl1I:!p`(}3i$ZUj@yp+EYRf\Y9Ůh!-p+u0| Uth,, f\^ٱmIJyn_\1erG6 lY+ԷTxz|'r=\aͶ57`E,y76 xeN1La?[ܪE1āTGRomvb~<1-)VL ERP3?|tG3~J|4|m#Z`,B厮'~Xs9HK_gzQhrs5<71%vFoY+mk2.KlkPJUW7Ӂ{@JJ2 GV-S/[țU)*Ŋũj NeP/)GBcM"u_ϕ;P$8zhϿsEIځm I[wW^ӓ6=ۧȍz{TjiHHUZR `!N!I3l.Yn<ϷՉxK(.MVAOɺCww<l|pn"jl%}rP#r?Ca,<+[ɟ5p=v)v.7 ZBѰ H oM':SK mZW)g4b 'ٴz0n-]#Ʃ4?k ʔ go1Ŗ9L%iIop|֦yN'G{>o+Ҽl~T@@P Voz&Fx 6HXas2,8G>kjʌ:%yp?Gg-F}.%$ht8 }fz,KԀ7Bo]L8qa񝎨_QJ~?ELoU*TՎL%XXr7d$P- k1q҆mRŇK㓿C"U7 jY!CحpZMo<|:$贻L> 13Ilou³tq8 K0ajjV8{qN"#%S+#sW$18|rFתO?Ħzg>qQuGXqтJot@~#t 5VS WNb'<8uIv6\͟s/]Hyi=䟷$G#MVY*^t| $t eZ[7Jk|cI6P [k@uL]te@r(ʹ{Y~TXi٢فZFa=dbO *aظ9R#! V kN%{G8ׯ $CdeW&VVrՊ%첍G(I,>kjɰ(gDB7zHividngz-*vc/M x V;|/'5DOLc*܌1`}=}&BmYH\z/`F&tC,bx1I>pCKv1MO—ZRVI.(OJ$)cuV4`9i2d=26ؤDF!ʁ7gءzh㗁ml}X~twp=T'o}:$i@Xc@w{jeEXc?n~ŎWx2Lˆ*Җ-R;3_)8Q}+hI |~:ӬJ!.v mfq2l@XKc%8t3,02 42!:ZHYf $Şc{0~HX[ !;_+Cʮw*>?ͪ_4eN:K99H 15- BQu%SXIf0y6,8De1mW8޾}3-YVzۗ/1$mzJ8 <^ r|z\ pԨŽ`A^KYmpʛȍW ,uoL(7[bƝ28STPg8['s:J:9۱}mKO^!8u(/hBj; N~GZ7lH<d$`|5^gzYQ-5u8"W8=_67ƴ-%6z[^05$(wR/ʟ9fh^3wG:=94WL52%ϡRR"OZUUa)G-9`:6RN),A聡f'&Yl_.',AUJ{f]7ݑEaop1p$/z;9/,A/93J|F>@TĄNyAZ$IR,yrfZxC˕M<ɑ Ё*V|*IE~^Fj(4w]OKgF­kYv0YZZ縒--pR2fE"9NCNty"651lEI T oPRmQ.^9fr/Ӟhj12 Wyxc+St%#Wh #Rqt/q⺧9)9×-|NPF7r36]u:cke* LR($\7>݋ oqO:TFէ,ZN*/)b) [P 1W،IEp]S& '#^FKUb:~v$6bg1bA.k(lpa\A']oq?RQߵ egY8aVq=e[/JJ|oy"UaNgC',m6|jIyv{Hհ,1c!ҩ:Pbįͫ _S_[]LʧM郕vg,s)3])&־虈0Ƣ/8]CiXiZJ@#JnآYg"JvV#֔SYJ\,a9F& EK(莦"nESWb3s+~pۇKU1vG-`-۸~ܝ˾`n؅6uF\,Z!c¿"Vnq(x:}LC {5℧c q=JFW{.J'luCU4ΝFVxukstO+fK,1,23NUJI]:EATX*AW;Tɾ>/q v>Y`|ޭ%E ?^0רh(`Q>n2 |]w7>Yc6lѭɁ9NCTTثɚLUUqIdp9ALO#!XKXPΜ?s L +U/;-i*2nGx߮xa <4J`јdXz3oh$dPdWģ)ZEԭ=SК|p ><jBIE*S'1u]Ym8J){s )@^ puAm$&bw >嚕(b#B1U@ղE,h@N2]801E1VY]NY>뚝gQJ/㯘z7bn,.Qq,%jKof#f5sRX^'[qD;iRqdžn[V~ mKp pd|~܇!X4~VJ^3=rKa ,0t.&p`Zs " {'[.2Hҋ!3-iFL[ѳiG-@ S8(~: \.B`Jw84.yvfsЇph"MPv[$ǹGKLT!ۣj9ktykpy|3nY VCE_?ռxq̒nP%rsSUt>_bċ]{'7e7u\i׷;D9W_3O[%I.ot$$ +O82ļɒ$ ^RDxFM՚ o=xx~rs])dytر3]Gcl\e_MҦfJx-@^ݻ-bFmFiHNp!Ѣ> hJ #meʚ )%,Jٙ@H!>4KSϮ ڀv5+be pN3!` W^e}#u41ΒW)ڙ2ou "HS|fVSgg 9k6:Ste7_jfi^;J#AJ`::<\,}h.Qjw;^+cv }O `ɟP09y&!lZG푪 Yt]ņ-@/s55Bd$!&*}p>^TW\nUtXuhϵ+zW赣Ξ]|ᏋTVdy{z[t.91 a9 ^vNJ=?n~kJ#Ĵ#hg <.m_3̪PF6}q72߫6#}kebߔWѿ<'._&I\Bv~>tp:l.|Q"pv`[Nut"}cb$MZ GeZRRՍC޿c!6"*"1'eȻbt!Jȑ[WVD^q3Rov?O* /F9c$tg<(TLe359,8E:d12EV9Nm$M;C?rv y<Yw܍+׉׏GQ 4=뭧~@zV?CfN.E ^FNC g~\UYcT"Y]!'9{>f6G\k]vQ=ݛ< $ՇdgGz[ҕm}$QF5(peu{.H l /5£lR%kbbߦs{;sqZҳӷ_U#P?V>[~v[SWF0rB6D )X+cqlYح 4FNLҮ`bɟ;uOpf[ p{RSS0@ WuU@?c `N.\R@^T<ַ |k4mWi}m{Ƣ~8*TńCSъpa $t!Q),j*L\8c -t*~$柾r4,͍ÐjgeօݤxͧD;γ=t/w:`. L6z.kijDy@6MLb?XO楼<>]Xi2Sp e$ T(&\V.z3~ju7Jj徂5$ Pscrqg#eSr\(C?uL0H58(KqV\Bcμ Հe\N ا^81\7kzᶓucC)dz4vKv8z_z6b}3R:pesD;"YI䰡"IƊ8m}!~¨I nBLYR:6|O%c_J,ǜywW}z 4I1_riJ`uAl=&pZ$ȊpsRW f-`W!SxX:h}b9{20[E73AO.&レlV=jRsѩ 8!98IU&uM i"^&W:_aKnQp^xIWvֹo@Q]e`h9p3 og9 zH%?me#(a p?D ?{xĜQ0/-Dc,3m >PjΫ 5sI&Sp ߩ`;}E: `ܿ hY`6gF-׷jzG I1#@?@c/x-lF[kbVm:[⹎M#>{tw4mwDm1w;Mu)) ^~CR[%)m$`zez.5c%Uz= GNwdd_6_ "ѷ<.汄!_+/߰7!b#GTн`MX6ś"$ n-aW^Hz~%%6<{Pd{2WĿ]+);ystS? 1q$2M4Kn+k5;y 4,Uo?Rttp:x^Q:2ߏwΞ%|*/Q8SgNkbk'0ay_C,ehb2+  ڿr" (mE'%uzѫ=k(埗#W_^Z(]@ĐBvh/92*|n -`udԁMyXK%(OʼrT}Dg}$y0ȯe@ I ##-^hՁ,,٢a, i7AM NX4n0O۬g'WGPcRݗuDO.lۇOuI_)z~>]}\HvIG@5(M]6c\$M`ޥ$U^̨2e3;'S%-5?*,%^A5늧+nNuoBA#:IǓX 1/x~}=P8 ¤H6#`bS6i8a`TU0T6 i;C##J27;#3D}o i;utAŠnXzSH+'=x n:S ң 6֛-)2Vj8r`<+i rQBDA3_8)J};^1F&}f^)k.#AmZzPwR{EOը|ڭj$)ZK"mnM{ZRL}Ne0H7֓F몽c~a ȼhBz>K=|Ҹ>sh ;X+{U*.q쿌_^tk^.+3d>5t)46vY"2shXt^Ñ1eٲUV5Yp_uۉs#Pb.7~r1 MOYO&tFH&,5~ejRdV\~H7.&X/hf!_+,F!HнBp2]VΥ9p#L?Q6!fv2%+ؐȼ&8ۮGZz2 9%߼ē)XiE= .,*yrfO}o:Ǝ^JsQjC:#[6cng;5U`wۢvyׄ/\Άw,6N6̀wR`tiiզnVV]q=3.8 Xߜc˭eW}:О.`׸C*p?5)pp:T7uh .ə2.eJviW+v Y`[%IV?,+/ċ:V.1U8'mr".}0&~s:ŗ !n$ Ty+گ= n^:CoUOXY ŀ,-/IA3רLj g[n#AN}N ٞv,X9N 8Z^dh|H)oK0Gԑ|5\BFcRI-xogX32$,U<%aW.&K#֋*`OKD$K!?X3{"l'`7\=/IR^wTQGO[8}X;ܰ< o:3tb@<4g5%  !8ॸћN=Q@ċ0qv 7R.xVwǵMWy!X0"rB8iz=鷽O nCnZ/UvԱS6Sl6^V$\Op*kB%#K,/C z{@hsm4c]ٿ\rT3r#38_;ϴ&GcӜ8] (֒cXv6v~\ ' Lq(y,^^Ml?ǂ4Yk.LtNU#@ˣqSaD{ċ?|wtg \zY ڇ{9mӦtH瘿]ykh U6 Y#p v)?/6biV2tx^OoM\T:C球x O"1O#'IPS 7:e`qo0S;*>:يm2B%͚#3&@U H_Bm(D!Îs`e~R^HpL\$4VGΙC<9 D6J m8\s4$,5'x9*ȓ&%=HL(eG)fqTħsqR9A _"WXEAZBaHIJM05&A诟 F:,`]`m$nMvhoȔ4jB&rw&6OB1*VMmP}]M)YFΡRUqZ`ga1pq>vǴ/L%L|Qa1|*/L:1߯ΜďG(U mO;|*u,N)YXB^G2C"$sm җ_;Wh(0c1 eU>O&񰩂*ԟ8tPxm2J=~JSa"@àH'n.]Fg|e8$\ @%7A>) $v@\O񏖢r-,_-e}ī$`c]^.;pN9=cϻ^(i*(I!:/? /N߲΄xl_Md6~1>dguǢh#n$*VCkճNs&&L3$zJ/Gef@ovN|&=a/qd#\rD'ϭ#-#O2MҲdݗkF#il 3!{Mʷ֢kmȎt.J'MBϊxH:E{s 0 koHTV LY{]l0LJWy;&5˘Z>aXhqS7/-)g :\$v22s;V VU:83-.,1B`NjIgkp?1 @q|ߍ/Ӥ"֋Rw™-Gg8} /=Ў\ |vv?mMjyp?P66˼V$GDcs*i6{bG~s iV5kfRBW \+&2ar$V,ڂ2Ra Y-ԍl? /65;[lݹm_|Ifi &)jv@u nĆ'NFIůi(*p^Zgʉ]0'}b5`sc|q { ABM<||_ X)BƇR֞ @ذt+OpԊRbuAIAHym(LWX_JUo(9IN[zB 1Z3a#c$N[+u!&"l=v q7{kwN]-#_[/C8oLpq|ZTBgs_& Z]6^V5J /}+5`6d4rQf)C%-l; LF7/yn b|_+| NL_gG],[Wҝ_^Gذu瘦ӌŌؒO)ԒAPÍhIQ]l< NTrDJ'BFlh^vAȬ uC4%.W18 WIumDG@컦E@+<4#w|at)k`;Q9iy8]G@EMf5Nɾ-4\$- ceaCHa b~o"]*PmXL,g;3[g";FK=`q.[K2vZg0o+|OF;9g=狟MEbio"4vժ@FJhwklJ-R[$lT1tpS⠙2тKrr zY78L&ɹo o}l V\];uM[dj2a[ [Ѯ\vM)F vPB{*#"`CRziF:4! &C܀ADAt>pT: L` S&1 ׊Eyz~pns^R?cL+-&ZKU)0 5qAc J ,-cҎI Q\?1[3rʳ7OϾ֯2Ub59䈧l^ \2A[M2xO8T|Pf.FR+.# "MaB|Uc NjCpF֧^H%bܼ6Ԁ8L0Sw"HXV6\x:DYw:.PNULiJz$p-e1*&i;Ӣc`;Dٮ 9"մnȆ V<4zM lO\gRBro/rDF4(ڻ2W',bZm%iLWj&Co.7jQf\4@3~C#ge$-Iq>[4TP7% DKgϠ.sI:@]Ii2!J{%{[s,M38X_L,fyMnFTG7 gھbPnbkO":JLbNygId'mf v,V6]4bśl2*vQ-l; Dt\uRܲkt-U/qhAJ/ii3TVSqy3G6&7[=!v kY!(d q}5ԀxI샼lW0@].fMG g%Ix-M<6ap߶edj6ś+eHyUkߖuه5 ͋G?]`FF𽭺UoE˃+\\ŎkV2SBWS.=3vcĿ$^͗+*,8K 5ގ'ŋJ܈)pӺŕƳ4"u&2`b͡(͚JͧBH d9y ne(b XrsqY]の{X@dG1{!pD @Voobqx5Xq0BwߐE4ָiQ[c",*&XekԙB ~AR%0*q }"#rY7/\E 2 ;d>-r$B߽\SkB$x'oS>eŚL랤=4)H6,Njf@4D2wo (`KXh"v6D2nOfO6OaK&^TG'H8L]V~86RĀ?OwL4b}vˍJ7Id;ǫ.+7`M~גK2ziV/h|$֔d,lQa4T)-; WF2EOVקɢZ1]I\= ?F^r[K)X+1UwAbknlum`*'XkERץVCzTI5 i~v8,79 >FiF>htlEz#ZW}3m|vRd(f1&*X:t+Yʓ`xմN!P5FL!ExebzT4|ؑ@f xT$##4I ܈]V>M<{ћٿm]4.w'rUcHѐGvV&:I$T\մ,) CE^xM#5J P6y &ÕX0ON2H<4؅'8/1< /i7?=GD>\|8feBX5'K7=4EĪ4 f==]˔9n/P gK e5+hrJ3bL^\Kf2ΕpL%EU<_H|PX''?}Vou')VeCSgyjm:]Nj%!qNXoX`L5w݉nm]'b4)'7,ǥdEJ*m1 kga :y _);J%]CR1E1f)ޗ'S 9R`3bCi|QJB2Q6nlƋfF8 ̟ųEdS'-dj .%пz3^H Ve:vk ;N}Go~vO6Wd%eD5KI0[h2@.&hǭe9Xj(w~$Dn! LVAoe*qzd)p}:"Q6i""_d|I\F^\ooi ڔ%$hDC-% KS_~zA-n@hȴM\°"pxĜ`gŲ,8"X\w,-s+U|/bm$^%i}i7,]8HAƤSsTpr-6rXLp{OS8̐ҌQ Y`(|x"5*=c)Ho!8V}oKk.РTuv X!횢2.pdgxWS2Ip'\΀'iR!NSA@\Fp3R S,u1 ]MfZlfD.NI$5%__ &F57E&w 8e$X =]n"_v%@!L*mq(%H6$M7+CU\u>яZӻVM+?JRMf~BFȼQtB2^/Ros\dOX&( ]zM5! Mz `˖CK!*t/?0HvQ. jGƷGޞ5O#8S|b:拁拕⎦2 -Z &xnVigDx3&Xm8"(Ɂ+xIbGgH) Smִ/>]7|=uk2._^!Qš2EAll!9ŠNѪьP(WG)0UǒgUTV nP22Z*o{i8533AO6]tBqM;:d=%6ƿtc $Qt(,bےJTVcvJL,H8sোBs%_O cY亾NDeIG݂IAs< !ӽ-aS:VJ[J[DaBW,W􈿿,PCt"䍝& !PBb!6,߶Lv}k(qM4#ڽ`~;G_5\6g |6Ux>i>0?>nݾ7.\pDʍk| NRnPb/kH-!"n;ڐ zC6D> 3=߱(fͨn˧eܷ:1E񎓕BvZyץx `-2ܷh{7׏l| ۆ@t30WT'x0Ъ%ʧXV%k@8ę\e]-!oe}MRX8C"0JHzKb# w1n5l9.OMWjLM[x5!\JA/U%?WВsgS<0"kgܷEtTr,){#.o+΀0`r$H,8ONZk)ʾ¸&.4˽ү!_$F]]@ <ܠԒy9:C"V9YFN2LVKYeoM)O_.D'\N:ƻ[U9TgN7rά2"CY&BK>CBĶD} *8d lʂ8/si ?5;"V!=ցs2t+o5r'Ve.cnK" XWz^@  *iILO$X7l =>^Hx}]7:ZE'5U ly;~ R*WeX(($V:@(=ȻT! Ƃ9V"ۆLEV<4##91PFs@-ӄvTU8o"1 hҠ7U)d%A^`"*X@TgܘJO9DѸ~M笈]Hkr R>AXcRf!:鄻N@Ъ;2lLd([\un s0oVZiFKΖI~! 3uGR~q}n, \' ' #jjWMMEpŪDDK]rjȨҀI[-~f:D.Z˼@r q3W'xIX>}{y'Q(?jo=@ P/ 0_!*K=#h#*59X#}pX:$Bt\.#{{>F4Bi-1B+z815Et~Kt׳(-%N: F#qGtgo\&It:,f:l1jM}[q;A_9wš@/ XQU-+J!VWxqq9OrnKu =&å%`F=ѡh+7`I%d5NvϴCEՉ> {}N a3dwj hMqnR8$:?˂υc+JрR\lz=R)mGlhKSv@X34ͬeY8>r3jPOt+su $h`~-sZ":iN+k9 BjbL-f*:.qje32)Q mQl* l~^]y6ޑXʊ݋=)?{ā{XP)h9&,pc)DI֜XҘ~rHSZe5FjOH!t& ǃ-uvOd_軐4hş''{7S1LÎYUm۶v\d"pq F>bRBLH[311Mîu&jYP@9?f ޺ _%#k8ٱ^ }Epkeu"??Dh *ѥS4`q93 +ePU{p)6LH; +z,eO4 1-zlݱǞPU@yܐ3jw@eD;,}G @75'©GT˅BZx/yBuƽXyLT*5vC e3y"[g8DihHiSw^~ѯW7t_V[rlHܷt2ab,k$#Z/P`%eZ?1Zs߷mdTY=\h%Gsahkv6ӤIvvc B.tv`~/Xs %د|Uʒmi*½b0q$TS&,_!GCY"Xxܷ@gU5\Co$U +kV= MAߌ BvUw=/j>0 ɀN謿&V6>7mm|z'y\[\+sH|(/q"fٯ]! Q8dz/0,+J`ws`UJ'M'J0:WrƣTL,bKŎӦK`@m "18$%{Ko^=u|18il5?x:MD_"q!&,X_8犦P2h-dw@5}).EinAQ s#q yZVj<͑NB/ 7 MK%* [WΟ2ki9v gƦԣ^fDSLa_5 ߀~VJBX1AL$ޫ"zl3qclPqI;`iD6lr؊+7P]KEob +Ij@3儌<:˕f43Y[fv"d7l@{!s"41lYf.]ֳfS9nYlTfݱ<+~6[:ĸ`ivZMR,q!t?i!ϱҊo"'my0 μg6޳lZB%T0?΄7Cù}`^7T_m+|f!DG&UM $AJ/-Xg rH|R1ЏI X@wDCMݚd 6:xzIW1"~rcS#z-۹L.p;2`C@仦G`u|1hx1S4'D>[Gj9QJDa]nR%p gM(ԲЪ+iF48m\rnX.^op|ngoV(g\)xBLÓ= vdwʐR>xitC ^`o};r`OM"bNN?.4bfhWOIYhqD4uXf*O׸:х>7=;Lp2u˜&EeOj; R 2`o{-r48ҷpSdϼY;g9d5u#kvN\G]+釴e}4S8eLΛ8]̡Y`atA.6g\_?{W<`3{;^(;nvTS ^`7rt1:52mJa^8#ɿ,r񐲘H) 'mbk5n$ɘugT9I(_U75e:bQ1 $ _V~1b;n׀;B_훼-Vۯb:Y͆@o:𕞎+w; Ցd:P\:]C=AooB52!lj@4,Ɇ5~KƤJYd($ö*CutMK08=|{޾,i;+}Jt`vc>p ^@oWjw8~oS"_U X) x7V?uvV )+=bQz>Hs1M$* :۝pjV;7`XAg˽h1%D kTKsDMpRԸr%E^oe-]W9`Sz7^%#>e}8~}ޞ.x\)UQnH pc-ؔim $b{O<&ZI}JmWa^n@V+ /~7đ*-朶b"r%$C4k8?!raLZ{p+3F|ճg8 Mg}^6JI 8'CG__/g= xc1P j"C@^0<(B{xˉΙ-%`/GyZ벸g'7eN :tt! Ŕ,Sd' T5GQysuZy)Oo]7WZ;8q9{͌X&Un:Zm%%26;FN[Y[2+m}ჵŭdx,ZT#") xJ.ZY4LwySpVI_ޟ Ѹ qT +N,%S_>~#9wS0dAc / 2fr[ɻM}?=Io/7sT=fZWn+dPAuR$<,?X.ؾXڲwD9ϧnWAmhZf %*&I98.3?>9B(v8&Bùt-' =a7 vB>"ꈥȉ06/޼W(3LɭqK$)fyw.)!nzXz9g11c aj QԆb Α KxLVL  ɤ\OqgA^1`ub!Q~d^8,Kkܒtńu7j,Ĩ-f6wJ GRޓ! O5H(.;GW9us~q!q>mxd~qb@}x11)&R2Vų8}h7ŞjL%?OdzE(bD/3KB59_T:&úK&##Lt2_'P\jwM#g4.Ym*0f<.J1=Yj ˷)E x &V6p6W 0-oeп",|E:Q*4t=fEtD=x}bQw9u͕Q"J8fV^ S͌_5!)|ygB@'r-Wm{f} X (*&<%vyvjE GG8uGP;8ډT "SG2g}! ̄zBLĘ{<_ix UHn+Jy|W}6'=k9![tYKPa.; Y4 .`B+÷MTL =S?lZ{4s[=%pGFbL bzy%_ yw_h2ksO>{0 z~ƀ.]R|v7MK`#^*@^2K:?psE[hMnUI!st bnҌY3BU߂Qp' )`Hq4l_US%iM.6\b?p$aTo>!EZz DjYl|/pʀ_,(UYc1-T^Tq%Q-3y: RbfݤمMᠨ.6ۺA)$t %j-.!)zDHhHNwU=o_?IO2|=2։:,п&sifҁ>1|7$<}؇& \k#m 0 ;e%g|?.ˊk)ލF$8"F S3kxhQG|+s]y +T9.D)MUsw]W<_i-HEB^׆&)x`n٭rm^EZ C>M#ŕ8\?9J|h(e~+8hxbf」o)1t5 u+B.6ZUcBk+H$.ܠ.3Uqt.o drO}[{m$_ ~ƶ'|yjyRMg~"ljH2@RwmjVzDW6nE{+5/݉A+8# Kȵ+!EP6Kq%/rs*578A /=s[8utϒglSf(_+r5uc_^=gf)yz.# :[w»o]><}-|ۖ! '~54fG UiF-*lO\5ٮi$\GS“*>$_6(x$F7&C4D7.;aWgG-ʓ'ӛ(,o"`  ηkC .Ǒ+W-t:斣COiftv>g_VG}ulzc6ow"*JLOz(kFeJpu컿n+!)s2.n)Ifqf0sѼt%>fcdt+ ]?—#n>o5瀨Y3/>[B+/F+ ۀ۩2ջJc/.ؽ=\zܱrGJqQ0w0`_-6bM@֜,n~6G OE!o|3\O,GՃ{p4}s쳓]}0jMɦ)^ 0Ȱ\Dʑ[{%A+b(m<{釾ctxtn%R9T+9lGKyı8)V,3ߋ|{Gъ*dm C UJ`]4e"}\6=Ñ+piÔu X9_g4ndв+t%mxpi;=U]/t|!G4\bnWۦi-HﺶYjʆiڮV_&e!RɈ>f "%Li} lC057Y>t8`c 즀 U@ l"eH U4M3\D@cT)bV4_Be$Ǒd&/Sƺ܃hgvh#Ƿ/_: w4wbwpTiu<*^Np.\$fA>:y#l.3PɪNd'L!= YA(3Op= Ͱ=94:McjE=LsX_<&tD+eb  B̞:Ԧv|h;Ner^U6˪Нx ^5ގ}#`K\^xmSp/ ڵ=8{=x_Ԫ+; 3@zUCaHǭa9-[~rE 撟 s`dhq±4Dҍ,E.3Od< غC}hcod 4๢&ռ0, sԑ"|c ,|?*^Chy[ē te#{tF[['%8`fن7B(54\:R$>QKTF #Qh,<Iѩ)m't{鲎wЄ2ɑMŽ&^nhZuLHheTjQ.'=p$Yƣ dHSuC!ucɐ ,.'yh0qcEs͐E~tco+{Xhf|[9tʊW\U6,|Wz)ߘhic7~ s)6ZN]G#]ܦlQ>)kR6ӊ|1,d[ h3.2;f߲!gf22)&G  m?? KO_w_W5Ӭ5Y6kY% ^&.<Gh,}O;=;ū1v蚢6N$L[ X%_æ:ߛ8?(8?`X?Tխn׽2]/CG̶Q3ɧ3,$tDDzb-:\M\gz%d .I|fѷz5*rXw-lUf{W^W^,eIB7GAGRߥ' f?~$)qm=,5W6]ʡ͚f f-\o ɸ*rBϴz% 5`xqDl d{ZnGC)FIa{ W~/)vͺ!<})S4("G0,~}Vf .QwmMl]g*%A) =zBOP PHYi$Z|7s^{gl'^q]gWR뫻m}f\p+\ȸ1Л pN<}p }/8E|\V˜Ģ1N-N\)!hsȮF4=iZpH^B=v+#R6l4eOQFv㞫m.Z7k-(}lڝj*ztf/WeA C{=:cKow^r^ޥ2 pTjVҭOWqg7_` $׵Hp" @  FNX)BeaQm*ӅiHn GNh{wf xB/>7Gj/'vs0(.IaӨn\=ʳcM:T-j}NX`ZUavBd(i_Xq'BS%e =ѮgY5s՚sGx`>kK,*0SLtTp %RG\ၪl]pr#O@gM-aO7Ө_@9%?nd5JwBGsS+lN;=H:JT/O |8T%q XJ%MDvx$߸섒;m^j6';cc).KPx+ PbA?^?SI9\W[gtvPM*HKIBE.FSp+})])LGd׎YOIJL"<-K3 ˂w*BÄ+ZSrƋgڵa :Wبx0 f:tMaunx -6nt~LۮE|SL1SU rLOHr3|ǪQ" 2:DulxkJb01*$p{I8 Rٖ%zeYbC@,@|!笑_kuesbIfyrk|.9a7eLTQT SƼ$9rpZ[| f Po'4Ț %s|a@"ҵr9S5[$7/R2tG{ bEnh ?r(>C3>Z^*?"کOt$C@$dX"иTG} esl(Fv3/%57^W32Р$Z1fp@vS;Ca٘0MVq38-4io&=czBw7Dohg&.}>`||v) ԙ~*L4<&R%&SVIDpW=M6Z(%,eС 5#6L7מ5G8#H}uorp:@̆DM2*j!רл*iYMr> T?HY:@~<Z|JgC0dp<էgi*g0JnPr$C|@) ,!IJAW F?+`1G# [mG*;eGԮU WփF n62k=\aPc\]hYW7xEGh<6% Px:R.oERXc* O,ΔZ1z?7}\ mq_K>R$ޕ2[l˜ ۢqNpMqx@;C^00=d2 9Un >!:$o0 ')~?Ą Q٬uP=p5pDP3׋_l$) c=$u<ţgzoiڻ^&^w/9Iӭx SfK"t_)F. iBaL=1|yBw,ж<0G kGG#pq柧`0RAxhd&5d) > Y(.t{rd#6v(Y7/ǫ RhFtmt8R ~C*HDqP dS壜^x8CNtE:~q.mvtTp8.ZUs<rBs fgv1u ݫ]/? ܐMrO2OZ<n:``͕JIF]V!aX~+7@\hTϓ版 N\v(y:vtz1cڮI@:2`0S W  2g"1unKmE-OB3y۸@[vj4Ov1H6NA@]jů `&A /&}RJ1˄ 19,p =ACEڮX){b>ńK^V{'œM([:bɾW:ɴdBռkޮgwGZ6[@% K4mKl& F_ FjNKM?b I3_>?&4gB@kλXT5#kl<1†_4Tb9x hLA} w@BRK4wJxQs!vyGsX6LK/l}fjx ]s*nߘ&8ɒFzfko HƂtN8P܉?}|G4qrǹj%sJ`@ @+bjC vh0WEu!4C-P7ðDo%}&<=o@2 F(GAcKP x&3fT77 aU8ن4 קߨB;VQ^< l ܰToPҝ8/="j\{XO3g+OGXm۸g,`ƏIn@ "!4Թ4e^O`%u8${%f6"ND+|QH5&PlIeD}_{7@8JoBx}5#lV~2GȸAމW'%Y:WVs?y'c {Q@Ys߭b~} DHd6?j6\v׋{qK$@2n%Q7g8y̌dmGIbpg}L9Ǩ5F,:(YGj m5uN_Uve$JݳX#pʘpquƲY5o8Ω/EQw\h0٘?q]XTJ/[nI$ '@n%Jp'eƠ?fRۀf]a074eWM u/P, D9}\1kc`lâWecu}֧VߔD'pnf^U>67W1}wIn\StN!`}xkΚ^=>oLgԳb~νy64z @$ҿCt#6c" Gb( wBY^l{dXt1䀀n3p<R{W?t&SF׫)ps6r&B I$x]o `+3vo_JD2/(I~Jη6M36RL94hNh_uE(=-B= 9KdyEgQFH(pk|~zY,:?~/|z}xsMeGFfP%I"Q$w%o!2?ʏ'n0zU5Y([C9gN_GŽa({!ધh+xZqFIUZǃDءLxֈJ*P!{cb)mdɭXݣ7㻇vȐܬ%`@0Wp#w>WM's_;TF8窧di`k:0BQ7̨1$bK"bϝA3%vkxqTW*Hcn#7}=3VZTz[nC8ImAޑ tNRӎkoJNE p]`rԼ~9i@~kqu eu(ǗIJh'D`ZZZI[Iq:,<l2c*x_| HqP > _}Qv-VE A\T\lto `#·M%4-y ʰ;N|zLghPN(~m0r{i2\Q4>!I;5ՍZJe jݲp#A`P{95' iC3&ٿ6Os1z9X܇+i[-Ia p씧t A1_6dѧ:㲮4_H)fw|σbT$'-+]9vlx}J=s)_10x'v Ow ҋ TwFflkΕyf>02{O|{3#Ի\?{ٕnNH\^ /ϫO̵>L"> NxdZŠ3r% bVrɄ䒤*#{"kzWMWT5˦Sh`> bE1ĩx:_6(Z/W|/\jPоvSEb7y NTYwkռolHcAiWe4C\UqQYJM.zW/ߦ6/w}t~2X0=СPk8ba{,iXS(΢<<&`*ShF? `/&u[[m%; [R^Z0Hu%\ ow'-Uj/L?pX00#Iv5Ial;(QtIp\!vr',9%+lgS?>#fr$$ ?R4f);P{ G ` 5 OZ+u P',I"iJET~!ho]]DgJ"~58fQp3u 5'}Jd>c$+/ `BԂTp_ n5ˈTG#Р^^FwBsL~VFWN|! ؊e0%B p ǠNŹ'2I1Q -,O鰮fIrQ!s( cv$zرFBhGTF4a2P{Ly{C5mZ&|Crm3 ${U<ʩW#s]\><5KT@I'm@I^wDm"!yTuѻs?>DXIYޤ-3c损/h"f9 zg:ėɽT/kD/\(-.ؠeNݤټM.BL+֓[\irʍf- >P0v=|}=x3 dc}L ׳=1Z abG}Z^ѫuM\ܝc|pU:O>M_Mb5!ʖz7$xyƛ 4Su'CzW v$o/&_u< Ƕƅ:.6}0 ?X ͼg;@" e{=>H*j$6dEM}皫f16̱^WcY!C(24am5,om$(XO"uhiAQH'bGhXv9NטQ+MI>21Go[v 0i>{p}`j__~6ZE[HP\<.*3a)oڭ0Ӹq08лe*Ƚ18)^ߋ -s}b%lU٨Y)\ l0$BZVE!>S'|t3({@RN8)f=Lu,G ;eq2es>h8J[ JIˎJ$o.%8v>8+۹p?ww"3bҹwr,O6Wl\2u7ocq'ʹ%bG_$ԙ=)Umj 'd]>Ԟĵʻ̗'!) |W!$IW=|n{#p=AV ˺-"wvBxv ףaا `U<`((;#QAOBbVOAWܩ!EB>4C6`JCHCE59-$=j i?i ʼnIhϛvk@Jp%oZZE S{ǵ#p=+ԲL$COTTŝb /Ɇ} F]rDg{j[Dž+ab%__`#GlռO@,;|IDO-UpwW̨v$' @29Sȕ~t")AoGy}Dl. F_\B97 ( HG8>lFwD_Ao2y!'Kf94AQKuU>~F}X|ǜ!Qu}> ` `N}0 XIX5JU$CȴBFh3Gtgni"xU8^o M8m)~k`L0gݢڐyE]Ͼǒ6:[jp#79է GSDoSWATWw Pʜ |~̴7x/L=~<8hxX KXn<.{e=i*ٲ Tw3(}zE8764(r!(B+0CLB\8:BIcAU:R ݞ` dO,FܙEt `# Q&Nd(۵}L?ڌK40CDYV ~vx=[gޢ1-)Uo_뽥wj:K{7,y95C/-J&06iN|YthG,|6p3&jj$ƂRys T3m(PO^TUQ@1K{< i≈qN?n$ Ow ]{jG @2szy){|Ҍji1-zkMâVlXzoŊ=Mɍ \@) _F  B1|4^n0H٘ը+Nv"˴QZ߿+?𹘝 b>ZLHytZx O^,\=u"vEcރyFcR)t;)GJ*EԵzji5Ʌv 5QShUcY w]?gB{drB-iBnIAtբ۫me1qxR9EZRv'lZbfgγ;wG[}!bfr6?fn+E|9wcr2J 'l \DfNbbPMI  =7Skx {.oX@kfK:+̀H۟ͱ'%Aq$BXj4{Ptj3kVFxhni #Zosߤ-7ޫ2a91T_F-pgh츅ǧ_!z}4ahM^zZdT`iB|{Ûz`[UK]\ݩ:߅ rKw6-K1x`:aԫ|px($+bD(=^@(̤?1ch_v2:3 W!)LU5ṷ唆izCmV^<6eS?;!L go%{QNG[>'2 i(DUݥۥD~f\b*JgpfNt]p:_,}Kp3h9o+#cV)5W[up&{=XK>H+5;.=/2e5d.#@uq֝:QI]oq8tDmi2"B'N,Sru6]dϲm `CKcjkD6%+k3em*9 זI8v whHsC<י:{Cɨj!qJ}ܒ7v+|)Q5-ezxX l=w=kCECr1Q\, i#XUN(WR{}Xeylh#2Q.kj*Rn_ڞh+>/N1b~NN Q5. bbMs]e=N2qWr`y>E9=;mЃ5e즻;VW-R,Jbl)Έ[ˎX_w]T$p4h){ܒc#g~r<_Kv*]Eי'MOr15A-E9QeMPw2ʍFPQ~&wn~Sf$zc-ZOvtOq,y˼rT^v1#at>(DR^ՋA}$]T;mf>U(U,7/3w>W,6U_j%b}T33x?A gZwnILbl1*Wp*;/3)$Ƈe/Pi]F=#y  C8謾溘*}|>l"Jd ntxfzዦIJ/}SOՓMhzn}xet f MOY#W!:iU9db}F5/D;=T}=x(s ^]RMHbui{Tp+@9&*z5dH+{K=j7S2l{O͉LOgqs}"=ۃ/i?.W6T*0`n Z#6}˝xÚs=dYu Q_%$ Z1D^ZoÆ_jnG=EPSa`DS\'pETw?BOh6b' fdcordHx!/>VwԓVyL z[V]oYF.Ky 5iqK'`$4R$qj~[UPmk V$okGWr^&^>j$yji]Zju p۝k51̷bܒnEqG,}?oW _#Me͓ƨ꼟8]([ۂ &C ȝ(v0VSjqh(fYjLqE?JՁԊB+e`I<7tk&_*.G󛹾|Ϣtw'~q@qL*:qID{w0oF~m_~iXgٸTH@}HXVpΖwr ͛ vgwo\־3vh/篾F}@$WJU͙es;PHF$ LiăaJs?j]JO4^=?p;[8p{㾼|*2|yCOLJnDr$ \ܓ#NvWgB_'f#IN,* OGs}FF;Ӌ0CӠb PR:,ftsbnX%nџP%S{8 աro(`h( g;{n2cߺtk63C̏v++)!Ew.@gڻ :jq5Ρ U㊲ƞH$|`}P@X<ПDn: 3@0FF}0Bq5Q҂$AĂ?BZՄ<~UZk+wv,y6XM}\}㯾^tf(-|@G4dWܘ04Vr/u opEOEL)+*[9ռQz>s$T%xXiN./u7o[XÁFQ*5sjv*y4nu#=j}Ut0ƼIАLW/J&k*rb$eqS3COs1z~d7 h1zVG :Frm]k9پnw=0Vk>NGzT2Ѳ,;].ebR8UV=j9L"JTGpH[=8KÔ 7DdQe. G^LG^|~,"PQ [ybQp[ʖ=;U\U=D.7ԆQr㘙9ϢxqJ`(7 cQsT$7 %"R][tā)oIJ3g٦4Wfc@f|,-끃KE$yLRFUKӻ$Ao0*JV ?šdC}cc@~ۢ$b/3MMAջٴ KJ>xS\vhiN-<HL+#ц6_)@(-1qo&|+:B^I\_'kq)IDU?©+w$ jKM78Tx%{^C,®l4lc@\KA\honjܬ }t_ ҎVVaUcn/>FUqKC5s:βvI$Uq$pS^[TX/Esʡ u;Z28XX?{LJ!Vj7*w GTWkIqKCxXtiu^nc:7 AmFr"n -c~>2lqq4 WG׉>C P>OeSggN+Cw7./3;鶲L<η#(7hO]-H'oxuZ&_adʏ0? y@+ ƃ;ouD9 V5<(֔;!iBZx 9^4]3ׂ3]#5zJ,@OqR e:9Xc;hM @ j~VӋ`pXL?KO~CJ9-4b+->7ϩʢ>!׭"|yzOR<)qHO/ub%dU*KKZ(/1Bi\ߖ`)tXe;"&e=@>:KZ/H"À[u]TT߫p+1Yw?F`{ɏS?ڻZAz~re`p5i.ҀSӻYڪnSkEVgw^28q5q|I?o'jiIh0GUEY1M#(Ys&ASq8 cULzom_&8.},nbl_KW-O`PU/fO)eUQX דFV5({(y@s$2م0µ8 btE4 Emg9G5WuȆ%*=M&[?x!:prPzI9 U9 xz}Q+O,;;qϦ'D)*5iob?ORy7ߛ e^iU5gu 3Fδb0 QU ^NUDŽϪC,$LɘTuόST?YY%QTз֞*۩# 4ݣVBS=`3d^H0ۣCji9-&]Va*֗l|ܜi)J,vr$r'Ajgj%lw,٬y-;ox{xݺbt[\:ld=^d WA q8/ٚ'8]#?\S `lj{/TLhF6 ٙBvE٥;F>=1B2d]nOPX֚jP w'M 4O鋍RSvae`_0;8A) :׷v}7L1,Ѣ߽Ǿy* ?xD'pnpo$Pt&%c+5jjiXxv$q쇱H¯%yU1&qv;u,ox @mJ=$đ0C $us"CO7E-\תr]-0^Yͪ2r̉nmX^JuKTjƁOGq:|OE*cz B_H>$E2(;- G_R᩵1:džk\(3}*F#4K<)vdAÀ-22-\0UD[xUϠODDQrjb{;;_@w\OYۊTi@ rLp”j3/̯l_ `Ntƍޝ2Pa2_nkÃ&ڨ$IN%T%Iҧ.>Pw_|a;ܼbUDTJsJ9%uq:i^xQ|t|+&Ь-J^9<ճgxi P2/,o:)4F6Di"P˝zhW^ wȼϧwdc=|0oZz{`omn$4J #"iM Hhac\Q4X)$eI'EW'栆W /Owk WV2[DozeW4vԖxjA @k+ƄU<V4 ?-翿/Põukd:aRtYgٌk*,P4t  w-05:viI;TK۬M%Y=kn ZRg֓х4=y5r2tm|7{;XZY uvi\La#6ekW pՓV$Ipޑ7_/0([E#(k,6F Oc ⑐HI6`mUorgޱVФ  {%IQ9LՋX~a NmV#09KdևY˝>5&,gmGל`@j@-/" E--7{ږgCWrE=',Z5l&uGȡs7B Uy$Pu2Sq HUW:7P>WҀp(%Y$ ɘ Ƅlo.3M_*C\;0h_@?4HEYz.Ө*4:"ӓJ;Srb߫Eq1"hϝ .yvtL~Y|#>>FxRY\C?O$ X3hhk [cx.VE+-vHǴq'}f)y_o#t7RNk&gK*?gygHK4PE kVZV3PtV2S%:+\yv޶O3{\Y>}+dy00x+y~)D 0JP.r쾋-d4ir$H^|"M `XmXI{zۤ49u|..&[1`FG2<~9޽ZF)C|Z3k:BgSm?BI F.3G:1 MNZBq!S@cC7]lE*T6Y  4&r[ET!- AO,Pn \|n.Y~p 7൑ZwA=Kn4Y7:j0 mжHn|ԗN[Iq5_WRlr?~KF|nI$k-e`h,7hس#q+cfTN tRpK,!hXۂt!T95^6, P> āAuc~E4a!巌n}\l~G NFѿ}?awiz ɵầ4&ެ'Zhp-1]~>sO=fgAkB<8L)73}АwXCerklԶr Oo So8PtJo3d;吽<=Z}.2U50Z|\|j5hiOplX=_kh۸pLeВhF+y%EmR<++BsMP6/: " hjMZ A|]mIjo(8/1n9 /*J̌Ӊ# jH#|R*aU;Qô 70۴?*3o ,-^T9?N^RR^W;ݾ.oVBYz8c[h5F GE laA5C%gV ڟ+Elؓcёl/7L^,5N&mX9FLoI'9Z/p{!Y >11E  3/YA|,vl~m}~zUx`V9u!QFe =xMڊ].+0VZ9y UÔ1.aض+U|nqeCno*,v[oTPraJ6w'Tz1 [)С΀7x~V'_X$wzz_) a=*h#ĪF^dgz4*Ig2u_Pq}@H8$j08jM{Y0X3PH?g˕8E<^z mɞ=G+}}A]QK߿ÝPS4lG0Aw/Ӄ3 xh8|>NS5xc^kr h:YJkd,/6t~ 0v>ɺY4\?RJl\9|ų4Y96jzU1'c.wBhդNSQꔜ]Z;PMxI5։ux'q'*q+0n6r+u'%t d h&p rLZ|kp φ&D5 !qbeP胝q _jh\2_ce,;Sg{nE=pZ>yY:s'ԚMNK<\t`;&`H}=6b>d.ҪTk H}7dکiUd wrrnW+ $JI8ـg_b '7P,E=$Aj/7=ɼ#s`MkNs=_;IbϝPL_Iobs<)qN TAOń`@qTWRkm`#:6)D~7*l5o?w GG%&X]/uw͞ߵb, ` #Yә}vq'd e%:upf^u'DCsW\59o+-j|5~;1!%}]%jeٖe=l9 z:^T3m/ohﲜwnԊ|:]&)g,$Xn+e@äYDZ87!Bj5:f +Gkyචips9x$b%0Y!0IQDz4u c\0rFC=vFro6=&j:[*ǝFQ+^71O?pؑ\=*)87uj`}D.ut*P`> E`#V/S+:zuЙ7Vɡ_{3ρ¶(4?@+r^~z2\|ƽ׌*m6_.Q}ma4=d*` Swƒ}YP,6D`oHdʁr41!nБva#XNF>vmm[Hqxj­bٺ1ne5m~(r`/aTs¤k_7tWD)w;h#],Z$zC;CQ K0<%TDCvhXW0G- e6 i1!J~6 -X:~c{?eԱ_ csYӹv%\06nȋ{G2Z\Y=U+l_+O*fN!mw>3QcI<*9D$P+%Tցߚ;%2 %i)jaiëk7# 6+'UN98s%s(?%>_[rRh4DPjD'gs%l QRZ fm2A7nyV7e1I)!fBCi]Ud۾bnۭ^cAE/f8B5POU%'MI!RhXQRƄUs敏lj k_m>Q=$~ty]9d&p񥭛nc;Tv. 铏RV"Vv=nkPb9szrn(nnx=O<À$hQ9eЂr-/Ecv;UΕbjqTZ l8!j poYoD D.OL: òO[>ƶ!\R2LkSPNR=Ό Lɾ~gn|gGC)z?2JߐUx¦Q4{v3.ʂSae=aS8ڣ렉";`/l }Ӥ*-$R&ɍe5h y綳C.fEAINA'YRoM^ 9&zymy's f* \Ӊ:y} ; k_l3 \*X{ @;j"}<Qlpn ݅gzZUhU>bV|>{¤ޑS 0]>6Jvj1"Jy!얄 B!}m>Ef2A~PCAQM t-)VSfęiT/fzփx 2֥@4+랉ćXNԢH8y 46pv7ġ"I ;pc7 X85]7po쪏M.Jsg T"NޱDB7 E;_m̼@9TrT ej4 /@ Q9Q(·W' *.T39%|Œ{=iW3%(8pmU uYsgIWS!3 =#dd60uԾf9A>P |z޴IpI2]g kG_@{ ZmzJ+laO%7_EHkUYexdNPjZzDkI:/ILF~4g24}~/%G&YJh ϫp&KT)p%Eh딼:o`O_l8z 8x+@puD6 fn T@@2hdQˋXwߩO0;J(?Lo`ʬbʎF 33;E!播w>p= `ؒҠ4CO-@q~J&KFƪ Aтor_VThwlmTnmg]qe*b0Ӏbqc Dv Աc:)݋9~xETIcYCrXzXKP~V_SMh L ,P⎹%`0J-9<)ɕTZؕ)as2*^gmn`ˇQ{% T@pula3Z t@PfV-oC wsrmj (y`XW )D ?NJDwT,pe5 PEr{Gb G롁ṭS|49OhYUME"J6xɯ2*F BȉH_lhd1E ^ZakFdVj0AYtH"[d۪5Jh ?aCvNei/*)q8=A (U(@ĭ:.18l`yclp`U To;_*ߜ3:jזb~eVA"a^iL4b$pW1UhεU:0l 4Q#Iw3:7?&sݤܚ(|Pz+WhXz5&=ߝ|`B%UZFmVP)](aH:ufP/Ol})ˉˮQX؇ i,qr&ӏ/q*suUQ]/6tIǻk0d| T,a<mZ4I֋Zn(<a7PSL\+^P` ¼kN#AI@zP6 ]X-e56 ڈ,z08#nXw +>G._\-G$>h5j>@pCn{ `7qWtU\ #xI<;8.&`d9qK7Q5 ~?SzeQ4<PYpWڗ&"J=&@]vo[@7f5+eTحUǪ%8f _41]hB T2`q#j60WԼ.+ Rx  3>O 2_,ݸr7ɬLX#kZIGyKE7iHvˢÀk26+f2Y6h`pgPZj ~k=VoNIy%] 4mx9A,˚q]>ꪀu@zg`gu+k`QѿUpK :^]#=x>ni<<#EGQ/2N]px qS_enjcriw0"px4ߦ2fZk+'<`1(,l=RJj{rF.*[W5ax{Ifu`:v^Co]fԎδK!+ m1סLx3m0öl3A!ć4͕ӛ<|5rE8P3ǰ Bx߼3by[BtB%0P Ph S*|HA88u[ W"Н}ae4 uo 0scSj2X21; sF޽rAC\RDܠНΜ"3:s#q yXD0J"vbix'l:pR< ̭8FȲe=y41r不//1FV$Y1,Pr~|׌grP#],lA`X#t@Aiշ|o)*ΈG 1o$Tk2 rqe|q+>rE2?x\&du׻RZdC/S , C IGƅsfsb4G`Ol"&0d]RSIm02$`xGQ\Gˀ4~X=\CgG_/qg7MVe>n)Qj@1,˜hW$~ կ= ~)3˔kwX?7?X]`g( r匕0jl_BWNx]*wJ/l#E1N&GoT s/^'7? C4v| }ȨbV׈O!'1GYU?fX@ r {u<_ ZCG/1:9:( KIet>T3G&7PhHJ'D TU 閜WRf@#A=#W {;Tv]P??>Gӝ E|*jm~Z7 Ϯm wq.-PgNh>MZ#iJB}w.8tu<oFe1Hy)V6hD5 Ⱥeqpgʢ&6$7Kӏx'O/o -s&i]`JPT8l%.09%~EDSlt7r {[qv2xn$VSEfVu;5\Lx!tx,<}J\FjNܬfty288x+[&:jk?N(h̋K2f`x:4)JDM \b3[ɝo0 A}4I25jJ]UqJ`IwC0Nׁ;qs?)n#%!϶/VGJ: wGV&}~@8ܾ Xx7꽁a6NL4AwhXqSvyПx.#VIZL7_|5Zsx ^,>sV$\*my1~%E(<|gޜTCjba+˅=͘*rU0[.Ɍ3@A2v_+ȸ6{WI36R er|i18fg*K0֪x|}T^ wvП_Z(Lo~5m}n!Q_5yE_`-1J|O;5y&vM7ͻ,z`DMT0L/(uhɓx\ ǙXj4)4eBvZ%巹F!#)ᮒx"]RgK Ca?^ԙN3!٪u|Z}s\Ln׋G ˆE4 {duzXwg[ 7KN쇀$#ڽGVy~N5f M)s* Fԡģ =;BPʬgʊYvtvG(549+y.[Sڔ Wg= gQ_ťށk0qN?1s.^dU'21 tК50fu{?]r'C pe=dM 7Ą-(2#D,J)b/$oX>l!q H; #f}=EQ)YCuv:[46'(,!Y3w!VŃ߬֕#u_bJOd%;̈Cm\E-J1s"sy9\%2 HL0zyPDY nd!DkZHXM;P{I[u7ψE8/-7mA H>BE8 \?Ci^8p:s `(Țy1_yVD!6Ly2eY~F l.S3n'7޵nWf͢U4AUiJU2ccH;>?dB|Yًgy۟F;ZjpRY ܺ0U Ӿ@SdKF3 <͵7[ѬTvy+d=|kfe-x H- CJfUy߇D0̣dܠ g_c~IwdٯؔTaRTzK!r,utͅY\hb07)kO0buqJE Xup_&MD!7h8Nv: Jh;|P$^2owg4+'YV@e[g%:E3oOVxsEJ*[dAI9Pv jkaӸ)@Ղ2x^6ɡmڎqjhfk)䖎23fLpe]QhQ="^PzlrqdcU{z(_WuQ e+{4N0u0t:w n:F-w;&SIj@岐Lf\T[\ZγU|q2hg__ T!IHχ"~t뙢U#doK`&T_,:d%?~bVWv IsY@bÜx4uҧWFDw~׺1%Sd3d*sdKzo *2-yAsNii@P+7Qw%f$-=,EO\}N qL񬷉9cce?DH?hng:w  !8M>&PP@ ?^ҸY_yDbURh.@*f3&*b= &#WUSqCO9H7HfA5ʯ,-8b*ڢ~%E$V1HGNxo|W}C4u_wC\"x W=wھh*~ IJ fJw>?48#or;Dxr@tf/Ne{6H;}wo` Ń?;EM5+n1P%V[DLxUDߐ5&4ֵ >,x^)] J#w1r2ꦚTۂep+e] PP;f r5~z/@ |1I_{bGlGKA C0A&.y;3=,ٙTcNY2Z?b8? r@6/C4/ LeLqY#X^3}cC%DY-8nW5(<&9'Z#UFo*aFZf ІBr^R--\ի821F/aps"kf/SLS౨IE S;tH4PQJPSn1Zk%#0Q|ғI4[U&+#%I2 @4}D=Z[&qfӀ+ތ ;@z sHމeV c`{-0Ө21`a7q{ j(cL{eDoS÷aBMjpg Ic6cv;N uSӡ' yvinjWMN4JvgưTeq5.=Yd#5ٜ>@ xe2U>mklָ9"`ꩪMSk7j;i9눳cZ rʍTӗC2k4{8sޡ6%mwm]rV{S\jnǗ)`hn9/?J{ʒ7ޫe.pϳ[o ' ̶Ȧת;a|w6Fɯ OYܮ#Ud|6к QwO!dÓ*Lx055(<}+XB[r}d7jҒm ⓶>),.040*ejn5.ےP@enO03 W ւԄҮE%wEKxl Oܡdm\}PVn9jZ̺..'mIc-fxv8Oh0d]ucឲ࢐Lnyee=Kmߪ@ƸAAW'u4zbz1&JZ7;~LmF qh}J(^4WLIj:%4V 5kK$ꉲcG9sMDLY@5sSIZe Cf-\-QL 4dcT;`_ú `ujf*n5+ҟz>_M~7鋱7 bk_ eKotl(]//Jyu܏7V\+b8w8O;ўGVק}zj-t`xËXn$wH ]R%2.46.` JNFE,os.G[k5ѺK6~i>^mG2S|A<'YvR cR,?:i t4 ($nT҆ƀ@2E<U4x ~cird'Nx4w-H= |H ?#~f8`c;dTm3K+TD2\pW@v{EQjwnT v2jU,mJor^F[zY ]&_yr<7V$S-9oIQOX P<n< bRh^3ِVrs!8|G|8%{ Kn$@^w_L2O: {ˍPMyI"Q"r+V%TAhG>u14ZFQUQcNaQu5f/{Y',G G&އaw8TMY>WE/PP|N' 3_\(f;ɿKn0UO͒5 z#C}l gZ8 "yC^U1kң.y]$ƣ үZ`P#M.|ܙ{Yhl z2dT* aXS"ؕRH)LkX+r+5Q~1)Q[ dgJ$]:$3&""2)O,%z \̑ǪBiOK{>?+5$E^2K[j-P3 s `pa%癡7k0%b{s&eGwjl~o>vSs}ѺV"g],Y&sC{C`g˛69$}ӭ+C;ϓI)dXmuTb袸Fo%I=r20SǞ =32 0>?zٳ lK@ɖ/W R#ရdeJOl{@[mx ̈;RKPԁӣjs;3d<Ts[G`^[3ͱc~'\>wk􆼰x[q.`tѥi\56Sָpep'!oZ:0 :$sbuem.J``=XQtL.!#כw)C">g  ̻ FI%oj`=ajҁn@aң iXʿ , ~orlPϪf@gM~hNGdD^#T9͌簤<Ȫ7d*{*p|P^EN V]ُB{.|zs='xWzu<3},qR3xZ_Cr#XoFӅp5u 6# vRN&ORv`D%xv1^n2tCC.KOyȘ3,.% v+F"l^,@[(*?c>OMEAv/QC>sxA+Rs2O_y }=RIxGW^ےQGZE@5qrhr<Ne6JKCY~(SWp>v`,]1P2\GAgMm+=Ή֪ϕ3$ 9".8q6~I՚K{ϡsp;= r.#@!&xN\.ꣂowzjJvRF `(/Fm{_y f`C8ΠZ,at_(!C ToU D*mBKIJc` ;&#=&[Ko~P$Ø:#BZyN)X_ vwD\\rJ/8'Sz|:j vgmmM^I(Ihe CBZ.}'; iym+x׽_3*;9jAy1WJjm[j&lΦ*xI%{- gwflhܻhfN~7l<}1:s!Fk'#6zrߑ՛1M=&̥R@ ].> r Xü@{}|uIio&hvvh8QĺLqV}6/Uݾ\.KH1Bsi!3Z+j1Tk=e-Й/Mh,mM6X9Gp/STh%Y `p&VZ1ƃZ\~)% ,vdg\);)Q_C8yf:rٙD#V9rE%}*DL0o/_[ !8g,y'd\,S-+rg&~y0[UZNIgյ\(Ԛ6 ^Vg k%r5~ͽlX~zx՞ "0"J!D"m%aC4뙢rQvPy@UdgVg|ǥɕɥz `Ld>EwJfļQ3EPfQ]zy`@$B%% CPvR܎EN/+x与ʗu -=6(Z,S uHNt T]hkG+@|z USaaӭ] $jg{, 7#W=ii@eDgDUx]cY,Q\;Vש{BKM{8%}*8iX)33ܕEk3-O/eyD8,(h*!m(J`#.;'i|0KW0_A{JU,ѭs29c͔dS㫿 FW?0<m"!>sVG$uא H$`08Ǔ~P?jBlީzz9, ^_ -@9R@7*T˪s[̏J}[$Z-ahTG׺4aB,z=[[1[ȣ K)/OZqn/,]MGPVUMesCK7ϥJqqw8~L za[Y&m/TemfPʖ~bh $pNM>Dlg*?~~b/<]#`#]eܐOz搠BWIYqT``3y>uO}`ξ#&b>0|p2F=[\<@."7v '0M)GRtӢLx v2N- tVFؐ:6OFa?ɘ`]oZ3rr=ƑeRwIJxC'E)9$X4_5v>X]mze*ԦǗt+*ccM:w&_5b{,VPX0P-Kj&\;y0sbҝ[oz1<%)(-mU ;}Z3Gx,0;oAaόm:)7Zcޜ_/1T9O[CG8[o^/W<MM8{H0^̲[TnV_*iEPm'^RBEt\q K@࿼AW` %f~l{aav!^~ۘaPɝ|IA%3_3k_ u0ԟ,07<NпXIږDn9Wxl,5φa1fD Q>; 4PnWV]/P|N^ ڳ_081n1|kԟ4cL\7zUx@@=]0Ƚ%tGLp n?d=fJ[-%*ޒwJWI|~z Н%ωISM^m0 @.SL(Pua(o6&q.=ƀ>7D0B,RS+iD&eZ'<X6 3[ɥڎ9G<ʇu`uq vͫ7֘V2۶$8Wut@CU |H#M1$Vlc;vc.`Xb[00L!M|٬\{szypMUξ [R'xhE#E,RdݐJ%ѣQEH)0Lɜ.}|udBn!-b1S%YL@4"ਝ ㋯GTs} }h*/[93wpUp&`VD3X g@w;%MS_lܱR a`v0\ ^Ԓ$@Pz x)[ݨM4K@|lm&tz cem zvֽ胻>]-wp4w[#p s 1%zGύL-$:"gKJҰ -WFݫ1.GܩLJB>JZ+9l O;gL TOS+B¯жȡ,ْx+\@wk oEHK1 Xy{:v_I†$pyܦ {GӂuvR<|*Y+< tyo/MzbO ,7!XU|N"jfky\ jG8g/C"j%RvxbCygnst=W->{,Pުt^:35JGݣiUݨ_Wv$Bƾynst0V%:kQU}ǚzb&D3C@py `/C:E\%JQ2+;.S#0f v\&aaţ.[X) kp" 3W~ m Molր:SS*m CLP[5OXyu;5͠wR1.U\L4)$F/Ԏ0߮Fgй۵!X4 /;:`T}$\ݲ#vuʑ,S󾶃-Fʆ]_G+^{=bQ2JTK"2T`n:r) qBbˢoԛmtuJ.ׯk !Iu"~JR7>%]ރM9>)LRe{r\Hmfzlad-m8=hGu˒~7'  #|*= %CY/+ŭ)Z "@ƈi9%aޝKo[_9ɿU5QK`-f.8?BU*V_*j~8031ZwHijڝ0[2Q`@M.W x<*LO8 gfQ>`0|*shm[gK OyMR}ƈ-O UFgno3X쿃H9PZg!0RGznr+5"j݁1{^K Iyjr۔TFI>J g|6s/T뜒\dj LY gDW0~PZne1\2Y+ }9NKzk`D]o5@-c ld-88wayd̗GBCӰb"+6ݍ\t$x@\n݁=HU!8q!|W0f0gh jKِy֠u:eJn#LvG2!S]Qvg%4aFOǹ^fxgᵱQF`)9ːGZkhesZfV?7}񄞥Sw'{r.4*NM;90/U> ) ᛋO2o&bI>v`#|ܘ$rN>c` 0\%_ ~fZ!jTA8A1]5Bڢh?kq sQ+Ru.lW‡-VFT{+dSwr?B݄00Abm5ƍDtpeLo+ocU Nj"-i A m3G7UqJBN@ɒ(e]8[23@G*Uly?0!MͻfG(Wis6`ul]4.)4^;7s`V_~WrZI1z£J2$\j)+l߄ [J=B(S6{|,ϊ^ȭX}xu ^_FcvcO Xs -J|:;ꂥ"M;jZ#d\$KK!{iγ3ֆJν(@xkD},D;m(f!w 86XT4ڔ"y,* V.cK'ٗrrh.`jTdz>߀a6X>VC*`wC}0c}ǣ̋V-t +>D `1A+d{EIIaf1UTae(L~gEe ]^? ?^O.!K/9~ z[tB$WlXUf$YuSJt \1h`0L"`Ov2yMeFh8iBk*";0zWN6G`8oK񷬽>܊/k_8M9z`8QZW۔m+Eo ?FəI:#s|x=AҶ=ty@yUKԖ\"UjoZ}qr7O obCVX?{+A<Xv\Y:痺KĺFOL i1$p_ݘu%yua-aP&GVf,ԓ(.x%Gj@(Z*+ic2L6MnT\anFE8)c:镀ͫ(cjcR*怊 O#**P p>XU0QQmr C#o%/BIx&>Hh>v`?%@M{~ޘuui3B [gB7j)@8d !&J&Axp5En?wJ+~lu9+M݁{6=%|Xbp ~\^+l3#qbxU Y, 2S <@I\aJoM۾?moR'c趌!N'/o=w"xXor ~az}M٘Hn0 HK=?7dglGc~M;;0|H9)[#cOu؂^7\0̹F=SX> IM9kGy.6Ťm^C Q3&< Tϫ`X rZ"0>g|ㇶv7vV%S`1: ֔tUKGAxٍoNFqc9&c8n6XB0Y` ×C 2׶qPvnj).vuPe`Qխt* H[(j4;3u) e |);_7g+Uk$ 2D*rx#̕F[K45*WV!~YfY jcgP;v!J>ԩ(ؓ F1KrΔ3/ 2r tP~@͹[p7-CG?F$Cl9URށ}]w]8lÐhRMw[#ɪpXd-DIYKU ېKy6Y 3moW-v``V{ lVl ]VLX9m|O/|R«N-j"kvx}ͪ5(s޻o~StDj-oQls:=/iF1jnԦ/NfZ k4%;u0I7SBRI 4bnȿS܀ԠOq_\ATS~24RW+9̌Rȣ,,YAp]̽`?`s }Eqd9,QzHP֓Oǁ4k'~pu1=y* VduF/q0SOkSRgfz^jn*" x8nixdװ,@&85Zs2P&m]:/|ʟgY<6qd{T*}'5W!LKkBQǬ̱'d2Z.!v/\sk]7BAU{In0~yV66<U9ZAQQNuعR&v}8EcEo-${>U?ƁTil)隒 LXހ(@J_9-q Vsͬ w5"?"L` `o0P!/A !  d}z{&rڻ,})bejP`*Y(AZjCx): cOJNA#ϱ=tl6#B+S^P|<lEs9vR!kR|/g:9]t5jtV:7c@@w=*r06`xRfwm2 CdNry*ťuc_'q~曡<<h4Ag`: .).-2NYIE2EX{&"=nC+8yjP$HVVJN33ԖX vʻttu :+p3\d0 V6κe>*騛?E 0kcIm0Xxxjhz6J4`Nx.YyLud[-`'^,=1ҧ'MX܊V!s[,Pm1 g64r4ع*{! tw T<V8A,+2/Jt])[CZؘ-!ꞕ"Ӊ.7%/vw/`7^G@ʛ ȖǠ~àܑ\ȗ6?@a7_I ۍn}^w(ש}$:^Ceemc>J( -iݾ?]i)B*8-F釦gK90,%+;J5O> 5u6W!?l"d?z8JXI/W&`6j̿1Fy9 ,h\xgNUw- 'Pb0d!PJ͎n*#Gvt?Dc9K^ sHgn4:0 ;Nk!e*bDV.liC;t@x/p87Y\: )ukWݍUCm >^B_EJڑ hJFmIoĝ ?v c//Sw *Qa?,;PY5.cYJ7!Bkkws(IK|F^Վt\V̷-=ZWQ޻|gk95᢫`:epjdv }~ *m|[5DOv`hyw*3UU:KwJft^y Er[^Q7-]&z(rN5CuZuPP 0I6h dEٻ#WOCHd.L'`I2~S8s^?kHj[025:='eLq|lC>t<ڀƜhJ!Ѓ}lGW B$يpI$eA[rjlDߕڂxL2wl<݁hKxwۀD RfM=()= ք'#ՐpOcxt@ ":KPAMPi6ytR"D3CԳEW.e6 &G ߨS`RɅpVoSCv(<Lm8~诅>}X:_{ً9 9/IF Y7A {|6fiH, w,e4 \AIi3n>A~}"wdTVIooݹ{uj=]T$IdF:r[`X#boecsaN F'8F/L$q2ͳ&l玁뗳O 2rK7IO17JMZ\) H8'/dKvH GG ?â%9?јU MXL̃pkSN =>]=rOqX^=9M)_r| e2vh`=_IJ ތ"~6ꔋB)@l'Gq?/ه3},34kp  3 MwMuj RCYwt){6^ص)=ˑX"ߎUij-`0Z`aV%en4T*V\Sf-v"hMtʓ8w*\<0d D\5J֪r8W1@I~myQ>H>n27v/ZdٝUNւ,-7@/F@ՌZsJ9)-JZ#0F_ĩ%J)ݯV݁#Iu7C+K!پƹ7H/Y3; f"bNFDkadj_ʼm|ؓ2ca޼䆷 %3k1#p6j D 3qiէSM i8\ъ0|YA6\_oxUZTyTvwykÛwS,$3w=]ίK,L7RȌWS j" Y4U>[F6o>X*us)/Qޭj(Z<ԢVTwop)7EUT6Ybgqg=e-%N̙?~!̽y.GVː mg RN :T d^UmS&ؕ(34r/}7)];jzWyY6ڂWxYs=ūgb5Nn'I'o3 4 M@2wO 9\Vh0;%>^~g+m.]c}w V+$b5`Zn)@ w>و~Vm.dmX-pg;,||"[\YWfsa?.9vTEߙ?RJ̌'9@WK%:Ξ.WNjXkB.: {G~!OڠvvmC̍ʨ V1ĺxx DN`zN` 0#ũl)?eE/⾲ԟbv:woV`YMgJJ$CqT5dw/-./eYݧo<v+f7wp;&B?t*.n xLxfU@ XE!v7D^qoO.rTË )U?OOw`=?ƎVYgC"  "TvAm4 @Oٍ+<݂s,VJtKcd<#v;Ow,Ϗr2j< mPNiD;nj~oW4KO(dg@lM`V^l^V&esXY}\ɕߙ&}Wxr {}:݁$v?w~oyly{lih:xhF} `şb-F:_0T!;zfV4zaFy9-.'>Ӯ9}w+`|ȑh2ڢǐ??S myk8d?Wnc Y?] p&?GWM-CW?֯8iK MKˢe((W!>fe=$\.#9~pWd'~];?h#H[{W/Ic;%9rW D{5VcX2zD9'9j4c$du8'4"&B5kB9>Ki\UGN&gqhX^{]6(WskZ~R i*链twl&? E,]T?<>Q}Hܾ:hgeF+Tm"^O uWOϺ f];h_+T(]Hi۠Hʱ& ›4Sz]S:s}ƀm,JlaK'_Պ{I@ s"AtCzMEyΩK8h^:&o\ȉo״.&4 Zac L5O@5:s|9am4rȚ7+ƍtu j7l*gH1KziT+ k%?ö2z݁ m9zϹ`svP0=腔cS*v3y WRe,Mϸ8>=qgYO9 0)\k1 f{*T&.]вwZ`J/zv5Q̰>7,n՗>B鵥YKȄA[.V>n6pZ)v=Y[RbZR_Nv܌ؚmC["؊NJSJ~ϖ&)A݁q`{Q4|r x"{W#@D"p lH`o.2*k_O,K_qL9벥Dg96tp/T0W,Çaa/lnt:EZEW?wuMe׹ T}k._!̸WH}=Ь;n_뭱Ƽ7 ;?e,;|8z lCmKXX{ev\TjA]OOSU?ݚ+HϮl[ױhm:7Er#5{2 ]H/>OÚ"1sbXOHO?t-&Cwln}쯗>|ߞz[jq'PgCE~F« ky}ǐgiٔOWGKrkFBDs~EC>y;nݝm̏KrRc /_KLI+(U68:ڝ5,sZrB1ŋ%9%3]Ww`~{8=>읝s&+[}'g;=:cod"IENDB`d3-5.16.0/img/stratify.png000066400000000000000000000225551364736134000152600ustar00rootroot00000000000000PNG  IHDR* iCCPICC ProfileHT̤Z #k(ҫ@%@P+ ,E\"kAD(v .l ;wwo{\a lQ'#6. @zT3׿mt4S<7)r"7)4sl.]-(+Q.b4i>&2 (lw4: ʖ._-ʮ6:22N!o55l,a:{[9tРçC׬6miCfϝiSQ3a.;piQ3>fEΰhi }~~KIY>3epnJd pVZD/i^$,cFlo\)=J&yH(xa0=tt?i>+'Bl6f8:['T>pO+TBd3PA @bh*R~NCPtF7g)"sa&‘"g¹p .+p3|<ma"^H$#"d R#H҆t!7 ahDa8LVL)ӌ b0߰T:eac<2l>[m^`q8gspF\;7*xS >gGaGE& B10B N"XEl# 'H$C )JZO*!5.ޒd#9'#ɟ( e!ELFSQRT;5MF^>~XȰd2kedee^ee=d˞!R(g %ǖ[#W&wZܸD>C~  > \< hME6ҪhhÊ8ECEbb11%%[hJeJg$tn@g'h4g˜9s>()+')(7*(VaTiQyQ5Q S]z@K5E5g5Z 갺zJ~B}5^j55S5wkբijvkzPbx0%NƘXBG{BP'JgN#].S7Ywn^*zD}~^.1 Z * s Q܌2*n㌙i{M`;2)tiL`Vivǜbac^o>hA`bj;vfignYeJ*jUkku-ZV׶Il6u}w7؏:9$8;a*2C[Wk8~rwv:sg %ͫ7vp2\\JܴnnOuݹ#G=^yZz<.^vrr&+i%f%ge*UW X]Zcڼծ'O[ Emؖ.oeEw69o:g͖}[p Z~zGK~ܖg;p;;ntY[$_[4+xWn,sض^^^IIPI>};})M)(,k,W/Ra?w 5|n_EsAeaO~bTWZ]XFP# s;~d{=\/=h1c ~}"DIɆSʛhMP汖Ik\kmmMXRsFLYϑ坛<{~]Pǒc/ xe<_qrטZ_onצ7Z{{wp[[ݎ};ܻ{}?ău =*~7%ރO"< =/yOOGFY?;3;|/ѫS=;6Zzַ*okپ>ć*k?1?u}<2 KWm=̘EVANNM 8;@MOBK;QB=4Q)K`iCY6ӵ(~| ɉ_fО9ŧCPc[s W"LBOYiTXtXML:com.adobe.xmp 298 137 `LIDATx TG#b=SXco#1LʠA²'1 6&ƒ21 n6%:-Hd%WkpJ9>Ơ2 &l8':(QcW ,dٝܙ|ߝ A&@AP?AP?AACCAAP?AP?AACCAP?AP?"1f3cIirYD CZ߿*<A1vsV ^jdgNCZQO~Oe Zfj<1椙Ojf4M)KԯSUUߗ _3ϺJ- v)(mEdaw(KFQ?UVVnݺC?CcǎMOO K5xxZLA{gAߏҴDPH~~>6qĞ={Ʀ5ک8Nӏ#Y\TÖ& AS,Q׉(xਨݻw; Y,{w4 {~9'hFP6 i~.&&K.岳o޼نo.9HYx)YmQV~t~~͛ d6m6_?HeN^_֭[6l~ʕ+klk'@W^y:P$ ~Dff&Mсx!ޑ"HjX,(N:5!!Nlu!u5icfFSeIU0dEm/;Mj/^$)))<<ܾ}JKKO8QXXhݛBۺu͛!t!HXtUW8%̢,;8jH^Rld"͢~͢dƌiiiʕ+Ν;|0 =ŋGFF?>44o߾ݺu={СCGcM>?`Xz>ϯ\Rcv] FҌ^f)E$Z)sڍZ;D݁K1caS4UVEGG5 \F9k,ѸvZ0;;СCǏ///9[>F5|ܯiA|2,6QM@9߽ܹsv-[^^ =oۨ+V ^:{?n{! f:'kha afth9̄&~ \{`S4ɓ{&O M{gΜ.\?5+*xبf!85$glaz_Ӱ, ]7n`SܹsDoG9n8o~"ESԞ_k^xgH 7o @d׮]Ǐ'N#sy7kZwKd/7o#}>}:<>}4_{PUU^k(E gyBCmJ/&hQ HZ[YY }}-[,22򩧞 կ~ ':!_;ݤI;=#9֚'sT2gFf}';)zqHW> 6mѣiNJJڶmۡC:AT>cHܹ">سg]^FrO[a"7L \r0+vs]p* GP$K~{RūWF9N2|ҥm-ZaÆ "ȑ#ccc!;w 2c֭3f[.EtحQ{CڎsfخJ)*uU+經bwZ/'ו-]A~ߵջ:ujǎ&)""(*55>Sc$dXJJ[g, ;T8tv*홓ʭ}sԨQѫVڲeK~~>|t!.74N嘘>} KB*((Zmr$d qjL𲋣3/k=C+As"Zeo^*++Ϟ=|򨨨9stm̘1p ڰad($@iӦV 0H8m6[EE_;I1h}}֌VZf)qrKjܾ}2W^y"ǽ{y$J1orrrZ#x`޼y$LNuFqm>PGݶmۋ/8n8v?~;wPԯ<ǎk.pڽ =zĄ~S؉'AgǏڵ+IЛ_sE׿ŋˎ;kdggcM1ӧOXbCBBBCCM&ӟ'xR-تYEq ½L'o޽믿NII޽ҥKokK,;vlppٳ)cZZھ}Μ9 GkQ)Vp_su.ԯ#ϟߜ-\4h;SUUv/{LJJizz_DD4/䮐Vdeeo{k'ٵX3Aq,2z늤Zɬ"-6EwkPBŋ[=z.pڵ jsAA4ƍ!Z '=CpGFFBɓg͚m8|V._<77uZ/,Aq:&H֯aq`!HQKLX$pz=YDZ˗Af3g΄I/C0%\ >ȰZ[lKH>bIx`بKoXC~Y~??ё#G쿏K})RmQ[Qq ^4sH8#aPhJ۫ X{X@4CC/\܏z^ XP"4'* ԧ؍E?n_+t÷omSLЇ'qQS-: aqֽ<mE~]*c'ϛ|u߾}-z'?c_QQ裏N4)++ 0%.\Xlك>R;(֭[`]TTT>}^zO?-o޳gϚ5k m6K.111AAA xD@Oz:L2}nݺ-X 77ˠ&&&+Nu Oq j(2~$SbVez-녫WuO>$$ .}|Mdɒ~=EQ ửDm -b%6,$#]?uea̼ghVT\U|%^>yRk6#""~GyǎۿDFFBڙ؝d&(H~ꂭ>gF2sj.UY?&Hcbf\2OvG`C.A4\mrbHRR$]tghx&$$d>)S-Zd4_@ lڴ3iii>vi𪏷뎍?$o>>x$6Jv~FNRudZf6 hc^Y=$a9ms)[mjǐ3&'~뵏v$5PzDVcUX/1`79Lٰ!&$]M_W񵮿cb6yyy/2EQ?pppСCgΜ9n8̹//@#,Uo^}8%T/&SiUMN ƍ7Ǯ]fϞ @~C<u޼y[l)-- H.k7iF6hm5oV;9z/@OSzݳ0 &25_g}?P}χ7Kk^z577w#FؘWhTn$h4GҦg(fz~~wEg)>,99S}n% - sî4߃ܳ /^׫W?Ϸnҟduܹ={E4:AAA \WVVB:nܸ &ܹ0 a4{kJ Isi ôiטn9`gFP?G >|͚5M9jԨ9sQGP?oΜ9ܹsMp==~ȑ#ӽmPPP*X/X"&&Gb}kk{l6[>}|apԩƳAڒ\***5k֒%K:#[]O;6wpe@P6al)3<?dEN7lذ;w4go&55gϞ O?~„ .\h.'N;v,t _g ( r"ڵk{=gv~-f^+vܿ` ^t !k1 .LKKkIII _lxeev/$9ꕅnMɢ*0??MDQܶmO?ݯ_zСCԒ2omVd$HKmYh ׊#!Xv(CtCiӦ ջdff^:22r?Ox≔7ڵ\zeve--YL[xVnĉpfһ^{WdhcRV>V wъyMGĢYXi݌^hh>>""2Ր|p{g r6Yfp9SZ UJ)%D*յftJrZa^leAd:/IZ,4êQm&(`]-I,)ēZIbQ-d~T'NEXnwڵ?>a~~>O8Rfn_oujXfuaTjV<< Rם;P|$cM$Abr&*HIbgl]Xӏ~$@Ϗ @P{y-_A:-[1o@P4""bƍ1$''bS _PVV6}t3nԯc @PaÆ ݻw_nրAP*%%w?W_} ~֭[f͚f2Dԯ-͍ڵkLL_ b+6`0@RYTTTQQќ ꇴZ~ԩS Qܻw_|Ѥ{ͯR̐IQ 8Q992SLMwYӐh3ܣ~rϟ_",,o߾C 3f͛]>뗸^["(,,9PC"=f V"i+/\3e P3nQ?TWW_r… %%%_~gA)VYmM?%FSyPDq!-^hFZwϰv֯f;dixg$!^ l~QoĨq]N]ʋ"dCZHS^2Ld ~rMJ$~_DVD~~!   ~~!!   ~~!M {%^4HIENDB`d3-5.16.0/index.js000066400000000000000000000015751364736134000135750ustar00rootroot00000000000000export {version} from "./dist/package.js"; export * from "d3-array"; export * from "d3-axis"; export * from "d3-brush"; export * from "d3-chord"; export * from "d3-collection"; export * from "d3-color"; export * from "d3-contour"; export * from "d3-dispatch"; export * from "d3-drag"; export * from "d3-dsv"; export * from "d3-ease"; export * from "d3-fetch"; export * from "d3-force"; export * from "d3-format"; export * from "d3-geo"; export * from "d3-hierarchy"; export * from "d3-interpolate"; export * from "d3-path"; export * from "d3-polygon"; export * from "d3-quadtree"; export * from "d3-random"; export * from "d3-scale"; export * from "d3-scale-chromatic"; export * from "d3-selection"; export * from "d3-shape"; export * from "d3-time"; export * from "d3-time-format"; export * from "d3-timer"; export * from "d3-transition"; export * from "d3-voronoi"; export * from "d3-zoom"; d3-5.16.0/package.json000066400000000000000000000044641364736134000144160ustar00rootroot00000000000000{ "name": "d3", "version": "5.16.0", "description": "Data-Driven Documents", "keywords": [ "dom", "visualization", "svg", "animation", "canvas" ], "homepage": "https://d3js.org", "license": "BSD-3-Clause", "author": { "name": "Mike Bostock", "url": "https://bost.ocks.org/mike" }, "main": "dist/d3.node.js", "unpkg": "dist/d3.min.js", "jsdelivr": "dist/d3.min.js", "module": "index.js", "repository": { "type": "git", "url": "https://github.com/d3/d3.git" }, "files": [ "dist/**/*.js", "index.js" ], "scripts": { "pretest": "rimraf dist && mkdir dist && json2module package.json > dist/package.js && rollup -c", "test": "tape 'test/**/*-test.js'", "prepublishOnly": "yarn test", "postpublish": "git push && git push --tags && cd ../d3.github.com && git pull && cp ../d3/dist/d3.js d3.v5.js && cp ../d3/dist/d3.min.js d3.v5.min.js && git add d3.v5.js d3.v5.min.js && git commit -m \"d3 ${npm_package_version}\" && git push && cd - && cd ../d3-bower && git pull && cp ../d3/LICENSE ../d3/README.md ../d3/dist/d3.js ../d3/dist/d3.min.js . && git add -- LICENSE README.md d3.js d3.min.js && git commit -m \"${npm_package_version}\" && git tag -am \"${npm_package_version}\" v${npm_package_version} && git push && git push --tags && cd - && zip -j dist/d3.zip -- LICENSE README.md API.md CHANGES.md dist/d3.js dist/d3.min.js" }, "devDependencies": { "json2module": "0.0", "rimraf": "2", "rollup": "1", "rollup-plugin-ascii": "0.0", "rollup-plugin-node-resolve": "3", "rollup-plugin-terser": "5", "tape": "4" }, "dependencies": { "d3-array": "1", "d3-axis": "1", "d3-brush": "1", "d3-chord": "1", "d3-collection": "1", "d3-color": "1", "d3-contour": "1", "d3-dispatch": "1", "d3-drag": "1", "d3-dsv": "1", "d3-ease": "1", "d3-fetch": "1", "d3-force": "1", "d3-format": "1", "d3-geo": "1", "d3-hierarchy": "1", "d3-interpolate": "1", "d3-path": "1", "d3-polygon": "1", "d3-quadtree": "1", "d3-random": "1", "d3-scale": "2", "d3-scale-chromatic": "1", "d3-selection": "1", "d3-shape": "1", "d3-time": "1", "d3-time-format": "2", "d3-timer": "1", "d3-transition": "1", "d3-voronoi": "1", "d3-zoom": "1" } } d3-5.16.0/rollup.config.js000066400000000000000000000021521364736134000152370ustar00rootroot00000000000000import ascii from "rollup-plugin-ascii"; import node from "rollup-plugin-node-resolve"; import {terser} from "rollup-plugin-terser"; import * as meta from "./package.json"; const copyright = `// ${meta.homepage} v${meta.version} Copyright ${(new Date).getFullYear()} ${meta.author.name}`; function onwarn(message, warn) { if (message.code === "CIRCULAR_DEPENDENCY") return; warn(message); } export default [ { input: "index.js", external: Object.keys(meta.dependencies || {}).filter(key => /^d3-/.test(key)), output: { file: "dist/d3.node.js", format: "cjs" }, onwarn }, { input: "index.js", plugins: [ node(), ascii() ], output: { extend: true, banner: copyright, file: "dist/d3.js", format: "umd", indent: false, name: "d3" }, onwarn }, { input: "index.js", plugins: [ node(), ascii(), terser({output: {preamble: copyright}}) ], output: { extend: true, file: "dist/d3.min.js", format: "umd", indent: false, name: "d3" }, onwarn } ]; d3-5.16.0/test/000077500000000000000000000000001364736134000130775ustar00rootroot00000000000000d3-5.16.0/test/d3-test.js000066400000000000000000000011331364736134000147160ustar00rootroot00000000000000var tape = require("tape"), d3 = require("../"), d3Selection = require("d3-selection"), testExports = require("./test-exports"); tape("version matches package.json", function(test) { test.equal(d3.version, require("../package.json").version); test.end(); }); tape("d3.event is a getter for d3Selection.event", function(test) { test.equal(d3.event, null); try { d3Selection.event = 42; test.equal(d3.event, 42); } finally { d3Selection.event = null; } test.end(); }); for (var dependency in require("../package.json").dependencies) { testExports(dependency); } d3-5.16.0/test/test-exports.js000066400000000000000000000005721364736134000161220ustar00rootroot00000000000000var tape = require("tape"), d3 = require("../"); module.exports = function(moduleName) { var module = require(moduleName); tape("d3 exports everything from " + moduleName, function(test) { for (var symbol in module) { if (symbol !== "version") { test.equal(symbol in d3, true, moduleName + " export " + symbol); } } test.end(); }); }; d3-5.16.0/yarn.lock000066400000000000000000000776351364736134000137650ustar00rootroot00000000000000# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. # yarn lockfile v1 "@babel/code-frame@^7.0.0": version "7.5.5" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== dependencies: "@babel/highlight" "^7.0.0" "@babel/highlight@^7.0.0": version "7.5.0" resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== dependencies: chalk "^2.0.0" esutils "^2.0.2" js-tokens "^4.0.0" "@types/estree@0.0.39": version "0.0.39" resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== "@types/node@^12.6.2": version "12.6.8" resolved "https://registry.yarnpkg.com/@types/node/-/node-12.6.8.tgz#e469b4bf9d1c9832aee4907ba8a051494357c12c" integrity sha512-aX+gFgA5GHcDi89KG5keey2zf0WfZk/HAQotEamsK2kbey+8yGKcson0hbK8E+v0NArlCJQCqMP161YhV6ZXLg== acorn@^3.2.0: version "3.3.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= acorn@^6.2.0: version "6.2.1" resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.2.1.tgz#3ed8422d6dec09e6121cc7a843ca86a330a86b51" integrity sha512-JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q== ansi-styles@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== dependencies: color-convert "^1.9.0" balanced-match@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== dependencies: balanced-match "^1.0.0" concat-map "0.0.1" buffer-from@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== builtin-modules@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-2.0.0.tgz#60b7ef5ae6546bd7deefa74b08b62a43a232648e" integrity sha512-3U5kUA5VPsRUA3nofm/BXX7GVHKfxz0hOBAPxXrIvHzlDRkQVqEn6yi8QJegxl4LzOHLdvb7XF5dVawa/VVYBg== chalk@^2.0.0: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== dependencies: ansi-styles "^3.2.1" escape-string-regexp "^1.0.5" supports-color "^5.3.0" color-convert@^1.9.0: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== dependencies: color-name "1.1.3" color-name@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= commander@2: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== commander@^2.20.0: version "2.20.0" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= d3-array@1, d3-array@^1.1.1, d3-array@^1.2.0: version "1.2.4" resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f" integrity sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw== d3-axis@1: version "1.0.12" resolved "https://registry.yarnpkg.com/d3-axis/-/d3-axis-1.0.12.tgz#cdf20ba210cfbb43795af33756886fb3638daac9" integrity sha512-ejINPfPSNdGFKEOAtnBtdkpr24c4d4jsei6Lg98mxf424ivoDP2956/5HDpIAtmHo85lqT4pruy+zEgvRUBqaQ== d3-brush@1: version "1.1.5" resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-1.1.5.tgz#066b8e84d17b192986030446c97c0fba7e1bacdc" integrity sha512-rEaJ5gHlgLxXugWjIkolTA0OyMvw8UWU1imYXy1v642XyyswmI1ybKOv05Ft+ewq+TFmdliD3VuK0pRp1VT/5A== dependencies: d3-dispatch "1" d3-drag "1" d3-interpolate "1" d3-selection "1" d3-transition "1" d3-chord@1: version "1.0.6" resolved "https://registry.yarnpkg.com/d3-chord/-/d3-chord-1.0.6.tgz#309157e3f2db2c752f0280fedd35f2067ccbb15f" integrity sha512-JXA2Dro1Fxw9rJe33Uv+Ckr5IrAa74TlfDEhE/jfLOaXegMQFQTAgAw9WnZL8+HxVBRXaRGCkrNU7pJeylRIuA== dependencies: d3-array "1" d3-path "1" d3-collection@1: version "1.0.7" resolved "https://registry.yarnpkg.com/d3-collection/-/d3-collection-1.0.7.tgz#349bd2aa9977db071091c13144d5e4f16b5b310e" integrity sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A== d3-color@1: version "1.4.1" resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-1.4.1.tgz#c52002bf8846ada4424d55d97982fef26eb3bc8a" integrity sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q== d3-contour@1: version "1.3.2" resolved "https://registry.yarnpkg.com/d3-contour/-/d3-contour-1.3.2.tgz#652aacd500d2264cb3423cee10db69f6f59bead3" integrity sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg== dependencies: d3-array "^1.1.1" d3-dispatch@1: version "1.0.6" resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-1.0.6.tgz#00d37bcee4dd8cd97729dd893a0ac29caaba5d58" integrity sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA== d3-drag@1: version "1.2.5" resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-1.2.5.tgz#2537f451acd39d31406677b7dc77c82f7d988f70" integrity sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w== dependencies: d3-dispatch "1" d3-selection "1" d3-dsv@1: version "1.2.0" resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-1.2.0.tgz#9d5f75c3a5f8abd611f74d3f5847b0d4338b885c" integrity sha512-9yVlqvZcSOMhCYzniHE7EVUws7Fa1zgw+/EAV2BxJoG3ME19V6BQFBwI855XQDsxyOuG7NibqRMTtiF/Qup46g== dependencies: commander "2" iconv-lite "0.4" rw "1" d3-ease@1: version "1.0.6" resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-1.0.6.tgz#ebdb6da22dfac0a22222f2d4da06f66c416a0ec0" integrity sha512-SZ/lVU7LRXafqp7XtIcBdxnWl8yyLpgOmzAk0mWBI9gXNzLDx5ybZgnRbH9dN/yY5tzVBqCQ9avltSnqVwessQ== d3-fetch@1: version "1.1.2" resolved "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-1.1.2.tgz#957c8fbc6d4480599ba191b1b2518bf86b3e1be2" integrity sha512-S2loaQCV/ZeyTyIF2oP8D1K9Z4QizUzW7cWeAOAS4U88qOt3Ucf6GsmgthuYSdyB2HyEm4CeGvkQxWsmInsIVA== dependencies: d3-dsv "1" d3-force@1: version "1.2.1" resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-1.2.1.tgz#fd29a5d1ff181c9e7f0669e4bd72bdb0e914ec0b" integrity sha512-HHvehyaiUlVo5CxBJ0yF/xny4xoaxFxDnBXNvNcfW9adORGZfyNF1dj6DGLKyk4Yh3brP/1h3rnDzdIAwL08zg== dependencies: d3-collection "1" d3-dispatch "1" d3-quadtree "1" d3-timer "1" d3-format@1: version "1.4.4" resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-1.4.4.tgz#356925f28d0fd7c7983bfad593726fce46844030" integrity sha512-TWks25e7t8/cqctxCmxpUuzZN11QxIA7YrMbram94zMQ0PXjE4LVIMe/f6a4+xxL8HQ3OsAFULOINQi1pE62Aw== d3-geo@1: version "1.12.0" resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.12.0.tgz#58ddbdf4d9db5f199db69d1b7c93dca6454a6f24" integrity sha512-NalZVW+6/SpbKcnl+BCO67m8gX+nGeJdo6oGL9H6BRUGUL1e+AtPcP4vE4TwCQ/gl8y5KE7QvBzrLn+HsKIl+w== dependencies: d3-array "1" d3-hierarchy@1: version "1.1.9" resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-1.1.9.tgz#2f6bee24caaea43f8dc37545fa01628559647a83" integrity sha512-j8tPxlqh1srJHAtxfvOUwKNYJkQuBFdM1+JAUfq6xqH5eAqf93L7oG1NVqDa4CpFZNvnNKtCYEUC8KY9yEn9lQ== d3-interpolate@1: version "1.4.0" resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-1.4.0.tgz#526e79e2d80daa383f9e0c1c1c7dcc0f0583e987" integrity sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA== dependencies: d3-color "1" d3-path@1: version "1.0.9" resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf" integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg== d3-polygon@1: version "1.0.6" resolved "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-1.0.6.tgz#0bf8cb8180a6dc107f518ddf7975e12abbfbd38e" integrity sha512-k+RF7WvI08PC8reEoXa/w2nSg5AUMTi+peBD9cmFc+0ixHfbs4QmxxkarVal1IkVkgxVuk9JSHhJURHiyHKAuQ== d3-quadtree@1: version "1.0.7" resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-1.0.7.tgz#ca8b84df7bb53763fe3c2f24bd435137f4e53135" integrity sha512-RKPAeXnkC59IDGD0Wu5mANy0Q2V28L+fNe65pOCXVdVuTJS3WPKaJlFHer32Rbh9gIo9qMuJXio8ra4+YmIymA== d3-random@1: version "1.1.2" resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-1.1.2.tgz#2833be7c124360bf9e2d3fd4f33847cfe6cab291" integrity sha512-6AK5BNpIFqP+cx/sreKzNjWbwZQCSUatxq+pPRmFIQaWuoD+NrbVWw7YWpHiXpCQ/NanKdtGDuB+VQcZDaEmYQ== d3-scale-chromatic@1: version "1.5.0" resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz#54e333fc78212f439b14641fb55801dd81135a98" integrity sha512-ACcL46DYImpRFMBcpk9HhtIyC7bTBR4fNOPxwVSl0LfulDAwyiHyPOTqcDG1+t5d4P9W7t/2NAuWu59aKko/cg== dependencies: d3-color "1" d3-interpolate "1" d3-scale@2: version "2.2.2" resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-2.2.2.tgz#4e880e0b2745acaaddd3ede26a9e908a9e17b81f" integrity sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw== dependencies: d3-array "^1.2.0" d3-collection "1" d3-format "1" d3-interpolate "1" d3-time "1" d3-time-format "2" d3-selection@1, d3-selection@^1.1.0: version "1.4.1" resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-1.4.1.tgz#98eedbbe085fbda5bafa2f9e3f3a2f4d7d622a98" integrity sha512-BTIbRjv/m5rcVTfBs4AMBLKs4x8XaaLkwm28KWu9S2vKNqXkXt2AH2Qf0sdPZHjFxcWg/YL53zcqAz+3g4/7PA== d3-shape@1: version "1.3.7" resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7" integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw== dependencies: d3-path "1" d3-time-format@2: version "2.2.3" resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-2.2.3.tgz#0c9a12ee28342b2037e5ea1cf0b9eb4dd75f29cb" integrity sha512-RAHNnD8+XvC4Zc4d2A56Uw0yJoM7bsvOlJR33bclxq399Rak/b9bhvu/InjxdWhPtkgU53JJcleJTGkNRnN6IA== dependencies: d3-time "1" d3-time@1: version "1.1.0" resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-1.1.0.tgz#b1e19d307dae9c900b7e5b25ffc5dcc249a8a0f1" integrity sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA== d3-timer@1: version "1.0.10" resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-1.0.10.tgz#dfe76b8a91748831b13b6d9c793ffbd508dd9de5" integrity sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw== d3-transition@1: version "1.3.2" resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-1.3.2.tgz#a98ef2151be8d8600543434c1ca80140ae23b398" integrity sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA== dependencies: d3-color "1" d3-dispatch "1" d3-ease "1" d3-interpolate "1" d3-selection "^1.1.0" d3-timer "1" d3-voronoi@1: version "1.1.4" resolved "https://registry.yarnpkg.com/d3-voronoi/-/d3-voronoi-1.1.4.tgz#dd3c78d7653d2bb359284ae478645d95944c8297" integrity sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg== d3-zoom@1: version "1.8.3" resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-1.8.3.tgz#b6a3dbe738c7763121cd05b8a7795ffe17f4fc0a" integrity sha512-VoLXTK4wvy1a0JpH2Il+F2CiOhVu7VRXWF5M/LroMIh3/zBAC3WAt7QoIvPibOavVo20hN6/37vwAsdBejLyKQ== dependencies: d3-dispatch "1" d3-drag "1" d3-interpolate "1" d3-selection "1" d3-transition "1" deep-equal@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= define-properties@^1.1.2: version "1.1.3" resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== dependencies: object-keys "^1.0.12" defined@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= es-abstract@^1.5.0: version "1.13.0" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== dependencies: es-to-primitive "^1.2.0" function-bind "^1.1.1" has "^1.0.3" is-callable "^1.1.4" is-regex "^1.0.4" object-keys "^1.0.12" es-to-primitive@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== dependencies: is-callable "^1.1.4" is-date-object "^1.0.1" is-symbol "^1.0.2" escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= estree-walker@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.2.1.tgz#bdafe8095383d8414d5dc2ecf4c9173b6db9412e" integrity sha1-va/oCVOD2EFNXcLs9MkXO225QS4= estree-walker@^0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== esutils@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= for-each@~0.3.3: version "0.3.3" resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== dependencies: is-callable "^1.1.3" fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= function-bind@^1.0.2, function-bind@^1.1.1, function-bind@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== glob@^7.1.3, glob@~7.1.4: version "7.1.4" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" inherits "2" minimatch "^3.0.4" once "^1.3.0" path-is-absolute "^1.0.0" has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= has-symbols@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= has@^1.0.1, has@^1.0.3, has@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: function-bind "^1.1.1" iconv-lite@0.4: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= dependencies: once "^1.3.0" wrappy "1" inherits@2, inherits@~2.0.3, inherits@~2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== is-callable@^1.1.3, is-callable@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== is-date-object@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= is-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" integrity sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE= is-regex@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= dependencies: has "^1.0.1" is-symbol@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== dependencies: has-symbols "^1.0.0" isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= jest-worker@^24.6.0: version "24.6.0" resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.6.0.tgz#7f81ceae34b7cde0c9827a6980c35b7cdc0161b3" integrity sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ== dependencies: merge-stream "^1.0.1" supports-color "^6.1.0" js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== jsesc@^2.2.0: version "2.5.2" resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== json2module@0.0: version "0.0.3" resolved "https://registry.yarnpkg.com/json2module/-/json2module-0.0.3.tgz#00fb5f4a9b7adfc3f0647c29cb17bcd1979be9b2" integrity sha1-APtfSpt638PwZHwpyxe80Zeb6bI= dependencies: rw "^1.3.2" magic-string@^0.15.1: version "0.15.2" resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.15.2.tgz#0681d7388741bbc3addaa65060992624c6c09e9c" integrity sha1-BoHXOIdBu8Ot2qZQYJkmJMbAnpw= dependencies: vlq "^0.2.1" merge-stream@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-1.0.1.tgz#4041202d508a342ba00174008df0c251b8c135e1" integrity sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE= dependencies: readable-stream "^2.0.1" minimatch@^3.0.2, minimatch@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== dependencies: brace-expansion "^1.1.7" minimist@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= object-inspect@~1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ== object-keys@^1.0.12: version "1.1.1" resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= dependencies: wrappy "1" path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= path-parse@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== readable-stream@^2.0.1: version "2.3.6" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== dependencies: core-util-is "~1.0.0" inherits "~2.0.3" isarray "~1.0.0" process-nextick-args "~2.0.0" safe-buffer "~5.1.1" string_decoder "~1.1.1" util-deprecate "~1.0.1" resolve@^1.1.6: version "1.12.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== dependencies: path-parse "^1.0.6" resolve@~1.11.1: version "1.11.1" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" integrity sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw== dependencies: path-parse "^1.0.6" resumer@~0.0.0: version "0.0.0" resolved "https://registry.yarnpkg.com/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" integrity sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k= dependencies: through "~2.3.4" rimraf@2: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== dependencies: glob "^7.1.3" rollup-plugin-ascii@0.0: version "0.0.3" resolved "https://registry.yarnpkg.com/rollup-plugin-ascii/-/rollup-plugin-ascii-0.0.3.tgz#2057a6d65c00573d1ca5b2649ce4e531b042cde7" integrity sha1-IFem1lwAVz0cpbJknOTlMbBCzec= dependencies: acorn "^3.2.0" estree-walker "^0.2.1" jsesc "^2.2.0" magic-string "^0.15.1" rollup-pluginutils "^1.5.0" rollup-plugin-node-resolve@3: version "3.4.0" resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-3.4.0.tgz#908585eda12e393caac7498715a01e08606abc89" integrity sha512-PJcd85dxfSBWih84ozRtBkB731OjXk0KnzN0oGp7WOWcarAFkVa71cV5hTJg2qpVsV2U8EUwrzHP3tvy9vS3qg== dependencies: builtin-modules "^2.0.0" is-module "^1.0.0" resolve "^1.1.6" rollup-plugin-terser@5: version "5.1.1" resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-5.1.1.tgz#e9d2545ec8d467f96ba99b9216d2285aad8d5b66" integrity sha512-McIMCDEY8EU6Y839C09UopeRR56wXHGdvKKjlfiZG/GrP6wvZQ62u2ko/Xh1MNH2M9WDL+obAAHySljIZYCuPQ== dependencies: "@babel/code-frame" "^7.0.0" jest-worker "^24.6.0" rollup-pluginutils "^2.8.1" serialize-javascript "^1.7.0" terser "^4.1.0" rollup-pluginutils@^1.5.0: version "1.5.2" resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz#1e156e778f94b7255bfa1b3d0178be8f5c552408" integrity sha1-HhVud4+UtyVb+hs9AXi+j1xVJAg= dependencies: estree-walker "^0.2.1" minimatch "^3.0.2" rollup-pluginutils@^2.8.1: version "2.8.1" resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz#8fa6dd0697344938ef26c2c09d2488ce9e33ce97" integrity sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg== dependencies: estree-walker "^0.6.1" rollup@1: version "1.17.0" resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.17.0.tgz#47ee8b04514544fc93b39bae06271244c8db7dfa" integrity sha512-k/j1m0NIsI4SYgCJR4MWPstGJOWfJyd6gycKoMhyoKPVXxm+L49XtbUwZyFsrSU2YXsOkM4u1ll9CS/ZgJBUpw== dependencies: "@types/estree" "0.0.39" "@types/node" "^12.6.2" acorn "^6.2.0" rw@1, rw@^1.3.2: version "1.3.3" resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== "safer-buffer@>= 2.1.2 < 3": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== serialize-javascript@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65" integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA== source-map-support@~0.5.12: version "0.5.12" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ== dependencies: buffer-from "^1.0.0" source-map "^0.6.0" source-map@^0.6.0, source-map@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== string.prototype.trim@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz#d04de2c89e137f4d7d206f086b5ed2fae6be8cea" integrity sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo= dependencies: define-properties "^1.1.2" es-abstract "^1.5.0" function-bind "^1.0.2" string_decoder@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== dependencies: safe-buffer "~5.1.0" supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== dependencies: has-flag "^3.0.0" supports-color@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== dependencies: has-flag "^3.0.0" tape@4: version "4.11.0" resolved "https://registry.yarnpkg.com/tape/-/tape-4.11.0.tgz#63d41accd95e45a23a874473051c57fdbc58edc1" integrity sha512-yixvDMX7q7JIs/omJSzSZrqulOV51EC9dK8dM0TzImTIkHWfe2/kFyL5v+d9C+SrCMaICk59ujsqFAVidDqDaA== dependencies: deep-equal "~1.0.1" defined "~1.0.0" for-each "~0.3.3" function-bind "~1.1.1" glob "~7.1.4" has "~1.0.3" inherits "~2.0.4" minimist "~1.2.0" object-inspect "~1.6.0" resolve "~1.11.1" resumer "~0.0.0" string.prototype.trim "~1.1.2" through "~2.3.8" terser@^4.1.0: version "4.1.2" resolved "https://registry.yarnpkg.com/terser/-/terser-4.1.2.tgz#b2656c8a506f7ce805a3f300a2ff48db022fa391" integrity sha512-jvNoEQSPXJdssFwqPSgWjsOrb+ELoE+ILpHPKXC83tIxOlh2U75F1KuB2luLD/3a6/7K3Vw5pDn+hvu0C4AzSw== dependencies: commander "^2.20.0" source-map "~0.6.1" source-map-support "~0.5.12" through@~2.3.4, through@~2.3.8: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= vlq@^0.2.1: version "0.2.3" resolved "https://registry.yarnpkg.com/vlq/-/vlq-0.2.3.tgz#8f3e4328cf63b1540c0d67e1b2778386f8975b26" integrity sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow== wrappy@1: version "1.0.2" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=