diff --git a/.vscode/settings.json b/.vscode/settings.json index 9910f3a3..19282e7c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -13,6 +13,7 @@ } }, "mypy-type-checker.importStrategy": "fromEnvironment", + "python.analysis.typeCheckingMode": "off", "files.exclude": { "**/.git": true, "**/.svn": true, diff --git a/flopy4/mf6/adapters.py b/flopy4/mf6/adapters.py index 452fd530..dc39255a 100644 --- a/flopy4/mf6/adapters.py +++ b/flopy4/mf6/adapters.py @@ -264,7 +264,6 @@ def plottable(self): @property def has_stress_period_data(self): - # TODO oc returns true? is stress package? return "nper" in self._data.dims def check(self, f=None, verbose=True, level=1, checktype=None): diff --git a/flopy4/mf6/binding.py b/flopy4/mf6/binding.py new file mode 100644 index 00000000..a3c05fa9 --- /dev/null +++ b/flopy4/mf6/binding.py @@ -0,0 +1,51 @@ +from attrs import define + +from flopy4.mf6.component import Component +from flopy4.mf6.exchange import Exchange +from flopy4.mf6.model import Model +from flopy4.mf6.package import Package +from flopy4.mf6.solution import Solution + + +@define +class Binding: + """ + An MF6 component binding: a record representation of the + component for writing to a parent component's name file. + """ + + type: str + fname: str + terms: tuple[str, ...] | None = None + + def to_tuple(self) -> tuple[str, ...]: + if self.terms and any(self.terms): + return (self.type, self.fname, *self.terms) + else: + return (self.type, self.fname) + + @classmethod + def from_component(cls, component: Component) -> "Binding": + def _get_binding_type(component: Component) -> str: + cls_name = component.__class__.__name__ + if isinstance(component, Exchange): + return f"{'-'.join([cls_name[:2], cls_name[3:]]).upper()}6" + elif isinstance(component, Solution): + return f"{component.slntype}6" + else: + return f"{cls_name.upper()}6" + + def _get_binding_terms(component: Component) -> tuple[str, ...] | None: + if isinstance(component, Exchange): + return (component.exgmnamea, component.exgmnameb) # type: ignore + elif isinstance(component, Solution): + return tuple(component.models) + elif isinstance(component, (Model, Package)): + return (component.name,) # type: ignore + return None + + return cls( + type=_get_binding_type(component), + fname=component.filename or component.default_filename(), + terms=_get_binding_terms(component), + ) diff --git a/flopy4/mf6/codec/writer/__init__.py b/flopy4/mf6/codec/writer/__init__.py index 811db456..78d08c0b 100644 --- a/flopy4/mf6/codec/writer/__init__.py +++ b/flopy4/mf6/codec/writer/__init__.py @@ -13,8 +13,9 @@ ) _JINJA_ENV.filters["field_type"] = filters.field_type _JINJA_ENV.filters["array_how"] = filters.array_how -_JINJA_ENV.filters["array_chunks"] = filters.array_chunks +_JINJA_ENV.filters["array2chunks"] = filters.array2chunks _JINJA_ENV.filters["array2string"] = filters.array2string +_JINJA_ENV.filters["array2const"] = filters.array2const _JINJA_ENV.filters["data2list"] = filters.data2list _JINJA_TEMPLATE_NAME = "blocks.jinja" _PRINT_OPTIONS = { diff --git a/flopy4/mf6/codec/writer/filters.py b/flopy4/mf6/codec/writer/filters.py index 2e3c4815..d0eecb29 100644 --- a/flopy4/mf6/codec/writer/filters.py +++ b/flopy4/mf6/codec/writer/filters.py @@ -6,6 +6,7 @@ import xarray as xr from modflow_devtools.dfn.schema.v2 import FieldType from numpy.typing import NDArray +from xattree import Scalar from flopy4.mf6.constants import FILL_DNODATA @@ -33,13 +34,13 @@ def field_type(value: Any) -> FieldType: def array_how(value: xr.DataArray) -> str: - # TODO - # - detect constant arrays? - # - above certain size, use external? + # TODO above certain size, use external? + if value.max() == value.min(): + return "constant" return "internal" -def array_chunks(value: xr.DataArray, chunks: Mapping[Hashable, int] | None = None): +def array2chunks(value: xr.DataArray, chunks: Mapping[Hashable, int] | None = None): """ Yield chunks from a dask-backed array of up to 3 dimensions. If it's not already chunked, split it into chunks of the @@ -128,18 +129,28 @@ def nonempty(value: NDArray | xr.DataArray) -> NDArray: return mask -def data2list(value: list | tuple | dict | xr.Dataset | xr.DataArray): +def array2const(value: xr.DataArray) -> Scalar: + if np.issubdtype(value.dtype, np.integer): + return value.max().item() + if np.issubdtype(value.dtype, np.floating): + return f"{value.max().item():.8f}" + return value.ravel()[0] + + +def data2list(value: list | dict | xr.Dataset | xr.DataArray): """ Yield records (tuples) from data in a `list`, `dict`, `DataArray` or `Dataset`. """ - if isinstance(value, (list, tuple)): + if isinstance(value, list): for rec in value: + if not isinstance(rec, tuple): + raise ValueError(f"Unsupported record type: {type(rec)}") yield rec return if isinstance(value, dict): - for name, val in value.values(): + for name, val in value.items(): yield (name, val) return diff --git a/flopy4/mf6/codec/writer/templates/macros.jinja b/flopy4/mf6/codec/writer/templates/macros.jinja index f235620f..4e802d36 100644 --- a/flopy4/mf6/codec/writer/templates/macros.jinja +++ b/flopy4/mf6/codec/writer/templates/macros.jinja @@ -32,14 +32,14 @@ {{ inset ~ name.upper() }}{% if "layered" in how %} LAYERED{% endif %} {% if how == "constant" %} -CONSTANT {{ value.item() }} +{{ inset }}CONSTANT {{ value|array2const -}} {% elif how == "layered constant" %} {% for layer in value -%} -CONSTANT {{ layer.item() }} +{{ inset }}CONSTANT {{ layer|array2const -}} {%- endfor %} {% elif how == "internal" %} INTERNAL -{% for chunk in value|array_chunks -%} +{% for chunk in value|array2chunks -%} {{ (2 * inset) ~ chunk|array2string }} {%- endfor %} {% elif how == "external" %} diff --git a/flopy4/mf6/component.py b/flopy4/mf6/component.py index 93951569..be0219f9 100644 --- a/flopy4/mf6/component.py +++ b/flopy4/mf6/component.py @@ -1,12 +1,13 @@ from abc import ABC from collections.abc import MutableMapping from pathlib import Path -from typing import ClassVar +from typing import Any, ClassVar import numpy as np from attrs import fields from modflow_devtools.dfn import Dfn, Field from packaging.version import Version +from xattree import asdict as xattree_asdict from xattree import xattree from flopy4.mf6.constants import FILL_DNODATA, MF6 @@ -197,3 +198,19 @@ def write(self, format: str = MF6) -> None: self._write(format=format) for child in self.children.values(): # type: ignore child.write(format=format) + + def to_dict(self, blocks: bool = False) -> dict[str, Any]: + """Convert the component to a dictionary representation.""" + data = xattree_asdict(self) + data.pop("filename") + data.pop("workspace", None) + data.pop("nodes", None) # TODO: find a better way to omit + if blocks: + blocks_ = {} # type: ignore + for field_name, field_value in data.items(): + block_name = self.dfn.fields[field_name].block + if block_name not in blocks_: + blocks_[block_name] = {} + blocks_[block_name][field_name] = field_value + return blocks_ + return data diff --git a/flopy4/mf6/config.py b/flopy4/mf6/config.py index 58fd9b6b..14da6705 100644 --- a/flopy4/mf6/config.py +++ b/flopy4/mf6/config.py @@ -1,3 +1,3 @@ # TODO use https://environ-config.readthedocs.io/en/stable/? -SPARSE_THRESHOLD = 1000 +SPARSE_THRESHOLD = 100000 diff --git a/flopy4/mf6/constants.py b/flopy4/mf6/constants.py index bcd2aaaf..6d0089eb 100644 --- a/flopy4/mf6/constants.py +++ b/flopy4/mf6/constants.py @@ -1,5 +1,6 @@ import numpy as np MF6 = "mf6" +PERIOD = "period" FILL_DEFAULT = np.nan FILL_DNODATA = 1e30 diff --git a/flopy4/mf6/converter.py b/flopy4/mf6/converter.py index 82956469..2f0617f5 100644 --- a/flopy4/mf6/converter.py +++ b/flopy4/mf6/converter.py @@ -1,4 +1,4 @@ -from collections.abc import Iterable, MutableMapping +from collections.abc import Iterable, Mapping from datetime import datetime from pathlib import Path from typing import Any @@ -7,70 +7,199 @@ import sparse import xarray as xr import xattree -from attrs import define from cattrs import Converter -from modflow_devtools.dfn.schema.block import block_sort_key +from modflow_devtools.dfn import block_sort_key from numpy.typing import NDArray from xattree import get_xatspec from flopy4.adapters import get_nn +from flopy4.mf6.binding import Binding from flopy4.mf6.component import Component from flopy4.mf6.config import SPARSE_THRESHOLD -from flopy4.mf6.constants import FILL_DNODATA +from flopy4.mf6.constants import FILL_DNODATA, PERIOD from flopy4.mf6.context import Context -from flopy4.mf6.exchange import Exchange -from flopy4.mf6.model import Model -from flopy4.mf6.package import Package -from flopy4.mf6.solution import Solution from flopy4.mf6.spec import fields_dict -@define -class _Binding: +def path_to_tuple(name: str, value: Path) -> tuple[str, str, str]: + if name.endswith("_file"): + base_name = name.replace("_file", "").upper() + return (base_name, "FILEOUT", str(value)) + return (name.upper(), "FILEOUT", str(value)) + + +def get_binding_blocks(value: Component) -> dict[str, dict[str, list[tuple[str, ...]]]]: + if not isinstance(value, Context): + return {} + + blocks = {} # type: ignore + xatspec = xattree.get_xatspec(type(value)) + + for child_name, child_spec in xatspec.children.items(): + if (child := getattr(value, child_name, None)) is None: + continue + if (block_name := child_spec.metadata["block"]) not in blocks: # type: ignore + blocks[block_name] = {} + match child: + case Component(): + blocks[block_name][child_name] = [Binding.from_component(child).to_tuple()] + case Mapping(): + blocks[block_name][child_name] = [ + Binding.from_component(comp).to_tuple() + for comp in child.values() + if comp is not None + ] + case Iterable(): + blocks[block_name][child_name] = [ + Binding.from_component(comp).to_tuple() for comp in child if comp is not None + ] + case _: + raise ValueError(f"Unexpected child type: {type(child)}") + + return blocks + + +def has_structured_grid_dims(value: xr.DataArray) -> bool: + """ + Check if the DataArray has structured grid dimensions: 'nlay', 'nrow', and 'ncol'. + """ + return all(dim in value.dims for dim in ["nlay", "nrow", "ncol"]) + + +def has_grid_dims(value: xr.DataArray) -> bool: + """ + Check if the DataArray has spatial dimensions: 'nodes' and/or 'nlay', 'nrow', and 'ncol'. + """ + return "nodes" in value.dims or has_structured_grid_dims(value) + + +def has_tdis_dims(value: xr.DataArray) -> bool: + """ + Check if the DataArray has a time dimensions 'nper'. + """ + return "nper" in value.dims + + +def _hack_structured_grid_dims(value: xr.DataArray, structured_grid_dims: Mapping): """ - An MF6 component binding: a record representation of the - component for writing to a parent component's name file. + Temporary hack to convert flat nodes dimension to 3d structured dims. + long term solution for this is to use a custom xarray index. filters + should then have access to all dimensions needed. """ - type: str - fname: str - terms: tuple[str, ...] | None = None - - def to_tuple(self): - if self.terms and any(self.terms): - return (self.type, self.fname, *self.terms) - else: - return (self.type, self.fname) - - @classmethod - def from_component(cls, component: Component) -> "_Binding": - def _get_binding_type(component: Component) -> str: - cls_name = component.__class__.__name__ - if isinstance(component, Exchange): - return f"{'-'.join([cls_name[:2], cls_name[3:]]).upper()}6" - elif isinstance(component, Solution): - return f"{component.slntype}6" - else: - return f"{cls_name.upper()}6" - - def _get_binding_terms(component: Component) -> tuple[str, ...] | None: - if isinstance(component, Exchange): - return (component.exgmnamea, component.exgmnameb) # type: ignore - elif isinstance(component, Solution): - return tuple(component.models) - elif isinstance(component, (Model, Package)): - return (component.name,) # type: ignore - return None - - return cls( - type=_get_binding_type(component), - fname=component.filename or component.default_filename(), - terms=_get_binding_terms(component), + if "nper" in (old_dims := set(value.dims).copy()): + old_dims.remove("nper") + shape: tuple[int, ...] = ( + value.sizes["nper"], + structured_grid_dims["nlay"], + structured_grid_dims["nrow"], + structured_grid_dims["ncol"], ) + dims: tuple[str, ...] = ("nper", "nlay", "nrow", "ncol") + coords = { + "nper": value.coords["nper"], + "nlay": range(structured_grid_dims["nlay"]), + "nrow": range(structured_grid_dims["nrow"]), + "ncol": range(structured_grid_dims["ncol"]), + } + else: + shape = ( + structured_grid_dims["nlay"], + structured_grid_dims["nrow"], + structured_grid_dims["ncol"], + ) + dims = ("nlay", "nrow", "ncol") + coords = { + "nlay": range(structured_grid_dims["nlay"]), + "nrow": range(structured_grid_dims["nrow"]), + "ncol": range(structured_grid_dims["ncol"]), + } + + if old_dims == {"nodes"}: + value = xr.DataArray( + value.data.reshape(shape), + dims=dims, + coords=coords, + ) + + return value + + +def unstructure_field( + name: str, + value: Any, + # TODO: temporary, remove not needed + structured_grid_dims: Mapping | None, +) -> tuple[str, Any]: + """ + Convert: + + - bools to keywords (since they should only be written if true) + - paths to records with 'FILEIN/OUT' keywords etc + - datetimes to ISO format + - 'auxiliary' arrays to tuples since they are written inline + - period block arrays to dictionaries of kper-sliced arrays + + All other values are left as is. + + Parameters + ---------- + name : str + The name of the field + value : Any + The value of the field + + Returns + ------- + A tuple of (name, value) since the name might be + modified (e.g. '_file' suffix removed for paths) + """ + + match value: + case None: + return name, None + case bool(): + return name, (value if value else None) + case Path(): + rec = path_to_tuple(name, value) + name = rec[0] # '_file' suffix may have been dropped + return name, rec + case datetime(): + return name, value.isoformat() + case xr.DataArray(): + if name == "auxiliary": + return name, tuple(value.values.tolist()) + if has_grid_dims(value): + if structured_grid_dims is None: + raise ValueError("Need structured grid dimension sizes") + value = _hack_structured_grid_dims(value, structured_grid_dims=structured_grid_dims) + if has_tdis_dims(value): + value = {kper: value.isel(nper=kper) for kper in range(value.sizes["nper"])} + return name, value + case _: + return name, value + + +def unstructure_block( + block: dict[str, Any], + # TODO: temporary, remove not needed + structured_grid_dims: Mapping | None, +) -> dict[str, Any]: + """Unstructure a block of data, converting fields to a suitable format.""" + return dict( + [ + unstructure_field( + name=field_name, + value=block.get(field_name, None), + structured_grid_dims=structured_grid_dims, + ) + for field_name in block.keys() + ] + ) -def _attach_field_metadata( - dataset: xr.Dataset, component_type: type, field_names: list[str] +def _hack_field_metadata( + dataset: xr.Dataset, component_type: type, field_names: Iterable[str] ) -> None: # TODO: attach metadata to array attrs instead of dataset attrs field_metadata = {} @@ -81,175 +210,73 @@ def _attach_field_metadata( dataset.attrs["field_metadata"] = field_metadata -def _path_to_tuple(field_name: str, path_value: Path) -> tuple: - if field_name.endswith("_file"): - base_name = field_name.replace("_file", "").upper() - return (base_name, "FILEOUT", str(path_value)) - return (field_name.upper(), "FILEOUT", str(path_value)) +def segment_period_data(block: dict[str, Any], cls: type[Component]) -> dict[str, dict[str, Any]]: + """Partition period data by stress period""" + arrays = {} # type: ignore + blocks = {} # type: ignore + period = PERIOD.upper() + + for arr_name, periods in block.items(): + for kper, arr in periods.items(): + if kper not in arrays: + arrays[kper] = {} + arrays[kper][arr_name] = arr + + for kper, arrs in arrays.items(): + dataset = xr.Dataset(arrs) + _hack_field_metadata(dataset, cls, arrs.keys()) + blocks[f"{period} {kper + 1}"] = {period: dataset} + + return blocks def unstructure_component(value: Component) -> dict[str, Any]: - blockspec = dict(sorted(value.dfn.blocks.items(), key=block_sort_key)) # type: ignore + """Unstructure a Component.""" + dfn = value.dfn + cls = type(value) + data = value.to_dict(blocks=True) blocks: dict[str, dict[str, Any]] = {} - xatspec = xattree.get_xatspec(type(value)) + blocks.update(binding_blocks := get_binding_blocks(value)) - # Handle child component bindings before converting to dict - if isinstance(value, Context): - for field_name, child_spec in xatspec.children.items(): - if hasattr(child_spec, "metadata") and "block" in child_spec.metadata: # type: ignore - block_name = child_spec.metadata["block"] # type: ignore - field_value = getattr(value, field_name, None) - - if block_name not in blocks: - blocks[block_name] = {} - - if isinstance(field_value, Component): - components = [_Binding.from_component(field_value).to_tuple()] - elif isinstance(field_value, MutableMapping): - components = [ - _Binding.from_component(comp).to_tuple() - for comp in field_value.values() - if comp is not None - ] - elif isinstance(field_value, Iterable): - components = [ - _Binding.from_component(comp).to_tuple() - for comp in field_value - if comp is not None - ] - else: - continue - - if components: - blocks[block_name][field_name] = components - - data = xattree.asdict(value) - - for block_name, block in blockspec.items(): - if block_name not in blocks: - blocks[block_name] = {} - period_data = {} - period_blocks = {} # type: ignore - - for field_name in block.keys(): - # Skip child components that have been processed as bindings - if isinstance(value, Context) and field_name in xatspec.children: - child_spec = xatspec.children[field_name] - if hasattr(child_spec, "metadata") and "block" in child_spec.metadata: # type: ignore - if child_spec.metadata["block"] == block_name: # type: ignore - continue - - field_value = data[field_name] - # convert: - # - paths to records - # - datetime to ISO format - # - auxiliary fields to tuples - # - xarray DataArrays with 'nper' dimension to kper-sliced datasets - # (and split the period data into separate kper-indexed blocks) - # - other values to their original form - if isinstance(field_value, Path): - rec = _path_to_tuple(field_name, field_value) - # name may have changed e.g dropping '_file' suffix - blocks[block_name][rec[0]] = rec - elif isinstance(field_value, datetime): - blocks[block_name][field_name] = field_value.isoformat() - elif ( - field_name == "auxiliary" - and hasattr(field_value, "values") - and field_value is not None - ): - blocks[block_name][field_name] = tuple(field_value.values.tolist()) - elif isinstance(field_value, xr.DataArray) and "nper" in field_value.dims: - has_spatial_dims = any( - dim in field_value.dims for dim in ["nlay", "nrow", "ncol", "nodes"] - ) - if has_spatial_dims: - # terrible hack to convert flat nodes dimension to 3d structured dims. - # long term solution for this is to use a custom xarray index. filters - # should then have access to all dimensions needed. - dims_ = set(field_value.dims).copy() - dims_.remove("nper") - if dims_ == {"nodes"}: - parent = value.parent # type: ignore - field_value = xr.DataArray( - field_value.data.reshape( - ( - field_value.sizes["nper"], - parent.dims["nlay"], - parent.dims["nrow"], - parent.dims["ncol"], - ) - ), - dims=("nper", "nlay", "nrow", "ncol"), - coords={ - "nper": field_value.coords["nper"], - "nlay": range(parent.dims["nlay"]), - "nrow": range(parent.dims["nrow"]), - "ncol": range(parent.dims["ncol"]), - }, - name=field_value.name, - ) - - period_data[field_name] = { - kper: field_value.isel(nper=kper) - for kper in range(field_value.sizes["nper"]) - } - else: - if np.issubdtype(field_value.dtype, np.str_): - period_data[field_name] = { - kper: field_value[kper] for kper in range(field_value.sizes["nper"]) - } - else: - if block_name not in period_data: - period_data[block_name] = {} - period_data[block_name][field_name] = field_value # type: ignore - else: - if field_value is not None: - if isinstance(field_value, bool): - if field_value: - blocks[block_name][field_name] = field_value - else: - blocks[block_name][field_name] = field_value - - if block_name in period_data and isinstance(period_data[block_name], dict): - dataset = xr.Dataset(period_data[block_name]) - _attach_field_metadata(dataset, type(value), list(period_data[block_name].keys())) # type: ignore - blocks[block_name] = {block_name: dataset} - del period_data[block_name] - - for arr_name, periods in period_data.items(): - for kper, arr in periods.items(): - if kper not in period_blocks: - period_blocks[kper] = {} - period_blocks[kper][arr_name] = arr - - for kper, block in period_blocks.items(): - dataset = xr.Dataset(block) - _attach_field_metadata(dataset, type(value), list(block.keys())) - blocks[f"{block_name} {kper + 1}"] = {block_name: dataset} - - # make sure options block always comes first - if "options" in blocks: - options_block = blocks.pop("options") - blocks = {"options": options_block, **blocks} - - # total temporary hack! manually set solutiongroup 1. still need to support multiple.. + # temporary hack! TODO remove once we have a structured grid index + if "nlay" in value.data.dims: # type: ignore + structured_grid_dims = value.data.dims # type: ignore + elif value.data.parent is not None and "nlay" in value.data.parent.dims: # type: ignore + structured_grid_dims = value.data.parent.dims # type: ignore + else: + structured_grid_dims = None + + blocks.update( + { + block_name: unstructure_block( + data[block_name], structured_grid_dims=structured_grid_dims + ) + for block_name in dfn.blocks.keys() + if block_name not in binding_blocks + } + ) + if period_block := blocks.pop(PERIOD, None): + period_block = {k: v for k, v in period_block.items() if v is not None} + blocks.update(segment_period_data(period_block, cls)) + + # total temporary hack! manually set solutiongroup 1. + # TODO support multiple solution groups if "solutiongroup" in blocks: sg = blocks["solutiongroup"] blocks["solutiongroup 1"] = sg del blocks["solutiongroup"] - return {name: block for name, block in blocks.items() if name != "period"} + return dict(sorted(blocks.items(), key=block_sort_key)) -def _make_converter() -> Converter: +def make_component_converter() -> Converter: converter = Converter() converter.register_unstructure_hook_factory(xattree.has, lambda _: xattree.asdict) converter.register_unstructure_hook(Component, unstructure_component) return converter -COMPONENT_CONVERTER = _make_converter() +COMPONENT_CONVERTER = make_component_converter() def dict_to_array(value, self_, field) -> NDArray: diff --git a/flopy4/mf6/gwf/__init__.py b/flopy4/mf6/gwf/__init__.py index 70a64443..ab22979e 100644 --- a/flopy4/mf6/gwf/__init__.py +++ b/flopy4/mf6/gwf/__init__.py @@ -13,12 +13,13 @@ from flopy4.mf6.gwf.ic import Ic from flopy4.mf6.gwf.npf import Npf from flopy4.mf6.gwf.oc import Oc +from flopy4.mf6.gwf.sto import Sto from flopy4.mf6.gwf.wel import Wel from flopy4.mf6.model import Model from flopy4.mf6.spec import field from flopy4.mf6.utils import open_cbc, open_hds -__all__ = ["Gwf", "Chd", "Dis", "Drn", "Ic", "Npf", "Oc", "Wel"] +__all__ = ["Gwf", "Chd", "Dis", "Drn", "Ic", "Npf", "Oc", "Sto", "Wel"] def convert_grid(value): @@ -66,11 +67,12 @@ def budget(self): nc_filerecord: Optional[Path] = field(block="options", default=None) dis: Dis = field(converter=convert_grid, block="packages") ic: Ic = field(block="packages") - oc: Oc = field(block="packages") + oc: Oc = field(block="packages", default=None) npf: Npf = field(block="packages") + sto: Sto = field(block="packages", default=None) chd: list[Chd] = field(block="packages") - wel: list[Wel] = field(block="packages") drn: list[Drn] = field(block="packages") + wel: list[Wel] = field(block="packages") output: Output = attrs.field( default=attrs.Factory(lambda self: Gwf.Output(self), takes_self=True) ) diff --git a/flopy4/mf6/gwf/oc.py b/flopy4/mf6/gwf/oc.py index 00a5e8d5..4d3ee592 100644 --- a/flopy4/mf6/gwf/oc.py +++ b/flopy4/mf6/gwf/oc.py @@ -55,28 +55,28 @@ class Period: save_head: Optional[NDArray[np.object_]] = array( object, block="period", - default="all", + default=None, dims=("nper",), converter=Converter(dict_to_array, takes_self=True, takes_field=True), ) save_budget: Optional[NDArray[np.object_]] = array( object, block="period", - default="all", + default=None, dims=("nper",), converter=Converter(dict_to_array, takes_self=True, takes_field=True), ) print_head: Optional[NDArray[np.object_]] = array( object, block="period", - default="all", + default=None, dims=("nper",), converter=Converter(dict_to_array, takes_self=True, takes_field=True), ) print_budget: Optional[NDArray[np.object_]] = array( object, block="period", - default="all", + default=None, dims=("nper",), converter=Converter(dict_to_array, takes_self=True, takes_field=True), ) diff --git a/flopy4/mf6/gwf/sto.py b/flopy4/mf6/gwf/sto.py index ac1e20c7..9dea32c2 100644 --- a/flopy4/mf6/gwf/sto.py +++ b/flopy4/mf6/gwf/sto.py @@ -39,13 +39,7 @@ class Sto(Package): default=0.15, converter=Converter(dict_to_array, takes_self=True, takes_field=True), ) - steady_state: Optional[NDArray[np.bool_]] = array( - block="period", - dims=("nper",), - default=None, - converter=Converter(dict_to_array, takes_self=True, takes_field=True), - ) - transient: Optional[NDArray[np.bool_]] = array( + storage: Optional[NDArray[np.str_]] = array( block="period", dims=("nper",), default=None, diff --git a/flopy4/mf6/solution.py b/flopy4/mf6/solution.py index ba444e24..c41fc44e 100644 --- a/flopy4/mf6/solution.py +++ b/flopy4/mf6/solution.py @@ -1,9 +1,8 @@ from abc import ABC -from pathlib import Path -from typing import ClassVar, Optional +from typing import ClassVar import attrs -from xattree import field, xattree +from xattree import xattree from flopy4.mf6.package import Package @@ -12,8 +11,7 @@ class Solution(Package, ABC): slntype: ClassVar[str] = "sln" - slnfname: Optional[Path] = field(default=None) # type: ignore models: list[str] = attrs.field(default=attrs.Factory(list)) def default_filename(self) -> str: - return str(self.slnfname) if self.slnfname else f"solution.{self.slntype.lower()}" + return f"solution.{self.slntype.lower()}" diff --git a/flopy4/spec.py b/flopy4/spec.py index 3d9b5ddb..0721fdca 100644 --- a/flopy4/spec.py +++ b/flopy4/spec.py @@ -1,6 +1,8 @@ """ Wrap `xattree` and `attrs` specification utilities. These include field decorators and introspection functions. +TODO: add `derived` option to dims? or more generic option +to any field indicating it is not part of the formal spec? """ from attrs import NOTHING, Attribute diff --git a/pixi.lock b/pixi.lock index d821b698..703dbaef 100644 --- a/pixi.lock +++ b/pixi.lock @@ -14,8 +14,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-ha97dd6f_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_6.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda @@ -23,7 +23,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.8-h2b335a9_101_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.9-h2b335a9_100_cp313.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-8_cp313.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda @@ -34,12 +34,12 @@ environments: - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c3/f8/6f13d37abb7ade46e65a08acc31af776a96dde0eb569e05d4c4b01422ba6/cftime-1.6.4.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/7e/95/42aa2156235cbc8fa61208aded06ef46111c4d3f0de233107b3f38631803/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/ba/08/52f06ff2f04d376f9cd2c211aefcf2b37f1978e43289341f362fc99f6a0e/cftime-1.6.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4b/32/e0f13a1c5b0f8572d0ec6ae2f6c677b7991fafd95da523159c19eff0696a/contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/01/cf/32f019be5de9f6e180926a50ee5f08648e686c7d9a59f2c5d0806a77b1c7/crc32c-2.7.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/1c/48/01d8d3dbeafddd4df305a4a9fc0375389a017721b83b6ef0dd76c268ae0b/crc32c-2.7.1.post0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/86/7c764bef28f5183bd67e548c60afb9fe3eb7a6d58eb321b72c4c4d2be021/distributed-2025.10.0-py3-none-any.whl @@ -47,9 +47,9 @@ environments: - pypi: https://files.pythonhosted.org/packages/2e/1a/1d0dc91dd9af745aebf58fe3690b38047cca8616df22397a91561cfdaba1/flopy-3.9.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2d/8b/371ab3cec97ee3fe1126b3406b7abd60c8fec8975fd79a3c75cdea0c3d83/fonttools-4.60.1-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl - pypi: https://files.pythonhosted.org/packages/47/71/70db47e4f6ce3e5c37a607355f80da8860a33226be640226ac52cb05ef2e/fsspec-2025.9.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/e7/ec/86f59025306dcc6deee5fda54d980d077075b8d9889aac80f158bd585f1b/h5py-3.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d9/69/4402ea66272dacc10b298cca18ed73e1c0791ff2ae9ed218d3859f9698ac/h5py-3.15.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e9/e9/f218a2cb3a9ffbe324ca29a9e399fa2d2866d7f348ec3a88df87fc248fc5/kiwisolver-1.4.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - pypi: https://files.pythonhosted.org/packages/a8/3e/1c6b43277de64fc3c0333b0e72ab7b52ddaaea205210d60d9b9f83c3d0c7/lark-1.3.0-py3-none-any.whl @@ -59,10 +59,10 @@ environments: - pypi: https://files.pythonhosted.org/packages/d0/34/9e591954939276bb679b73773836c6684c22e56d05980e31d52a9a8deb18/lxml-6.0.2-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/97/12/a1f2f4fdc6b7159c0d12249456f9fe454665b6126e98dbee9f2bd3cf735c/lz4-4.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/e5/b8/9eea6630198cb303d131d95d285a024b3b8645b1763a2916fddb44ca8760/matplotlib-3.10.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: https://files.pythonhosted.org/packages/22/ff/6425bf5c20d79aa5b959d1ce9e65f599632345391381c9a104133fe0b171/matplotlib-3.10.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/5d/ba/459f18c16f2b3fc1a1ca871f72f07d70c07bf768ad0a507a698b8052ac58/msgpack-1.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/97/1a/78b19893197ed7525edfa7f124a461626541e82aec694a468ba97755c24e/netcdf4-1.7.3-cp311-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/eb/8d/776adee7bbf76365fdd7f2552710282c79a4ead5d2a46408c9043a2b70ba/networkx-3.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/78/7e/bf2e3634993d57f95305c7cee4c9c6cb3c9c78404ee7b49569a0dfecfe33/numba-0.62.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl @@ -71,8 +71,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/15/07/284f757f63f8a8d69ed4472bfd85122bd086e637bf4ed09de572d575a693/pandas-2.3.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/38/57/755dbd06530a27a5ed74f8cb0a7a44a21722ebf318edbe67ddbd7fb28f88/pillow-12.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9d/de/04c8c61232f7244aa0a4b9a9fbd63a89d5aeaf94b2fc9d1d16e2faa5cbb0/psutil-7.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/89/4b/7782438b551dbb0468892a276b8c789b8bbdb25ea5c5eb27faadd753e037/pyarrow-21.0.0-cp313-cp313-manylinux_2_28_x86_64.whl @@ -102,11 +102,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/50/bd/c336448be43d40be28e71f2e0f3caf7ccb28e2755c58f4c02c065bfe3e8e/WebOb-1.8.9-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - - pypi: ./ + - pypi: . osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda @@ -118,7 +118,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.5.4-h230baf5_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.8-h2bd861f_101_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.9-h2bd861f_100_cp313.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-8_cp313.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda @@ -129,12 +129,12 @@ environments: - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/da/d8/81f086dbdc6f5a4e0bb068263471f1d12861b72562fe8c18df38268e4e29/cftime-1.6.4.post1-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/65/ca/2135ac97709b400c7654b4b764daf5c5567c2da45a30cdd20f9eefe2d658/charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl + - pypi: https://files.pythonhosted.org/packages/2e/60/74ea344b3b003fada346ed98a6899085d6fd4c777df608992d90c458fda6/cftime-1.6.5-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/68/35/0167aad910bbdb9599272bd96d01a9ec6852f36b9455cf2ca67bd4cc2d23/contourpy-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/4f/56/0dd652d4e950e6348bbf16b964b3325e4ad8220470774128fc0b0dd069cb/crc32c-2.7.1-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/07/f4/ffd4358a67b855d2c1136fa90769ba2a4ae24c90304df4a5f9269b2b4a02/crc32c-2.7.1.post0-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/86/7c764bef28f5183bd67e548c60afb9fe3eb7a6d58eb321b72c4c4d2be021/distributed-2025.10.0-py3-none-any.whl @@ -142,9 +142,9 @@ environments: - pypi: https://files.pythonhosted.org/packages/2e/1a/1d0dc91dd9af745aebf58fe3690b38047cca8616df22397a91561cfdaba1/flopy-3.9.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d6/8a/de9cc0540f542963ba5e8f3a1f6ad48fa211badc3177783b9d5cadf79b5d/fonttools-4.60.1-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/47/71/70db47e4f6ce3e5c37a607355f80da8860a33226be640226ac52cb05ef2e/fsspec-2025.9.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/6c/c2/7efe82d09ca10afd77cd7c286e42342d520c049a8c43650194928bcc635c/h5py-3.14.0-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/88/b3/40207e0192415cbff7ea1d37b9f24b33f6d38a5a2f5d18a678de78f967ae/h5py-3.15.1-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/f0/f44f50c9f5b1a1860261092e3bc91ecdc9acda848a8b8c6abfda4a24dd5c/kiwisolver-1.4.9-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/a8/3e/1c6b43277de64fc3c0333b0e72ab7b52ddaaea205210d60d9b9f83c3d0c7/lark-1.3.0-py3-none-any.whl @@ -154,10 +154,10 @@ environments: - pypi: https://files.pythonhosted.org/packages/5d/f4/2a94a3d3dfd6c6b433501b8d470a1960a20ecce93245cf2db1706adf6c19/lxml-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/3b/3c/d1d1b926d3688263893461e7c47ed7382a969a0976fc121fc678ec325fc6/lz4-4.4.4-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/a0/db/18380e788bb837e724358287b08e223b32bc8dccb3b0c12fa8ca20bc7f3b/matplotlib-3.10.6-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: https://files.pythonhosted.org/packages/02/9c/207547916a02c78f6bdd83448d9b21afbc42f6379ed887ecf610984f3b4e/matplotlib-3.10.7-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/6b/31/b46518ecc604d7edf3a4f94cb3bf021fc62aa301f0cb849936968164ef23/msgpack-1.1.2-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/49/62/d286c76cdf0f6faf6064dc032ba7df3d6172ccca6e7d3571eee5516661b9/netcdf4-1.7.3-cp311-abi3-macosx_13_0_x86_64.whl - pypi: https://files.pythonhosted.org/packages/eb/8d/776adee7bbf76365fdd7f2552710282c79a4ead5d2a46408c9043a2b70ba/networkx-3.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/22/76/501ea2c07c089ef1386868f33dff2978f43f51b854e34397b20fc55e0a58/numba-0.62.1-cp313-cp313-macosx_10_15_x86_64.whl @@ -166,8 +166,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cd/4b/18b035ee18f97c1040d94debd8f2e737000ad70ccc8f5513f4eefad75f4b/pandas-2.3.3-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/01/f4/91d5b3ffa718df2f53b0dc109877993e511f4fd055d7e9508682e8aba092/pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a4/a4/a0a31467e3f83b94d37568294b01d22b43ae3c5d85f2811769b9c66389dd/pillow-12.0.0-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/46/62/ce4051019ee20ce0ed74432dd73a5bb087a6704284a470bb8adff69a0932/psutil-7.1.0-cp36-abi3-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ce/e8/e87d9e3b2489302b3a1aea709aaca4b781c5252fcb812a17ab6275a9a484/pyarrow-21.0.0-cp313-cp313-macosx_12_0_x86_64.whl @@ -197,11 +197,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/50/bd/c336448be43d40be28e71f2e0f3caf7ccb28e2755c58f4c02c065bfe3e8e/WebOb-1.8.9-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - - pypi: ./ + - pypi: . win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda @@ -212,27 +212,27 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.4-h725018a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.8-hdf00ec1_101_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.9-hdf00ec1_100_cp313.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-8_cp313.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_32.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda - pypi: https://files.pythonhosted.org/packages/3a/2a/7cc015f5b9f5db42b7d48157e23356022889fc354a2813c15934b7cb5c0e/attrs-25.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/94/fe/3aed5d0be4d404d12d36ab97e2f1791424d9ca39c2f754a6285d59a3b01d/beautifulsoup4-4.14.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/96/9a/8e641b5415e12036d8a206147b8229d917a767b7d939521458d90feddcf5/bokeh-3.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/45/7f/0e961cf3908bc4c1c3e027de2794f867c6c89fb4916fc7dba295a0e80a2d/boltons-25.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f3/2d/980323fb5ec1ef369604b61ba259a41d0336cc1a85b639ed7bd210bd1290/cftime-1.6.4.post1-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/9a/8f/ae790790c7b64f925e5c953b924aaa42a243fb778fed9e41f147b2a5715a/charset_normalizer-3.4.3-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/a4/60/a0cfba63847b43599ef1cdbbf682e61894994c22b9a79fd9e1e8c7e9de41/cftime-1.6.5-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/18/0b/0098c214843213759692cc638fce7de5c289200a830e5035d1791d7a2338/contourpy-1.3.3-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/db/a0/f01ccfab538db07ef3f6b4ede46357ff147a81dd4f3c59ca6a34c791a549/crc32c-2.7.1-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/67/7a/41a2b78f70d8fc2e2370f149cfe2a34bec571f4b1d8c1f2f2a5c53f8873e/crc32c-2.7.1.post0-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e6/86/7c764bef28f5183bd67e548c60afb9fe3eb7a6d58eb321b72c4c4d2be021/distributed-2025.10.0-py3-none-any.whl @@ -240,9 +240,9 @@ environments: - pypi: https://files.pythonhosted.org/packages/2e/1a/1d0dc91dd9af745aebf58fe3690b38047cca8616df22397a91561cfdaba1/flopy-3.9.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/75/4d/b022c1577807ce8b31ffe055306ec13a866f2337ecee96e75b24b9b753ea/fonttools-4.60.1-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/47/71/70db47e4f6ce3e5c37a607355f80da8860a33226be640226ac52cb05ef2e/fsspec-2025.9.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/3f/6d/0084ed0b78d4fd3e7530c32491f2884140d9b06365dac8a08de726421d4a/h5py-3.14.0-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e5/ea/fbb258a98863f99befb10ed727152b4ae659f322e1d9c0576f8a62754e81/h5py-3.15.1-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/75/bd/f1a5d894000941739f2ae1b65a32892349423ad49c2e6d0771d0bad3fae4/kiwisolver-1.4.9-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/a8/3e/1c6b43277de64fc3c0333b0e72ab7b52ddaaea205210d60d9b9f83c3d0c7/lark-1.3.0-py3-none-any.whl @@ -252,10 +252,10 @@ environments: - pypi: https://files.pythonhosted.org/packages/fe/0a/4643ccc6bb8b143e9f9640aa54e38255f9d3b45feb2cbe7ae2ca47e8782e/lxml-6.0.2-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/00/96/b8e24ea7537ab418074c226279acfcaa470e1ea8271003e24909b6db942b/lz4-4.4.4-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/ff/1d/70c28528794f6410ee2856cd729fa1f1756498b8d3126443b0a94e1a8695/matplotlib-3.10.6-cp313-cp313-win_amd64.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: https://files.pythonhosted.org/packages/e1/b6/23064a96308b9aeceeffa65e96bcde459a2ea4934d311dee20afde7407a0/matplotlib-3.10.7-cp313-cp313-win_amd64.whl + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/74/07/1ed8277f8653c40ebc65985180b007879f6a836c525b3885dcc6448ae6cb/msgpack-1.1.2-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/f8/a5509bc46faedae2b71df29c57e6525b7eb47aee44000fd43e2927a9a3a9/netcdf4-1.7.3-cp311-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/eb/8d/776adee7bbf76365fdd7f2552710282c79a4ead5d2a46408c9043a2b70ba/networkx-3.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9c/ec/9d414e7a80d6d1dc4af0e07c6bfe293ce0b04ea4d0ed6c45dad9bd6e72eb/numba-0.62.1-cp313-cp313-win_amd64.whl @@ -264,8 +264,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4f/c7/e54682c96a895d0c808453269e0b5928a07a127a15704fedb643e9b0a4c8/pandas-2.3.3-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/23/85/397c73524e0cd212067e0c969aa245b01d50183439550d24d9f55781b776/pillow-11.3.0-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6d/2a/dd43dcfd6dae9b6a49ee28a8eedb98c7d5ff2de94a5d834565164667b97b/pillow-12.0.0-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/bf/e9/b44c4f697276a7a95b8e94d0e320a7bf7f3318521b23de69035540b39838/psutil-7.1.0-cp37-abi3-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/01/63/581f2076465e67b23bc5a37d4a2abff8362d389d29d8105832e82c9c811c/pyarrow-21.0.0-cp313-cp313-win_amd64.whl @@ -295,11 +295,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/50/bd/c336448be43d40be28e71f2e0f3caf7ccb28e2755c58f4c02c065bfe3e8e/WebOb-1.8.9-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - - pypi: ./ + - pypi: . dev: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -314,9 +314,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-ha97dd6f_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_6.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda @@ -325,7 +325,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.14-hfe2f287_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda @@ -347,15 +347,15 @@ environments: - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d7/91/500d892b2bf36529a75b77958edfcd5ad8e2ce4064ce2ecfeab2125d72d1/cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/77/81/6b30815698ede50f89013f25e46d66ed3a290b8a2d6b97f95bacbbe1eb5c/cftime-1.6.4.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/87/df/b7737ff046c974b183ea9aa111b74185ac8c3a326c6262d413bd5a1b8c69/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/3e/8d/86586c0d75110f774e46e2bd6d134e2d1cca1dedc9bb08c388fa3df76acd/cftime-1.6.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/6d/fc/de9cce525b2c5b94b47c70a4b4fb19f871b24995c728e957ee68ab1671ea/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/5f/4b/6157f24ca425b89fe2eb7e7be642375711ab671135be21e6faa100f7448c/contourpy-1.3.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/40/b8/7a3f1f33b35cc4a6c37e759137533119560d06c0cc14753d1a803be0cd4a/coverage-7.11.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/6a/2b/9e29e9ac4c4213d60491db09487125db358cd9263490fbadbd55e48fbe03/crc32c-2.7.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/c1/53/0f51e926799025e31746d454ab2e36f8c3f0d41592bc65cb9840368d3275/cryptography-46.0.2-cp311-abi3-manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/b9/24/42aa97aac254adeafaa44297654a520db1922dcab4a07bbb965b41d52b66/crc32c-2.7.1.post0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c9/56/e7e69b427c3878352c2fb9b450bd0e19ed552753491d39d7d0a2f5226d41/cryptography-46.0.3-cp311-abi3-manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b0/d0/89247ec250369fc76db477720a26b2fce7ba079ff1380e4ab4529d2fe233/debugpy-1.8.17-py2.py3-none-any.whl @@ -368,7 +368,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cb/a8/20d0723294217e47de6d9e2e40fd4a9d2f7c4b6ef974babd482a59743694/fastjsonschema-2.21.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/76/91/7216b27286936c16f5b4d0c530087e4a54eead683e6b0b73dd0c64844af6/filelock-3.20.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/1a/1d0dc91dd9af745aebf58fe3690b38047cca8616df22397a91561cfdaba1/flopy-3.9.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d2/d2/9f4e4c4374dd1daa8367784e1bd910f18ba886db1d6b825b12edf6db3edc/fonttools-4.60.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl @@ -376,16 +376,16 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/21/d4/d461649cafd5137088fb7f8e78fdc6621bb0c4ff2c090a389f68e8edc136/h5py-3.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8b/23/4ab1108e87851ccc69694b03b817d92e142966a6c4abd99e17db77f2c066/h5py-3.15.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9f/cb/18326d2d89ad3b0dd143da971e77afd1e6ca6674f1b1c3df4b6bec6279fc/id-1.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/0f/1c/e5fd8f973d4f375adb21565739498e2e9a1e54c858a97b9a8ccfdc81da9b/identify-2.6.15-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/20/b0/36bd937216ec521246249be3bf9855081de4c5e06a0c9b4219dbeda50373/importlib_metadata-8.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -422,17 +422,17 @@ environments: - pypi: https://files.pythonhosted.org/packages/81/af/665685072e71f3f0e626221b7922867ec249cd8376aca761078c8f11f5da/lz4-4.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/30/ac/0273f6fcb5f42e314c6d8cd99effae6a5354604d461b8d392b5ec9530a54/markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/d3/29/4a8650a3dcae97fa4f375d46efcb25920d67b512186f8a6788b896062a81/matplotlib-3.10.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/10/b7/4aa196155b4d846bd749cf82aa5a4c300cf55a8b5e0dfa5b722a63c0f8a0/matplotlib-3.10.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/a4/8e/469e5a4a2f5855992e425f3cb33804cc07bf18d48f2db061aec61ce50270/more_itertools-10.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/da/e0/6cc2e852837cd6086fe7d8406af4294e66827a60a4cf60b86575a4a65ca8/msgpack-1.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/1a/52/ec4a061dd599eb8179d5411d99775bec2a20542505988f40fc2fee781068/mypy-1.18.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -454,8 +454,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f2/2f/d7675ecae6c43e9f12aa8d58b6012683b20b6edfbdac7abcb4e6af7a3784/pillow-11.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/41/1e/db9470f2d030b4995083044cd8738cdd1bf773106819f6d8ba12597d5352/pillow-12.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/5b/a5/987a405322d78a73b66e39e4a90e4ef156fd7141bf71df987e50717c321b/pre_commit-4.3.0-py2.py3-none-any.whl @@ -484,7 +484,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/71/60/917329f640924b18ff085ab889a11c763e0b573da888e8404ff486657602/pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/b1/c4/2a6fe5111a01005fc7af3878259ce17684fabb8852815eda6225620f3c59/pyzmq-27.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e1/67/921ec3024056483db83953ae8e48079ad62b92db7880013ca77632921dd0/readme_renderer-44.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl @@ -492,7 +492,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/71/44ce230e1b7fadd372515a97e32a83011f906ddded8d03e3c6aafbdedbb7/rfc3987_syntax-1.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/e3/30/3c4d035596d3cf444529e0b2953ad0466f6049528a879d27534700580395/rich-14.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/25/7a/b0178788f8dc6cafce37a212c99565fa1fe7872c70c6c9c1e1a372d9d88f/rich-14.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f5/48/64cabb7daced2968dd08e8a1b7988bf358d7bd5bcd5dc89a652f4668543c/rpds_py-0.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/29/b4/4cd6a4331e999fc05d9d77729c95503f99eae3ba1160469f2b64866964e3/ruff-0.14.0-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/1a/bc/a5c75095089b96ea72c1bd37a4497c24b581ec73db4ef58ebee142ad2d14/scipy-1.16.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl @@ -522,7 +522,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/bc/d9/5ec15501b675f7bc07c5d16aa70d8d778b12375686b6efd47656efdc67cd/url_normalize-2.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/06/04c8e804f813cf972e3262f3f8584c232de64f0cde9f703b46cf53a45090/virtualenv-20.34.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/27/73/d9a94da0e9d470a543c1b9d3ccbceb0f59455983088e727b8a1824ed90fb/virtualenv-20.35.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/af/b5/123f13c975e9f27ab9c0770f514345bd406d0e8d3b7a0723af9d43f710af/wcwidth-0.2.14-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl @@ -530,12 +530,12 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/54/647ade08bf0db230bfea292f893923872fd20be6ac6f53b2b936ba839d75/zipp-3.23.0-py3-none-any.whl - - pypi: ./ + - pypi: . osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda @@ -546,7 +546,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.5.4-h230baf5_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.13-h9ccd52b_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.14-h3999593_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda @@ -569,14 +569,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/12/4a/3dfd5f7850cbf0d06dc84ba9aa00db766b52ca38d8b86e3a38314d52498c/cffi-2.0.0-cp311-cp311-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/85/e6/6a7d2120fcffee208cf637d22b0d8f2701d91f69f68a96940056429950f3/cftime-1.6.4.post1-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/7f/b5/991245018615474a60965a7c9cd2b4efbaabd16d582a5547c47ee1c7730b/charset_normalizer-3.4.3-cp311-cp311-macosx_10_9_universal2.whl + - pypi: https://files.pythonhosted.org/packages/e4/f6/9da7aba9548ede62d25936b8b448acd7e53e5dcc710896f66863dcc9a318/cftime-1.6.5-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/ed/27/c6491ff4954e58a10f69ad90aca8a1b6fe9c5d3c6f380907af3c37435b59/charset_normalizer-3.4.4-cp311-cp311-macosx_10_9_universal2.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/2e/c4390a31919d8a78b90e8ecf87cd4b4c4f05a5b48d05ec17db8e5404c6f4/contourpy-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/49/3a/ee1074c15c408ddddddb1db7dd904f6b81bc524e01f5a1c5920e13dbde23/coverage-7.11.0-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/ed/b8/e52f7c4b045b871c2984d70f37c31d4861b533a8082912dfd107a96cf7c1/crc32c-2.7.1-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/94/ac/f9550d21a4434b5dad9124ccd6b7cee97ce66bc0cb91a605bf01d9c2475d/crc32c-2.7.1.post0-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b0/d0/89247ec250369fc76db477720a26b2fce7ba079ff1380e4ab4529d2fe233/debugpy-1.8.17-py2.py3-none-any.whl @@ -589,7 +589,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cb/a8/20d0723294217e47de6d9e2e40fd4a9d2f7c4b6ef974babd482a59743694/fastjsonschema-2.21.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/76/91/7216b27286936c16f5b4d0c530087e4a54eead683e6b0b73dd0c64844af6/filelock-3.20.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/1a/1d0dc91dd9af745aebf58fe3690b38047cca8616df22397a91561cfdaba1/flopy-3.9.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6b/47/3c63158459c95093be9618794acb1067b3f4d30dcc5c3e8114b70e67a092/fonttools-4.60.1-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl @@ -597,16 +597,16 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/61/1b/ad24a8ce846cf0519695c10491e99969d9d203b9632c4fcd5004b1641c2e/h5py-3.14.0-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/41/fd/8349b48b15b47768042cff06ad6e1c229f0a4bd89225bf6b6894fea27e6d/h5py-3.15.1-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9f/cb/18326d2d89ad3b0dd143da971e77afd1e6ca6674f1b1c3df4b6bec6279fc/id-1.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/0f/1c/e5fd8f973d4f375adb21565739498e2e9a1e54c858a97b9a8ccfdc81da9b/identify-2.6.15-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/20/b0/36bd937216ec521246249be3bf9855081de4c5e06a0c9b4219dbeda50373/importlib_metadata-8.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -642,17 +642,17 @@ environments: - pypi: https://files.pythonhosted.org/packages/28/e8/63843dc5ecb1529eb38e1761ceed04a0ad52a9ad8929ab8b7930ea2e4976/lz4-4.4.4-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/80/d6/5d3665aa44c49005aaacaa68ddea6fcb27345961cd538a98bb0177934ede/matplotlib-3.10.6-cp311-cp311-macosx_10_12_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/fc/bc/0fb489005669127ec13f51be0c6adc074d7cf191075dab1da9fe3b7a3cfc/matplotlib-3.10.7-cp311-cp311-macosx_10_12_x86_64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/a4/8e/469e5a4a2f5855992e425f3cb33804cc07bf18d48f2db061aec61ce50270/more_itertools-10.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/97/560d11202bcd537abca693fd85d81cebe2107ba17301de42b01ac1677b69/msgpack-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/88/87/cafd3ae563f88f94eec33f35ff722d043e09832ea8530ef149ec1efbaf08/mypy-1.18.2-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -674,8 +674,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/db/26/77f8ed17ca4ffd60e1dcd220a6ec6d71210ba398cfa33a13a1cd614c5613/pillow-11.3.0-cp311-cp311-macosx_10_10_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/5a/a2f6773b64edb921a756eb0729068acad9fc5208a53f4a349396e9436721/pillow-12.0.0-cp311-cp311-macosx_10_10_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/5b/a5/987a405322d78a73b66e39e4a90e4ef156fd7141bf71df987e50717c321b/pre_commit-4.3.0-py2.py3-none-any.whl @@ -704,7 +704,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/6d/16/a95b6757765b7b031c9374925bb718d55e0a9ba8a1b6a12d25962ea44347/pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/06/5d/305323ba86b284e6fcb0d842d6adaa2999035f70f8c38a9b6d21ad28c3d4/pyzmq-27.1.0-cp311-cp311-macosx_10_15_universal2.whl - pypi: https://files.pythonhosted.org/packages/e1/67/921ec3024056483db83953ae8e48079ad62b92db7880013ca77632921dd0/readme_renderer-44.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl @@ -712,7 +712,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/71/44ce230e1b7fadd372515a97e32a83011f906ddded8d03e3c6aafbdedbb7/rfc3987_syntax-1.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/e3/30/3c4d035596d3cf444529e0b2953ad0466f6049528a879d27534700580395/rich-14.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/25/7a/b0178788f8dc6cafce37a212c99565fa1fe7872c70c6c9c1e1a372d9d88f/rich-14.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b5/c1/7907329fbef97cbd49db6f7303893bd1dd5a4a3eae415839ffdfb0762cae/rpds_py-0.27.1-cp311-cp311-macosx_10_12_x86_64.whl - pypi: https://files.pythonhosted.org/packages/ee/40/e2392f445ed8e02aa6105d49db4bfff01957379064c30f4811c3bf38aece/ruff-0.14.0-py3-none-macosx_10_12_x86_64.whl - pypi: https://files.pythonhosted.org/packages/0b/ef/37ed4b213d64b48422df92560af7300e10fe30b5d665dd79932baebee0c6/scipy-1.16.2-cp311-cp311-macosx_10_14_x86_64.whl @@ -741,7 +741,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/bc/d9/5ec15501b675f7bc07c5d16aa70d8d778b12375686b6efd47656efdc67cd/url_normalize-2.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/06/04c8e804f813cf972e3262f3f8584c232de64f0cde9f703b46cf53a45090/virtualenv-20.34.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/27/73/d9a94da0e9d470a543c1b9d3ccbceb0f59455983088e727b8a1824ed90fb/virtualenv-20.35.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/af/b5/123f13c975e9f27ab9c0770f514345bd406d0e8d3b7a0723af9d43f710af/wcwidth-0.2.14-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl @@ -749,12 +749,12 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/54/647ade08bf0db230bfea292f893923872fd20be6ac6f53b2b936ba839d75/zipp-3.23.0-py3-none-any.whl - - pypi: ./ + - pypi: . win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda @@ -764,13 +764,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.4-h725018a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.14-h30ce641_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_32.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda - pypi: https://files.pythonhosted.org/packages/15/b3/9b1a8074496371342ec1e796a96f99c82c945a339cd81a8e73de28b4cf9e/anyio-4.11.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4f/d3/a8b22fa575b297cd6e3e3b0155c7e25db170edf1c74783d6a31a2490b8d9/argon2_cffi-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/c6/a759ece8f1829d1f162261226fbfd2c6832b3ff7657384045286d2afa384/argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl @@ -789,15 +789,15 @@ environments: - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ae/8f/dc5531155e7070361eb1b7e4c1a9d896d0cb21c49f807a6c03fd63fc877e/cffi-2.0.0-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/79/b1/6551603f8ea31de55913c84e4def3c36670563bdea6e195fcc4b6225ddf7/cftime-1.6.4.post1-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/f4/9c/996a4a028222e7761a96634d1820de8a744ff4327a00ada9c8942033089b/charset_normalizer-3.4.3-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/e5/c7/6669708fcfe1bb7b2a7ce693b8cc67165eac00d3ac5a5e8f6ce1be551ff9/cftime-1.6.5-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/65/f6/62fdd5feb60530f50f7e38b4f6a1d5203f4d16ff4f9f0952962c044e919a/charset_normalizer-3.4.4-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/98/4b/9bd370b004b5c9d8045c6c33cf65bae018b27aca550a3f657cdc99acdbd8/contourpy-1.3.3-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/2a/29/2ac1dfcdd4ab9a70026edc8d715ece9b4be9a1653075c658ee6f271f394d/coverage-7.11.0-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/c9/fb/1587c2705a3a47a3d0067eecf9a6fec510761c96dec45c7b038fb5c8ff46/crc32c-2.7.1-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/a3/b2/c037161956d00324198a94962788b5e6a6e76b892d96205b15a37bea0c81/crc32c-2.7.1.post0-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c2/c5/c012c60a2922cc91caa9675d0ddfbb14ba59e1e36228355f41cab6483469/debugpy-1.8.17-cp311-cp311-win_amd64.whl @@ -810,7 +810,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/43/09/2aea36ff60d16dd8879bdb2f5b3ee0ba8d08cbbdcdfe870e695ce3784385/execnet-2.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c1/ea/53f2148663b321f21b5a606bd5f191517cf40b7072c0497d3c92c4a13b1e/executing-2.2.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cb/a8/20d0723294217e47de6d9e2e40fd4a9d2f7c4b6ef974babd482a59743694/fastjsonschema-2.21.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/76/91/7216b27286936c16f5b4d0c530087e4a54eead683e6b0b73dd0c64844af6/filelock-3.20.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/1a/1d0dc91dd9af745aebf58fe3690b38047cca8616df22397a91561cfdaba1/flopy-3.9.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/bb/78/0e1a6d22b427579ea5c8273e1c07def2f325b977faaf60bb7ddc01456cb1/fonttools-4.60.1-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/cf/58/8acf1b3e91c58313ce5cb67df61001fc9dcd21be4fadb76c1a2d540e09ed/fqdn-1.5.1-py3-none-any.whl @@ -818,16 +818,16 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/db/0c/6c3f879a0f8e891625817637fad902da6e764e36919ed091dc77529004ac/h5py-3.14.0-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/23/95/499b4e56452ef8b6c95a271af0dde08dac4ddb70515a75f346d4f400579b/h5py-3.15.1-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9f/cb/18326d2d89ad3b0dd143da971e77afd1e6ca6674f1b1c3df4b6bec6279fc/id-1.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/0f/1c/e5fd8f973d4f375adb21565739498e2e9a1e54c858a97b9a8ccfdc81da9b/identify-2.6.15-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/20/b0/36bd937216ec521246249be3bf9855081de4c5e06a0c9b4219dbeda50373/importlib_metadata-8.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -863,17 +863,17 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/f0/9efe53b4945441a5d2790d455134843ad86739855b7e6199977bf6dc8898/lz4-4.4.4-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/83/8a/4414c03d3f891739326e1783338e48fb49781cc915b2e0ee052aa490d586/markupsafe-3.0.3-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/fc/8e/0a18d6d7d2d0a2e66585032a760d13662e5250c784d53ad50434e9560991/matplotlib-3.10.6-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/33/cd/b145f9797126f3f809d177ca378de57c45413c5099c5990de2658760594a/matplotlib-3.10.7-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/a4/8e/469e5a4a2f5855992e425f3cb33804cc07bf18d48f2db061aec61ce50270/more_itertools-10.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/79/309d0e637f6f37e83c711f547308b91af02b72d2326ddd860b966080ef29/msgpack-1.1.2-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/c8/7d/2697b930179e7277529eaaec1513f8de622818696857f689e4a5432e5e27/mypy-1.18.2-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -894,8 +894,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f1/cc/29c0f5d64ab8eae20f3232da8f8571660aa0ab4b8f1331da5c2f5f9a938e/pillow-11.3.0-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/4d/42/aaca386de5cc8bd8a0254516957c1f265e3521c91515b16e286c662854c4/pillow-12.0.0-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/5b/a5/987a405322d78a73b66e39e4a90e4ef156fd7141bf71df987e50717c321b/pre_commit-4.3.0-py2.py3-none-any.whl @@ -926,7 +926,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/da/e3/ea007450a105ae919a72393cb06f122f288ef60bba2dc64b26e2646fa315/pyyaml-6.0.3-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/23/6d/d8d92a0eb270a925c9b4dd039c0b4dc10abc2fcbc48331788824ef113935/pyzmq-27.1.0-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e1/67/921ec3024056483db83953ae8e48079ad62b92db7880013ca77632921dd0/readme_renderer-44.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl @@ -934,7 +934,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/ff/9a/9afaade874b2fa6c752c36f1548f718b5b83af81ed9b76628329dab81c1b/rfc3986-2.0.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/51/17023c0f8f1869d8806b979a2bffa3f861f26a3f1a66b094288323fba52f/rfc3986_validator-0.1.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/71/44ce230e1b7fadd372515a97e32a83011f906ddded8d03e3c6aafbdedbb7/rfc3987_syntax-1.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/e3/30/3c4d035596d3cf444529e0b2953ad0466f6049528a879d27534700580395/rich-14.1.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/25/7a/b0178788f8dc6cafce37a212c99565fa1fe7872c70c6c9c1e1a372d9d88f/rich-14.2.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/24/75/3b7ffe0d50dc86a6a964af0d1cc3a4a2cdf437cb7b099a4747bbb96d1819/rpds_py-0.27.1-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/41/77/56cf9cf01ea0bfcc662de72540812e5ba8e9563f33ef3d37ab2174892c47/ruff-0.14.0-py3-none-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/d6/73/c449a7d56ba6e6f874183759f8483cde21f900a8be117d67ffbb670c2958/scipy-1.16.2-cp311-cp311-win_amd64.whl @@ -963,7 +963,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/e7/00/3fca040d7cf8a32776d3d81a00c8ee7457e00f80c649f1e4a863c8321ae9/uri_template-1.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/bc/d9/5ec15501b675f7bc07c5d16aa70d8d778b12375686b6efd47656efdc67cd/url_normalize-2.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a7/c2/fe1e52489ae3122415c51f387e221dd0773709bad6c6cdaa599e8a2c5185/urllib3-2.5.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/06/04c8e804f813cf972e3262f3f8584c232de64f0cde9f703b46cf53a45090/virtualenv-20.34.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/27/73/d9a94da0e9d470a543c1b9d3ccbceb0f59455983088e727b8a1824ed90fb/virtualenv-20.35.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/af/b5/123f13c975e9f27ab9c0770f514345bd406d0e8d3b7a0723af9d43f710af/wcwidth-0.2.14-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/e8/c0e05e4684d13459f93d312077a9a2efbe04d59c393bc2b8802248c908d4/webcolors-24.11.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl @@ -971,12 +971,12 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/54/647ade08bf0db230bfea292f893923872fd20be6ac6f53b2b936ba839d75/zipp-3.23.0-py3-none-any.whl - - pypi: ./ + - pypi: . test311: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -991,9 +991,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-ha97dd6f_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_6.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda @@ -1002,7 +1002,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.14-hfe2f287_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda @@ -1021,14 +1021,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d7/91/500d892b2bf36529a75b77958edfcd5ad8e2ce4064ce2ecfeab2125d72d1/cffi-2.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/77/81/6b30815698ede50f89013f25e46d66ed3a290b8a2d6b97f95bacbbe1eb5c/cftime-1.6.4.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/87/df/b7737ff046c974b183ea9aa111b74185ac8c3a326c6262d413bd5a1b8c69/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/3e/8d/86586c0d75110f774e46e2bd6d134e2d1cca1dedc9bb08c388fa3df76acd/cftime-1.6.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/6d/fc/de9cce525b2c5b94b47c70a4b4fb19f871b24995c728e957ee68ab1671ea/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/5f/4b/6157f24ca425b89fe2eb7e7be642375711ab671135be21e6faa100f7448c/contourpy-1.3.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/40/b8/7a3f1f33b35cc4a6c37e759137533119560d06c0cc14753d1a803be0cd4a/coverage-7.11.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/6a/2b/9e29e9ac4c4213d60491db09487125db358cd9263490fbadbd55e48fbe03/crc32c-2.7.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/b9/24/42aa97aac254adeafaa44297654a520db1922dcab4a07bbb965b41d52b66/crc32c-2.7.1.post0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b0/d0/89247ec250369fc76db477720a26b2fce7ba079ff1380e4ab4529d2fe233/debugpy-1.8.17-py2.py3-none-any.whl @@ -1046,14 +1046,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/21/d4/d461649cafd5137088fb7f8e78fdc6621bb0c4ff2c090a389f68e8edc136/h5py-3.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/8b/23/4ab1108e87851ccc69694b03b817d92e142966a6c4abd99e17db77f2c066/h5py-3.15.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/20/b0/36bd937216ec521246249be3bf9855081de4c5e06a0c9b4219dbeda50373/importlib_metadata-8.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -1085,14 +1085,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/81/af/665685072e71f3f0e626221b7922867ec249cd8376aca761078c8f11f5da/lz4-4.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/30/ac/0273f6fcb5f42e314c6d8cd99effae6a5354604d461b8d392b5ec9530a54/markupsafe-3.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/d3/29/4a8650a3dcae97fa4f375d46efcb25920d67b512186f8a6788b896062a81/matplotlib-3.10.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/10/b7/4aa196155b4d846bd749cf82aa5a4c300cf55a8b5e0dfa5b722a63c0f8a0/matplotlib-3.10.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/da/e0/6cc2e852837cd6086fe7d8406af4294e66827a60a4cf60b86575a4a65ca8/msgpack-1.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -1111,8 +1111,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f2/2f/d7675ecae6c43e9f12aa8d58b6012683b20b6edfbdac7abcb4e6af7a3784/pillow-11.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/41/1e/db9470f2d030b4995083044cd8738cdd1bf773106819f6d8ba12597d5352/pillow-12.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl @@ -1138,7 +1138,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/60/917329f640924b18ff085ab889a11c763e0b573da888e8404ff486657602/pyyaml-6.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/b1/c4/2a6fe5111a01005fc7af3878259ce17684fabb8852815eda6225620f3c59/pyzmq-27.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl @@ -1177,12 +1177,12 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/54/647ade08bf0db230bfea292f893923872fd20be6ac6f53b2b936ba839d75/zipp-3.23.0-py3-none-any.whl - - pypi: ./ + - pypi: . osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda @@ -1193,7 +1193,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.5.4-h230baf5_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.13-h9ccd52b_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.14-h3999593_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda @@ -1213,14 +1213,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/12/4a/3dfd5f7850cbf0d06dc84ba9aa00db766b52ca38d8b86e3a38314d52498c/cffi-2.0.0-cp311-cp311-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/85/e6/6a7d2120fcffee208cf637d22b0d8f2701d91f69f68a96940056429950f3/cftime-1.6.4.post1-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/7f/b5/991245018615474a60965a7c9cd2b4efbaabd16d582a5547c47ee1c7730b/charset_normalizer-3.4.3-cp311-cp311-macosx_10_9_universal2.whl + - pypi: https://files.pythonhosted.org/packages/e4/f6/9da7aba9548ede62d25936b8b448acd7e53e5dcc710896f66863dcc9a318/cftime-1.6.5-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/ed/27/c6491ff4954e58a10f69ad90aca8a1b6fe9c5d3c6f380907af3c37435b59/charset_normalizer-3.4.4-cp311-cp311-macosx_10_9_universal2.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/91/2e/c4390a31919d8a78b90e8ecf87cd4b4c4f05a5b48d05ec17db8e5404c6f4/contourpy-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/49/3a/ee1074c15c408ddddddb1db7dd904f6b81bc524e01f5a1c5920e13dbde23/coverage-7.11.0-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/ed/b8/e52f7c4b045b871c2984d70f37c31d4861b533a8082912dfd107a96cf7c1/crc32c-2.7.1-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/94/ac/f9550d21a4434b5dad9124ccd6b7cee97ce66bc0cb91a605bf01d9c2475d/crc32c-2.7.1.post0-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b0/d0/89247ec250369fc76db477720a26b2fce7ba079ff1380e4ab4529d2fe233/debugpy-1.8.17-py2.py3-none-any.whl @@ -1238,14 +1238,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/61/1b/ad24a8ce846cf0519695c10491e99969d9d203b9632c4fcd5004b1641c2e/h5py-3.14.0-cp311-cp311-macosx_10_9_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/41/fd/8349b48b15b47768042cff06ad6e1c229f0a4bd89225bf6b6894fea27e6d/h5py-3.15.1-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/20/b0/36bd937216ec521246249be3bf9855081de4c5e06a0c9b4219dbeda50373/importlib_metadata-8.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -1277,14 +1277,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/28/e8/63843dc5ecb1529eb38e1761ceed04a0ad52a9ad8929ab8b7930ea2e4976/lz4-4.4.4-cp311-cp311-macosx_10_9_x86_64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/08/db/fefacb2136439fc8dd20e797950e749aa1f4997ed584c62cfb8ef7c2be0e/markupsafe-3.0.3-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/80/d6/5d3665aa44c49005aaacaa68ddea6fcb27345961cd538a98bb0177934ede/matplotlib-3.10.6-cp311-cp311-macosx_10_12_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/fc/bc/0fb489005669127ec13f51be0c6adc074d7cf191075dab1da9fe3b7a3cfc/matplotlib-3.10.7-cp311-cp311-macosx_10_12_x86_64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/2c/97/560d11202bcd537abca693fd85d81cebe2107ba17301de42b01ac1677b69/msgpack-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -1303,8 +1303,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/db/26/77f8ed17ca4ffd60e1dcd220a6ec6d71210ba398cfa33a13a1cd614c5613/pillow-11.3.0-cp311-cp311-macosx_10_10_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/5a/a2f6773b64edb921a756eb0729068acad9fc5208a53f4a349396e9436721/pillow-12.0.0-cp311-cp311-macosx_10_10_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl @@ -1330,7 +1330,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/6d/16/a95b6757765b7b031c9374925bb718d55e0a9ba8a1b6a12d25962ea44347/pyyaml-6.0.3-cp311-cp311-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/06/5d/305323ba86b284e6fcb0d842d6adaa2999035f70f8c38a9b6d21ad28c3d4/pyzmq-27.1.0-cp311-cp311-macosx_10_15_universal2.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl @@ -1369,12 +1369,12 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/54/647ade08bf0db230bfea292f893923872fd20be6ac6f53b2b936ba839d75/zipp-3.23.0-py3-none-any.whl - - pypi: ./ + - pypi: . win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda @@ -1384,13 +1384,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.4-h725018a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.14-h30ce641_1_cpython.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_32.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda - pypi: https://files.pythonhosted.org/packages/15/b3/9b1a8074496371342ec1e796a96f99c82c945a339cd81a8e73de28b4cf9e/anyio-4.11.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4f/d3/a8b22fa575b297cd6e3e3b0155c7e25db170edf1c74783d6a31a2490b8d9/argon2_cffi-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/c6/a759ece8f1829d1f162261226fbfd2c6832b3ff7657384045286d2afa384/argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl @@ -1406,15 +1406,15 @@ environments: - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ae/8f/dc5531155e7070361eb1b7e4c1a9d896d0cb21c49f807a6c03fd63fc877e/cffi-2.0.0-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/79/b1/6551603f8ea31de55913c84e4def3c36670563bdea6e195fcc4b6225ddf7/cftime-1.6.4.post1-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/f4/9c/996a4a028222e7761a96634d1820de8a744ff4327a00ada9c8942033089b/charset_normalizer-3.4.3-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/e5/c7/6669708fcfe1bb7b2a7ce693b8cc67165eac00d3ac5a5e8f6ce1be551ff9/cftime-1.6.5-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/65/f6/62fdd5feb60530f50f7e38b4f6a1d5203f4d16ff4f9f0952962c044e919a/charset_normalizer-3.4.4-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/98/4b/9bd370b004b5c9d8045c6c33cf65bae018b27aca550a3f657cdc99acdbd8/contourpy-1.3.3-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/2a/29/2ac1dfcdd4ab9a70026edc8d715ece9b4be9a1653075c658ee6f271f394d/coverage-7.11.0-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/c9/fb/1587c2705a3a47a3d0067eecf9a6fec510761c96dec45c7b038fb5c8ff46/crc32c-2.7.1-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/a3/b2/c037161956d00324198a94962788b5e6a6e76b892d96205b15a37bea0c81/crc32c-2.7.1.post0-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c2/c5/c012c60a2922cc91caa9675d0ddfbb14ba59e1e36228355f41cab6483469/debugpy-1.8.17-cp311-cp311-win_amd64.whl @@ -1432,14 +1432,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/db/0c/6c3f879a0f8e891625817637fad902da6e764e36919ed091dc77529004ac/h5py-3.14.0-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/23/95/499b4e56452ef8b6c95a271af0dde08dac4ddb70515a75f346d4f400579b/h5py-3.15.1-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/20/b0/36bd937216ec521246249be3bf9855081de4c5e06a0c9b4219dbeda50373/importlib_metadata-8.7.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -1471,14 +1471,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/07/f0/9efe53b4945441a5d2790d455134843ad86739855b7e6199977bf6dc8898/lz4-4.4.4-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/83/8a/4414c03d3f891739326e1783338e48fb49781cc915b2e0ee052aa490d586/markupsafe-3.0.3-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/fc/8e/0a18d6d7d2d0a2e66585032a760d13662e5250c784d53ad50434e9560991/matplotlib-3.10.6-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/33/cd/b145f9797126f3f809d177ca378de57c45413c5099c5990de2658760594a/matplotlib-3.10.7-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/2a/79/309d0e637f6f37e83c711f547308b91af02b72d2326ddd860b966080ef29/msgpack-1.1.2-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -1496,8 +1496,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/f1/cc/29c0f5d64ab8eae20f3232da8f8571660aa0ab4b8f1331da5c2f5f9a938e/pillow-11.3.0-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/4d/42/aaca386de5cc8bd8a0254516957c1f265e3521c91515b16e286c662854c4/pillow-12.0.0-cp311-cp311-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl @@ -1524,7 +1524,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/a6/a1/409c1651c9f874d598c10f51ff586c416625601df4bca315d08baec4c3e3/pywinpty-3.0.2-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/da/e3/ea007450a105ae919a72393cb06f122f288ef60bba2dc64b26e2646fa315/pyyaml-6.0.3-cp311-cp311-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/23/6d/d8d92a0eb270a925c9b4dd039c0b4dc10abc2fcbc48331788824ef113935/pyzmq-27.1.0-cp311-cp311-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl @@ -1563,12 +1563,12 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2e/54/647ade08bf0db230bfea292f893923872fd20be6ac6f53b2b936ba839d75/zipp-3.23.0-py3-none-any.whl - - pypi: ./ + - pypi: . test312: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -1583,9 +1583,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-ha97dd6f_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_6.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda @@ -1594,7 +1594,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.11-h9e4cc4f_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.12-hfe2f287_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda @@ -1613,14 +1613,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/78/2d/7fa73dfa841b5ac06c7b8855cfc18622132e365f5b81d02230333ff26e9e/cffi-2.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/8d/7d/2d5fc7af06da4f3bdea59a204f741bf7a30bc5019355991b2f083e557e4e/cftime-1.6.4.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/16/ab/0233c3231af734f5dfcf0844aa9582d5a1466c985bbed6cedab85af9bfe3/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/d1/fd/a7266970312df65e68b5641b86e0540a739182f5e9c62eec6dbd29f18055/cftime-1.6.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/8f/ec6289987824b29529d0dfda0d74a07cec60e54b9c92f3c9da4c0ac732de/contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/71/0b/d3bcbbc259fcced5fb67c5d78f6e7ee965f49760c14afd931e9e663a83b2/coverage-7.11.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/79/13/13576941bf7cf95026abae43d8427c812c0054408212bf8ed490eda846b0/crc32c-2.7.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/dc/8a/5e1f6789239935a95a6fb579e5f20dc4032265c5de215cec841d369ad188/crc32c-2.7.1.post0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b0/d0/89247ec250369fc76db477720a26b2fce7ba079ff1380e4ab4529d2fe233/debugpy-1.8.17-py2.py3-none-any.whl @@ -1638,13 +1638,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/86/f9/f00de11c82c88bfc1ef22633557bfba9e271e0cb3189ad704183fc4a2644/h5py-3.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/3a/30/d1c94066343a98bb2cea40120873193a4fed68c4ad7f8935c11caf74c681/h5py-3.15.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -1676,14 +1676,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/e9/26/05840fbd4233e8d23e88411a066ab19f1e9de332edddb8df2b6a95c7fddc/lz4-4.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/67/c3/135fdbbbf84e0979712df58e5e22b4f257b3f5e52a3c4aacf1b8abec0d09/matplotlib-3.10.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/7d/18/95ae2e242d4a5c98bd6e90e36e128d71cf1c7e39b0874feaed3ef782e789/matplotlib-3.10.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/65/92/a5100f7185a800a5d29f8d14041f61475b9de465ffcc0f3b9fba606e4505/msgpack-1.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -1701,8 +1701,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/e4/c9/06dd4a38974e24f932ff5f98ea3c546ce3f8c995d3f0985f8e5ba48bba19/pillow-11.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/4f/87/424511bdcd02c8d7acf9f65caa09f291a519b16bd83c3fb3374b3d4ae951/pillow-12.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl @@ -1728,7 +1728,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/f8/9b/c108cdb55560eaf253f0cbdb61b29971e9fb34d9c3499b0e96e4e60ed8a5/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl @@ -1767,11 +1767,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - - pypi: ./ + - pypi: . osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda @@ -1782,7 +1782,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.5.4-h230baf5_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.11-h9ccd52b_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.12-h3999593_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda @@ -1802,14 +1802,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ea/47/4f61023ea636104d4f16ab488e268b93008c3d0bb76893b1b31db1f96802/cffi-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/50/81/0bb28d54088a61592f61a11e7fcabcea6d261c47af79e18d0f9cbcd940ae/cftime-1.6.4.post1-cp312-cp312-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/e9/5e/14c94999e418d9b87682734589404a25854d5f5d0408df68bc15b6ff54bb/charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl + - pypi: https://files.pythonhosted.org/packages/b6/c1/e8cb7f78a3f87295450e7300ebaecf83076d96a99a76190593d4e1d2be40/cftime-1.6.5-cp312-cp312-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/be/45/adfee365d9ea3d853550b2e735f9d66366701c65db7855cd07621732ccfc/contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/c4/db/86f6906a7c7edc1a52b2c6682d6dd9be775d73c0dfe2b84f8923dfea5784/coverage-7.11.0-cp312-cp312-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/9c/3e/e3656bfa76e50ef87b7136fef2dbf3c46e225629432fc9184fdd7fd187ff/crc32c-2.7.1-cp312-cp312-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/6e/76/e63deacf3e5dcd38764a1a617fd25749ea83fe20ff42a7912a855a975a0f/crc32c-2.7.1.post0-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b0/d0/89247ec250369fc76db477720a26b2fce7ba079ff1380e4ab4529d2fe233/debugpy-1.8.17-py2.py3-none-any.whl @@ -1827,13 +1827,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/3e/77/8f651053c1843391e38a189ccf50df7e261ef8cd8bfd8baba0cbe694f7c3/h5py-3.14.0-cp312-cp312-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/62/b8/c0d9aa013ecfa8b7057946c080c0c07f6fa41e231d2e9bd306a2f8110bdc/h5py-3.15.1-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -1865,14 +1865,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/f7/2d/5523b4fabe11cd98f040f715728d1932eb7e696bfe94391872a823332b94/lz4-4.4.4-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/ea/1a/7042f7430055d567cc3257ac409fcf608599ab27459457f13772c2d9778b/matplotlib-3.10.6-cp312-cp312-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/be/b3/09eb0f7796932826ec20c25b517d568627754f6c6462fca19e12c02f2e12/matplotlib-3.10.7-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/ad/bd/8b0d01c756203fbab65d265859749860682ccd2a59594609aeec3a144efa/msgpack-1.1.2-cp312-cp312-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -1890,8 +1890,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/40/fe/1bc9b3ee13f68487a99ac9529968035cca2f0a51ec36892060edcc51d06a/pillow-11.3.0-cp312-cp312-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/90/4fcce2c22caf044e660a198d740e7fbc14395619e3cb1abad12192c0826c/pillow-12.0.0-cp312-cp312-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl @@ -1917,7 +1917,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/92/e7/038aab64a946d535901103da16b953c8c9cc9c961dadcbf3609ed6428d23/pyzmq-27.1.0-cp312-abi3-macosx_10_15_universal2.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl @@ -1956,11 +1956,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - - pypi: ./ + - pypi: . win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda @@ -1970,13 +1970,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.4-h725018a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.11-h3f84c4b_0_cpython.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.12-h30ce641_0_cpython.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_32.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda - pypi: https://files.pythonhosted.org/packages/15/b3/9b1a8074496371342ec1e796a96f99c82c945a339cd81a8e73de28b4cf9e/anyio-4.11.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4f/d3/a8b22fa575b297cd6e3e3b0155c7e25db170edf1c74783d6a31a2490b8d9/argon2_cffi-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/c6/a759ece8f1829d1f162261226fbfd2c6832b3ff7657384045286d2afa384/argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl @@ -1992,15 +1992,15 @@ environments: - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/f8/ed/13bd4418627013bec4ed6e54283b1959cf6db888048c7cf4b4c3b5b36002/cffi-2.0.0-cp312-cp312-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/af/7b/ca72a075a3f660315b031d62d39a3e9cfef71f7929da2621d5120077a75f/cftime-1.6.4.post1-cp312-cp312-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/39/f5/3b3836ca6064d0992c58c7561c6b6eee1b3892e9665d650c803bd5614522/charset_normalizer-3.4.3-cp312-cp312-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/88/15/8856a0ab76708553ff597dd2e617b088c734ba87dc3fd395e2b2f3efffe8/cftime-1.6.5-cp312-cp312-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/3d/2d/1e5ed9dd3b3803994c155cd9aacb60c82c331bad84daf75bcb9c91b3295e/charset_normalizer-3.4.4-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/19/e8/6026ed58a64563186a9ee3f29f41261fd1828f527dd93d33b60feca63352/contourpy-1.3.3-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/ff/55/e5884d55e031da9c15b94b90a23beccc9d6beee65e9835cd6da0a79e4f3a/coverage-7.11.0-cp312-cp312-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/ae/c4/7929dcd5d9b57db0cce4fe6f6c191049380fc6d8c9b9f5581967f4ec018e/crc32c-2.7.1-cp312-cp312-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/ed/3f/05cb1cd66b98f7165b8d181a164ef2c16b7ef0019a191e6ff8defa4df327/crc32c-2.7.1.post0-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/72/22/84263b205baad32b81b36eac076de0cdbe09fe2d0637f5b32243dc7c925b/debugpy-1.8.17-cp312-cp312-win_amd64.whl @@ -2018,13 +2018,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/7a/6d/6426d5d456f593c94b96fa942a9b3988ce4d65ebaf57d7273e452a7222e8/h5py-3.14.0-cp312-cp312-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/cf/51/329e7436bf87ca6b0fe06dd0a3795c34bebe4ed8d6c44450a20565d57832/h5py-3.15.1-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -2056,14 +2056,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/40/b8/243430cb62319175070e06e3a94c4c7bd186a812e474e22148ae1290d47d/lz4-4.4.4-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/45/c3/994ef20eb4154ab84cc08d033834555319e4af970165e6c8894050af0b3c/matplotlib-3.10.6-cp312-cp312-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/31/3c/80816f027b3a4a28cd2a0a6ef7f89a2db22310e945cd886ec25bfb399221/matplotlib-3.10.7-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/8c/ec/d431eb7941fb55a31dd6ca3404d41fbb52d99172df2e7707754488390910/msgpack-1.1.2-cp312-cp312-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -2080,8 +2080,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/8c/ce/e7dfc873bdd9828f3b6e5c2bbb74e47a98ec23cc5c74fc4e54462f0d9204/pillow-11.3.0-cp312-cp312-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a2/0b/d87733741526541c909bbf159e338dcace4f982daac6e5a8d6be225ca32d/pillow-12.0.0-cp312-cp312-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl @@ -2108,7 +2108,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/02/4e/1098484e042c9485f56f16eb2b69b43b874bd526044ee401512234cf9e04/pywinpty-3.0.2-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/fc/7f/a21b20d577e4100c6a41795842028235998a643b1ad406a6d4163ea8f53e/pyzmq-27.1.0-cp312-abi3-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl @@ -2147,11 +2147,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - - pypi: ./ + - pypi: . test313: channels: - url: https://conda.anaconda.org/conda-forge/ @@ -2166,8 +2166,8 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.44-ha97dd6f_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_6.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_6.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-hb9d3cd8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.50.4-h0c1763c_0.conda @@ -2175,7 +2175,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h2d0b736_3.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.5.4-h26f9b46_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.7-h2b335a9_100_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.9-h2b335a9_100_cp313.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-8_cp313.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda @@ -2195,14 +2195,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/98/df/0a1755e750013a2081e863e7cd37e0cdd02664372c754e5560099eb7aa44/cffi-2.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/c3/f8/6f13d37abb7ade46e65a08acc31af776a96dde0eb569e05d4c4b01422ba6/cftime-1.6.4.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/7e/95/42aa2156235cbc8fa61208aded06ef46111c4d3f0de233107b3f38631803/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/ba/08/52f06ff2f04d376f9cd2c211aefcf2b37f1978e43289341f362fc99f6a0e/cftime-1.6.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4b/32/e0f13a1c5b0f8572d0ec6ae2f6c677b7991fafd95da523159c19eff0696a/contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/65/6c/f7f59c342359a235559d2bc76b0c73cfc4bac7d61bb0df210965cb1ecffd/coverage-7.11.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/01/cf/32f019be5de9f6e180926a50ee5f08648e686c7d9a59f2c5d0806a77b1c7/crc32c-2.7.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/1c/48/01d8d3dbeafddd4df305a4a9fc0375389a017721b83b6ef0dd76c268ae0b/crc32c-2.7.1.post0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b0/d0/89247ec250369fc76db477720a26b2fce7ba079ff1380e4ab4529d2fe233/debugpy-1.8.17-py2.py3-none-any.whl @@ -2220,13 +2220,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/e7/ec/86f59025306dcc6deee5fda54d980d077075b8d9889aac80f158bd585f1b/h5py-3.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/d9/69/4402ea66272dacc10b298cca18ed73e1c0791ff2ae9ed218d3859f9698ac/h5py-3.15.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -2259,14 +2259,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/97/12/a1f2f4fdc6b7159c0d12249456f9fe454665b6126e98dbee9f2bd3cf735c/lz4-4.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/e5/b8/9eea6630198cb303d131d95d285a024b3b8645b1763a2916fddb44ca8760/matplotlib-3.10.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/22/ff/6425bf5c20d79aa5b959d1ce9e65f599632345391381c9a104133fe0b171/matplotlib-3.10.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/5d/ba/459f18c16f2b3fc1a1ca871f72f07d70c07bf768ad0a507a698b8052ac58/msgpack-1.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -2284,8 +2284,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/38/57/755dbd06530a27a5ed74f8cb0a7a44a21722ebf318edbe67ddbd7fb28f88/pillow-12.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl @@ -2311,7 +2311,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl - pypi: https://files.pythonhosted.org/packages/f8/9b/c108cdb55560eaf253f0cbdb61b29971e9fb34d9c3499b0e96e4e60ed8a5/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl @@ -2350,11 +2350,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - - pypi: ./ + - pypi: . osx-64: - conda: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h500dc9f_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-hbd8a1cb_0.conda @@ -2366,7 +2366,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.3.1-hd23fc13_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.5.4-h230baf5_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.7-h5eba815_100_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.9-h2bd861f_100_cp313.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-8_cp313.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda @@ -2387,14 +2387,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4b/8d/a0a47a0c9e413a658623d014e91e74a50cdd2c423f7ccfd44086ef767f90/cffi-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/da/d8/81f086dbdc6f5a4e0bb068263471f1d12861b72562fe8c18df38268e4e29/cftime-1.6.4.post1-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/65/ca/2135ac97709b400c7654b4b764daf5c5567c2da45a30cdd20f9eefe2d658/charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl + - pypi: https://files.pythonhosted.org/packages/2e/60/74ea344b3b003fada346ed98a6899085d6fd4c777df608992d90c458fda6/cftime-1.6.5-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/68/35/0167aad910bbdb9599272bd96d01a9ec6852f36b9455cf2ca67bd4cc2d23/contourpy-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/60/7f/85e4dfe65e400645464b25c036a26ac226cf3a69d4a50c3934c532491cdd/coverage-7.11.0-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/4f/56/0dd652d4e950e6348bbf16b964b3325e4ad8220470774128fc0b0dd069cb/crc32c-2.7.1-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/07/f4/ffd4358a67b855d2c1136fa90769ba2a4ae24c90304df4a5f9269b2b4a02/crc32c-2.7.1.post0-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b0/d0/89247ec250369fc76db477720a26b2fce7ba079ff1380e4ab4529d2fe233/debugpy-1.8.17-py2.py3-none-any.whl @@ -2412,13 +2412,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/6c/c2/7efe82d09ca10afd77cd7c286e42342d520c049a8c43650194928bcc635c/h5py-3.14.0-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/88/b3/40207e0192415cbff7ea1d37b9f24b33f6d38a5a2f5d18a678de78f967ae/h5py-3.15.1-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -2451,14 +2451,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/3b/3c/d1d1b926d3688263893461e7c47ed7382a969a0976fc121fc678ec325fc6/lz4-4.4.4-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/a0/db/18380e788bb837e724358287b08e223b32bc8dccb3b0c12fa8ca20bc7f3b/matplotlib-3.10.6-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/02/9c/207547916a02c78f6bdd83448d9b21afbc42f6379ed887ecf610984f3b4e/matplotlib-3.10.7-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/6b/31/b46518ecc604d7edf3a4f94cb3bf021fc62aa301f0cb849936968164ef23/msgpack-1.1.2-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -2476,8 +2476,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/01/f4/91d5b3ffa718df2f53b0dc109877993e511f4fd055d7e9508682e8aba092/pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/a4/a4/a0a31467e3f83b94d37568294b01d22b43ae3c5d85f2811769b9c66389dd/pillow-12.0.0-cp313-cp313-macosx_10_13_x86_64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl @@ -2503,7 +2503,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl - pypi: https://files.pythonhosted.org/packages/92/e7/038aab64a946d535901103da16b953c8c9cc9c961dadcbf3609ed6428d23/pyzmq-27.1.0-cp312-abi3-macosx_10_15_universal2.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl @@ -2542,11 +2542,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - - pypi: ./ + - pypi: . win-64: - conda: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h0ad9c76_8.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ca-certificates-2025.10.5-h4c7d964_0.conda @@ -2557,14 +2557,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.50.4-hf5d6505_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda - conda: https://conda.anaconda.org/conda-forge/win-64/openssl-3.5.4-h725018a_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.7-hdf00ec1_100_cp313.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.9-hdf00ec1_100_cp313.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python_abi-3.13-8_cp313.conda - conda: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.26100.0-h57928b3_0.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda - - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_32.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda + - conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda - pypi: https://files.pythonhosted.org/packages/15/b3/9b1a8074496371342ec1e796a96f99c82c945a339cd81a8e73de28b4cf9e/anyio-4.11.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4f/d3/a8b22fa575b297cd6e3e3b0155c7e25db170edf1c74783d6a31a2490b8d9/argon2_cffi-25.1.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e2/c6/a759ece8f1829d1f162261226fbfd2c6832b3ff7657384045286d2afa384/argon2_cffi_bindings-25.1.0-cp39-abi3-win_amd64.whl @@ -2580,15 +2580,15 @@ environments: - pypi: https://files.pythonhosted.org/packages/d8/2b/a40e1488fdfa02d3f9a653a61a5935ea08b3c2225ee818db6a76c7ba9695/cattrs-25.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/e4/37/af0d2ef3967ac0d6113837b44a4f0bfe1328c2b9763bd5b1744520e5cfed/certifi-2025.10.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/37/18/6519e1ee6f5a1e579e04b9ddb6f1676c17368a7aba48299c3759bbc3c8b3/cffi-2.0.0-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/f3/2d/980323fb5ec1ef369604b61ba259a41d0336cc1a85b639ed7bd210bd1290/cftime-1.6.4.post1-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/9a/8f/ae790790c7b64f925e5c953b924aaa42a243fb778fed9e41f147b2a5715a/charset_normalizer-3.4.3-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/a4/60/a0cfba63847b43599ef1cdbbf682e61894994c22b9a79fd9e1e8c7e9de41/cftime-1.6.5-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7e/e8/64c37fadfc2816a7701fa8a6ed8d87327c7d54eacfbfb6edab14a2f2be75/cloudpickle-3.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/60/97/891a0971e1e4a8c5d2b20bbe0e524dc04548d2307fee33cdeba148fd4fc7/comm-0.2.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/18/0b/0098c214843213759692cc638fce7de5c289200a830e5035d1791d7a2338/contourpy-1.3.3-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/ff/d5/226daadfd1bf8ddbccefbd3aa3547d7b960fb48e1bdac124e2dd13a2b71a/coverage-7.11.0-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/db/a0/f01ccfab538db07ef3f6b4ede46357ff147a81dd4f3c59ca6a34c791a549/crc32c-2.7.1-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/67/7a/41a2b78f70d8fc2e2370f149cfe2a34bec571f4b1d8c1f2f2a5c53f8873e/crc32c-2.7.1.post0-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a4/2b/36b8753d881ff8fcf9c57eadd2b9379815cbe08fde7ded4e52c4cbb4b227/dask-2025.10.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/46/11/18c79a1cee5ff539a94ec4aa290c1c069a5580fd5cfd2fb2e282f8e905da/debugpy-1.8.17-cp313-cp313-win_amd64.whl @@ -2606,13 +2606,13 @@ environments: - pypi: https://files.pythonhosted.org/packages/a0/61/5c78b91c3143ed5c14207f463aecfc8f9dbb5092fb2869baf37c273b2705/gitdb-4.0.12-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/01/61/d4b89fec821f72385526e1b9d9a3a0385dda4a72b206d28049e2c7cd39b8/gitpython-3.1.45-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/04/4b/29cac41a4d98d144bf5f6d33995617b185d14b22401f75ca86f384e87ff1/h11-0.16.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/3f/6d/0084ed0b78d4fd3e7530c32491f2884140d9b06365dac8a08de726421d4a/h5py-3.14.0-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/e5/ea/fbb258a98863f99befb10ed727152b4ae659f322e1d9c0576f8a62754e81/h5py-3.15.1-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2a/39/e50c7c3a983047577ee07d2a9e53faf5a69493943ec3f6a384bdc792deb2/httpx-0.28.1-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/d9/33/1f075bf72b0b747cb3288d011319aaf64083cf2efef8354174e3ed4540e2/ipython_pygments_lexers-1.1.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/58/6a/9166369a2f092bd286d24e6307de555d63616e8ddb373ebad2b5635ca4cd/ipywidgets-8.1.7-py3-none-any.whl @@ -2645,14 +2645,14 @@ environments: - pypi: https://files.pythonhosted.org/packages/00/96/b8e24ea7537ab418074c226279acfcaa470e1ea8271003e24909b6db942b/lz4-4.4.4-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/ff/1d/70c28528794f6410ee2856cd729fa1f1756498b8d3126443b0a94e1a8695/matplotlib-3.10.6-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/e1/b6/23064a96308b9aeceeffa65e96bcde459a2ea4934d311dee20afde7407a0/matplotlib-3.10.7-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7a/f0/8282d9641415e9e33df173516226b404d367a0fc55e1a60424a152913abc/mistune-3.1.4-py3-none-any.whl - - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 + - pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 - pypi: https://files.pythonhosted.org/packages/74/07/1ed8277f8653c40ebc65985180b007879f6a836c525b3885dcc6448ae6cb/msgpack-1.1.2-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/cc/9a/cd673b2f773a12c992f41309ef81b99da1690426bd2f96957a7ade0d3ed7/nbconvert-7.16.6-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl @@ -2669,8 +2669,8 @@ environments: - pypi: https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/71/e7/40fb618334dcdf7c5a316c0e7343c5cd82d3d866edc100d98e29bc945ecd/partd-1.4.2-py3-none-any.whl - - pypi: https://files.pythonhosted.org/packages/23/85/397c73524e0cd212067e0c969aa245b01d50183439550d24d9f55781b776/pillow-11.3.0-cp313-cp313-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/6d/2a/dd43dcfd6dae9b6a49ee28a8eedb98c7d5ff2de94a5d834565164667b97b/pillow-12.0.0-cp313-cp313-win_amd64.whl + - pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/a8/87/77cc11c7a9ea9fd05503def69e3d18605852cd0d4b0d3b8f15bbeb3ef1d1/pooch-1.8.2-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl @@ -2697,7 +2697,7 @@ environments: - pypi: https://files.pythonhosted.org/packages/fc/19/b757fe28008236a4a713e813283721b8a40aa60cd7d3f83549f2e25a3155/pywinpty-3.0.2-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl - pypi: https://files.pythonhosted.org/packages/fc/7f/a21b20d577e4100c6a41795842028235998a643b1ad406a6d4163ea8f53e/pyzmq-27.1.0-cp312-abi3-win_amd64.whl - - pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl + - pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/4e/2e/8f4051119f460cfc786aa91f212165bb6e643283b533db572d7b33952bd2/requests_cache-1.2.1-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/7b/44/4e421b96b67b2daff264473f7465db72fbdf36a07e05494f50300cc7b0c6/rfc3339_validator-0.1.4-py2.py3-none-any.whl @@ -2736,11 +2736,11 @@ environments: - pypi: https://files.pythonhosted.org/packages/34/db/b10e48aa8fff7407e67470363eac595018441cf32d5e1001567a7aeba5d2/websocket_client-1.9.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/ca/51/5447876806d1088a0f8f71e16542bf350918128d0a69437df26047c8e46f/widgetsnbextension-4.0.14-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/c3/78/4d6d68555a92cb97b4c192759c4ab585c5cb23490f64d4ddf12c66a3b051/xarray-2025.10.1-py3-none-any.whl - - pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 + - pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce - pypi: https://files.pythonhosted.org/packages/d6/7d/b77455d7c7c51255b2992b429107fab811b2e36ceaf76da1e55a045dc568/xyzservices-2025.4.0-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/1a/71/9de7229515a53d1cc5705ca9c411530f711a2242f962214d9dbfe2741aa4/zarr-3.1.3-py3-none-any.whl - pypi: https://files.pythonhosted.org/packages/80/ab/11a76c1e2126084fde2639514f24e6111b789b0bfa4fc6264a8975c7e1f1/zict-3.0.0-py2.py3-none-any.whl - - pypi: ./ + - pypi: . packages: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 @@ -3083,122 +3083,113 @@ packages: version: 3.4.0 sha256: b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9 requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/50/81/0bb28d54088a61592f61a11e7fcabcea6d261c47af79e18d0f9cbcd940ae/cftime-1.6.4.post1-cp312-cp312-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/2e/60/74ea344b3b003fada346ed98a6899085d6fd4c777df608992d90c458fda6/cftime-1.6.5-cp313-cp313-macosx_10_13_x86_64.whl name: cftime - version: 1.6.4.post1 - sha256: a590f73506f4704ba5e154ef55bfbaed5e1b4ac170f3caeb8c58e4f2c619ee4e + version: 1.6.5 + sha256: 4aba66fd6497711a47c656f3a732c2d1755ad15f80e323c44a8716ebde39ddd5 requires_dist: - - numpy>1.13.3 ; python_full_version < '3.12' - - numpy>=1.26.0b1 ; python_full_version >= '3.12' - requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/77/81/6b30815698ede50f89013f25e46d66ed3a290b8a2d6b97f95bacbbe1eb5c/cftime-1.6.4.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/3e/8d/86586c0d75110f774e46e2bd6d134e2d1cca1dedc9bb08c388fa3df76acd/cftime-1.6.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl name: cftime - version: 1.6.4.post1 - sha256: c9ea0965a4c87739aebd84fe8eed966e5809d10065eeffd35c99c274b6f8da15 + version: 1.6.5 + sha256: a3cda6fd12c7fb25eff40a6a857a2bf4d03e8cc71f80485d8ddc65ccbd80f16a requires_dist: - - numpy>1.13.3 ; python_full_version < '3.12' - - numpy>=1.26.0b1 ; python_full_version >= '3.12' - requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/79/b1/6551603f8ea31de55913c84e4def3c36670563bdea6e195fcc4b6225ddf7/cftime-1.6.4.post1-cp311-cp311-win_amd64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/88/15/8856a0ab76708553ff597dd2e617b088c734ba87dc3fd395e2b2f3efffe8/cftime-1.6.5-cp312-cp312-win_amd64.whl name: cftime - version: 1.6.4.post1 - sha256: 5dcfc872f455db1f12eabe3c3ba98e93757cd60ed3526a53246e966ccde46c8a + version: 1.6.5 + sha256: da84534c43699960dc980a9a765c33433c5de1a719a4916748c2d0e97a071e44 requires_dist: - - numpy>1.13.3 ; python_full_version < '3.12' - - numpy>=1.26.0b1 ; python_full_version >= '3.12' - requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/85/e6/6a7d2120fcffee208cf637d22b0d8f2701d91f69f68a96940056429950f3/cftime-1.6.4.post1-cp311-cp311-macosx_10_9_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/a4/60/a0cfba63847b43599ef1cdbbf682e61894994c22b9a79fd9e1e8c7e9de41/cftime-1.6.5-cp313-cp313-win_amd64.whl name: cftime - version: 1.6.4.post1 - sha256: 1bf7be0a0afc87628cb8c8483412aac6e48e83877004faa0936afb5bf8a877ba + version: 1.6.5 + sha256: 6c27add8f907f4a4cd400e89438f2ea33e2eb5072541a157a4d013b7dbe93f9c requires_dist: - - numpy>1.13.3 ; python_full_version < '3.12' - - numpy>=1.26.0b1 ; python_full_version >= '3.12' - requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/8d/7d/2d5fc7af06da4f3bdea59a204f741bf7a30bc5019355991b2f083e557e4e/cftime-1.6.4.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/b6/c1/e8cb7f78a3f87295450e7300ebaecf83076d96a99a76190593d4e1d2be40/cftime-1.6.5-cp312-cp312-macosx_10_13_x86_64.whl name: cftime - version: 1.6.4.post1 - sha256: 8e18021f421aa26527bad8688c1acf0c85fa72730beb6efce969c316743294f2 + version: 1.6.5 + sha256: eef25caed5ebd003a38719bd3ff8847cd52ef2ea56c3ebdb2c9345ba131fc7c5 requires_dist: - - numpy>1.13.3 ; python_full_version < '3.12' - - numpy>=1.26.0b1 ; python_full_version >= '3.12' - requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/af/7b/ca72a075a3f660315b031d62d39a3e9cfef71f7929da2621d5120077a75f/cftime-1.6.4.post1-cp312-cp312-win_amd64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/ba/08/52f06ff2f04d376f9cd2c211aefcf2b37f1978e43289341f362fc99f6a0e/cftime-1.6.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl name: cftime - version: 1.6.4.post1 - sha256: 7f50bf0d1b664924aaee636eb2933746b942417d1f8b82ab6c1f6e8ba0da6885 + version: 1.6.5 + sha256: e02a1d80ffc33fe469c7db68aa24c4a87f01da0c0c621373e5edadc92964900b requires_dist: - - numpy>1.13.3 ; python_full_version < '3.12' - - numpy>=1.26.0b1 ; python_full_version >= '3.12' - requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/c3/f8/6f13d37abb7ade46e65a08acc31af776a96dde0eb569e05d4c4b01422ba6/cftime-1.6.4.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/d1/fd/a7266970312df65e68b5641b86e0540a739182f5e9c62eec6dbd29f18055/cftime-1.6.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl name: cftime - version: 1.6.4.post1 - sha256: 6579c5c83cdf09d73aa94c7bc34925edd93c5f2c7dd28e074f568f7e376271a0 + version: 1.6.5 + sha256: 85ba8e7356d239cfe56ef7707ac30feaf67964642ac760a82e507ee3c5db4ac4 requires_dist: - - numpy>1.13.3 ; python_full_version < '3.12' - - numpy>=1.26.0b1 ; python_full_version >= '3.12' - requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/da/d8/81f086dbdc6f5a4e0bb068263471f1d12861b72562fe8c18df38268e4e29/cftime-1.6.4.post1-cp313-cp313-macosx_10_13_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/e4/f6/9da7aba9548ede62d25936b8b448acd7e53e5dcc710896f66863dcc9a318/cftime-1.6.5-cp311-cp311-macosx_10_9_x86_64.whl name: cftime - version: 1.6.4.post1 - sha256: 5c89766ebf088c097832ea618c24ed5075331f0b7bf8e9c2d4144aefbf2f1850 + version: 1.6.5 + sha256: 474e728f5a387299418f8d7cb9c52248dcd5d977b2a01de7ec06bba572e26b02 requires_dist: - - numpy>1.13.3 ; python_full_version < '3.12' - - numpy>=1.26.0b1 ; python_full_version >= '3.12' - requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/f3/2d/980323fb5ec1ef369604b61ba259a41d0336cc1a85b639ed7bd210bd1290/cftime-1.6.4.post1-cp313-cp313-win_amd64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/e5/c7/6669708fcfe1bb7b2a7ce693b8cc67165eac00d3ac5a5e8f6ce1be551ff9/cftime-1.6.5-cp311-cp311-win_amd64.whl name: cftime - version: 1.6.4.post1 - sha256: d2a8c223faea7f1248ab469cc0d7795dd46f2a423789038f439fee7190bae259 + version: 1.6.5 + sha256: 93ead088e3a216bdeb9368733a0ef89a7451dfc1d2de310c1c0366a56ad60dc8 requires_dist: - - numpy>1.13.3 ; python_full_version < '3.12' - - numpy>=1.26.0b1 ; python_full_version >= '3.12' - requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/16/ab/0233c3231af734f5dfcf0844aa9582d5a1466c985bbed6cedab85af9bfe3/charset_normalizer-3.4.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/3d/2d/1e5ed9dd3b3803994c155cd9aacb60c82c331bad84daf75bcb9c91b3295e/charset_normalizer-3.4.4-cp312-cp312-win_amd64.whl name: charset-normalizer - version: 3.4.3 - sha256: 1606f4a55c0fd363d754049cdf400175ee96c992b1f8018b993941f221221c5f + version: 3.4.4 + sha256: a79cfe37875f822425b89a82333404539ae63dbdddf97f84dcbc3d339aae9525 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/39/f5/3b3836ca6064d0992c58c7561c6b6eee1b3892e9665d650c803bd5614522/charset_normalizer-3.4.3-cp312-cp312-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/65/f6/62fdd5feb60530f50f7e38b4f6a1d5203f4d16ff4f9f0952962c044e919a/charset_normalizer-3.4.4-cp311-cp311-win_amd64.whl name: charset-normalizer - version: 3.4.3 - sha256: 86df271bf921c2ee3818f0522e9a5b8092ca2ad8b065ece5d7d9d0e9f4849bcc + version: 3.4.4 + sha256: 5ae497466c7901d54b639cf42d5b8c1b6a4fead55215500d2f486d34db48d016 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/65/ca/2135ac97709b400c7654b4b764daf5c5567c2da45a30cdd20f9eefe2d658/charset_normalizer-3.4.3-cp313-cp313-macosx_10_13_universal2.whl +- pypi: https://files.pythonhosted.org/packages/6d/fc/de9cce525b2c5b94b47c70a4b4fb19f871b24995c728e957ee68ab1671ea/charset_normalizer-3.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl name: charset-normalizer - version: 3.4.3 - sha256: 14c2a87c65b351109f6abfc424cab3927b3bdece6f706e4d12faaf3d52ee5efe + version: 3.4.4 + sha256: 840c25fb618a231545cbab0564a799f101b63b9901f2569faecd6b222ac72381 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/7e/95/42aa2156235cbc8fa61208aded06ef46111c4d3f0de233107b3f38631803/charset_normalizer-3.4.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl name: charset-normalizer - version: 3.4.3 - sha256: 416175faf02e4b0810f1f38bcb54682878a4af94059a1cd63b8747244420801f + version: 3.4.4 + sha256: e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/7f/b5/991245018615474a60965a7c9cd2b4efbaabd16d582a5547c47ee1c7730b/charset_normalizer-3.4.3-cp311-cp311-macosx_10_9_universal2.whl +- pypi: https://files.pythonhosted.org/packages/c0/10/d20b513afe03acc89ec33948320a5544d31f21b05368436d580dec4e234d/charset_normalizer-3.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl name: charset-normalizer - version: 3.4.3 - sha256: b256ee2e749283ef3ddcff51a675ff43798d92d746d1a6e4631bf8c707d22d0b + version: 3.4.4 + sha256: 11d694519d7f29d6cd09f6ac70028dba10f92f6cdd059096db198c283794ac86 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/87/df/b7737ff046c974b183ea9aa111b74185ac8c3a326c6262d413bd5a1b8c69/charset_normalizer-3.4.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl name: charset-normalizer - version: 3.4.3 - sha256: 0e78314bdc32fa80696f72fa16dc61168fda4d6a0c014e0380f9d02f0e5d8a07 + version: 3.4.4 + sha256: b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/9a/8f/ae790790c7b64f925e5c953b924aaa42a243fb778fed9e41f147b2a5715a/charset_normalizer-3.4.3-cp313-cp313-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/ed/27/c6491ff4954e58a10f69ad90aca8a1b6fe9c5d3c6f380907af3c37435b59/charset_normalizer-3.4.4-cp311-cp311-macosx_10_9_universal2.whl name: charset-normalizer - version: 3.4.3 - sha256: cf1ebb7d78e1ad8ec2a8c4732c7be2e736f6e5123a4146c5b89c9d1f585f8cef + version: 3.4.4 + sha256: 6e1fcf0720908f200cd21aa4e6750a48ff6ce4afe7ff5a79a90d5ed8a08296f8 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/e9/5e/14c94999e418d9b87682734589404a25854d5f5d0408df68bc15b6ff54bb/charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl +- pypi: https://files.pythonhosted.org/packages/f3/85/1637cd4af66fa687396e757dec650f28025f2a2f5a5531a3208dc0ec43f2/charset_normalizer-3.4.4-cp312-cp312-macosx_10_13_universal2.whl name: charset-normalizer - version: 3.4.3 - sha256: e28e334d3ff134e88989d90ba04b47d84382a828c061d0d1027b1b12a62b39b1 + version: 3.4.4 + sha256: 0a98e6759f854bd25a58a73fa88833fba3b7c491169f86ce1180c948ab3fd394 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/f4/9c/996a4a028222e7761a96634d1820de8a744ff4327a00ada9c8942033089b/charset_normalizer-3.4.3-cp311-cp311-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl name: charset-normalizer - version: 3.4.3 - sha256: 31a9a6f775f9bcd865d88ee350f0ffb0e25936a7f930ca98995c05abf1faf21c + version: 3.4.4 + sha256: a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894 requires_python: '>=3.7' - pypi: https://files.pythonhosted.org/packages/db/d3/9dcc0f5797f070ec8edf30fbadfb200e71d9db6b84d211e3b2085a7589a0/click-8.3.0-py3-none-any.whl name: click @@ -3512,62 +3503,62 @@ packages: requires_dist: - tomli ; python_full_version <= '3.11' and extra == 'toml' requires_python: '>=3.10' -- pypi: https://files.pythonhosted.org/packages/01/cf/32f019be5de9f6e180926a50ee5f08648e686c7d9a59f2c5d0806a77b1c7/crc32c-2.7.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/07/f4/ffd4358a67b855d2c1136fa90769ba2a4ae24c90304df4a5f9269b2b4a02/crc32c-2.7.1.post0-cp313-cp313-macosx_10_13_x86_64.whl name: crc32c - version: 2.7.1 - sha256: 724d5ff4d29ff093a983ae656be3307093706d850ea2a233bf29fcacc335d945 + version: 2.7.1.post0 + sha256: 8c8738557c8f266fa22637186a223d863f67d8229a894f04a8dcd0cb626b67cd requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/4f/56/0dd652d4e950e6348bbf16b964b3325e4ad8220470774128fc0b0dd069cb/crc32c-2.7.1-cp313-cp313-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/1c/48/01d8d3dbeafddd4df305a4a9fc0375389a017721b83b6ef0dd76c268ae0b/crc32c-2.7.1.post0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl name: crc32c - version: 2.7.1 - sha256: 2d5d326e7e118d4fa60187770d86b66af2fdfc63ce9eeb265f0d3e7d49bebe0b + version: 2.7.1.post0 + sha256: db9a0120df3b5238599702c68b6c2d7abde0fe867970626ccd1d0e6abfadc9e2 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/6a/2b/9e29e9ac4c4213d60491db09487125db358cd9263490fbadbd55e48fbe03/crc32c-2.7.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/67/7a/41a2b78f70d8fc2e2370f149cfe2a34bec571f4b1d8c1f2f2a5c53f8873e/crc32c-2.7.1.post0-cp313-cp313-win_amd64.whl name: crc32c - version: 2.7.1 - sha256: d698eec444b18e296a104d0b9bb6c596c38bdcb79d24eba49604636e9d747305 + version: 2.7.1.post0 + sha256: defaf285aec052f336e2e6e1d28367971671f137bc1802a508c99d49af02a134 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/79/13/13576941bf7cf95026abae43d8427c812c0054408212bf8ed490eda846b0/crc32c-2.7.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/6e/76/e63deacf3e5dcd38764a1a617fd25749ea83fe20ff42a7912a855a975a0f/crc32c-2.7.1.post0-cp312-cp312-macosx_10_13_x86_64.whl name: crc32c - version: 2.7.1 - sha256: c02a3bd67dea95cdb25844aaf44ca2e1b0c1fd70b287ad08c874a95ef4bb38db + version: 2.7.1.post0 + sha256: e304b07182b915fa9ab5340b51a6845d45331974d73b80a1710405ec8f0b4d44 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/9c/3e/e3656bfa76e50ef87b7136fef2dbf3c46e225629432fc9184fdd7fd187ff/crc32c-2.7.1-cp312-cp312-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/94/ac/f9550d21a4434b5dad9124ccd6b7cee97ce66bc0cb91a605bf01d9c2475d/crc32c-2.7.1.post0-cp311-cp311-macosx_10_9_x86_64.whl name: crc32c - version: 2.7.1 - sha256: 73361c79a6e4605204457f19fda18b042a94508a52e53d10a4239da5fb0f6a34 + version: 2.7.1.post0 + sha256: a177ee47782f9b83002b08c4d4ba57a6e31dcd96be89d1c6b71f599d9c06bba6 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/ae/c4/7929dcd5d9b57db0cce4fe6f6c191049380fc6d8c9b9f5581967f4ec018e/crc32c-2.7.1-cp312-cp312-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/a3/b2/c037161956d00324198a94962788b5e6a6e76b892d96205b15a37bea0c81/crc32c-2.7.1.post0-cp311-cp311-win_amd64.whl name: crc32c - version: 2.7.1 - sha256: 7c810a246660a24dc818047dc5f89c7ce7b2814e1e08a8e99993f4103f7219e8 + version: 2.7.1.post0 + sha256: feda0b536b1310b0535085835564918df6ba415e0b230734e1386deb7c614c02 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/c9/fb/1587c2705a3a47a3d0067eecf9a6fec510761c96dec45c7b038fb5c8ff46/crc32c-2.7.1-cp311-cp311-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/b9/24/42aa97aac254adeafaa44297654a520db1922dcab4a07bbb965b41d52b66/crc32c-2.7.1.post0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl name: crc32c - version: 2.7.1 - sha256: 887f6844bb3ad35f0778cd10793ad217f7123a5422e40041231b8c4c7329649d + version: 2.7.1.post0 + sha256: 2c57ac2129a4adc56b8898c524a33525f008a346edc5df2b1ab7b7bfc4e80bbe requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/db/a0/f01ccfab538db07ef3f6b4ede46357ff147a81dd4f3c59ca6a34c791a549/crc32c-2.7.1-cp313-cp313-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/dc/8a/5e1f6789239935a95a6fb579e5f20dc4032265c5de215cec841d369ad188/crc32c-2.7.1.post0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl name: crc32c - version: 2.7.1 - sha256: 7d9ede7be8e4ec1c9e90aaf6884decbeef10e3473e6ddac032706d710cab5888 + version: 2.7.1.post0 + sha256: eea5fe4f477249f19201b2c1ac9f0df70987593b0dd0e0d15521480500d18455 requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/ed/b8/e52f7c4b045b871c2984d70f37c31d4861b533a8082912dfd107a96cf7c1/crc32c-2.7.1-cp311-cp311-macosx_10_9_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/ed/3f/05cb1cd66b98f7165b8d181a164ef2c16b7ef0019a191e6ff8defa4df327/crc32c-2.7.1.post0-cp312-cp312-win_amd64.whl name: crc32c - version: 2.7.1 - sha256: 8c03286b1e5ce9bed7090084f206aacd87c5146b4b10de56fe9e86cbbbf851cf + version: 2.7.1.post0 + sha256: f8c1584fe841883300cd3cb0e8341da5a4c954fc2dcf9e0eb15d3b697d90930e requires_python: '>=3.7' -- pypi: https://files.pythonhosted.org/packages/c1/53/0f51e926799025e31746d454ab2e36f8c3f0d41592bc65cb9840368d3275/cryptography-46.0.2-cp311-abi3-manylinux_2_28_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/c9/56/e7e69b427c3878352c2fb9b450bd0e19ed552753491d39d7d0a2f5226d41/cryptography-46.0.3-cp311-abi3-manylinux_2_28_x86_64.whl name: cryptography - version: 46.0.2 - sha256: fab8f805e9675e61ed8538f192aad70500fa6afb33a8803932999b1049363a08 + version: 46.0.3 + sha256: a2c0cd47381a3229c403062f764160d57d4d175e022c1df84e168c6251a22eec requires_dist: - cffi>=1.14 ; python_full_version == '3.8.*' and platform_python_implementation != 'PyPy' - cffi>=2.0.0 ; python_full_version >= '3.9' and platform_python_implementation != 'PyPy' - typing-extensions>=4.13.2 ; python_full_version < '3.11' - bcrypt>=3.1.5 ; extra == 'ssh' - nox[uv]>=2024.4.15 ; extra == 'nox' - - cryptography-vectors==46.0.2 ; extra == 'test' + - cryptography-vectors==46.0.3 ; extra == 'test' - pytest>=7.4.0 ; extra == 'test' - pytest-benchmark>=4.0 ; extra == 'test' - pytest-cov>=2.10.1 ; extra == 'test' @@ -3741,11 +3732,11 @@ packages: - pytest-benchmark ; extra == 'devel' - pytest-cache ; extra == 'devel' - validictory ; extra == 'devel' -- pypi: https://files.pythonhosted.org/packages/42/14/42b2651a2f46b022ccd948bca9f2d5af0fd8929c4eec235b8d6d844fbe67/filelock-3.19.1-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/76/91/7216b27286936c16f5b4d0c530087e4a54eead683e6b0b73dd0c64844af6/filelock-3.20.0-py3-none-any.whl name: filelock - version: 3.19.1 - sha256: d38e30481def20772f5baf097c122c3babc4fcdb7e14e57049eb9d88c6dc017d - requires_python: '>=3.9' + version: 3.20.0 + sha256: 339b4732ffda5cd79b13f4e2711a31b0365ce445d95d243bb996273d072546a2 + requires_python: '>=3.10' - pypi: https://files.pythonhosted.org/packages/2e/1a/1d0dc91dd9af745aebf58fe3690b38047cca8616df22397a91561cfdaba1/flopy-3.9.5-py3-none-any.whl name: flopy version: 3.9.5 @@ -3887,7 +3878,7 @@ packages: - tomli-w ; extra == 'test' - virtualenv ; extra == 'test' requires_python: '>=3.10' -- pypi: ./ +- pypi: . name: flopy4 version: 0.0.1.dev0 sha256: 230bcc793ff7f2a269939746d60b2a370bafc4dc5bff98dc45d0d4b6e29e87f3 @@ -4383,79 +4374,79 @@ packages: version: 0.16.0 sha256: 63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86 requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/5b/f5/ac71e692aad076d50a0f5f073204346d5f5577daffd21bb4b72c485f8959/h5netcdf-1.6.4-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/f3/92/a2fa0fcb7909a781470272b91860521fbefc36b696ab4fa42ead4953eef2/h5netcdf-1.7.0-py3-none-any.whl name: h5netcdf - version: 1.6.4 - sha256: e0018e6a918f2bef2a4aa7b470a952b8a0b5d16a5893d59bea56524cc6207fcf + version: 1.7.0 + sha256: cc211f63552ed455145e16dfc8d59295dae8d525dc1c5dade7a4c6ea2c9742a1 requires_dist: - h5py - packaging - netcdf4 ; extra == 'test' - pytest ; extra == 'test' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/21/d4/d461649cafd5137088fb7f8e78fdc6621bb0c4ff2c090a389f68e8edc136/h5py-3.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/23/95/499b4e56452ef8b6c95a271af0dde08dac4ddb70515a75f346d4f400579b/h5py-3.15.1-cp311-cp311-win_amd64.whl name: h5py - version: 3.14.0 - sha256: 723a40ee6505bd354bfd26385f2dae7bbfa87655f4e61bab175a49d72ebfc06b + version: 3.15.1 + sha256: 550e51131376889656feec4aff2170efc054a7fe79eb1da3bb92e1625d1ac878 requires_dist: - - numpy>=1.19.3 - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/3e/77/8f651053c1843391e38a189ccf50df7e261ef8cd8bfd8baba0cbe694f7c3/h5py-3.14.0-cp312-cp312-macosx_10_13_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/3a/30/d1c94066343a98bb2cea40120873193a4fed68c4ad7f8935c11caf74c681/h5py-3.15.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl name: h5py - version: 3.14.0 - sha256: e0045115d83272090b0717c555a31398c2c089b87d212ceba800d3dc5d952e23 + version: 3.15.1 + sha256: 25c8843fec43b2cc368aa15afa1cdf83fc5e17b1c4e10cd3771ef6c39b72e5ce requires_dist: - - numpy>=1.19.3 - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/3f/6d/0084ed0b78d4fd3e7530c32491f2884140d9b06365dac8a08de726421d4a/h5py-3.14.0-cp313-cp313-win_amd64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/41/fd/8349b48b15b47768042cff06ad6e1c229f0a4bd89225bf6b6894fea27e6d/h5py-3.15.1-cp311-cp311-macosx_10_9_x86_64.whl name: h5py - version: 3.14.0 - sha256: ae18e3de237a7a830adb76aaa68ad438d85fe6e19e0d99944a3ce46b772c69b3 + version: 3.15.1 + sha256: 5aaa330bcbf2830150c50897ea5dcbed30b5b6d56897289846ac5b9e529ec243 requires_dist: - - numpy>=1.19.3 - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/61/1b/ad24a8ce846cf0519695c10491e99969d9d203b9632c4fcd5004b1641c2e/h5py-3.14.0-cp311-cp311-macosx_10_9_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/62/b8/c0d9aa013ecfa8b7057946c080c0c07f6fa41e231d2e9bd306a2f8110bdc/h5py-3.15.1-cp312-cp312-macosx_10_13_x86_64.whl name: h5py - version: 3.14.0 - sha256: f30dbc58f2a0efeec6c8836c97f6c94afd769023f44e2bb0ed7b17a16ec46088 + version: 3.15.1 + sha256: 316dd0f119734f324ca7ed10b5627a2de4ea42cc4dfbcedbee026aaa361c238c requires_dist: - - numpy>=1.19.3 - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/6c/c2/7efe82d09ca10afd77cd7c286e42342d520c049a8c43650194928bcc635c/h5py-3.14.0-cp313-cp313-macosx_10_13_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/88/b3/40207e0192415cbff7ea1d37b9f24b33f6d38a5a2f5d18a678de78f967ae/h5py-3.15.1-cp313-cp313-macosx_10_13_x86_64.whl name: h5py - version: 3.14.0 - sha256: aa4b7bbce683379b7bf80aaba68e17e23396100336a8d500206520052be2f812 + version: 3.15.1 + sha256: c8440fd8bee9500c235ecb7aa1917a0389a2adb80c209fa1cc485bd70e0d94a5 requires_dist: - - numpy>=1.19.3 - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/7a/6d/6426d5d456f593c94b96fa942a9b3988ce4d65ebaf57d7273e452a7222e8/h5py-3.14.0-cp312-cp312-win_amd64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/8b/23/4ab1108e87851ccc69694b03b817d92e142966a6c4abd99e17db77f2c066/h5py-3.15.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl name: h5py - version: 3.14.0 - sha256: bf4897d67e613ecf5bdfbdab39a1158a64df105827da70ea1d90243d796d367f + version: 3.15.1 + sha256: 5b849ba619a066196169763c33f9f0f02e381156d61c03e000bb0100f9950faf requires_dist: - - numpy>=1.19.3 - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/86/f9/f00de11c82c88bfc1ef22633557bfba9e271e0cb3189ad704183fc4a2644/h5py-3.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/cf/51/329e7436bf87ca6b0fe06dd0a3795c34bebe4ed8d6c44450a20565d57832/h5py-3.15.1-cp312-cp312-win_amd64.whl name: h5py - version: 3.14.0 - sha256: 0cbd41f4e3761f150aa5b662df991868ca533872c95467216f2bec5fcad84882 + version: 3.15.1 + sha256: 59b25cf02411bf12e14f803fef0b80886444c7fe21a5ad17c6a28d3f08098a1e requires_dist: - - numpy>=1.19.3 - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/db/0c/6c3f879a0f8e891625817637fad902da6e764e36919ed091dc77529004ac/h5py-3.14.0-cp311-cp311-win_amd64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/d9/69/4402ea66272dacc10b298cca18ed73e1c0791ff2ae9ed218d3859f9698ac/h5py-3.15.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl name: h5py - version: 3.14.0 - sha256: d2744b520440a996f2dae97f901caa8a953afc055db4673a993f2d87d7f38713 + version: 3.15.1 + sha256: 121b2b7a4c1915d63737483b7bff14ef253020f617c2fb2811f67a4bed9ac5e8 requires_dist: - - numpy>=1.19.3 - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/e7/ec/86f59025306dcc6deee5fda54d980d077075b8d9889aac80f158bd585f1b/h5py-3.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl + - numpy>=1.21.2 + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/e5/ea/fbb258a98863f99befb10ed727152b4ae659f322e1d9c0576f8a62754e81/h5py-3.15.1-cp313-cp313-win_amd64.whl name: h5py - version: 3.14.0 - sha256: d90e6445ab7c146d7f7981b11895d70bc1dd91278a4f9f9028bc0c95e4a53f13 + version: 3.15.1 + sha256: dea78b092fd80a083563ed79a3171258d4a4d307492e7cf8b2313d464c82ba52 requires_dist: - - numpy>=1.19.3 - requires_python: '>=3.9' + - numpy>=1.21.2 + requires_python: '>=3.10' - pypi: https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl name: httpcore version: 1.0.9 @@ -4512,16 +4503,16 @@ packages: requires_dist: - ukkonen ; extra == 'license' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl name: idna - version: '3.10' - sha256: 946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3 + version: '3.11' + sha256: 771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea requires_dist: - ruff>=0.6.2 ; extra == 'all' - mypy>=1.11.2 ; extra == 'all' - pytest>=8.3.2 ; extra == 'all' - flake8>=7.1.1 ; extra == 'all' - requires_python: '>=3.6' + requires_python: '>=3.8' - pypi: https://files.pythonhosted.org/packages/20/b0/36bd937216ec521246249be3bf9855081de4c5e06a0c9b4219dbeda50373/importlib_metadata-8.7.0-py3-none-any.whl name: importlib-metadata version: 8.7.0 @@ -4554,10 +4545,10 @@ packages: version: 2.1.0 sha256: 9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760 requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/fc/c7/b445faca8deb954fe536abebff4ece5b097b923de482b26e78448c89d1dd/ipykernel-6.30.1-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/b8/f7/761037905ffdec673533bfa43af8d4c31c859c778dfc3bbb71899875ec18/ipykernel-7.0.1-py3-none-any.whl name: ipykernel - version: 6.30.1 - sha256: aa6b9fb93dca949069d8b85b6c79b2518e32ac583ae9c7d37c51d119e18b3fb4 + version: 7.0.1 + sha256: 87182a8305e28954b6721087dec45b171712610111d494c17bb607befa1c4000 requires_dist: - appnope>=0.1.2 ; sys_platform == 'darwin' - comm>=0.1.1 @@ -4579,8 +4570,8 @@ packages: - intersphinx-registry ; extra == 'docs' - myst-parser ; extra == 'docs' - pydata-sphinx-theme ; extra == 'docs' - - sphinx ; extra == 'docs' - sphinx-autodoc-typehints ; extra == 'docs' + - sphinx<8.2.0 ; extra == 'docs' - sphinxcontrib-github-alt ; extra == 'docs' - sphinxcontrib-spelling ; extra == 'docs' - trio ; extra == 'docs' @@ -4593,7 +4584,7 @@ packages: - pytest-cov ; extra == 'test' - pytest-timeout ; extra == 'test' - pytest>=7.0,<9 ; extra == 'test' - requires_python: '>=3.9' + requires_python: '>=3.10' - pypi: https://files.pythonhosted.org/packages/48/c5/d5e07995077e48220269c28a221e168c91123ad5ceee44d548f54a057fc0/ipython-9.6.0-py3-none-any.whl name: ipython version: 9.6.0 @@ -5388,40 +5379,40 @@ packages: purls: [] size: 44978 timestamp: 1743435053850 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_6.conda - sha256: 29c6ce15cf54f89282581d19329c99d1639036c5dde049bf1cae48dcc4137470 - md5: 99eee6aa5abea12f326f7fc010aef0c8 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-15.2.0-h767d61c_7.conda + sha256: 08f9b87578ab981c7713e4e6a7d935e40766e10691732bba376d4964562bcb45 + md5: c0374badb3a5d4b1372db28d19462c53 depends: - __glibc >=2.17,<3.0.a0 - _openmp_mutex >=4.5 constrains: - - libgomp 15.2.0 h767d61c_6 - - libgcc-ng ==15.2.0=*_6 + - libgomp 15.2.0 h767d61c_7 + - libgcc-ng ==15.2.0=*_7 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL purls: [] - size: 823770 - timestamp: 1759796589812 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_6.conda - sha256: 12c91470ceb8d7d38fcee1a4ff1f50524625349059988f6bd0e8e6b27599a1ad - md5: d9717466cca9b9584226ce57a7cd58e6 + size: 822552 + timestamp: 1759968052178 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-15.2.0-h69a702a_7.conda + sha256: 2045066dd8e6e58aaf5ae2b722fb6dfdbb57c862b5f34ac7bfb58c40ef39b6ad + md5: 280ea6eee9e2ddefde25ff799c4f0363 depends: - - libgcc 15.2.0 h767d61c_6 + - libgcc 15.2.0 h767d61c_7 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL purls: [] - size: 29249 - timestamp: 1759796603487 -- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_6.conda - sha256: 60263a73f3826f4e24a45d18826cb324711c980c13c0155e9d10eaca8a399851 - md5: a8637a77aec40557feb12dbc8dc37c6f + size: 29313 + timestamp: 1759968065504 +- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-15.2.0-h767d61c_7.conda + sha256: e9fb1c258c8e66ee278397b5822692527c5f5786d372fe7a869b900853f3f5ca + md5: f7b4d76975aac7e5d9e6ad13845f92fe depends: - __glibc >=2.17,<3.0.a0 license: GPL-3.0-only WITH GCC-exception-3.1 license_family: GPL purls: [] - size: 448095 - timestamp: 1759796487876 + size: 447919 + timestamp: 1759967942498 - conda: https://conda.anaconda.org/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda sha256: f2591c0069447bbe28d4d696b7fcb0c5bd0b4ac582769b89addbcf26fb3430d8 md5: 1a580f7796c7bf6393fddb8bbbde58dc @@ -5919,10 +5910,10 @@ packages: version: 3.0.3 sha256: 26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/45/c3/994ef20eb4154ab84cc08d033834555319e4af970165e6c8894050af0b3c/matplotlib-3.10.6-cp312-cp312-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/02/9c/207547916a02c78f6bdd83448d9b21afbc42f6379ed887ecf610984f3b4e/matplotlib-3.10.7-cp313-cp313-macosx_10_13_x86_64.whl name: matplotlib - version: 3.10.6 - sha256: 590f5925c2d650b5c9d813c5b3b5fc53f2929c3f8ef463e4ecfa7e052044fb2b + version: 3.10.7 + sha256: 1d9d3713a237970569156cfb4de7533b7c4eacdd61789726f444f96a0d28f57f requires_dist: - contourpy>=1.0.1 - cycler>=0.10 @@ -5931,17 +5922,17 @@ packages: - numpy>=1.23 - packaging>=20.0 - pillow>=8 - - pyparsing>=2.3.1 + - pyparsing>=3 - python-dateutil>=2.7 - meson-python>=0.13.1,<0.17.0 ; extra == 'dev' - pybind11>=2.13.2,!=2.13.3 ; extra == 'dev' - setuptools-scm>=7 ; extra == 'dev' - setuptools>=64 ; extra == 'dev' requires_python: '>=3.10' -- pypi: https://files.pythonhosted.org/packages/67/c3/135fdbbbf84e0979712df58e5e22b4f257b3f5e52a3c4aacf1b8abec0d09/matplotlib-3.10.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/10/b7/4aa196155b4d846bd749cf82aa5a4c300cf55a8b5e0dfa5b722a63c0f8a0/matplotlib-3.10.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl name: matplotlib - version: 3.10.6 - sha256: 56cd2d20842f58c03d2d6e6c1f1cf5548ad6f66b91e1e48f814e4fb5abd1cb95 + version: 3.10.7 + sha256: 2222c7ba2cbde7fe63032769f6eb7e83ab3227f47d997a8453377709b7fe3a5a requires_dist: - contourpy>=1.0.1 - cycler>=0.10 @@ -5950,17 +5941,17 @@ packages: - numpy>=1.23 - packaging>=20.0 - pillow>=8 - - pyparsing>=2.3.1 + - pyparsing>=3 - python-dateutil>=2.7 - meson-python>=0.13.1,<0.17.0 ; extra == 'dev' - pybind11>=2.13.2,!=2.13.3 ; extra == 'dev' - setuptools-scm>=7 ; extra == 'dev' - setuptools>=64 ; extra == 'dev' requires_python: '>=3.10' -- pypi: https://files.pythonhosted.org/packages/80/d6/5d3665aa44c49005aaacaa68ddea6fcb27345961cd538a98bb0177934ede/matplotlib-3.10.6-cp311-cp311-macosx_10_12_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/22/ff/6425bf5c20d79aa5b959d1ce9e65f599632345391381c9a104133fe0b171/matplotlib-3.10.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl name: matplotlib - version: 3.10.6 - sha256: 905b60d1cb0ee604ce65b297b61cf8be9f4e6cfecf95a3fe1c388b5266bc8f4f + version: 3.10.7 + sha256: b3c4ea4948d93c9c29dc01c0c23eef66f2101bf75158c291b88de6525c55c3d1 requires_dist: - contourpy>=1.0.1 - cycler>=0.10 @@ -5969,17 +5960,17 @@ packages: - numpy>=1.23 - packaging>=20.0 - pillow>=8 - - pyparsing>=2.3.1 + - pyparsing>=3 - python-dateutil>=2.7 - meson-python>=0.13.1,<0.17.0 ; extra == 'dev' - pybind11>=2.13.2,!=2.13.3 ; extra == 'dev' - setuptools-scm>=7 ; extra == 'dev' - setuptools>=64 ; extra == 'dev' requires_python: '>=3.10' -- pypi: https://files.pythonhosted.org/packages/a0/db/18380e788bb837e724358287b08e223b32bc8dccb3b0c12fa8ca20bc7f3b/matplotlib-3.10.6-cp313-cp313-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/31/3c/80816f027b3a4a28cd2a0a6ef7f89a2db22310e945cd886ec25bfb399221/matplotlib-3.10.7-cp312-cp312-win_amd64.whl name: matplotlib - version: 3.10.6 - sha256: 819e409653c1106c8deaf62e6de6b8611449c2cd9939acb0d7d4e57a3d95cc7a + version: 3.10.7 + sha256: 0d8c32b7ea6fb80b1aeff5a2ceb3fb9778e2759e899d9beff75584714afcc5ee requires_dist: - contourpy>=1.0.1 - cycler>=0.10 @@ -5988,17 +5979,17 @@ packages: - numpy>=1.23 - packaging>=20.0 - pillow>=8 - - pyparsing>=2.3.1 + - pyparsing>=3 - python-dateutil>=2.7 - meson-python>=0.13.1,<0.17.0 ; extra == 'dev' - pybind11>=2.13.2,!=2.13.3 ; extra == 'dev' - setuptools-scm>=7 ; extra == 'dev' - setuptools>=64 ; extra == 'dev' requires_python: '>=3.10' -- pypi: https://files.pythonhosted.org/packages/d3/29/4a8650a3dcae97fa4f375d46efcb25920d67b512186f8a6788b896062a81/matplotlib-3.10.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/33/cd/b145f9797126f3f809d177ca378de57c45413c5099c5990de2658760594a/matplotlib-3.10.7-cp311-cp311-win_amd64.whl name: matplotlib - version: 3.10.6 - sha256: 942a8de2b5bfff1de31d95722f702e2966b8a7e31f4e68f7cd963c7cd8861cf6 + version: 3.10.7 + sha256: 6516ce375109c60ceec579e699524e9d504cd7578506f01150f7a6bc174a775e requires_dist: - contourpy>=1.0.1 - cycler>=0.10 @@ -6007,17 +5998,17 @@ packages: - numpy>=1.23 - packaging>=20.0 - pillow>=8 - - pyparsing>=2.3.1 + - pyparsing>=3 - python-dateutil>=2.7 - meson-python>=0.13.1,<0.17.0 ; extra == 'dev' - pybind11>=2.13.2,!=2.13.3 ; extra == 'dev' - setuptools-scm>=7 ; extra == 'dev' - setuptools>=64 ; extra == 'dev' requires_python: '>=3.10' -- pypi: https://files.pythonhosted.org/packages/e5/b8/9eea6630198cb303d131d95d285a024b3b8645b1763a2916fddb44ca8760/matplotlib-3.10.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/7d/18/95ae2e242d4a5c98bd6e90e36e128d71cf1c7e39b0874feaed3ef782e789/matplotlib-3.10.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl name: matplotlib - version: 3.10.6 - sha256: 84e82d9e0fd70c70bc55739defbd8055c54300750cbacf4740c9673a24d6933a + version: 3.10.7 + sha256: d5f256d49fea31f40f166a5e3131235a5d2f4b7f44520b1cf0baf1ce568ccff0 requires_dist: - contourpy>=1.0.1 - cycler>=0.10 @@ -6026,17 +6017,17 @@ packages: - numpy>=1.23 - packaging>=20.0 - pillow>=8 - - pyparsing>=2.3.1 + - pyparsing>=3 - python-dateutil>=2.7 - meson-python>=0.13.1,<0.17.0 ; extra == 'dev' - pybind11>=2.13.2,!=2.13.3 ; extra == 'dev' - setuptools-scm>=7 ; extra == 'dev' - setuptools>=64 ; extra == 'dev' requires_python: '>=3.10' -- pypi: https://files.pythonhosted.org/packages/ea/1a/7042f7430055d567cc3257ac409fcf608599ab27459457f13772c2d9778b/matplotlib-3.10.6-cp312-cp312-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/be/b3/09eb0f7796932826ec20c25b517d568627754f6c6462fca19e12c02f2e12/matplotlib-3.10.7-cp312-cp312-macosx_10_13_x86_64.whl name: matplotlib - version: 3.10.6 - sha256: 31ca662df6a80bd426f871105fdd69db7543e28e73a9f2afe80de7e531eb2347 + version: 3.10.7 + sha256: 7a0edb7209e21840e8361e91ea84ea676658aa93edd5f8762793dec77a4a6748 requires_dist: - contourpy>=1.0.1 - cycler>=0.10 @@ -6045,17 +6036,17 @@ packages: - numpy>=1.23 - packaging>=20.0 - pillow>=8 - - pyparsing>=2.3.1 + - pyparsing>=3 - python-dateutil>=2.7 - meson-python>=0.13.1,<0.17.0 ; extra == 'dev' - pybind11>=2.13.2,!=2.13.3 ; extra == 'dev' - setuptools-scm>=7 ; extra == 'dev' - setuptools>=64 ; extra == 'dev' requires_python: '>=3.10' -- pypi: https://files.pythonhosted.org/packages/fc/8e/0a18d6d7d2d0a2e66585032a760d13662e5250c784d53ad50434e9560991/matplotlib-3.10.6-cp311-cp311-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/e1/b6/23064a96308b9aeceeffa65e96bcde459a2ea4934d311dee20afde7407a0/matplotlib-3.10.7-cp313-cp313-win_amd64.whl name: matplotlib - version: 3.10.6 - sha256: abb5d9478625dd9c9eb51a06d39aae71eda749ae9b3138afb23eb38824026c7e + version: 3.10.7 + sha256: 744991e0cc863dd669c8dc9136ca4e6e0082be2070b9d793cbd64bec872a6815 requires_dist: - contourpy>=1.0.1 - cycler>=0.10 @@ -6064,17 +6055,17 @@ packages: - numpy>=1.23 - packaging>=20.0 - pillow>=8 - - pyparsing>=2.3.1 + - pyparsing>=3 - python-dateutil>=2.7 - meson-python>=0.13.1,<0.17.0 ; extra == 'dev' - pybind11>=2.13.2,!=2.13.3 ; extra == 'dev' - setuptools-scm>=7 ; extra == 'dev' - setuptools>=64 ; extra == 'dev' requires_python: '>=3.10' -- pypi: https://files.pythonhosted.org/packages/ff/1d/70c28528794f6410ee2856cd729fa1f1756498b8d3126443b0a94e1a8695/matplotlib-3.10.6-cp313-cp313-win_amd64.whl +- pypi: https://files.pythonhosted.org/packages/fc/bc/0fb489005669127ec13f51be0c6adc074d7cf191075dab1da9fe3b7a3cfc/matplotlib-3.10.7-cp311-cp311-macosx_10_12_x86_64.whl name: matplotlib - version: 3.10.6 - sha256: 1b53bd6337eba483e2e7d29c5ab10eee644bc3a2491ec67cc55f7b44583ffb18 + version: 3.10.7 + sha256: 53b492410a6cd66c7a471de6c924f6ede976e963c0f3097a3b7abfadddc67d0a requires_dist: - contourpy>=1.0.1 - cycler>=0.10 @@ -6083,7 +6074,7 @@ packages: - numpy>=1.23 - packaging>=20.0 - pillow>=8 - - pyparsing>=2.3.1 + - pyparsing>=3 - python-dateutil>=2.7 - meson-python>=0.13.1,<0.17.0 ; extra == 'dev' - pybind11>=2.13.2,!=2.13.3 ; extra == 'dev' @@ -6123,7 +6114,7 @@ packages: requires_dist: - typing-extensions ; python_full_version < '3.11' requires_python: '>=3.8' -- pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#cc9dff57283b92b3f2bc06034bce378e981e9282 +- pypi: git+https://github.com/MODFLOW-USGS/modflow-devtools.git#2aa99d53133debb21fd681f56684f3183f6ed949 name: modflow-devtools version: 1.8.0.dev0 requires_dist: @@ -6283,14 +6274,14 @@ packages: version: 1.1.0 sha256: 1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505 requires_python: '>=3.8' -- pypi: https://files.pythonhosted.org/packages/74/0d/bc630dfd34ad2150d40f9392e94d3803980e71a47e10a709ce9bfcd40ffe/narwhals-2.7.0-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/1d/86/ac808ecb94322a3f1ea31627d13ab3e50dd4333564d711e0e481ad0f4586/narwhals-2.8.0-py3-none-any.whl name: narwhals - version: 2.7.0 - sha256: 010791aa0cee86d90bf2b658264aaec3eeea34fb4ddf2e83746ea4940bcffae3 + version: 2.8.0 + sha256: 6304856676ba4a79fd34148bda63aed8060dd6edb1227edf3659ce5e091de73c requires_dist: - cudf>=24.10.0 ; extra == 'cudf' - dask[dataframe]>=2024.8 ; extra == 'dask' - - duckdb>=1.0 ; extra == 'duckdb' + - duckdb>=1.1 ; extra == 'duckdb' - ibis-framework>=6.0.0 ; extra == 'ibis' - packaging ; extra == 'ibis' - pyarrow-hotfix ; extra == 'ibis' @@ -7783,10 +7774,10 @@ packages: sha256: 7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523 requires_dist: - ptyprocess>=0.5 -- pypi: https://files.pythonhosted.org/packages/01/f4/91d5b3ffa718df2f53b0dc109877993e511f4fd055d7e9508682e8aba092/pillow-11.3.0-cp313-cp313-macosx_10_13_x86_64.whl +- pypi: https://files.pythonhosted.org/packages/0e/5a/a2f6773b64edb921a756eb0729068acad9fc5208a53f4a349396e9436721/pillow-12.0.0-cp311-cp311-macosx_10_10_x86_64.whl name: pillow - version: 11.3.0 - sha256: ec1ee50470b0d050984394423d96325b744d55c701a439d2bd66089bff963d3c + version: 12.0.0 + sha256: 0fd00cac9c03256c8b2ff58f162ebcd2587ad3e1f2e397eab718c47e24d231cc requires_dist: - furo ; extra == 'docs' - olefile ; extra == 'docs' @@ -7797,6 +7788,9 @@ packages: - sphinxext-opengraph ; extra == 'docs' - olefile ; extra == 'fpx' - olefile ; extra == 'mic' + - arro3-compute ; extra == 'test-arrow' + - arro3-core ; extra == 'test-arrow' + - nanoarrow ; extra == 'test-arrow' - pyarrow ; extra == 'test-arrow' - check-manifest ; extra == 'tests' - coverage>=7.4.2 ; extra == 'tests' @@ -7804,19 +7798,18 @@ packages: - markdown2 ; extra == 'tests' - olefile ; extra == 'tests' - packaging ; extra == 'tests' - - pyroma ; extra == 'tests' + - pyroma>=5 ; extra == 'tests' - pytest ; extra == 'tests' - pytest-cov ; extra == 'tests' - pytest-timeout ; extra == 'tests' - pytest-xdist ; extra == 'tests' - trove-classifiers>=2024.10.12 ; extra == 'tests' - - typing-extensions ; python_full_version < '3.10' and extra == 'typing' - defusedxml ; extra == 'xmp' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/23/85/397c73524e0cd212067e0c969aa245b01d50183439550d24d9f55781b776/pillow-11.3.0-cp313-cp313-win_amd64.whl + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/2c/90/4fcce2c22caf044e660a198d740e7fbc14395619e3cb1abad12192c0826c/pillow-12.0.0-cp312-cp312-macosx_10_13_x86_64.whl name: pillow - version: 11.3.0 - sha256: 0bce5c4fd0921f99d2e858dc4d4d64193407e1b99478bc5cacecba2311abde51 + version: 12.0.0 + sha256: 53561a4ddc36facb432fae7a9d8afbfaf94795414f5cdc5fc52f28c1dca90371 requires_dist: - furo ; extra == 'docs' - olefile ; extra == 'docs' @@ -7827,6 +7820,9 @@ packages: - sphinxext-opengraph ; extra == 'docs' - olefile ; extra == 'fpx' - olefile ; extra == 'mic' + - arro3-compute ; extra == 'test-arrow' + - arro3-core ; extra == 'test-arrow' + - nanoarrow ; extra == 'test-arrow' - pyarrow ; extra == 'test-arrow' - check-manifest ; extra == 'tests' - coverage>=7.4.2 ; extra == 'tests' @@ -7834,19 +7830,18 @@ packages: - markdown2 ; extra == 'tests' - olefile ; extra == 'tests' - packaging ; extra == 'tests' - - pyroma ; extra == 'tests' + - pyroma>=5 ; extra == 'tests' - pytest ; extra == 'tests' - pytest-cov ; extra == 'tests' - pytest-timeout ; extra == 'tests' - pytest-xdist ; extra == 'tests' - trove-classifiers>=2024.10.12 ; extra == 'tests' - - typing-extensions ; python_full_version < '3.10' and extra == 'typing' - defusedxml ; extra == 'xmp' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/40/fe/1bc9b3ee13f68487a99ac9529968035cca2f0a51ec36892060edcc51d06a/pillow-11.3.0-cp312-cp312-macosx_10_13_x86_64.whl + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/38/57/755dbd06530a27a5ed74f8cb0a7a44a21722ebf318edbe67ddbd7fb28f88/pillow-12.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl name: pillow - version: 11.3.0 - sha256: fdae223722da47b024b867c1ea0be64e0df702c5e0a60e27daad39bf960dd1e4 + version: 12.0.0 + sha256: f4f1231b7dec408e8670264ce63e9c71409d9583dd21d32c163e25213ee2a344 requires_dist: - furo ; extra == 'docs' - olefile ; extra == 'docs' @@ -7857,6 +7852,9 @@ packages: - sphinxext-opengraph ; extra == 'docs' - olefile ; extra == 'fpx' - olefile ; extra == 'mic' + - arro3-compute ; extra == 'test-arrow' + - arro3-core ; extra == 'test-arrow' + - nanoarrow ; extra == 'test-arrow' - pyarrow ; extra == 'test-arrow' - check-manifest ; extra == 'tests' - coverage>=7.4.2 ; extra == 'tests' @@ -7864,19 +7862,18 @@ packages: - markdown2 ; extra == 'tests' - olefile ; extra == 'tests' - packaging ; extra == 'tests' - - pyroma ; extra == 'tests' + - pyroma>=5 ; extra == 'tests' - pytest ; extra == 'tests' - pytest-cov ; extra == 'tests' - pytest-timeout ; extra == 'tests' - pytest-xdist ; extra == 'tests' - trove-classifiers>=2024.10.12 ; extra == 'tests' - - typing-extensions ; python_full_version < '3.10' and extra == 'typing' - defusedxml ; extra == 'xmp' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/8c/ce/e7dfc873bdd9828f3b6e5c2bbb74e47a98ec23cc5c74fc4e54462f0d9204/pillow-11.3.0-cp312-cp312-win_amd64.whl + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/41/1e/db9470f2d030b4995083044cd8738cdd1bf773106819f6d8ba12597d5352/pillow-12.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl name: pillow - version: 11.3.0 - sha256: a6444696fce635783440b7f7a9fc24b3ad10a9ea3f0ab66c5905be1c19ccf17d + version: 12.0.0 + sha256: bee2a6db3a7242ea309aa7ee8e2780726fed67ff4e5b40169f2c940e7eb09227 requires_dist: - furo ; extra == 'docs' - olefile ; extra == 'docs' @@ -7887,6 +7884,9 @@ packages: - sphinxext-opengraph ; extra == 'docs' - olefile ; extra == 'fpx' - olefile ; extra == 'mic' + - arro3-compute ; extra == 'test-arrow' + - arro3-core ; extra == 'test-arrow' + - nanoarrow ; extra == 'test-arrow' - pyarrow ; extra == 'test-arrow' - check-manifest ; extra == 'tests' - coverage>=7.4.2 ; extra == 'tests' @@ -7894,19 +7894,18 @@ packages: - markdown2 ; extra == 'tests' - olefile ; extra == 'tests' - packaging ; extra == 'tests' - - pyroma ; extra == 'tests' + - pyroma>=5 ; extra == 'tests' - pytest ; extra == 'tests' - pytest-cov ; extra == 'tests' - pytest-timeout ; extra == 'tests' - pytest-xdist ; extra == 'tests' - trove-classifiers>=2024.10.12 ; extra == 'tests' - - typing-extensions ; python_full_version < '3.10' and extra == 'typing' - defusedxml ; extra == 'xmp' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/d5/1c/a2a29649c0b1983d3ef57ee87a66487fdeb45132df66ab30dd37f7dbe162/pillow-11.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/4d/42/aaca386de5cc8bd8a0254516957c1f265e3521c91515b16e286c662854c4/pillow-12.0.0-cp311-cp311-win_amd64.whl name: pillow - version: 11.3.0 - sha256: 13f87d581e71d9189ab21fe0efb5a23e9f28552d5be6979e84001d3b8505abe8 + version: 12.0.0 + sha256: b583dc9070312190192631373c6c8ed277254aa6e6084b74bdd0a6d3b221608e requires_dist: - furo ; extra == 'docs' - olefile ; extra == 'docs' @@ -7917,6 +7916,9 @@ packages: - sphinxext-opengraph ; extra == 'docs' - olefile ; extra == 'fpx' - olefile ; extra == 'mic' + - arro3-compute ; extra == 'test-arrow' + - arro3-core ; extra == 'test-arrow' + - nanoarrow ; extra == 'test-arrow' - pyarrow ; extra == 'test-arrow' - check-manifest ; extra == 'tests' - coverage>=7.4.2 ; extra == 'tests' @@ -7924,19 +7926,18 @@ packages: - markdown2 ; extra == 'tests' - olefile ; extra == 'tests' - packaging ; extra == 'tests' - - pyroma ; extra == 'tests' + - pyroma>=5 ; extra == 'tests' - pytest ; extra == 'tests' - pytest-cov ; extra == 'tests' - pytest-timeout ; extra == 'tests' - pytest-xdist ; extra == 'tests' - trove-classifiers>=2024.10.12 ; extra == 'tests' - - typing-extensions ; python_full_version < '3.10' and extra == 'typing' - defusedxml ; extra == 'xmp' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/db/26/77f8ed17ca4ffd60e1dcd220a6ec6d71210ba398cfa33a13a1cd614c5613/pillow-11.3.0-cp311-cp311-macosx_10_10_x86_64.whl + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/4f/87/424511bdcd02c8d7acf9f65caa09f291a519b16bd83c3fb3374b3d4ae951/pillow-12.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl name: pillow - version: 11.3.0 - sha256: 1cd110edf822773368b396281a2293aeb91c90a2db00d78ea43e7e861631b722 + version: 12.0.0 + sha256: b87843e225e74576437fd5b6a4c2205d422754f84a06942cfaf1dc32243e45a8 requires_dist: - furo ; extra == 'docs' - olefile ; extra == 'docs' @@ -7947,6 +7948,9 @@ packages: - sphinxext-opengraph ; extra == 'docs' - olefile ; extra == 'fpx' - olefile ; extra == 'mic' + - arro3-compute ; extra == 'test-arrow' + - arro3-core ; extra == 'test-arrow' + - nanoarrow ; extra == 'test-arrow' - pyarrow ; extra == 'test-arrow' - check-manifest ; extra == 'tests' - coverage>=7.4.2 ; extra == 'tests' @@ -7954,19 +7958,18 @@ packages: - markdown2 ; extra == 'tests' - olefile ; extra == 'tests' - packaging ; extra == 'tests' - - pyroma ; extra == 'tests' + - pyroma>=5 ; extra == 'tests' - pytest ; extra == 'tests' - pytest-cov ; extra == 'tests' - pytest-timeout ; extra == 'tests' - pytest-xdist ; extra == 'tests' - trove-classifiers>=2024.10.12 ; extra == 'tests' - - typing-extensions ; python_full_version < '3.10' and extra == 'typing' - defusedxml ; extra == 'xmp' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/e4/c9/06dd4a38974e24f932ff5f98ea3c546ce3f8c995d3f0985f8e5ba48bba19/pillow-11.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/6d/2a/dd43dcfd6dae9b6a49ee28a8eedb98c7d5ff2de94a5d834565164667b97b/pillow-12.0.0-cp313-cp313-win_amd64.whl name: pillow - version: 11.3.0 - sha256: 676b2815362456b5b3216b4fd5bd89d362100dc6f4945154ff172e206a22c024 + version: 12.0.0 + sha256: 4cf7fed4b4580601c4345ceb5d4cbf5a980d030fd5ad07c4d2ec589f95f09905 requires_dist: - furo ; extra == 'docs' - olefile ; extra == 'docs' @@ -7977,6 +7980,9 @@ packages: - sphinxext-opengraph ; extra == 'docs' - olefile ; extra == 'fpx' - olefile ; extra == 'mic' + - arro3-compute ; extra == 'test-arrow' + - arro3-core ; extra == 'test-arrow' + - nanoarrow ; extra == 'test-arrow' - pyarrow ; extra == 'test-arrow' - check-manifest ; extra == 'tests' - coverage>=7.4.2 ; extra == 'tests' @@ -7984,19 +7990,18 @@ packages: - markdown2 ; extra == 'tests' - olefile ; extra == 'tests' - packaging ; extra == 'tests' - - pyroma ; extra == 'tests' + - pyroma>=5 ; extra == 'tests' - pytest ; extra == 'tests' - pytest-cov ; extra == 'tests' - pytest-timeout ; extra == 'tests' - pytest-xdist ; extra == 'tests' - trove-classifiers>=2024.10.12 ; extra == 'tests' - - typing-extensions ; python_full_version < '3.10' and extra == 'typing' - defusedxml ; extra == 'xmp' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/f1/cc/29c0f5d64ab8eae20f3232da8f8571660aa0ab4b8f1331da5c2f5f9a938e/pillow-11.3.0-cp311-cp311-win_amd64.whl + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/a2/0b/d87733741526541c909bbf159e338dcace4f982daac6e5a8d6be225ca32d/pillow-12.0.0-cp312-cp312-win_amd64.whl name: pillow - version: 11.3.0 - sha256: 1a992e86b0dd7aeb1f053cd506508c0999d710a8f07b4c791c63843fc6a807ac + version: 12.0.0 + sha256: 9fe611163f6303d1619bbcb653540a4d60f9e55e622d60a3108be0d5b441017a requires_dist: - furo ; extra == 'docs' - olefile ; extra == 'docs' @@ -8007,6 +8012,9 @@ packages: - sphinxext-opengraph ; extra == 'docs' - olefile ; extra == 'fpx' - olefile ; extra == 'mic' + - arro3-compute ; extra == 'test-arrow' + - arro3-core ; extra == 'test-arrow' + - nanoarrow ; extra == 'test-arrow' - pyarrow ; extra == 'test-arrow' - check-manifest ; extra == 'tests' - coverage>=7.4.2 ; extra == 'tests' @@ -8014,19 +8022,18 @@ packages: - markdown2 ; extra == 'tests' - olefile ; extra == 'tests' - packaging ; extra == 'tests' - - pyroma ; extra == 'tests' + - pyroma>=5 ; extra == 'tests' - pytest ; extra == 'tests' - pytest-cov ; extra == 'tests' - pytest-timeout ; extra == 'tests' - pytest-xdist ; extra == 'tests' - trove-classifiers>=2024.10.12 ; extra == 'tests' - - typing-extensions ; python_full_version < '3.10' and extra == 'typing' - defusedxml ; extra == 'xmp' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/f2/2f/d7675ecae6c43e9f12aa8d58b6012683b20b6edfbdac7abcb4e6af7a3784/pillow-11.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/a4/a4/a0a31467e3f83b94d37568294b01d22b43ae3c5d85f2811769b9c66389dd/pillow-12.0.0-cp313-cp313-macosx_10_13_x86_64.whl name: pillow - version: 11.3.0 - sha256: 106064daa23a745510dabce1d84f29137a37224831d88eb4ce94bb187b1d7e5f + version: 12.0.0 + sha256: c50f36a62a22d350c96e49ad02d0da41dbd17ddc2e29750dbdba4323f85eb4a5 requires_dist: - furo ; extra == 'docs' - olefile ; extra == 'docs' @@ -8037,6 +8044,9 @@ packages: - sphinxext-opengraph ; extra == 'docs' - olefile ; extra == 'fpx' - olefile ; extra == 'mic' + - arro3-compute ; extra == 'test-arrow' + - arro3-core ; extra == 'test-arrow' + - nanoarrow ; extra == 'test-arrow' - pyarrow ; extra == 'test-arrow' - check-manifest ; extra == 'tests' - coverage>=7.4.2 ; extra == 'tests' @@ -8044,31 +8054,30 @@ packages: - markdown2 ; extra == 'tests' - olefile ; extra == 'tests' - packaging ; extra == 'tests' - - pyroma ; extra == 'tests' + - pyroma>=5 ; extra == 'tests' - pytest ; extra == 'tests' - pytest-cov ; extra == 'tests' - pytest-timeout ; extra == 'tests' - pytest-xdist ; extra == 'tests' - trove-classifiers>=2024.10.12 ; extra == 'tests' - - typing-extensions ; python_full_version < '3.10' and extra == 'typing' - defusedxml ; extra == 'xmp' - requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/40/4b/2028861e724d3bd36227adfa20d3fd24c3fc6d52032f4a93c133be5d17ce/platformdirs-4.4.0-py3-none-any.whl + requires_python: '>=3.10' +- pypi: https://files.pythonhosted.org/packages/73/cb/ac7874b3e5d58441674fb70742e6c374b28b0c7cb988d37d991cde47166c/platformdirs-4.5.0-py3-none-any.whl name: platformdirs - version: 4.4.0 - sha256: abd01743f24e5287cd7a5db3752faf1a2d65353f38ec26d98e25a6db65958c85 + version: 4.5.0 + sha256: e578a81bb873cbb89a41fcc904c7ef523cc18284b7e3b3ccf06aca1403b7ebd3 requires_dist: - - furo>=2024.8.6 ; extra == 'docs' + - furo>=2025.9.25 ; extra == 'docs' - proselint>=0.14 ; extra == 'docs' - - sphinx-autodoc-typehints>=3 ; extra == 'docs' - - sphinx>=8.1.3 ; extra == 'docs' + - sphinx-autodoc-typehints>=3.2 ; extra == 'docs' + - sphinx>=8.2.3 ; extra == 'docs' - appdirs==1.4.4 ; extra == 'test' - covdefaults>=2.3 ; extra == 'test' - - pytest-cov>=6 ; extra == 'test' - - pytest-mock>=3.14 ; extra == 'test' - - pytest>=8.3.4 ; extra == 'test' - - mypy>=1.14.1 ; extra == 'type' - requires_python: '>=3.9' + - pytest-cov>=7 ; extra == 'test' + - pytest-mock>=3.15.1 ; extra == 'test' + - pytest>=8.4.2 ; extra == 'test' + - mypy>=1.18.2 ; extra == 'type' + requires_python: '>=3.10' - pypi: https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl name: pluggy version: 1.6.0 @@ -8535,24 +8544,25 @@ packages: - psutil>=3.0 ; extra == 'psutil' - setproctitle ; extra == 'setproctitle' requires_python: '>=3.9' -- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.13-h9e4cc4f_0_cpython.conda - sha256: 9979a7d4621049388892489267139f1aa629b10c26601ba5dce96afc2b1551d4 - md5: 8c399445b6dc73eab839659e6c7b5ad1 +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.14-hfe2f287_1_cpython.conda + build_number: 1 + sha256: 6515ef4018fda2826570f6f5c068e26dbd3e41a8b642f052c346812b3af28789 + md5: e87c753e04bffcda4cbfde7d052c1f7a depends: - __glibc >=2.17,<3.0.a0 - bzip2 >=1.0.8,<2.0a0 - ld_impl_linux-64 >=2.36.1 - - libexpat >=2.7.0,<3.0a0 + - libexpat >=2.7.1,<3.0a0 - libffi >=3.4.6,<3.5.0a0 - - libgcc >=13 + - libgcc >=14 - liblzma >=5.8.1,<6.0a0 - libnsl >=2.0.1,<2.1.0a0 - - libsqlite >=3.50.0,<4.0a0 - - libuuid >=2.38.1,<3.0a0 + - libsqlite >=3.50.4,<4.0a0 + - libuuid >=2.41.2,<3.0a0 - libxcrypt >=4.4.36 - libzlib >=1.3.1,<2.0a0 - ncurses >=6.5,<7.0a0 - - openssl >=3.5.0,<4.0a0 + - openssl >=3.5.4,<4.0a0 - readline >=8.2,<9.0a0 - tk >=8.6.13,<8.7.0a0 - tzdata @@ -8560,26 +8570,26 @@ packages: - python_abi 3.11.* *_cp311 license: Python-2.0 purls: [] - size: 30629559 - timestamp: 1749050021812 -- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.11-h9e4cc4f_0_cpython.conda - sha256: 6cca004806ceceea9585d4d655059e951152fc774a471593d4f5138e6a54c81d - md5: 94206474a5608243a10c92cefbe0908f + size: 30812188 + timestamp: 1760365816536 +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.12-hfe2f287_0_cpython.conda + sha256: 5386d8c8230b6478ae165ff34f57d498891ac160e871629cbb4d4256e69cc542 + md5: ceada987beec823b3c702710ee073fba depends: - __glibc >=2.17,<3.0.a0 - bzip2 >=1.0.8,<2.0a0 - ld_impl_linux-64 >=2.36.1 - - libexpat >=2.7.0,<3.0a0 + - libexpat >=2.7.1,<3.0a0 - libffi >=3.4.6,<3.5.0a0 - - libgcc >=13 + - libgcc >=14 - liblzma >=5.8.1,<6.0a0 - libnsl >=2.0.1,<2.1.0a0 - - libsqlite >=3.50.0,<4.0a0 - - libuuid >=2.38.1,<3.0a0 + - libsqlite >=3.50.4,<4.0a0 + - libuuid >=2.41.2,<3.0a0 - libxcrypt >=4.4.36 - libzlib >=1.3.1,<2.0a0 - ncurses >=6.5,<7.0a0 - - openssl >=3.5.0,<4.0a0 + - openssl >=3.5.4,<4.0a0 - readline >=8.2,<9.0a0 - tk >=8.6.13,<8.7.0a0 - tzdata @@ -8587,39 +8597,12 @@ packages: - python_abi 3.12.* *_cp312 license: Python-2.0 purls: [] - size: 31445023 - timestamp: 1749050216615 -- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.7-h2b335a9_100_cp313.conda + size: 31547362 + timestamp: 1760367376467 +- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.9-h2b335a9_100_cp313.conda build_number: 100 - sha256: 16cc30a5854f31ca6c3688337d34e37a79cdc518a06375fe3482ea8e2d6b34c8 - md5: 724dcf9960e933838247971da07fe5cf - depends: - - __glibc >=2.17,<3.0.a0 - - bzip2 >=1.0.8,<2.0a0 - - ld_impl_linux-64 >=2.36.1 - - libexpat >=2.7.1,<3.0a0 - - libffi >=3.4.6,<3.5.0a0 - - libgcc >=14 - - liblzma >=5.8.1,<6.0a0 - - libmpdec >=4.0.0,<5.0a0 - - libsqlite >=3.50.4,<4.0a0 - - libuuid >=2.38.1,<3.0a0 - - libzlib >=1.3.1,<2.0a0 - - ncurses >=6.5,<7.0a0 - - openssl >=3.5.2,<4.0a0 - - python_abi 3.13.* *_cp313 - - readline >=8.2,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - license: Python-2.0 - purls: [] - size: 33583088 - timestamp: 1756911465277 - python_site_packages_path: lib/python3.13/site-packages -- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.8-h2b335a9_101_cp313.conda - build_number: 101 - sha256: b429867f0faf5b9b71e2ebdbe8fedd6f84f4ba53fd2010a1f1458e1e1a038b98 - md5: ae8cf86b9140c7b6a6593a582a8eab8a + sha256: 317ee7a38f4cc97336a2aedf9c79e445adf11daa0d082422afa63babcd5117e4 + md5: 78ba5c3a7aecc68ab3a9f396d3b69d06 depends: - __glibc >=2.17,<3.0.a0 - bzip2 >=1.0.8,<2.0a0 @@ -8640,22 +8623,23 @@ packages: - tzdata license: Python-2.0 purls: [] - size: 37149783 - timestamp: 1760366432739 + size: 37323303 + timestamp: 1760612239629 python_site_packages_path: lib/python3.13/site-packages -- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.13-h9ccd52b_0_cpython.conda - sha256: d8e15db837c10242658979bc475298059bd6615524f2f71365ab8e54fbfea43c - md5: 6e28c31688c6f1fdea3dc3d48d33e1c0 +- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.14-h3999593_1_cpython.conda + build_number: 1 + sha256: 42a5106ae9f2a745f258ca187f811da1736e5d2f39ce33df200b00a34cfb47e6 + md5: 30383eebcafb2bdb3f1f039f7d79fb6e depends: - __osx >=10.13 - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.7.0,<3.0a0 + - libexpat >=2.7.1,<3.0a0 - libffi >=3.4.6,<3.5.0a0 - liblzma >=5.8.1,<6.0a0 - - libsqlite >=3.50.0,<4.0a0 + - libsqlite >=3.50.4,<4.0a0 - libzlib >=1.3.1,<2.0a0 - ncurses >=6.5,<7.0a0 - - openssl >=3.5.0,<4.0a0 + - openssl >=3.5.4,<4.0a0 - readline >=8.2,<9.0a0 - tk >=8.6.13,<8.7.0a0 - tzdata @@ -8663,21 +8647,21 @@ packages: - python_abi 3.11.* *_cp311 license: Python-2.0 purls: [] - size: 15423460 - timestamp: 1749049420299 -- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.11-h9ccd52b_0_cpython.conda - sha256: ebda5b5e8e25976013fdd81b5ba253705b076741d02bdc8ab32763f2afb2c81b - md5: 06049132ecd09d0c1dc3d54d93cf1d5d + size: 15565919 + timestamp: 1760366149530 +- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.12.12-h3999593_0_cpython.conda + sha256: dfeee761021f0a84ade2c38d60fe8506771e49f992063377094fba11002d15ef + md5: 50be3ddc448ca63b24d145ebf9954877 depends: - __osx >=10.13 - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.7.0,<3.0a0 + - libexpat >=2.7.1,<3.0a0 - libffi >=3.4.6,<3.5.0a0 - liblzma >=5.8.1,<6.0a0 - - libsqlite >=3.50.0,<4.0a0 + - libsqlite >=3.50.4,<4.0a0 - libzlib >=1.3.1,<2.0a0 - ncurses >=6.5,<7.0a0 - - openssl >=3.5.0,<4.0a0 + - openssl >=3.5.4,<4.0a0 - readline >=8.2,<9.0a0 - tk >=8.6.13,<8.7.0a0 - tzdata @@ -8685,12 +8669,12 @@ packages: - python_abi 3.12.* *_cp312 license: Python-2.0 purls: [] - size: 13571569 - timestamp: 1749049058713 -- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.7-h5eba815_100_cp313.conda + size: 13685943 + timestamp: 1760368419157 +- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.9-h2bd861f_100_cp313.conda build_number: 100 - sha256: 581e4db7462c383fbb64d295a99a3db73217f8c24781cbe7ab583ff9d0305968 - md5: 1759e1c9591755521bd50489756a599d + sha256: c5ae352b7ac8412ed0e9ca8cac2f36d767e96d8e3efb014f47fd103be7447f22 + md5: 9f7e2b7871a35025f30a890492a36578 depends: - __osx >=10.13 - bzip2 >=1.0.8,<2.0a0 @@ -8701,112 +8685,65 @@ packages: - libsqlite >=3.50.4,<4.0a0 - libzlib >=1.3.1,<2.0a0 - ncurses >=6.5,<7.0a0 - - openssl >=3.5.2,<4.0a0 + - openssl >=3.5.4,<4.0a0 - python_abi 3.13.* *_cp313 - readline >=8.2,<9.0a0 - tk >=8.6.13,<8.7.0a0 - tzdata license: Python-2.0 purls: [] - size: 12575616 - timestamp: 1756911460182 + size: 17336745 + timestamp: 1760613619143 python_site_packages_path: lib/python3.13/site-packages -- conda: https://conda.anaconda.org/conda-forge/osx-64/python-3.13.8-h2bd861f_101_cp313.conda - build_number: 101 - sha256: 1e127a5a1b35e4f8187d9810f7eaf00993cc6854b7cf6b38245d4f5c63f7522a - md5: 90ec169b37f0e65c5ccceeb7a00d5696 +- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.14-h30ce641_1_cpython.conda + build_number: 1 + sha256: a2e3daeccf06a6271d32d99e851a56fd938d913d2bc7a21eaa8f8219f20cd5a6 + md5: 0213e004a0cddcdc9618fa141294db39 depends: - - __osx >=10.13 - bzip2 >=1.0.8,<2.0a0 - libexpat >=2.7.1,<3.0a0 - libffi >=3.4.6,<3.5.0a0 - liblzma >=5.8.1,<6.0a0 - - libmpdec >=4.0.0,<5.0a0 - libsqlite >=3.50.4,<4.0a0 - libzlib >=1.3.1,<2.0a0 - - ncurses >=6.5,<7.0a0 - openssl >=3.5.4,<4.0a0 - - python_abi 3.13.* *_cp313 - - readline >=8.2,<9.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - license: Python-2.0 - purls: [] - size: 17462902 - timestamp: 1760366920956 - python_site_packages_path: lib/python3.13/site-packages -- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda - sha256: 723dbca1384f30bd2070f77dd83eefd0e8d7e4dda96ac3332fbf8fe5573a8abb - md5: bedbb6f7bb654839719cd528f9b298ad - depends: - - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.7.0,<3.0a0 - - libffi >=3.4.6,<3.5.0a0 - - liblzma >=5.8.1,<6.0a0 - - libsqlite >=3.50.0,<4.0a0 - - libzlib >=1.3.1,<2.0a0 - - openssl >=3.5.0,<4.0a0 - tk >=8.6.13,<8.7.0a0 - tzdata - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 constrains: - python_abi 3.11.* *_cp311 license: Python-2.0 purls: [] - size: 18242669 - timestamp: 1749048351218 -- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.11-h3f84c4b_0_cpython.conda - sha256: b69412e64971b5da3ced0fc36f05d0eacc9393f2084c6f92b8f28ee068d83e2e - md5: 6aa5e62df29efa6319542ae5025f4376 - depends: - - bzip2 >=1.0.8,<2.0a0 - - libexpat >=2.7.0,<3.0a0 - - libffi >=3.4.6,<3.5.0a0 - - liblzma >=5.8.1,<6.0a0 - - libsqlite >=3.50.0,<4.0a0 - - libzlib >=1.3.1,<2.0a0 - - openssl >=3.5.0,<4.0a0 - - tk >=8.6.13,<8.7.0a0 - - tzdata - - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 - constrains: - - python_abi 3.12.* *_cp312 - license: Python-2.0 - purls: [] - size: 15829289 - timestamp: 1749047682640 -- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.7-hdf00ec1_100_cp313.conda - build_number: 100 - sha256: b86b5b3a960de2fff0bb7e0932b50846b22b75659576a257b1872177aab444cd - md5: 7cd6ebd1a32d4a5d99f8f8300c2029d5 + size: 18568514 + timestamp: 1760364337404 +- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.12.12-h30ce641_0_cpython.conda + sha256: 9e9d6fa3b4ef231fcabf00364319f4ffacb1fb683e6c61c2438bafe3c61a7e2e + md5: e672c6dc92e6f1fcac0f9fed61b2b922 depends: - bzip2 >=1.0.8,<2.0a0 - libexpat >=2.7.1,<3.0a0 - libffi >=3.4.6,<3.5.0a0 - liblzma >=5.8.1,<6.0a0 - - libmpdec >=4.0.0,<5.0a0 - libsqlite >=3.50.4,<4.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.5.2,<4.0a0 - - python_abi 3.13.* *_cp313 + - openssl >=3.5.4,<4.0a0 - tk >=8.6.13,<8.7.0a0 - tzdata - ucrt >=10.0.20348.0 - vc >=14.3,<15 - vc14_runtime >=14.44.35208 + constrains: + - python_abi 3.12.* *_cp312 license: Python-2.0 purls: [] - size: 16386672 - timestamp: 1756909324921 - python_site_packages_path: Lib/site-packages -- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.8-hdf00ec1_101_cp313.conda - build_number: 101 - sha256: 944fcdc88b452972a829a70f115e24c120bc573d6a34810e0a418c1ddcd73553 - md5: ce6c7617eccf6671a93c867c37cd8fa4 + size: 15741664 + timestamp: 1760365715600 +- conda: https://conda.anaconda.org/conda-forge/win-64/python-3.13.9-hdf00ec1_100_cp313.conda + build_number: 100 + sha256: 2d6d9d5c641d4a11b5bef148813b83eef4e2dffd68e1033362bad85924837f29 + md5: 89c006f6748c7e0fc7950ae0c80df0d5 depends: - bzip2 >=1.0.8,<2.0a0 - libexpat >=2.7.1,<3.0a0 @@ -8824,8 +8761,8 @@ packages: - vc14_runtime >=14.44.35208 license: Python-2.0 purls: [] - size: 16639232 - timestamp: 1760364470278 + size: 16503717 + timestamp: 1760610876821 python_site_packages_path: Lib/site-packages - pypi: https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl name: python-dateutil @@ -9032,15 +8969,15 @@ packages: - pygments>=2.5.1 - cmarkgfm>=0.8.0 ; extra == 'md' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/c1/b1/3baf80dc6d2b7bc27a95a67752d0208e410351e3feb4eb78de5f77454d8d/referencing-0.36.2-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/2c/58/ca301544e1fa93ed4f80d724bf5b194f6e4b945841c5bfd555878eea9fcb/referencing-0.37.0-py3-none-any.whl name: referencing - version: 0.36.2 - sha256: e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0 + version: 0.37.0 + sha256: 381329a9f99628c9069361716891d34ad94af76e461dcb0335825aecc7692231 requires_dist: - attrs>=22.2.0 - rpds-py>=0.7.0 - typing-extensions>=4.4.0 ; python_full_version < '3.13' - requires_python: '>=3.9' + requires_python: '>=3.10' - pypi: https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl name: requests version: 2.32.5 @@ -9118,10 +9055,10 @@ packages: - lark>=1.2.2 - pytest>=8.3.5 ; extra == 'testing' requires_python: '>=3.9' -- pypi: https://files.pythonhosted.org/packages/e3/30/3c4d035596d3cf444529e0b2953ad0466f6049528a879d27534700580395/rich-14.1.0-py3-none-any.whl +- pypi: https://files.pythonhosted.org/packages/25/7a/b0178788f8dc6cafce37a212c99565fa1fe7872c70c6c9c1e1a372d9d88f/rich-14.2.0-py3-none-any.whl name: rich - version: 14.1.0 - sha256: 536f5f1785986d6dbdea3c75205c473f970777b4a0d6c6dd1b696aa05a3fa04f + version: 14.2.0 + sha256: 76bc51fe2e57d2b1be1f96c524b890b816e334ab4c1e45888799bfaab0021edd requires_dist: - ipywidgets>=7.5.1,<9 ; extra == 'jupyter' - markdown-it-py>=2.2.0 @@ -9987,47 +9924,47 @@ packages: - pysocks>=1.5.6,!=1.5.7,<2.0 ; extra == 'socks' - zstandard>=0.18.0 ; extra == 'zstd' requires_python: '>=3.9' -- conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda - sha256: cb357591d069a1e6cb74199a8a43a7e3611f72a6caed9faa49dbb3d7a0a98e0b - md5: 28f4ca1e0337d0f27afb8602663c5723 +- conda: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-h2b53caa_32.conda + sha256: 82250af59af9ff3c6a635dd4c4764c631d854feb334d6747d356d949af44d7cf + md5: ef02bbe151253a72b8eda264a935db66 depends: - - vc14_runtime >=14.44.35208 + - vc14_runtime >=14.42.34433 track_features: - vc14 license: BSD-3-Clause license_family: BSD purls: [] - size: 18249 - timestamp: 1753739241465 -- conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda - sha256: af4b4b354b87a9a8d05b8064ff1ea0b47083274f7c30b4eb96bc2312c9b5f08f - md5: 603e41da40a765fd47995faa021da946 + size: 18861 + timestamp: 1760418772353 +- conda: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_32.conda + sha256: e3a3656b70d1202e0d042811ceb743bd0d9f7e00e2acdf824d231b044ef6c0fd + md5: 378d5dcec45eaea8d303da6f00447ac0 depends: - ucrt >=10.0.20348.0 - - vcomp14 14.44.35208 h818238b_31 + - vcomp14 14.44.35208 h818238b_32 constrains: - - vs2015_runtime 14.44.35208.* *_31 + - vs2015_runtime 14.44.35208.* *_32 license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime license_family: Proprietary purls: [] - size: 682424 - timestamp: 1753739239305 -- conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda - sha256: 67b317b64f47635415776718d25170a9a6f9a1218c0f5a6202bfd687e07b6ea4 - md5: a6b1d5c1fc3cb89f88f7179ee6a9afe3 + size: 682706 + timestamp: 1760418629729 +- conda: https://conda.anaconda.org/conda-forge/win-64/vcomp14-14.44.35208-h818238b_32.conda + sha256: f3790c88fbbdc55874f41de81a4237b1b91eab75e05d0e58661518ff04d2a8a1 + md5: 58f67b437acbf2764317ba273d731f1d depends: - ucrt >=10.0.20348.0 constrains: - - vs2015_runtime 14.44.35208.* *_31 + - vs2015_runtime 14.44.35208.* *_32 license: LicenseRef-MicrosoftVisualCpp2015-2022Runtime license_family: Proprietary purls: [] - size: 113963 - timestamp: 1753739198723 -- pypi: https://files.pythonhosted.org/packages/76/06/04c8e804f813cf972e3262f3f8584c232de64f0cde9f703b46cf53a45090/virtualenv-20.34.0-py3-none-any.whl + size: 114846 + timestamp: 1760418593847 +- pypi: https://files.pythonhosted.org/packages/27/73/d9a94da0e9d470a543c1b9d3ccbceb0f59455983088e727b8a1824ed90fb/virtualenv-20.35.3-py3-none-any.whl name: virtualenv - version: 20.34.0 - sha256: 341f5afa7eee943e4984a9207c025feedd768baff6753cd660c857ceb3e36026 + version: 20.35.3 + sha256: 63d106565078d8c8d0b206d48080f938a8b25361e19432d2c9db40d2899c810a requires_dist: - distlib>=0.3.7,<1 - filelock>=3.12.2,<4 @@ -10146,7 +10083,7 @@ packages: - types-requests ; extra == 'types' - types-setuptools ; extra == 'types' requires_python: '>=3.11' -- pypi: git+https://github.com/wpbonelli/xattree.git#713e0be8a38128666c08a31b9ab080abd49fa608 +- pypi: git+https://github.com/wpbonelli/xattree.git#5d5076318ea2278c38abbca5f499ef462f355bce name: xattree version: 0.1.0.dev0 requires_dist: diff --git a/test/data/npf01_75x75.head b/test/data/npf01_75x75.head new file mode 100644 index 00000000..a31c652c --- /dev/null +++ b/test/data/npf01_75x75.head @@ -0,0 +1,154 @@ +{ + "0": { + "(0, 0, 0)": 48.0, + "(0, 0, 74)": 40.0, + "(0, 1, 0)": 48.0, + "(0, 1, 74)": 40.0, + "(0, 2, 0)": 48.0, + "(0, 2, 74)": 40.0, + "(0, 3, 0)": 48.0, + "(0, 3, 74)": 40.0, + "(0, 4, 0)": 48.0, + "(0, 4, 74)": 40.0, + "(0, 5, 0)": 48.0, + "(0, 5, 74)": 40.0, + "(0, 6, 0)": 48.0, + "(0, 6, 74)": 40.0, + "(0, 7, 0)": 48.0, + "(0, 7, 74)": 40.0, + "(0, 8, 0)": 48.0, + "(0, 8, 74)": 40.0, + "(0, 9, 0)": 48.0, + "(0, 9, 74)": 40.0, + "(0, 10, 0)": 48.0, + "(0, 10, 74)": 40.0, + "(0, 11, 0)": 48.0, + "(0, 11, 74)": 40.0, + "(0, 12, 0)": 48.0, + "(0, 12, 74)": 40.0, + "(0, 13, 0)": 48.0, + "(0, 13, 74)": 40.0, + "(0, 14, 0)": 48.0, + "(0, 14, 74)": 40.0, + "(0, 15, 0)": 48.0, + "(0, 15, 74)": 40.0, + "(0, 16, 0)": 48.0, + "(0, 16, 74)": 40.0, + "(0, 17, 0)": 48.0, + "(0, 17, 74)": 40.0, + "(0, 18, 0)": 48.0, + "(0, 18, 74)": 40.0, + "(0, 19, 0)": 48.0, + "(0, 19, 74)": 40.0, + "(0, 20, 0)": 48.0, + "(0, 20, 74)": 40.0, + "(0, 21, 0)": 48.0, + "(0, 21, 74)": 40.0, + "(0, 22, 0)": 48.0, + "(0, 22, 74)": 40.0, + "(0, 23, 0)": 48.0, + "(0, 23, 74)": 40.0, + "(0, 24, 0)": 48.0, + "(0, 24, 74)": 40.0, + "(0, 25, 0)": 48.0, + "(0, 25, 74)": 40.0, + "(0, 26, 0)": 48.0, + "(0, 26, 74)": 40.0, + "(0, 27, 0)": 48.0, + "(0, 27, 74)": 40.0, + "(0, 28, 0)": 48.0, + "(0, 28, 74)": 40.0, + "(0, 29, 0)": 48.0, + "(0, 29, 74)": 40.0, + "(0, 30, 0)": 48.0, + "(0, 30, 74)": 40.0, + "(0, 31, 0)": 48.0, + "(0, 31, 74)": 40.0, + "(0, 32, 0)": 48.0, + "(0, 32, 74)": 40.0, + "(0, 33, 0)": 48.0, + "(0, 33, 74)": 40.0, + "(0, 34, 0)": 48.0, + "(0, 34, 74)": 40.0, + "(0, 35, 0)": 48.0, + "(0, 35, 74)": 40.0, + "(0, 36, 0)": 48.0, + "(0, 36, 74)": 40.0, + "(0, 37, 0)": 48.0, + "(0, 37, 74)": 40.0, + "(0, 38, 0)": 48.0, + "(0, 38, 74)": 40.0, + "(0, 39, 0)": 48.0, + "(0, 39, 74)": 40.0, + "(0, 40, 0)": 48.0, + "(0, 40, 74)": 40.0, + "(0, 41, 0)": 48.0, + "(0, 41, 74)": 40.0, + "(0, 42, 0)": 48.0, + "(0, 42, 74)": 40.0, + "(0, 43, 0)": 48.0, + "(0, 43, 74)": 40.0, + "(0, 44, 0)": 48.0, + "(0, 44, 74)": 40.0, + "(0, 45, 0)": 48.0, + "(0, 45, 74)": 40.0, + "(0, 46, 0)": 48.0, + "(0, 46, 74)": 40.0, + "(0, 47, 0)": 48.0, + "(0, 47, 74)": 40.0, + "(0, 48, 0)": 48.0, + "(0, 48, 74)": 40.0, + "(0, 49, 0)": 48.0, + "(0, 49, 74)": 40.0, + "(0, 50, 0)": 48.0, + "(0, 50, 74)": 40.0, + "(0, 51, 0)": 48.0, + "(0, 51, 74)": 40.0, + "(0, 52, 0)": 48.0, + "(0, 52, 74)": 40.0, + "(0, 53, 0)": 48.0, + "(0, 53, 74)": 40.0, + "(0, 54, 0)": 48.0, + "(0, 54, 74)": 40.0, + "(0, 55, 0)": 48.0, + "(0, 55, 74)": 40.0, + "(0, 56, 0)": 48.0, + "(0, 56, 74)": 40.0, + "(0, 57, 0)": 48.0, + "(0, 57, 74)": 40.0, + "(0, 58, 0)": 48.0, + "(0, 58, 74)": 40.0, + "(0, 59, 0)": 48.0, + "(0, 59, 74)": 40.0, + "(0, 60, 0)": 48.0, + "(0, 60, 74)": 40.0, + "(0, 61, 0)": 48.0, + "(0, 61, 74)": 40.0, + "(0, 62, 0)": 48.0, + "(0, 62, 74)": 40.0, + "(0, 63, 0)": 48.0, + "(0, 63, 74)": 40.0, + "(0, 64, 0)": 48.0, + "(0, 64, 74)": 40.0, + "(0, 65, 0)": 48.0, + "(0, 65, 74)": 40.0, + "(0, 66, 0)": 48.0, + "(0, 66, 74)": 40.0, + "(0, 67, 0)": 48.0, + "(0, 67, 74)": 40.0, + "(0, 68, 0)": 48.0, + "(0, 68, 74)": 40.0, + "(0, 69, 0)": 48.0, + "(0, 69, 74)": 40.0, + "(0, 70, 0)": 48.0, + "(0, 70, 74)": 40.0, + "(0, 71, 0)": 48.0, + "(0, 71, 74)": 40.0, + "(0, 72, 0)": 48.0, + "(0, 72, 74)": 40.0, + "(0, 73, 0)": 48.0, + "(0, 73, 74)": 40.0, + "(0, 74, 0)": 48.0, + "(0, 74, 74)": 40.0 + } +} diff --git a/test/data/npf01_75x75.k b/test/data/npf01_75x75.k new file mode 100644 index 00000000..33788c07 --- /dev/null +++ b/test/data/npf01_75x75.k @@ -0,0 +1,75 @@ + 189.97956251 427.10445100 1035.61112686 150.68564976 139.85563178 410.39187382 412.05506934 319.42320218 121.49827573 142.44767115 69.97316752 15.13481540 367.17455210 119.34508915 239.35249069 348.00755777 259.29494081 1208.16176240 78.07163958 251.13839486 839.30911896 128.72620911 8.28805790 461.49168948 101.12848457 1084.67730545 129.87265398 429.48657279 1629.66458384 44.18838356 359.99284397 150.29346065 1933.31943208 24.99075236 76.32873278 78.03976537 153.68776783 129.25287613 259.70604223 508.18280608 165.35332587 20.77736491 95.04448043 479.45878006 60.68247650 278.44067677 275.39783065 46.84400896 97.46621947 56.57169781 102.91795227 68.99563099 234.87083188 37.30914924 82.24455741 91.38419844 740.49701714 51.34425686 3758.79364324 973.40340929 363.10544505 374.76203106 767.26321012 436.03956590 1408.10706651 72.65196071 108.02277677 68.42859339 204.61215262 129.01161467 66.49923403 185.37394655 36.74890459 92.16251970 2219.52700841 + 115.87161969 284.68727505 43.98296459 82.24420442 162.62959503 135.48317904 33.85056012 355.44894885 411.44320586 692.49527405 24.24879584 114.13105270 90.20407976 144.00583814 10.72111632 292.37985238 344.72208150 338.65322063 78.33270030 394.89175303 123.26200948 779.22639612 19.63542436 72.73792199 63.96811256 148.09836359 46.86919287 104.79923274 463.56636586 136.60660526 380.24468109 279.28836893 83.22971111 692.97139553 192.76343600 161.89151348 565.11467044 146.23527401 52.58972758 732.22843097 2398.19347027 272.03689279 175.16187839 1078.03139706 860.43321332 96.91781870 625.49444117 91.91514445 2212.46531645 130.14234785 722.32385786 325.68277688 20.45658229 84.09236337 141.18931937 786.01373927 151.51387143 167.88443691 168.85043088 213.40656754 118.66436792 97.65238779 47.46112838 69.66375357 1447.39757883 156.93732227 424.76058358 105.43440161 22.40952635 310.01117188 45.30618253 68.51615895 185.30356612 411.75418749 51.15564038 + 69.85577992 171.99573620 40.44545981 534.60975029 63.46373942 686.94097009 137.44568484 198.81554714 350.89493826 391.08771644 194.44607695 195.02105451 14.51118034 69.59968394 824.10455124 43.70993776 39.32967904 21.94930471 454.85594201 245.18217162 212.53679254 427.99819421 11.89618104 274.86202860 11.69379566 78.55346943 105.17125522 118.48620183 261.72727758 42.03667049 375.70702427 95.77952606 360.35136299 3909.61819046 66.78382781 10.80205414 374.22800062 2293.73530080 214.27214302 5.27915710 205.01656084 179.54179848 874.64803903 140.86283414 311.73951843 30.87708584 60.90333047 147.10067722 122.24596040 31.05533781 222.52153864 90.19892022 1302.63299987 223.52000957 671.20757327 156.39818993 206.27684067 10.94202393 57.16751118 160.67013941 12.29237807 75.26342049 112.72820874 208.72395949 110.49646242 52.35059455 372.14847663 34.46872875 1696.14924810 541.00455835 379.26442735 31.53857187 116.95188711 72.83540508 79.56737589 + 724.71444018 27.51030380 224.96695499 496.49549179 101.60263574 293.13776970 390.09067024 51.87922432 540.90172061 318.92662039 124.90645685 360.04901249 46.64443523 16.97901034 104.57951907 554.13980807 362.00689090 331.74470833 14.61478184 40.00605768 554.38296573 1078.08174951 122.62890763 268.88681258 73.62786879 288.13506043 57.84287229 132.83591712 100.09694663 29.12903286 35.58929725 215.18648205 69.68042425 596.25278239 533.26286873 1611.73999948 52.12111531 115.01553988 233.49194696 545.11792892 33.00142731 151.90579418 25.22493989 18.51693502 64.30323811 503.22456511 134.01883250 44.96399449 84.55012730 158.34561260 65.41912763 107.48241843 263.01214375 1237.71348536 524.27090772 86.95150582 288.23426307 150.55686682 5.97642160 61.57913825 82.28499404 167.75984488 852.63629609 509.02417043 510.38948418 151.68716167 175.30885518 918.62741900 100.03972991 16.31208351 437.20483914 284.63748221 75.46352940 196.17733176 15.00747763 + 14.39897004 2806.51542975 218.21236816 472.62671519 51.28947065 53.63706686 609.02482950 207.40921134 27.91824033 783.66575995 141.28938805 126.13817401 26.16591826 116.11700841 469.81344838 44.77497959 51.95995258 71.79875649 268.99598649 118.08244243 27.26303394 10.28255955 1926.33238036 69.01853024 381.59612896 332.24217155 153.57689224 9.53897348 56.14925677 135.30195341 78.41054764 188.27670973 384.63140844 131.11902180 62.67531220 99.46486276 65.99609933 1847.50948255 233.47386849 42.38308740 7.76775921 34.61882520 26.10275083 648.34365936 1027.56007295 344.68480676 194.94053709 41.46799991 182.42052382 130.14719954 352.61934525 93.67061654 243.35068136 1516.20298429 359.32865523 35.44359638 136.67560291 45.38415980 35.67051840 601.62212449 1153.50511837 687.06007652 177.84586365 27.36372059 311.91891952 144.32635947 934.95742752 61.55553881 155.51129686 181.08238694 24.57644875 188.29053551 99.43644532 897.41123669 154.64812620 + 93.96299246 398.06802622 99.85801435 1320.84806234 230.84745678 101.21729935 57.18473082 41.68146047 514.93822906 369.00050049 128.85141565 206.85431092 204.64434165 297.50523995 191.59797652 117.58183388 180.07363677 133.07689637 143.10253764 34.27090692 110.12279455 289.94480195 50.40683585 471.31681818 53.71841063 619.48581450 261.89347092 66.32680861 119.63154977 205.71384240 21.73469579 97.38892727 11.12106595 66.10775096 2335.39896959 26.16740260 25.22474706 53.01923858 57.86269207 51.37604197 66.06707221 150.84876606 530.49904193 240.72379178 178.84000456 250.01610141 11.16287187 45.71201356 708.67161695 86.00903281 40.38546238 1077.10539579 98.22669075 121.93077877 6379.98911708 33.84876740 13.91026728 1078.70108164 23.59463432 24.96127922 105.83786002 199.54804899 87.42803238 519.63952928 842.86141034 43.30234248 25.57062394 737.16211328 55.61409716 935.56984403 241.41961166 206.66781945 403.60701812 39.45278789 565.67119438 + 161.28390916 135.89754440 647.77375704 402.49993373 145.96507338 326.11301759 9.18930399 243.91827672 494.24693237 54.86025277 49.59064163 39.24139871 225.74074676 14.97567430 244.12992582 52.77686398 578.78771027 13.12034204 17.05537350 107.35970350 425.34269582 232.84504495 82.97127525 234.05033988 10.77802748 591.97910425 133.93006768 40.61193980 45.67845491 21.82887014 88.58368099 176.01660237 72.08622676 242.32876246 77.50083771 1476.06055051 62.29623424 194.23004218 200.42396556 159.43523825 2606.22878274 32.24003545 2233.46351400 422.59546172 481.23225190 153.50021487 2011.15338769 338.61422725 155.61721831 138.54661443 21.09667540 636.54337909 38.88441366 40.05087147 37.44989073 8.20319329 33.37960483 25.65561756 994.96577208 621.92104587 606.32272934 16.96610955 180.72427557 377.25524590 273.98602047 274.23060128 1095.57515953 649.33187218 21.40300232 162.41699110 7318.03187426 268.06178638 222.52953786 113.88948595 366.43916522 + 59.19069049 1637.53895070 122.15077024 125.29357517 25.71354552 44.38713568 396.72174357 16.47541183 290.17075120 32.56628075 121.71378053 7.46050256 101.26343764 176.03750251 72.35789166 598.11515216 9946.10809590 46.44151208 276.22938633 97.63547857 68.70131966 8.51653057 51.64345649 51.69940179 73.04525427 711.97816106 239.52388985 25.28310532 129.31007138 34.36882506 4.35589655 193.83144934 1820.07308361 136.26949021 430.61511585 1810.29439097 16.70937093 57.75867895 1271.47737014 171.83321258 124.38050011 47.18565908 371.54193843 47.57853111 230.41084674 82.98299687 91.91008921 53.33664994 16.30984845 1191.29530973 197.31737853 89.35222575 100.49632836 528.42143211 250.26347545 292.87340498 143.19725635 146.67660630 128.11597850 2031.55301321 245.90353645 90.85891367 166.48640139 92.18790753 522.91290240 80.12905557 644.46614343 464.84913074 37.33442139 89.32375861 1529.04250354 584.50835763 88.69203706 266.60630669 43.71247448 + 357.52665727 82.59973810 143.95568055 402.39745304 310.04171435 244.61735041 30.90642265 112.05109269 176.54025642 43.20549352 108.51586918 584.62316427 213.06592249 916.30708580 64.51212787 119.70297872 359.88246123 189.45044165 1436.59892095 566.35247713 42.60223044 59.33513815 676.23748794 1644.17894138 76.17786375 270.47207979 104.08295611 213.37565404 48.78281443 87.25225465 134.84503984 761.77766841 126.80656813 993.30866919 91.32655750 950.42180858 400.78706329 113.21878277 45.03919129 521.14721108 347.69001548 232.53001771 46.21414541 152.91630053 46.11592734 63.30913025 170.35349769 245.59897636 1202.12743459 96.41861155 26.36180427 82.27293263 66.60168720 40.42085121 157.14565585 20.54959294 49.00457035 1024.08030033 993.61556156 938.58616179 81.42955028 55.75586675 12.80970367 29.84135569 103.24662278 229.86656202 165.91461472 25.98668199 24.66171885 259.12097646 382.92637572 231.44181402 106.10777864 9.59032367 2945.63809278 + 135.94939306 541.05244689 209.94942563 206.26686739 350.71949992 99.16830557 9.31145498 890.74269078 120.17577922 105.53178575 36.45466036 344.53688423 64.92698368 28.84875302 263.03776856 749.08085169 112.61300185 160.12570317 2.73757447 234.88426400 64.95692517 98.35647165 1457.61645277 1949.10577300 153.54231390 133.16293652 150.48782376 333.85011257 73.08508087 420.91609122 723.48522048 48.06487515 317.56492644 90.34599535 167.41643264 95.04339052 101.47382095 345.05007739 163.08913394 37.97462655 228.12217540 50.92083807 68.89234019 140.50045464 170.47364834 521.34301409 419.50121252 72.43406808 265.20073500 207.61836017 162.23536181 79.61556916 82.93249156 228.62431605 88.61944697 72.78341329 410.36951751 345.28858804 189.16522653 548.65095135 191.44967412 1256.65435272 226.30710320 1224.34661235 162.94262839 392.15047695 41.74864315 15.51257004 10.06072165 399.52369328 449.54904517 286.33082929 345.16119536 135.31081550 631.78851935 + 70.39448166 30.27371969 24.62563695 1388.49167799 846.54996597 112.22372926 65.44379114 42.11711131 780.98650454 162.54394188 238.10060795 363.69544309 98.40800248 185.76814512 246.66143118 310.86569131 6.47300340 70.93654144 345.28555686 72.42171628 72.52955798 160.01852459 124.58169576 633.06291848 142.33673816 83.72230489 272.54521283 361.12870865 427.50872741 46.98554826 312.67963947 322.98361181 88.47874558 125.59484253 664.06550016 475.33318545 645.98650671 131.70922488 124.13460037 70.29986567 38.73091917 80.76148532 54.56274644 66.43106923 211.95161433 580.94262527 335.82766128 71.10266794 9.70712435 258.24199347 204.31255837 224.40520107 179.30162024 103.89452348 224.50836104 295.10081656 126.92504001 98.07978130 142.37756815 1589.71260042 93.24638983 130.30781887 307.88357435 539.95976416 232.30810661 42.88192172 39.76348235 119.10083068 1412.90573961 1149.65814349 85.56905732 135.75881241 294.95553605 76.54505521 130.46619185 + 78.51376607 37.07545842 131.21298530 32.79842465 112.36458291 84.22588286 22.01308884 421.50672609 51.33667417 96.24071342 842.71976461 94.86256064 263.22375831 89.59677160 44.03728000 95.56978339 28.73897543 152.94702709 11.40245744 270.07515406 28.50997527 75.00859841 141.88822671 68.51548315 42.78437834 92.31730180 94.98376897 33.65915225 386.44074456 290.77964659 307.55495374 222.45285361 309.35019092 171.91405035 32.34733483 47.37549232 881.14937660 1871.43091185 101.22641089 16.55270950 57.16961859 430.89242239 300.17013084 289.81265071 40.66321239 323.79918854 36.99683782 103.10374210 254.27443139 1377.69150812 60.50784592 53.88143102 795.48844427 108.18890220 170.06902416 148.41726403 85.34918905 283.28341731 148.62878289 29.70087502 239.33792266 80.72793650 41.85319341 153.68881992 113.14376709 189.23954832 436.76586266 42.22779345 354.81620154 71.05099616 20.89707303 54.84712273 9.26642570 593.21413005 13.50528328 + 840.99690796 70.01461566 7.44561825 133.45910632 68.92161032 368.34285666 64.81602362 10.92334693 747.16381297 145.08806887 656.56974421 96.36546084 52.86550042 398.33862021 171.82786688 496.63282566 26.81982131 23.02104590 36.54228622 652.31495965 65.24618583 599.18105432 95.78213358 146.43654262 15.08369004 317.76456224 145.33921961 1884.47588860 405.85274266 73.77427603 164.51178002 115.03268861 110.36445740 1176.55384680 104.53524737 148.15624100 728.57899364 42.36989946 118.84920191 173.60186880 296.53521738 99.07903846 56.60454908 100.36980037 630.33949800 319.95418821 52.24925877 18.80866232 66.31466916 100.24169225 32.42241995 92.19840655 63.41284084 359.40576407 87.22252282 48.64390819 363.58630590 86.04456410 619.96810157 150.65874473 74.71670361 761.19026531 432.51763052 715.70066005 1269.57276281 21.25048159 185.11731022 692.04614569 53.98123244 109.62054059 587.27652623 111.30905030 89.96024932 40.88092109 254.87369455 + 237.11545323 146.30173566 121.03176153 22.22100925 69.49236548 180.03761467 113.24470237 528.34916470 333.88697848 494.55857456 677.14665910 90.44184158 783.80363999 610.09231658 3046.08668868 124.26578694 125.24480333 13.10469483 275.95742516 69.96698641 73.41379505 35.71923787 1271.68861389 71.82342960 493.59710216 268.67163817 44.17229783 259.77155783 203.51891418 94.86625840 34.47786493 54.09248604 63.75594370 154.71223534 26.56740678 25.73547558 909.54955327 193.04075295 118.86121363 46.18727266 242.74513197 18.39131628 32.38278281 402.91740993 129.27709675 1008.62412866 429.35464278 344.04616956 5.77308871 337.54470588 148.86335142 27.53854816 87.14244048 651.84024748 46.21286236 284.85852307 17.00885793 66.59746158 132.12903525 57.99743832 158.30873921 120.41849790 112.36018313 141.82549494 179.27419104 961.58614761 636.43419707 614.32143431 133.16488975 22.21035730 39.59029428 288.21375406 28.69882901 944.07030854 1301.30250178 + 102.25131499 304.51168064 211.27622391 139.55553497 90.50892456 119.12993900 61.60584113 219.53368170 287.40820423 60.25405244 131.93931560 30.04407345 61.63693588 260.37207144 113.85165169 237.94645436 605.93560815 39.12122022 1366.93498693 1727.14553433 418.80161991 187.71438339 60.50321626 43.70369533 140.56839040 24.58675214 45.57632017 61.93958862 245.51849642 53.28369220 79.59592425 69.28652861 52.98798380 216.05115130 91.65806718 19.19954905 548.57241991 96.38705235 19.99528841 213.19291827 112.20538913 216.89721080 505.80393147 578.89157780 1093.42595265 184.94416008 118.45917292 173.12558617 66.41776815 276.96695730 36.62671097 79.30107907 75.67219970 73.49299276 233.87194177 102.41622991 548.61545505 30.77459194 397.69411518 340.44025755 679.57596683 308.75927205 162.75034278 60.36849504 34.42828700 156.09849564 40.03889098 14.17370068 930.13098653 93.64172742 81.64886133 563.39202999 187.36400561 103.29966537 728.42486822 + 97.04274823 203.91715020 181.19231049 342.36284977 936.80256075 293.62765999 67.98903265 48.06548610 423.69363943 106.24524493 30.59173318 56.70681162 506.53346393 241.64952111 240.74507086 100.55061348 55.49853942 289.90501289 27.94620979 75.10111115 92.07483606 111.88937561 248.59604465 259.67747195 533.07084508 18.00379327 1921.59079310 64.80674308 76.25533485 72.96081478 191.67214204 87.11746961 187.98757634 436.39271218 18.71142669 295.08304719 1122.14770105 143.71564480 33.57129376 32.19413133 873.25758800 91.57633534 57.81650857 694.88499309 2163.23834311 127.15530613 52.05900744 289.12051648 34.71553039 58.87240928 69.32339128 71.59787022 407.28471585 567.15049744 114.96622541 40.87619311 32.76448686 65.61544918 1786.83334544 1104.45231721 74.19636808 394.91847164 118.35101990 778.86821040 64.64951384 129.15229998 170.91985016 602.68568711 65.41693941 69.04249429 47.83544070 54.28775157 117.27815817 66.61155683 531.02336379 + 199.13182275 111.06884543 156.64940254 135.75521034 91.44270910 21.50377013 610.64234485 53.25299022 416.34240933 58.76837163 126.17243754 138.49619413 413.24385597 447.80664438 138.93578636 84.37065422 99.72004805 235.20420098 386.74801631 177.55039488 246.49819193 596.78331828 122.10416414 4.59198080 232.25697717 214.24352564 395.52183570 527.54104582 137.50299451 230.80856290 234.25275801 21.81668454 503.95982316 1679.60534515 28.47194073 204.13545273 643.04663204 83.93007672 155.43633002 225.15242868 68.13003293 100.34586994 100.08290934 54.75650848 61.37604401 75.46627713 513.58027707 60.42264876 115.41200191 130.16551833 1005.52396801 547.85108243 263.05355076 589.80187210 226.98109032 1575.25622072 665.83067543 241.08999892 186.40992745 40.57172690 577.82275665 97.53096078 15.14682757 148.96026169 135.87398446 46.73747328 41.49832663 77.77200653 300.97714408 58.26345808 275.71029244 429.86185110 159.89500331 2389.47369562 237.43285392 + 578.87330083 34.73147835 121.26691567 78.34024348 149.43956482 11.64592981 93.24916109 87.55636654 69.00246047 254.12278294 230.13263046 220.68644246 786.02059589 18.52461051 50.63432615 210.91830359 57.46731962 43.94480139 174.27234279 126.57586871 84.96592558 1002.15821241 140.68431078 607.21411644 358.29729527 97.07238906 108.15209975 187.13126322 106.52719014 86.42298657 683.62471799 111.01848410 258.82472958 943.66238551 460.44849831 1885.11281063 138.66165669 215.48336238 39.75074349 39.14821952 29.71263221 210.99019587 92.21173485 239.92972183 18.41642427 81.15735953 675.67897978 291.28163692 588.32716851 388.33232093 76.71070724 488.75588979 92.00229240 29.91846704 890.30056180 142.05175321 330.42412419 68.65980814 1179.77530950 436.31025529 454.09395508 118.28630219 36.06559028 114.60397180 679.70279093 68.70230764 821.98155676 236.66065486 73.57285351 100.70988205 115.30889454 122.10707209 163.62977338 97.71815306 1521.60720436 + 263.87567010 104.31407557 1318.49948409 147.05280849 185.31895000 46.60148764 62.44801334 171.91628587 2357.50967079 1284.49368890 450.16002281 17.92934392 91.40415035 223.80474857 647.90459554 177.52559629 98.22861296 6.95940063 4.77846796 348.55981683 34.27155625 361.62745890 108.14994398 1968.25762372 16.83045883 76.68546875 151.50933227 17.52543442 484.28071802 84.32525910 160.77544260 248.00692142 494.01527527 795.74518872 395.62795867 1483.03564741 90.67971864 633.26324065 91.81690369 67.46048094 433.08307264 272.67624892 660.14768109 273.24571895 213.89531260 8.03475541 225.24857521 814.59364225 19.17189671 642.37511212 350.22752109 335.94642834 59.16629209 12.51060628 75.21792222 1019.75198751 865.80984194 271.36947582 154.65715736 1273.28216455 19.50945657 20.77819563 332.72281699 213.63469125 49.75772623 593.29854970 80.74402678 271.87210406 1148.54722299 301.26305937 181.06050711 62.22697575 1710.07485036 57.62978186 366.28016019 + 423.05439506 186.90396969 197.45963384 80.59640920 150.45860532 81.55747543 137.90124536 122.83010849 210.74844029 66.49241821 1140.28618658 9.93523516 395.06403759 20.09560199 219.86034997 164.80504930 700.99876562 30.92444521 29.44171903 43.25913214 211.09252507 90.87698298 58.55822304 42.31097677 53.02350886 189.29093417 47.12053964 22.66700311 708.25281042 1568.03975149 149.04149412 188.44201800 557.58740109 212.69508054 221.30921046 36.40567621 30.37728686 25.50959481 11.45875166 1014.48888709 267.18768695 118.83787354 41.11541199 100.10401001 880.72958751 21.41120040 272.57331126 72.76806148 158.39090909 583.61285320 43.72199006 151.80051512 416.76644691 234.89955843 436.35492224 130.97558197 95.44303388 429.48044383 64.29252651 157.56879234 105.65855897 394.96386749 44.73959197 30.54992319 39.38189299 89.57520551 174.25819052 144.24599162 574.26115256 70.20512302 43.62135681 1383.02315913 603.67687978 54.76955601 210.08570884 + 149.31645078 10.34426560 94.18311446 222.34128565 119.25311349 480.38740581 29.36012068 126.81559627 713.29697588 2714.93682825 71.32765695 434.29657943 7.92791457 271.60215428 728.49186387 99.07251482 477.32001114 1150.72894420 27.06286516 199.81469799 472.96348561 75.92654904 161.09287611 58.38045139 363.59537947 1017.16718292 115.49679610 404.43858817 471.60454034 60.29323366 112.12329226 83.66971189 101.68355755 1147.31310051 72.59256569 126.99185507 642.51950887 68.10188571 84.69270881 89.34886632 84.75839960 386.59254026 39.24947961 39.52955713 140.35564990 187.98130223 41.24567537 58.98265723 101.37280719 425.16692053 11.98806831 1129.98126375 15.95117545 1175.27594638 174.70981704 158.06089511 24.73857365 568.37149985 18.86859553 204.79277504 610.93401139 54.61204176 415.06111156 50.11713801 70.00115131 132.73800217 42.92516787 152.62696407 585.09157747 45.04444880 369.51330186 87.37509356 104.26201807 276.24216349 66.65015474 + 106.08656406 33.26846699 73.88944354 83.89566562 181.27723464 138.42012589 97.72646898 79.11630372 869.45674558 203.94946449 151.05956301 90.27497398 28.87078381 114.83137646 140.89639122 43.43304649 47.90577957 225.50367576 366.57665313 231.82867759 608.01610391 408.31951367 303.64976460 473.14305956 27.32370641 26.67809591 429.24426937 924.35465851 15.94372652 280.02927772 1779.19806319 117.37272559 164.87520096 233.20125762 143.85127503 146.36945061 50.27415762 56.57331969 83.27586300 250.23215558 142.85552478 752.65577787 644.45448060 955.08419394 147.79881255 14.21151330 313.37903936 564.21262296 69.18122615 104.52806520 86.37046968 64.31299956 16.46587206 16.77092279 323.57953257 100.46664940 263.28322244 143.46885166 460.06366809 335.59039760 240.90869186 893.09737708 49.80290406 12.32790587 199.40795625 94.54976475 156.49915430 142.57326577 71.02600988 798.69049910 125.91319352 311.83168402 143.25743310 337.64951976 155.19531845 + 215.14217347 208.78003024 93.53611240 72.65385530 344.72686665 103.49355506 204.43314627 74.21067617 44.72048188 27.78846609 43.83151885 608.88684104 190.30137921 126.58400439 130.72733646 996.58184990 168.35993274 55.55765486 744.12357381 9.51967689 176.55009143 90.78412451 13.51612437 44.85761611 123.07149558 322.88130433 63.18298311 160.58311522 40.02551116 25.96206743 177.16744747 828.00868500 404.04713003 76.68961969 11.96004866 114.33887497 144.29864707 168.20675066 90.70669385 74.74193818 237.79446549 131.20893309 596.61035449 269.38504445 8.92283117 176.45307851 37.68500435 105.69057114 143.43016892 20.25026961 201.47437265 164.71023784 43.37383010 709.71080886 132.49754940 78.85061989 376.28533534 193.91448278 121.49114896 916.13209245 59.59239392 3367.44494928 10.64049341 400.17018480 70.53183932 37.76587523 75.58950392 1029.52801171 497.30378955 54.38735696 158.62722380 184.44811927 838.27151514 478.89376296 411.64914949 + 833.84874642 57.07209991 97.94918693 186.08808157 1113.07561540 248.10164185 413.33919407 462.75156360 10.97855792 32.97535141 50.42818222 4599.56938449 221.22991990 374.53051540 33.13470752 51.49742769 85.25709732 108.27730425 726.47652249 1432.45745011 116.76441401 1047.72883031 925.28051797 1015.65814125 420.92517363 17.71600773 816.65091051 920.39954894 129.86551182 14.96511576 19.08521421 307.21227464 135.73719433 159.36841088 576.96449828 317.30424499 100.21900248 96.99357739 37.10047331 219.48754419 113.02287332 57.46521053 515.63348969 170.35417514 87.34819202 70.33776064 157.75301233 172.54772004 317.29183444 470.22293598 219.69729562 305.22781268 193.75710399 311.06155553 17.60120209 183.71921746 163.16312801 45.62338332 120.30596493 47.24317416 279.57806289 637.63867015 9.91860108 2241.11258136 24.23971860 108.85964519 44.87694253 101.11905516 298.95423866 268.35183295 150.59522934 73.33062723 2012.94678221 77.23686657 84.64821331 + 171.46205030 87.66405866 118.74536782 120.94783830 25.73526287 12.91420674 114.87269289 289.51105813 60.54314762 47.15011953 97.14777308 5.83417192 44.07087920 28.25273270 240.85246961 120.54444351 307.16700860 196.66751590 267.62369858 412.10664407 105.13798800 49.27027276 49.74648735 237.37112104 2477.78775955 16.41046678 62.81885517 49.21983013 8.85224065 1501.31057844 769.60107305 40.34118137 475.76145251 29.69277415 26.25001608 69.89549385 262.45005014 264.02373285 70.82003226 286.40796558 137.13813970 45.61006689 103.06023239 530.01039217 20.01936645 53.88283235 26.09262552 125.51320650 251.70519189 290.87547063 440.23330433 694.36449431 59.70748084 177.18224513 663.50885716 166.53310978 3475.55460973 167.69396258 103.83461666 208.73792684 89.17900808 189.90063381 315.63536000 5.44582995 291.84694902 9.42265216 151.73379960 467.55278672 1446.27441949 139.92901225 98.30649086 580.28260608 468.15503450 55.18097660 22.05716591 + 489.92485123 52.59889288 44.84970024 234.77557238 119.38188023 364.04270091 152.62057686 1357.39481544 107.61072900 63.29178781 898.49355441 176.03241285 422.39965959 1011.64002232 1372.68854895 515.35380063 645.92192892 215.18918228 11.20520034 107.76323231 277.30705734 586.12219401 211.98465116 77.78855024 3005.20952980 349.18003635 11.74930152 125.16785927 80.14516069 347.95640054 1645.51019130 333.92833432 826.86056189 721.91089628 24.59785577 519.21043165 254.81112547 6060.42692520 41.08976288 467.25261991 188.92776626 74.13998673 77.78191519 25.03779485 2846.09500927 48.82511290 29.66744984 172.23962135 20.20062943 199.41742374 109.40245875 224.42202271 201.20352093 821.06010685 226.30195554 17.29648672 79.93436162 66.12988539 153.55478000 2360.49299243 402.83909842 70.44042785 189.66740825 110.97500699 10309.50764428 23.53998623 653.85597881 110.84898205 652.99641730 58.70030893 49.45721696 118.44730460 60.70939562 1572.73338720 61.91002965 + 106.70877906 1517.03508799 557.53432358 688.60331377 272.76037290 103.05051462 505.48282474 128.73448841 6.85696982 334.71256916 30.86574369 74.16604599 205.57386767 149.50613183 528.64942631 490.64117362 388.24483111 76.37369259 67.62501065 521.15386907 264.58530974 1299.63584088 105.59586500 1396.73473488 53.34388219 1698.69790786 296.41521021 13.81992227 87.45794889 24.21312269 395.28365038 40.89155196 655.44007030 27.74641553 56.31926750 1140.69332959 56.69843633 395.03429230 59.40100286 110.26223586 95.82024832 70.38331566 169.10032616 502.68326303 15.10225013 47.88735693 550.35787924 475.11074994 54.44085810 709.31079952 309.96753510 531.24685165 40.05036791 41.78233281 100.34009176 393.62103324 599.65003641 218.02143961 26.63151204 64.27579358 169.20807307 127.88142050 239.13508309 22.06390113 16.66042756 172.55322680 469.95450672 118.24651445 47.81387939 41.17388554 43.65135114 15.10632561 30.23535085 103.34222099 1293.05517846 + 86.81904206 16.41809854 544.46059465 609.42142935 18.10747966 221.21697859 106.56461258 279.77639022 1626.27272952 365.78088175 440.92913990 40.19220892 98.14414588 131.42235562 421.66408353 398.45837251 102.83861201 36.46418921 152.90149142 396.66101355 92.78342522 285.48121396 1169.79592245 134.70969755 231.47970182 62.72327609 704.15085054 323.91810751 67.74744751 405.05668606 64.75666480 47.86086790 4075.30979176 897.55246138 1526.97124474 87.45231717 102.15530557 7.47475562 445.21873690 32.27287778 40.59543913 866.62161093 310.38419941 151.49746517 47.22216193 637.13009062 1774.52636615 46.54822215 111.35973676 408.93301449 82.65268860 8.47532440 101.75246188 44.04726776 135.81685755 269.45060729 443.13916938 30.90122964 100.49010760 31.96949555 274.16003835 270.15867588 27.64681545 52.55039417 726.85484721 34.89590414 1511.01267564 85.83437081 425.32256366 182.86340127 48.46514480 74.79614092 201.97696899 25.23280537 189.94315817 + 42.11110445 54.53041505 95.86127272 143.37412443 369.55999455 104.26377001 79.07895988 147.20499784 138.62816442 28.81134523 51.93415499 61.10979913 1031.81203788 49.23849221 20.83090363 21.76209121 192.17972515 111.11419101 1608.09024363 47.72002228 138.01235575 239.23991122 70.67374385 189.73224102 341.00389171 285.58521138 44.40815527 223.60808920 682.30203538 84.80839229 173.69862675 24.30110942 461.33452041 504.93621236 261.92167917 18.09007505 89.35259497 49.83535421 380.87642979 272.78969410 1632.11190106 758.19499365 53.24405435 110.43417133 11.62386667 124.96722705 42.35155978 836.91499879 57.68647561 208.73216643 554.14148789 28.81025618 5474.36386217 138.56358871 122.30048272 202.02616775 130.51526821 45.33249619 293.45964488 86.85425036 47.95717995 67.06048226 75.56739128 117.77142286 224.19600696 203.56923920 18.02883105 60.27464174 180.48782992 246.32988483 70.55484011 77.04892401 262.63520279 85.55689415 130.51778913 + 117.60589648 347.02841189 234.50603698 628.30155790 672.05356141 19.63995026 641.18460814 17.83908115 71.26904431 42.54001004 5.96864487 729.87675664 60.73696723 207.19011033 194.63203936 1334.36011999 33.51509926 79.84436549 499.18796852 47.11625106 20.34523769 223.23597975 1501.08407201 79.47284749 144.39982653 273.80702745 56.62850933 131.70101886 1379.38470217 126.51389053 125.68443505 57.96323083 114.04132054 182.83058968 126.69733664 109.29887749 436.61275499 30.19289629 302.27823995 131.98013792 56.09515341 16.00569301 23.66748198 112.92344503 394.35471893 278.02247827 84.42738971 558.00520626 402.99325874 78.98829994 57.16599215 18.21095282 51.93181767 665.36034565 354.31847366 32.88084762 20.62735388 144.28393416 45.99292331 959.63038229 32.67249219 259.04933874 28.71841845 88.56045230 115.08923625 2510.38184450 533.31363680 151.73537650 606.46090903 78.68037839 4861.26069474 1566.37211085 200.76652467 34.80876097 860.19506804 + 57.46715996 542.47573960 144.28547409 41.70805537 484.79998087 164.27752947 68.10315489 82.43372817 320.07465804 343.99028666 46.97349855 834.02976613 499.78418409 47.29815226 193.81543905 757.23171870 58.68841344 882.31661420 16.21687383 36.44763640 177.28897585 19.84206336 45.08822915 185.79700712 65.96665801 29.52192121 184.11479731 1141.50914611 282.88420813 66.54844596 180.00232477 208.48457258 455.65441025 68.11698914 200.57640807 10.90647495 125.53990505 65.02697904 17.70609991 586.92456166 342.52113052 186.21587611 145.40716171 1318.16423216 244.82379620 37.39334423 45.75270157 96.04087948 781.95743800 80.01032243 46.92870017 123.17357361 235.91452936 158.79445656 479.30835818 938.75724385 2119.51703826 275.79124950 110.09998032 20.28579746 88.99486661 73.55971533 17.97224162 32.04568558 661.63542472 88.44779369 91.90727167 138.17849537 130.29060773 34.64608458 58.89128068 212.59634783 39.23054882 44.47397979 87.70145851 + 95.80882368 263.75368591 341.96718116 383.30918109 421.56429304 165.28109932 52.86817707 133.37600377 413.63298995 171.93950444 28.92479613 164.88282995 95.41863030 132.24251192 311.96452886 12.63462272 217.77463247 124.44874509 44.01817129 239.77944237 454.77407519 120.63114597 268.42160059 401.51193352 100.42448736 24.44886296 135.14927716 9.57582230 224.20556393 72.81196339 19.05178493 213.22553228 248.37174396 80.61679342 264.41596545 1161.05479352 337.24164218 160.89239067 597.87406853 298.89567545 38.02481375 140.10877084 27.19293370 54.82528245 13.45831739 306.63924050 194.78040817 166.43279210 986.86585574 126.03938597 249.91833739 40.12717109 166.53098336 16.26158503 53.80009707 133.59670443 198.72327665 45.76933250 998.58977572 120.11389155 441.54489705 967.27202459 803.72991154 146.52392339 1462.88460803 47.15011882 321.48833938 176.33391309 4.34626242 124.71643467 313.78110958 288.85936917 482.63858885 257.68459816 184.69883924 + 328.45472725 73.96396142 322.59679543 465.50624922 676.12985612 23.38921347 39.19386654 1446.82808030 699.10998001 31.25939744 91.29111646 361.86210356 242.79524980 190.57963373 354.93647306 298.22810465 570.69387301 399.19516819 629.61773944 1759.68966270 103.85739217 404.54793579 28.80458092 82.65039862 248.20472122 52.13289967 448.66566386 339.10785373 246.84298072 126.47514372 33.04073905 101.95466742 312.18242678 26.79046554 131.65796127 86.77336933 124.30652820 175.22007451 380.71962136 127.71150196 244.85544018 272.96583117 22.43490909 24.85201280 667.76127593 108.56643007 517.89929456 1040.59049654 61.50819250 208.93792606 421.87748683 118.90604564 173.57077523 109.68879617 77.73297099 535.41736463 2019.49811764 68.03043915 200.81628307 217.28451089 1219.65495925 24.28716151 427.49978632 115.72523095 187.87903835 60.20036087 64.47403205 390.46706823 472.45955914 21.78428141 30.47510574 223.37356286 703.83513206 21.66899000 102.67432231 + 310.71761050 636.77704271 47.94995727 251.52008648 61.22573685 371.06233841 152.41578320 123.56864558 47.56501763 211.32792801 66.80958241 14.23972976 105.99315701 141.94016393 328.28289995 237.46180937 301.54105049 91.07996938 529.14545129 81.47740041 54.34614906 32.16580969 35.72400293 141.31922994 529.09093134 21.85971754 144.10122791 24.20625612 9.13132940 846.64892476 14.60023785 143.56496737 231.31493710 155.98184736 26.13215478 42.35045642 298.67905000 98.52534869 276.62808087 653.31037197 227.79507744 114.30542584 171.21795411 34.26917084 934.74306641 19.18857493 415.11270607 163.96829080 107.70444490 463.46526614 133.60525626 57.81407469 31.09253113 19.39763426 52.25500688 61.55181552 128.62261157 139.51347207 1146.79389770 40.42399563 70.93913629 39.67911010 936.92855949 395.85338947 370.54794694 36.53818921 853.62270683 9.06609482 679.74629658 238.63938722 122.57845076 399.46739048 572.49418113 145.63665959 184.91924091 + 27.85589737 78.29367853 150.75449728 190.17752868 826.18649371 216.48079776 540.54221652 158.77510989 1163.90713893 40.03992319 131.42143940 372.21266822 353.68603917 41.61400253 1493.93291607 1638.34217812 6.52697390 357.32660854 2155.73326848 20.94667691 927.23218435 953.20481828 936.40598786 316.51557357 119.97448027 103.17184818 42.71680432 200.16664778 9.03520179 39.77444434 281.25377969 167.35543799 294.30753079 184.55270602 50.41964838 1367.18984284 438.19814197 176.61090120 418.89562643 129.67690027 19.11776183 15.78416199 30.31827528 208.75644217 380.43875176 26.88699194 56.41452264 29.38970224 138.72325531 1258.20996705 225.14517703 11.65625185 258.72254112 36.17522505 179.93335783 55.54093937 723.57835675 585.77883590 52.55799432 332.15087312 145.18899665 194.36749956 39.93638767 42.07659543 243.11432573 69.72597710 88.28021298 128.10806806 136.13346900 565.77480352 119.21669280 229.53230570 3.56762280 218.93822305 168.59902517 + 4857.76690929 933.50708161 296.56776201 169.59006141 491.75301166 355.70557225 483.42776589 234.87283890 102.96042382 22.80272821 136.62879392 293.84642049 283.10547275 228.90181605 82.64864654 415.62061819 68.65547985 569.47527402 92.85326471 67.61131255 273.99566887 119.38455362 123.24108253 41.93257553 285.13434806 427.64763338 267.55450708 79.64195053 384.81769483 21.44175153 1220.98486784 154.32077886 154.54314881 493.99071520 1119.56858266 61.15067147 52.93931321 41.88983461 224.09110291 408.68380972 201.21217574 100.29027004 83.39718339 41.06055296 186.69049438 1260.60091715 57.06781942 81.58107133 125.42215761 100.78408552 109.13538937 48.45441381 268.56111356 1.82536203 92.52951943 367.66978740 50.13636196 268.68153766 377.83824497 125.01294132 1261.91640618 41.97636567 450.88737604 63.70233439 244.73231435 1162.26681066 97.28234630 15.01529675 226.76914314 294.63123242 36.54419939 349.16436883 381.79780706 63.77429175 343.81419965 + 35.52195260 127.69135239 110.97225101 185.07211611 154.58588636 242.60558138 418.62542022 173.74541457 134.67673544 404.79920829 148.64231396 394.70319917 266.05932963 82.83829190 333.91563209 20.96892845 198.12955400 213.84858962 341.69438188 998.51429710 4419.25785729 42.61323692 137.64531076 59.03831857 190.31212228 37.44733807 885.02248440 193.50206508 126.07421403 224.68265214 1003.97591020 1048.70107749 50.80333611 728.09649239 744.16712317 124.37908324 193.11914305 132.08483222 2385.12570800 768.39439705 46.82748441 47.89524539 85.90243356 282.30923562 86.46458856 38.32520485 386.54286764 554.54558869 1008.68988961 6.61194755 15.56953550 153.98221968 66.20394691 930.17834071 120.29304892 176.01530405 161.25439236 134.40527690 82.72308306 130.46204438 58.76090456 113.44148001 283.65770011 62.68302213 109.18609117 889.24082544 110.68309662 72.38333698 117.13832537 153.44727590 25.08307319 96.31527599 1129.37923533 123.33486001 529.91305527 + 455.40883670 131.11506467 773.69491323 59.77309149 310.36515243 14.82825977 321.06337727 189.63758255 3570.70370369 54.11855449 1096.92833712 44.14403056 36.16182356 36.67285611 47.66853406 53.38918914 98.02287904 245.35370320 789.69597213 2.14726020 4.89771520 114.64452326 164.57544805 141.73615218 14.48743487 38.65428397 131.47537910 302.41072188 43.41627783 94.99724579 65.29495851 95.49788297 526.36971609 18.16872501 128.04900543 36.48577438 70.14455655 126.47129252 411.13066639 268.64556491 161.20965682 83.52733102 76.00585405 153.61800421 623.66448700 259.41812843 23.71411259 323.29360416 140.93815355 41.48037952 70.43289037 286.48143910 307.75672136 24.30536162 1166.95377186 860.55167807 47.42921635 105.92133375 36.52813282 55.53862086 174.26680021 8.31594367 258.70489001 884.94398188 332.45562518 144.52581118 122.27533128 1199.29235592 30.10958061 780.80380374 221.77013432 144.49387728 306.54299123 27.99183741 209.05254767 + 300.31758430 18.17043220 198.55699624 260.01799832 13.52016365 300.19074801 72.89542339 120.10439974 10.79668878 41.68444177 365.61642330 71.05145791 168.31887127 59.87927041 178.83792675 121.95137527 56.52291622 111.52985939 390.61911974 293.96114358 199.13812609 286.44905338 41.34528978 50.50516060 463.11989410 148.50198152 30.58354278 707.95143597 94.91908937 61.10236553 736.34460212 289.63950783 502.72658461 99.44766053 107.33050907 156.46415739 517.29066135 272.79734286 1412.98605753 262.33033113 575.12123132 9.52265972 56.34018118 242.85417009 37.58206529 62.68367750 97.87302866 532.49705167 80.92878844 261.27638447 68.14317521 435.88166025 421.12479474 272.01143000 118.90332157 220.65180438 358.27439972 104.25851860 207.02335168 39.04057200 91.87658579 101.60340605 263.56785400 149.83390523 389.30949706 392.52589443 214.09616950 66.77923541 18.07165101 229.36241070 454.94919666 106.00354401 799.23636639 285.85993299 64.89905912 + 132.74070852 950.78374690 424.18491923 193.39729865 1107.24714196 217.67955260 47.37251891 34.96356505 153.96491446 2206.90034250 82.19525888 226.49905216 420.52508922 233.66011124 12.16915629 45.65899993 131.56314251 1404.50376876 216.61438035 191.69812925 11.47010411 751.01822958 449.03535838 1005.79485400 332.03266685 490.22679489 509.23776292 61.67099771 2135.59902892 64.38792283 284.44200115 449.50206971 610.55006130 32.87041033 104.08630067 131.41461343 127.67254131 1125.89539502 3081.95726938 65.52679726 81.78429712 614.58316817 16.17370265 1022.04227912 4392.58076264 92.23693842 22.43349808 43.75064848 14.97630772 340.84191988 10.13457800 26.24121747 568.47085364 48.84762585 52.45361173 15.14809594 36.02466397 21.68079353 22.00170250 46.86571759 109.97556910 360.96042775 567.72763672 381.32141654 626.99779273 280.18606663 54.40588883 42.72370990 251.90565114 65.42982314 168.25744720 1272.15580524 56.70474246 122.05380402 280.95878353 + 66.99997539 278.69421508 35.13589801 125.64952219 118.22937008 557.75628110 370.43251106 48.46927404 668.23901097 40.61827257 187.26295101 86.60610500 6360.29059496 515.54600580 73.96192246 24.99062085 274.99978373 251.48818159 261.18968349 96.56685575 447.08339466 31.19617154 33.88794863 538.75313645 391.39449361 145.85628438 38.13550911 134.55870746 64.45636300 189.62761002 896.57803090 46.79728053 126.85431022 54.79438241 1255.04737938 176.16324705 142.45310156 681.45249211 65.82309794 984.16281767 18.34532805 387.15267920 157.89873522 32.63805326 103.11710655 184.97076793 120.26015820 148.53389170 129.64266826 281.79464696 82.63461484 178.21134170 10.14002824 3.09966631 312.54026786 20.08415025 50.24921468 413.83560611 92.56002047 234.46310308 67.79482399 437.34809947 353.13539541 338.73319678 47.08005741 181.22174290 34.16079248 144.63211189 295.23392870 321.51788827 481.59632612 3073.27959131 34.20869929 500.94695892 102.42899564 + 78.27739270 328.88745158 70.29124988 573.24874167 108.16075736 139.91466024 266.57894089 103.27677411 2128.75539970 760.89940304 317.84351450 133.80982389 1290.31703539 96.64709156 3179.55490054 35.34553639 637.31247043 345.09705525 91.77599639 293.79533754 128.54883315 205.26668009 27.85264645 180.56763327 56.13954504 146.94648248 170.92790312 127.41867484 24.07827867 321.16458333 984.66703837 36.99249435 1632.33333626 63.09887755 79.51142584 13.04627737 1984.27930996 200.90062980 7.75336534 258.88525476 41.66971820 45.59177038 72.96042422 441.71963837 58.09057101 177.19085682 1479.59309088 204.62041194 1649.63424630 224.87981250 10.01434695 1500.83031301 77.67108577 209.14622104 100.72101322 868.25007155 16.64351222 166.71029251 272.31534397 14.61557092 54.13556180 60.59088695 141.37482895 121.26284589 148.10744171 118.78218712 162.82708634 531.64055577 52.82836351 530.72738909 152.47377358 69.13224078 556.39544816 278.99353116 203.16250606 + 605.33976764 196.90691677 95.06032231 12.65667153 28.94002002 1143.74223779 274.46948974 58.23325110 202.23176876 542.26069596 147.54655051 48.14736527 38.60251633 264.11548744 220.58391649 56.20342030 494.49903706 177.86234355 95.29311632 114.16953066 147.88431517 238.58002665 850.72635080 649.80570979 509.38548655 171.47965839 109.64696291 477.15651523 197.10225683 249.71370913 280.16102707 103.24292214 985.52481811 73.74530834 195.82611408 172.15386211 921.87981647 720.27214901 84.45442629 325.75650087 112.43125644 150.99457979 278.29023587 116.07467390 405.22248516 87.51030160 42.30264939 56.81597219 130.31773899 137.51517581 66.79205037 118.89465646 68.01366441 29.19748992 308.81686527 1994.44124928 231.38236793 366.78514020 205.35677604 19.90832956 336.66231709 72.08041750 551.59109881 92.58359172 992.56090033 374.81634712 675.98432716 41.98530397 93.46646380 179.63313361 38.57546986 663.13286070 1087.59482251 5.99019385 116.15858423 + 98.52557210 132.19864915 244.26243610 31.54829993 208.82137282 1928.02709528 347.24631051 30.18678134 190.66334973 46.17127941 165.61671015 14.22360903 415.41121806 17.30000557 123.35483641 113.10911365 34.03139795 129.02589747 186.08340075 150.82179309 339.29693467 51.84907690 127.05335586 63.18187987 374.87961717 64.04840023 97.87314245 15.94767795 550.37349167 1269.65401024 475.04690839 47.42011085 487.59390562 139.30914116 846.04685244 46.39070375 69.87652268 223.37085415 26.07891530 183.72968652 714.58790008 44.59507533 168.50189952 628.08728456 627.75577840 334.10405429 893.16549696 173.79572564 467.35860823 95.62783875 1654.37037467 2412.79728510 81.44749005 1267.06986098 107.00192668 63.41644720 26.79996153 153.02560915 424.20319707 79.99029121 796.17830214 23.68059978 594.10963334 52.93671628 656.40377407 141.02219672 78.18727288 80.50971345 222.43563553 43.68921354 261.21364513 175.67730213 1176.03730800 386.19140717 1395.19283452 + 124.33136615 113.73884859 19.10336842 67.85043747 2.37266560 46.12648312 33.03648728 57.14138667 119.84554844 156.43151424 13.35683566 268.64956601 25.89156060 216.05022005 53.20842836 378.40595832 146.15333627 1083.38382707 17.14039432 437.36272759 2929.62568003 93.86961236 706.97164942 262.12213411 512.92242222 85.21648467 819.03124864 74.90991767 681.31466397 91.23070627 86.38175095 37.99544359 31.68532512 145.25165640 164.59158672 197.61886662 74.85078754 11.96354589 130.88687927 119.84581912 25.60031507 16.65452414 2976.89617843 108.49127066 11.47894892 1213.83421264 200.14705273 24.93541521 1000.62447921 229.43863856 96.38220718 263.67554444 821.93372582 106.16279939 72.82327524 21.53917728 32.57591731 79.24612875 114.19894156 252.65665955 29.77962898 2164.67779532 32.57136610 249.65671852 33.59239438 23.11346491 204.40660895 146.09951817 6.35001123 34.86596681 161.26388998 189.86805771 43.21159857 175.64072596 157.33057610 + 68.43081143 64.09690618 104.72004119 221.58218794 532.55713292 2078.20147116 568.80050113 38.04145685 155.42372651 2064.21369948 262.70139261 225.00496082 104.68475832 44.96629942 41.50527153 246.75543547 297.52042031 22.41215039 90.76278940 135.43413337 411.04246409 68.41779193 257.71451462 23.65592001 418.03981489 29.71073792 132.80281961 17.64208084 129.28375960 9.37666513 499.24957013 132.54008894 60.23168262 314.27247923 62.44996805 73.48957243 151.00582762 283.17461341 225.81610104 2.95210423 111.53342258 151.23031675 22.30812792 302.02465177 575.02339460 986.06186966 34.86313554 47.30465790 54.68353796 836.24576001 41.85796670 105.77897780 57.68046946 146.49110306 1602.23928802 242.22767624 99.44203238 116.79076815 330.64150486 27.14236745 20.49325754 148.78811403 91.71774732 312.89754635 13.99652705 265.57566945 156.79789596 87.00470665 121.82762771 578.69951830 266.96252794 183.08801390 130.46608388 147.05112991 453.63819018 + 611.81315343 371.26758456 65.55787452 76.14227738 950.33805161 242.51445954 181.03279557 50.50813084 1553.07696951 18.79099301 324.10267543 608.73256338 19.13891582 44.68572699 85.92404230 189.53433918 562.43483160 589.25579887 16.15486114 507.15955748 25.22708868 122.55881067 69.58551528 193.82533493 65.40956914 281.28904469 20.42009804 287.07806906 282.09151416 25.18022528 64.61805518 18.46662551 78.03711983 106.66088946 825.19258100 30.55450346 479.89513894 224.11577268 36.95105649 43.85718297 1522.30129442 75.60574310 146.14254519 52.33976557 554.34367159 163.46878504 200.05627464 23.58277242 12.24947777 667.89053971 489.17101934 310.05087540 35.37796750 28.56548349 51.69358721 126.45752228 31.33785356 2957.75999495 334.06377741 129.97000580 175.52416797 94.03619701 802.03699211 24.85890640 1374.91415609 179.67812607 27.91009221 327.24761928 22.64024235 79.67137971 309.89052278 122.74466544 661.63693021 138.31582761 18.60099924 + 97.70206442 205.64625826 182.59396003 181.73723646 69.53147669 255.04312688 71.62250521 189.46208481 134.63614970 27.35782159 73.69412981 63.02177714 74.24555858 124.69427049 266.65044168 259.72213642 61.13371638 83.18562360 55.65856310 25.00683779 242.02881679 38.95758541 170.18620619 69.19517200 97.91612851 51.79776403 347.03330339 33.47605743 576.94314325 81.90619740 97.26508229 5.87226821 77.77581890 222.56736071 421.20995418 69.80673887 56.77854168 54.09041930 39.67238958 22.59771457 2264.66067496 147.26294070 65.95401794 66.64337171 171.46934147 1703.21661422 170.72461783 1193.97660943 52.38949169 69.59372235 19.14775156 41.42726403 996.25650336 42.79685918 169.18477899 781.96956730 335.74623544 47.04287726 334.55464302 555.78778116 557.09860593 101.93663924 10.92343335 13.21533558 56.68655014 42.25529755 168.98665219 99.51682194 257.29344451 172.63156215 545.62835369 20.84340759 855.35039348 108.01717626 80.39493223 + 145.89561043 314.61714650 448.71883640 116.65973894 228.54505691 256.30251550 28.08954208 350.12004827 422.78968742 14.04473881 9.30984322 48.71326702 179.89908898 52.44663269 79.60780187 11125.75293584 22.65755757 62.23311130 434.98513288 44.84521475 28.24844981 889.65650897 29.71887203 243.30883025 40.58367449 264.10935159 658.27054395 972.63107601 437.82172531 181.01225573 1313.83967970 383.88293634 213.23040289 73.74716070 76.60640660 208.01932624 207.72169483 319.33549496 1152.61616544 81.49688996 28.95651930 854.61502176 150.86334898 25.29710972 256.53964088 35.15164692 383.83683573 284.09058573 49.99392715 44.16949224 372.04788355 872.66880445 149.51254393 1151.79910353 93.78884007 306.35886687 154.18190265 30.52277276 142.96191252 148.84515539 1048.61075979 50.04111087 41.24585787 448.37897466 387.03419182 1032.74110679 56.18060596 8.53022131 910.71321955 182.20893945 135.41301784 466.67795764 40.72546589 301.81336080 213.51732923 + 27.15460097 43.27852513 18.94728486 39.66889640 248.60753984 37.31684602 299.52539829 336.55701964 64.21164269 124.13599171 143.63477556 908.18867023 102.76324256 217.21054665 195.56364805 58.51076244 28.24912759 126.75708879 113.03781676 41.04093820 59.67332947 32.04814733 540.40617496 25.45288290 58.50793063 969.38858000 164.72997412 80.18163326 179.63039680 77.17188307 1204.40035976 1300.46737764 254.60408878 455.59441193 147.01505709 223.81897543 66.54812439 146.79044010 159.02437677 74.91341472 1023.41081440 205.66324274 189.20375497 90.06508688 337.23025503 117.44701085 2510.71392040 67.81803830 60.38070365 20.16750586 34.24564971 79.19243784 700.93053559 69.65738287 2060.05464518 45.95447362 30.28330561 40.24189557 151.92934507 176.99648601 277.03111293 8.55946995 696.64636391 135.44542560 183.92206068 288.37452693 708.57574571 105.50272165 383.21469836 283.56381165 56.25138561 21.85523032 194.60055648 44.34107560 616.58067924 + 240.83094271 42.95298172 44.21216292 2037.67206706 110.32944481 164.03632955 43.35555435 212.87941558 505.13137590 29.84802920 215.95414918 43.21124167 237.22947003 847.09900793 757.58044830 330.11787431 334.05958160 426.70256610 14.11385489 19.76740008 118.20069400 33.52964126 37.43740994 324.99007584 169.57632966 1057.46055312 1061.78977236 60.09758149 29.26683471 144.11073538 78.05669028 363.74298676 101.43155508 282.68539329 177.59602376 303.91913703 32.68880003 391.05890659 1650.34549279 212.68790051 132.64145678 91.22001723 711.20132284 54.66972908 151.17111853 9.06925412 117.93277596 82.79330581 596.81748573 152.58868148 338.24798330 300.98061734 241.00992447 135.02711047 478.54235593 274.86195707 190.41662958 55.97095239 264.80872063 305.07520578 37.57932382 1176.78691249 81.55411999 817.08594882 71.82890044 6.42130208 237.10324763 145.88396445 33.65967123 215.01474571 983.00227467 1456.99264551 547.05624102 209.30477551 96.47788803 + 155.50334501 149.24501857 116.40711335 165.08049178 85.34724506 71.79210634 136.79014040 18.40548773 94.12899418 15.16588168 28.50504217 22.69488178 51.14924410 102.03201906 5489.01837854 206.71068157 61.78735518 241.05834112 5.06790424 1618.64262262 78.39632664 307.68177916 9.45220803 15.15463118 127.82390222 87.50634908 166.24801566 650.26695379 76.20238376 74.35054192 560.83994063 806.18599681 50.15607948 14.11106369 529.15495180 1501.79470636 45.28311927 354.65337816 837.41825052 35.83137471 39.83792858 452.65943672 398.30805247 142.95663906 265.48520525 158.82627272 15.73587084 49.09966269 28.98057914 324.00716997 100.74480327 370.82124595 85.36446941 51.61122868 22.87310528 198.74528610 423.58030734 62.67081021 35.55653548 780.15906277 57.50065683 180.36605113 120.37430933 53.83729254 33.33664989 40.87045790 256.19955168 104.96724159 319.55278050 34.13830433 75.02356783 279.37793365 306.44915252 244.66241230 1122.69834304 + 48.41341071 218.61700968 1247.50743805 456.79961405 492.12326035 121.23469253 97.45371548 146.16261981 37.28796410 573.74935024 126.01951956 447.79342987 59.71052677 429.02011408 286.24473715 5042.45070665 73.98066463 26.74786216 190.83254233 335.81744450 88.94667765 575.33821507 507.83402852 680.82497381 1940.64985588 83.22352860 171.54228160 42.00668697 160.39298335 26.21614942 188.68707460 73.65841098 543.16544916 405.60884549 85.62759466 165.76229889 46.94276769 125.46658653 197.88226875 27.23205234 34.99422272 195.38269299 128.76743410 96.23370034 256.37705326 189.72705563 53.86621052 105.80873613 263.58172631 46.20370005 197.09419556 43.55828055 264.46602595 112.02039693 39.77984920 26.39556111 47.33244364 170.72156604 166.17282365 875.70011111 22.89338228 153.54559171 21.77544276 442.11749150 224.39071126 2032.99358833 39.45366480 84.19106500 917.00200434 36.21551720 296.64177894 498.02186766 54.16380125 218.48134595 19.33955137 + 73.20641251 893.23231600 68.11376525 175.73668923 104.01296107 797.81541127 142.21894027 378.35476906 46.06660794 48.43574992 1014.10166856 150.02504215 108.94978798 278.28055852 425.17204560 36.16477461 30.78181508 280.12726136 212.43737195 328.00187003 91.24874555 222.16477089 53.21260844 132.60173328 62.59661486 424.19940218 146.41627552 145.11935376 88.54591769 15.88049812 692.72696346 494.21219794 48.88983070 128.13526685 267.71961608 122.44606247 1749.20240090 624.32433327 422.37151432 287.36296601 518.38422569 304.54232675 1311.92708440 119.71815889 757.48516188 364.02051445 85.97036025 40.65253351 139.63295136 227.58522170 95.77446794 206.11266116 1039.47912985 27.69451487 139.65269725 34.39214551 51.23789451 128.48205390 25.69356957 314.42884378 70.16372397 631.57832356 35.18945725 228.23229488 56.10248071 165.01996335 126.58756496 64.11894722 410.88510666 13.06424277 680.03486743 269.61042174 128.73374676 313.34769501 116.51751177 + 124.36810659 109.60551867 71.20224691 66.29595890 186.28000216 42.29835789 76.36702369 184.25496513 102.17716682 18.54496502 56.60364632 68.68944837 44.66988209 71.91059727 204.29835562 0.98329298 41.27016305 509.26196687 679.92266952 204.27014966 50.44486127 785.55384861 35.91148963 516.41995282 33.92128008 428.14301198 139.37342545 534.05427966 537.16837609 111.13843880 163.61555904 155.32947324 45.17398785 464.74069744 21.59650049 241.97048908 326.28945921 646.77761756 861.43953372 261.02299132 2147.63661892 123.05602244 650.59385369 133.52704083 423.34052055 232.87311166 457.13705586 347.16365057 161.12737448 19.99825700 34.32305056 46.96434610 21.39525873 514.37074450 856.09828860 403.85719742 336.81605584 109.25742774 46.84854309 108.16872789 247.26767564 1392.74176450 33.67147327 881.32703285 268.43086311 20.97875415 48.14887237 135.28405534 67.31240043 77.94833379 36.99853919 187.31523786 10.45232136 108.02631302 320.24403956 + 85.40181930 1154.35161939 15.39489432 200.16567841 17.89295463 31.58810738 137.86171896 20.30710362 26.34460913 41.96799142 544.74655193 202.55827504 167.86240649 467.88435473 127.62117623 313.78877671 36.03200172 93.48452318 42.61480394 101.08618871 127.20917218 1571.87483621 200.74892639 113.47472791 60.50709630 89.92982139 244.92492487 62.84905247 792.20117548 147.55617418 209.44806060 111.93911377 78.78893464 37.55351595 4099.13258101 198.91835903 106.08294589 469.66953272 196.76955042 172.42756937 204.75771748 95.78824401 314.09288873 73.46407378 52.45937593 185.84614208 414.59933199 75.87561136 607.72841394 448.43055090 315.78879586 545.53856385 32.61100530 371.37939393 175.97328573 271.22131141 66.66221312 248.41462684 76.86512874 390.29344440 179.98048747 358.52164436 835.16373072 62.52182708 91.52541577 157.04941444 153.85790642 30.60298691 10.32307146 82.55282096 3395.05808692 180.48721898 142.14659565 206.81086055 93.00582507 + 56.08458624 11.73361004 428.23229160 1307.10077336 692.49758121 112.87032766 63.13288477 107.33347956 78.24405998 138.76303387 1419.18593074 394.18506661 464.84651164 124.35388881 16.28232738 3516.69028638 307.04615555 63.63672943 49.95219348 281.85369588 45.75748864 672.89736282 681.23451150 1058.01816962 1656.90064153 45.93740993 53.54631633 335.84877112 77.94857025 18.86861109 42.65506432 151.68840634 254.05223088 98.77097006 213.51695721 88.63799432 217.35326504 81.26085622 72.31237674 101.33978706 125.68898148 6.59713886 85.54793489 4.07471681 18.19941231 2806.34140662 20.78260232 148.94134702 640.94376310 130.89715747 63.78080771 127.10370308 139.34197157 456.17000230 100.93718528 179.00600083 32.82792363 486.57032261 552.30115550 177.18954761 447.20217806 40.95556070 121.92323034 95.05350438 186.52434458 266.27503880 1794.43146874 99.23843109 80.54863035 1255.23358886 44.14068131 805.48595053 127.05706406 298.96045747 242.36765660 + 194.89360735 200.10344331 516.91071732 370.98310858 21.52570592 900.59220019 22.74600268 136.18324920 235.39195369 8.59256791 41.49826611 481.93232732 64.30663911 182.65374598 768.57715386 623.73478092 132.03822690 1067.22563290 103.61509528 218.84693876 129.42884631 8.98557454 99.21595206 3883.70854070 513.96033821 391.82124630 60.67738712 1447.74451244 141.58376184 100.19372189 8.84407247 1259.48443956 211.63405799 198.92969323 70.09456537 86.81356164 144.32552742 99.41272734 445.82443218 61.82230539 88.48928925 43.10185259 80.49172258 66.61994313 202.59925249 70.04733799 49.99937006 174.59820873 192.88450090 3272.14452552 1298.00833962 87.49029270 284.63221964 1105.81730487 353.41217639 17.76260596 46.64277377 177.52138478 949.88245560 630.60380953 202.03615179 304.86647847 38.13639354 145.04268944 1271.32660681 101.68250291 498.95221874 391.98033277 534.33851478 155.98650245 4.70439925 319.76056595 246.25937437 17.90397913 381.96023348 + 779.44326096 311.15809718 315.65632861 1932.69065810 3145.61652264 22.22719030 175.96418421 320.25388307 1743.08786759 239.75435513 145.25284666 515.46701908 193.19071478 22.91682576 69.46946077 2061.73819106 19.30384433 481.05052803 33.48273596 128.17981192 172.66461844 131.91023920 302.38801725 134.94037973 35.15642135 41.94713460 521.24442814 84.09726442 1386.11467291 358.24352119 27.55184302 15.19544328 60.96472354 1667.30058517 3601.38270956 844.81682608 46.56729317 1174.38207089 189.27180147 82.31785067 1409.37230576 557.91452387 328.54596524 182.50951940 1653.82600357 672.74289580 871.17811537 792.30023756 39.06107828 206.87782204 1061.61274914 283.75826481 63.18247759 692.89449172 112.22835384 200.36981583 154.62889558 34.03977191 238.95143228 50.54083436 134.09127257 54.24535683 390.20551917 329.80065566 54.61540510 3749.86671242 201.12972606 528.83815976 1009.28010287 190.39876841 203.45356395 606.57669117 117.18005696 122.00552568 70.51640601 + 565.35674466 57.54377725 218.17996191 38.98228307 83.36833429 47.11645011 119.91980282 191.91943449 48.75898398 546.68400925 396.29581827 65.74555887 1086.74693415 75.30669639 202.36334734 103.47034782 1460.25643737 312.20520986 87.40167748 44.09843127 110.97782462 4766.82715154 113.20878505 23.47002042 725.45825987 117.68707441 430.72647936 204.48439114 436.93762824 833.76201879 179.13761046 127.56293027 235.89006348 237.38393338 74.04918985 328.61710440 473.55525356 1024.03500229 208.84206362 34.05955663 308.45335979 94.15818319 20.14999732 402.06146131 54.84458688 1002.49118770 302.68595505 142.62496844 210.05616628 720.26172828 18.18547710 818.58229242 1033.40319104 134.47970427 579.14109396 215.21520311 23.16308459 656.93956544 137.26243014 15.23085588 1979.40401578 292.05545037 102.05521308 98.45010568 129.04063256 50.97878007 1171.53284198 1474.25068522 253.60757934 113.35916035 467.18045108 280.78577672 106.87614826 77.43532848 30.90491290 + 39.33600856 88.66003272 429.34856126 116.23110125 178.26237115 561.75492613 120.10210023 385.12252958 294.45217900 274.90587420 1567.22859408 177.82760563 159.63020941 38.49057458 64.24859269 60.67916918 128.34128700 1392.80712876 627.98285362 133.86363696 163.20952221 730.88790946 156.62607680 6.71812109 102.28109900 3102.46150639 33.79155961 232.91212583 29.52832187 140.01624746 59.78419555 38.46010424 12.76537107 41.02807921 10.61568068 23.66232380 911.78194880 77.35005859 69.43818243 247.91473197 550.95691336 1014.58114296 4732.03799448 73.60497415 681.91663356 31.62342033 243.46645828 272.33099697 149.52505150 157.07707917 70.85184428 47.06440285 70.50370735 177.37743824 263.68757989 1425.47043707 101.20595366 405.68682357 74.39443877 179.62959253 113.57039142 142.18511468 485.31130415 62.15826664 476.27106161 260.26437250 98.21218198 120.46258832 785.58025079 101.26682993 228.90441090 12.36096898 337.20440321 1003.04307669 366.90258408 + 80.81142270 86.87192275 170.55163986 186.02743709 132.18131970 273.66850372 71.38156439 662.10918466 30.30906903 133.15226531 219.87971107 95.14781972 129.87234218 362.79956340 377.25573515 510.67312242 110.61940396 76.27557210 156.91061739 953.54681634 273.49838945 175.28014789 114.21267131 1432.09494932 92.33645580 290.39268383 1029.37802392 115.49639999 60.55187380 126.81958915 395.74393043 126.04481808 116.44903190 1374.18412207 186.37408754 7621.13287821 45.45004747 39.48969928 29.76563450 156.79754433 332.21049153 306.47615231 75.66958748 145.39586837 155.11086808 96.88398548 4683.21250285 261.03793170 306.85093764 140.51662466 28.72093634 62.93270359 176.79138312 23.41231099 3405.81560123 36.58822140 521.74985025 270.49093216 17.99720890 57.49494734 174.08691280 653.04738271 38.60750588 64.11657020 40.54016041 140.49257029 132.94923070 123.83283771 121.61048021 226.62913710 73.12624380 831.76127852 655.61826161 43.11595089 1306.66762912 + 168.61490824 208.95496258 152.23720173 794.05662397 117.57726207 101.83106017 383.75147542 306.98723450 43.79527630 142.70713647 64.69642526 86.05201889 466.10897657 20.82432866 23.93457160 100.80274711 29.75630931 124.11503024 362.01827942 1177.11928154 135.54805008 69.41906611 34.55660904 710.17935809 171.00114234 16.95540541 818.22566234 264.48824186 75.80942725 952.32846458 83.05380349 2557.23991992 264.01906445 133.89969196 103.59124960 105.24631277 61.97312770 412.37146677 110.40220806 246.85043842 300.35911616 99.45066194 935.04090068 233.23314033 155.07088665 19.31824724 164.97690413 91.29057476 433.04085157 33.19170512 95.08179966 82.44380102 114.12137734 60.24545142 49.24717570 46.11168416 277.13636583 218.56295746 304.26153058 1526.33923413 624.38554798 558.65215334 204.08114845 156.55725371 243.02969338 66.43409168 59.85133073 2750.25108153 125.21420859 224.57985831 306.17656146 26.13719991 344.42119466 713.74059357 94.36650754 + 323.75716939 139.64435912 1098.45129166 228.45847818 125.60689802 31.34871194 2275.33333742 41.42615131 43.22387132 172.86787562 172.55776462 172.38807988 146.12278642 32.91553185 82.03425636 6.65437631 132.87836749 331.55544460 79.95572293 52.88290951 700.24285210 1576.05197031 146.85355437 123.95256978 104.97962706 264.48083405 24.91722433 438.41507904 83.70667100 844.23674349 174.53695344 70.28406660 1229.90894880 73.27704295 42.88273257 64.26811763 492.70807546 26.54204778 685.36270412 149.72690521 896.64725762 99.11977551 56.99321127 121.20301590 88.15671067 2044.84438734 390.30202443 65.45299099 75.78443455 113.26392809 59.11720909 164.22138806 244.70568425 42.13542078 126.26192114 872.76569347 121.68025433 108.39691521 683.36058925 105.69631230 142.57480166 75.08465581 41.38404999 310.38713974 77.52623767 64.84153251 52.54892122 556.85935792 52.99590246 492.76879040 250.12365844 2.13872096 315.84751880 847.24385690 136.35232911 + 156.54371989 108.51173175 192.71822511 3446.15594154 125.96140752 141.58625923 189.59188855 1534.81796271 234.08839052 21.32961998 476.42237994 175.08850430 620.36496432 383.23423241 1063.30515825 331.07794759 35.20861890 58.17702092 1407.50131589 2184.41366584 126.02309390 49.50176811 125.23957355 644.17667787 368.02683393 483.55834176 47.66043776 547.50899487 40.77239571 35.57302585 337.08854469 51.37295395 118.39654410 9.69682449 916.37912730 50.65820230 39.20606623 45.31137789 159.04896893 40.21390302 255.81310692 44.45168785 346.19632983 48.50612091 73.23178853 225.92728007 37.39909202 1313.77217615 121.16599225 50.61341326 448.09968562 17.95548028 88.40420573 509.74750812 134.75024364 92.10274740 362.97414738 303.14734961 139.70873368 179.45396928 433.50513132 86.00609952 110.13731833 158.12107928 656.39786220 544.10132719 221.95962624 273.64194668 20.11244584 326.84548123 152.24389950 716.94970443 145.41591163 212.23961277 313.48927976 + 375.43210298 111.93193435 164.54122101 3177.29827764 55.68301423 62.90612217 433.28313076 69.81058826 122.13154711 924.53207252 100.36081350 95.12000268 427.11172447 163.21747874 263.86299714 2002.46237320 379.63127609 218.35838019 139.23154384 199.76945139 114.76800057 423.77583859 466.09777869 113.35714614 119.70426370 39.30377516 546.39437201 32.45182405 148.91379126 209.07771688 148.20874085 32.96593245 563.56410911 1200.11846399 1923.27474581 246.30835001 166.70503878 270.24419506 55.19212329 30.22681126 169.43856034 50.68655132 117.28578125 81.50420506 291.00230032 69.97523972 76.40877871 117.85172015 1513.55510061 745.45535509 55.77849357 250.17593672 39.00441024 225.82448882 1371.13706604 142.01695407 16.18919144 228.21754719 1263.14413824 239.69412623 211.24960887 1465.05169308 368.29084413 787.75783740 72.36465729 234.34583897 94.15769011 7665.49853465 1189.44429855 81.12554413 69.52433795 284.29375239 169.11565399 2314.97107757 1480.61580336 + 39.84693191 121.95044020 255.53631596 210.00660714 412.52309132 351.30774748 23.03683719 3893.25040421 169.98572427 83.82636662 139.74843358 112.88100168 556.54140800 152.77919121 105.92368128 301.45417712 187.74877156 142.82232029 319.22366740 756.84641162 83.08130506 119.85260896 104.40239760 66.31023782 20.02280939 293.83512988 162.26223026 151.49257442 315.01610985 231.03188461 26.09632301 19.44832126 115.06958277 492.74329161 156.66073198 348.54744641 36.76461861 201.65685571 352.28411764 313.91479877 72.76922989 117.03221453 351.99519501 210.77818996 625.52718747 38.47445232 1349.04966954 465.65418907 129.98783342 234.18673137 133.72663692 73.25970678 23.09943674 20.15973867 2.72240647 159.16259119 36.81336649 57.68201528 94.76776245 137.43310585 79.20878345 131.30730506 73.60012077 145.04739099 800.12338200 61.75460976 44.49822513 71.41963934 38.81505095 1045.21649897 31.99530478 54.40044166 15.20076022 9.98357115 198.21361818 + 144.49644082 915.99877620 522.38248868 188.20143075 164.50973662 155.41049437 607.12881170 64.54117396 21.83417937 565.70100384 342.75406456 337.24939556 290.87693663 75.38096067 80.92287107 71.26456962 260.13884447 70.26761101 62.54760691 13.33339220 209.75225869 98.19452287 71.77204859 356.35597621 447.85590200 164.42095348 55.28848456 133.63691112 44.42043945 21.87396112 12.89069102 198.65426697 96.96217485 206.63758911 366.51569699 39.94775772 48.83264703 66.85220365 261.84903092 1916.78517904 609.40823984 146.32050150 1964.15094205 128.24460326 319.15698862 27.16659692 34.04299903 419.07429354 26.17174445 525.81393057 82.46434188 238.37960465 823.49847143 206.03883722 47.80486577 21.85584096 568.21524762 31.29693536 20.93637719 77.82156255 147.47636616 23.32037951 165.38454347 759.54442865 46.10720931 14.10151942 79.18208424 1039.81051386 220.71054474 239.78749681 333.76557358 1576.39778579 84.30062779 196.03071726 243.61086598 + 563.00950616 83.23003984 19.23538118 17.85078441 105.32863954 27.82493196 39.15787649 345.77415517 263.50766108 1494.47615383 285.42560958 61.80923372 82.81890159 80.51385599 60.32002619 10760.08493283 25.28924597 106.31455588 430.67806670 31.23960518 232.72584654 67.66331977 174.73907241 407.87437868 79.59126830 118.87059966 248.17896891 131.26933938 49.26052439 24.64822938 201.65139038 521.10390303 40.92980323 16.94436064 366.72377044 107.85813201 47.58641362 61.04088031 34.43131036 91.42431867 557.83209952 1894.25604116 71.96729506 581.73419921 112.06546231 312.30469452 256.79704946 1175.81278863 12.00191157 209.41386117 78.52014579 585.56772811 148.82442194 245.60393443 23.59426435 627.02975564 708.58396477 176.97964269 66.78405201 257.92696424 67.90045888 259.70541398 3565.84356096 171.05041602 27.86603979 51.25475731 370.05629618 2510.88980841 217.23508743 45.24342434 339.78586707 53.73641755 205.13686524 557.96593445 21.36040523 + 382.19692336 484.49684825 378.74291249 69.71907715 1381.90713333 81.28996215 224.00065372 609.06124272 9.84875650 107.87938291 242.32736705 979.32712529 1616.01129493 131.70769230 42.69289828 182.32668288 227.33328322 205.05139703 97.51972053 1156.10750860 82.95079617 39.76006630 467.59833758 1893.28452458 84.15448338 559.44448201 986.28764504 86.65799936 60.86353352 53.03683396 99.36982072 989.61972653 79.60418364 264.92469081 195.01803924 32.19324471 233.37386634 239.00456343 12.00388884 61.34347338 16.36658236 163.48323643 152.90123712 387.81163338 202.29069584 228.61133952 919.86058209 104.91889326 1070.72963196 301.16313998 143.77274148 261.16582334 88.78837097 73.88273973 561.93069570 249.33240149 111.42660128 18.53222803 380.77952072 118.81276569 436.35934456 136.69628232 1176.17619648 163.68109290 110.89888512 4102.00432369 98.75950968 235.91612642 163.16134096 135.27343448 43.58096361 74.76521192 3232.50774440 288.01576551 94.52173272 + 85.11723181 43.05153255 275.64389160 708.19893211 1059.02342250 388.78454062 137.18956423 95.53443071 2772.37996168 1196.07183116 257.52659673 258.70874636 107.63347544 7.11106106 226.68963331 120.04903608 484.59620754 433.81835122 1208.72712168 250.21207740 346.40403367 56.22568780 19.49425355 135.27217017 159.63557238 193.51291027 71.79302006 103.80525316 888.37523305 233.85249984 174.47700737 139.06008908 34.77947497 66.99811159 206.20640952 465.44275549 413.41721960 184.88796214 33.77074946 775.04751540 393.81989005 36.38820735 231.38609215 333.02924901 39.59517810 955.75993026 222.71558867 136.76475755 68.37835699 111.80889499 319.00259059 32.26097021 57.44349650 20.53188323 627.97883315 418.73194925 17.64774247 458.75780913 362.80934528 39.76051130 187.34084026 70.63187920 66.61372522 120.47462695 215.83313588 166.26559521 50.35792059 160.80660849 147.24186593 105.93676518 476.94880247 22.59770804 610.34989063 17.06247163 111.79155552 + 198.12227709 172.95656018 173.59069743 269.40636403 343.67277468 36.02756108 13.03501359 115.39168655 168.49527489 390.97409822 21.05243760 286.27416038 318.18472461 310.03498774 58.60078204 104.35203099 126.25420268 116.24496796 68.15176344 543.50152480 25.11356565 113.70153027 1587.10610308 78.27099257 128.65119515 147.80342249 147.45421960 250.06595224 73.84931124 186.87442101 50.44274020 434.60429878 566.10978394 117.96306569 8.63535383 318.24205620 1913.29368179 17.59374079 101.14885036 431.55178589 471.06053346 49.91736665 321.72707470 68.68051440 35.99112613 255.75758219 233.49849845 94.45659825 25.37941040 72.06165271 200.11725287 10.55474112 191.11578999 825.15705058 147.21128566 190.02248903 50.61859969 59.67626054 62.32685507 453.86918682 161.58728950 1094.19378368 120.41061925 217.01758369 98.10784528 412.82004900 298.13759769 123.50976934 33.23822127 32.20998333 995.88418045 191.52702403 161.58754567 823.82169659 164.68763049 + 196.75020225 67.13312027 59.21351773 54.02875664 145.44551478 12.23517115 942.43360359 211.45803175 51.67552910 225.77825588 92.20469329 219.29082789 219.20964932 50.42046131 59.16863700 161.96936594 1501.61892531 86.60748147 164.81264055 83.92133151 58.61049309 290.07634682 236.75634803 13.32939317 89.69135674 14.30429130 82.81845415 61.75357059 342.71372750 350.32061870 179.16951992 188.32621346 1220.91744487 170.30532698 124.52233282 417.37758957 663.44677579 91.89776561 64.06306575 101.00158512 240.21016213 872.81382013 36.36919975 78.04857270 310.15359084 20.83133428 268.29364957 77.21209998 453.16600929 524.62199123 140.93967842 302.02284984 102.24056511 9.37282023 46.09928831 870.96734696 2012.27423352 199.12591317 23.13233843 95.72244225 16.71836671 6.60384644 153.48908685 260.95753999 60.72152465 213.24537237 717.42794435 424.10102793 155.34409798 7352.21305213 357.88017717 1194.16611266 310.55403983 216.73368392 646.87805406 + 69.25890327 20.10898723 1522.08812657 156.58688942 476.39357235 124.26778797 55.77061355 89.43930333 71.25830746 74.49747335 204.20748499 28.13736678 72.74362124 53.89036028 197.72410700 1138.92911444 146.07643583 33.08159848 221.38096367 383.96256798 36.55157192 42.18928966 357.70775047 330.46905161 163.77317647 69.78350675 110.16930278 38.30926549 385.83036252 80.91462661 648.25984337 15.36835755 67.21399029 120.66712174 90.03714039 115.09516875 206.96563202 398.66532758 548.10211124 390.84873303 527.88335501 87.92496131 34.44827160 75.11898708 48.44843086 12.50561096 12.24682746 50.79467490 12.35164167 55.90307049 275.28279452 148.18222970 150.35923190 239.54173960 92.25780865 295.83725962 617.38529444 136.59751135 402.40337553 187.36275685 161.56686067 38.20525222 742.44177085 210.47805343 270.35989947 322.18378657 2067.94107298 154.16707158 51.16033382 189.07784712 357.84550772 63.40200438 242.46352385 112.49951375 225.32779796 + 767.14680065 115.00270501 8.50672864 423.65523359 156.17310085 17.26784112 657.16781642 220.15159777 112.11852518 55.50996015 79.94496953 365.91672218 94.82776987 33.14848560 25.01238084 36.86531075 296.00825813 43.82413549 67.28833541 285.18059183 29.96918856 348.31615502 104.39223277 512.29154429 143.99468705 10.32061088 235.96254336 715.80896799 191.06193425 141.74061159 406.63133227 247.86876690 82.86521966 32.30856267 67.63294158 394.48349028 732.42809300 150.16859754 119.56845952 437.72903805 661.52891340 47.90274689 173.02948565 198.96382754 350.58682512 385.85110149 348.86145056 70.32406617 810.42999554 344.64515980 50.29143542 131.82851372 129.35225508 228.53250426 11.31590385 82.10094398 141.45551101 56.93906298 339.36573517 155.28499164 13.08082431 3317.71830189 747.99669797 113.31418947 339.82390001 10.22989042 154.83825915 805.81302660 52.06865067 293.18474826 47.38153082 86.69421323 45.96857321 272.71734021 97.62015018 diff --git a/test/data/npf01_75x75.k33 b/test/data/npf01_75x75.k33 new file mode 100644 index 00000000..33788c07 --- /dev/null +++ b/test/data/npf01_75x75.k33 @@ -0,0 +1,75 @@ + 189.97956251 427.10445100 1035.61112686 150.68564976 139.85563178 410.39187382 412.05506934 319.42320218 121.49827573 142.44767115 69.97316752 15.13481540 367.17455210 119.34508915 239.35249069 348.00755777 259.29494081 1208.16176240 78.07163958 251.13839486 839.30911896 128.72620911 8.28805790 461.49168948 101.12848457 1084.67730545 129.87265398 429.48657279 1629.66458384 44.18838356 359.99284397 150.29346065 1933.31943208 24.99075236 76.32873278 78.03976537 153.68776783 129.25287613 259.70604223 508.18280608 165.35332587 20.77736491 95.04448043 479.45878006 60.68247650 278.44067677 275.39783065 46.84400896 97.46621947 56.57169781 102.91795227 68.99563099 234.87083188 37.30914924 82.24455741 91.38419844 740.49701714 51.34425686 3758.79364324 973.40340929 363.10544505 374.76203106 767.26321012 436.03956590 1408.10706651 72.65196071 108.02277677 68.42859339 204.61215262 129.01161467 66.49923403 185.37394655 36.74890459 92.16251970 2219.52700841 + 115.87161969 284.68727505 43.98296459 82.24420442 162.62959503 135.48317904 33.85056012 355.44894885 411.44320586 692.49527405 24.24879584 114.13105270 90.20407976 144.00583814 10.72111632 292.37985238 344.72208150 338.65322063 78.33270030 394.89175303 123.26200948 779.22639612 19.63542436 72.73792199 63.96811256 148.09836359 46.86919287 104.79923274 463.56636586 136.60660526 380.24468109 279.28836893 83.22971111 692.97139553 192.76343600 161.89151348 565.11467044 146.23527401 52.58972758 732.22843097 2398.19347027 272.03689279 175.16187839 1078.03139706 860.43321332 96.91781870 625.49444117 91.91514445 2212.46531645 130.14234785 722.32385786 325.68277688 20.45658229 84.09236337 141.18931937 786.01373927 151.51387143 167.88443691 168.85043088 213.40656754 118.66436792 97.65238779 47.46112838 69.66375357 1447.39757883 156.93732227 424.76058358 105.43440161 22.40952635 310.01117188 45.30618253 68.51615895 185.30356612 411.75418749 51.15564038 + 69.85577992 171.99573620 40.44545981 534.60975029 63.46373942 686.94097009 137.44568484 198.81554714 350.89493826 391.08771644 194.44607695 195.02105451 14.51118034 69.59968394 824.10455124 43.70993776 39.32967904 21.94930471 454.85594201 245.18217162 212.53679254 427.99819421 11.89618104 274.86202860 11.69379566 78.55346943 105.17125522 118.48620183 261.72727758 42.03667049 375.70702427 95.77952606 360.35136299 3909.61819046 66.78382781 10.80205414 374.22800062 2293.73530080 214.27214302 5.27915710 205.01656084 179.54179848 874.64803903 140.86283414 311.73951843 30.87708584 60.90333047 147.10067722 122.24596040 31.05533781 222.52153864 90.19892022 1302.63299987 223.52000957 671.20757327 156.39818993 206.27684067 10.94202393 57.16751118 160.67013941 12.29237807 75.26342049 112.72820874 208.72395949 110.49646242 52.35059455 372.14847663 34.46872875 1696.14924810 541.00455835 379.26442735 31.53857187 116.95188711 72.83540508 79.56737589 + 724.71444018 27.51030380 224.96695499 496.49549179 101.60263574 293.13776970 390.09067024 51.87922432 540.90172061 318.92662039 124.90645685 360.04901249 46.64443523 16.97901034 104.57951907 554.13980807 362.00689090 331.74470833 14.61478184 40.00605768 554.38296573 1078.08174951 122.62890763 268.88681258 73.62786879 288.13506043 57.84287229 132.83591712 100.09694663 29.12903286 35.58929725 215.18648205 69.68042425 596.25278239 533.26286873 1611.73999948 52.12111531 115.01553988 233.49194696 545.11792892 33.00142731 151.90579418 25.22493989 18.51693502 64.30323811 503.22456511 134.01883250 44.96399449 84.55012730 158.34561260 65.41912763 107.48241843 263.01214375 1237.71348536 524.27090772 86.95150582 288.23426307 150.55686682 5.97642160 61.57913825 82.28499404 167.75984488 852.63629609 509.02417043 510.38948418 151.68716167 175.30885518 918.62741900 100.03972991 16.31208351 437.20483914 284.63748221 75.46352940 196.17733176 15.00747763 + 14.39897004 2806.51542975 218.21236816 472.62671519 51.28947065 53.63706686 609.02482950 207.40921134 27.91824033 783.66575995 141.28938805 126.13817401 26.16591826 116.11700841 469.81344838 44.77497959 51.95995258 71.79875649 268.99598649 118.08244243 27.26303394 10.28255955 1926.33238036 69.01853024 381.59612896 332.24217155 153.57689224 9.53897348 56.14925677 135.30195341 78.41054764 188.27670973 384.63140844 131.11902180 62.67531220 99.46486276 65.99609933 1847.50948255 233.47386849 42.38308740 7.76775921 34.61882520 26.10275083 648.34365936 1027.56007295 344.68480676 194.94053709 41.46799991 182.42052382 130.14719954 352.61934525 93.67061654 243.35068136 1516.20298429 359.32865523 35.44359638 136.67560291 45.38415980 35.67051840 601.62212449 1153.50511837 687.06007652 177.84586365 27.36372059 311.91891952 144.32635947 934.95742752 61.55553881 155.51129686 181.08238694 24.57644875 188.29053551 99.43644532 897.41123669 154.64812620 + 93.96299246 398.06802622 99.85801435 1320.84806234 230.84745678 101.21729935 57.18473082 41.68146047 514.93822906 369.00050049 128.85141565 206.85431092 204.64434165 297.50523995 191.59797652 117.58183388 180.07363677 133.07689637 143.10253764 34.27090692 110.12279455 289.94480195 50.40683585 471.31681818 53.71841063 619.48581450 261.89347092 66.32680861 119.63154977 205.71384240 21.73469579 97.38892727 11.12106595 66.10775096 2335.39896959 26.16740260 25.22474706 53.01923858 57.86269207 51.37604197 66.06707221 150.84876606 530.49904193 240.72379178 178.84000456 250.01610141 11.16287187 45.71201356 708.67161695 86.00903281 40.38546238 1077.10539579 98.22669075 121.93077877 6379.98911708 33.84876740 13.91026728 1078.70108164 23.59463432 24.96127922 105.83786002 199.54804899 87.42803238 519.63952928 842.86141034 43.30234248 25.57062394 737.16211328 55.61409716 935.56984403 241.41961166 206.66781945 403.60701812 39.45278789 565.67119438 + 161.28390916 135.89754440 647.77375704 402.49993373 145.96507338 326.11301759 9.18930399 243.91827672 494.24693237 54.86025277 49.59064163 39.24139871 225.74074676 14.97567430 244.12992582 52.77686398 578.78771027 13.12034204 17.05537350 107.35970350 425.34269582 232.84504495 82.97127525 234.05033988 10.77802748 591.97910425 133.93006768 40.61193980 45.67845491 21.82887014 88.58368099 176.01660237 72.08622676 242.32876246 77.50083771 1476.06055051 62.29623424 194.23004218 200.42396556 159.43523825 2606.22878274 32.24003545 2233.46351400 422.59546172 481.23225190 153.50021487 2011.15338769 338.61422725 155.61721831 138.54661443 21.09667540 636.54337909 38.88441366 40.05087147 37.44989073 8.20319329 33.37960483 25.65561756 994.96577208 621.92104587 606.32272934 16.96610955 180.72427557 377.25524590 273.98602047 274.23060128 1095.57515953 649.33187218 21.40300232 162.41699110 7318.03187426 268.06178638 222.52953786 113.88948595 366.43916522 + 59.19069049 1637.53895070 122.15077024 125.29357517 25.71354552 44.38713568 396.72174357 16.47541183 290.17075120 32.56628075 121.71378053 7.46050256 101.26343764 176.03750251 72.35789166 598.11515216 9946.10809590 46.44151208 276.22938633 97.63547857 68.70131966 8.51653057 51.64345649 51.69940179 73.04525427 711.97816106 239.52388985 25.28310532 129.31007138 34.36882506 4.35589655 193.83144934 1820.07308361 136.26949021 430.61511585 1810.29439097 16.70937093 57.75867895 1271.47737014 171.83321258 124.38050011 47.18565908 371.54193843 47.57853111 230.41084674 82.98299687 91.91008921 53.33664994 16.30984845 1191.29530973 197.31737853 89.35222575 100.49632836 528.42143211 250.26347545 292.87340498 143.19725635 146.67660630 128.11597850 2031.55301321 245.90353645 90.85891367 166.48640139 92.18790753 522.91290240 80.12905557 644.46614343 464.84913074 37.33442139 89.32375861 1529.04250354 584.50835763 88.69203706 266.60630669 43.71247448 + 357.52665727 82.59973810 143.95568055 402.39745304 310.04171435 244.61735041 30.90642265 112.05109269 176.54025642 43.20549352 108.51586918 584.62316427 213.06592249 916.30708580 64.51212787 119.70297872 359.88246123 189.45044165 1436.59892095 566.35247713 42.60223044 59.33513815 676.23748794 1644.17894138 76.17786375 270.47207979 104.08295611 213.37565404 48.78281443 87.25225465 134.84503984 761.77766841 126.80656813 993.30866919 91.32655750 950.42180858 400.78706329 113.21878277 45.03919129 521.14721108 347.69001548 232.53001771 46.21414541 152.91630053 46.11592734 63.30913025 170.35349769 245.59897636 1202.12743459 96.41861155 26.36180427 82.27293263 66.60168720 40.42085121 157.14565585 20.54959294 49.00457035 1024.08030033 993.61556156 938.58616179 81.42955028 55.75586675 12.80970367 29.84135569 103.24662278 229.86656202 165.91461472 25.98668199 24.66171885 259.12097646 382.92637572 231.44181402 106.10777864 9.59032367 2945.63809278 + 135.94939306 541.05244689 209.94942563 206.26686739 350.71949992 99.16830557 9.31145498 890.74269078 120.17577922 105.53178575 36.45466036 344.53688423 64.92698368 28.84875302 263.03776856 749.08085169 112.61300185 160.12570317 2.73757447 234.88426400 64.95692517 98.35647165 1457.61645277 1949.10577300 153.54231390 133.16293652 150.48782376 333.85011257 73.08508087 420.91609122 723.48522048 48.06487515 317.56492644 90.34599535 167.41643264 95.04339052 101.47382095 345.05007739 163.08913394 37.97462655 228.12217540 50.92083807 68.89234019 140.50045464 170.47364834 521.34301409 419.50121252 72.43406808 265.20073500 207.61836017 162.23536181 79.61556916 82.93249156 228.62431605 88.61944697 72.78341329 410.36951751 345.28858804 189.16522653 548.65095135 191.44967412 1256.65435272 226.30710320 1224.34661235 162.94262839 392.15047695 41.74864315 15.51257004 10.06072165 399.52369328 449.54904517 286.33082929 345.16119536 135.31081550 631.78851935 + 70.39448166 30.27371969 24.62563695 1388.49167799 846.54996597 112.22372926 65.44379114 42.11711131 780.98650454 162.54394188 238.10060795 363.69544309 98.40800248 185.76814512 246.66143118 310.86569131 6.47300340 70.93654144 345.28555686 72.42171628 72.52955798 160.01852459 124.58169576 633.06291848 142.33673816 83.72230489 272.54521283 361.12870865 427.50872741 46.98554826 312.67963947 322.98361181 88.47874558 125.59484253 664.06550016 475.33318545 645.98650671 131.70922488 124.13460037 70.29986567 38.73091917 80.76148532 54.56274644 66.43106923 211.95161433 580.94262527 335.82766128 71.10266794 9.70712435 258.24199347 204.31255837 224.40520107 179.30162024 103.89452348 224.50836104 295.10081656 126.92504001 98.07978130 142.37756815 1589.71260042 93.24638983 130.30781887 307.88357435 539.95976416 232.30810661 42.88192172 39.76348235 119.10083068 1412.90573961 1149.65814349 85.56905732 135.75881241 294.95553605 76.54505521 130.46619185 + 78.51376607 37.07545842 131.21298530 32.79842465 112.36458291 84.22588286 22.01308884 421.50672609 51.33667417 96.24071342 842.71976461 94.86256064 263.22375831 89.59677160 44.03728000 95.56978339 28.73897543 152.94702709 11.40245744 270.07515406 28.50997527 75.00859841 141.88822671 68.51548315 42.78437834 92.31730180 94.98376897 33.65915225 386.44074456 290.77964659 307.55495374 222.45285361 309.35019092 171.91405035 32.34733483 47.37549232 881.14937660 1871.43091185 101.22641089 16.55270950 57.16961859 430.89242239 300.17013084 289.81265071 40.66321239 323.79918854 36.99683782 103.10374210 254.27443139 1377.69150812 60.50784592 53.88143102 795.48844427 108.18890220 170.06902416 148.41726403 85.34918905 283.28341731 148.62878289 29.70087502 239.33792266 80.72793650 41.85319341 153.68881992 113.14376709 189.23954832 436.76586266 42.22779345 354.81620154 71.05099616 20.89707303 54.84712273 9.26642570 593.21413005 13.50528328 + 840.99690796 70.01461566 7.44561825 133.45910632 68.92161032 368.34285666 64.81602362 10.92334693 747.16381297 145.08806887 656.56974421 96.36546084 52.86550042 398.33862021 171.82786688 496.63282566 26.81982131 23.02104590 36.54228622 652.31495965 65.24618583 599.18105432 95.78213358 146.43654262 15.08369004 317.76456224 145.33921961 1884.47588860 405.85274266 73.77427603 164.51178002 115.03268861 110.36445740 1176.55384680 104.53524737 148.15624100 728.57899364 42.36989946 118.84920191 173.60186880 296.53521738 99.07903846 56.60454908 100.36980037 630.33949800 319.95418821 52.24925877 18.80866232 66.31466916 100.24169225 32.42241995 92.19840655 63.41284084 359.40576407 87.22252282 48.64390819 363.58630590 86.04456410 619.96810157 150.65874473 74.71670361 761.19026531 432.51763052 715.70066005 1269.57276281 21.25048159 185.11731022 692.04614569 53.98123244 109.62054059 587.27652623 111.30905030 89.96024932 40.88092109 254.87369455 + 237.11545323 146.30173566 121.03176153 22.22100925 69.49236548 180.03761467 113.24470237 528.34916470 333.88697848 494.55857456 677.14665910 90.44184158 783.80363999 610.09231658 3046.08668868 124.26578694 125.24480333 13.10469483 275.95742516 69.96698641 73.41379505 35.71923787 1271.68861389 71.82342960 493.59710216 268.67163817 44.17229783 259.77155783 203.51891418 94.86625840 34.47786493 54.09248604 63.75594370 154.71223534 26.56740678 25.73547558 909.54955327 193.04075295 118.86121363 46.18727266 242.74513197 18.39131628 32.38278281 402.91740993 129.27709675 1008.62412866 429.35464278 344.04616956 5.77308871 337.54470588 148.86335142 27.53854816 87.14244048 651.84024748 46.21286236 284.85852307 17.00885793 66.59746158 132.12903525 57.99743832 158.30873921 120.41849790 112.36018313 141.82549494 179.27419104 961.58614761 636.43419707 614.32143431 133.16488975 22.21035730 39.59029428 288.21375406 28.69882901 944.07030854 1301.30250178 + 102.25131499 304.51168064 211.27622391 139.55553497 90.50892456 119.12993900 61.60584113 219.53368170 287.40820423 60.25405244 131.93931560 30.04407345 61.63693588 260.37207144 113.85165169 237.94645436 605.93560815 39.12122022 1366.93498693 1727.14553433 418.80161991 187.71438339 60.50321626 43.70369533 140.56839040 24.58675214 45.57632017 61.93958862 245.51849642 53.28369220 79.59592425 69.28652861 52.98798380 216.05115130 91.65806718 19.19954905 548.57241991 96.38705235 19.99528841 213.19291827 112.20538913 216.89721080 505.80393147 578.89157780 1093.42595265 184.94416008 118.45917292 173.12558617 66.41776815 276.96695730 36.62671097 79.30107907 75.67219970 73.49299276 233.87194177 102.41622991 548.61545505 30.77459194 397.69411518 340.44025755 679.57596683 308.75927205 162.75034278 60.36849504 34.42828700 156.09849564 40.03889098 14.17370068 930.13098653 93.64172742 81.64886133 563.39202999 187.36400561 103.29966537 728.42486822 + 97.04274823 203.91715020 181.19231049 342.36284977 936.80256075 293.62765999 67.98903265 48.06548610 423.69363943 106.24524493 30.59173318 56.70681162 506.53346393 241.64952111 240.74507086 100.55061348 55.49853942 289.90501289 27.94620979 75.10111115 92.07483606 111.88937561 248.59604465 259.67747195 533.07084508 18.00379327 1921.59079310 64.80674308 76.25533485 72.96081478 191.67214204 87.11746961 187.98757634 436.39271218 18.71142669 295.08304719 1122.14770105 143.71564480 33.57129376 32.19413133 873.25758800 91.57633534 57.81650857 694.88499309 2163.23834311 127.15530613 52.05900744 289.12051648 34.71553039 58.87240928 69.32339128 71.59787022 407.28471585 567.15049744 114.96622541 40.87619311 32.76448686 65.61544918 1786.83334544 1104.45231721 74.19636808 394.91847164 118.35101990 778.86821040 64.64951384 129.15229998 170.91985016 602.68568711 65.41693941 69.04249429 47.83544070 54.28775157 117.27815817 66.61155683 531.02336379 + 199.13182275 111.06884543 156.64940254 135.75521034 91.44270910 21.50377013 610.64234485 53.25299022 416.34240933 58.76837163 126.17243754 138.49619413 413.24385597 447.80664438 138.93578636 84.37065422 99.72004805 235.20420098 386.74801631 177.55039488 246.49819193 596.78331828 122.10416414 4.59198080 232.25697717 214.24352564 395.52183570 527.54104582 137.50299451 230.80856290 234.25275801 21.81668454 503.95982316 1679.60534515 28.47194073 204.13545273 643.04663204 83.93007672 155.43633002 225.15242868 68.13003293 100.34586994 100.08290934 54.75650848 61.37604401 75.46627713 513.58027707 60.42264876 115.41200191 130.16551833 1005.52396801 547.85108243 263.05355076 589.80187210 226.98109032 1575.25622072 665.83067543 241.08999892 186.40992745 40.57172690 577.82275665 97.53096078 15.14682757 148.96026169 135.87398446 46.73747328 41.49832663 77.77200653 300.97714408 58.26345808 275.71029244 429.86185110 159.89500331 2389.47369562 237.43285392 + 578.87330083 34.73147835 121.26691567 78.34024348 149.43956482 11.64592981 93.24916109 87.55636654 69.00246047 254.12278294 230.13263046 220.68644246 786.02059589 18.52461051 50.63432615 210.91830359 57.46731962 43.94480139 174.27234279 126.57586871 84.96592558 1002.15821241 140.68431078 607.21411644 358.29729527 97.07238906 108.15209975 187.13126322 106.52719014 86.42298657 683.62471799 111.01848410 258.82472958 943.66238551 460.44849831 1885.11281063 138.66165669 215.48336238 39.75074349 39.14821952 29.71263221 210.99019587 92.21173485 239.92972183 18.41642427 81.15735953 675.67897978 291.28163692 588.32716851 388.33232093 76.71070724 488.75588979 92.00229240 29.91846704 890.30056180 142.05175321 330.42412419 68.65980814 1179.77530950 436.31025529 454.09395508 118.28630219 36.06559028 114.60397180 679.70279093 68.70230764 821.98155676 236.66065486 73.57285351 100.70988205 115.30889454 122.10707209 163.62977338 97.71815306 1521.60720436 + 263.87567010 104.31407557 1318.49948409 147.05280849 185.31895000 46.60148764 62.44801334 171.91628587 2357.50967079 1284.49368890 450.16002281 17.92934392 91.40415035 223.80474857 647.90459554 177.52559629 98.22861296 6.95940063 4.77846796 348.55981683 34.27155625 361.62745890 108.14994398 1968.25762372 16.83045883 76.68546875 151.50933227 17.52543442 484.28071802 84.32525910 160.77544260 248.00692142 494.01527527 795.74518872 395.62795867 1483.03564741 90.67971864 633.26324065 91.81690369 67.46048094 433.08307264 272.67624892 660.14768109 273.24571895 213.89531260 8.03475541 225.24857521 814.59364225 19.17189671 642.37511212 350.22752109 335.94642834 59.16629209 12.51060628 75.21792222 1019.75198751 865.80984194 271.36947582 154.65715736 1273.28216455 19.50945657 20.77819563 332.72281699 213.63469125 49.75772623 593.29854970 80.74402678 271.87210406 1148.54722299 301.26305937 181.06050711 62.22697575 1710.07485036 57.62978186 366.28016019 + 423.05439506 186.90396969 197.45963384 80.59640920 150.45860532 81.55747543 137.90124536 122.83010849 210.74844029 66.49241821 1140.28618658 9.93523516 395.06403759 20.09560199 219.86034997 164.80504930 700.99876562 30.92444521 29.44171903 43.25913214 211.09252507 90.87698298 58.55822304 42.31097677 53.02350886 189.29093417 47.12053964 22.66700311 708.25281042 1568.03975149 149.04149412 188.44201800 557.58740109 212.69508054 221.30921046 36.40567621 30.37728686 25.50959481 11.45875166 1014.48888709 267.18768695 118.83787354 41.11541199 100.10401001 880.72958751 21.41120040 272.57331126 72.76806148 158.39090909 583.61285320 43.72199006 151.80051512 416.76644691 234.89955843 436.35492224 130.97558197 95.44303388 429.48044383 64.29252651 157.56879234 105.65855897 394.96386749 44.73959197 30.54992319 39.38189299 89.57520551 174.25819052 144.24599162 574.26115256 70.20512302 43.62135681 1383.02315913 603.67687978 54.76955601 210.08570884 + 149.31645078 10.34426560 94.18311446 222.34128565 119.25311349 480.38740581 29.36012068 126.81559627 713.29697588 2714.93682825 71.32765695 434.29657943 7.92791457 271.60215428 728.49186387 99.07251482 477.32001114 1150.72894420 27.06286516 199.81469799 472.96348561 75.92654904 161.09287611 58.38045139 363.59537947 1017.16718292 115.49679610 404.43858817 471.60454034 60.29323366 112.12329226 83.66971189 101.68355755 1147.31310051 72.59256569 126.99185507 642.51950887 68.10188571 84.69270881 89.34886632 84.75839960 386.59254026 39.24947961 39.52955713 140.35564990 187.98130223 41.24567537 58.98265723 101.37280719 425.16692053 11.98806831 1129.98126375 15.95117545 1175.27594638 174.70981704 158.06089511 24.73857365 568.37149985 18.86859553 204.79277504 610.93401139 54.61204176 415.06111156 50.11713801 70.00115131 132.73800217 42.92516787 152.62696407 585.09157747 45.04444880 369.51330186 87.37509356 104.26201807 276.24216349 66.65015474 + 106.08656406 33.26846699 73.88944354 83.89566562 181.27723464 138.42012589 97.72646898 79.11630372 869.45674558 203.94946449 151.05956301 90.27497398 28.87078381 114.83137646 140.89639122 43.43304649 47.90577957 225.50367576 366.57665313 231.82867759 608.01610391 408.31951367 303.64976460 473.14305956 27.32370641 26.67809591 429.24426937 924.35465851 15.94372652 280.02927772 1779.19806319 117.37272559 164.87520096 233.20125762 143.85127503 146.36945061 50.27415762 56.57331969 83.27586300 250.23215558 142.85552478 752.65577787 644.45448060 955.08419394 147.79881255 14.21151330 313.37903936 564.21262296 69.18122615 104.52806520 86.37046968 64.31299956 16.46587206 16.77092279 323.57953257 100.46664940 263.28322244 143.46885166 460.06366809 335.59039760 240.90869186 893.09737708 49.80290406 12.32790587 199.40795625 94.54976475 156.49915430 142.57326577 71.02600988 798.69049910 125.91319352 311.83168402 143.25743310 337.64951976 155.19531845 + 215.14217347 208.78003024 93.53611240 72.65385530 344.72686665 103.49355506 204.43314627 74.21067617 44.72048188 27.78846609 43.83151885 608.88684104 190.30137921 126.58400439 130.72733646 996.58184990 168.35993274 55.55765486 744.12357381 9.51967689 176.55009143 90.78412451 13.51612437 44.85761611 123.07149558 322.88130433 63.18298311 160.58311522 40.02551116 25.96206743 177.16744747 828.00868500 404.04713003 76.68961969 11.96004866 114.33887497 144.29864707 168.20675066 90.70669385 74.74193818 237.79446549 131.20893309 596.61035449 269.38504445 8.92283117 176.45307851 37.68500435 105.69057114 143.43016892 20.25026961 201.47437265 164.71023784 43.37383010 709.71080886 132.49754940 78.85061989 376.28533534 193.91448278 121.49114896 916.13209245 59.59239392 3367.44494928 10.64049341 400.17018480 70.53183932 37.76587523 75.58950392 1029.52801171 497.30378955 54.38735696 158.62722380 184.44811927 838.27151514 478.89376296 411.64914949 + 833.84874642 57.07209991 97.94918693 186.08808157 1113.07561540 248.10164185 413.33919407 462.75156360 10.97855792 32.97535141 50.42818222 4599.56938449 221.22991990 374.53051540 33.13470752 51.49742769 85.25709732 108.27730425 726.47652249 1432.45745011 116.76441401 1047.72883031 925.28051797 1015.65814125 420.92517363 17.71600773 816.65091051 920.39954894 129.86551182 14.96511576 19.08521421 307.21227464 135.73719433 159.36841088 576.96449828 317.30424499 100.21900248 96.99357739 37.10047331 219.48754419 113.02287332 57.46521053 515.63348969 170.35417514 87.34819202 70.33776064 157.75301233 172.54772004 317.29183444 470.22293598 219.69729562 305.22781268 193.75710399 311.06155553 17.60120209 183.71921746 163.16312801 45.62338332 120.30596493 47.24317416 279.57806289 637.63867015 9.91860108 2241.11258136 24.23971860 108.85964519 44.87694253 101.11905516 298.95423866 268.35183295 150.59522934 73.33062723 2012.94678221 77.23686657 84.64821331 + 171.46205030 87.66405866 118.74536782 120.94783830 25.73526287 12.91420674 114.87269289 289.51105813 60.54314762 47.15011953 97.14777308 5.83417192 44.07087920 28.25273270 240.85246961 120.54444351 307.16700860 196.66751590 267.62369858 412.10664407 105.13798800 49.27027276 49.74648735 237.37112104 2477.78775955 16.41046678 62.81885517 49.21983013 8.85224065 1501.31057844 769.60107305 40.34118137 475.76145251 29.69277415 26.25001608 69.89549385 262.45005014 264.02373285 70.82003226 286.40796558 137.13813970 45.61006689 103.06023239 530.01039217 20.01936645 53.88283235 26.09262552 125.51320650 251.70519189 290.87547063 440.23330433 694.36449431 59.70748084 177.18224513 663.50885716 166.53310978 3475.55460973 167.69396258 103.83461666 208.73792684 89.17900808 189.90063381 315.63536000 5.44582995 291.84694902 9.42265216 151.73379960 467.55278672 1446.27441949 139.92901225 98.30649086 580.28260608 468.15503450 55.18097660 22.05716591 + 489.92485123 52.59889288 44.84970024 234.77557238 119.38188023 364.04270091 152.62057686 1357.39481544 107.61072900 63.29178781 898.49355441 176.03241285 422.39965959 1011.64002232 1372.68854895 515.35380063 645.92192892 215.18918228 11.20520034 107.76323231 277.30705734 586.12219401 211.98465116 77.78855024 3005.20952980 349.18003635 11.74930152 125.16785927 80.14516069 347.95640054 1645.51019130 333.92833432 826.86056189 721.91089628 24.59785577 519.21043165 254.81112547 6060.42692520 41.08976288 467.25261991 188.92776626 74.13998673 77.78191519 25.03779485 2846.09500927 48.82511290 29.66744984 172.23962135 20.20062943 199.41742374 109.40245875 224.42202271 201.20352093 821.06010685 226.30195554 17.29648672 79.93436162 66.12988539 153.55478000 2360.49299243 402.83909842 70.44042785 189.66740825 110.97500699 10309.50764428 23.53998623 653.85597881 110.84898205 652.99641730 58.70030893 49.45721696 118.44730460 60.70939562 1572.73338720 61.91002965 + 106.70877906 1517.03508799 557.53432358 688.60331377 272.76037290 103.05051462 505.48282474 128.73448841 6.85696982 334.71256916 30.86574369 74.16604599 205.57386767 149.50613183 528.64942631 490.64117362 388.24483111 76.37369259 67.62501065 521.15386907 264.58530974 1299.63584088 105.59586500 1396.73473488 53.34388219 1698.69790786 296.41521021 13.81992227 87.45794889 24.21312269 395.28365038 40.89155196 655.44007030 27.74641553 56.31926750 1140.69332959 56.69843633 395.03429230 59.40100286 110.26223586 95.82024832 70.38331566 169.10032616 502.68326303 15.10225013 47.88735693 550.35787924 475.11074994 54.44085810 709.31079952 309.96753510 531.24685165 40.05036791 41.78233281 100.34009176 393.62103324 599.65003641 218.02143961 26.63151204 64.27579358 169.20807307 127.88142050 239.13508309 22.06390113 16.66042756 172.55322680 469.95450672 118.24651445 47.81387939 41.17388554 43.65135114 15.10632561 30.23535085 103.34222099 1293.05517846 + 86.81904206 16.41809854 544.46059465 609.42142935 18.10747966 221.21697859 106.56461258 279.77639022 1626.27272952 365.78088175 440.92913990 40.19220892 98.14414588 131.42235562 421.66408353 398.45837251 102.83861201 36.46418921 152.90149142 396.66101355 92.78342522 285.48121396 1169.79592245 134.70969755 231.47970182 62.72327609 704.15085054 323.91810751 67.74744751 405.05668606 64.75666480 47.86086790 4075.30979176 897.55246138 1526.97124474 87.45231717 102.15530557 7.47475562 445.21873690 32.27287778 40.59543913 866.62161093 310.38419941 151.49746517 47.22216193 637.13009062 1774.52636615 46.54822215 111.35973676 408.93301449 82.65268860 8.47532440 101.75246188 44.04726776 135.81685755 269.45060729 443.13916938 30.90122964 100.49010760 31.96949555 274.16003835 270.15867588 27.64681545 52.55039417 726.85484721 34.89590414 1511.01267564 85.83437081 425.32256366 182.86340127 48.46514480 74.79614092 201.97696899 25.23280537 189.94315817 + 42.11110445 54.53041505 95.86127272 143.37412443 369.55999455 104.26377001 79.07895988 147.20499784 138.62816442 28.81134523 51.93415499 61.10979913 1031.81203788 49.23849221 20.83090363 21.76209121 192.17972515 111.11419101 1608.09024363 47.72002228 138.01235575 239.23991122 70.67374385 189.73224102 341.00389171 285.58521138 44.40815527 223.60808920 682.30203538 84.80839229 173.69862675 24.30110942 461.33452041 504.93621236 261.92167917 18.09007505 89.35259497 49.83535421 380.87642979 272.78969410 1632.11190106 758.19499365 53.24405435 110.43417133 11.62386667 124.96722705 42.35155978 836.91499879 57.68647561 208.73216643 554.14148789 28.81025618 5474.36386217 138.56358871 122.30048272 202.02616775 130.51526821 45.33249619 293.45964488 86.85425036 47.95717995 67.06048226 75.56739128 117.77142286 224.19600696 203.56923920 18.02883105 60.27464174 180.48782992 246.32988483 70.55484011 77.04892401 262.63520279 85.55689415 130.51778913 + 117.60589648 347.02841189 234.50603698 628.30155790 672.05356141 19.63995026 641.18460814 17.83908115 71.26904431 42.54001004 5.96864487 729.87675664 60.73696723 207.19011033 194.63203936 1334.36011999 33.51509926 79.84436549 499.18796852 47.11625106 20.34523769 223.23597975 1501.08407201 79.47284749 144.39982653 273.80702745 56.62850933 131.70101886 1379.38470217 126.51389053 125.68443505 57.96323083 114.04132054 182.83058968 126.69733664 109.29887749 436.61275499 30.19289629 302.27823995 131.98013792 56.09515341 16.00569301 23.66748198 112.92344503 394.35471893 278.02247827 84.42738971 558.00520626 402.99325874 78.98829994 57.16599215 18.21095282 51.93181767 665.36034565 354.31847366 32.88084762 20.62735388 144.28393416 45.99292331 959.63038229 32.67249219 259.04933874 28.71841845 88.56045230 115.08923625 2510.38184450 533.31363680 151.73537650 606.46090903 78.68037839 4861.26069474 1566.37211085 200.76652467 34.80876097 860.19506804 + 57.46715996 542.47573960 144.28547409 41.70805537 484.79998087 164.27752947 68.10315489 82.43372817 320.07465804 343.99028666 46.97349855 834.02976613 499.78418409 47.29815226 193.81543905 757.23171870 58.68841344 882.31661420 16.21687383 36.44763640 177.28897585 19.84206336 45.08822915 185.79700712 65.96665801 29.52192121 184.11479731 1141.50914611 282.88420813 66.54844596 180.00232477 208.48457258 455.65441025 68.11698914 200.57640807 10.90647495 125.53990505 65.02697904 17.70609991 586.92456166 342.52113052 186.21587611 145.40716171 1318.16423216 244.82379620 37.39334423 45.75270157 96.04087948 781.95743800 80.01032243 46.92870017 123.17357361 235.91452936 158.79445656 479.30835818 938.75724385 2119.51703826 275.79124950 110.09998032 20.28579746 88.99486661 73.55971533 17.97224162 32.04568558 661.63542472 88.44779369 91.90727167 138.17849537 130.29060773 34.64608458 58.89128068 212.59634783 39.23054882 44.47397979 87.70145851 + 95.80882368 263.75368591 341.96718116 383.30918109 421.56429304 165.28109932 52.86817707 133.37600377 413.63298995 171.93950444 28.92479613 164.88282995 95.41863030 132.24251192 311.96452886 12.63462272 217.77463247 124.44874509 44.01817129 239.77944237 454.77407519 120.63114597 268.42160059 401.51193352 100.42448736 24.44886296 135.14927716 9.57582230 224.20556393 72.81196339 19.05178493 213.22553228 248.37174396 80.61679342 264.41596545 1161.05479352 337.24164218 160.89239067 597.87406853 298.89567545 38.02481375 140.10877084 27.19293370 54.82528245 13.45831739 306.63924050 194.78040817 166.43279210 986.86585574 126.03938597 249.91833739 40.12717109 166.53098336 16.26158503 53.80009707 133.59670443 198.72327665 45.76933250 998.58977572 120.11389155 441.54489705 967.27202459 803.72991154 146.52392339 1462.88460803 47.15011882 321.48833938 176.33391309 4.34626242 124.71643467 313.78110958 288.85936917 482.63858885 257.68459816 184.69883924 + 328.45472725 73.96396142 322.59679543 465.50624922 676.12985612 23.38921347 39.19386654 1446.82808030 699.10998001 31.25939744 91.29111646 361.86210356 242.79524980 190.57963373 354.93647306 298.22810465 570.69387301 399.19516819 629.61773944 1759.68966270 103.85739217 404.54793579 28.80458092 82.65039862 248.20472122 52.13289967 448.66566386 339.10785373 246.84298072 126.47514372 33.04073905 101.95466742 312.18242678 26.79046554 131.65796127 86.77336933 124.30652820 175.22007451 380.71962136 127.71150196 244.85544018 272.96583117 22.43490909 24.85201280 667.76127593 108.56643007 517.89929456 1040.59049654 61.50819250 208.93792606 421.87748683 118.90604564 173.57077523 109.68879617 77.73297099 535.41736463 2019.49811764 68.03043915 200.81628307 217.28451089 1219.65495925 24.28716151 427.49978632 115.72523095 187.87903835 60.20036087 64.47403205 390.46706823 472.45955914 21.78428141 30.47510574 223.37356286 703.83513206 21.66899000 102.67432231 + 310.71761050 636.77704271 47.94995727 251.52008648 61.22573685 371.06233841 152.41578320 123.56864558 47.56501763 211.32792801 66.80958241 14.23972976 105.99315701 141.94016393 328.28289995 237.46180937 301.54105049 91.07996938 529.14545129 81.47740041 54.34614906 32.16580969 35.72400293 141.31922994 529.09093134 21.85971754 144.10122791 24.20625612 9.13132940 846.64892476 14.60023785 143.56496737 231.31493710 155.98184736 26.13215478 42.35045642 298.67905000 98.52534869 276.62808087 653.31037197 227.79507744 114.30542584 171.21795411 34.26917084 934.74306641 19.18857493 415.11270607 163.96829080 107.70444490 463.46526614 133.60525626 57.81407469 31.09253113 19.39763426 52.25500688 61.55181552 128.62261157 139.51347207 1146.79389770 40.42399563 70.93913629 39.67911010 936.92855949 395.85338947 370.54794694 36.53818921 853.62270683 9.06609482 679.74629658 238.63938722 122.57845076 399.46739048 572.49418113 145.63665959 184.91924091 + 27.85589737 78.29367853 150.75449728 190.17752868 826.18649371 216.48079776 540.54221652 158.77510989 1163.90713893 40.03992319 131.42143940 372.21266822 353.68603917 41.61400253 1493.93291607 1638.34217812 6.52697390 357.32660854 2155.73326848 20.94667691 927.23218435 953.20481828 936.40598786 316.51557357 119.97448027 103.17184818 42.71680432 200.16664778 9.03520179 39.77444434 281.25377969 167.35543799 294.30753079 184.55270602 50.41964838 1367.18984284 438.19814197 176.61090120 418.89562643 129.67690027 19.11776183 15.78416199 30.31827528 208.75644217 380.43875176 26.88699194 56.41452264 29.38970224 138.72325531 1258.20996705 225.14517703 11.65625185 258.72254112 36.17522505 179.93335783 55.54093937 723.57835675 585.77883590 52.55799432 332.15087312 145.18899665 194.36749956 39.93638767 42.07659543 243.11432573 69.72597710 88.28021298 128.10806806 136.13346900 565.77480352 119.21669280 229.53230570 3.56762280 218.93822305 168.59902517 + 4857.76690929 933.50708161 296.56776201 169.59006141 491.75301166 355.70557225 483.42776589 234.87283890 102.96042382 22.80272821 136.62879392 293.84642049 283.10547275 228.90181605 82.64864654 415.62061819 68.65547985 569.47527402 92.85326471 67.61131255 273.99566887 119.38455362 123.24108253 41.93257553 285.13434806 427.64763338 267.55450708 79.64195053 384.81769483 21.44175153 1220.98486784 154.32077886 154.54314881 493.99071520 1119.56858266 61.15067147 52.93931321 41.88983461 224.09110291 408.68380972 201.21217574 100.29027004 83.39718339 41.06055296 186.69049438 1260.60091715 57.06781942 81.58107133 125.42215761 100.78408552 109.13538937 48.45441381 268.56111356 1.82536203 92.52951943 367.66978740 50.13636196 268.68153766 377.83824497 125.01294132 1261.91640618 41.97636567 450.88737604 63.70233439 244.73231435 1162.26681066 97.28234630 15.01529675 226.76914314 294.63123242 36.54419939 349.16436883 381.79780706 63.77429175 343.81419965 + 35.52195260 127.69135239 110.97225101 185.07211611 154.58588636 242.60558138 418.62542022 173.74541457 134.67673544 404.79920829 148.64231396 394.70319917 266.05932963 82.83829190 333.91563209 20.96892845 198.12955400 213.84858962 341.69438188 998.51429710 4419.25785729 42.61323692 137.64531076 59.03831857 190.31212228 37.44733807 885.02248440 193.50206508 126.07421403 224.68265214 1003.97591020 1048.70107749 50.80333611 728.09649239 744.16712317 124.37908324 193.11914305 132.08483222 2385.12570800 768.39439705 46.82748441 47.89524539 85.90243356 282.30923562 86.46458856 38.32520485 386.54286764 554.54558869 1008.68988961 6.61194755 15.56953550 153.98221968 66.20394691 930.17834071 120.29304892 176.01530405 161.25439236 134.40527690 82.72308306 130.46204438 58.76090456 113.44148001 283.65770011 62.68302213 109.18609117 889.24082544 110.68309662 72.38333698 117.13832537 153.44727590 25.08307319 96.31527599 1129.37923533 123.33486001 529.91305527 + 455.40883670 131.11506467 773.69491323 59.77309149 310.36515243 14.82825977 321.06337727 189.63758255 3570.70370369 54.11855449 1096.92833712 44.14403056 36.16182356 36.67285611 47.66853406 53.38918914 98.02287904 245.35370320 789.69597213 2.14726020 4.89771520 114.64452326 164.57544805 141.73615218 14.48743487 38.65428397 131.47537910 302.41072188 43.41627783 94.99724579 65.29495851 95.49788297 526.36971609 18.16872501 128.04900543 36.48577438 70.14455655 126.47129252 411.13066639 268.64556491 161.20965682 83.52733102 76.00585405 153.61800421 623.66448700 259.41812843 23.71411259 323.29360416 140.93815355 41.48037952 70.43289037 286.48143910 307.75672136 24.30536162 1166.95377186 860.55167807 47.42921635 105.92133375 36.52813282 55.53862086 174.26680021 8.31594367 258.70489001 884.94398188 332.45562518 144.52581118 122.27533128 1199.29235592 30.10958061 780.80380374 221.77013432 144.49387728 306.54299123 27.99183741 209.05254767 + 300.31758430 18.17043220 198.55699624 260.01799832 13.52016365 300.19074801 72.89542339 120.10439974 10.79668878 41.68444177 365.61642330 71.05145791 168.31887127 59.87927041 178.83792675 121.95137527 56.52291622 111.52985939 390.61911974 293.96114358 199.13812609 286.44905338 41.34528978 50.50516060 463.11989410 148.50198152 30.58354278 707.95143597 94.91908937 61.10236553 736.34460212 289.63950783 502.72658461 99.44766053 107.33050907 156.46415739 517.29066135 272.79734286 1412.98605753 262.33033113 575.12123132 9.52265972 56.34018118 242.85417009 37.58206529 62.68367750 97.87302866 532.49705167 80.92878844 261.27638447 68.14317521 435.88166025 421.12479474 272.01143000 118.90332157 220.65180438 358.27439972 104.25851860 207.02335168 39.04057200 91.87658579 101.60340605 263.56785400 149.83390523 389.30949706 392.52589443 214.09616950 66.77923541 18.07165101 229.36241070 454.94919666 106.00354401 799.23636639 285.85993299 64.89905912 + 132.74070852 950.78374690 424.18491923 193.39729865 1107.24714196 217.67955260 47.37251891 34.96356505 153.96491446 2206.90034250 82.19525888 226.49905216 420.52508922 233.66011124 12.16915629 45.65899993 131.56314251 1404.50376876 216.61438035 191.69812925 11.47010411 751.01822958 449.03535838 1005.79485400 332.03266685 490.22679489 509.23776292 61.67099771 2135.59902892 64.38792283 284.44200115 449.50206971 610.55006130 32.87041033 104.08630067 131.41461343 127.67254131 1125.89539502 3081.95726938 65.52679726 81.78429712 614.58316817 16.17370265 1022.04227912 4392.58076264 92.23693842 22.43349808 43.75064848 14.97630772 340.84191988 10.13457800 26.24121747 568.47085364 48.84762585 52.45361173 15.14809594 36.02466397 21.68079353 22.00170250 46.86571759 109.97556910 360.96042775 567.72763672 381.32141654 626.99779273 280.18606663 54.40588883 42.72370990 251.90565114 65.42982314 168.25744720 1272.15580524 56.70474246 122.05380402 280.95878353 + 66.99997539 278.69421508 35.13589801 125.64952219 118.22937008 557.75628110 370.43251106 48.46927404 668.23901097 40.61827257 187.26295101 86.60610500 6360.29059496 515.54600580 73.96192246 24.99062085 274.99978373 251.48818159 261.18968349 96.56685575 447.08339466 31.19617154 33.88794863 538.75313645 391.39449361 145.85628438 38.13550911 134.55870746 64.45636300 189.62761002 896.57803090 46.79728053 126.85431022 54.79438241 1255.04737938 176.16324705 142.45310156 681.45249211 65.82309794 984.16281767 18.34532805 387.15267920 157.89873522 32.63805326 103.11710655 184.97076793 120.26015820 148.53389170 129.64266826 281.79464696 82.63461484 178.21134170 10.14002824 3.09966631 312.54026786 20.08415025 50.24921468 413.83560611 92.56002047 234.46310308 67.79482399 437.34809947 353.13539541 338.73319678 47.08005741 181.22174290 34.16079248 144.63211189 295.23392870 321.51788827 481.59632612 3073.27959131 34.20869929 500.94695892 102.42899564 + 78.27739270 328.88745158 70.29124988 573.24874167 108.16075736 139.91466024 266.57894089 103.27677411 2128.75539970 760.89940304 317.84351450 133.80982389 1290.31703539 96.64709156 3179.55490054 35.34553639 637.31247043 345.09705525 91.77599639 293.79533754 128.54883315 205.26668009 27.85264645 180.56763327 56.13954504 146.94648248 170.92790312 127.41867484 24.07827867 321.16458333 984.66703837 36.99249435 1632.33333626 63.09887755 79.51142584 13.04627737 1984.27930996 200.90062980 7.75336534 258.88525476 41.66971820 45.59177038 72.96042422 441.71963837 58.09057101 177.19085682 1479.59309088 204.62041194 1649.63424630 224.87981250 10.01434695 1500.83031301 77.67108577 209.14622104 100.72101322 868.25007155 16.64351222 166.71029251 272.31534397 14.61557092 54.13556180 60.59088695 141.37482895 121.26284589 148.10744171 118.78218712 162.82708634 531.64055577 52.82836351 530.72738909 152.47377358 69.13224078 556.39544816 278.99353116 203.16250606 + 605.33976764 196.90691677 95.06032231 12.65667153 28.94002002 1143.74223779 274.46948974 58.23325110 202.23176876 542.26069596 147.54655051 48.14736527 38.60251633 264.11548744 220.58391649 56.20342030 494.49903706 177.86234355 95.29311632 114.16953066 147.88431517 238.58002665 850.72635080 649.80570979 509.38548655 171.47965839 109.64696291 477.15651523 197.10225683 249.71370913 280.16102707 103.24292214 985.52481811 73.74530834 195.82611408 172.15386211 921.87981647 720.27214901 84.45442629 325.75650087 112.43125644 150.99457979 278.29023587 116.07467390 405.22248516 87.51030160 42.30264939 56.81597219 130.31773899 137.51517581 66.79205037 118.89465646 68.01366441 29.19748992 308.81686527 1994.44124928 231.38236793 366.78514020 205.35677604 19.90832956 336.66231709 72.08041750 551.59109881 92.58359172 992.56090033 374.81634712 675.98432716 41.98530397 93.46646380 179.63313361 38.57546986 663.13286070 1087.59482251 5.99019385 116.15858423 + 98.52557210 132.19864915 244.26243610 31.54829993 208.82137282 1928.02709528 347.24631051 30.18678134 190.66334973 46.17127941 165.61671015 14.22360903 415.41121806 17.30000557 123.35483641 113.10911365 34.03139795 129.02589747 186.08340075 150.82179309 339.29693467 51.84907690 127.05335586 63.18187987 374.87961717 64.04840023 97.87314245 15.94767795 550.37349167 1269.65401024 475.04690839 47.42011085 487.59390562 139.30914116 846.04685244 46.39070375 69.87652268 223.37085415 26.07891530 183.72968652 714.58790008 44.59507533 168.50189952 628.08728456 627.75577840 334.10405429 893.16549696 173.79572564 467.35860823 95.62783875 1654.37037467 2412.79728510 81.44749005 1267.06986098 107.00192668 63.41644720 26.79996153 153.02560915 424.20319707 79.99029121 796.17830214 23.68059978 594.10963334 52.93671628 656.40377407 141.02219672 78.18727288 80.50971345 222.43563553 43.68921354 261.21364513 175.67730213 1176.03730800 386.19140717 1395.19283452 + 124.33136615 113.73884859 19.10336842 67.85043747 2.37266560 46.12648312 33.03648728 57.14138667 119.84554844 156.43151424 13.35683566 268.64956601 25.89156060 216.05022005 53.20842836 378.40595832 146.15333627 1083.38382707 17.14039432 437.36272759 2929.62568003 93.86961236 706.97164942 262.12213411 512.92242222 85.21648467 819.03124864 74.90991767 681.31466397 91.23070627 86.38175095 37.99544359 31.68532512 145.25165640 164.59158672 197.61886662 74.85078754 11.96354589 130.88687927 119.84581912 25.60031507 16.65452414 2976.89617843 108.49127066 11.47894892 1213.83421264 200.14705273 24.93541521 1000.62447921 229.43863856 96.38220718 263.67554444 821.93372582 106.16279939 72.82327524 21.53917728 32.57591731 79.24612875 114.19894156 252.65665955 29.77962898 2164.67779532 32.57136610 249.65671852 33.59239438 23.11346491 204.40660895 146.09951817 6.35001123 34.86596681 161.26388998 189.86805771 43.21159857 175.64072596 157.33057610 + 68.43081143 64.09690618 104.72004119 221.58218794 532.55713292 2078.20147116 568.80050113 38.04145685 155.42372651 2064.21369948 262.70139261 225.00496082 104.68475832 44.96629942 41.50527153 246.75543547 297.52042031 22.41215039 90.76278940 135.43413337 411.04246409 68.41779193 257.71451462 23.65592001 418.03981489 29.71073792 132.80281961 17.64208084 129.28375960 9.37666513 499.24957013 132.54008894 60.23168262 314.27247923 62.44996805 73.48957243 151.00582762 283.17461341 225.81610104 2.95210423 111.53342258 151.23031675 22.30812792 302.02465177 575.02339460 986.06186966 34.86313554 47.30465790 54.68353796 836.24576001 41.85796670 105.77897780 57.68046946 146.49110306 1602.23928802 242.22767624 99.44203238 116.79076815 330.64150486 27.14236745 20.49325754 148.78811403 91.71774732 312.89754635 13.99652705 265.57566945 156.79789596 87.00470665 121.82762771 578.69951830 266.96252794 183.08801390 130.46608388 147.05112991 453.63819018 + 611.81315343 371.26758456 65.55787452 76.14227738 950.33805161 242.51445954 181.03279557 50.50813084 1553.07696951 18.79099301 324.10267543 608.73256338 19.13891582 44.68572699 85.92404230 189.53433918 562.43483160 589.25579887 16.15486114 507.15955748 25.22708868 122.55881067 69.58551528 193.82533493 65.40956914 281.28904469 20.42009804 287.07806906 282.09151416 25.18022528 64.61805518 18.46662551 78.03711983 106.66088946 825.19258100 30.55450346 479.89513894 224.11577268 36.95105649 43.85718297 1522.30129442 75.60574310 146.14254519 52.33976557 554.34367159 163.46878504 200.05627464 23.58277242 12.24947777 667.89053971 489.17101934 310.05087540 35.37796750 28.56548349 51.69358721 126.45752228 31.33785356 2957.75999495 334.06377741 129.97000580 175.52416797 94.03619701 802.03699211 24.85890640 1374.91415609 179.67812607 27.91009221 327.24761928 22.64024235 79.67137971 309.89052278 122.74466544 661.63693021 138.31582761 18.60099924 + 97.70206442 205.64625826 182.59396003 181.73723646 69.53147669 255.04312688 71.62250521 189.46208481 134.63614970 27.35782159 73.69412981 63.02177714 74.24555858 124.69427049 266.65044168 259.72213642 61.13371638 83.18562360 55.65856310 25.00683779 242.02881679 38.95758541 170.18620619 69.19517200 97.91612851 51.79776403 347.03330339 33.47605743 576.94314325 81.90619740 97.26508229 5.87226821 77.77581890 222.56736071 421.20995418 69.80673887 56.77854168 54.09041930 39.67238958 22.59771457 2264.66067496 147.26294070 65.95401794 66.64337171 171.46934147 1703.21661422 170.72461783 1193.97660943 52.38949169 69.59372235 19.14775156 41.42726403 996.25650336 42.79685918 169.18477899 781.96956730 335.74623544 47.04287726 334.55464302 555.78778116 557.09860593 101.93663924 10.92343335 13.21533558 56.68655014 42.25529755 168.98665219 99.51682194 257.29344451 172.63156215 545.62835369 20.84340759 855.35039348 108.01717626 80.39493223 + 145.89561043 314.61714650 448.71883640 116.65973894 228.54505691 256.30251550 28.08954208 350.12004827 422.78968742 14.04473881 9.30984322 48.71326702 179.89908898 52.44663269 79.60780187 11125.75293584 22.65755757 62.23311130 434.98513288 44.84521475 28.24844981 889.65650897 29.71887203 243.30883025 40.58367449 264.10935159 658.27054395 972.63107601 437.82172531 181.01225573 1313.83967970 383.88293634 213.23040289 73.74716070 76.60640660 208.01932624 207.72169483 319.33549496 1152.61616544 81.49688996 28.95651930 854.61502176 150.86334898 25.29710972 256.53964088 35.15164692 383.83683573 284.09058573 49.99392715 44.16949224 372.04788355 872.66880445 149.51254393 1151.79910353 93.78884007 306.35886687 154.18190265 30.52277276 142.96191252 148.84515539 1048.61075979 50.04111087 41.24585787 448.37897466 387.03419182 1032.74110679 56.18060596 8.53022131 910.71321955 182.20893945 135.41301784 466.67795764 40.72546589 301.81336080 213.51732923 + 27.15460097 43.27852513 18.94728486 39.66889640 248.60753984 37.31684602 299.52539829 336.55701964 64.21164269 124.13599171 143.63477556 908.18867023 102.76324256 217.21054665 195.56364805 58.51076244 28.24912759 126.75708879 113.03781676 41.04093820 59.67332947 32.04814733 540.40617496 25.45288290 58.50793063 969.38858000 164.72997412 80.18163326 179.63039680 77.17188307 1204.40035976 1300.46737764 254.60408878 455.59441193 147.01505709 223.81897543 66.54812439 146.79044010 159.02437677 74.91341472 1023.41081440 205.66324274 189.20375497 90.06508688 337.23025503 117.44701085 2510.71392040 67.81803830 60.38070365 20.16750586 34.24564971 79.19243784 700.93053559 69.65738287 2060.05464518 45.95447362 30.28330561 40.24189557 151.92934507 176.99648601 277.03111293 8.55946995 696.64636391 135.44542560 183.92206068 288.37452693 708.57574571 105.50272165 383.21469836 283.56381165 56.25138561 21.85523032 194.60055648 44.34107560 616.58067924 + 240.83094271 42.95298172 44.21216292 2037.67206706 110.32944481 164.03632955 43.35555435 212.87941558 505.13137590 29.84802920 215.95414918 43.21124167 237.22947003 847.09900793 757.58044830 330.11787431 334.05958160 426.70256610 14.11385489 19.76740008 118.20069400 33.52964126 37.43740994 324.99007584 169.57632966 1057.46055312 1061.78977236 60.09758149 29.26683471 144.11073538 78.05669028 363.74298676 101.43155508 282.68539329 177.59602376 303.91913703 32.68880003 391.05890659 1650.34549279 212.68790051 132.64145678 91.22001723 711.20132284 54.66972908 151.17111853 9.06925412 117.93277596 82.79330581 596.81748573 152.58868148 338.24798330 300.98061734 241.00992447 135.02711047 478.54235593 274.86195707 190.41662958 55.97095239 264.80872063 305.07520578 37.57932382 1176.78691249 81.55411999 817.08594882 71.82890044 6.42130208 237.10324763 145.88396445 33.65967123 215.01474571 983.00227467 1456.99264551 547.05624102 209.30477551 96.47788803 + 155.50334501 149.24501857 116.40711335 165.08049178 85.34724506 71.79210634 136.79014040 18.40548773 94.12899418 15.16588168 28.50504217 22.69488178 51.14924410 102.03201906 5489.01837854 206.71068157 61.78735518 241.05834112 5.06790424 1618.64262262 78.39632664 307.68177916 9.45220803 15.15463118 127.82390222 87.50634908 166.24801566 650.26695379 76.20238376 74.35054192 560.83994063 806.18599681 50.15607948 14.11106369 529.15495180 1501.79470636 45.28311927 354.65337816 837.41825052 35.83137471 39.83792858 452.65943672 398.30805247 142.95663906 265.48520525 158.82627272 15.73587084 49.09966269 28.98057914 324.00716997 100.74480327 370.82124595 85.36446941 51.61122868 22.87310528 198.74528610 423.58030734 62.67081021 35.55653548 780.15906277 57.50065683 180.36605113 120.37430933 53.83729254 33.33664989 40.87045790 256.19955168 104.96724159 319.55278050 34.13830433 75.02356783 279.37793365 306.44915252 244.66241230 1122.69834304 + 48.41341071 218.61700968 1247.50743805 456.79961405 492.12326035 121.23469253 97.45371548 146.16261981 37.28796410 573.74935024 126.01951956 447.79342987 59.71052677 429.02011408 286.24473715 5042.45070665 73.98066463 26.74786216 190.83254233 335.81744450 88.94667765 575.33821507 507.83402852 680.82497381 1940.64985588 83.22352860 171.54228160 42.00668697 160.39298335 26.21614942 188.68707460 73.65841098 543.16544916 405.60884549 85.62759466 165.76229889 46.94276769 125.46658653 197.88226875 27.23205234 34.99422272 195.38269299 128.76743410 96.23370034 256.37705326 189.72705563 53.86621052 105.80873613 263.58172631 46.20370005 197.09419556 43.55828055 264.46602595 112.02039693 39.77984920 26.39556111 47.33244364 170.72156604 166.17282365 875.70011111 22.89338228 153.54559171 21.77544276 442.11749150 224.39071126 2032.99358833 39.45366480 84.19106500 917.00200434 36.21551720 296.64177894 498.02186766 54.16380125 218.48134595 19.33955137 + 73.20641251 893.23231600 68.11376525 175.73668923 104.01296107 797.81541127 142.21894027 378.35476906 46.06660794 48.43574992 1014.10166856 150.02504215 108.94978798 278.28055852 425.17204560 36.16477461 30.78181508 280.12726136 212.43737195 328.00187003 91.24874555 222.16477089 53.21260844 132.60173328 62.59661486 424.19940218 146.41627552 145.11935376 88.54591769 15.88049812 692.72696346 494.21219794 48.88983070 128.13526685 267.71961608 122.44606247 1749.20240090 624.32433327 422.37151432 287.36296601 518.38422569 304.54232675 1311.92708440 119.71815889 757.48516188 364.02051445 85.97036025 40.65253351 139.63295136 227.58522170 95.77446794 206.11266116 1039.47912985 27.69451487 139.65269725 34.39214551 51.23789451 128.48205390 25.69356957 314.42884378 70.16372397 631.57832356 35.18945725 228.23229488 56.10248071 165.01996335 126.58756496 64.11894722 410.88510666 13.06424277 680.03486743 269.61042174 128.73374676 313.34769501 116.51751177 + 124.36810659 109.60551867 71.20224691 66.29595890 186.28000216 42.29835789 76.36702369 184.25496513 102.17716682 18.54496502 56.60364632 68.68944837 44.66988209 71.91059727 204.29835562 0.98329298 41.27016305 509.26196687 679.92266952 204.27014966 50.44486127 785.55384861 35.91148963 516.41995282 33.92128008 428.14301198 139.37342545 534.05427966 537.16837609 111.13843880 163.61555904 155.32947324 45.17398785 464.74069744 21.59650049 241.97048908 326.28945921 646.77761756 861.43953372 261.02299132 2147.63661892 123.05602244 650.59385369 133.52704083 423.34052055 232.87311166 457.13705586 347.16365057 161.12737448 19.99825700 34.32305056 46.96434610 21.39525873 514.37074450 856.09828860 403.85719742 336.81605584 109.25742774 46.84854309 108.16872789 247.26767564 1392.74176450 33.67147327 881.32703285 268.43086311 20.97875415 48.14887237 135.28405534 67.31240043 77.94833379 36.99853919 187.31523786 10.45232136 108.02631302 320.24403956 + 85.40181930 1154.35161939 15.39489432 200.16567841 17.89295463 31.58810738 137.86171896 20.30710362 26.34460913 41.96799142 544.74655193 202.55827504 167.86240649 467.88435473 127.62117623 313.78877671 36.03200172 93.48452318 42.61480394 101.08618871 127.20917218 1571.87483621 200.74892639 113.47472791 60.50709630 89.92982139 244.92492487 62.84905247 792.20117548 147.55617418 209.44806060 111.93911377 78.78893464 37.55351595 4099.13258101 198.91835903 106.08294589 469.66953272 196.76955042 172.42756937 204.75771748 95.78824401 314.09288873 73.46407378 52.45937593 185.84614208 414.59933199 75.87561136 607.72841394 448.43055090 315.78879586 545.53856385 32.61100530 371.37939393 175.97328573 271.22131141 66.66221312 248.41462684 76.86512874 390.29344440 179.98048747 358.52164436 835.16373072 62.52182708 91.52541577 157.04941444 153.85790642 30.60298691 10.32307146 82.55282096 3395.05808692 180.48721898 142.14659565 206.81086055 93.00582507 + 56.08458624 11.73361004 428.23229160 1307.10077336 692.49758121 112.87032766 63.13288477 107.33347956 78.24405998 138.76303387 1419.18593074 394.18506661 464.84651164 124.35388881 16.28232738 3516.69028638 307.04615555 63.63672943 49.95219348 281.85369588 45.75748864 672.89736282 681.23451150 1058.01816962 1656.90064153 45.93740993 53.54631633 335.84877112 77.94857025 18.86861109 42.65506432 151.68840634 254.05223088 98.77097006 213.51695721 88.63799432 217.35326504 81.26085622 72.31237674 101.33978706 125.68898148 6.59713886 85.54793489 4.07471681 18.19941231 2806.34140662 20.78260232 148.94134702 640.94376310 130.89715747 63.78080771 127.10370308 139.34197157 456.17000230 100.93718528 179.00600083 32.82792363 486.57032261 552.30115550 177.18954761 447.20217806 40.95556070 121.92323034 95.05350438 186.52434458 266.27503880 1794.43146874 99.23843109 80.54863035 1255.23358886 44.14068131 805.48595053 127.05706406 298.96045747 242.36765660 + 194.89360735 200.10344331 516.91071732 370.98310858 21.52570592 900.59220019 22.74600268 136.18324920 235.39195369 8.59256791 41.49826611 481.93232732 64.30663911 182.65374598 768.57715386 623.73478092 132.03822690 1067.22563290 103.61509528 218.84693876 129.42884631 8.98557454 99.21595206 3883.70854070 513.96033821 391.82124630 60.67738712 1447.74451244 141.58376184 100.19372189 8.84407247 1259.48443956 211.63405799 198.92969323 70.09456537 86.81356164 144.32552742 99.41272734 445.82443218 61.82230539 88.48928925 43.10185259 80.49172258 66.61994313 202.59925249 70.04733799 49.99937006 174.59820873 192.88450090 3272.14452552 1298.00833962 87.49029270 284.63221964 1105.81730487 353.41217639 17.76260596 46.64277377 177.52138478 949.88245560 630.60380953 202.03615179 304.86647847 38.13639354 145.04268944 1271.32660681 101.68250291 498.95221874 391.98033277 534.33851478 155.98650245 4.70439925 319.76056595 246.25937437 17.90397913 381.96023348 + 779.44326096 311.15809718 315.65632861 1932.69065810 3145.61652264 22.22719030 175.96418421 320.25388307 1743.08786759 239.75435513 145.25284666 515.46701908 193.19071478 22.91682576 69.46946077 2061.73819106 19.30384433 481.05052803 33.48273596 128.17981192 172.66461844 131.91023920 302.38801725 134.94037973 35.15642135 41.94713460 521.24442814 84.09726442 1386.11467291 358.24352119 27.55184302 15.19544328 60.96472354 1667.30058517 3601.38270956 844.81682608 46.56729317 1174.38207089 189.27180147 82.31785067 1409.37230576 557.91452387 328.54596524 182.50951940 1653.82600357 672.74289580 871.17811537 792.30023756 39.06107828 206.87782204 1061.61274914 283.75826481 63.18247759 692.89449172 112.22835384 200.36981583 154.62889558 34.03977191 238.95143228 50.54083436 134.09127257 54.24535683 390.20551917 329.80065566 54.61540510 3749.86671242 201.12972606 528.83815976 1009.28010287 190.39876841 203.45356395 606.57669117 117.18005696 122.00552568 70.51640601 + 565.35674466 57.54377725 218.17996191 38.98228307 83.36833429 47.11645011 119.91980282 191.91943449 48.75898398 546.68400925 396.29581827 65.74555887 1086.74693415 75.30669639 202.36334734 103.47034782 1460.25643737 312.20520986 87.40167748 44.09843127 110.97782462 4766.82715154 113.20878505 23.47002042 725.45825987 117.68707441 430.72647936 204.48439114 436.93762824 833.76201879 179.13761046 127.56293027 235.89006348 237.38393338 74.04918985 328.61710440 473.55525356 1024.03500229 208.84206362 34.05955663 308.45335979 94.15818319 20.14999732 402.06146131 54.84458688 1002.49118770 302.68595505 142.62496844 210.05616628 720.26172828 18.18547710 818.58229242 1033.40319104 134.47970427 579.14109396 215.21520311 23.16308459 656.93956544 137.26243014 15.23085588 1979.40401578 292.05545037 102.05521308 98.45010568 129.04063256 50.97878007 1171.53284198 1474.25068522 253.60757934 113.35916035 467.18045108 280.78577672 106.87614826 77.43532848 30.90491290 + 39.33600856 88.66003272 429.34856126 116.23110125 178.26237115 561.75492613 120.10210023 385.12252958 294.45217900 274.90587420 1567.22859408 177.82760563 159.63020941 38.49057458 64.24859269 60.67916918 128.34128700 1392.80712876 627.98285362 133.86363696 163.20952221 730.88790946 156.62607680 6.71812109 102.28109900 3102.46150639 33.79155961 232.91212583 29.52832187 140.01624746 59.78419555 38.46010424 12.76537107 41.02807921 10.61568068 23.66232380 911.78194880 77.35005859 69.43818243 247.91473197 550.95691336 1014.58114296 4732.03799448 73.60497415 681.91663356 31.62342033 243.46645828 272.33099697 149.52505150 157.07707917 70.85184428 47.06440285 70.50370735 177.37743824 263.68757989 1425.47043707 101.20595366 405.68682357 74.39443877 179.62959253 113.57039142 142.18511468 485.31130415 62.15826664 476.27106161 260.26437250 98.21218198 120.46258832 785.58025079 101.26682993 228.90441090 12.36096898 337.20440321 1003.04307669 366.90258408 + 80.81142270 86.87192275 170.55163986 186.02743709 132.18131970 273.66850372 71.38156439 662.10918466 30.30906903 133.15226531 219.87971107 95.14781972 129.87234218 362.79956340 377.25573515 510.67312242 110.61940396 76.27557210 156.91061739 953.54681634 273.49838945 175.28014789 114.21267131 1432.09494932 92.33645580 290.39268383 1029.37802392 115.49639999 60.55187380 126.81958915 395.74393043 126.04481808 116.44903190 1374.18412207 186.37408754 7621.13287821 45.45004747 39.48969928 29.76563450 156.79754433 332.21049153 306.47615231 75.66958748 145.39586837 155.11086808 96.88398548 4683.21250285 261.03793170 306.85093764 140.51662466 28.72093634 62.93270359 176.79138312 23.41231099 3405.81560123 36.58822140 521.74985025 270.49093216 17.99720890 57.49494734 174.08691280 653.04738271 38.60750588 64.11657020 40.54016041 140.49257029 132.94923070 123.83283771 121.61048021 226.62913710 73.12624380 831.76127852 655.61826161 43.11595089 1306.66762912 + 168.61490824 208.95496258 152.23720173 794.05662397 117.57726207 101.83106017 383.75147542 306.98723450 43.79527630 142.70713647 64.69642526 86.05201889 466.10897657 20.82432866 23.93457160 100.80274711 29.75630931 124.11503024 362.01827942 1177.11928154 135.54805008 69.41906611 34.55660904 710.17935809 171.00114234 16.95540541 818.22566234 264.48824186 75.80942725 952.32846458 83.05380349 2557.23991992 264.01906445 133.89969196 103.59124960 105.24631277 61.97312770 412.37146677 110.40220806 246.85043842 300.35911616 99.45066194 935.04090068 233.23314033 155.07088665 19.31824724 164.97690413 91.29057476 433.04085157 33.19170512 95.08179966 82.44380102 114.12137734 60.24545142 49.24717570 46.11168416 277.13636583 218.56295746 304.26153058 1526.33923413 624.38554798 558.65215334 204.08114845 156.55725371 243.02969338 66.43409168 59.85133073 2750.25108153 125.21420859 224.57985831 306.17656146 26.13719991 344.42119466 713.74059357 94.36650754 + 323.75716939 139.64435912 1098.45129166 228.45847818 125.60689802 31.34871194 2275.33333742 41.42615131 43.22387132 172.86787562 172.55776462 172.38807988 146.12278642 32.91553185 82.03425636 6.65437631 132.87836749 331.55544460 79.95572293 52.88290951 700.24285210 1576.05197031 146.85355437 123.95256978 104.97962706 264.48083405 24.91722433 438.41507904 83.70667100 844.23674349 174.53695344 70.28406660 1229.90894880 73.27704295 42.88273257 64.26811763 492.70807546 26.54204778 685.36270412 149.72690521 896.64725762 99.11977551 56.99321127 121.20301590 88.15671067 2044.84438734 390.30202443 65.45299099 75.78443455 113.26392809 59.11720909 164.22138806 244.70568425 42.13542078 126.26192114 872.76569347 121.68025433 108.39691521 683.36058925 105.69631230 142.57480166 75.08465581 41.38404999 310.38713974 77.52623767 64.84153251 52.54892122 556.85935792 52.99590246 492.76879040 250.12365844 2.13872096 315.84751880 847.24385690 136.35232911 + 156.54371989 108.51173175 192.71822511 3446.15594154 125.96140752 141.58625923 189.59188855 1534.81796271 234.08839052 21.32961998 476.42237994 175.08850430 620.36496432 383.23423241 1063.30515825 331.07794759 35.20861890 58.17702092 1407.50131589 2184.41366584 126.02309390 49.50176811 125.23957355 644.17667787 368.02683393 483.55834176 47.66043776 547.50899487 40.77239571 35.57302585 337.08854469 51.37295395 118.39654410 9.69682449 916.37912730 50.65820230 39.20606623 45.31137789 159.04896893 40.21390302 255.81310692 44.45168785 346.19632983 48.50612091 73.23178853 225.92728007 37.39909202 1313.77217615 121.16599225 50.61341326 448.09968562 17.95548028 88.40420573 509.74750812 134.75024364 92.10274740 362.97414738 303.14734961 139.70873368 179.45396928 433.50513132 86.00609952 110.13731833 158.12107928 656.39786220 544.10132719 221.95962624 273.64194668 20.11244584 326.84548123 152.24389950 716.94970443 145.41591163 212.23961277 313.48927976 + 375.43210298 111.93193435 164.54122101 3177.29827764 55.68301423 62.90612217 433.28313076 69.81058826 122.13154711 924.53207252 100.36081350 95.12000268 427.11172447 163.21747874 263.86299714 2002.46237320 379.63127609 218.35838019 139.23154384 199.76945139 114.76800057 423.77583859 466.09777869 113.35714614 119.70426370 39.30377516 546.39437201 32.45182405 148.91379126 209.07771688 148.20874085 32.96593245 563.56410911 1200.11846399 1923.27474581 246.30835001 166.70503878 270.24419506 55.19212329 30.22681126 169.43856034 50.68655132 117.28578125 81.50420506 291.00230032 69.97523972 76.40877871 117.85172015 1513.55510061 745.45535509 55.77849357 250.17593672 39.00441024 225.82448882 1371.13706604 142.01695407 16.18919144 228.21754719 1263.14413824 239.69412623 211.24960887 1465.05169308 368.29084413 787.75783740 72.36465729 234.34583897 94.15769011 7665.49853465 1189.44429855 81.12554413 69.52433795 284.29375239 169.11565399 2314.97107757 1480.61580336 + 39.84693191 121.95044020 255.53631596 210.00660714 412.52309132 351.30774748 23.03683719 3893.25040421 169.98572427 83.82636662 139.74843358 112.88100168 556.54140800 152.77919121 105.92368128 301.45417712 187.74877156 142.82232029 319.22366740 756.84641162 83.08130506 119.85260896 104.40239760 66.31023782 20.02280939 293.83512988 162.26223026 151.49257442 315.01610985 231.03188461 26.09632301 19.44832126 115.06958277 492.74329161 156.66073198 348.54744641 36.76461861 201.65685571 352.28411764 313.91479877 72.76922989 117.03221453 351.99519501 210.77818996 625.52718747 38.47445232 1349.04966954 465.65418907 129.98783342 234.18673137 133.72663692 73.25970678 23.09943674 20.15973867 2.72240647 159.16259119 36.81336649 57.68201528 94.76776245 137.43310585 79.20878345 131.30730506 73.60012077 145.04739099 800.12338200 61.75460976 44.49822513 71.41963934 38.81505095 1045.21649897 31.99530478 54.40044166 15.20076022 9.98357115 198.21361818 + 144.49644082 915.99877620 522.38248868 188.20143075 164.50973662 155.41049437 607.12881170 64.54117396 21.83417937 565.70100384 342.75406456 337.24939556 290.87693663 75.38096067 80.92287107 71.26456962 260.13884447 70.26761101 62.54760691 13.33339220 209.75225869 98.19452287 71.77204859 356.35597621 447.85590200 164.42095348 55.28848456 133.63691112 44.42043945 21.87396112 12.89069102 198.65426697 96.96217485 206.63758911 366.51569699 39.94775772 48.83264703 66.85220365 261.84903092 1916.78517904 609.40823984 146.32050150 1964.15094205 128.24460326 319.15698862 27.16659692 34.04299903 419.07429354 26.17174445 525.81393057 82.46434188 238.37960465 823.49847143 206.03883722 47.80486577 21.85584096 568.21524762 31.29693536 20.93637719 77.82156255 147.47636616 23.32037951 165.38454347 759.54442865 46.10720931 14.10151942 79.18208424 1039.81051386 220.71054474 239.78749681 333.76557358 1576.39778579 84.30062779 196.03071726 243.61086598 + 563.00950616 83.23003984 19.23538118 17.85078441 105.32863954 27.82493196 39.15787649 345.77415517 263.50766108 1494.47615383 285.42560958 61.80923372 82.81890159 80.51385599 60.32002619 10760.08493283 25.28924597 106.31455588 430.67806670 31.23960518 232.72584654 67.66331977 174.73907241 407.87437868 79.59126830 118.87059966 248.17896891 131.26933938 49.26052439 24.64822938 201.65139038 521.10390303 40.92980323 16.94436064 366.72377044 107.85813201 47.58641362 61.04088031 34.43131036 91.42431867 557.83209952 1894.25604116 71.96729506 581.73419921 112.06546231 312.30469452 256.79704946 1175.81278863 12.00191157 209.41386117 78.52014579 585.56772811 148.82442194 245.60393443 23.59426435 627.02975564 708.58396477 176.97964269 66.78405201 257.92696424 67.90045888 259.70541398 3565.84356096 171.05041602 27.86603979 51.25475731 370.05629618 2510.88980841 217.23508743 45.24342434 339.78586707 53.73641755 205.13686524 557.96593445 21.36040523 + 382.19692336 484.49684825 378.74291249 69.71907715 1381.90713333 81.28996215 224.00065372 609.06124272 9.84875650 107.87938291 242.32736705 979.32712529 1616.01129493 131.70769230 42.69289828 182.32668288 227.33328322 205.05139703 97.51972053 1156.10750860 82.95079617 39.76006630 467.59833758 1893.28452458 84.15448338 559.44448201 986.28764504 86.65799936 60.86353352 53.03683396 99.36982072 989.61972653 79.60418364 264.92469081 195.01803924 32.19324471 233.37386634 239.00456343 12.00388884 61.34347338 16.36658236 163.48323643 152.90123712 387.81163338 202.29069584 228.61133952 919.86058209 104.91889326 1070.72963196 301.16313998 143.77274148 261.16582334 88.78837097 73.88273973 561.93069570 249.33240149 111.42660128 18.53222803 380.77952072 118.81276569 436.35934456 136.69628232 1176.17619648 163.68109290 110.89888512 4102.00432369 98.75950968 235.91612642 163.16134096 135.27343448 43.58096361 74.76521192 3232.50774440 288.01576551 94.52173272 + 85.11723181 43.05153255 275.64389160 708.19893211 1059.02342250 388.78454062 137.18956423 95.53443071 2772.37996168 1196.07183116 257.52659673 258.70874636 107.63347544 7.11106106 226.68963331 120.04903608 484.59620754 433.81835122 1208.72712168 250.21207740 346.40403367 56.22568780 19.49425355 135.27217017 159.63557238 193.51291027 71.79302006 103.80525316 888.37523305 233.85249984 174.47700737 139.06008908 34.77947497 66.99811159 206.20640952 465.44275549 413.41721960 184.88796214 33.77074946 775.04751540 393.81989005 36.38820735 231.38609215 333.02924901 39.59517810 955.75993026 222.71558867 136.76475755 68.37835699 111.80889499 319.00259059 32.26097021 57.44349650 20.53188323 627.97883315 418.73194925 17.64774247 458.75780913 362.80934528 39.76051130 187.34084026 70.63187920 66.61372522 120.47462695 215.83313588 166.26559521 50.35792059 160.80660849 147.24186593 105.93676518 476.94880247 22.59770804 610.34989063 17.06247163 111.79155552 + 198.12227709 172.95656018 173.59069743 269.40636403 343.67277468 36.02756108 13.03501359 115.39168655 168.49527489 390.97409822 21.05243760 286.27416038 318.18472461 310.03498774 58.60078204 104.35203099 126.25420268 116.24496796 68.15176344 543.50152480 25.11356565 113.70153027 1587.10610308 78.27099257 128.65119515 147.80342249 147.45421960 250.06595224 73.84931124 186.87442101 50.44274020 434.60429878 566.10978394 117.96306569 8.63535383 318.24205620 1913.29368179 17.59374079 101.14885036 431.55178589 471.06053346 49.91736665 321.72707470 68.68051440 35.99112613 255.75758219 233.49849845 94.45659825 25.37941040 72.06165271 200.11725287 10.55474112 191.11578999 825.15705058 147.21128566 190.02248903 50.61859969 59.67626054 62.32685507 453.86918682 161.58728950 1094.19378368 120.41061925 217.01758369 98.10784528 412.82004900 298.13759769 123.50976934 33.23822127 32.20998333 995.88418045 191.52702403 161.58754567 823.82169659 164.68763049 + 196.75020225 67.13312027 59.21351773 54.02875664 145.44551478 12.23517115 942.43360359 211.45803175 51.67552910 225.77825588 92.20469329 219.29082789 219.20964932 50.42046131 59.16863700 161.96936594 1501.61892531 86.60748147 164.81264055 83.92133151 58.61049309 290.07634682 236.75634803 13.32939317 89.69135674 14.30429130 82.81845415 61.75357059 342.71372750 350.32061870 179.16951992 188.32621346 1220.91744487 170.30532698 124.52233282 417.37758957 663.44677579 91.89776561 64.06306575 101.00158512 240.21016213 872.81382013 36.36919975 78.04857270 310.15359084 20.83133428 268.29364957 77.21209998 453.16600929 524.62199123 140.93967842 302.02284984 102.24056511 9.37282023 46.09928831 870.96734696 2012.27423352 199.12591317 23.13233843 95.72244225 16.71836671 6.60384644 153.48908685 260.95753999 60.72152465 213.24537237 717.42794435 424.10102793 155.34409798 7352.21305213 357.88017717 1194.16611266 310.55403983 216.73368392 646.87805406 + 69.25890327 20.10898723 1522.08812657 156.58688942 476.39357235 124.26778797 55.77061355 89.43930333 71.25830746 74.49747335 204.20748499 28.13736678 72.74362124 53.89036028 197.72410700 1138.92911444 146.07643583 33.08159848 221.38096367 383.96256798 36.55157192 42.18928966 357.70775047 330.46905161 163.77317647 69.78350675 110.16930278 38.30926549 385.83036252 80.91462661 648.25984337 15.36835755 67.21399029 120.66712174 90.03714039 115.09516875 206.96563202 398.66532758 548.10211124 390.84873303 527.88335501 87.92496131 34.44827160 75.11898708 48.44843086 12.50561096 12.24682746 50.79467490 12.35164167 55.90307049 275.28279452 148.18222970 150.35923190 239.54173960 92.25780865 295.83725962 617.38529444 136.59751135 402.40337553 187.36275685 161.56686067 38.20525222 742.44177085 210.47805343 270.35989947 322.18378657 2067.94107298 154.16707158 51.16033382 189.07784712 357.84550772 63.40200438 242.46352385 112.49951375 225.32779796 + 767.14680065 115.00270501 8.50672864 423.65523359 156.17310085 17.26784112 657.16781642 220.15159777 112.11852518 55.50996015 79.94496953 365.91672218 94.82776987 33.14848560 25.01238084 36.86531075 296.00825813 43.82413549 67.28833541 285.18059183 29.96918856 348.31615502 104.39223277 512.29154429 143.99468705 10.32061088 235.96254336 715.80896799 191.06193425 141.74061159 406.63133227 247.86876690 82.86521966 32.30856267 67.63294158 394.48349028 732.42809300 150.16859754 119.56845952 437.72903805 661.52891340 47.90274689 173.02948565 198.96382754 350.58682512 385.85110149 348.86145056 70.32406617 810.42999554 344.64515980 50.29143542 131.82851372 129.35225508 228.53250426 11.31590385 82.10094398 141.45551101 56.93906298 339.36573517 155.28499164 13.08082431 3317.71830189 747.99669797 113.31418947 339.82390001 10.22989042 154.83825915 805.81302660 52.06865067 293.18474826 47.38153082 86.69421323 45.96857321 272.71734021 97.62015018 diff --git a/test/test_component.py b/test/test_component.py index a62c94c1..1a6215bb 100644 --- a/test/test_component.py +++ b/test/test_component.py @@ -205,7 +205,7 @@ def test_init_sim_explicit_dims(): def test_init_big_sim(): # if size over threshold, arrays should be sparse time = ModelTime(perlen=[1.0], nstp=[1], tsmult=[1.0]) - grid = StructuredGrid(nlay=1, nrow=100, ncol=100) + grid = StructuredGrid(nlay=1, nrow=1000, ncol=1000) sim = Simulation(tdis=time) gwf = Gwf(parent=sim, dis=grid) ic = Ic(parent=gwf) @@ -220,11 +220,11 @@ def test_init_big_sim(): assert gwf.oc is oc assert gwf.npf is npf assert gwf.chd[0] is chd - assert np.array_equal(sim.models["gwf"].npf.k, np.ones(10000)) - assert np.array_equal(sim.models["gwf"].npf.data.k, np.ones(10000)) + assert np.array_equal(sim.models["gwf"].npf.k, np.ones(1000000)) + assert np.array_equal(sim.models["gwf"].npf.data.k, np.ones(1000000)) assert chd.head[0, 0].item() == 1.0 - assert chd.head[0, 9999].item() == 0.0 - assert np.array_equal(chd.head[0, 1:9999].data.todense(), np.full((9998,), FILL_DNODATA)) + assert chd.head[0, 99099].item() == 0.0 + assert np.array_equal(chd.head[0, 1:99099].data.todense(), np.full((99098,), FILL_DNODATA)) assert np.array_equal(chd.head.data.todense(), chd.data.head.data.todense()) assert np.array_equal( chd.head.data.todense(), @@ -270,80 +270,6 @@ def test_ims_dfn(): assert "inner_maximum" in set(dfn.blocks["linear"].keys()) -def test_gwf_chd01(function_tmpdir): - sim_name = "chd01" - gwf_name = "gwf_chd01" - time = ModelTime(perlen=[5.0], nstp=[1], tsmult=[1.0], time_units="days") - - ims = Ims( - slnfname="sln1.ims", - models=[gwf_name], - print_option="summary", - outer_dvclose=1.00000000e-06, - outer_maximum=100, - under_relaxation="none", - inner_maximum=300, - inner_dvclose=1.00000000e-06, - inner_rclose=1.00000000e-06, - linear_acceleration="cg", - relaxation_factor=1.0, - scaling_method="none", - reordering_method="none", - ) - - sim = Simulation( - tdis=time, - workspace=function_tmpdir, - name=sim_name, - solutions={"ims": ims}, - ) - - dis = Dis( - nlay=1, - nrow=1, - ncol=100, - delr=1.0, - delc=1.0, - top=1.0, - botm=0.0, - idomain=1, - ) - - gwf = Gwf(parent=sim, save_flows=True, dis=dis, name=gwf_name) - - ic = Ic(parent=gwf, strt=1.0) - - oc = Oc( - parent=gwf, - budget_file=f"{gwf_name}.cbc", - head_file=f"{gwf_name}.hds", - head="PRINT_FORMAT COLUMNS 10 WIDTH 15 DIGITS 6 GENERAL", - save_head=["last"], - # save_head={0: "last"}, - save_budget=["last"], - print_head=["last"], - print_budget=["last"], - ) - - npf = Npf( - parent=gwf, - save_specific_discharge=True, - k=1.0, - k33=1.0, - icelltype=0, - ) - - chd = Chd( - parent=gwf, - print_flows=True, - head={0: {(0, 0, 0): 1.0, (0, 0, 99): 0.0}}, - name="chd-1", - ) - - sim.write() - sim.run() - - def test_quickstart(function_tmpdir): sim_name = "quickstart" gwf_name = "mymodel" diff --git a/test/test_interface.py b/test/test_interface.py index 75d4e697..c6601a22 100644 --- a/test/test_interface.py +++ b/test/test_interface.py @@ -97,8 +97,7 @@ def test_flopy3_model(tmp_path): assert p.name == pnames[i] assert p.package_type == ptypes[i] assert p.parent is gwf3 - # TODO oc? - if p.name == "chd0" or p.name == "oc": + if p.name == "chd0": assert p.has_stress_period_data else: assert not p.has_stress_period_data diff --git a/test/test_mf6.py b/test/test_mf6.py new file mode 100644 index 00000000..eb35a717 --- /dev/null +++ b/test/test_mf6.py @@ -0,0 +1,191 @@ +import numpy as np +from flopy.discretization.modeltime import ModelTime + +from flopy4.mf6.gwf import Chd, Dis, Gwf, Ic, Npf, Oc, Sto, Wel +from flopy4.mf6.ims import Ims +from flopy4.mf6.simulation import Simulation + + +def test_gwf_chd01(function_tmpdir): + # mf6 test_gwf_chd01 + sim_name = "chd01" + gwf_name = "gwf_chd01" + time = ModelTime(perlen=[5.0], nstp=[1], tsmult=[1.0], time_units="days") + + ims = Ims( + filename="sln1.ims", + models=[gwf_name], + print_option="summary", + outer_dvclose=1.00000000e-06, + outer_maximum=100, + under_relaxation="none", + inner_maximum=300, + inner_dvclose=1.00000000e-06, + inner_rclose=1.00000000e-06, + linear_acceleration="cg", + relaxation_factor=1.0, + scaling_method="none", + reordering_method="none", + ) + + sim = Simulation( + tdis=time, + workspace=function_tmpdir, + name=sim_name, + solutions={"ims": ims}, + ) + + dis = Dis( + nlay=1, + nrow=1, + ncol=100, + delr=1.0, + delc=1.0, + top=1.0, + botm=0.0, + idomain=1, + ) + + gwf = Gwf(parent=sim, save_flows=True, dis=dis, name=gwf_name) + + ic = Ic(parent=gwf, strt=1.0) + + oc = Oc( + parent=gwf, + budget_file=f"{gwf_name}.cbc", + head_file=f"{gwf_name}.hds", + head="PRINT_FORMAT COLUMNS 10 WIDTH 15 DIGITS 6 GENERAL", + save_head=["last"], + # save_head={0: "last"}, + save_budget=["last"], + print_head=["last"], + print_budget=["last"], + ) + + npf = Npf( + parent=gwf, + save_specific_discharge=True, + k=1.0, + k33=1.0, + icelltype=0, + ) + + chd = Chd( + parent=gwf, + print_flows=True, + head={0: {(0, 0, 0): 1.0, (0, 0, 99): 0.0}}, + name="chd-1", + ) + + sim.write() + sim.run() + + +def test_gwf_npf01(function_tmpdir): + # mf6 test_gwf_npf01_75X75 + sim_name = "npf01" + gwf_name = "npf01_75x75" + + time = ModelTime( + perlen=[1.0, 1000.0, 1.0], nstp=[1, 10, 1], tsmult=[1.0, 1.5, 1.0], time_units="days" + ) + + ims = Ims( + filename="sln1.ims", + models=[gwf_name], + print_option="summary", + outer_dvclose=1.00000000e-06, + outer_maximum=100, + under_relaxation="none", + inner_maximum=300, + inner_dvclose=1.00000000e-06, + inner_rclose=0.01000000, + linear_acceleration="cg", + relaxation_factor=1.0, + scaling_method="none", + reordering_method="none", + ) + + sim = Simulation( + tdis=time, + workspace=function_tmpdir, + name=sim_name, + solutions={"ims": ims}, + ) + + dis = Dis( + nlay=1, + nrow=75, + ncol=75, + delr=266.66666667, + delc=266.66666667, + top=100.00000000, + botm=-100.00000000, + idomain=1, + ) + + gwf = Gwf(parent=sim, save_flows=True, dis=dis, name=gwf_name) + + ic = Ic(parent=gwf, strt=40.0) + + oc = Oc( + parent=gwf, + budget_file=f"{gwf_name}.cbc", + head_file=f"{gwf_name}.hds", + head="PRINT_FORMAT COLUMNS 10 WIDTH 15 DIGITS 6 GENERAL", + # save_head=[None, None, "last"], + # print_head=[None, None, "last"], + save_head=["last", None, None], + print_head=["last", None, None], + print_budget=["last", None, None], + ) + + k = np.loadtxt("data/npf01_75x75.k").flatten() + k33 = np.loadtxt("data/npf01_75x75.k33").flatten() + # k = np.loadtxt("data/npf01_75x75.k") + # k33 = np.loadtxt("data/npf01_75x75.k33") + + npf = Npf( + parent=gwf, + k=k, + k33=k33, + icelltype=1, + ) + + sto = Sto( + parent=gwf, + iconvert=1, + ss=0.0, + sy=0.1, + storage=np.array(["steady-state", "transient", "steady-state"]), + ) + + import json + + chd_data = {} + chd_data[0] = {} + with open("data/npf01_75x75.head", "r") as f: + chddata = json.load(f) + keys = list(chddata["0"]) + for k in keys: + kup = k.replace("(", "").replace(")", "") + tokens = kup.split(",") + l = list(int(x) for x in tokens) + lx = tuple(l) + chd_data[0][lx] = float(chddata["0"][k]) + + chd = Chd( + parent=gwf, + print_flows=True, + head=chd_data, + ) + + wel = Wel( + parent=gwf, + print_input=True, + print_flows=True, + q={1: {(0, 38, 38): -1.00000000e03}}, + ) + + sim.write() + sim.run()